miore stuff in makefile in case of releases (-march and -fschedule-insns)

This commit is contained in:
Richard Thier 2025-10-02 08:08:58 +02:00
parent 1d1f151c07
commit ce121571ca

View File

@ -13,9 +13,15 @@ release_debug_sym: test.cpp magyarsort.h
release: test.cpp magyarsort.h release: test.cpp magyarsort.h
g++ test.cpp -DNDEBUG -std=c++17 -O2 -o test.out 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 release_ypsu: ypsu.cpp magyarsort.h
g++ ypsu.cpp -DNDEBUG -std=c++17 -O2 -o ypsu.out 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 release3_ypsu: ypsu.cpp magyarsort.h
g++ ypsu.cpp -DNDEBUG -std=c++17 -O3 -o ypsu.out g++ ypsu.cpp -DNDEBUG -std=c++17 -O3 -o ypsu.out