Skip to content

Commit

Permalink
bpo-40280: WASM defaults to no dynamic linking (GH-32360)
Browse files Browse the repository at this point in the history
  • Loading branch information
tiran authored Apr 6, 2022
1 parent 2b4f2f5 commit 765f6de
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
10 changes: 9 additions & 1 deletion configure

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1122,7 +1122,11 @@ AC_ARG_ENABLE([wasm-dynamic-linking],
[AC_MSG_ERROR([--enable-wasm-dynamic-linking only applies to Emscripten and WASI])]
)
], [
enable_wasm_dynamic_linking=missing
AS_CASE([$ac_sys_system],
[Emscripten], [enable_wasm_dynamic_linking=no],
[WASI], [enable_wasm_dynamic_linking=no],
[enable_wasm_dynamic_linking=missing]
)
])
AC_MSG_RESULT([$enable_wasm_dynamic_linking])

Expand Down

0 comments on commit 765f6de

Please sign in to comment.