diff options
author | Roland McGrath <roland@gnu.org> | 2005-12-28 06:53:43 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-12-28 06:53:43 +0000 |
commit | ef226fecbeae89451529fc9094b4a2c2387f6884 (patch) | |
tree | 7025a6763491faddc4e48fbc3faa25c7f519e5ba /Makeconfig | |
parent | db169ed561acef18093cc6739fb159d6274bf5a5 (diff) | |
download | glibc-ef226fecbeae89451529fc9094b4a2c2387f6884.tar.gz |
* config.make.in (c++-sysincludes): New substituted variable.
* configure.in (CXX_SYSINCLUDES): New substituted variable.
* configure: Regenerated.
* Makeconfig (CXXFLAGS): Prepend $(c++-sysincludes) here.
Diffstat (limited to 'Makeconfig')
-rw-r--r-- | Makeconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makeconfig b/Makeconfig index f32a19eab6..67f85c0905 100644 --- a/Makeconfig +++ b/Makeconfig @@ -651,7 +651,8 @@ override CFLAGS = -std=gnu99 \ $(filter-out %frame-pointer,$(+cflags)) $(+gccwarn-c) \ $(sysdep-CFLAGS) $(CFLAGS-$(suffix $@)) $(CFLAGS-$(<F)) \ $(CFLAGS-$(@F)) -override CXXFLAGS = $(filter-out %frame-pointer,$(+cflags)) $(sysdep-CFLAGS) \ +override CXXFLAGS = $(c++-sysincludes) \ + $(filter-out %frame-pointer,$(+cflags)) $(sysdep-CFLAGS) \ $(CFLAGS-$(suffix $@)) $(CFLAGS-$(<F)) $(CFLAGS-$(@F)) # If everything is compiled with -fPIC (implicitly) we must tell this by |