commit 0df57591123baa32334bdd98c24f78a0ade4d680 parent 296ae6b2108c56efe846c6fa2c02f07543cc5955 Author: Yersa Nordman <finwo@pm.me> Date: Sat, 12 Oct 2019 11:42:19 +0200 -Os is require for wasm compilation Diffstat:
| M | Makefile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -2,7 +2,7 @@ CC = clang LD = wasm-ld TARGET ?= wasm32 -CFLAGS ?= -O3 +CFLAGS ?= -Os SRC=$(shell find -L src/$(TARGET) -type f -name *.c) OBJ=$(SRC:.c=.o)