O3 instead of Ofast for gcc/clang

This commit is contained in:
mikeoliphant
2026-07-16 12:36:20 -07:00
parent 9981fd4005
commit 423813bbdd
+2 -2
View File
@@ -8,8 +8,8 @@ else()
-Wall
# -Wpedantic -Wextra -Wstrict-aliasing -Wunreachable-code -Weffc++ -Wno-unused-parameter
"$<$<CONFIG:DEBUG>:-Og;-ggdb>"
"$<$<CONFIG:RELWITHDEBINFO>:-Ofast>"
"$<$<CONFIG:RELEASE>:-Ofast>"
"$<$<CONFIG:RELWITHDEBINFO>:-O3>"
"$<$<CONFIG:RELEASE>:-O3>"
)
endif()