1
1
mirror of https://github.com/jarun/nnn.git synced 2024-09-21 09:57:55 +03:00

Enable O3 optimization

This commit is contained in:
Arun Prakash Jana 2017-09-27 22:48:46 +05:30
parent 6bfbff9519
commit b0a806ae2e
No known key found for this signature in database
GPG Key ID: A75979F35C080412
2 changed files with 1 additions and 2 deletions

View File

@ -3,7 +3,7 @@ VERSION = 1.4
PREFIX ?= /usr/local
MANPREFIX = $(PREFIX)/share/man
CFLAGS += -O2 -Wall -Wextra -Wno-unused-parameter
CFLAGS += -O3 -Wall -Wextra -Wno-unused-parameter
LDLIBS = -lreadline
ifeq ($(shell pkg-config ncursesw && echo 1),1)

View File

@ -1,5 +1,4 @@
# This Makefile optimizes native builds. It
# - enables -O3 optimization
# - builds for native architecture (-march=native)
# - does not have debug build option
#