joshualitt | cc92b4a | 2015-10-29 07:09:53 -0700 | [diff] [blame^] | 1 | To generate SDL_config.h run: |
2 | 1) ../../externals/sdl/configure | ||||
3 | 2) make -j32 | ||||
4 | 3) if you save the awk output, then you can get a list of files required for | ||||
5 | the build with this awk one liner: | ||||
6 | awk '$1 == "/bin/sh" && $2 == "./libtool" && $3 == "--mode=compile" \ | ||||
7 | {pathname=$(NF - 2); n=split(pathname,a,/\//); print a[n]}' | ||||
8 | 4) inside of SDL_config.h, make sure to undefine sound and any other features | ||||
9 | which don't make sense for Skia |