mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-25 22:40:05 +00:00
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.
This commit is contained in:
parent
fcaaca412f
commit
8aa48656bb
@ -1,3 +1,7 @@
|
|||||||
|
2017-08-24 Szabolcs Nagy <szabolcs.nagy@arm.com>
|
||||||
|
|
||||||
|
* sysdeps/ieee754/dbl-64/Makefile: Don't override CFLAGS.
|
||||||
|
|
||||||
2017-08-23 H.J. Lu <hongjiu.lu@intel.com>
|
2017-08-23 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* sysdeps/x86_64/fpu/libm-test-ulps: Regenerated.
|
* sysdeps/x86_64/fpu/libm-test-ulps: Regenerated.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
ifeq ($(subdir),math)
|
ifeq ($(subdir),math)
|
||||||
# branred depends on precise IEEE double rounding
|
# branred depends on precise IEEE double rounding
|
||||||
CFLAGS-branred.c = $(config-cflags-nofma)
|
CFLAGS-branred.c += $(config-cflags-nofma)
|
||||||
CFLAGS-e_sqrt.c = $(config-cflags-nofma)
|
CFLAGS-e_sqrt.c += $(config-cflags-nofma)
|
||||||
CFLAGS-e_pow.c = $(config-cflags-nofma)
|
CFLAGS-e_pow.c += $(config-cflags-nofma)
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user