From 8e4fd040f960e2a651b06f42f9db2883c9b7b08b Mon Sep 17 00:00:00 2001 From: Ahmet Inan Date: Thu, 7 Apr 2022 21:42:21 +0200 Subject: [PATCH] use -O2 with -ffast-math and -ftree-vectorize --- tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile b/tests/Makefile index cba1143..5119487 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -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++