mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-08 18:30:18 +00:00
Use CPPFLAGS from configure.
This commit is contained in:
parent
88738eb6e9
commit
1c3b002bbb
@ -1,3 +1,8 @@
|
|||||||
|
2011-09-19 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* Makeconfig (CPPFLAGS): Prepend $(CPPFLAGS-config).
|
||||||
|
* config.make.in (CPPFLAGS-config): New substituted variable.
|
||||||
|
|
||||||
2011-09-15 Ulrich Drepper <drepper@gmail.com>
|
2011-09-15 Ulrich Drepper <drepper@gmail.com>
|
||||||
|
|
||||||
* sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: New file.
|
* sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: New file.
|
||||||
|
@ -703,7 +703,7 @@ libio-include = -I$(..)libio
|
|||||||
# Note that we can't use -std=* in CPPFLAGS, because it overrides
|
# Note that we can't use -std=* in CPPFLAGS, because it overrides
|
||||||
# the implicit -lang-asm and breaks cpp behavior for .S files--notably
|
# the implicit -lang-asm and breaks cpp behavior for .S files--notably
|
||||||
# it causes cpp to stop predefining __ASSEMBLER__.
|
# it causes cpp to stop predefining __ASSEMBLER__.
|
||||||
CPPFLAGS = $($(subdir)-CPPFLAGS) $(+includes) $(defines) \
|
CPPFLAGS = $(CPPFLAGS-config) $($(subdir)-CPPFLAGS) $(+includes) $(defines) \
|
||||||
-include $(..)include/libc-symbols.h $(sysdep-CPPFLAGS) \
|
-include $(..)include/libc-symbols.h $(sysdep-CPPFLAGS) \
|
||||||
$(CPPFLAGS-$(suffix $@)) \
|
$(CPPFLAGS-$(suffix $@)) \
|
||||||
$(foreach lib,$(libof-$(basename $(@F))) \
|
$(foreach lib,$(libof-$(basename $(@F))) \
|
||||||
|
@ -106,6 +106,7 @@ CC = @CC@
|
|||||||
CXX = @CXX@
|
CXX = @CXX@
|
||||||
BUILD_CC = @BUILD_CC@
|
BUILD_CC = @BUILD_CC@
|
||||||
CFLAGS = @CFLAGS@
|
CFLAGS = @CFLAGS@
|
||||||
|
CPPFLAGS-config = @CPPFLAGS@
|
||||||
ASFLAGS-config = @ASFLAGS_config@
|
ASFLAGS-config = @ASFLAGS_config@
|
||||||
AR = @AR@
|
AR = @AR@
|
||||||
MAKEINFO = @MAKEINFO@
|
MAKEINFO = @MAKEINFO@
|
||||||
|
Loading…
Reference in New Issue
Block a user