Skip to content

Commit

Permalink
Update code to use new path
Browse files Browse the repository at this point in the history
  • Loading branch information
aseering committed Dec 30, 2019
1 parent 46ef552 commit f98aaf6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile.envs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export EMSCRIPTEN_VERSION = 1.38.30

export PATH := $(PYODIDE_ROOT)/ccache:$(PYODIDE_ROOT)/emsdk/emsdk:$(PYODIDE_ROOT)/emsdk/emsdk/clang/tag-e$(EMSCRIPTEN_VERSION)/build_tag-e$(EMSCRIPTEN_VERSION)_64/bin:$(PYODIDE_ROOT)/emsdk/emsdk/node/8.9.1_64bit/bin:$(PYODIDE_ROOT)/emsdk/emsdk/emscripten/tag-$(EMSCRIPTEN_VERSION):$(PYODIDE_ROOT)/emsdk/emsdk/binaryen/tag-$(EMSCRIPTEN_VERSION)_64bit_binaryen/bin:$(PATH)
export PATH := $(PYODIDE_ROOT)/ccache:$(PYODIDE_ROOT)/emsdk/emsdk:$(PYODIDE_ROOT)/emsdk/emsdk/fastcomp-clang/tag-e$(EMSCRIPTEN_VERSION)/build_tag-e$(EMSCRIPTEN_VERSION)_64/bin:$(PYODIDE_ROOT)/emsdk/emsdk/node/8.9.1_64bit/bin:$(PYODIDE_ROOT)/emsdk/emsdk/emscripten/tag-$(EMSCRIPTEN_VERSION):$(PYODIDE_ROOT)/emsdk/emsdk/binaryen/tag-$(EMSCRIPTEN_VERSION)_64bit_binaryen/bin:$(PATH)

export EMSDK = $(PYODIDE_ROOT)/emsdk/emsdk
export EM_CONFIG = $(PYODIDE_ROOT)/emsdk/emsdk/.emscripten
Expand Down
2 changes: 1 addition & 1 deletion emsdk/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ emsdk/.complete:
cd emsdk/binaryen/tag-$(EMSCRIPTEN_VERSION)_64bit_binaryen/ && \
make && \
cd ../../.. && \
cd emsdk/clang/tag-e$(EMSCRIPTEN_VERSION)/build_tag-e$(EMSCRIPTEN_VERSION)_64/ && \
cd emsdk/fastcomp-clang/tag-e$(EMSCRIPTEN_VERSION)/build_tag-e$(EMSCRIPTEN_VERSION)_64/ && \
make && \
cd ../../.. && \
./emsdk activate --embedded --build=Release sdk-fastcomp-tag-$(EMSCRIPTEN_VERSION)-64bit binaryen-tag-$(EMSCRIPTEN_VERSION)-64bit && \
Expand Down
2 changes: 1 addition & 1 deletion emsdk/clean_for_dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ find . -name "*.a" -type f -delete
find -type d -name .git -prune -exec rm -rf {} \;
find -type d -name CMakeFiles -prune -exec rm -rf {} \;
rm -rf emsdk/emscripten/incoming/tests
rm -rf emsdk/clang/fastcomp/src
rm -rf emsdk/emsdk/fastcomp-clang/fastcomp/src
rm -rf emsdk/zips
rm -rf emsdk/binaryen/master/test
rm -rf emsdk/.emscripten_cache
Expand Down
6 changes: 3 additions & 3 deletions emsdk/patches/callHandlers.patch
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
From https://github.com/emscripten-core/emscripten-fastcomp/pull/25 6
diff --git a/emsdk/clang/tag-e1.38.30/src/lib/Target/JSBackend/CallHandlers.h b/emsdk/clang/tag-e1.38.30/src/lib/Target/JSBackend/CallHandlers.h
diff --git a/emsdk/fastcomp-clang/tag-e1.38.30/src/lib/Target/JSBackend/CallHandlers.h b/emsdk/fastcomp-clang/tag-e1.38.30/src/lib/Target/JSBackend/CallHandlers.h
index e414c0444a7..9c3ae3bf288 100644
--- a/emsdk/clang/tag-e1.38.80/src/lib/Target/JSBackend/CallHandlers.h
+++ b/emsdk/clang/tag-e1.38.30/src/lib/Target/JSBackend/CallHandlers.h
--- a/emsdk/fastcomp-clang/tag-e1.38.80/src/lib/Target/JSBackend/CallHandlers.h
+++ b/emsdk/fastcomp-clang/tag-e1.38.30/src/lib/Target/JSBackend/CallHandlers.h
@@ -843,17 +843,21 @@ DEF_CALL_HANDLER(emscripten_asm_const_async_on_main_thread, {

DEF_CALL_HANDLER(emscripten_atomic_exchange_u8, {
Expand Down

0 comments on commit f98aaf6

Please sign in to comment.