mirror of https://github.com/pyodide/pyodide.git
26 lines
1.2 KiB
Makefile
26 lines
1.2 KiB
Makefile
export EMSCRIPTEN_VERSION = 1.38.44
|
|
export BINARYEN_VERSION = version_89
|
|
|
|
export PATH := $(PYODIDE_ROOT)/ccache:$(PYODIDE_ROOT)/emsdk/emsdk:$(PYODIDE_ROOT)/emsdk/emsdk/node/12.18.1_64bit/bin:$(PYODIDE_ROOT)/emsdk/emsdk/fastcomp/emscripten/:$(PYODIDE_ROOT)/node_modules/.bin/:$(PATH)
|
|
|
|
export EMSDK = $(PYODIDE_ROOT)/emsdk/emsdk
|
|
export EM_CONFIG = $(PYODIDE_ROOT)/emsdk/emsdk/.emscripten
|
|
export EM_CACHE = $(PYODIDE_ROOT)/emsdk/emsdk/.emscripten_cache
|
|
export BINARYEN_ROOT = $(PYODIDE_ROOT)/emsdk/emsdk/binaryen
|
|
|
|
export PYVERSION=3.8.2
|
|
export PYMINOR=$(basename $(PYVERSION))
|
|
export HOSTPYTHONROOT=$(shell python -c "import sys; print(sys.prefix)")
|
|
export HOSTPYTHON=$(HOSTPYTHONROOT)/bin/python3
|
|
export TARGETPYTHONROOT=$(PYODIDE_ROOT)/cpython/installs/python-$(PYVERSION)
|
|
export PYTHONINCLUDE=$(PYODIDE_ROOT)/cpython/installs/python-$(PYVERSION)/include/python$(PYMINOR)
|
|
|
|
# Use env variable if defined, otherwise fallback to './'
|
|
export PYODIDE_BASE_URL?=./
|
|
|
|
# This environment variable is used for packages to detect if they are built
|
|
# for pyodide during build time
|
|
export PYODIDE=1
|
|
# This is the legacy environment variable used for the aforementioned purpose
|
|
export PYODIDE_PACKAGE_ABI=1
|