diff options
author | Brad King <brad.king@kitware.com> | 2020-04-30 13:51:56 +0000 |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2020-04-30 09:52:12 -0400 |
commit | 5aa1ef1df8b141da07f0a12fdace0c4ec99337a2 (patch) | |
tree | 0dce21e6acee0c279e7fe05a7663d1b2990eb184 /Source/Checks | |
parent | 1665d5615fdf9ff618007553e9e447da21428d84 (diff) | |
parent | 4ab0d37b4147dfd6a06995efbcaf2aa68abf29c3 (diff) | |
download | cmake-5aa1ef1df8b141da07f0a12fdace0c4ec99337a2.tar.gz |
Merge topic 'cm_cxx_features-libhugetlbfs'
4ab0d37b41 cm_cxx_features: Filter out libhugetlbfs warnings
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !4681
Diffstat (limited to 'Source/Checks')
-rw-r--r-- | Source/Checks/cm_cxx_features.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Checks/cm_cxx_features.cmake b/Source/Checks/cm_cxx_features.cmake index 3b00dfb13e..358c5c5e0d 100644 --- a/Source/Checks/cm_cxx_features.cmake +++ b/Source/Checks/cm_cxx_features.cmake @@ -28,6 +28,8 @@ function(cm_check_cxx_feature name) 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 libhugetlbfs warnings. + string(REGEX REPLACE "[^\n]*libhugetlbfs [^\n]*: WARNING[^\n]*" "" check_output "${check_output}") # Filter out xcodebuild warnings. string(REGEX REPLACE "[^\n]* xcodebuild\\[[0-9]*:[0-9]*\\] warning: [^\n]*" "" check_output "${check_output}") # Filter out ld warnings. |