summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRay <[email protected]>2020-02-22 17:21:41 +0100
committerRay <[email protected]>2020-02-22 17:21:41 +0100
commite62d5c78c10fa9e8b75661134d960c316645d632 (patch)
tree35642525b85137620f2704233fb91d0595ffa84d
parent2a04e73387c14a957041de5d7cf13ff6436deb7c (diff)
downloadraylib.com-e62d5c78c10fa9e8b75661134d960c316645d632.tar.gz
raylib.com-e62d5c78c10fa9e8b75661134d960c316645d632.zip
Update to latest emscripten toolchain
-rw-r--r--examples/web/Makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/examples/web/Makefile b/examples/web/Makefile
index 1eebff8..b251428 100644
--- a/examples/web/Makefile
+++ b/examples/web/Makefile
@@ -118,7 +118,7 @@ ifeq ($(PLATFORM),PLATFORM_WEB)
EMSDK_PATH ?= C:/emsdk
EMSCRIPTEN_PATH ?= $(EMSDK_PATH)/upstream/emscripten
CLANG_PATH = $(EMSDK_PATH)/upstream/bin
- PYTHON_PATH = $(EMSDK_PATH)/python/2.7.13.1_64bit/python-2.7.13.amd64
+ PYTHON_PATH = $(EMSDK_PATH)/python/3.7.4_64bit
NODE_PATH = $(EMSDK_PATH)/node/12.9.1_64bit/bin
export PATH = $(EMSDK_PATH);$(EMSCRIPTEN_PATH);$(CLANG_PATH);$(NODE_PATH);$(PYTHON_PATH);C:\raylib\MinGW\bin:$$(PATH)
endif
@@ -230,10 +230,6 @@ ifeq ($(PLATFORM),PLATFORM_WEB)
# -s ALLOW_MEMORY_GROWTH=1 # to allow memory resizing -> WARNING: Audio buffers could FAIL!
# -s TOTAL_MEMORY=16777216 # to specify heap memory size (default = 16MB)
# -s USE_PTHREADS=1 # multithreading support
- # -s WASM=0 # disable Web Assembly, emitted by default
- # -s EMTERPRETIFY=1 # enable emscripten code interpreter (very slow)
- # -s EMTERPRETIFY_ASYNC=1 # support synchronous loops by emterpreter
- # -s FORCE_FILESYSTEM=1 # force filesystem to load/save files data
# -s ASSERTIONS=1 # enable runtime checks for common memory allocation errors (-O1 and above turn it off)
# --profiling # include information for code profiling
# --memory-init-file 0 # to avoid an external memory initialization code file (.mem)