PYODIDE_ROOT=$(abspath .) include Makefile.envs .PHONY=check CPYTHONROOT=cpython CPYTHONLIB=$(CPYTHONROOT)/installs/python-$(PYVERSION)/lib/python$(PYMINOR) CC=emcc CXX=em++ all: check \ build/pyodide.asm.js \ build/pyodide.js \ build/console.html \ build/test.data \ build/distutils.data \ build/packages.json \ build/test.html \ build/webworker.js \ build/webworker_dev.js echo -e "\nSUCCESS!" $(CPYTHONLIB)/tzdata : pip install tzdata --target=$(CPYTHONLIB) build/pyodide.asm.js: \ src/core/docstring.o \ src/core/error_handling.o \ src/core/numpy_patch.o \ 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/_testinternalcapi.py \ src/webbrowser.py \ $(CPYTHONLIB)/tzdata \ $(wildcard src/py/pyodide/*.py) \ $(CPYTHONLIB) date +"[%F %T] Building pyodide.asm.js..." [ -d build ] || mkdir build $(CXX) -s EXPORT_NAME="'_createPyodideModule'" -o build/pyodide.asm.js $(filter %.o,$^) \ $(MAIN_MODULE_LDFLAGS) -s FORCE_FILESYSTEM=1 \ --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/_testinternalcapi.py@/lib/python$(PYMINOR)/_testinternalcapi.py \ --preload-file src/pystone.py@/lib/python$(PYMINOR)/pystone.py \ --preload-file src/py/pyodide@/lib/python$(PYMINOR)/site-packages/pyodide \ --preload-file src/py/_pyodide@/lib/python$(PYMINOR)/site-packages/_pyodide \ --exclude-file "*__pycache__*" \ --exclude-file "*/test/*" \ --exclude-file "*/tests/*" \ --exclude-file "*/distutils/*" # 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 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 date +"[%F %T] done building pyodide.asm.js." env: env node_modules/.installed : src/js/package.json cd src/js && npm install --save-dev ln -sfn src/js/node_modules/ node_modules touch node_modules/.installed build/pyodide.js: src/js/*.js src/js/pyproxy.gen.js node_modules/.installed npx typescript src/js/pyodide.js \ --lib ES2018 --allowJs \ --declaration --emitDeclarationOnly \ --outDir build npx rollup -c src/js/rollup.config.js src/js/pyproxy.gen.js : 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 rm -f $@ echo "// This file is generated by applying the C preprocessor to core/pyproxy.js" >> $@ echo "// It uses the macros defined in core/pyproxy.c" >> $@ echo "// Do not edit it directly!" >> $@ cat $< | $(CC) -E -C -P -imacros src/core/pyproxy.c $(MAIN_MODULE_CFLAGS) - >> $@ build/test.html: src/templates/test.html cp $< $@ .PHONY: build/console.html build/console.html: src/templates/console.html cp $< $@ sed -i -e 's#{{ PYODIDE_BASE_URL }}#$(PYODIDE_BASE_URL)#g' $@ .PHONY: docs/_build/html/console.html docs/_build/html/console.html: src/templates/console.html mkdir -p docs/_build/html cp $< $@ sed -i -e 's#{{ PYODIDE_BASE_URL }}#$(PYODIDE_BASE_URL)#g' $@ .PHONY: build/webworker.js build/webworker.js: src/webworker.js cp $< $@ sed -i -e 's#{{ PYODIDE_BASE_URL }}#$(PYODIDE_BASE_URL)#g' $@ .PHONY: build/webworker_dev.js build/webworker_dev.js: src/webworker.js cp $< $@ sed -i -e 's#{{ PYODIDE_BASE_URL }}#./#g' $@ update_base_url: \ build/console.html \ build/webworker.js test: all pytest src emsdk/tests packages/*/test* pyodide-build -v lint: node_modules/.installed # check for unused imports, the rest is done by black flake8 --select=F401 src tools pyodide-build benchmark conftest.py docs packages/matplotlib/src/ find src -type f -regex '.*\.\(c\|h\)' \ | xargs clang-format-6.0 -output-replacements-xml \ | (! grep '