mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-31 14:01:18 +08:00
Add clang version of find_cxx_header
This commit is contained in:
parent
0f93e3333f
commit
f9bd60b7c0
9
configure
vendored
9
configure
vendored
@ -5365,10 +5365,19 @@ fi
|
||||
# Obtain some C++ header file paths. This is used to make a local
|
||||
# copy of those headers in Makerules.
|
||||
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)"
|
||||
|
11
configure.ac
11
configure.ac
@ -1067,15 +1067,26 @@ AC_SUBST(CXX_SYSINCLUDES)
|
||||
|
||||
# Obtain some C++ header file paths. This is used to make a local
|
||||
# copy of those headers in Makerules.
|
||||
changequote(,)dnl
|
||||
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)"
|
||||
fi
|
||||
changequote([,])dnl
|
||||
AC_SUBST(CXX_CSTDLIB_HEADER)
|
||||
AC_SUBST(CXX_CMATH_HEADER)
|
||||
AC_SUBST(CXX_BITS_STD_ABS_H)
|
||||
|
Loading…
x
Reference in New Issue
Block a user