Skip to content

Commit

Permalink
Remove simd option for now
Browse files Browse the repository at this point in the history
  • Loading branch information
s-macke committed Sep 27, 2024
1 parent de32063 commit d6ff7ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit d6ff7ac

Please sign in to comment.