This is the mail archive of the crossgcc@sourceware.org mailing list for the crossgcc project.

See the CrossGCC FAQ for lots more information.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 1 of 2] config/gcc: Update gcc versions


 config/cc/gcc.in |  22 +++++++++++++++++++++-
 1 files changed, 21 insertions(+), 1 deletions(-)


# HG changeset patch
# User Bryan Hundven <bryanhundven@gmail.com>
# Date 1309203623 25200
# Node ID 7946defafb3722ac3094f21b3aea10d50b6ef495
# Parent  364b06df9e3a11637489a8f3f6a0010a555a5597
config/gcc: Update gcc versions

Add gcc 4.6.1, 4.3.6, and 4.5.3.
Move 4.4.6 version string so that it is in order.

Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>

diff -r 364b06df9e3a -r 7946defafb37 config/cc/gcc.in
--- a/config/cc/gcc.in	Sun Jun 26 03:26:54 2011 -0700
+++ b/config/cc/gcc.in	Mon Jun 27 12:40:23 2011 -0700
@@ -36,6 +36,12 @@
 # Don't remove next line
 # CT_INSERT_VERSION_BELOW
 
+config CC_V_4_6_1
+    bool
+    prompt "4.6.1 (EXPERIMENTAL)"
+    depends on EXPERIMENTAL
+    select CC_GCC_4_6
+
 config CC_V_linaro_4_6_2011_06_0
     bool
     prompt "linaro-4.6-2011.06-0 (EXPERIMENTAL)"
@@ -54,6 +60,12 @@
     depends on CC_GCC_SHOW_LINARO
     select CC_GCC_4_5
 
+config CC_V_4_5_3
+    bool
+    prompt "4.5.3 (EXPERIMENTAL)"
+    depends on EXPERIMENTAL
+    select CC_GCC_4_5
+
 config CC_V_4_5_2
     bool
     prompt "4.5.2 (EXPERIMENTAL)"
@@ -114,6 +126,11 @@
     prompt "4.4.0"
     select CC_GCC_4_4
 
+config CC_V_4_3_6
+    bool
+    prompt "4.3.6"
+    select CC_GCC_4_3
+
 config CC_V_4_3_5
     bool
     prompt "4.3.5"
@@ -292,20 +309,23 @@
     string
 # Don't remove next line
 # CT_INSERT_VERSION_STRING_BELOW
-    default "4.4.6" if CC_V_4_4_6
     default "linaro-4.6-2011.06-0" if CC_V_linaro_4_6_2011_06_0
+    default "4.6.1" if CC_V_4_6_1
     default "4.6.0" if CC_V_4_6_0
     default "linaro-4.5-2011.06-0" if CC_V_linaro_4_5_2011_06_0
+    default "4.5.3" if CC_V_4_5_3
     default "4.5.2" if CC_V_4_5_2
     default "4.5.1" if CC_V_4_5_1
     default "4.5.0" if CC_V_4_5_0
     default "linaro-4.4-2011.02-0" if CC_V_linaro_4_4_2011_02_0
+    default "4.4.6" if CC_V_4_4_6
     default "4.4.5" if CC_V_4_4_5
     default "4.4.4" if CC_V_4_4_4
     default "4.4.3" if CC_V_4_4_3
     default "4.4.2" if CC_V_4_4_2
     default "4.4.1" if CC_V_4_4_1
     default "4.4.0" if CC_V_4_4_0
+    default "4.3.6" if CC_V_4_3_6
     default "4.3.5" if CC_V_4_3_5
     default "4.3.4" if CC_V_4_3_4
     default "4.3.3" if CC_V_4_3_3

--
For unsubscribe information see http://sourceware.org/lists.html#faq


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]