We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
/EHsc
1 parent 2737a32 commit d71c0ceCopy full SHA for d71c0ce
.github/workflows/cpp_windows.yml
@@ -64,6 +64,7 @@ jobs:
64
ARROW_WITH_ZLIB: ON
65
ARROW_WITH_ZSTD: ON
66
BOOST_SOURCE: BUNDLED
67
+ CMAKE_CXX_STANDARD: "17"
68
CMAKE_GENERATOR: Ninja
69
CMAKE_INSTALL_PREFIX: /usr
70
CMAKE_UNITY_BUILD: ON
cpp/cmake_modules/SetupCxxFlags.cmake
@@ -186,6 +186,7 @@ if(WIN32)
186
#
187
# ARROW-2986: Without /EHsc we get C4530 warning
188
set(CXX_COMMON_FLAGS "/W3 /EHsc")
189
+ string(APPEND CMAKE_CXX_FLAGS " /EHsc")
190
endif()
191
192
# Disable C5105 (macro expansion producing 'defined' has undefined
0 commit comments