aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2017-12-19 22:43:49 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2017-12-19 22:43:49 +0530
commitf801e2e6303ccb471aed65c2e5f2c93f22f2233d (patch)
tree073bef27d981db01730a3a674c39a6f3e352eeac
parent8fa747ee00bb01c2316624d8e96686b23f6dd2f2 (diff)
downloadnnn-f801e2e6303ccb471aed65c2e5f2c93f22f2233d.tar.gz
Fix #50: use -O3, disable -ftree-loop-vectorize
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9c7bac2..254fa5a 100644
--- a/Makefile
+++ b/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)