mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 00:19:53 +01:00
CMake: Fix Windows exceptions flag
This commit changes the exception flag to match the description and turn off exceptions. This matches the behavior of -fno-exceptions. However, on Windows SEH exceptions are always available, and there's no easy way to turn them off. This flag should also suppress previous /EHsc flags, if they get automatically set by cmake. Reference: https://learn.microsoft.com/en-us/cpp/build/reference/eh-exception-handling-model?view=msvc-170
This commit is contained in:
parent
bc77f84359
commit
2ac8408fef
|
|
@ -56,7 +56,7 @@ endif()
|
|||
if (MSVC)
|
||||
add_cxx_compile_options(/W4)
|
||||
# disable exceptions
|
||||
add_cxx_compile_options(/EHsc)
|
||||
add_cxx_compile_options(/EHs-)
|
||||
# disable floating-point expression contraction
|
||||
add_cxx_compile_options(/fp:precise)
|
||||
else()
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user