use -O2 with -ffast-math and -ftree-vectorize

This commit is contained in:
Ahmet Inan 2022-04-07 21:42:21 +02:00
commit 8e4fd040f9

View file

@ -1,5 +1,5 @@
CXXFLAGS = -I.. -std=c++11 -W -Wall -Ofast -fno-exceptions -fno-rtti -march=native
CXXFLAGS = -I.. -std=c++11 -W -Wall -O2 -fno-exceptions -fno-rtti -ffast-math -ftree-vectorize -march=native
CXX = clang++ -stdlib=libc++
#CXX = g++