toywasm: regen for v30.0.0

```
REF=bfcc5be6eb25c9581c6c3b443ac38c1a814f8e18 ./regen.sh
```
This commit is contained in:
YAMAMOTO Takashi 2023-07-31 22:54:46 +09:00 committed by Xiang Xiao
parent 23691fd422
commit 5365fc9ffd
3 changed files with 5 additions and 3 deletions

View File

@ -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) */

View File

@ -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) */

View File

@ -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";