Skip to content

Commit 854558c

Browse files
committed
fix(perf): build input.wasm with -O2 not -Oz
1 parent 51f4d26 commit 854558c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CFLAGS_BASE = --target=wasm32 -nostdlib \
55
-mbulk-memory \
66
-Isrc -I.
77

8-
INPUT_OPT ?= -Oz
8+
INPUT_OPT ?= -O2
99
LAYOUT_OPT ?= -O2
1010

1111
LAYOUT_CFLAGS = $(CFLAGS_BASE) $(LAYOUT_OPT) -DCLAY_IMPLEMENTATION -DCLAY_WASM

0 commit comments

Comments
 (0)