From ac4382ed5e6503e89f5a170f1843f1c67f6fc73c Mon Sep 17 00:00:00 2001 From: deluan Date: Tue, 24 Feb 2026 17:53:51 -0500 Subject: [PATCH] build: update target from wasi to wasip1 for TinyGo compilation --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c6cccc5..bfc51d1 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ test: build: ifdef TINYGO - tinygo build -opt=2 -scheduler=none -no-debug -o $(WASM_FILE) -target wasi -buildmode=c-shared . + tinygo build -opt=2 -scheduler=none -no-debug -o $(WASM_FILE) -target wasip1 -buildmode=c-shared . else GOOS=wasip1 GOARCH=wasm go build -buildmode=c-shared -o $(WASM_FILE) . endif