From ce121571ca543cbb300e7833ccfc7417ad544fb3 Mon Sep 17 00:00:00 2001 From: Richard Thier Date: Thu, 2 Oct 2025 08:08:58 +0200 Subject: [PATCH] miore stuff in makefile in case of releases (-march and -fschedule-insns) --- makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/makefile b/makefile index 2ceaada..b60d66e 100644 --- a/makefile +++ b/makefile @@ -13,9 +13,15 @@ release_debug_sym: test.cpp magyarsort.h release: test.cpp magyarsort.h g++ test.cpp -DNDEBUG -std=c++17 -O2 -o test.out +release_march: test.cpp magyarsort.h + g++ test.cpp -DNDEBUG -std=c++17 -O2 -march=native -o test.out + release_ypsu: ypsu.cpp magyarsort.h g++ ypsu.cpp -DNDEBUG -std=c++17 -O2 -o ypsu.out +release_ypsu_march: ypsu.cpp magyarsort.h + g++ ypsu.cpp -DNDEBUG -std=c++17 -O2 -march=native -fschedule-insns -o ypsu.out + release3_ypsu: ypsu.cpp magyarsort.h g++ ypsu.cpp -DNDEBUG -std=c++17 -O3 -o ypsu.out