2018-03-30 17:08:06 +00:00
|
|
|
PYODIDE_ROOT=$(abspath .)
|
2021-01-22 23:18:30 +00:00
|
|
|
|
2018-03-30 17:08:06 +00:00
|
|
|
include Makefile.envs
|
2021-01-22 23:18:30 +00:00
|
|
|
|
2019-11-19 21:51:45 +00:00
|
|
|
.PHONY=check
|
2018-03-30 17:08:06 +00:00
|
|
|
|
2021-01-08 16:29:01 +00:00
|
|
|
FILEPACKAGER=$$EM_DIR/tools/file_packager.py
|
2021-05-01 17:17:32 +00:00
|
|
|
UGLIFYJS=npx uglifyjs
|
|
|
|
PRETTIER=npx prettier
|
2018-04-30 15:31:36 +00:00
|
|
|
|
2018-02-27 22:57:22 +00:00
|
|
|
CPYTHONROOT=cpython
|
|
|
|
CPYTHONLIB=$(CPYTHONROOT)/installs/python-$(PYVERSION)/lib/python$(PYMINOR)
|
2018-02-23 19:34:33 +00:00
|
|
|
|
|
|
|
CC=emcc
|
|
|
|
CXX=em++
|
|
|
|
|
2019-11-19 21:51:45 +00:00
|
|
|
all: check \
|
|
|
|
build/pyodide.asm.js \
|
2018-04-26 15:04:28 +00:00
|
|
|
build/pyodide.js \
|
2019-03-15 16:51:22 +00:00
|
|
|
build/console.html \
|
2019-11-18 21:32:05 +00:00
|
|
|
build/test.data \
|
2021-05-02 13:42:28 +00:00
|
|
|
build/distutils.data \
|
2019-11-18 21:32:05 +00:00
|
|
|
build/packages.json \
|
|
|
|
build/test.html \
|
|
|
|
build/webworker.js \
|
|
|
|
build/webworker_dev.js
|
|
|
|
echo -e "\nSUCCESS!"
|
2018-02-23 19:34:33 +00:00
|
|
|
|
|
|
|
|
2021-01-20 22:27:28 +00:00
|
|
|
build/pyodide.asm.js: \
|
2021-03-24 09:24:06 +00:00
|
|
|
src/core/docstring.o \
|
2021-01-22 23:18:30 +00:00
|
|
|
src/core/error_handling.o \
|
2021-04-17 21:17:19 +00:00
|
|
|
src/core/numpy_patch.o \
|
2021-01-22 23:18:30 +00:00
|
|
|
src/core/hiwire.o \
|
|
|
|
src/core/js2python.o \
|
|
|
|
src/core/jsproxy.o \
|
|
|
|
src/core/keyboard_interrupt.o \
|
|
|
|
src/core/main.o \
|
|
|
|
src/core/pyproxy.o \
|
|
|
|
src/core/python2js_buffer.o \
|
|
|
|
src/core/python2js.o \
|
|
|
|
src/pystone.py \
|
|
|
|
src/_testcapi.py \
|
|
|
|
src/webbrowser.py \
|
2021-05-05 13:42:15 +00:00
|
|
|
$(wildcard src/py/pyodide/*.py) \
|
2021-01-22 23:18:30 +00:00
|
|
|
$(CPYTHONLIB)
|
2020-06-28 13:51:46 +00:00
|
|
|
date +"[%F %T] Building pyodide.asm.js..."
|
2018-03-21 18:55:00 +00:00
|
|
|
[ -d build ] || mkdir build
|
2021-03-31 22:43:46 +00:00
|
|
|
$(CXX) -s EXPORT_NAME="'_createPyodideModule'" -o build/pyodide.asm.js $(filter %.o,$^) \
|
2021-03-26 14:37:59 +00:00
|
|
|
$(MAIN_MODULE_LDFLAGS) -s FORCE_FILESYSTEM=1 \
|
2021-01-10 17:19:34 +00:00
|
|
|
--preload-file $(CPYTHONLIB)@/lib/python$(PYMINOR) \
|
|
|
|
--preload-file src/webbrowser.py@/lib/python$(PYMINOR)/webbrowser.py \
|
|
|
|
--preload-file src/_testcapi.py@/lib/python$(PYMINOR)/_testcapi.py \
|
|
|
|
--preload-file src/pystone.py@/lib/python$(PYMINOR)/pystone.py \
|
2021-05-05 13:42:15 +00:00
|
|
|
--preload-file src/py/pyodide@/lib/python$(PYMINOR)/site-packages/pyodide \
|
|
|
|
--preload-file src/py/_pyodide@/lib/python$(PYMINOR)/site-packages/_pyodide \
|
2021-01-10 17:19:34 +00:00
|
|
|
--exclude-file "*__pycache__*" \
|
2021-04-14 07:55:00 +00:00
|
|
|
--exclude-file "*/test/*" \
|
2021-05-02 13:42:28 +00:00
|
|
|
--exclude-file "*/tests/*" \
|
|
|
|
--exclude-file "*/distutils/*"
|
2021-04-20 01:42:59 +00:00
|
|
|
# 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 build/pyodide.asm.js | grep -ohE 'var _{0,5}.' | sort | uniq -c | sort -nr | head -n 20
|
|
|
|
sed -i -E 's/var __Z[^;]*;//g' build/pyodide.asm.js
|
2021-04-30 22:02:19 +00:00
|
|
|
sed -i '1i\
|
|
|
|
"use strict";\
|
|
|
|
let setImmediate = globalThis.setImmediate;\
|
|
|
|
let clearImmediate = globalThis.clearImmediate;\
|
|
|
|
let baseName, fpcGOT, dyncallGOT, fpVal, dcVal;\
|
|
|
|
' build/pyodide.asm.js
|
|
|
|
echo "globalThis._createPyodideModule = _createPyodideModule;" >> build/pyodide.asm.js
|
2020-06-28 13:51:46 +00:00
|
|
|
date +"[%F %T] done building pyodide.asm.js."
|
2018-04-06 16:22:13 +00:00
|
|
|
|
|
|
|
|
2019-08-14 16:08:17 +00:00
|
|
|
env:
|
|
|
|
env
|
|
|
|
|
|
|
|
|
2021-05-22 22:19:46 +00:00
|
|
|
src/js/node_modules/.installed : src/js/package.json
|
2021-05-20 16:05:05 +00:00
|
|
|
cd src/js && npm install --save-dev
|
2021-05-22 22:19:46 +00:00
|
|
|
touch src/js/node_modules/.installed
|
|
|
|
|
|
|
|
.PHONY: build/pyodide.js
|
|
|
|
build/pyodide.js: src/js/*.js src/js/node_modules/.installed
|
2021-05-20 16:05:05 +00:00
|
|
|
npx typescript src/js/pyodide.js --lib ES2018 --declaration --allowJs --emitDeclarationOnly --outDir build
|
2021-05-05 13:42:15 +00:00
|
|
|
npx rollup -c src/js/rollup.config.js
|
2018-02-26 15:02:52 +00:00
|
|
|
|
2020-11-09 12:28:02 +00:00
|
|
|
build/test.html: src/templates/test.html
|
2018-06-05 00:53:31 +00:00
|
|
|
cp $< $@
|
|
|
|
|
|
|
|
|
2021-04-13 11:58:24 +00:00
|
|
|
.PHONY: build/console.html
|
2020-11-09 12:28:02 +00:00
|
|
|
build/console.html: src/templates/console.html
|
2018-03-30 17:08:06 +00:00
|
|
|
cp $< $@
|
2020-12-18 12:23:45 +00:00
|
|
|
sed -i -e 's#{{ PYODIDE_BASE_URL }}#$(PYODIDE_BASE_URL)#g' $@
|
2018-03-30 17:08:06 +00:00
|
|
|
|
2021-04-13 21:14:37 +00:00
|
|
|
|
|
|
|
.PHONY: docs/_build/html/console.html
|
|
|
|
docs/_build/html/console.html: src/templates/console.html
|
2021-04-19 19:54:43 +00:00
|
|
|
mkdir -p docs/_build/html
|
2021-04-13 21:14:37 +00:00
|
|
|
cp $< $@
|
|
|
|
sed -i -e 's#{{ PYODIDE_BASE_URL }}#$(PYODIDE_BASE_URL)#g' $@
|
|
|
|
|
|
|
|
|
2021-04-13 11:58:24 +00:00
|
|
|
.PHONY: build/webworker.js
|
2019-01-31 23:07:48 +00:00
|
|
|
build/webworker.js: src/webworker.js
|
|
|
|
cp $< $@
|
2020-12-18 12:23:45 +00:00
|
|
|
sed -i -e 's#{{ PYODIDE_BASE_URL }}#$(PYODIDE_BASE_URL)#g' $@
|
2019-02-06 17:20:34 +00:00
|
|
|
|
2021-04-13 11:58:24 +00:00
|
|
|
|
|
|
|
.PHONY: build/webworker_dev.js
|
2019-02-06 17:20:34 +00:00
|
|
|
build/webworker_dev.js: src/webworker.js
|
|
|
|
cp $< $@
|
2020-12-18 12:23:45 +00:00
|
|
|
sed -i -e 's#{{ PYODIDE_BASE_URL }}#./#g' $@
|
2018-04-26 15:04:28 +00:00
|
|
|
|
2021-04-18 14:28:21 +00:00
|
|
|
update_base_url: \
|
|
|
|
build/console.html \
|
2021-04-19 19:54:43 +00:00
|
|
|
build/webworker.js
|
2021-04-13 11:58:24 +00:00
|
|
|
|
2018-08-28 09:59:12 +00:00
|
|
|
test: all
|
2021-05-03 18:51:11 +00:00
|
|
|
pytest src emsdk/tests packages/*/test* pyodide-build -v
|
2018-07-09 21:15:04 +00:00
|
|
|
|
2018-06-14 18:19:08 +00:00
|
|
|
lint:
|
2020-06-28 18:24:40 +00:00
|
|
|
# check for unused imports, the rest is done by black
|
2021-05-03 18:51:11 +00:00
|
|
|
flake8 --select=F401 src tools pyodide-build benchmark conftest.py docs
|
2021-05-01 17:17:32 +00:00
|
|
|
clang-format-6.0 -output-replacements-xml `find src -type f -regex ".*\.\(c\|h\\)"` | (! grep '<replacement ')
|
|
|
|
$(PRETTIER) --check `find src -type f -name '*.js'`
|
2021-01-01 07:48:28 +00:00
|
|
|
black --check .
|
2021-05-03 18:51:11 +00:00
|
|
|
mypy --ignore-missing-imports pyodide-build/pyodide_build/ src/ packages/micropip/micropip/ packages/*/test* conftest.py docs
|
2018-06-14 18:19:08 +00:00
|
|
|
|
2020-12-31 01:57:41 +00:00
|
|
|
apply-lint:
|
|
|
|
./tools/apply-lint.sh
|
2020-12-23 10:05:58 +00:00
|
|
|
|
2018-10-02 01:11:02 +00:00
|
|
|
benchmark: all
|
2018-04-09 14:39:52 +00:00
|
|
|
python benchmark/benchmark.py $(HOSTPYTHON) build/benchmarks.json
|
2018-04-11 12:51:41 +00:00
|
|
|
python benchmark/plot_benchmark.py build/benchmarks.json build/benchmarks.png
|
2018-04-05 22:07:33 +00:00
|
|
|
|
|
|
|
|
2018-02-23 19:34:33 +00:00
|
|
|
clean:
|
2018-07-20 00:37:27 +00:00
|
|
|
rm -fr build/*
|
2021-03-16 21:05:49 +00:00
|
|
|
rm -fr src/*/*.o
|
2021-01-01 15:43:48 +00:00
|
|
|
rm -fr node_modules
|
2018-06-20 18:54:47 +00:00
|
|
|
make -C packages clean
|
2021-01-03 21:09:40 +00:00
|
|
|
echo "The Emsdk, CPython are not cleaned. cd into those directories to do so."
|
2018-02-23 19:34:33 +00:00
|
|
|
|
2020-07-07 14:21:33 +00:00
|
|
|
clean-all: clean
|
|
|
|
make -C emsdk clean
|
|
|
|
make -C cpython clean
|
|
|
|
rm -fr cpython/build
|
2018-02-23 19:34:33 +00:00
|
|
|
|
2021-03-26 22:59:06 +00:00
|
|
|
%.o: %.c $(CPYTHONLIB) $(wildcard src/**/*.h src/**/*.js)
|
2021-03-26 14:37:59 +00:00
|
|
|
$(CC) -o $@ -c $< $(MAIN_MODULE_CFLAGS) -Isrc/core/
|
2018-04-24 23:29:54 +00:00
|
|
|
|
2021-05-02 13:42:28 +00:00
|
|
|
# Stdlib modules that we repackage as standalone packages
|
2018-04-24 23:29:54 +00:00
|
|
|
|
2021-05-02 13:42:28 +00:00
|
|
|
# TODO: also include test directories included in other stdlib modules
|
2021-05-01 17:17:32 +00:00
|
|
|
build/test.data: $(CPYTHONLIB)
|
2018-08-09 20:51:47 +00:00
|
|
|
( \
|
2019-11-18 21:32:05 +00:00
|
|
|
cd $(CPYTHONLIB)/test; \
|
|
|
|
find . -type d -name __pycache__ -prune -exec rm -rf {} \; \
|
2018-08-09 20:51:47 +00:00
|
|
|
)
|
2018-08-21 15:29:14 +00:00
|
|
|
( \
|
|
|
|
cd build; \
|
2021-04-26 02:55:52 +00:00
|
|
|
python $(FILEPACKAGER) test.data --lz4 --preload ../$(CPYTHONLIB)/test@/lib/python$(PYMINOR)/test --js-output=test.js --export-name=globalThis.pyodide._module --exclude __pycache__ \
|
2019-11-18 21:32:05 +00:00
|
|
|
)
|
2021-01-01 15:43:48 +00:00
|
|
|
$(UGLIFYJS) build/test.js -o build/test.js
|
2021-05-03 18:51:11 +00:00
|
|
|
|
2021-05-02 13:42:28 +00:00
|
|
|
|
|
|
|
build/distutils.data: $(CPYTHONLIB)
|
|
|
|
( \
|
|
|
|
cd $(CPYTHONLIB)/distutils; \
|
|
|
|
find . -type d -name __pycache__ -prune -exec rm -rf {} \; ;\
|
|
|
|
find . -type d -name tests -prune -exec rm -rf {} \; \
|
|
|
|
)
|
|
|
|
( \
|
|
|
|
cd build; \
|
|
|
|
python $(FILEPACKAGER) distutils.data --lz4 --preload ../$(CPYTHONLIB)/distutils@/lib/python$(PYMINOR)/distutils --js-output=distutils.js --export-name=pyodide._module --exclude __pycache__ --exclude tests \
|
|
|
|
)
|
|
|
|
$(UGLIFYJS) build/distutils.js -o build/distutils.js
|
|
|
|
|
2018-06-15 16:21:12 +00:00
|
|
|
|
2019-07-04 21:05:49 +00:00
|
|
|
$(CPYTHONLIB): emsdk/emsdk/.complete $(PYODIDE_EMCC) $(PYODIDE_CXX)
|
2020-06-28 13:51:46 +00:00
|
|
|
date +"[%F %T] Building cpython..."
|
2018-02-27 22:57:22 +00:00
|
|
|
make -C $(CPYTHONROOT)
|
2020-06-28 13:51:46 +00:00
|
|
|
date +"[%F %T] done building cpython..."
|
2018-03-20 22:58:59 +00:00
|
|
|
|
2020-12-23 13:24:32 +00:00
|
|
|
build/packages.json: FORCE
|
2020-06-28 13:51:46 +00:00
|
|
|
date +"[%F %T] Building packages..."
|
2018-06-20 18:54:47 +00:00
|
|
|
make -C packages
|
2020-06-28 13:51:46 +00:00
|
|
|
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:
|
2020-06-28 13:51:46 +00:00
|
|
|
date +"[%F %T] Building emsdk..."
|
2018-03-30 17:08:06 +00:00
|
|
|
make -C emsdk
|
2020-06-28 13:51:46 +00:00
|
|
|
date +"[%F %T] done building emsdk."
|
2019-03-13 18:50:18 +00:00
|
|
|
|
|
|
|
FORCE:
|
2019-11-19 21:51:45 +00:00
|
|
|
|
|
|
|
check:
|
|
|
|
./tools/dependency-check.sh
|
2020-12-31 00:42:02 +00:00
|
|
|
|
|
|
|
minimal :
|
2021-03-20 18:00:35 +00:00
|
|
|
PYODIDE_PACKAGES+=",micropip" make
|
2021-01-12 05:39:59 +00:00
|
|
|
|
|
|
|
debug :
|
2021-03-20 18:00:35 +00:00
|
|
|
EXTRA_CFLAGS+=" -D DEBUG_F" \
|
|
|
|
PYODIDE_PACKAGES+=", micropip, pyparsing, pytz, packaging, kiwisolver, " \
|
2021-01-12 05:39:59 +00:00
|
|
|
make
|