diff options
author | Paolo Carlini <paolo.carlini@oracle.com> | 2010-09-02 14:13:00 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2010-09-02 14:13:00 +0000 |
commit | 6f0546801a0a1520550375aada66bc890f908ef3 (patch) | |
tree | b3db71e6553a5eb1130085ec873cf96a21dc302e /libstdc++-v3 | |
parent | bc98ed601606493c5549b7f0261e124b1e1471ad (diff) | |
download | gcc-6f0546801a0a1520550375aada66bc890f908ef3.zip gcc-6f0546801a0a1520550375aada66bc890f908ef3.tar.gz gcc-6f0546801a0a1520550375aada66bc890f908ef3.tar.bz2 |
re PR libstdc++/40974 (cannot build gcc-4.4.1: fenv_t has not been declared)
2010-09-02 Paolo Carlini <paolo.carlini@oracle.com>
PR libstdc++/40974
* include/Makefile.am: Add -nostdinc++ to PCHFLAGS.
* include/Makefile.in: Regenerate.
From-SVN: r163777
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/include/Makefile.am | 2 | ||||
-rw-r--r-- | libstdc++-v3/include/Makefile.in | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index bdf1d3a..79cfc04 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2010-09-02 Paolo Carlini <paolo.carlini@oracle.com> + + PR libstdc++/40974 + * include/Makefile.am: Add -nostdinc++ to PCHFLAGS. + * include/Makefile.in: Regenerate. + 2010-09-01 Christopher Yeleighton <giecrilj@stegny.2a.pl> Paolo Carlini <paolo.carlini@oracle.com> diff --git a/libstdc++-v3/include/Makefile.am b/libstdc++-v3/include/Makefile.am index 6a371a4..3b9c551 100644 --- a/libstdc++-v3/include/Makefile.am +++ b/libstdc++-v3/include/Makefile.am @@ -904,7 +904,7 @@ pch_output_dirs = \ ${pch1_output_builddir} ${pch2_output_builddir} ${pch3_output_builddir} pch_output_anchors = \ ${pch1_output_anchor} ${pch2_output_anchor} ${pch3_output_anchor} -PCHFLAGS=-x c++-header $(CXXFLAGS) +PCHFLAGS=-x c++-header -nostdinc++ $(CXXFLAGS) if GLIBCXX_BUILD_PCH pch_build = ${pch_output} else diff --git a/libstdc++-v3/include/Makefile.in b/libstdc++-v3/include/Makefile.in index 1aa641a..d32efa8 100644 --- a/libstdc++-v3/include/Makefile.in +++ b/libstdc++-v3/include/Makefile.in @@ -1130,7 +1130,7 @@ pch_output_dirs = \ pch_output_anchors = \ ${pch1_output_anchor} ${pch2_output_anchor} ${pch3_output_anchor} -PCHFLAGS = -x c++-header $(CXXFLAGS) +PCHFLAGS = -x c++-header -nostdinc++ $(CXXFLAGS) @GLIBCXX_BUILD_PCH_FALSE@pch_build = @GLIBCXX_BUILD_PCH_TRUE@pch_build = ${pch_output} |