diff --git a/interpreters/toywasm/include/toywasm_config.h b/interpreters/toywasm/include/toywasm_config.h index d7a2cc3d1..6427d97f0 100644 --- a/interpreters/toywasm/include/toywasm_config.h +++ b/interpreters/toywasm/include/toywasm_config.h @@ -31,6 +31,7 @@ #define TOYWASM_USE_RESULTTYPE_CELLIDX #define TOYWASM_USE_LOCALTYPE_CELLIDX #define TOYWASM_ENABLE_WRITER +#define TOYWASM_ENABLE_WASM_SIMD #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 1cefbedf4..c09db8eea 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 "v21.0.0-1-g80d43df" +#define TOYWASM_VERSION "v24.0.0-17-g031ac96" #endif /* !defined(_TOYWASM_VERSION_H) */ diff --git a/interpreters/toywasm/src/toywasm_config.c b/interpreters/toywasm/src/toywasm_config.c index 9545ebaa1..90f1f95d4 100644 --- a/interpreters/toywasm/src/toywasm_config.c +++ b/interpreters/toywasm/src/toywasm_config.c @@ -29,6 +29,7 @@ const char *toywasm_config_string = "\tTOYWASM_USE_SEPARATE_EXECUTE = ON\n" "\tTOYWASM_USE_TAILCALL = ON\n" +"\tTOYWASM_USE_SIMD = OFF\n" "\tTOYWASM_USE_SHORT_ENUMS = OFF\n" "\tTOYWASM_USE_USER_SCHED = OFF\n" "\tTOYWASM_ENABLE_TRACING = OFF\n" @@ -43,6 +44,7 @@ const char *toywasm_config_string = "\tTOYWASM_USE_LOCALTYPE_CELLIDX = ON\n" "\tTOYWASM_PREALLOC_SHARED_MEMORY = OFF\n" "\tTOYWASM_ENABLE_WRITER = ON\n" +"\tTOYWASM_ENABLE_WASM_SIMD = ON\n" "\tTOYWASM_ENABLE_WASM_EXTENDED_CONST = ON\n" "\tTOYWASM_ENABLE_WASM_MULTI_MEMORY = ON\n" "\tTOYWASM_ENABLE_WASM_TAILCALL = ON\n"