From d6ff7ac0aadb5d795997163fd94490ae40a7602e Mon Sep 17 00:00:00 2001 From: Sebastian Macke Date: Fri, 27 Sep 2024 10:22:32 +0200 Subject: [PATCH] Remove simd option for now --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a0fd3bb..5a0ad4c 100644 --- a/Makefile +++ b/Makefile @@ -2,9 +2,9 @@ all: bin/game.wasm SOURCES = $(wildcard src/wasm/*.c) -# -Rpass=loop-vectorize -Rpass-missed=loop-vectorize -Rpass-analysis=loop-vectorize +# -msimd128 -Rpass=loop-vectorize -Rpass-missed=loop-vectorize -Rpass-analysis=loop-vectorize bin/game.wasm: $(SOURCES) - clang -Ofast -nostdlib --target=wasm32 -msimd128 \ + clang -Ofast -nostdlib --target=wasm32 \ -o bin/game.wasm \ -Wl,--no-entry \ -Wl,--gc-sections \