We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7284049 commit 7242d78Copy full SHA for 7242d78
packages/wasm-miniscript/Makefile
@@ -10,8 +10,10 @@ define WASM_PACK_COMMAND
10
$(WASM_PACK) build --no-opt --out-dir $(1) $(WASM_PACK_FLAGS) --target $(2)
11
endef
12
13
+# run wasm-opt separately so we can pass `-g` flag
14
+# https://github.com/llvm/llvm-project/issues/55781#issuecomment-1376582397
15
define WASM_OPT_COMMAND
- $(WASM_OPT) -Oz $(1)/*.wasm -o $(1)/*.wasm
16
+ $(WASM_OPT) -g -Oz $(1)/*.wasm -o $(1)/*.wasm
17
18
19
define REMOVE_GITIGNORE
0 commit comments