mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-23 13:30:06 +00:00
8aa48656bb
Use += instead of = to avoid overriding target specific CFLAGS settings. Ideally the settings in target Makefiles would have precedence, but the Makefile inclusion order does not allow that, with this fix at least the target settings are not dropped.
7 lines
204 B
Makefile
7 lines
204 B
Makefile
ifeq ($(subdir),math)
|
|
# branred depends on precise IEEE double rounding
|
|
CFLAGS-branred.c += $(config-cflags-nofma)
|
|
CFLAGS-e_sqrt.c += $(config-cflags-nofma)
|
|
CFLAGS-e_pow.c += $(config-cflags-nofma)
|
|
endif
|