From 0c3b5ac16daf929ca018ad3cdac08123b4d2bedc Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Wed, 17 Jan 2024 15:30:47 -0800 Subject: Simplify emscripten command line flags. NFC (#2368) --- CMakeLists.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index a4057457..63f971f7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -814,15 +814,15 @@ if (EMSCRIPTEN) set(EMSCRIPTEN_EXPORTS ${WABT_SOURCE_DIR}/src/emscripten-exports.txt) set(LIBWABT_LINK_FLAGS - -s SINGLE_FILE --post-js ${WABT_POST_JS} - -s EXPORTED_FUNCTIONS=\"@${EMSCRIPTEN_EXPORTS}\" - -s RESERVED_FUNCTION_POINTERS=10 - -s NO_EXIT_RUNTIME=1 - -s ALLOW_MEMORY_GROWTH=1 - -s MODULARIZE=1 - -s EXPORT_NAME=\"'WabtModule'\" - -s WASM=0 + -sSINGLE_FILE + -sEXPORTED_FUNCTIONS=@${EMSCRIPTEN_EXPORTS} + -sRESERVED_FUNCTION_POINTERS=10 + -sNO_EXIT_RUNTIME=1 + -sALLOW_MEMORY_GROWTH=1 + -sMODULARIZE=1 + -sEXPORT_NAME=WabtModule + -sWASM=0 -Oz ) string(REPLACE ";" " " LIBWABT_LINK_FLAGS_STR "${LIBWABT_LINK_FLAGS}") -- cgit v1.2.3