diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2010-11-02 22:03:58 +0100 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2010-11-02 22:12:02 +0100 |
commit | be10a6b1321f250b1034c7d9d0a8ef18b296eef1 (patch) | |
tree | 9249025cbfbfbee4cc430d62b27f75301dd4dfde /recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99344.patch | |
parent | 93b28937ac67ba46d65f55637e42552e224aa7e2 (diff) | |
download | meta-openembedded-be10a6b1321f250b1034c7d9d0a8ef18b296eef1.tar.gz |
angstrom-layers: meta-openembedded: replace poky gcc 4.5 sources with OE ones
This needs further investigation, but for now we can get the tested sources into the poky gcc harness
Signed-off-by: Koen Kooi <k-kooi@ti.com>
Diffstat (limited to 'recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99344.patch')
-rw-r--r-- | recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99344.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99344.patch b/recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99344.patch new file mode 100644 index 0000000000..d03ee9406e --- /dev/null +++ b/recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99344.patch | |||
@@ -0,0 +1,30 @@ | |||
1 | 2010-02-03 Daniel Gutson <dgutson@codesourcery.com> | ||
2 | |||
3 | Issue #6472 | ||
4 | |||
5 | gcc/ | ||
6 | * config/arm/lib1funcs.asm (__ARM_ARCH__): __ARM_ARCH_7EM__ | ||
7 | added to the preprocessor condition. | ||
8 | |||
9 | 2010-07-26 Julian Brown <julian@codesourcery.com> | ||
10 | |||
11 | Backport from FSF mainline: | ||
12 | |||
13 | gcc/ | ||
14 | * config/arm/thumb2.md (*thumb2_addsi3_compare0): New. | ||
15 | (*thumb2_addsi3_compare0_scratch): New. | ||
16 | |||
17 | === modified file 'gcc/config/arm/lib1funcs.asm' | ||
18 | --- old/gcc/config/arm/lib1funcs.asm 2010-08-05 15:20:54 +0000 | ||
19 | +++ new/gcc/config/arm/lib1funcs.asm 2010-08-12 16:49:44 +0000 | ||
20 | @@ -104,7 +104,8 @@ | ||
21 | #endif | ||
22 | |||
23 | #if defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__) \ | ||
24 | - || defined(__ARM_ARCH_7R__) || defined(__ARM_ARCH_7M__) | ||
25 | + || defined(__ARM_ARCH_7R__) || defined(__ARM_ARCH_7M__) \ | ||
26 | + || defined(__ARM_ARCH_7EM__) | ||
27 | # define __ARM_ARCH__ 7 | ||
28 | #endif | ||
29 | |||
30 | |||