Skip to content

Commit

Permalink
toywasm: bump the version to v29.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yamt authored and xiaoxiang781216 committed Jul 22, 2023
1 parent 7cacd56 commit f418732
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
8 changes: 7 additions & 1 deletion interpreters/toywasm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,16 @@ CSRCS += wasi_fdtable.c
# TOYWASM_ENABLE_WASI_THREADS
CSRCS += wasi_threads.c

# TOYWASM_ENABLE_DYLD
CSRCS += dyld.c
CSRCS += dyld_plt.c

CFLAGS += ${INCDIR_PREFIX}$(APPDIR)/interpreters/toywasm/include
CFLAGS += ${INCDIR_PREFIX}$(APPDIR)/interpreters/toywasm/toywasm/lib
CFLAGS += ${INCDIR_PREFIX}$(APPDIR)/interpreters/toywasm/toywasm/libwasi
CFLAGS += ${INCDIR_PREFIX}$(APPDIR)/interpreters/toywasm/toywasm/libdyld

TOYWASM_VERSION = 99468253ca11c9b8df444e3e23865b5030f6af69
TOYWASM_VERSION = 12b9e518cd18c9fee09a521afa96eb15cd11edac
TOYWASM_UNPACK = toywasm
TOYWASM_TARBALL = $(TOYWASM_VERSION).zip
TOYWASM_URL_BASE = https://github.com/yamt/toywasm/archive/
Expand All @@ -87,6 +92,7 @@ TOYWASM_URL = $(TOYWASM_URL_BASE)/$(TOYWASM_TARBALL)
VPATH += $(TOYWASM_UNPACK)/cli
VPATH += $(TOYWASM_UNPACK)/lib
VPATH += $(TOYWASM_UNPACK)/libwasi
VPATH += $(TOYWASM_UNPACK)/libdyld
VPATH += src

$(TOYWASM_TARBALL):
Expand Down
1 change: 1 addition & 0 deletions interpreters/toywasm/regen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ cmake -B ${BUILDDIR} \
-DTOYWASM_ENABLE_WASM_TAILCALL=ON \
-DTOYWASM_ENABLE_WASM_THREADS=ON \
-DTOYWASM_ENABLE_WASI_THREADS=ON \
-DTOYWASM_ENABLE_DYLD=ON \
${DIR}

for fn in \
Expand Down

0 comments on commit f418732

Please sign in to comment.