pyodide/Makefile

173 lines
4.2 KiB
Makefile
Raw Normal View History

2018-03-30 17:08:06 +00:00
PYODIDE_ROOT=$(abspath .)
include Makefile.envs
FILEPACKAGER=emsdk/emsdk/emscripten/tag-1.38.4/tools/file_packager.py
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++
2018-02-28 20:39:16 +00:00
OPTFLAGS=-O3
CFLAGS=$(OPTFLAGS) -g -I$(PYTHONINCLUDE) -Wno-warn-absolute-paths
CXXFLAGS=$(CFLAGS) -std=c++14
2018-05-23 11:23:49 +00:00
# __ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv is in
# EXPORTED_FUNCTIONS to keep the C++ standard library in the core, even though
# there isn't any C++ there, for the sake of loading dynamic modules written in
# C++, such as those in matplotlib.
2018-03-29 19:24:33 +00:00
LDFLAGS=\
-O3 \
-s MODULARIZE=1 \
2018-02-28 20:39:16 +00:00
$(CPYTHONROOT)/installs/python-$(PYVERSION)/lib/libpython$(PYMINOR).a \
2018-03-20 22:58:59 +00:00
-s "BINARYEN_METHOD='native-wasm'" \
-s TOTAL_MEMORY=536870912 \
2018-03-20 22:58:59 +00:00
-s MAIN_MODULE=1 \
-s EMULATED_FUNCTION_POINTERS=1 \
2018-02-23 19:34:33 +00:00
-s EMULATE_FUNCTION_POINTER_CASTS=1 \
-s EXPORTED_FUNCTIONS='["_main", "__ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv"]' \
2018-03-29 19:24:33 +00:00
-s WASM=1 \
-s SWAPPABLE_ASM_MODULE=1 \
2018-05-17 15:57:39 +00:00
-s USE_FREETYPE=1 \
2018-05-23 11:23:49 +00:00
-std=c++14 \
-lstdc++ \
2018-02-23 19:34:33 +00:00
--memory-init-file 0
SIX_ROOT=six/six-1.11.0/build/lib
SIX_LIBS=$(SIX_ROOT)/six.py
SITEPACKAGES=root/lib/python$(PYMINOR)/site-packages
2018-02-23 19:34:33 +00:00
all: build/pyodide.asm.js \
build/pyodide.asm.data \
build/pyodide.js \
build/pyodide_dev.js \
build/python.html \
2018-05-18 17:32:10 +00:00
build/matplotlib.html \
2018-06-05 00:53:31 +00:00
build/matplotlib-sideload.html \
build/renderedhtml.css \
build/test.data \
2018-06-20 18:54:47 +00:00
build/packages.json
2018-02-23 19:34:33 +00:00
build/pyodide.asm.js: src/main.bc src/jsimport.bc src/jsproxy.bc src/js2python.bc \
src/pyimport.bc src/pyproxy.bc src/python2js.bc \
2018-05-23 11:23:49 +00:00
src/runpython.bc src/dummy_thread.bc src/hiwire.bc
2018-03-21 18:55:00 +00:00
[ -d build ] || mkdir build
2018-05-23 11:23:49 +00:00
$(CXX) -s EXPORT_NAME="'pyodide'" -o build/pyodide.asm.html $(filter %.bc,$^) \
$(LDFLAGS) -s FORCE_FILESYSTEM=1
rm build/pyodide.asm.asm.js
rm build/pyodide.asm.wasm.pre
rm build/pyodide.asm.html
2018-04-06 16:22:13 +00:00
build/pyodide.asm.data: root/.built
python2 $(FILEPACKAGER) build/pyodide.asm.data --preload root/lib@lib --js-output=build/pyodide.asm.data.js
2018-06-19 14:56:17 +00:00
uglifyjs build/pyodide.asm.data.js -o build/pyodide.asm.data.js
2018-04-06 16:22:13 +00:00
build/pyodide_dev.js: src/pyodide.js
cp $< $@
sed -i -e "s#{{DEPLOY}}##g" $@
2018-02-23 19:34:33 +00:00
build/pyodide.js: src/pyodide.js
cp $< $@
2018-06-07 14:05:03 +00:00
sed -i -e 's#{{DEPLOY}}#https://iodide.io/pyodide-demo/#g' $@
build/python.html: src/python.html
cp $< $@
2018-05-18 17:32:10 +00:00
build/matplotlib.html: src/matplotlib.html
cp $< $@
2018-06-05 00:53:31 +00:00
build/matplotlib-sideload.html: src/matplotlib-sideload.html
cp $< $@
2018-03-30 17:08:06 +00:00
build/test.html: src/test.html
cp $< $@
build/renderedhtml.css: src/renderedhtml.less
lessc $< $@
2018-03-30 17:08:06 +00:00
test: all build/test.html
py.test test -v
2018-03-30 14:51:13 +00:00
2018-06-14 18:19:08 +00:00
lint:
flake8 src
flake8 test
2018-06-20 19:05:13 +00:00
flake8 tools/*
clang-format -output-replacements-xml src/*.c src/*.h src/*.js | (! grep '<replacement ')
2018-06-14 18:19:08 +00:00
2018-06-20 18:54:47 +00:00
2018-04-05 22:07:33 +00:00
benchmark: all build/test.html
2018-04-09 14:39:52 +00:00
python benchmark/benchmark.py $(HOSTPYTHON) build/benchmarks.json
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-03-20 22:58:59 +00:00
rm -fr root
rm build/*
rm src/*.bc
2018-06-20 18:54:47 +00:00
make -C packages clean
echo "The Emsdk and CPython are not cleaned. cd into those directories to do so."
2018-02-23 19:34:33 +00:00
%.bc: %.c $(CPYTHONLIB)
$(CC) -o $@ $< $(CFLAGS)
build/test.data: $(CPYTHONLIB)
2018-06-20 18:54:47 +00:00
python2 $(FILEPACKAGER) build/test.data --preload $(CPYTHONLIB)/test@/lib/python3.6/test --js-output=build/test.js --export-name=pyodide --exclude \*.wasm.pre --exclude __pycache__
uglifyjs build/test.js -o build/test.js
root/.built: \
$(CPYTHONLIB) \
$(SIX_LIBS) \
2018-03-21 14:45:25 +00:00
src/sitecustomize.py \
src/webbrowser.py \
2018-05-09 18:33:52 +00:00
src/pyodide.py \
2018-03-21 14:45:25 +00:00
remove_modules.txt
2018-03-21 18:55:00 +00:00
rm -rf root
2018-02-23 19:34:33 +00:00
mkdir -p root/lib
2018-02-27 22:57:22 +00:00
cp -a $(CPYTHONLIB)/ root/lib
cp $(SIX_LIBS) $(SITEPACKAGES)
cp src/sitecustomize.py $(SITEPACKAGES)
cp src/webbrowser.py root/lib/python$(PYMINOR)
2018-04-09 14:39:52 +00:00
cp src/_testcapi.py root/lib/python$(PYMINOR)
2018-04-05 22:07:33 +00:00
cp src/pystone.py root/lib/python$(PYMINOR)
2018-05-09 18:33:52 +00:00
cp src/pyodide.py root/lib/python$(PYMINOR)/site-packages
2018-03-21 14:45:25 +00:00
( \
cd root/lib/python$(PYMINOR); \
rm -fr `cat ../../../remove_modules.txt`; \
rm encodings/mac_*.py; \
rm -fr test; \
2018-03-30 18:09:55 +00:00
find . -name "*.wasm.pre" -type f -delete ; \
2018-03-21 14:45:25 +00:00
find -type d -name __pycache__ -prune -exec rm -rf {} \; \
)
2018-03-20 22:58:59 +00:00
touch root/.built
2018-02-23 19:34:33 +00:00
2018-04-02 17:06:36 +00:00
$(CPYTHONLIB): emsdk/emsdk/emsdk
2018-02-27 22:57:22 +00:00
make -C $(CPYTHONROOT)
2018-03-20 22:58:59 +00:00
$(SIX_LIBS): $(CPYTHONLIB)
make -C six
2018-06-20 18:54:47 +00:00
build/packages.json: $(CPYTHONLIB)
make -C packages
2018-05-17 15:57:39 +00:00
2018-04-02 17:06:36 +00:00
emsdk/emsdk/emsdk:
2018-03-30 17:08:06 +00:00
make -C emsdk