2019-01-10 12:40:01 +00:00
|
|
|
PYODIDE_ROOT=$(abspath ..)
|
|
|
|
include ../Makefile.envs
|
|
|
|
|
2021-01-02 13:03:45 +00:00
|
|
|
export PATH := /usr/lib/ccache:$(PATH)
|
|
|
|
|
2018-07-20 00:33:56 +00:00
|
|
|
all: emsdk/.complete
|
2018-03-30 17:08:06 +00:00
|
|
|
|
2020-12-06 10:36:37 +00:00
|
|
|
emsdk/.complete: ../Makefile.envs $(wildcard patches/*.patch)
|
2018-07-18 22:45:20 +00:00
|
|
|
if [ -d emsdk ]; then rm -rf emsdk; fi
|
2020-11-30 17:54:35 +00:00
|
|
|
git clone https://github.com/emscripten-core/emsdk.git
|
2020-12-06 10:36:37 +00:00
|
|
|
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
|
2021-01-02 11:40:35 +00:00
|
|
|
make -C emsdk/binaryen -j5 wasm-opt
|
|
|
|
cp emsdk/binaryen/bin/wasm-opt emsdk/fastcomp/bin/
|
2020-12-06 10:36:37 +00:00
|
|
|
touch emsdk/.complete
|
2018-03-30 17:08:06 +00:00
|
|
|
|
2021-01-03 11:25:14 +00:00
|
|
|
.PHONY: test
|
|
|
|
test:
|
|
|
|
pytest tests/ -v
|
|
|
|
|
2018-03-30 17:08:06 +00:00
|
|
|
clean:
|
|
|
|
rm -rf emsdk
|