diff --git a/interpreters/toywasm/include/toywasm_config.h b/interpreters/toywasm/include/toywasm_config.h index 7b46d9496..d991fab76 100644 --- a/interpreters/toywasm/include/toywasm_config.h +++ b/interpreters/toywasm/include/toywasm_config.h @@ -34,6 +34,7 @@ #define TOYWASM_USE_LOCALTYPE_CELLIDX #define TOYWASM_ENABLE_WRITER #define TOYWASM_ENABLE_WASM_SIMD +#define TOYWASM_ENABLE_WASM_EXCEPTION_HANDLING #define TOYWASM_ENABLE_WASM_EXTENDED_CONST #define TOYWASM_ENABLE_WASM_MULTI_MEMORY #define TOYWASM_ENABLE_WASM_TAILCALL diff --git a/interpreters/toywasm/include/toywasm_version.h b/interpreters/toywasm/include/toywasm_version.h index b41041135..67004e403 100644 --- a/interpreters/toywasm/include/toywasm_version.h +++ b/interpreters/toywasm/include/toywasm_version.h @@ -21,6 +21,6 @@ #if !defined(_TOYWASM_VERSION_H) #define _TOYWASM_VERSION_H -#define TOYWASM_VERSION "v35.0.0" +#define TOYWASM_VERSION "v36.0.0" #endif /* !defined(_TOYWASM_VERSION_H) */ diff --git a/interpreters/toywasm/src/toywasm_config.c b/interpreters/toywasm/src/toywasm_config.c index 2e7893ecf..fcc642c75 100644 --- a/interpreters/toywasm/src/toywasm_config.c +++ b/interpreters/toywasm/src/toywasm_config.c @@ -47,6 +47,7 @@ const char *const toywasm_config_string = "\tTOYWASM_USE_LOCALTYPE_CELLIDX = ON\n" "\tTOYWASM_PREALLOC_SHARED_MEMORY = OFF\n" "\tTOYWASM_ENABLE_WRITER = ON\n" +"\tTOYWASM_ENABLE_WASM_EXCEPTION_HANDLING = ON\n" "\tTOYWASM_ENABLE_WASM_SIMD = ON\n" "\tTOYWASM_ENABLE_WASM_EXTENDED_CONST = ON\n" "\tTOYWASM_ENABLE_WASM_MULTI_MEMORY = ON\n"