mirror of
https://github.com/jarun/nnn.git
synced 2025-04-19 11:54:54 +00:00
Fix #50: use -O3, disable -ftree-loop-vectorize
This commit is contained in:
parent
8fa747ee00
commit
f801e2e630
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -23,7 +23,7 @@ all: $(BIN) $(PLAYER)
|
|||
$(SRC): nnn.h
|
||||
|
||||
$(BIN): $(SRC)
|
||||
$(CC) -O2 $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS)
|
||||
$(CC) -O3 -fno-tree-loop-vectorize $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS)
|
||||
strip $@
|
||||
|
||||
debug: $(SRC)
|
||||
|
|
Loading…
Add table
Reference in a new issue