pyodide/Makefile

209 lines
6.0 KiB
Makefile
Raw Normal View History

2018-03-30 17:08:06 +00:00
PYODIDE_ROOT=$(abspath .)
2018-03-30 17:08:06 +00:00
include Makefile.envs
.PHONY=check
2018-03-30 17:08:06 +00:00
2018-02-23 19:34:33 +00:00
CC=emcc
CXX=em++
all: check \
dist/pyodide.asm.js \
dist/pyodide.js \
dist/pyodide.d.ts \
dist/package.json \
dist/python \
dist/console.html \
dist/repodata.json \
dist/pyodide_py.tar \
dist/test.html \
dist/module_test.html \
dist/webworker.js \
dist/webworker_dev.js \
dist/module_webworker_dev.js
echo -e "\nSUCCESS!"
2018-02-23 19:34:33 +00:00
dist/pyodide_py.tar: $(wildcard src/py/pyodide/*.py) $(wildcard src/py/_pyodide/*.py)
cd src/py && tar --exclude '*__pycache__*' -cf ../../dist/pyodide_py.tar pyodide _pyodide
dist/pyodide.asm.js: \
src/core/docstring.o \
src/core/error_handling.o \
src/core/hiwire.o \
src/core/_pyodide_core.o \
src/core/js2python.o \
src/core/jsproxy.o \
src/core/main.o \
src/core/pyproxy.o \
src/core/python2js_buffer.o \
src/core/python2js.o \
src/js/_pyodide.out.js \
$(wildcard src/py/lib/*.py) \
$(CPYTHONLIB)
date +"[%F %T] Building pyodide.asm.js..."
[ -d dist ] || mkdir dist
$(CXX) -o dist/pyodide.asm.js $(filter %.o,$^) \
$(MAIN_MODULE_LDFLAGS)
if [[ -n $${PYODIDE_SOURCEMAP+x} ]] || [[ -n $${PYODIDE_SYMBOLS+x} ]] || [[ -n $${PYODIDE_DEBUG_JS+x} ]]; then \
cd dist && npx prettier -w pyodide.asm.js ; \
fi
# Strip out C++ symbols which all start __Z.
# There are 4821 of these and they have VERY VERY long names.
# To show some stats on the symbols you can use the following:
# cat dist/pyodide.asm.js | grep -ohE 'var _{0,5}.' | sort | uniq -c | sort -nr | head -n 20
sed -i -E 's/var __Z[^;]*;//g' dist/pyodide.asm.js
sed -i '1i "use strict";' dist/pyodide.asm.js
2022-03-20 17:04:47 +00:00
# Remove last 6 lines of pyodide.asm.js, see issue #2282
# Hopefully we will remove this after emscripten fixes it, upstream issue
# emscripten-core/emscripten#16518
# Sed nonsense from https://stackoverflow.com/a/13383331
sed -i -n -e :a -e '1,6!{P;N;D;};N;ba' dist/pyodide.asm.js
echo "globalThis._createPyodideModule = _createPyodideModule;" >> dist/pyodide.asm.js
date +"[%F %T] done building pyodide.asm.js."
2018-04-06 16:22:13 +00:00
env:
env
node_modules/.installed : src/js/package.json src/js/package-lock.json
cd src/js && npm ci
ln -sfn src/js/node_modules/ node_modules
touch node_modules/.installed
dist/pyodide.js src/js/_pyodide.out.js: src/js/*.ts src/js/pyproxy.gen.ts src/js/error_handling.gen.ts node_modules/.installed
npx rollup -c src/js/rollup.config.mjs
dist/package.json : src/js/package.json
cp $< $@
.PHONY: npm-link
npm-link: dist/package.json
cd src/test-js && npm ci && npm link ../../dist
dist/pyodide.d.ts: src/js/*.ts src/js/pyproxy.gen.ts src/js/error_handling.gen.ts
npx dts-bundle-generator src/js/pyodide.ts --export-referenced-types false
mv src/js/pyodide.d.ts dist
src/js/error_handling.gen.ts : src/core/error_handling.ts
cp $< $@
%.wasm.gen.js: %.wat
node tools/assemble_wat.js $@
src/js/pyproxy.gen.ts : src/core/pyproxy.* src/core/*.h
# We can't input pyproxy.js directly because CC will be unhappy about the file
# extension. Instead cat it and have CC read from stdin.
# -E : Only apply prepreocessor
# -C : Leave comments alone (this allows them to be preserved in typescript
# definition files, rollup will strip them out)
# -P : Don't put in macro debug info
# -imacros pyproxy.c : include all of the macros definitions from pyproxy.c
2022-01-27 08:03:50 +00:00
#
# First we use sed to delete the segments of the file between
# "// pyodide-skip" and "// end-pyodide-skip". This allows us to give
# typescript type declarations for the macros which we need for intellisense
# and documentation generation. The result of processing the type
# declarations with the macro processor is a type error, so we snip them
# out.
rm -f $@
echo "// This file is generated by applying the C preprocessor to core/pyproxy.ts" >> $@
echo "// It uses the macros defined in core/pyproxy.c" >> $@
echo "// Do not edit it directly!" >> $@
cat src/core/pyproxy.ts | \
sed '/^\/\/\s*pyodide-skip/,/^\/\/\s*end-pyodide-skip/d' | \
2023-01-24 03:45:59 +00:00
$(CC) -E -C -P -imacros src/core/pyproxy.c $(MAIN_MODULE_CFLAGS) - | \
sed 's/^#pragma clang.*//g' \
>> $@
dist/test.html: src/templates/test.html
2018-06-05 00:53:31 +00:00
cp $< $@
dist/module_test.html: src/templates/module_test.html
cp $< $@
2018-06-05 00:53:31 +00:00
dist/python: src/templates/python
cp $< $@
.PHONY: dist/console.html
dist/console.html: src/templates/console.html
2018-03-30 17:08:06 +00:00
cp $< $@
sed -i -e 's#{{ PYODIDE_BASE_URL }}#$(PYODIDE_BASE_URL)#g' $@
2018-03-30 17:08:06 +00:00
.PHONY: dist/webworker.js
dist/webworker.js: src/templates/webworker.js
2019-01-31 23:07:48 +00:00
cp $< $@
2019-02-06 17:20:34 +00:00
.PHONY: dist/module_webworker_dev.js
dist/module_webworker_dev.js: src/templates/module_webworker.js
cp $< $@
.PHONY: dist/webworker_dev.js
dist/webworker_dev.js: src/templates/webworker.js
2019-02-06 17:20:34 +00:00
cp $< $@
2022-02-19 08:06:25 +00:00
.PHONY: lint
lint:
pre-commit run -a --show-diff-on-failure
2018-10-02 01:11:02 +00:00
benchmark: all
$(HOSTPYTHON) benchmark/benchmark.py all --output dist/benchmarks.json
$(HOSTPYTHON) benchmark/plot_benchmark.py dist/benchmarks.json dist/benchmarks.png
2018-04-05 22:07:33 +00:00
2018-02-23 19:34:33 +00:00
clean:
rm -fr dist/*
2021-03-16 21:05:49 +00:00
rm -fr src/*/*.o
rm -fr node_modules
2018-06-20 18:54:47 +00:00
make -C packages clean
echo "The Emsdk, CPython are not cleaned. cd into those directories to do so."
2018-02-23 19:34:33 +00:00
clean-python: clean
make -C cpython clean
2022-06-10 20:26:10 +00:00
clean-all: clean
make -C emsdk clean
make -C cpython clean-all
%.o: %.c $(CPYTHONLIB) $(wildcard src/core/*.h src/core/*.js)
$(CC) -o $@ -c $< $(MAIN_MODULE_CFLAGS) -Isrc/core/
$(CPYTHONLIB): emsdk/emsdk/.complete
date +"[%F %T] Building cpython..."
2018-02-27 22:57:22 +00:00
make -C $(CPYTHONROOT)
date +"[%F %T] done building cpython..."
2018-03-20 22:58:59 +00:00
dist/repodata.json: FORCE
date +"[%F %T] Building packages..."
2018-06-20 18:54:47 +00:00
make -C packages
date +"[%F %T] done building packages..."
2018-05-17 15:57:39 +00:00
2018-07-20 00:33:56 +00:00
emsdk/emsdk/.complete:
date +"[%F %T] Building emsdk..."
2018-03-30 17:08:06 +00:00
make -C emsdk
date +"[%F %T] done building emsdk."
2022-06-09 17:57:34 +00:00
rust:
echo -e '\033[0;31m[WARNING] The target `make rust` is only for development and we do not guarantee that it will work or be maintained.\033[0m'
wget -q -O - https://sh.rustup.rs | sh -s -- -y
source $(HOME)/.cargo/env && rustup toolchain install $(RUST_TOOLCHAIN) && rustup default $(RUST_TOOLCHAIN)
source $(HOME)/.cargo/env && rustup target add wasm32-unknown-emscripten --toolchain $(RUST_TOOLCHAIN)
2022-06-09 17:57:34 +00:00
FORCE:
check:
./tools/dependency-check.sh
debug :
EXTRA_CFLAGS+=" -D DEBUG_F" \
make