mirror of git://sourceware.org/git/glibc.git
Fix -Wno-ignored-attributes configure check
This commit is contained in:
parent
aeb757b00d
commit
df1aef032e
|
@ -7491,8 +7491,8 @@ conftest_code="
|
|||
void __foo (void)
|
||||
{
|
||||
}
|
||||
extern __typeof (__foo) foo __attribute__ ((weak, alias ("__foo")));
|
||||
extern __typeof (__foo) bar __attribute__ ((weak, alias ("foo")));
|
||||
extern __typeof (__foo) foo __attribute__ ((weak, alias (\"__foo\")));
|
||||
extern __typeof (__foo) bar __attribute__ ((weak, alias (\"foo\")));
|
||||
"
|
||||
|
||||
cat > conftest.c <<EOF
|
||||
|
|
|
@ -1408,8 +1408,8 @@ conftest_code="
|
|||
void __foo (void)
|
||||
{
|
||||
}
|
||||
extern __typeof (__foo) foo __attribute__ ((weak, alias ("__foo")));
|
||||
extern __typeof (__foo) bar __attribute__ ((weak, alias ("foo")));
|
||||
extern __typeof (__foo) foo __attribute__ ((weak, alias (\"__foo\")));
|
||||
extern __typeof (__foo) bar __attribute__ ((weak, alias (\"foo\")));
|
||||
"
|
||||
LIBC_TRY_CC_AND_TEST_CC_COMMAND([if -Wno-ignored-attributes is required for aliases],
|
||||
[$conftest_code],
|
||||
|
|
Loading…
Reference in New Issue