From 51ac9ed31783f55347e09ae8a80eaebec81e935c Mon Sep 17 00:00:00 2001 From: Kleis Auke Wolthuizen Date: Sun, 30 Oct 2022 11:43:33 +0100 Subject: emscripten: use single arguments when specifying options i.e. without a space between the "-s" and option name. See: https://github.com/emscripten-core/emscripten/issues/11463 This is supported since Emscripten 1.39.19, see: https://github.com/emscripten-core/emscripten/commit/f45bea21f3a8f74a68ed4e3e3d7e290807ee2aff --- cross/wasm.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cross') diff --git a/cross/wasm.txt b/cross/wasm.txt index e03a10b..269c77a 100644 --- a/cross/wasm.txt +++ b/cross/wasm.txt @@ -5,9 +5,9 @@ ar = '/home/jpakkane/src/emsdk/upstream/emscripten/emar' [built-in options] c_args = [] -c_link_args = ['-s','EXPORT_ALL=1'] +c_link_args = ['-sEXPORT_ALL=1'] cpp_args = [] -cpp_link_args = ['-s', 'EXPORT_ALL=1'] +cpp_link_args = ['-sEXPORT_ALL=1'] [host_machine] -- cgit v1.1