1
0
Fork 0

Remove /fp:except in Windows 32 bit build.

This commit is contained in:
John Preston 2021-08-24 20:11:49 +03:00
parent 76ece84e77
commit 995b1e4cbd

View file

@ -45,10 +45,10 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
/bigobj # scheme.cpp has too many sections. /bigobj # scheme.cpp has too many sections.
) )
else() else()
target_compile_options(common_options # target_compile_options(common_options
INTERFACE # INTERFACE
/fp:except # Crash-report fp exceptions in 32 bit build. # /fp:except # Crash-report fp exceptions in 32 bit build.
) # )
target_link_options(common_options target_link_options(common_options
INTERFACE INTERFACE
/LARGEADDRESSAWARE # Allow more than 2 GB in 32 bit application. /LARGEADDRESSAWARE # Allow more than 2 GB in 32 bit application.