From 39d78a950b012fe368a7f5f350465c899890b77a Mon Sep 17 00:00:00 2001 From: Fabian Date: Thu, 31 Dec 2020 19:14:34 -0600 Subject: [PATCH] O3 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8c33b01f..824b4579 100644 --- a/Makefile +++ b/Makefile @@ -182,14 +182,14 @@ with-profiler: $(RUST_FILES) build/softfloat.o build/zstddeclib.o Cargo.toml build/softfloat.o: lib/softfloat/softfloat.c clang -c -Wall \ - --target=wasm32 -Os -flto -nostdlib -fvisibility=hidden -ffunction-sections -fdata-sections \ + --target=wasm32 -O3 -flto -nostdlib -fvisibility=hidden -ffunction-sections -fdata-sections \ -DSOFTFLOAT_FAST_INT64 -DINLINE_LEVEL=5 -DSOFTFLOAT_FAST_DIV32TO16 -DSOFTFLOAT_FAST_DIV64TO32 \ -o build/softfloat.o \ lib/softfloat/softfloat.c build/zstddeclib.o: lib/zstd/zstddeclib.c clang -c -Wall \ - --target=wasm32 -Os -flto -nostdlib -fvisibility=hidden -ffunction-sections -fdata-sections \ + --target=wasm32 -O3 -flto -nostdlib -fvisibility=hidden -ffunction-sections -fdata-sections \ -I /usr/include \ -o build/zstddeclib.o \ lib/zstd/zstddeclib.c