mirror of https://github.com/pyodide/pyodide.git
32 lines
1.2 KiB
Makefile
32 lines
1.2 KiB
Makefile
PYODIDE_ROOT=$(abspath ..)
|
|
include ../Makefile.envs
|
|
|
|
all: emsdk/.complete
|
|
|
|
emsdk/.complete: ../Makefile.envs $(wildcard patches/*.patch)
|
|
if [ -d emsdk ]; then rm -rf emsdk; fi
|
|
git clone --depth 1 https://github.com/emscripten-core/emsdk.git
|
|
cd emsdk && ./emsdk install --build=Release $(PYODIDE_EMSCRIPTEN_VERSION)
|
|
cd emsdk/upstream/emscripten/ && cat ../../../patches/*.patch | patch -p1 --verbose
|
|
cd emsdk && ./emsdk install --build=Release $(PYODIDE_EMSCRIPTEN_VERSION) ccache-git-emscripten-64bit
|
|
cd emsdk && ./emsdk activate --embedded --build=Release $(PYODIDE_EMSCRIPTEN_VERSION)
|
|
|
|
# Check that generated_struct_info is up to date.
|
|
git diff --no-index --ignore-all-space emsdk/upstream/emscripten/src/struct_info_generated.json ../src/js/struct_info_generated.json > /dev/null || \
|
|
( \
|
|
echo "" && \
|
|
echo "The vendored copy of struct_info_generated.json does not match the copy in Emscripten" && \
|
|
exit 1 \
|
|
)
|
|
|
|
touch emsdk/.complete
|
|
|
|
|
|
update_struct_info:
|
|
rm -f ../src/js/struct_info_generated.json
|
|
cd ../src/js && wget "https://raw.githubusercontent.com/emscripten-core/emscripten/$(PYODIDE_EMSCRIPTEN_VERSION)/src/struct_info_generated.json"
|
|
|
|
|
|
clean:
|
|
rm -rf emsdk
|