Skip to content

Commit

Permalink
regen for toywasm v29.0.0
Browse files Browse the repository at this point in the history
```
REF=12b9e518cd18c9fee09a521afa96eb15cd11edac ./regen.sh
```
  • Loading branch information
yamt authored and xiaoxiang781216 committed Jul 22, 2023
1 parent f418732 commit 33987a7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions interpreters/toywasm/include/toywasm_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#define _TOYWASM_CONFIG_H

#define TOYWASM_USE_SEPARATE_EXECUTE
#define TOYWASM_USE_TAILCALL
#define TOYWASM_USE_JUMP_BINARY_SEARCH
#define TOYWASM_JUMP_CACHE2_SIZE 4
#define TOYWASM_USE_LOCALS_CACHE
Expand All @@ -37,5 +38,6 @@
#define TOYWASM_ENABLE_WASM_THREADS
#define TOYWASM_ENABLE_WASI
#define TOYWASM_ENABLE_WASI_THREADS
#define TOYWASM_ENABLE_DYLD

#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 "v27.0.0-5-g9946825"
#define TOYWASM_VERSION "v29.0.0"

#endif /* !defined(_TOYWASM_VERSION_H) */
6 changes: 4 additions & 2 deletions interpreters/toywasm/src/toywasm_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@

const char *toywasm_config_string =
"\tTOYWASM_USE_SEPARATE_EXECUTE = ON\n"
"\tTOYWASM_USE_TAILCALL = OFF\n"
"\tTOYWASM_USE_TAILCALL = ON\n"
"\tTOYWASM_FORCE_USE_TAILCALL = OFF\n"
"\tTOYWASM_USE_SIMD = OFF\n"
"\tTOYWASM_USE_SHORT_ENUMS = OFF\n"
"\tTOYWASM_USE_USER_SCHED = OFF\n"
Expand All @@ -50,4 +51,5 @@ const char *toywasm_config_string =
"\tTOYWASM_ENABLE_WASM_TAILCALL = ON\n"
"\tTOYWASM_ENABLE_WASM_THREADS = ON\n"
"\tTOYWASM_ENABLE_WASI = ON\n"
"\tTOYWASM_ENABLE_WASI_THREADS = ON\n";
"\tTOYWASM_ENABLE_WASI_THREADS = ON\n"
"\tTOYWASM_ENABLE_DYLD = ON\n";

0 comments on commit 33987a7

Please sign in to comment.