mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 04:29:52 +00:00
2ca89b5a69
On OpenBSD linking to `libstdc++` with GCC 6.4 always warns: warning: sprintf() is often misused, please use snprintf() These do not affect the availability of C++ features we're checking, so filter them out. Fixes: #18602
56 lines
2.5 KiB
CMake
56 lines
2.5 KiB
CMake
|
|
function(cm_check_cxx_feature name)
|
|
string(TOUPPER ${name} FEATURE)
|
|
if(NOT DEFINED CMake_HAVE_CXX_${FEATURE})
|
|
message(STATUS "Checking if compiler supports C++ ${name}")
|
|
if(CMAKE_CXX_STANDARD)
|
|
set(maybe_cxx_standard -DCMAKE_CXX_STANDARD=${CMAKE_CXX_STANDARD})
|
|
else()
|
|
set(maybe_cxx_standard "")
|
|
endif()
|
|
try_compile(CMake_HAVE_CXX_${FEATURE}
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_CURRENT_LIST_DIR}/cm_cxx_${name}.cxx
|
|
CMAKE_FLAGS ${maybe_cxx_standard}
|
|
OUTPUT_VARIABLE OUTPUT
|
|
)
|
|
set(check_output "${OUTPUT}")
|
|
# Filter out MSBuild output that looks like a warning.
|
|
string(REGEX REPLACE " +0 Warning\\(s\\)" "" check_output "${check_output}")
|
|
# Filter out warnings caused by user flags.
|
|
string(REGEX REPLACE "[^\n]*warning:[^\n]*-Winvalid-command-line-argument[^\n]*" "" check_output "${check_output}")
|
|
# Filter out warnings caused by local configuration.
|
|
string(REGEX REPLACE "[^\n]*warning:[^\n]*directory not found for option[^\n]*" "" check_output "${check_output}")
|
|
string(REGEX REPLACE "[^\n]*warning:[^\n]*object file compiled with -mlong-branch which is no longer needed[^\n]*" "" check_output "${check_output}")
|
|
# Filter out other warnings unrelated to feature checks.
|
|
string(REGEX REPLACE "[^\n]*warning:[^\n]*sprintf\\(\\) is often misused, please use snprintf[^\n]*" "" check_output "${check_output}")
|
|
# Filter out xcodebuild warnings.
|
|
string(REGEX REPLACE "[^\n]* xcodebuild\\[[0-9]*:[0-9]*\\] warning: [^\n]*" "" check_output "${check_output}")
|
|
# If using the feature causes warnings, treat it as broken/unavailable.
|
|
if(check_output MATCHES "[Ww]arning")
|
|
set(CMake_HAVE_CXX_${FEATURE} OFF CACHE INTERNAL "TRY_COMPILE" FORCE)
|
|
endif()
|
|
if(CMake_HAVE_CXX_${FEATURE})
|
|
message(STATUS "Checking if compiler supports C++ ${name} - yes")
|
|
file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
|
|
"Determining if compiler supports C++ ${name} passed with the following output:\n"
|
|
"${OUTPUT}\n"
|
|
"\n"
|
|
)
|
|
else()
|
|
message(STATUS "Checking if compiler supports C++ ${name} - no")
|
|
file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
|
|
"Determining if compiler supports C++ ${name} failed with the following output:\n"
|
|
"${OUTPUT}\n"
|
|
"\n"
|
|
)
|
|
endif()
|
|
endif()
|
|
endfunction()
|
|
|
|
cm_check_cxx_feature(make_unique)
|
|
if(CMake_HAVE_CXX_MAKE_UNIQUE)
|
|
set(CMake_HAVE_CXX_UNIQUE_PTR 1)
|
|
endif()
|
|
cm_check_cxx_feature(unique_ptr)
|