diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2017-12-19 22:43:49 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2017-12-19 22:43:49 +0530 |
commit | f801e2e6303ccb471aed65c2e5f2c93f22f2233d (patch) | |
tree | 073bef27d981db01730a3a674c39a6f3e352eeac | |
parent | 8fa747ee00bb01c2316624d8e96686b23f6dd2f2 (diff) | |
download | nnn-f801e2e6303ccb471aed65c2e5f2c93f22f2233d.tar.gz |
Fix #50: use -O3, disable -ftree-loop-vectorize
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |