From 476a3462952da19058b55bf21012f344373a08af Mon Sep 17 00:00:00 2001 From: Ahmet Inan Date: Thu, 7 Apr 2022 21:36:38 +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 3f47075..0871848 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,5 +1,5 @@ -CXXFLAGS = -I.. -std=c++17 -W -Wall -Ofast -fno-exceptions -fno-rtti +CXXFLAGS = -I.. -std=c++17 -W -Wall -O2 -fno-exceptions -fno-rtti -ffast-math -ftree-vectorize CXX = clang++ -stdlib=libc++ -march=native