From 67d0bf75a789c0d8c36ebc81d12930b3645f4970 Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 20 Feb 2020 23:00:29 +0100 Subject: Update Makefile paths to use emscripten upstream Note that emscripten upstream branch implements the new asyncify implementation, expected to be faster than emterpreter one. --- src/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/Makefile b/src/Makefile index e02af33b..e7086e55 100644 --- a/src/Makefile +++ b/src/Makefile @@ -148,8 +148,8 @@ endif ifeq ($(PLATFORM),PLATFORM_WEB) # Emscripten required variables EMSDK_PATH ?= C:/emsdk - EMSCRIPTEN_PATH ?= $(EMSDK_PATH)/fastcomp/emscripten - CLANG_PATH = $(EMSDK_PATH)/fastcomp/bin + 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 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) -- cgit v1.2.3