diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-02-23 19:14:58 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-30 11:37:24 +0100 |
commit | aafa59064b9409e3ce06bf334ca250fc2c483acb (patch) | |
tree | 1bd0f82a6812d154785f849c511771852ab1bf3a /meta/recipes-devtools/gcc/gcc-4.7/304-index_macro.patch | |
parent | 173f424808b935f5db99905bf5af307990d87107 (diff) | |
download | poky-aafa59064b9409e3ce06bf334ca250fc2c483acb.tar.gz |
gcc-4.7: Add recipes
Add new recipes for gcc-4_7-branch right now gcc 4.7.0
is latest release from this branch
(From OE-Core rev: 3f8fee75e598ad0994acc5da0a612e6eca4f35f6)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-4.7/304-index_macro.patch')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-4.7/304-index_macro.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-4.7/304-index_macro.patch b/meta/recipes-devtools/gcc/gcc-4.7/304-index_macro.patch new file mode 100644 index 0000000000..f103765233 --- /dev/null +++ b/meta/recipes-devtools/gcc/gcc-4.7/304-index_macro.patch | |||
@@ -0,0 +1,30 @@ | |||
1 | Upstream-Status: Pending | ||
2 | |||
3 | Index: gcc-4.6.0/libstdc++-v3/include/ext/rope | ||
4 | =================================================================== | ||
5 | --- gcc-4.6.0.orig/libstdc++-v3/include/ext/rope | ||
6 | +++ gcc-4.6.0/libstdc++-v3/include/ext/rope | ||
7 | @@ -54,6 +54,9 @@ | ||
8 | #include <bits/gthr.h> | ||
9 | #include <tr1/functional> | ||
10 | |||
11 | +/* cope w/ index defined as macro, SuSv3 proposal */ | ||
12 | +#undef index | ||
13 | + | ||
14 | # ifdef __GC | ||
15 | # define __GC_CONST const | ||
16 | # else | ||
17 | Index: gcc-4.6.0/libstdc++-v3/include/ext/ropeimpl.h | ||
18 | =================================================================== | ||
19 | --- gcc-4.6.0.orig/libstdc++-v3/include/ext/ropeimpl.h | ||
20 | +++ gcc-4.6.0/libstdc++-v3/include/ext/ropeimpl.h | ||
21 | @@ -49,6 +49,9 @@ | ||
22 | #include <ext/memory> // For uninitialized_copy_n | ||
23 | #include <ext/numeric> // For power | ||
24 | |||
25 | +/* cope w/ index defined as macro, SuSv3 proposal */ | ||
26 | +#undef index | ||
27 | + | ||
28 | namespace __gnu_cxx _GLIBCXX_VISIBILITY(default) | ||
29 | { | ||
30 | _GLIBCXX_BEGIN_NAMESPACE_VERSION | ||