Skip to content

Commit

Permalink
toywasm: regen for v30.0.0
Browse files Browse the repository at this point in the history
```
REF=bfcc5be6eb25c9581c6c3b443ac38c1a814f8e18 ./regen.sh
```
  • Loading branch information
yamt authored and xiaoxiang781216 committed Jul 31, 2023
1 parent 23691fd commit 5365fc9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions interpreters/toywasm/include/toywasm_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -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) */
2 changes: 1 addition & 1 deletion interpreters/toywasm/include/toywasm_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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) */
5 changes: 3 additions & 2 deletions interpreters/toywasm/src/toywasm_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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";

0 comments on commit 5365fc9

Please sign in to comment.