pyodide/Makefile

122 lines
3.2 KiB
Makefile
Raw Normal View History

2018-03-30 17:08:06 +00:00
PYODIDE_ROOT=$(abspath .)
include Makefile.envs
2018-02-26 22:21:26 +00:00
PYVERSION=3.6.4
2018-02-23 19:34:33 +00:00
PYMINOR=$(basename $(PYVERSION))
2018-02-27 22:57:22 +00:00
CPYTHONROOT=cpython
CPYTHONLIB=$(CPYTHONROOT)/installs/python-$(PYVERSION)/lib/python$(PYMINOR)
CPYTHONINC=$(CPYTHONROOT)/installs/python-$(PYVERSION)/include/python$(PYMINOR)
2018-04-05 22:07:33 +00:00
HOSTPYTHON=$(CPYTHONROOT)/build/$(PYVERSION)/host/bin/python3
2018-02-23 19:34:33 +00:00
CC=emcc
CXX=em++
2018-02-28 20:39:16 +00:00
OPTFLAGS=-O3
2018-03-20 22:58:59 +00:00
CXXFLAGS=-std=c++14 $(OPTFLAGS) -g -I$(CPYTHONINC) -Wno-warn-absolute-paths
2018-03-29 19:24:33 +00:00
LDFLAGS=\
-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-02-23 19:34:33 +00:00
-s TOTAL_MEMORY=268435456 \
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"]' \
2018-03-29 19:24:33 +00:00
-s WASM=1 \
2018-02-23 19:34:33 +00:00
--memory-init-file 0
2018-03-20 22:58:59 +00:00
NUMPY_ROOT=numpy/build/numpy
NUMPY_LIBS=\
$(NUMPY_ROOT)/core/multiarray.so \
$(NUMPY_ROOT)/core/umath.so \
$(NUMPY_ROOT)/linalg/lapack_lite.so \
$(NUMPY_ROOT)/linalg/_umath_linalg.so \
2018-04-16 15:50:29 +00:00
$(NUMPY_ROOT)/random/mtrand.so \
$(NUMPY_ROOT)/fft/fftpack_lite.so
2018-03-20 22:58:59 +00:00
SITEPACKAGES=root/lib/python$(PYMINOR)/site-packages
2018-02-23 19:34:33 +00:00
2018-04-06 16:22:13 +00:00
all: build/pyodide.asm.html build/pyodide.js build/pyodide_dev.js
2018-02-23 19:34:33 +00:00
2018-02-28 22:37:14 +00:00
build/pyodide.asm.html: src/main.bc src/jsimport.bc src/jsproxy.bc src/js2python.bc \
src/pyimport.bc src/pyproxy.bc src/python2js.bc \
2018-03-21 18:55:00 +00:00
src/runpython.bc root/.built
[ -d build ] || mkdir build
2018-02-28 20:39:16 +00:00
$(CC) -s EXPORT_NAME="'pyodide'" --bind -o $@ $(filter %.bc,$^) $(LDFLAGS) \
2018-02-23 19:34:33 +00:00
$(foreach d,$(wildcard root/*),--preload-file $d@/$(notdir $d))
2018-04-06 16:22:13 +00:00
sed -i -e "s#REMOTE_PACKAGE_BASE = 'pyodide.asm.data'#REMOTE_PACKAGE_BASE = pyodide.baseURL + 'pyodide.asm.data'#g" build/pyodide.asm.js
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-04-06 16:22:13 +00:00
sed -i -e 's#{{DEPLOY}}#https://iodide-project.github.io/pyodide-demo/#g' $@
2018-03-30 17:08:06 +00:00
build/test.html: src/test.html
cp $< $@
test: all build/test.html
py.test test -v
2018-03-30 14:51:13 +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-03-21 18:55:00 +00:00
echo "CPython and Numpy builds are not cleaned. cd into those directories to do so."
2018-02-23 19:34:33 +00:00
2018-02-27 22:57:22 +00:00
%.bc: %.cpp $(CPYTHONLIB)
2018-02-24 17:47:13 +00:00
$(CXX) --bind -o $@ $< $(CXXFLAGS)
2018-02-23 19:34:33 +00:00
root/.built: \
$(CPYTHONLIB) \
$(NUMPY_LIBS) \
src/lazy_import.py \
2018-03-21 14:45:25 +00:00
src/sitecustomize.py \
src/webbrowser.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 -a numpy/build/numpy $(SITEPACKAGES)
rm -fr $(SITEPACKAGES)/numpy/distutils
cp src/lazy_import.py $(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-03-21 14:45:25 +00:00
( \
cd root/lib/python$(PYMINOR); \
rm -fr `cat ../../../remove_modules.txt`; \
rm encodings/cp*.py; \
rm encodings/mac_*.py; \
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
2018-03-29 19:24:33 +00:00
$(NUMPY_LIBS): $(CPYTHONLIB)
2018-03-20 22:58:59 +00:00
make -C numpy
2018-03-30 17:08:06 +00:00
2018-04-02 17:06:36 +00:00
emsdk/emsdk/emsdk:
2018-03-30 17:08:06 +00:00
make -C emsdk