diff options
| author | Ray <raysan5@gmail.com> | 2018-11-26 17:15:43 +0100 |
|---|---|---|
| committer | Ray <raysan5@gmail.com> | 2018-11-26 17:15:43 +0100 |
| commit | 969e48e3dd67ea26fd3e928914f0c1ffe7dfab23 (patch) | |
| tree | 63bd6ac8ff9ed0e3ea53dac1162923471dfd9f14 /examples | |
| parent | c6b526de664af7ab6d7ebaf535c981309ce789d4 (diff) | |
| download | raylib-969e48e3dd67ea26fd3e928914f0c1ffe7dfab23.tar.gz raylib-969e48e3dd67ea26fd3e928914f0c1ffe7dfab23.zip | |
Enable SDL2 library for audio on Web
Solves audio cracking issues
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/examples/Makefile b/examples/Makefile index 8dd46ad3..14639b12 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -118,8 +118,8 @@ endif ifeq ($(PLATFORM),PLATFORM_WEB) # Emscripten required variables EMSDK_PATH = C:/emsdk - EMSCRIPTEN_VERSION = 1.38.8 - CLANG_VERSION = e1.38.8_64bit + EMSCRIPTEN_VERSION = 1.38.20 + CLANG_VERSION = e1.38.20_64bit PYTHON_VERSION = 2.7.13.1_64bit\python-2.7.13.amd64 NODE_VERSION = 8.9.1_64bit export PATH = $(EMSDK_PATH);$(EMSDK_PATH)\clang\$(CLANG_VERSION);$(EMSDK_PATH)\node\$(NODE_VERSION)\bin;$(EMSDK_PATH)\python\$(PYTHON_VERSION);$(EMSDK_PATH)\emscripten\$(EMSCRIPTEN_VERSION);C:\raylib\MinGW\bin:$$(PATH) @@ -239,6 +239,8 @@ ifeq ($(PLATFORM),PLATFORM_WEB) # -Os # size optimization # -O2 # optimization level 2, if used, also set --memory-init-file 0 # --memory-init-file 0 # to avoid an external memory initialization code file (.mem) + # -s USE_GLFW=3 # Use glfw3 library (context/input management) + # -s USE_SDL=2 # Use SDL2 library, required for audio backend # -s ALLOW_MEMORY_GROWTH=1 # to allow memory resizing # -s TOTAL_MEMORY=16777216 # to specify heap memory size (default = 16MB) # -s USE_PTHREADS=1 # multithreading support @@ -247,7 +249,7 @@ ifeq ($(PLATFORM),PLATFORM_WEB) # -s EMTERPRETIFY_ASYNC=1 # support synchronous loops by emterpreter # --profiling # include information for code profiling # --preload-file resources # specify a resources folder for data compilation - CFLAGS += -Os -s USE_GLFW=3 -s ASSERTIONS=1 -s WASM=1 -s EMTERPRETIFY=1 -s EMTERPRETIFY_ASYNC=1 + CFLAGS += -Os -s USE_GLFW=3 -s USE_SDL=2 -s ASSERTIONS=1 -s WASM=1 -s EMTERPRETIFY=1 -s EMTERPRETIFY_ASYNC=1 # NOTE: Simple raylib examples are compiled to be interpreter by emterpreter, that way, # we can compile same code for ALL platforms with no change required, but, working on bigger |
