pyodide/Makefile

57 lines
1.4 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-02-27 22:57:22 +00:00
CXXFLAGS=-std=c++14 $(OPTFLAGS) -g -I $(CPYTHONINC) -Wno-warn-absolute-paths
LDFLAGS=$(OPTFLAGS) \
2018-02-28 20:39:16 +00:00
$(CPYTHONROOT)/installs/python-$(PYVERSION)/lib/libpython$(PYMINOR).a \
2018-02-24 17:47:13 +00:00
-s "BINARYEN_METHOD='native-wasm,interpret-binary,interpret-asm2wasm'" \
2018-02-23 19:34:33 +00:00
-s TOTAL_MEMORY=268435456 \
-s ASSERTIONS=2 \
-s EMULATE_FUNCTION_POINTER_CASTS=1 \
-s EXPORTED_FUNCTIONS='["_main"]' \
2018-02-28 20:39:16 +00:00
-s WASM=1 \
2018-02-23 19:34:33 +00:00
--memory-init-file 0
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 \
src/runpython.bc root
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-02-23 19:34:33 +00:00
clean:
-rm -fr root
-rm build/*
-rm src/*.bc
2018-02-28 20:39:16 +00:00
make -C $(CPYTHONROOT) clean
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
2018-02-27 22:57:22 +00:00
root: $(CPYTHONLIB)
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-02-23 19:34:33 +00:00
( \
cd root/lib/python$(PYMINOR); \
rm -fr test distutils ensurepip idlelib __pycache__ tkinter; \
)
2018-02-27 22:57:22 +00:00
$(CPYTHONLIB):
make -C $(CPYTHONROOT)