Skip to content

Commit 73e74fa

Browse files
committed
cmake: disable fast math by default
1 parent af386c1 commit 73e74fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ option(USE_EXTRA_OPTIMIZATION "Enable extra optimization" ON)
6969
option(USE_LTO "Enable link-time optimization" OFF)
7070
# Enabling fast math makes generated images less likely to be reproducible.
7171
# See https://github.com/DaemonEngine/crunch/issues/29
72-
option(USE_FAST_MATH "Enable fast math (generated images are less likely to be reproducible)" ON)
72+
option(USE_FAST_MATH "Enable fast math (generated images are less likely to be reproducible)" OFF)
7373

7474
if (MSVC)
7575
# Enable MSVC parallel compilation.

0 commit comments

Comments
 (0)