From b6a18b870105fe514ec30570c2525e8221f4d0d7 Mon Sep 17 00:00:00 2001 From: Steven Johnson Date: Thu, 23 Feb 2023 11:36:32 -0800 Subject: [PATCH] Update WABT to 1.0.32; Increase stack size for WASM AOT apps (#7373) --- dependencies/wasm/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dependencies/wasm/CMakeLists.txt b/dependencies/wasm/CMakeLists.txt index 6eb5ee38187a..2a8af90395c4 100644 --- a/dependencies/wasm/CMakeLists.txt +++ b/dependencies/wasm/CMakeLists.txt @@ -16,7 +16,7 @@ if ("${CMAKE_HOST_SYSTEM_NAME}" STREQUAL "Windows") endif () if (WITH_WABT) - set(WABT_VER 1.0.30) + set(WABT_VER 1.0.32) message(STATUS "Fetching WABT ${WABT_VER}...") FetchContent_Declare(wabt @@ -106,6 +106,7 @@ function(add_wasm_executable TARGET) -s ASSERTIONS=1 -s ALLOW_MEMORY_GROWTH=1 -s ENVIRONMENT=node + -s STACK_SIZE=98304 ) set(SRCS)