mirror of
https://github.com/python/cpython.git
synced 2024-11-21 12:59:38 +01:00
gh-126691: Remove --with-emscripten-target (#126787)
This unifies the code for nodejs and the code for the browser. After this commit, the browser example doesn't work; this will be fixed in a subsequent update.
This commit is contained in:
parent
d6bcc154e9
commit
544b001b23
@ -454,15 +454,6 @@ Options for third-party dependencies
|
|||||||
WebAssembly Options
|
WebAssembly Options
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
.. option:: --with-emscripten-target=[browser|node]
|
|
||||||
|
|
||||||
Set build flavor for ``wasm32-emscripten``.
|
|
||||||
|
|
||||||
* ``browser`` (default): preload minimal stdlib, default MEMFS.
|
|
||||||
* ``node``: NODERAWFS and pthread support.
|
|
||||||
|
|
||||||
.. versionadded:: 3.11
|
|
||||||
|
|
||||||
.. option:: --enable-wasm-dynamic-linking
|
.. option:: --enable-wasm-dynamic-linking
|
||||||
|
|
||||||
Turn on dynamic linking support for WASM.
|
Turn on dynamic linking support for WASM.
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
Removed the ``--with-emscripten-target`` configure flag. We unified the
|
||||||
|
``node`` and ``browser`` options and the same build can now be used, independent
|
||||||
|
of target runtime.
|
@ -21,12 +21,6 @@ https://github.com/psf/webassembly for more information.
|
|||||||
|
|
||||||
### Build
|
### Build
|
||||||
|
|
||||||
For now the build system has two target flavors. The ``Emscripten/browser``
|
|
||||||
target (``--with-emscripten-target=browser``) is optimized for browsers.
|
|
||||||
It comes with a reduced and preloaded stdlib without tests and threading
|
|
||||||
support. The ``Emscripten/node`` target has threading enabled and can
|
|
||||||
access the file system directly.
|
|
||||||
|
|
||||||
To cross compile to the ``wasm32-emscripten`` platform you need
|
To cross compile to the ``wasm32-emscripten`` platform you need
|
||||||
[the Emscripten compiler toolchain](https://emscripten.org/),
|
[the Emscripten compiler toolchain](https://emscripten.org/),
|
||||||
a Python interpreter, and an installation of Node version 18 or newer. Emscripten
|
a Python interpreter, and an installation of Node version 18 or newer. Emscripten
|
||||||
|
@ -1,9 +1,15 @@
|
|||||||
// If process is undefined, we're not running in the node runtime let it go I
|
// If process is undefined, we're not running in the node runtime let it go I
|
||||||
// guess?
|
// guess?
|
||||||
if (typeof process !== "undefined") {
|
if (typeof process !== "undefined") {
|
||||||
const nodeVersion = Number(process.versions.node.split('.',1)[0]);
|
const nodeVersion = Number(process.versions.node.split(".", 1)[0]);
|
||||||
if (nodeVersion < 18) {
|
if (nodeVersion < 18) {
|
||||||
process.stderr.write(`Node version must be >= 18, got version ${process.version}\n`);
|
process.stderr.write(
|
||||||
|
`Node version must be >= 18, got version ${process.version}\n`,
|
||||||
|
);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
Module.preRun = () => {
|
||||||
|
FS.mkdirTree("/lib/");
|
||||||
|
FS.mount(NODEFS, { root: __dirname + "/lib/" }, "/lib/");
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
110
configure
generated
vendored
110
configure
generated
vendored
@ -1082,7 +1082,6 @@ with_universal_archs
|
|||||||
with_framework_name
|
with_framework_name
|
||||||
enable_framework
|
enable_framework
|
||||||
with_app_store_compliance
|
with_app_store_compliance
|
||||||
with_emscripten_target
|
|
||||||
enable_wasm_dynamic_linking
|
enable_wasm_dynamic_linking
|
||||||
enable_wasm_pthreads
|
enable_wasm_pthreads
|
||||||
with_suffix
|
with_suffix
|
||||||
@ -1868,8 +1867,6 @@ Optional Packages:
|
|||||||
Enable any patches required for compiliance with app
|
Enable any patches required for compiliance with app
|
||||||
stores. Optional PATCH-FILE specifies the custom
|
stores. Optional PATCH-FILE specifies the custom
|
||||||
patch to apply.
|
patch to apply.
|
||||||
--with-emscripten-target=[browser|node]
|
|
||||||
Emscripten platform
|
|
||||||
--with-suffix=SUFFIX set executable suffix to SUFFIX (default is empty,
|
--with-suffix=SUFFIX set executable suffix to SUFFIX (default is empty,
|
||||||
yes is mapped to '.exe')
|
yes is mapped to '.exe')
|
||||||
--without-static-libpython
|
--without-static-libpython
|
||||||
@ -7223,48 +7220,6 @@ case $ac_sys_system/$ac_sys_release in #(
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --with-emscripten-target" >&5
|
|
||||||
printf %s "checking for --with-emscripten-target... " >&6; }
|
|
||||||
|
|
||||||
# Check whether --with-emscripten-target was given.
|
|
||||||
if test ${with_emscripten_target+y}
|
|
||||||
then :
|
|
||||||
withval=$with_emscripten_target;
|
|
||||||
if test "x$ac_sys_system" = xEmscripten
|
|
||||||
then :
|
|
||||||
|
|
||||||
case $with_emscripten_target in #(
|
|
||||||
browser) :
|
|
||||||
ac_sys_emscripten_target=browser ;; #(
|
|
||||||
node) :
|
|
||||||
ac_sys_emscripten_target=node ;; #(
|
|
||||||
browser-debug) :
|
|
||||||
ac_sys_emscripten_target=browser-debug ;; #(
|
|
||||||
node-debug) :
|
|
||||||
ac_sys_emscripten_target=node-debug ;; #(
|
|
||||||
*) :
|
|
||||||
as_fn_error $? "Invalid argument: --with-emscripten-target=browser|node" "$LINENO" 5
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
else $as_nop
|
|
||||||
|
|
||||||
as_fn_error $? "--with-emscripten-target only applies to Emscripten" "$LINENO" 5
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
else $as_nop
|
|
||||||
|
|
||||||
if test "x$ac_sys_system" = xEmscripten
|
|
||||||
then :
|
|
||||||
ac_sys_emscripten_target=browser
|
|
||||||
fi
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_sys_emscripten_target" >&5
|
|
||||||
printf "%s\n" "$ac_sys_emscripten_target" >&6; }
|
|
||||||
|
|
||||||
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --enable-wasm-dynamic-linking" >&5
|
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for --enable-wasm-dynamic-linking" >&5
|
||||||
printf %s "checking for --enable-wasm-dynamic-linking... " >&6; }
|
printf %s "checking for --enable-wasm-dynamic-linking... " >&6; }
|
||||||
# Check whether --enable-wasm-dynamic-linking was given.
|
# Check whether --enable-wasm-dynamic-linking was given.
|
||||||
@ -7334,12 +7289,10 @@ esac
|
|||||||
|
|
||||||
else $as_nop
|
else $as_nop
|
||||||
|
|
||||||
case $ac_sys_system/$ac_sys_emscripten_target in #(
|
case $ac_sys_system in #(
|
||||||
Emscripten/browser*) :
|
Emscripten) :
|
||||||
EXEEXT=.js ;; #(
|
EXEEXT=.js ;; #(
|
||||||
Emscripten/node*) :
|
WASI) :
|
||||||
EXEEXT=.js ;; #(
|
|
||||||
WASI/*) :
|
|
||||||
EXEEXT=.wasm ;; #(
|
EXEEXT=.wasm ;; #(
|
||||||
*) :
|
*) :
|
||||||
EXEEXT=
|
EXEEXT=
|
||||||
@ -7674,8 +7627,8 @@ printf %s "checking HOSTRUNNER... " >&6; }
|
|||||||
|
|
||||||
if test -z "$HOSTRUNNER"
|
if test -z "$HOSTRUNNER"
|
||||||
then
|
then
|
||||||
case $ac_sys_system/$ac_sys_emscripten_target in #(
|
case $ac_sys_system in #(
|
||||||
Emscripten/node*) :
|
Emscripten) :
|
||||||
|
|
||||||
if test -n "$ac_tool_prefix"; then
|
if test -n "$ac_tool_prefix"; then
|
||||||
# Extract the first word of "${ac_tool_prefix}node", so it can be a program name with args.
|
# Extract the first word of "${ac_tool_prefix}node", so it can be a program name with args.
|
||||||
@ -7791,7 +7744,7 @@ then :
|
|||||||
as_fn_append HOSTRUNNER " --experimental-wasm-memory64"
|
as_fn_append HOSTRUNNER " --experimental-wasm-memory64"
|
||||||
fi
|
fi
|
||||||
;; #(
|
;; #(
|
||||||
WASI/*) :
|
WASI) :
|
||||||
HOSTRUNNER='wasmtime run --wasm max-wasm-stack=16777216 --wasi preview2=n --env PYTHONPATH=/$(shell realpath --relative-to $(abs_srcdir) $(abs_builddir))/$(shell cat pybuilddir.txt):/Lib --dir $(srcdir)::/' ;; #(
|
HOSTRUNNER='wasmtime run --wasm max-wasm-stack=16777216 --wasi preview2=n --env PYTHONPATH=/$(shell realpath --relative-to $(abs_srcdir) $(abs_builddir))/$(shell cat pybuilddir.txt):/Lib --dir $(srcdir)::/' ;; #(
|
||||||
*) :
|
*) :
|
||||||
HOSTRUNNER=''
|
HOSTRUNNER=''
|
||||||
@ -7807,13 +7760,8 @@ if test -n "$HOSTRUNNER"; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# LIBRARY_DEPS, LINK_PYTHON_OBJS and LINK_PYTHON_DEPS variable
|
# LIBRARY_DEPS, LINK_PYTHON_OBJS and LINK_PYTHON_DEPS variable
|
||||||
case $ac_sys_system/$ac_sys_emscripten_target in #(
|
LIBRARY_DEPS='$(PY3LIBRARY) $(EXPORTSYMS)'
|
||||||
Emscripten/browser*) :
|
|
||||||
LIBRARY_DEPS='$(PY3LIBRARY) $(WASM_STDLIB) python.html python.worker.js' ;; #(
|
|
||||||
*) :
|
|
||||||
LIBRARY_DEPS='$(PY3LIBRARY) $(EXPORTSYMS)'
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
LINK_PYTHON_DEPS='$(LIBRARY_DEPS)'
|
LINK_PYTHON_DEPS='$(LIBRARY_DEPS)'
|
||||||
if test "$PY_ENABLE_SHARED" = 1 || test "$enable_framework" ; then
|
if test "$PY_ENABLE_SHARED" = 1 || test "$enable_framework" ; then
|
||||||
LIBRARY_DEPS="\$(LDLIBRARY) $LIBRARY_DEPS"
|
LIBRARY_DEPS="\$(LDLIBRARY) $LIBRARY_DEPS"
|
||||||
@ -9500,34 +9448,10 @@ then :
|
|||||||
as_fn_append LINKFORSHARED " -sPROXY_TO_PTHREAD"
|
as_fn_append LINKFORSHARED " -sPROXY_TO_PTHREAD"
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
as_fn_append LDFLAGS_NODIST " -sALLOW_MEMORY_GROWTH"
|
||||||
case $ac_sys_emscripten_target in #(
|
as_fn_append LDFLAGS_NODIST " -sEXIT_RUNTIME"
|
||||||
browser*) :
|
as_fn_append LDFLAGS_NODIST " --pre-js=\$(srcdir)/Tools/wasm/emscripten/node_pre.js"
|
||||||
|
WASM_LINKFORSHARED_DEBUG="-gseparate-dwarf --emit-symbol-map"
|
||||||
if test "x$ac_sys_emscripten_target" = xbrowser-debug
|
|
||||||
then :
|
|
||||||
wasm_debug=yes
|
|
||||||
fi
|
|
||||||
as_fn_append LINKFORSHARED " --preload-file=\$(WASM_ASSETS_DIR)"
|
|
||||||
WASM_ASSETS_DIR=".\$(prefix)"
|
|
||||||
WASM_STDLIB="\$(WASM_ASSETS_DIR)/local/lib/python\$(VERSION)/os.py"
|
|
||||||
WASM_LINKFORSHARED_DEBUG="-gsource-map --emit-symbol-map"
|
|
||||||
;; #(
|
|
||||||
node*) :
|
|
||||||
|
|
||||||
if test "x$ac_sys_emscripten_target" = xnode-debug
|
|
||||||
then :
|
|
||||||
wasm_debug=yes
|
|
||||||
fi
|
|
||||||
as_fn_append LDFLAGS_NODIST " --pre-js=\$(srcdir)/Tools/wasm/emscripten/node_pre.js"
|
|
||||||
as_fn_append LDFLAGS_NODIST " -sALLOW_MEMORY_GROWTH -sNODERAWFS"
|
|
||||||
as_fn_append LINKFORSHARED " -sEXIT_RUNTIME"
|
|
||||||
WASM_LINKFORSHARED_DEBUG="-gseparate-dwarf --emit-symbol-map"
|
|
||||||
|
|
||||||
;; #(
|
|
||||||
*) :
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if test "x$wasm_debug" = xyes
|
if test "x$wasm_debug" = xyes
|
||||||
then :
|
then :
|
||||||
@ -29058,15 +28982,7 @@ else $as_nop
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
else $as_nop
|
else $as_nop
|
||||||
|
TEST_MODULES=yes
|
||||||
case $ac_sys_system/$ac_sys_emscripten_target in #(
|
|
||||||
Emscripten/browser*) :
|
|
||||||
TEST_MODULES=no ;; #(
|
|
||||||
*) :
|
|
||||||
TEST_MODULES=yes
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $TEST_MODULES" >&5
|
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $TEST_MODULES" >&5
|
||||||
|
73
configure.ac
73
configure.ac
@ -1282,30 +1282,6 @@ AS_CASE([$ac_sys_system/$ac_sys_release],
|
|||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
AC_MSG_CHECKING([for --with-emscripten-target])
|
|
||||||
AC_ARG_WITH([emscripten-target],
|
|
||||||
[AS_HELP_STRING([--with-emscripten-target=@<:@browser|node@:>@], [Emscripten platform])],
|
|
||||||
[
|
|
||||||
AS_VAR_IF([ac_sys_system], [Emscripten], [
|
|
||||||
AS_CASE([$with_emscripten_target],
|
|
||||||
[browser], [ac_sys_emscripten_target=browser],
|
|
||||||
[node], [ac_sys_emscripten_target=node],
|
|
||||||
dnl Debug builds with source map / dwarf symbols. Py_DEBUG builds easily
|
|
||||||
dnl run out of stack space. Detached sybmols and map prohibit some
|
|
||||||
dnl optimizations and increase file size. Options are undocumented so we
|
|
||||||
dnl are free to remove them in the future.
|
|
||||||
[browser-debug], [ac_sys_emscripten_target=browser-debug],
|
|
||||||
[node-debug], [ac_sys_emscripten_target=node-debug],
|
|
||||||
[AC_MSG_ERROR([Invalid argument: --with-emscripten-target=browser|node])]
|
|
||||||
)
|
|
||||||
], [
|
|
||||||
AC_MSG_ERROR([--with-emscripten-target only applies to Emscripten])
|
|
||||||
])
|
|
||||||
], [
|
|
||||||
AS_VAR_IF([ac_sys_system], [Emscripten], [ac_sys_emscripten_target=browser])
|
|
||||||
])
|
|
||||||
AC_MSG_RESULT([$ac_sys_emscripten_target])
|
|
||||||
|
|
||||||
dnl On Emscripten dlopen() requires -s MAIN_MODULE and -fPIC. The flags
|
dnl On Emscripten dlopen() requires -s MAIN_MODULE and -fPIC. The flags
|
||||||
dnl disables dead code elimination and increases the size of the WASM module
|
dnl disables dead code elimination and increases the size of the WASM module
|
||||||
dnl by about 1.5 to 2MB. MAIN_MODULE defines __wasm_mutable_globals__.
|
dnl by about 1.5 to 2MB. MAIN_MODULE defines __wasm_mutable_globals__.
|
||||||
@ -1350,10 +1326,9 @@ AC_ARG_WITH([suffix],
|
|||||||
[EXEEXT=$with_suffix]
|
[EXEEXT=$with_suffix]
|
||||||
)
|
)
|
||||||
], [
|
], [
|
||||||
AS_CASE([$ac_sys_system/$ac_sys_emscripten_target],
|
AS_CASE([$ac_sys_system],
|
||||||
[Emscripten/browser*], [EXEEXT=.js],
|
[Emscripten], [EXEEXT=.js],
|
||||||
[Emscripten/node*], [EXEEXT=.js],
|
[WASI], [EXEEXT=.wasm],
|
||||||
[WASI/*], [EXEEXT=.wasm],
|
|
||||||
[EXEEXT=]
|
[EXEEXT=]
|
||||||
)
|
)
|
||||||
])
|
])
|
||||||
@ -1638,8 +1613,8 @@ AC_MSG_CHECKING([HOSTRUNNER])
|
|||||||
AC_ARG_VAR([HOSTRUNNER], [Program to run CPython for the host platform])
|
AC_ARG_VAR([HOSTRUNNER], [Program to run CPython for the host platform])
|
||||||
if test -z "$HOSTRUNNER"
|
if test -z "$HOSTRUNNER"
|
||||||
then
|
then
|
||||||
AS_CASE([$ac_sys_system/$ac_sys_emscripten_target],
|
AS_CASE([$ac_sys_system],
|
||||||
[Emscripten/node*], [
|
[Emscripten], [
|
||||||
AC_PATH_TOOL([NODE], [node], [node])
|
AC_PATH_TOOL([NODE], [node], [node])
|
||||||
HOSTRUNNER="$NODE"
|
HOSTRUNNER="$NODE"
|
||||||
AS_VAR_IF([host_cpu], [wasm64], [AS_VAR_APPEND([HOSTRUNNER], [" --experimental-wasm-memory64"])])
|
AS_VAR_IF([host_cpu], [wasm64], [AS_VAR_APPEND([HOSTRUNNER], [" --experimental-wasm-memory64"])])
|
||||||
@ -1647,7 +1622,7 @@ then
|
|||||||
dnl TODO: support other WASI runtimes
|
dnl TODO: support other WASI runtimes
|
||||||
dnl wasmtime starts the process with "/" as CWD. For OOT builds add the
|
dnl wasmtime starts the process with "/" as CWD. For OOT builds add the
|
||||||
dnl directory containing _sysconfigdata to PYTHONPATH.
|
dnl directory containing _sysconfigdata to PYTHONPATH.
|
||||||
[WASI/*], [HOSTRUNNER='wasmtime run --wasm max-wasm-stack=16777216 --wasi preview2=n --env PYTHONPATH=/$(shell realpath --relative-to $(abs_srcdir) $(abs_builddir))/$(shell cat pybuilddir.txt):/Lib --dir $(srcdir)::/'],
|
[WASI], [HOSTRUNNER='wasmtime run --wasm max-wasm-stack=16777216 --wasi preview2=n --env PYTHONPATH=/$(shell realpath --relative-to $(abs_srcdir) $(abs_builddir))/$(shell cat pybuilddir.txt):/Lib --dir $(srcdir)::/'],
|
||||||
[HOSTRUNNER='']
|
[HOSTRUNNER='']
|
||||||
)
|
)
|
||||||
fi
|
fi
|
||||||
@ -1660,10 +1635,8 @@ if test -n "$HOSTRUNNER"; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# LIBRARY_DEPS, LINK_PYTHON_OBJS and LINK_PYTHON_DEPS variable
|
# LIBRARY_DEPS, LINK_PYTHON_OBJS and LINK_PYTHON_DEPS variable
|
||||||
AS_CASE([$ac_sys_system/$ac_sys_emscripten_target],
|
LIBRARY_DEPS='$(PY3LIBRARY) $(EXPORTSYMS)'
|
||||||
[Emscripten/browser*], [LIBRARY_DEPS='$(PY3LIBRARY) $(WASM_STDLIB) python.html python.worker.js'],
|
|
||||||
[LIBRARY_DEPS='$(PY3LIBRARY) $(EXPORTSYMS)']
|
|
||||||
)
|
|
||||||
LINK_PYTHON_DEPS='$(LIBRARY_DEPS)'
|
LINK_PYTHON_DEPS='$(LIBRARY_DEPS)'
|
||||||
if test "$PY_ENABLE_SHARED" = 1 || test "$enable_framework" ; then
|
if test "$PY_ENABLE_SHARED" = 1 || test "$enable_framework" ; then
|
||||||
LIBRARY_DEPS="\$(LDLIBRARY) $LIBRARY_DEPS"
|
LIBRARY_DEPS="\$(LDLIBRARY) $LIBRARY_DEPS"
|
||||||
@ -2365,24 +2338,11 @@ AS_CASE([$ac_sys_system],
|
|||||||
AS_VAR_APPEND([LDFLAGS_NODIST], [" -sUSE_PTHREADS"])
|
AS_VAR_APPEND([LDFLAGS_NODIST], [" -sUSE_PTHREADS"])
|
||||||
AS_VAR_APPEND([LINKFORSHARED], [" -sPROXY_TO_PTHREAD"])
|
AS_VAR_APPEND([LINKFORSHARED], [" -sPROXY_TO_PTHREAD"])
|
||||||
])
|
])
|
||||||
|
AS_VAR_APPEND([LDFLAGS_NODIST], [" -sALLOW_MEMORY_GROWTH"])
|
||||||
AS_CASE([$ac_sys_emscripten_target],
|
dnl not completely sure whether or not we want -sEXIT_RUNTIME, keeping it for now.
|
||||||
[browser*], [
|
AS_VAR_APPEND([LDFLAGS_NODIST], [" -sEXIT_RUNTIME"])
|
||||||
AS_VAR_IF([ac_sys_emscripten_target], [browser-debug], [wasm_debug=yes])
|
AS_VAR_APPEND([LDFLAGS_NODIST], [" --pre-js=\$(srcdir)/Tools/wasm/emscripten/node_pre.js"])
|
||||||
AS_VAR_APPEND([LINKFORSHARED], [" --preload-file=\$(WASM_ASSETS_DIR)"])
|
WASM_LINKFORSHARED_DEBUG="-gseparate-dwarf --emit-symbol-map"
|
||||||
WASM_ASSETS_DIR=".\$(prefix)"
|
|
||||||
WASM_STDLIB="\$(WASM_ASSETS_DIR)/local/lib/python\$(VERSION)/os.py"
|
|
||||||
dnl separate-dwarf does not seem to work in Chrome DevTools Support.
|
|
||||||
WASM_LINKFORSHARED_DEBUG="-gsource-map --emit-symbol-map"
|
|
||||||
],
|
|
||||||
[node*], [
|
|
||||||
AS_VAR_IF([ac_sys_emscripten_target], [node-debug], [wasm_debug=yes])
|
|
||||||
AS_VAR_APPEND([LDFLAGS_NODIST], [" --pre-js=\$(srcdir)/Tools/wasm/emscripten/node_pre.js"])
|
|
||||||
AS_VAR_APPEND([LDFLAGS_NODIST], [" -sALLOW_MEMORY_GROWTH -sNODERAWFS"])
|
|
||||||
AS_VAR_APPEND([LINKFORSHARED], [" -sEXIT_RUNTIME"])
|
|
||||||
WASM_LINKFORSHARED_DEBUG="-gseparate-dwarf --emit-symbol-map"
|
|
||||||
]
|
|
||||||
)
|
|
||||||
|
|
||||||
AS_VAR_IF([wasm_debug], [yes], [
|
AS_VAR_IF([wasm_debug], [yes], [
|
||||||
AS_VAR_APPEND([LDFLAGS_NODIST], [" -sASSERTIONS"])
|
AS_VAR_APPEND([LDFLAGS_NODIST], [" -sASSERTIONS"])
|
||||||
@ -7463,12 +7423,7 @@ AC_MSG_CHECKING([for --disable-test-modules])
|
|||||||
AC_ARG_ENABLE([test-modules],
|
AC_ARG_ENABLE([test-modules],
|
||||||
[AS_HELP_STRING([--disable-test-modules], [don't build nor install test modules])], [
|
[AS_HELP_STRING([--disable-test-modules], [don't build nor install test modules])], [
|
||||||
AS_VAR_IF([enable_test_modules], [yes], [TEST_MODULES=yes], [TEST_MODULES=no])
|
AS_VAR_IF([enable_test_modules], [yes], [TEST_MODULES=yes], [TEST_MODULES=no])
|
||||||
], [
|
], [TEST_MODULES=yes])
|
||||||
AS_CASE([$ac_sys_system/$ac_sys_emscripten_target],
|
|
||||||
[Emscripten/browser*], [TEST_MODULES=no],
|
|
||||||
[TEST_MODULES=yes]
|
|
||||||
)
|
|
||||||
])
|
|
||||||
AC_MSG_RESULT([$TEST_MODULES])
|
AC_MSG_RESULT([$TEST_MODULES])
|
||||||
AC_SUBST([TEST_MODULES])
|
AC_SUBST([TEST_MODULES])
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user