diff options
author | chai <chaifix@163.com> | 2018-09-02 00:48:21 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-09-02 00:48:21 +0800 |
commit | 862763a88f6b4a6cb6c034287c509a91776adf8b (patch) | |
tree | 78c1f391c1c5ed95acfda055e3bf806290df74d8 /build/vc++/libs/SDL2-2.0.5/docs/README-emscripten.md | |
parent | b05e2443533af8e3badb4a8469a634cb302c63f8 (diff) |
*update
Diffstat (limited to 'build/vc++/libs/SDL2-2.0.5/docs/README-emscripten.md')
-rw-r--r-- | build/vc++/libs/SDL2-2.0.5/docs/README-emscripten.md | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/build/vc++/libs/SDL2-2.0.5/docs/README-emscripten.md b/build/vc++/libs/SDL2-2.0.5/docs/README-emscripten.md new file mode 100644 index 0000000..9712084 --- /dev/null +++ b/build/vc++/libs/SDL2-2.0.5/docs/README-emscripten.md @@ -0,0 +1,35 @@ +Emscripten +================================================================================ + +Build: + + $ mkdir build + $ cd build + $ emconfigure ../configure --host=asmjs-unknown-emscripten --disable-assembly --disable-threads --disable-cpuinfo CFLAGS="-O2" + $ emmake make + +Or with cmake: + + $ mkdir build + $ cd build + $ emcmake cmake .. + $ emmake make + +To build one of the tests: + + $ cd test/ + $ emcc -O2 --js-opts 0 -g4 testdraw2.c -I../include ../build/.libs/libSDL2.a ../build/libSDL2_test.a -o a.html + +Uses GLES2 renderer or software + +Some other SDL2 libraries can be easily built (assuming SDL2 is installed somewhere): + +SDL_mixer (http://www.libsdl.org/projects/SDL_mixer/): + + $ EMCONFIGURE_JS=1 emconfigure ../configure + build as usual... + +SDL_gfx (http://cms.ferzkopp.net/index.php/software/13-sdl-gfx): + + $ EMCONFIGURE_JS=1 emconfigure ../configure --disable-mmx + build as usual... |