diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2012-03-23 08:22:26 +0100 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-03-24 07:35:22 +0100 |
commit | ff0f815593c33f1a82ba4d1cbe41e6b987da1f47 (patch) | |
tree | 22b43fa2e84f25cc948df79f9e9de07e8ec57418 /toolchain-layer/recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99344.patch | |
parent | 6b22bd198a87b5f113971d8fcd0e7211cd143c7d (diff) | |
download | meta-openembedded-ff0f815593c33f1a82ba4d1cbe41e6b987da1f47.tar.gz |
toolchain-layer: move binutils and gcc from meta-oe into here
Acked-by: Martin Jansa <Martin.Jansa@gmail.com>
Acked-by: Eric Bénard <eric@eukrea.com>
Acked-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'toolchain-layer/recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99344.patch')
-rw-r--r-- | toolchain-layer/recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99344.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/toolchain-layer/recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99344.patch b/toolchain-layer/recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99344.patch new file mode 100644 index 0000000000..d03ee9406e --- /dev/null +++ b/toolchain-layer/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 | |||