From df573bb024aa622ee90959976144dd027ff76c93 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Tue, 30 Jan 2024 00:14:19 +0900 Subject: [PATCH] toywasm: bump the version --- interpreters/toywasm/Makefile | 2 +- interpreters/toywasm/regen.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/interpreters/toywasm/Makefile b/interpreters/toywasm/Makefile index 356dcb4a1..20b3e7055 100644 --- a/interpreters/toywasm/Makefile +++ b/interpreters/toywasm/Makefile @@ -90,7 +90,7 @@ 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 = e2ec1b60e06dbe360ae638970d01906ded5ab497 +TOYWASM_VERSION = 15e6585cecd8049a03a901a4ed8a6b2dd3c18e48 TOYWASM_UNPACK = toywasm TOYWASM_TARBALL = $(TOYWASM_VERSION).zip TOYWASM_URL_BASE = https://github.com/yamt/toywasm/archive/ diff --git a/interpreters/toywasm/regen.sh b/interpreters/toywasm/regen.sh index 2f0e02f42..76800602b 100755 --- a/interpreters/toywasm/regen.sh +++ b/interpreters/toywasm/regen.sh @@ -20,6 +20,7 @@ git -C ${DIR} checkout FETCH_HEAD cmake -B ${BUILDDIR} \ -DTOYWASM_USE_SHORT_ENUMS=OFF \ +-DTOYWASM_ENABLE_WASM_EXCEPTION_HANDLING=ON \ -DTOYWASM_ENABLE_WASM_EXTENDED_CONST=ON \ -DTOYWASM_ENABLE_WASM_MULTI_MEMORY=ON \ -DTOYWASM_ENABLE_WASM_TAILCALL=ON \