Fix -Wno-ignored-attributes configure check

This commit is contained in:
Adhemerval Zanella 2025-03-18 13:51:43 -03:00
parent aeb757b00d
commit df1aef032e
2 changed files with 4 additions and 4 deletions

4
configure vendored
View File

@ -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

View File

@ -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],