We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10a431a commit c22f0efCopy full SHA for c22f0ef
cmake/EthCompilerSettings.cmake
@@ -152,6 +152,7 @@ if (("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU") OR ("${CMAKE_CXX_COMPILER_ID}" MA
152
# The major alternative compiler to GCC/Clang is Microsoft's Visual C++ compiler, only available on Windows.
153
elseif (DEFINED MSVC)
154
# Remove NDEBUG from RELWITHDEBINFO (to enable asserts)
155
+ # CMAKE_CXX_FLAGS_RELWITHDEBINFO for GCC/Clang does not include NDEBUG
156
string(REPLACE "/DNDEBUG" " " CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO}")
157
158
add_compile_options(/MP) # enable parallel compilation
0 commit comments