diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2017-12-25 17:35:27 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2017-12-25 19:10:20 +0530 |
commit | cd177086cae75394b21dd44eff57c65783d3b4a8 (patch) | |
tree | 80e9a2f05d46252a5d5832a945082dc8875e4852 /Makefile | |
parent | f687463574ac69491b337d37725b42d3f4878cf8 (diff) | |
download | nnn-cd177086cae75394b21dd44eff57c65783d3b4a8.tar.gz |
OpenSUSE gcc fails at '-fno-tree-loop-vectorize'
Diffstat (limited to 'Makefile')
-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) -O3 -fno-tree-loop-vectorize $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS) + $(CC) -O2 $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS) strip $@ debug: $(SRC) |