mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 20:40:05 +00:00
8d98c7c00f
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>
9 lines
274 B
Makefile
9 lines
274 B
Makefile
ifeq ($(subdir),misc)
|
|
tests += tst-writev
|
|
endif
|
|
|
|
# strtol is aliased to stroll
|
|
CFLAGS-strtol.c += -fno-builtin-strtoll $(config-cflags-wno-ignored-attributes)
|
|
# strtoul is aliased to strtoull
|
|
CFLAGS-strtoul.c += -fno-builtin-strtoull $(config-cflags-wno-ignored-attributes)
|