Gentoo Archives: gentoo-commits

From: "Luca Barbato (lu_zero)" <lu_zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in src/patchsets/gcc/4.5.0/gentoo: 94_all_gcc-4.3.3-pch-nostdinc-tr1.patch 94_all_gcc-4.5-pch-nostdinc.patch README.history
Date: Tue, 27 Jul 2010 10:43:06
Message-Id: 20100727103504.DA92C2CF4A@corvid.gentoo.org
1 lu_zero 10/07/27 10:35:04
2
3 Modified: README.history
4 Added: 94_all_gcc-4.5-pch-nostdinc.patch
5 Removed: 94_all_gcc-4.3.3-pch-nostdinc-tr1.patch
6 Log:
7 Fix properly precompiled headers generation
8
9 Revision Changes Path
10 1.11 src/patchsets/gcc/4.5.0/gentoo/README.history
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.0/gentoo/README.history?rev=1.11&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.0/gentoo/README.history?rev=1.11&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.0/gentoo/README.history?r1=1.10&r2=1.11
15
16 Index: README.history
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/4.5.0/gentoo/README.history,v
19 retrieving revision 1.10
20 retrieving revision 1.11
21 diff -u -r1.10 -r1.11
22 --- README.history 26 Jul 2010 04:43:19 -0000 1.10
23 +++ README.history 27 Jul 2010 10:35:04 -0000 1.11
24 @@ -1,3 +1,6 @@
25 + + 94_all_gcc-4.5-pch-nostdinc.patch
26 + - 94_all_gcc-4.3.3-pch-nostdinc-tr1.patch
27 +
28 1.4 25.07.2010
29 U 75_all_arm-pr43698.patch
30 + 93_all_gcc-4.5-cloog-dl.patch
31
32
33
34 1.1 src/patchsets/gcc/4.5.0/gentoo/94_all_gcc-4.5-pch-nostdinc.patch
35
36 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.0/gentoo/94_all_gcc-4.5-pch-nostdinc.patch?rev=1.1&view=markup
37 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.0/gentoo/94_all_gcc-4.5-pch-nostdinc.patch?rev=1.1&content-type=text/plain
38
39 Index: 94_all_gcc-4.5-pch-nostdinc.patch
40 ===================================================================
41 Make precompiled headers cross buildable.
42
43 http://bugs.gentoo.org/show_bug.cgi?id=262912
44
45 diff -urN gcc-4.5.0.orig//libstdc++-v3/include/Makefile.am gcc-4.5.0/libstdc++-v3/include/Makefile.am
46 --- gcc-4.5.0.orig//libstdc++-v3/include/Makefile.am 2010-07-27 11:22:34.000000000 +0200
47 +++ gcc-4.5.0/libstdc++-v3/include/Makefile.am 2010-07-27 11:21:29.000000000 +0200
48 @@ -893,7 +893,7 @@
49 ${pch1_output_builddir} ${pch2_output_builddir} ${pch3_output_builddir}
50 pch_output_anchors = \
51 ${pch1_output_anchor} ${pch2_output_anchor} ${pch3_output_anchor}
52 -PCHFLAGS=-x c++-header $(CXXFLAGS)
53 +PCHFLAGS=-x c++-header $(CXXFLAGS) -nostdinc++
54 if GLIBCXX_BUILD_PCH
55 pch_build = ${pch_output}
56 else
57 diff -urN gcc-4.5.0.orig//libstdc++-v3/include/Makefile.in gcc-4.5.0/libstdc++-v3/include/Makefile.in
58 --- gcc-4.5.0.orig//libstdc++-v3/include/Makefile.in 2010-04-02 20:18:06.000000000 +0200
59 +++ gcc-4.5.0/libstdc++-v3/include/Makefile.in 2010-07-27 11:21:47.000000000 +0200
60 @@ -1119,7 +1119,7 @@
61 pch_output_anchors = \
62 ${pch1_output_anchor} ${pch2_output_anchor} ${pch3_output_anchor}
63
64 -PCHFLAGS = -x c++-header $(CXXFLAGS)
65 +PCHFLAGS = -x c++-header $(CXXFLAGS) -nostdinc++
66 @GLIBCXX_BUILD_PCH_FALSE@pch_build =
67 @GLIBCXX_BUILD_PCH_TRUE@pch_build = ${pch_output}