diff options
author | Christian Heimes <christian@python.org> | 2022-08-19 06:36:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-19 06:36:12 (GMT) |
commit | 6087f491ea1e4c8c115bb02d95e391399c0d6fe7 (patch) | |
tree | 725dec15db25a64dd08c31c965a4a38bbb285cd8 /configure.ac | |
parent | 757c383d2465ce87f546f01568ec911bd226a084 (diff) | |
download | cpython-6087f491ea1e4c8c115bb02d95e391399c0d6fe7.zip cpython-6087f491ea1e4c8c115bb02d95e391399c0d6fe7.tar.gz cpython-6087f491ea1e4c8c115bb02d95e391399c0d6fe7.tar.bz2 |
gh-95853: WASM: better version and asset handling in scripts (GH-96045)
- support EMSDK tot-upstream and git releases
- allow WASM assents for wasm64-emscripten and WASI. This makes single file distributions on WASI easier.
- decouple WASM assets from browser builds
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index bab405e..bb9fec0 100644 --- a/configure.ac +++ b/configure.ac @@ -1581,7 +1581,7 @@ AC_MSG_RESULT($LDLIBRARY) # LIBRARY_DEPS, LINK_PYTHON_OBJS and LINK_PYTHON_DEPS variable AS_CASE([$ac_sys_system/$ac_sys_emscripten_target], - [Emscripten/browser*], [LIBRARY_DEPS='$(PY3LIBRARY) $(WASM_STDLIB)'], + [Emscripten/browser*], [LIBRARY_DEPS='$(PY3LIBRARY) $(WASM_STDLIB) python.html python.worker.js'], [LIBRARY_DEPS='$(PY3LIBRARY) $(EXPORTSYMS)'] ) LINK_PYTHON_DEPS='$(LIBRARY_DEPS)' |