pyodide/Makefile.envs

26 lines
1.2 KiB
Makefile
Raw Normal View History

2020-12-21 05:00:05 +00:00
export EMSCRIPTEN_VERSION = 1.38.44
2020-12-22 03:24:51 +00:00
export BINARYEN_VERSION = version_86
2019-01-10 12:40:01 +00:00
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)
2018-04-02 14:33:19 +00:00
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))
2020-12-07 23:19:16 +00:00
export HOSTPYTHONROOT=$(shell python -c "import sys; print(sys.prefix)")
2018-06-20 21:05:24 +00:00
export HOSTPYTHON=$(HOSTPYTHONROOT)/bin/python3
2018-06-20 18:54:47 +00:00
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