From 421ef04efb87889d73d5b404202a655f41d2e1e4 Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Sat, 25 May 2019 18:31:01 +0200 Subject: [PATCH] wasm: fix Makefile to avoid debuginfo --- src/examples/wasm/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/examples/wasm/Makefile b/src/examples/wasm/Makefile index 6927db72..a12bfbb3 100644 --- a/src/examples/wasm/Makefile +++ b/src/examples/wasm/Makefile @@ -1,10 +1,10 @@ export: clean wasm_exec - tinygo build -o ./html/wasm.wasm -target wasm ./export/wasm.go + tinygo build -o ./html/wasm.wasm -target wasm -no-debug ./export/wasm.go cp ./export/wasm.js ./html/ cp ./export/index.html ./html/ main: clean wasm_exec - tinygo build -o ./html/wasm.wasm -target wasm ./main/main.go + tinygo build -o ./html/wasm.wasm -target wasm -no-debug ./main/main.go cp ./main/index.html ./html/ wasm_exec: