From: Nitin A Kamble Date: Mon, 8 Nov 2010 16:30:41 +0000 (-0800) Subject: gcc: upgrade from 4.5.0 to 4.5.1 X-Git-Tag: 2011-1~3978 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=b1dd356f5eab11fa6fc18013189e51c13fdd763b;p=openembedded-core.git gcc: upgrade from 4.5.0 to 4.5.1 Removed these patches which are not needed anymore. gcc-4.5.0_to_svn_162697.patch.bz2 : All the commits in this patch is part of the 4.5.1 branch. So moving to 4.5.1 makes this patch obsolete gcc_revert_base_version_to_4.5.0.patch: moving to 4.5.1 removes need of this patch gcc-pr43698-arm-rev-instr.patch: upstream has this fix. Signed-off-by: Nitin A Kamble --- diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/gcc-4.5.0_to_svn_162697.patch.bz2 b/meta/recipes-devtools/gcc/gcc-4.5.0/gcc-4.5.0_to_svn_162697.patch.bz2 deleted file mode 100644 index d37a2c0329..0000000000 Binary files a/meta/recipes-devtools/gcc/gcc-4.5.0/gcc-4.5.0_to_svn_162697.patch.bz2 and /dev/null differ diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/gcc-pr43698-arm-rev-instr.patch b/meta/recipes-devtools/gcc/gcc-4.5.0/gcc-pr43698-arm-rev-instr.patch deleted file mode 100644 index 61c883e1ff..0000000000 --- a/meta/recipes-devtools/gcc/gcc-4.5.0/gcc-pr43698-arm-rev-instr.patch +++ /dev/null @@ -1,117 +0,0 @@ -backport http://gcc.gnu.org/viewcvs?view=revision&revision=162404 -from trunk - -Which fixes http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43698 - -2010-07-22 Ramana Radhakrishnan - - PR target/43698 - * config/arm/arm.md: Split arm_rev into *arm_rev - and *thumb1_rev. Set *arm_rev to be predicable. - -2010-07-22 Ramana Radhakrishnan - - PR target/43698 - * gcc.target/arm/pr43698.c: New test. - - -/scratch/oe/sysroots/i686-linux/usr/share/quilt/compat/date -Usage: date [OPTION]... [+FORMAT] -Display the current time in the given FORMAT. - - -d, --date=STRING display time described by STRING, not `now' - -f, --file=DATEFILE like --date once for each line of DATEFILE - -R, --rfc-822 output RFC-822 compliant date string - -u, --utc, --universal print or set Coordinated Universal Time - --help display this help and exit -date is /scratch/oe/sysroots/i686-linux/usr/share/quilt/compat/date -date is /scratch/oe/sysroots/i686-linux/usr/share/quilt/compat/date -date is /bin/date -date is /scratch/oe/sysroots/i686-linux/usr/share/quilt/compat/date -date is /scratch/oe/sysroots/i686-linux/usr/share/quilt/compat/date -date is /bin/date -date is /scratch/oe/sysroots/i686-linux/usr/share/quilt/compat/date -date is /scratch/oe/sysroots/i686-linux/usr/share/quilt/compat/date -date is /bin/date -date is /scratch/oe/sysroots/i686-linux/usr/share/quilt/compat/date -date is /scratch/oe/sysroots/i686-linux/usr/share/quilt/compat/date -date is /bin/date -date -Khem -Index: gcc-4.5/gcc/config/arm/arm.md -=================================================================== ---- gcc-4.5.orig/gcc/config/arm/arm.md 2010-07-20 20:31:25.000000000 -0700 -+++ gcc-4.5/gcc/config/arm/arm.md 2010-07-22 14:55:54.303169081 -0700 -@@ -11197,15 +11197,21 @@ - (set_attr "length" "4")] - ) - --(define_insn "arm_rev" -+(define_insn "*arm_rev" - [(set (match_operand:SI 0 "s_register_operand" "=r") - (bswap:SI (match_operand:SI 1 "s_register_operand" "r")))] -- "TARGET_EITHER && arm_arch6" -- "rev\t%0, %1" -- [(set (attr "length") -- (if_then_else (eq_attr "is_thumb" "yes") -- (const_int 2) -- (const_int 4)))] -+ "TARGET_32BIT && arm_arch6" -+ "rev%?\t%0, %1" -+ [(set_attr "predicable" "yes") -+ (set_attr "length" "4")] -+) -+ -+(define_insn "*thumb1_rev" -+ [(set (match_operand:SI 0 "s_register_operand" "=l") -+ (bswap:SI (match_operand:SI 1 "s_register_operand" "l")))] -+ "TARGET_THUMB1 && arm_arch6" -+ "rev\t%0, %1" -+ [(set_attr "length" "2")] - ) - - (define_expand "arm_legacy_rev" -Index: gcc-4.5/gcc/testsuite/gcc.target/arm/pr43698.c -=================================================================== ---- /dev/null 1970-01-01 00:00:00.000000000 +0000 -+++ gcc-4.5/gcc/testsuite/gcc.target/arm/pr43698.c 2010-07-22 14:56:35.406670213 -0700 -@@ -0,0 +1,39 @@ -+/* { dg-do run } */ -+/* { dg-options "-Os -march=armv7-a" } */ -+#include -+#include -+ -+ -+char do_reverse_endian = 0; -+ -+# define bswap_32(x) \ -+ ((((x) & 0xff000000) >> 24) | \ -+ (((x) & 0x00ff0000) >> 8) | \ -+ (((x) & 0x0000ff00) << 8) | \ -+ (((x) & 0x000000ff) << 24)) -+ -+#define EGET(X) \ -+ (__extension__ ({ \ -+ uint64_t __res; \ -+ if (!do_reverse_endian) { __res = (X); \ -+ } else if (sizeof(X) == 4) { __res = bswap_32((X)); \ -+ } \ -+ __res; \ -+ })) -+ -+void __attribute__((noinline)) X(char **phdr, char **data, int *phoff) -+{ -+ *phdr = *data + EGET(*phoff); -+} -+ -+int main() -+{ -+ char *phdr; -+ char *data = (char *)0x40164000; -+ int phoff = 0x34; -+ X(&phdr, &data, &phoff); -+ if (phdr != (char *)0x40164034) -+ abort (); -+ exit (0); -+} -+ diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/gcc_revert_base_version_to_4.5.0.patch b/meta/recipes-devtools/gcc/gcc-4.5.0/gcc_revert_base_version_to_4.5.0.patch deleted file mode 100644 index 5f134ef338..0000000000 --- a/meta/recipes-devtools/gcc/gcc-4.5.0/gcc_revert_base_version_to_4.5.0.patch +++ /dev/null @@ -1,9 +0,0 @@ -the svn patch changed the BASE-VER to 4.5.1, bring it back to 4.5.0 -- Nitin A Kamble nitin.a.kamble@intel.com -- 2010/07/20 - ---- gcc-4.5.0/gcc/BASE-VER 2010-07-20 00:57:37.000000000 -0700 -+++ gcc-4.5.0.new/gcc/BASE-VER 2010-07-20 01:06:17.000000000 -0700 -@@ -1 +1 @@ --4.5.1 -+4.5.0 diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0.inc b/meta/recipes-devtools/gcc/gcc-4.5.1.inc similarity index 95% rename from meta/recipes-devtools/gcc/gcc-4.5.0.inc rename to meta/recipes-devtools/gcc/gcc-4.5.1.inc index 9a0a5e5671..bb10fef494 100644 --- a/meta/recipes-devtools/gcc/gcc-4.5.0.inc +++ b/meta/recipes-devtools/gcc/gcc-4.5.1.inc @@ -5,8 +5,6 @@ DEPENDS =+ "mpfr gmp libmpc elfutils" NATIVEDEPS = "mpfr-native gmp-native gettext-native libmpc-native elfutils-native" SRC_URI = "${GNU_MIRROR}/gcc/gcc-${PV}/gcc-${PV}.tar.bz2 \ - file://gcc-4.5.0_to_svn_162697.patch.bz2 \ - file://gcc_revert_base_version_to_4.5.0.patch \ file://gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch \ file://100-uclibc-conf.patch \ file://gcc-uclibc-locale-ctype_touplow_t.patch \ @@ -14,7 +12,6 @@ SRC_URI = "${GNU_MIRROR}/gcc/gcc-${PV}/gcc-${PV}.tar.bz2 \ file://gcc-flags-for-build.patch \ file://libstdc++-emit-__cxa_end_cleanup-in-text.patch \ file://arm-bswapsi2.patch \ - file://gcc-pr43698-arm-rev-instr.patch \ \ file://fedora/gcc43-c++-builtin-redecl.patch;striplevel=0 \ file://fedora/gcc43-ia64-libunwind.patch;striplevel=0 \ diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/100-uclibc-conf.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/100-uclibc-conf.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/100-uclibc-conf.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/100-uclibc-conf.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/103-uclibc-conf-noupstream.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/103-uclibc-conf-noupstream.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/103-uclibc-conf-noupstream.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/103-uclibc-conf-noupstream.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/200-uclibc-locale.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/200-uclibc-locale.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/200-uclibc-locale.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/200-uclibc-locale.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/203-uclibc-locale-no__x.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/203-uclibc-locale-no__x.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/203-uclibc-locale-no__x.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/203-uclibc-locale-no__x.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/204-uclibc-locale-wchar_fix.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/204-uclibc-locale-wchar_fix.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/204-uclibc-locale-wchar_fix.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/204-uclibc-locale-wchar_fix.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/205-uclibc-locale-update.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/205-uclibc-locale-update.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/205-uclibc-locale-update.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/205-uclibc-locale-update.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/301-missing-execinfo_h.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/301-missing-execinfo_h.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/301-missing-execinfo_h.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/301-missing-execinfo_h.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/302-c99-snprintf.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/302-c99-snprintf.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/302-c99-snprintf.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/302-c99-snprintf.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/303-c99-complex-ugly-hack.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/303-c99-complex-ugly-hack.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/303-c99-complex-ugly-hack.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/303-c99-complex-ugly-hack.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/304-index_macro.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/304-index_macro.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/304-index_macro.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/304-index_macro.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/305-libmudflap-susv3-legacy.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/305-libmudflap-susv3-legacy.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/305-libmudflap-susv3-legacy.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/305-libmudflap-susv3-legacy.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/306-libstdc++-namespace.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/306-libstdc++-namespace.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/306-libstdc++-namespace.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/306-libstdc++-namespace.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/307-locale_facets.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/307-locale_facets.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/307-locale_facets.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/307-locale_facets.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/602-sdk-libstdc++-includes.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/602-sdk-libstdc++-includes.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/602-sdk-libstdc++-includes.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/602-sdk-libstdc++-includes.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/64bithack.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/64bithack.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/64bithack.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/64bithack.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/740-sh-pr24836.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/740-sh-pr24836.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/740-sh-pr24836.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/740-sh-pr24836.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/800-arm-bigendian.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/800-arm-bigendian.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/800-arm-bigendian.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/800-arm-bigendian.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/904-flatten-switch-stmt-00.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/904-flatten-switch-stmt-00.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/904-flatten-switch-stmt-00.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/904-flatten-switch-stmt-00.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/arm-bswapsi2.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/arm-bswapsi2.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/arm-bswapsi2.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/arm-bswapsi2.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/arm-nolibfloat.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/arm-nolibfloat.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/arm-nolibfloat.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/arm-nolibfloat.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/arm-softfloat.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/arm-softfloat.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/arm-softfloat.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/arm-softfloat.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/arm-unbreak-eabi-armv4t.dpatch b/meta/recipes-devtools/gcc/gcc-4.5.1/arm-unbreak-eabi-armv4t.dpatch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/arm-unbreak-eabi-armv4t.dpatch rename to meta/recipes-devtools/gcc/gcc-4.5.1/arm-unbreak-eabi-armv4t.dpatch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/cache-amnesia.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/cache-amnesia.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/cache-amnesia.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/cache-amnesia.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/disable_relax_pic_calls_flag.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/disable_relax_pic_calls_flag.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/disable_relax_pic_calls_flag.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/disable_relax_pic_calls_flag.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-c++-builtin-redecl.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-c++-builtin-redecl.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-c++-builtin-redecl.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-c++-builtin-redecl.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-cpp-pragma.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-cpp-pragma.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-cpp-pragma.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-cpp-pragma.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-i386-libgomp.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-i386-libgomp.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-i386-libgomp.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-i386-libgomp.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-ia64-libunwind.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-ia64-libunwind.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-ia64-libunwind.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-ia64-libunwind.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-java-debug-iface-type.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-java-debug-iface-type.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-java-debug-iface-type.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-java-debug-iface-type.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-java-nomulti.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-java-nomulti.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-java-nomulti.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-java-nomulti.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-libgomp-speedup.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-libgomp-speedup.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-libgomp-speedup.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-libgomp-speedup.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-ppc32-retaddr.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-ppc32-retaddr.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-ppc32-retaddr.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-ppc32-retaddr.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-pr27898.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-pr27898.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-pr27898.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-pr27898.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-pr32139.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-pr32139.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-pr32139.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-pr32139.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-pr33763.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-pr33763.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-pr33763.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-pr33763.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-rh251682.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-rh251682.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-rh251682.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-rh251682.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-rh330771.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-rh330771.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-rh330771.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-rh330771.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-rh341221.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-rh341221.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/fedora/gcc43-rh341221.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc43-rh341221.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/fortran-cross-compile-hack.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/fortran-cross-compile-hack.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/fortran-cross-compile-hack.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/fortran-cross-compile-hack.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/gcc-4.0.2-e300c2c3.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/gcc-4.0.2-e300c2c3.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/gcc-4.0.2-e300c2c3.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/gcc-4.0.2-e300c2c3.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/gcc-arm-frename-registers.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/gcc-arm-frename-registers.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/gcc-arm-frename-registers.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/gcc-arm-frename-registers.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/gcc-flags-for-build.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/gcc-flags-for-build.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/gcc-flags-for-build.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/gcc-flags-for-build.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/gcc-ice-hack.dpatch b/meta/recipes-devtools/gcc/gcc-4.5.1/gcc-ice-hack.dpatch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/gcc-ice-hack.dpatch rename to meta/recipes-devtools/gcc/gcc-4.5.1/gcc-ice-hack.dpatch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/gcc-poison-dir-extend.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/gcc-poison-dir-extend.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/gcc-poison-dir-extend.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/gcc-poison-dir-extend.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/gcc-poison-parameters.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/gcc-poison-parameters.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/gcc-poison-parameters.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/gcc-poison-parameters.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/gcc-poison-system-directories.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/gcc-poison-system-directories.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/gcc-poison-system-directories.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/gcc-poison-system-directories.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/gcc-uclibc-locale-ctype_touplow_t.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/gcc-uclibc-locale-ctype_touplow_t.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/gcc-uclibc-locale-ctype_touplow_t.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/gcc-uclibc-locale-ctype_touplow_t.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/libstdc++-emit-__cxa_end_cleanup-in-text.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/libstdc++-emit-__cxa_end_cleanup-in-text.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/libstdc++-emit-__cxa_end_cleanup-in-text.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/libstdc++-emit-__cxa_end_cleanup-in-text.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/libstdc++-pic.dpatch b/meta/recipes-devtools/gcc/gcc-4.5.1/libstdc++-pic.dpatch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/libstdc++-pic.dpatch rename to meta/recipes-devtools/gcc/gcc-4.5.1/libstdc++-pic.dpatch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/optional_libstdc.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/optional_libstdc.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/optional_libstdc.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/optional_libstdc.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/pr30961.dpatch b/meta/recipes-devtools/gcc/gcc-4.5.1/pr30961.dpatch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/pr30961.dpatch rename to meta/recipes-devtools/gcc/gcc-4.5.1/pr30961.dpatch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/pr35942.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/pr35942.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/pr35942.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/pr35942.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.5.0/zecke-xgcc-cpp.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/zecke-xgcc-cpp.patch similarity index 100% rename from meta/recipes-devtools/gcc/gcc-4.5.0/zecke-xgcc-cpp.patch rename to meta/recipes-devtools/gcc/gcc-4.5.1/zecke-xgcc-cpp.patch diff --git a/meta/recipes-devtools/gcc/gcc-cross-canadian_4.5.0.bb b/meta/recipes-devtools/gcc/gcc-cross-canadian_4.5.1.bb similarity index 98% rename from meta/recipes-devtools/gcc/gcc-cross-canadian_4.5.0.bb rename to meta/recipes-devtools/gcc/gcc-cross-canadian_4.5.1.bb index 4c48b8345d..e160aab8a2 100644 --- a/meta/recipes-devtools/gcc/gcc-cross-canadian_4.5.0.bb +++ b/meta/recipes-devtools/gcc/gcc-cross-canadian_4.5.1.bb @@ -5,7 +5,7 @@ require gcc-cross-canadian.inc require gcc-configure-sdk.inc require gcc-package-sdk.inc -PR = "r10" +PR = "r0" DEPENDS += "gmp-nativesdk mpfr-nativesdk libmpc-nativesdk elfutils-nativesdk" RDEPENDS_${PN} += "mpfr-nativesdk libmpc-nativesdk elfutils-nativesdk" diff --git a/meta/recipes-devtools/gcc/gcc-cross-initial_4.5.0.bb b/meta/recipes-devtools/gcc/gcc-cross-initial_4.5.1.bb similarity index 84% rename from meta/recipes-devtools/gcc/gcc-cross-initial_4.5.0.bb rename to meta/recipes-devtools/gcc/gcc-cross-initial_4.5.1.bb index 3ce5ca0a2c..e3aea8b356 100644 --- a/meta/recipes-devtools/gcc/gcc-cross-initial_4.5.0.bb +++ b/meta/recipes-devtools/gcc/gcc-cross-initial_4.5.1.bb @@ -1,5 +1,5 @@ require gcc-cross_${PV}.bb require gcc-cross-initial.inc -PR = "r10" +PR = "r0" diff --git a/meta/recipes-devtools/gcc/gcc-cross-intermediate_4.5.0.bb b/meta/recipes-devtools/gcc/gcc-cross-intermediate_4.5.1.bb similarity index 85% rename from meta/recipes-devtools/gcc/gcc-cross-intermediate_4.5.0.bb rename to meta/recipes-devtools/gcc/gcc-cross-intermediate_4.5.1.bb index 0fc54e2cca..4cabe0eb4b 100644 --- a/meta/recipes-devtools/gcc/gcc-cross-intermediate_4.5.0.bb +++ b/meta/recipes-devtools/gcc/gcc-cross-intermediate_4.5.1.bb @@ -1,4 +1,4 @@ require gcc-cross_${PV}.bb require gcc-cross-intermediate.inc -PR = "r10" +PR = "r0" diff --git a/meta/recipes-devtools/gcc/gcc-cross_4.5.0.bb b/meta/recipes-devtools/gcc/gcc-cross_4.5.1.bb similarity index 96% rename from meta/recipes-devtools/gcc/gcc-cross_4.5.0.bb rename to meta/recipes-devtools/gcc/gcc-cross_4.5.1.bb index 7f67acf28d..445869d1f5 100644 --- a/meta/recipes-devtools/gcc/gcc-cross_4.5.0.bb +++ b/meta/recipes-devtools/gcc/gcc-cross_4.5.1.bb @@ -1,4 +1,4 @@ -PR = "r11" +PR = "r0" require gcc-${PV}.inc require gcc-cross4.inc diff --git a/meta/recipes-devtools/gcc/gcc-crosssdk-initial_4.5.0.bb b/meta/recipes-devtools/gcc/gcc-crosssdk-initial_4.5.1.bb similarity index 86% rename from meta/recipes-devtools/gcc/gcc-crosssdk-initial_4.5.0.bb rename to meta/recipes-devtools/gcc/gcc-crosssdk-initial_4.5.1.bb index 69afbae2fc..22cb4904b7 100644 --- a/meta/recipes-devtools/gcc/gcc-crosssdk-initial_4.5.0.bb +++ b/meta/recipes-devtools/gcc/gcc-crosssdk-initial_4.5.1.bb @@ -1,4 +1,4 @@ require gcc-cross-initial_${PV}.bb require gcc-crosssdk-initial.inc -PR = "r10" +PR = "r0" diff --git a/meta/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.5.0.bb b/meta/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.5.1.bb similarity index 87% rename from meta/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.5.0.bb rename to meta/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.5.1.bb index 934ae644a7..ba42ca0e5c 100644 --- a/meta/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.5.0.bb +++ b/meta/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.5.1.bb @@ -1,4 +1,4 @@ require gcc-cross-intermediate_${PV}.bb require gcc-crosssdk-intermediate.inc -PR = "r10" +PR = "r0" diff --git a/meta/recipes-devtools/gcc/gcc-crosssdk_4.5.0.bb b/meta/recipes-devtools/gcc/gcc-crosssdk_4.5.1.bb similarity index 82% rename from meta/recipes-devtools/gcc/gcc-crosssdk_4.5.0.bb rename to meta/recipes-devtools/gcc/gcc-crosssdk_4.5.1.bb index 48a68bed1a..6f0a5406d0 100644 --- a/meta/recipes-devtools/gcc/gcc-crosssdk_4.5.0.bb +++ b/meta/recipes-devtools/gcc/gcc-crosssdk_4.5.1.bb @@ -1,4 +1,4 @@ require gcc-cross_${PV}.bb require gcc-crosssdk.inc -PR = "r10" +PR = "r0" diff --git a/meta/recipes-devtools/gcc/gcc-runtime_4.5.0.bb b/meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb similarity index 95% rename from meta/recipes-devtools/gcc/gcc-runtime_4.5.0.bb rename to meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb index fc3ab0711e..4d2302d35b 100644 --- a/meta/recipes-devtools/gcc/gcc-runtime_4.5.0.bb +++ b/meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb @@ -1,4 +1,4 @@ -PR = "r10" +PR = "r0" require gcc-${PV}.inc require gcc-configure-runtime.inc diff --git a/meta/recipes-devtools/gcc/gcc_4.5.0.bb b/meta/recipes-devtools/gcc/gcc_4.5.1.bb similarity index 94% rename from meta/recipes-devtools/gcc/gcc_4.5.0.bb rename to meta/recipes-devtools/gcc/gcc_4.5.1.bb index f54c3c6f50..0e7772534b 100644 --- a/meta/recipes-devtools/gcc/gcc_4.5.0.bb +++ b/meta/recipes-devtools/gcc/gcc_4.5.1.bb @@ -1,4 +1,4 @@ -PR = "r11" +PR = "r0" require gcc-${PV}.inc require gcc-configure-target.inc