diff --git a/interpreters/toywasm/include/toywasm_config.h b/interpreters/toywasm/include/toywasm_config.h index bcf55a786..5d553fcfa 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 d379590f9..5e2a6f2da 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 695300711..32b400396 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";