aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2019-07-16 21:52:40 +0200
committertomsmeding <tom.smeding@gmail.com>2019-07-16 21:52:40 +0200
commit5e23e6b4986bb31e15e37309ee6b55224a4a630a (patch)
tree1ca75747e636d092e71825495125d88e9cf28c62
parent05ca4999d45752a101dbb60df5d419a22d5011fb (diff)
Remove unnecessary -mtune flag
-rw-r--r--aberth/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/aberth/Makefile b/aberth/Makefile
index cd59309..c9e9f7a 100644
--- a/aberth/Makefile
+++ b/aberth/Makefile
@@ -1,6 +1,6 @@
CXX = g++
CXXFLAGS = -Wall -Wextra -std=c++17 $(OPTFLAGS)
-OPTFLAGS = -O3 -ffast-math -march=native -mtune=native -flto
+OPTFLAGS = -O3 -ffast-math -march=native -flto
LDFLAGS = -pthread
ifeq ($(shell uname),Darwin)
LDFLAGS += -framework OpenCL