2018-03-30 17:08:06 +00:00
|
|
|
PYODIDE_ROOT=$(abspath .)
|
|
|
|
include Makefile.envs
|
|
|
|
|
2018-07-24 16:41:08 +00:00
|
|
|
FILEPACKAGER=emsdk/emsdk/emscripten/tag-1.38.10/tools/file_packager.py
|
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++
|
2018-02-28 20:39:16 +00:00
|
|
|
OPTFLAGS=-O3
|
2018-05-16 17:06:44 +00:00
|
|
|
CFLAGS=$(OPTFLAGS) -g -I$(PYTHONINCLUDE) -Wno-warn-absolute-paths
|
2018-04-24 23:29:54 +00:00
|
|
|
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=\
|
2018-04-19 18:13:47 +00:00
|
|
|
-O3 \
|
2018-04-13 14:03:38 +00:00
|
|
|
-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'" \
|
2018-04-24 23:29:54 +00:00
|
|
|
-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 \
|
2018-07-24 16:53:17 +00:00
|
|
|
-s EXPORTED_FUNCTIONS='["_main", "__ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv", "__ZNSt11logic_errorC2EPKc"]' \
|
2018-03-29 19:24:33 +00:00
|
|
|
-s WASM=1 \
|
2018-04-27 18:36:52 +00:00
|
|
|
-s SWAPPABLE_ASM_MODULE=1 \
|
2018-05-17 15:57:39 +00:00
|
|
|
-s USE_FREETYPE=1 \
|
2018-07-23 21:19:47 +00:00
|
|
|
-s USE_LIBPNG=1 \
|
2018-05-23 11:23:49 +00:00
|
|
|
-std=c++14 \
|
|
|
|
-lstdc++ \
|
2018-07-26 20:50:12 +00:00
|
|
|
--memory-init-file 0 \
|
|
|
|
-s TEXTDECODER=0
|
2018-02-23 19:34:33 +00:00
|
|
|
|
2018-04-24 23:29:54 +00:00
|
|
|
SIX_ROOT=six/six-1.11.0/build/lib
|
|
|
|
SIX_LIBS=$(SIX_ROOT)/six.py
|
|
|
|
|
2018-03-21 14:05:16 +00:00
|
|
|
SITEPACKAGES=root/lib/python$(PYMINOR)/site-packages
|
2018-02-23 19:34:33 +00:00
|
|
|
|
2018-05-16 17:06:44 +00:00
|
|
|
all: build/pyodide.asm.js \
|
2018-05-18 18:15:47 +00:00
|
|
|
build/pyodide.asm.data \
|
2018-04-26 15:04:28 +00:00
|
|
|
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 \
|
2018-04-30 15:31:36 +00:00
|
|
|
build/renderedhtml.css \
|
2018-06-15 16:21:12 +00:00
|
|
|
build/test.data \
|
2018-06-20 18:54:47 +00:00
|
|
|
build/packages.json
|
2018-02-23 19:34:33 +00:00
|
|
|
|
|
|
|
|
2018-05-16 17:06:44 +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,$^) \
|
2018-05-18 18:15:47 +00:00
|
|
|
$(LDFLAGS) -s FORCE_FILESYSTEM=1
|
2018-04-30 15:31:36 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
2018-05-18 18:15:47 +00:00
|
|
|
build/pyodide.asm.data: root/.built
|
2018-06-07 13:33:05 +00:00
|
|
|
python2 $(FILEPACKAGER) build/pyodide.asm.data --preload root/lib@lib --js-output=build/pyodide.asm.data.js --use-preload-plugins
|
2018-06-19 14:56:17 +00:00
|
|
|
uglifyjs build/pyodide.asm.data.js -o build/pyodide.asm.data.js
|
|
|
|
|
2018-05-18 18:15:47 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
|
2018-03-22 16:30:18 +00:00
|
|
|
build/pyodide.js: src/pyodide.js
|
2018-02-26 15:02:52 +00:00
|
|
|
cp $< $@
|
2018-06-07 14:05:03 +00:00
|
|
|
sed -i -e 's#{{DEPLOY}}#https://iodide.io/pyodide-demo/#g' $@
|
2018-02-26 15:02:52 +00:00
|
|
|
|
|
|
|
|
2018-04-20 15:17:08 +00:00
|
|
|
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 $< $@
|
|
|
|
|
|
|
|
|
2018-04-26 15:04:28 +00:00
|
|
|
build/renderedhtml.css: src/renderedhtml.less
|
|
|
|
lessc $< $@
|
|
|
|
|
|
|
|
|
2018-07-09 21:15:04 +00:00
|
|
|
test: all build/test.html build/test_data.txt
|
2018-07-19 15:16:10 +00:00
|
|
|
py.test test -v --instafail
|
2018-03-30 14:51:13 +00:00
|
|
|
|
|
|
|
|
2018-07-09 21:15:04 +00:00
|
|
|
build/test_data.txt: test/data.txt
|
|
|
|
cp test/data.txt build/test_data.txt
|
|
|
|
|
|
|
|
|
2018-06-14 18:19:08 +00:00
|
|
|
lint:
|
|
|
|
flake8 src
|
2018-06-15 16:30:22 +00:00
|
|
|
flake8 test
|
2018-06-20 19:05:13 +00:00
|
|
|
flake8 tools/*
|
2018-06-15 16:30:22 +00:00
|
|
|
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
|
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-03-20 22:58:59 +00:00
|
|
|
rm -fr root
|
2018-07-20 00:37:27 +00:00
|
|
|
rm -fr build/*
|
|
|
|
rm -fr src/*.bc
|
2018-06-20 18:54:47 +00:00
|
|
|
make -C packages clean
|
2018-06-22 14:22:00 +00:00
|
|
|
make -C six clean
|
2018-06-20 18:54:47 +00:00
|
|
|
echo "The Emsdk and CPython are not cleaned. cd into those directories to do so."
|
2018-02-23 19:34:33 +00:00
|
|
|
|
|
|
|
|
2018-04-24 23:29:54 +00:00
|
|
|
%.bc: %.c $(CPYTHONLIB)
|
2018-07-23 21:19:47 +00:00
|
|
|
$(CC) -o $@ -c $< $(CFLAGS)
|
2018-04-24 23:29:54 +00:00
|
|
|
|
|
|
|
|
2018-06-15 16:21:12 +00:00
|
|
|
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
|
2018-06-15 16:21:12 +00:00
|
|
|
|
|
|
|
|
2018-03-21 14:05:16 +00:00
|
|
|
root/.built: \
|
|
|
|
$(CPYTHONLIB) \
|
2018-04-24 23:29:54 +00:00
|
|
|
$(SIX_LIBS) \
|
2018-03-21 14:45:25 +00:00
|
|
|
src/sitecustomize.py \
|
2018-03-22 16:30:18 +00:00
|
|
|
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
|
2018-04-24 23:29:54 +00:00
|
|
|
cp $(SIX_LIBS) $(SITEPACKAGES)
|
2018-03-21 14:05:16 +00:00
|
|
|
cp src/sitecustomize.py $(SITEPACKAGES)
|
2018-03-22 16:30:18 +00:00
|
|
|
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`; \
|
2018-06-15 16:21:12 +00:00
|
|
|
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-07-24 13:09:42 +00:00
|
|
|
ccache/emcc:
|
2018-07-25 11:54:55 +00:00
|
|
|
mkdir -p $(PYODIDE_ROOT)/ccache ; \
|
2018-07-24 13:09:42 +00:00
|
|
|
if hash ccache &>/dev/null; then \
|
|
|
|
ln -s `which ccache` $(PYODIDE_ROOT)/ccache/emcc ; \
|
|
|
|
else \
|
|
|
|
ln -s emsdk/emsdk/emscripten/tag-1.38.4/emcc $(PYODIDE_ROOT)/ccache/emcc; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
ccache/em++:
|
2018-07-25 11:54:55 +00:00
|
|
|
mkdir -p $(PYODIDE_ROOT)/ccache ; \
|
2018-07-24 13:09:42 +00:00
|
|
|
if hash ccache &>/dev/null; then \
|
|
|
|
ln -s `which ccache` $(PYODIDE_ROOT)/ccache/em++ ; \
|
|
|
|
else \
|
|
|
|
ln -s emsdk/emsdk/emscripten/tag-1.38.4/em++ $(PYODIDE_ROOT)/ccache/em++; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
$(CPYTHONLIB): emsdk/emsdk/.complete ccache/emcc ccache/em++
|
2018-02-27 22:57:22 +00:00
|
|
|
make -C $(CPYTHONROOT)
|
2018-03-20 22:58:59 +00:00
|
|
|
|
|
|
|
|
2018-04-24 23:29:54 +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-07-20 00:33:56 +00:00
|
|
|
emsdk/emsdk/.complete:
|
2018-03-30 17:08:06 +00:00
|
|
|
make -C emsdk
|