mirror of git://sourceware.org/git/glibc.git
configure: remove overly restrictive check for clang
This commit is contained in:
parent
85ab293344
commit
a6428cf098
|
@ -5778,7 +5778,7 @@ int
|
|||
main (void)
|
||||
{
|
||||
|
||||
#if !defined __GNUC__ || __GNUC__ < 6 || (__GNUC__ == 6 && __GNUC_MINOR__ < 2)
|
||||
#if (__GNUC__ < 6 || (__GNUC__ == 6 && __GNUC_MINOR__ < 2)) && !defined __clang__
|
||||
#error insufficient compiler
|
||||
#endif
|
||||
;
|
||||
|
@ -7681,7 +7681,7 @@ else case e in #(
|
|||
extern char *strstr (const char *, const char *) __asm ("my_strstr");
|
||||
char *foo (const char *a, const char *b)
|
||||
{
|
||||
return __builtin_strstr (a, b);
|
||||
return strstr (a, b);
|
||||
}
|
||||
EOF
|
||||
if { ac_try='${CC-cc} -O3 -S conftest.c -o - | grep -F "my_strstr" > /dev/null'
|
||||
|
|
|
@ -575,7 +575,7 @@ AC_CHECK_PROG_VER(BISON, bison, --version,
|
|||
|
||||
AC_CACHE_CHECK([if $CC is sufficient to build libc], libc_cv_compiler_ok, [
|
||||
AC_PREPROC_IFELSE([AC_LANG_PROGRAM([[]], [[
|
||||
#if !defined __GNUC__ || __GNUC__ < 6 || (__GNUC__ == 6 && __GNUC_MINOR__ < 2)
|
||||
#if (__GNUC__ < 6 || (__GNUC__ == 6 && __GNUC_MINOR__ < 2)) && !defined __clang__
|
||||
#error insufficient compiler
|
||||
#endif]])],
|
||||
[libc_cv_compiler_ok=yes],
|
||||
|
@ -1486,7 +1486,7 @@ cat > conftest.c <<\EOF
|
|||
extern char *strstr (const char *, const char *) __asm ("my_strstr");
|
||||
char *foo (const char *a, const char *b)
|
||||
{
|
||||
return __builtin_strstr (a, b);
|
||||
return strstr (a, b);
|
||||
}
|
||||
EOF
|
||||
dnl
|
||||
|
|
Loading…
Reference in New Issue