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>
|
||||
|
||||
* 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
|
||||
# the implicit -lang-asm and breaks cpp behavior for .S files--notably
|
||||
# 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) \
|
||||
$(CPPFLAGS-$(suffix $@)) \
|
||||
$(foreach lib,$(libof-$(basename $(@F))) \
|
||||
|
@ -106,6 +106,7 @@ CC = @CC@
|
||||
CXX = @CXX@
|
||||
BUILD_CC = @BUILD_CC@
|
||||
CFLAGS = @CFLAGS@
|
||||
CPPFLAGS-config = @CPPFLAGS@
|
||||
ASFLAGS-config = @ASFLAGS_config@
|
||||
AR = @AR@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
|
Loading…
Reference in New Issue
Block a user