aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/ieee754
diff options
context:
space:
mode:
authorSzabolcs Nagy <szabolcs.nagy@arm.com>2017-08-24 15:56:11 +0100
committerSzabolcs Nagy <szabolcs.nagy@arm.com>2017-08-24 15:56:11 +0100
commit8aa48656bb00074f3f422d805f15d07d786970ba (patch)
tree97ed08fe35775fc71576115374a2fb82dd5f2267 /sysdeps/ieee754
parentfcaaca412fecb6097c902acd1260f585819b8b7e (diff)
downloadglibc-8aa48656bb00074f3f422d805f15d07d786970ba.zip
glibc-8aa48656bb00074f3f422d805f15d07d786970ba.tar.gz
glibc-8aa48656bb00074f3f422d805f15d07d786970ba.tar.bz2
Fix CFLAGS override in sysdeps/ieee754/dbl-64
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.
Diffstat (limited to 'sysdeps/ieee754')
-rw-r--r--sysdeps/ieee754/dbl-64/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/ieee754/dbl-64/Makefile b/sysdeps/ieee754/dbl-64/Makefile
index 5557c75..c965982 100644
--- a/sysdeps/ieee754/dbl-64/Makefile
+++ b/sysdeps/ieee754/dbl-64/Makefile
@@ -1,6 +1,6 @@
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)
+CFLAGS-branred.c += $(config-cflags-nofma)
+CFLAGS-e_sqrt.c += $(config-cflags-nofma)
+CFLAGS-e_pow.c += $(config-cflags-nofma)
endif