diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-03-11 10:40:44 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-11-01 09:51:06 -0300 |
commit | 8d98c7c00f3f06545de9e5ce5cf778d2ab2450a4 (patch) | |
tree | 9fe2d950df8424164112464dfbb5ec906b279757 /stdlib | |
parent | 5c5a8b99cf96b71940e36a9db66d3a61bc315016 (diff) | |
download | glibc-8d98c7c00f3f06545de9e5ce5cf778d2ab2450a4.tar.gz glibc-8d98c7c00f3f06545de9e5ce5cf778d2ab2450a4.tar.xz glibc-8d98c7c00f3f06545de9e5ce5cf778d2ab2450a4.zip |
configure: Use -Wno-ignored-attributes if compiler warns about multiple aliases
clang emits an warning when a double alias redirection is used, to warn the the original symbol will be used even when weak definition is overridden. However, this is a common pattern for weak_alias, where multiple alias are set to same symbol. Reviewed-by: Fangrui Song <maskray@google.com>
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/stdlib/Makefile b/stdlib/Makefile index f7b25c1981..417d525d8e 100644 --- a/stdlib/Makefile +++ b/stdlib/Makefile @@ -375,6 +375,18 @@ CFLAGS-strfromd.c += $(libio-mtsafe) CFLAGS-strfromf.c += $(libio-mtsafe) CFLAGS-strfroml.c += $(libio-mtsafe) +CFLAGS-strtol.c += $(config-cflags-wno-ignored-attributes) +CFLAGS-strtoul.c += $(config-cflags-wno-ignored-attributes) +CFLAGS-strtoll.c += $(config-cflags-wno-ignored-attributes) +CFLAGS-strtoull.c += $(config-cflags-wno-ignored-attributes) +CFLAGS-strtof.c += $(config-cflags-wno-ignored-attributes) +CFLAGS-strtof_l.c += $(config-cflags-wno-ignored-attributes) +CFLAGS-strtod.c += $(config-cflags-wno-ignored-attributes) +CFLAGS-strtod_l.c += $(config-cflags-wno-ignored-attributes) +CFLAGS-strtold.c += $(config-cflags-wno-ignored-attributes) +CFLAGS-strtold_l.c += $(config-cflags-wno-ignored-attributes) +CFLAGS-secure-getenv.c += $(config-cflags-wno-ignored-attributes) + CFLAGS-tst-bsearch.c += $(stack-align-test-flags) CFLAGS-tst-qsort.c += $(stack-align-test-flags) CFLAGS-tst-makecontext.c += -funwind-tables |