pyodide/Makefile

93 lines
2.3 KiB
Makefile
Raw Normal View History

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-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=\
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 \
$(NUMPY_ROOT)/random/mtrand.so
SITEPACKAGES=root/lib/python$(PYMINOR)/site-packages
2018-02-23 19:34:33 +00:00
all: build/pyodide.asm.html build/pyodide.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))
build/pyodide.js: src/pyodide.js
cp $< $@
2018-03-30 14:51:13 +00:00
test: all
py.test test
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-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; \
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-02-27 22:57:22 +00:00
$(CPYTHONLIB):
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