Browse Source

Fix #50: use -O3, disable -ftree-loop-vectorize

master
Arun Prakash Jana 7 years ago
parent
commit
f801e2e630
No known key found for this signature in database GPG Key ID: A75979F35C080412
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Makefile

+ 1
- 1
Makefile View File

@@ -23,7 +23,7 @@ all: $(BIN) $(PLAYER)
$(SRC): nnn.h $(SRC): nnn.h


$(BIN): $(SRC) $(BIN): $(SRC)
$(CC) -O2 $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS)
$(CC) -O3 -fno-tree-loop-vectorize $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS)
strip $@ strip $@


debug: $(SRC) debug: $(SRC)


Loading…
Cancel
Save