Disable NAN and INF optimisations, as NANs are used in some code

pull/1281/head
Jon Beniston 2022-06-06 14:21:42 +01:00
rodzic 76ed92c985
commit 9052694ad5
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -19,7 +19,7 @@ if(WIN32)
endif()
if(NOT MSVC)
add_compile_options(-Wall -Wextra -Wvla -Woverloaded-virtual -ffast-math -ftree-vectorize)
add_compile_options(-Wall -Wextra -Wvla -Woverloaded-virtual -ffast-math -fno-finite-math-only -ftree-vectorize)
endif()
if (SANITIZE_ADDRESS)