From 5365fc9ffda809fae11abc6b325a19f6fb0cf9ea Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Mon, 31 Jul 2023 22:54:46 +0900 Subject: [PATCH] toywasm: regen for v30.0.0 ``` REF=bfcc5be6eb25c9581c6c3b443ac38c1a814f8e18 ./regen.sh ``` --- interpreters/toywasm/include/toywasm_config.h | 1 + interpreters/toywasm/include/toywasm_version.h | 2 +- interpreters/toywasm/src/toywasm_config.c | 5 +++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/interpreters/toywasm/include/toywasm_config.h b/interpreters/toywasm/include/toywasm_config.h index bcf55a7864..5d553fcfa0 100644 --- a/interpreters/toywasm/include/toywasm_config.h +++ b/interpreters/toywasm/include/toywasm_config.h @@ -39,5 +39,6 @@ #define TOYWASM_ENABLE_WASI #define TOYWASM_ENABLE_WASI_THREADS #define TOYWASM_ENABLE_DYLD +#define TOYWASM_ENABLE_DYLD_DLFCN #endif /* !defined(_TOYWASM_CONFIG_H) */ diff --git a/interpreters/toywasm/include/toywasm_version.h b/interpreters/toywasm/include/toywasm_version.h index d379590f9c..5e2a6f2da7 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 "v29.0.0" +#define TOYWASM_VERSION "v30.0.0" #endif /* !defined(_TOYWASM_VERSION_H) */ diff --git a/interpreters/toywasm/src/toywasm_config.c b/interpreters/toywasm/src/toywasm_config.c index 6953007118..32b4003961 100644 --- a/interpreters/toywasm/src/toywasm_config.c +++ b/interpreters/toywasm/src/toywasm_config.c @@ -26,7 +26,7 @@ * Public Data ****************************************************************************/ -const char *toywasm_config_string = +const char *const toywasm_config_string = "\tTOYWASM_USE_SEPARATE_EXECUTE = ON\n" "\tTOYWASM_USE_TAILCALL = ON\n" "\tTOYWASM_FORCE_USE_TAILCALL = OFF\n" @@ -52,4 +52,5 @@ const char *toywasm_config_string = "\tTOYWASM_ENABLE_WASM_THREADS = ON\n" "\tTOYWASM_ENABLE_WASI = ON\n" "\tTOYWASM_ENABLE_WASI_THREADS = ON\n" -"\tTOYWASM_ENABLE_DYLD = ON\n"; +"\tTOYWASM_ENABLE_DYLD = ON\n" +"\tTOYWASM_ENABLE_DYLD_DLFCN = ON\n";