Skip to content

Commit

Permalink
Use CPPFLAGS from configure.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Frysinger authored and Roland McGrath committed Sep 19, 2011
1 parent 88738eb commit 1c3b002
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Makeconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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))) \
Expand Down
1 change: 1 addition & 0 deletions config.make.in
Original file line number Diff line number Diff line change
Expand Up @@ -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@
Expand Down

0 comments on commit 1c3b002

Please sign in to comment.