From 24dd81d2cc0e0d0ba68fe9761ad66d7b894e25bf Mon Sep 17 00:00:00 2001 From: conrad Date: Tue, 22 Jul 2025 14:03:01 +1000 Subject: [PATCH] add -march=native to CXXFLAGS --- tests2/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests2/Makefile b/tests2/Makefile index 6e997378..cb34f1b6 100644 --- a/tests2/Makefile +++ b/tests2/Makefile @@ -8,7 +8,7 @@ CXX_FLAGS = -I../tmp/include/ -std=c++14 -Wshadow -Wall -pedantic -Og #CXX_FLAGS = -I../tmp/include/ -std=c++14 -Wshadow -Wall -pedantic -Og -fopenmp #CXX_FLAGS = -I../tmp/include/ -std=c++14 -Wshadow -Wall -pedantic -Og -DARMA_DONT_USE_WRAPPER #CXX_FLAGS = -I../tmp/include/ -std=c++14 -Wshadow -Wall -pedantic -Og -fsanitize=address -fsanitize=leak -fsanitize=undefined -fsanitize=bounds -fsanitize=bounds-strict -g -#CXX_FLAGS = -I../tmp/include/ -std=c++23 -Wshadow -Wall -pedantic -Og -DARMA_FORCE_USE_FP16 +#CXX_FLAGS = -I../tmp/include/ -std=c++23 -Wshadow -Wall -pedantic -Og -march=native -DARMA_FORCE_USE_FP16 OBJECTS = $(patsubst %.cpp,%.o,$(wildcard *.cpp))