Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in src/patchsets/gcc/4.3.2/gentoo: 47_all_arm-unbreak-armv4t.patch
Date: Sat, 10 Jan 2009 11:22:38
Message-Id: E1LLbvI-0007f2-Lf@stork.gentoo.org
1 vapier 09/01/10 11:22:36
2
3 Added: 47_all_arm-unbreak-armv4t.patch
4 Log:
5 add fix for armv4t eabi #245315
6
7 Revision Changes Path
8 1.1 src/patchsets/gcc/4.3.2/gentoo/47_all_arm-unbreak-armv4t.patch
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/gcc/4.3.2/gentoo/47_all_arm-unbreak-armv4t.patch?rev=1.1&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/gcc/4.3.2/gentoo/47_all_arm-unbreak-armv4t.patch?rev=1.1&content-type=text/plain
12
13 Index: 47_all_arm-unbreak-armv4t.patch
14 ===================================================================
15 http://sourceware.org/ml/crossgcc/2008-05/msg00009.html
16
17 gcc defaults to armv5t for all targets even armv4t
18
19 --- gcc/config/arm/linux-eabi.h
20 +++ gcc/config/arm/linux-eabi.h
21 @@ -45,7 +45,7 @@
22 The ARM10TDMI core is the default for armv5t, so set
23 SUBTARGET_CPU_DEFAULT to achieve this. */
24 #undef SUBTARGET_CPU_DEFAULT
25 -#define SUBTARGET_CPU_DEFAULT TARGET_CPU_arm10tdmi
26 +#define SUBTARGET_CPU_DEFAULT TARGET_CPU_arm9tdmi
27
28 /* TARGET_BIG_ENDIAN_DEFAULT is set in
29 config.gcc for big endian configurations. */