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
|
|
|
|
2018-02-23 19:34:33 +00:00
|
|
|
CC=emcc
|
|
|
|
CXX=em++
|
|
|
|
|
2021-07-06 11:28:39 +00:00
|
|
|
|
2019-11-19 21:51:45 +00:00
|
|
|
all: check \
|
2022-04-11 23:01:40 +00:00
|
|
|
dist/pyodide.asm.js \
|
|
|
|
dist/pyodide.js \
|
2022-04-18 04:10:03 +00:00
|
|
|
dist/pyodide.d.ts \
|
|
|
|
dist/package.json \
|
2022-04-11 23:01:40 +00:00
|
|
|
dist/console.html \
|
|
|
|
dist/distutils.tar \
|
2022-05-03 04:09:14 +00:00
|
|
|
dist/test.tar \
|
2022-04-11 23:01:40 +00:00
|
|
|
dist/packages.json \
|
|
|
|
dist/pyodide_py.tar \
|
|
|
|
dist/test.html \
|
|
|
|
dist/module_test.html \
|
|
|
|
dist/webworker.js \
|
|
|
|
dist/webworker_dev.js \
|
|
|
|
dist/module_webworker_dev.js
|
2019-11-18 21:32:05 +00:00
|
|
|
echo -e "\nSUCCESS!"
|
2018-02-23 19:34:33 +00:00
|
|
|
|
2022-04-11 23:01:40 +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
|
2021-12-15 02:12:49 +00:00
|
|
|
|
2022-04-11 23:01:40 +00:00
|
|
|
dist/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 \
|
2022-02-19 07:31:19 +00:00
|
|
|
src/core/error_handling_cpp.o \
|
2021-01-22 23:18:30 +00:00
|
|
|
src/core/hiwire.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 \
|
2022-04-15 01:04:01 +00:00
|
|
|
src/js/_pyodide.out.js \
|
2021-11-09 22:42:24 +00:00
|
|
|
$(wildcard src/py/lib/*.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..."
|
2022-04-11 23:01:40 +00:00
|
|
|
[ -d dist ] || mkdir dist
|
|
|
|
$(CXX) -o dist/pyodide.asm.js $(filter %.o,$^) \
|
2021-11-18 22:37:47 +00:00
|
|
|
$(MAIN_MODULE_LDFLAGS)
|
2022-05-31 00:16:55 +00:00
|
|
|
|
|
|
|
if [[ -n $${PYODIDE_SOURCEMAP+x} ]] || [[ -n $${PYODIDE_SYMBOLS+x} ]]; then \
|
|
|
|
cd dist && npx prettier -w pyodide.asm.js ; \
|
|
|
|
fi
|
|
|
|
|
2021-05-23 01:36:25 +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:
|
2022-04-11 23:01:40 +00:00
|
|
|
# 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
|
2022-04-15 01:04:01 +00:00
|
|
|
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
|
2022-04-11 23:01:40 +00:00
|
|
|
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
|
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-11-27 19:43:31 +00:00
|
|
|
node_modules/.installed : src/js/package.json src/js/package-lock.json
|
|
|
|
cd src/js && npm ci
|
2021-05-29 17:31:56 +00:00
|
|
|
ln -sfn src/js/node_modules/ node_modules
|
|
|
|
touch node_modules/.installed
|
|
|
|
|
2022-04-15 01:04:01 +00:00
|
|
|
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
|
2021-05-05 13:42:15 +00:00
|
|
|
npx rollup -c src/js/rollup.config.js
|
2018-02-26 15:02:52 +00:00
|
|
|
|
2022-04-18 04:10:03 +00:00
|
|
|
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
|
|
|
|
|
2022-04-14 08:55:42 +00:00
|
|
|
dist/pyodide.d.ts: src/js/*.ts src/js/pyproxy.gen.ts src/js/error_handling.gen.ts
|
2022-04-18 04:10:03 +00:00
|
|
|
npx dts-bundle-generator src/js/pyodide.ts --export-referenced-types false
|
|
|
|
mv src/js/pyodide.d.ts dist
|
2022-04-14 08:55:42 +00:00
|
|
|
|
2022-01-25 16:43:39 +00:00
|
|
|
src/js/error_handling.gen.ts : src/core/error_handling.ts
|
2022-01-24 04:11:10 +00:00
|
|
|
cp $< $@
|
|
|
|
|
2022-01-25 16:43:39 +00:00
|
|
|
src/js/pyproxy.gen.ts : src/core/pyproxy.* src/core/*.h
|
2021-05-23 01:36:25 +00:00
|
|
|
# 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
|
2021-05-29 17:31:56 +00:00
|
|
|
# -C : Leave comments alone (this allows them to be preserved in typescript
|
|
|
|
# definition files, rollup will strip them out)
|
2021-05-23 01:36:25 +00:00
|
|
|
# -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.
|
2021-05-23 01:36:25 +00:00
|
|
|
rm -f $@
|
2022-01-25 16:43:39 +00:00
|
|
|
echo "// This file is generated by applying the C preprocessor to core/pyproxy.ts" >> $@
|
2021-05-23 01:36:25 +00:00
|
|
|
echo "// It uses the macros defined in core/pyproxy.c" >> $@
|
|
|
|
echo "// Do not edit it directly!" >> $@
|
2022-01-25 16:43:39 +00:00
|
|
|
cat src/core/pyproxy.ts | \
|
|
|
|
sed '/^\/\/\s*pyodide-skip/,/^\/\/\s*end-pyodide-skip/d' | \
|
|
|
|
$(CC) -E -C -P -imacros src/core/pyproxy.c $(MAIN_MODULE_CFLAGS) - \
|
|
|
|
>> $@
|
2021-05-23 01:36:25 +00:00
|
|
|
|
2022-04-11 23:01:40 +00:00
|
|
|
dist/test.html: src/templates/test.html
|
2018-06-05 00:53:31 +00:00
|
|
|
cp $< $@
|
|
|
|
|
2022-04-11 23:01:40 +00:00
|
|
|
dist/module_test.html: src/templates/module_test.html
|
2022-03-02 08:31:41 +00:00
|
|
|
cp $< $@
|
2018-06-05 00:53:31 +00:00
|
|
|
|
2022-04-11 23:01:40 +00:00
|
|
|
.PHONY: dist/console.html
|
|
|
|
dist/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' $@
|
|
|
|
|
|
|
|
|
2022-04-11 23:01:40 +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
|
|
|
|
2022-04-11 23:01:40 +00:00
|
|
|
.PHONY: dist/module_webworker_dev.js
|
|
|
|
dist/module_webworker_dev.js: src/templates/module_webworker.js
|
2022-03-02 08:31:41 +00:00
|
|
|
cp $< $@
|
2021-04-13 11:58:24 +00:00
|
|
|
|
2022-04-11 23:01:40 +00:00
|
|
|
.PHONY: dist/webworker_dev.js
|
|
|
|
dist/webworker_dev.js: src/templates/webworker.js
|
2019-02-06 17:20:34 +00:00
|
|
|
cp $< $@
|
2018-04-26 15:04:28 +00:00
|
|
|
|
2021-07-06 11:28:39 +00:00
|
|
|
|
2021-04-18 14:28:21 +00:00
|
|
|
update_base_url: \
|
2022-05-19 06:09:24 +00:00
|
|
|
dist/console.html
|
2021-04-13 11:58:24 +00:00
|
|
|
|
2021-07-06 11:28:39 +00:00
|
|
|
|
2018-07-09 21:15:04 +00:00
|
|
|
|
2022-02-19 08:06:25 +00:00
|
|
|
.PHONY: lint
|
|
|
|
lint:
|
|
|
|
pre-commit run -a --show-diff-on-failure
|
2021-07-06 11:28:39 +00:00
|
|
|
|
2018-10-02 01:11:02 +00:00
|
|
|
benchmark: all
|
2022-04-11 23:01:40 +00:00
|
|
|
$(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:
|
2022-04-11 23:01:40 +00:00
|
|
|
rm -fr dist/*
|
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
|
|
|
|
2021-11-16 19:22:50 +00:00
|
|
|
clean-python: clean
|
|
|
|
make -C cpython clean
|
2021-07-06 11:28:39 +00:00
|
|
|
|
2022-06-10 20:26:10 +00:00
|
|
|
clean-all: clean
|
2020-07-07 14:21:33 +00:00
|
|
|
make -C emsdk clean
|
2021-11-16 19:22:50 +00:00
|
|
|
make -C cpython clean-all
|
|
|
|
|
2022-02-19 07:31:19 +00:00
|
|
|
src/core/error_handling_cpp.o: src/core/error_handling_cpp.cpp
|
|
|
|
$(CXX) -o $@ -c $< $(MAIN_MODULE_CFLAGS) -Isrc/core/
|
2018-02-23 19:34:33 +00:00
|
|
|
|
2022-01-30 03:30:58 +00:00
|
|
|
%.o: %.c $(CPYTHONLIB) $(wildcard src/core/*.h src/core/*.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-07-06 11:28:39 +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
|
|
|
|
2022-03-17 22:48:56 +00:00
|
|
|
TEST_EXTENSIONS= \
|
|
|
|
_testinternalcapi.so \
|
|
|
|
_testcapi.so \
|
|
|
|
_testbuffer.so \
|
|
|
|
_testimportmultiple.so \
|
2022-03-22 20:41:43 +00:00
|
|
|
_testmultiphase.so \
|
|
|
|
_ctypes_test.so
|
2022-03-17 22:48:56 +00:00
|
|
|
TEST_MODULE_CFLAGS= $(SIDE_MODULE_CFLAGS) -I Include/ -I .
|
|
|
|
|
2021-05-02 13:42:28 +00:00
|
|
|
# TODO: also include test directories included in other stdlib modules
|
2022-04-11 23:01:40 +00:00
|
|
|
dist/test.tar: $(CPYTHONLIB) node_modules/.installed
|
2022-03-17 22:48:56 +00:00
|
|
|
cd $(CPYTHONBUILD) && emcc $(TEST_MODULE_CFLAGS) -c Modules/_testinternalcapi.c -o Modules/_testinternalcapi.o \
|
|
|
|
-I Include/internal/ -DPy_BUILD_CORE_MODULE
|
|
|
|
cd $(CPYTHONBUILD) && emcc $(TEST_MODULE_CFLAGS) -c Modules/_testcapimodule.c -o Modules/_testcapi.o
|
|
|
|
cd $(CPYTHONBUILD) && emcc $(TEST_MODULE_CFLAGS) -c Modules/_testbuffer.c -o Modules/_testbuffer.o
|
|
|
|
cd $(CPYTHONBUILD) && emcc $(TEST_MODULE_CFLAGS) -c Modules/_testimportmultiple.c -o Modules/_testimportmultiple.o
|
|
|
|
cd $(CPYTHONBUILD) && emcc $(TEST_MODULE_CFLAGS) -c Modules/_testmultiphase.c -o Modules/_testmultiphase.o
|
2022-03-22 20:41:43 +00:00
|
|
|
cd $(CPYTHONBUILD) && emcc $(TEST_MODULE_CFLAGS) -c Modules/_ctypes/_ctypes_test.c -o Modules/_ctypes_test.o
|
2022-03-17 22:48:56 +00:00
|
|
|
|
|
|
|
for testname in $(TEST_EXTENSIONS); do \
|
|
|
|
cd $(CPYTHONBUILD) && \
|
|
|
|
emcc Modules/$${testname%.*}.o -o $$testname $(SIDE_MODULE_LDFLAGS) && \
|
2022-05-19 05:19:37 +00:00
|
|
|
rm -f $(CPYTHONLIB)/$$testname && \
|
2022-03-17 22:48:56 +00:00
|
|
|
ln -s $(CPYTHONBUILD)/$$testname $(CPYTHONLIB)/$$testname ; \
|
|
|
|
done
|
|
|
|
|
2022-04-11 23:01:40 +00:00
|
|
|
cd $(CPYTHONLIB) && tar -h --exclude=__pycache__ -cf $(PYODIDE_ROOT)/dist/test.tar \
|
2022-03-22 20:41:43 +00:00
|
|
|
test $(TEST_EXTENSIONS) unittest/test sqlite3/test ctypes/test
|
2022-03-17 22:48:56 +00:00
|
|
|
|
|
|
|
cd $(CPYTHONLIB) && rm $(TEST_EXTENSIONS)
|
|
|
|
|
2021-05-29 17:31:56 +00:00
|
|
|
|
2022-04-11 23:01:40 +00:00
|
|
|
dist/distutils.tar: $(CPYTHONLIB) node_modules/.installed
|
|
|
|
cd $(CPYTHONLIB) && tar --exclude=__pycache__ -cf $(PYODIDE_ROOT)/dist/distutils.tar distutils
|
2021-05-02 13:42:28 +00:00
|
|
|
|
2018-06-15 16:21:12 +00:00
|
|
|
|
2022-05-19 06:09:24 +00:00
|
|
|
$(CPYTHONLIB): emsdk/emsdk/.complete
|
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
|
|
|
|
2021-07-06 11:28:39 +00:00
|
|
|
|
2022-04-11 23:01:40 +00:00
|
|
|
dist/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
|
|
|
|
2021-07-06 11:28: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
|
|
|
|
2021-07-06 11:28:39 +00:00
|
|
|
|
2022-06-09 17:57:34 +00:00
|
|
|
rust:
|
|
|
|
wget https://sh.rustup.rs -O /rustup.sh
|
|
|
|
sh /rustup.sh -y
|
|
|
|
source $(HOME)/.cargo/env && rustup target add wasm32-unknown-emscripten --toolchain stable
|
|
|
|
|
|
|
|
|
2019-03-13 18:50:18 +00:00
|
|
|
FORCE:
|
2019-11-19 21:51:45 +00:00
|
|
|
|
2021-07-06 11:28:39 +00:00
|
|
|
|
2019-11-19 21:51:45 +00:00
|
|
|
check:
|
|
|
|
./tools/dependency-check.sh
|
2020-12-31 00:42:02 +00:00
|
|
|
|
2021-07-06 11:28:39 +00:00
|
|
|
|
2021-01-12 05:39:59 +00:00
|
|
|
debug :
|
2021-03-20 18:00:35 +00:00
|
|
|
EXTRA_CFLAGS+=" -D DEBUG_F" \
|
2021-01-12 05:39:59 +00:00
|
|
|
make
|