pyodide/emsdk/Makefile

20 lines
746 B
Makefile
Raw Normal View History

2019-01-10 12:40:01 +00:00
PYODIDE_ROOT=$(abspath ..)
include ../Makefile.envs
2018-07-20 00:33:56 +00:00
all: emsdk/.complete
2018-03-30 17:08:06 +00:00
emsdk/.complete: ../Makefile.envs $(wildcard patches/*.patch)
if [ -d emsdk ]; then rm -rf emsdk; fi
git clone https://github.com/emscripten-core/emsdk.git
cd emsdk && ./emsdk install --build=Release $(EMSCRIPTEN_VERSION)-fastcomp
git clone --branch $(BINARYEN_VERSION) --depth 1 https://github.com/WebAssembly/binaryen.git emsdk/binaryen
cat patches/*.patch | patch -p1
cd emsdk && ./emsdk activate --embedded --build=Release $(EMSCRIPTEN_VERSION)-fastcomp
cmake -S emsdk/binaryen -B emsdk/binaryen
make -C emsdk/binaryen -j5
sed -i "s/BINARYEN_ROOT.*/BINARYEN_ROOT = emsdk_path \+ '\/binaryen'/g" emsdk/.emscripten
touch emsdk/.complete
2018-03-30 17:08:06 +00:00
clean:
rm -rf emsdk