diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/gcc/gcc-4.3.0.inc | 1 | ||||
-rw-r--r-- | packages/gcc/gcc-4.3.0/gcc-arm-frename-registers.patch | 25 | ||||
-rw-r--r-- | packages/gcc/gcc-cross_4.3.0.bb | 2 | ||||
-rw-r--r-- | packages/linux/linux-omap1-2.6.24-omap1/timespec_add_ns_avoid_udivdi3.patch | 20 | ||||
-rw-r--r-- | packages/linux/linux-omap1_2.6.24-omap1.bb | 1 |
5 files changed, 48 insertions, 1 deletions
diff --git a/packages/gcc/gcc-4.3.0.inc b/packages/gcc/gcc-4.3.0.inc index 96b7d02501..b5ab13f1b4 100644 --- a/packages/gcc/gcc-4.3.0.inc +++ b/packages/gcc/gcc-4.3.0.inc @@ -59,6 +59,7 @@ SRC_URI = "ftp://ftp.gnu.org/pub/gnu/gcc/gcc-${PV}/gcc-${PV}.tar.bz2 \ # file://pr34130.patch;patch=1 \ # file://fortran-static-linking.patch;patch=1 \ # file://intermask-bigendian.patch;patch=1 \ + file://gcc-arm-frename-registers.patch;patch=1 \ " SRC_URI_append_sh3 = " file://sh3-installfix-fixheaders.patch;patch=1 " diff --git a/packages/gcc/gcc-4.3.0/gcc-arm-frename-registers.patch b/packages/gcc/gcc-4.3.0/gcc-arm-frename-registers.patch new file mode 100644 index 0000000000..280b90358e --- /dev/null +++ b/packages/gcc/gcc-4.3.0/gcc-arm-frename-registers.patch @@ -0,0 +1,25 @@ +http://gcc.gnu.org/bugzilla/show_bug.cgi?id=35964 +Index: gcc-4.3.0/gcc/regrename.c +=================================================================== +--- gcc-4.3.0.orig/gcc/regrename.c 2008-05-28 08:31:15.000000000 -0700 ++++ gcc-4.3.0/gcc/regrename.c 2008-05-28 08:34:00.000000000 -0700 +@@ -782,6 +782,10 @@ + || (predicated && recog_data.operand_type[i] == OP_OUT)) + recog_data.operand_type[i] = OP_INOUT; + } ++ /* Unshare dup_loc RTL */ ++ for (i = 0; i < recog_data.n_dups; i++) ++ *recog_data.dup_loc[i] = copy_rtx(*recog_data.dup_loc[i]); ++ + + /* Step 1: Close chains for which we have overlapping reads. */ + for (i = 0; i < n_ops; i++) +@@ -813,7 +817,7 @@ + OP_IN, 0); + + for (i = 0; i < recog_data.n_dups; i++) +- *recog_data.dup_loc[i] = copy_rtx (old_dups[i]); ++ *recog_data.dup_loc[i] = old_dups[i]; + for (i = 0; i < n_ops; i++) + *recog_data.operand_loc[i] = old_operands[i]; + if (recog_data.n_dups) diff --git a/packages/gcc/gcc-cross_4.3.0.bb b/packages/gcc/gcc-cross_4.3.0.bb index 9821d3cd83..11e04594fc 100644 --- a/packages/gcc/gcc-cross_4.3.0.bb +++ b/packages/gcc/gcc-cross_4.3.0.bb @@ -1,4 +1,4 @@ -PR = "r5" +PR = "r6" require gcc-${PV}.inc require gcc-cross4.inc diff --git a/packages/linux/linux-omap1-2.6.24-omap1/timespec_add_ns_avoid_udivdi3.patch b/packages/linux/linux-omap1-2.6.24-omap1/timespec_add_ns_avoid_udivdi3.patch new file mode 100644 index 0000000000..4aba897b06 --- /dev/null +++ b/packages/linux/linux-omap1-2.6.24-omap1/timespec_add_ns_avoid_udivdi3.patch @@ -0,0 +1,20 @@ +Backport of this patch here + +http://www.mail-archive.com/linux-kernel@vger.kernel.org/msg270684.html + +Needed for 2.6.24 to compile with gcc 4.3 +Index: linux-2.6.24/include/linux/time.h +=================================================================== +--- linux-2.6.24.orig/include/linux/time.h 2008-05-28 15:39:46.000000000 -0700 ++++ linux-2.6.24/include/linux/time.h 2008-05-28 15:40:48.000000000 -0700 +@@ -173,6 +173,10 @@ + { + ns += a->tv_nsec; + while(unlikely(ns >= NSEC_PER_SEC)) { ++ /* The following asm() prevents the compiler from ++ * optimising this loop into a modulo operation. */ ++ asm("" : "+r"(ns)); ++ + ns -= NSEC_PER_SEC; + a->tv_sec++; + } diff --git a/packages/linux/linux-omap1_2.6.24-omap1.bb b/packages/linux/linux-omap1_2.6.24-omap1.bb index f5ed1a43f9..2f2076b923 100644 --- a/packages/linux/linux-omap1_2.6.24-omap1.bb +++ b/packages/linux/linux-omap1_2.6.24-omap1.bb @@ -5,6 +5,7 @@ COMPATIBLE_MACHINE = "omap5912osk" SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-2.6.24.tar.bz2 \ http://www.muru.com/linux/omap/patches/patch-2.6.24-omap1.bz2;patch=1 \ file://binutils-buildid-arm.patch;patch=1 \ + file://timespec_add_ns_avoid_udivdi3.patch;patch=1 \ file://defconfig" S = "${WORKDIR}/linux-2.6.24" |