diff options
author | Pranav Kant <prka@google.com> | 2023-09-27 18:55:40 +0000 |
---|---|---|
committer | Pranav Kant <prka@google.com> | 2023-09-27 19:03:26 +0000 |
commit | bade6276d16523f81a1dedf22e591730592f15d6 (patch) | |
tree | 4935401bd30e49525db45a08b6460b704d92c02a | |
parent | aacd7e0eb6429854f6133bea49c1c4938ff30608 (diff) | |
download | glibc-bade6276d16523f81a1dedf22e591730592f15d6.zip glibc-bade6276d16523f81a1dedf22e591730592f15d6.tar.gz glibc-bade6276d16523f81a1dedf22e591730592f15d6.tar.bz2 |
configure: Use same pattern to find headers for clang
-rwxr-xr-x | configure | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -5379,17 +5379,10 @@ fi if test -n "$CXX"; then # In theory the clang and gcc regexes can be merged, but the # result is incomprehensible. - if test "$with_clang" != no; then - find_cxx_header () { - echo "#include <$1>" | $CXX -M -MP -x c++ - 2>/dev/null \ - | sed -n "\,^[o.-]*[ :] /.*/$1 [\]$,{s,^[o.-]*[ :] /,/,;s/ [\]$//;p}" - } - else find_cxx_header () { echo "#include <$1>" | $CXX -M -MP -x c++ - 2>/dev/null \ | sed -n "\,$1:,{s/:\$//;p}" } - fi CXX_CSTDLIB_HEADER="$(find_cxx_header cstdlib)" CXX_CMATH_HEADER="$(find_cxx_header cmath)" CXX_BITS_STD_ABS_H="$(find_cxx_header bits/std_abs.h)" |