diff options
author | deadprogram <[email protected]> | 2024-02-15 18:46:24 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-02-17 10:18:00 +0100 |
commit | ad30085b93542490a4b24bf3b934aafcf1208243 (patch) | |
tree | 5081df2991c5726086597f31a79e7f4625a0e623 /GNUmakefile | |
parent | e9ca41735ad16111fd756235c1516ef988746cea (diff) | |
download | tinygo-ad30085b93542490a4b24bf3b934aafcf1208243.tar.gz tinygo-ad30085b93542490a4b24bf3b934aafcf1208243.zip |
targets/wasm_unknown: use proper defaults for GC
Signed-off-by: deadprogram <[email protected]>
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 9df6c41aa..e2a34a558 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -773,7 +773,7 @@ endif ifneq ($(WASM), 0) $(TINYGO) build -size short -o wasm.wasm -target=wasm examples/wasm/export $(TINYGO) build -size short -o wasm.wasm -target=wasm examples/wasm/main - $(TINYGO) build -size short -o wasm.wasm -target=wasm-unknown -gc=leaking -no-debug examples/hello-wasm-unknown + $(TINYGO) build -size short -o wasm.wasm -target=wasm-unknown examples/hello-wasm-unknown endif # test various compiler flags $(TINYGO) build -size short -o test.hex -target=pca10040 -gc=none -scheduler=none examples/blinky1 |