public inbox for crossgcc@sourceware.org
 help / color / mirror / Atom feed
* [PATCH 0 of 4] Updated Linaro GCC and companion libs
@ 2014-02-09 22:16 Daniel Rubio Bonilla
  2014-02-09 22:18 ` [PATCH 1 of 4] Updated linaro GCC 4.7 & 4.8 to version 2014.01 Daniel Rubio Bonilla
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: Daniel Rubio Bonilla @ 2014-02-09 22:16 UTC (permalink / raw)
  To: crossgcc; +Cc: danielrubiob

Updated:
- Linaro GCC 4.7 & 4.8 to 2014.01
- GMP
- MPC
- CLooG

Signed-off-by: Daniel Rubio Bonilla <danielrubiob@gmail.com>

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

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH 1 of 4] Updated linaro GCC 4.7 & 4.8 to version 2014.01
  2014-02-09 22:16 [PATCH 0 of 4] Updated Linaro GCC and companion libs Daniel Rubio Bonilla
@ 2014-02-09 22:18 ` Daniel Rubio Bonilla
  2014-02-11 20:39   ` cc/gcc: update " Yann E. MORIN
  2014-02-09 22:20 ` [PATCH 2 of 4] Updated GMP library Daniel Rubio Bonilla
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 10+ messages in thread
From: Daniel Rubio Bonilla @ 2014-02-09 22:18 UTC (permalink / raw)
  To: crossgcc; +Cc: danielrubiob

# HG changeset patch
# User danielrubiob@gmail.com
# Date 1391980875 -3600
#      Sun Feb 09 22:21:15 2014 +0100
# Node ID 08addb73e684d5e36f22468918f7ae08c0a9060c
# Parent  529a71ea091e8ffa34d8b62f82e0996e3927750d
Updated linaro GCC 4.7 & 4.8 to version 2014.01

Signed-off-by: Daniel Rubio Bonilla <danielrubiob@gmail.com>

diff -r 529a71ea091e -r 08addb73e684 config/cc/gcc.in
--- a/config/cc/gcc.in	Thu Jan 16 14:55:23 2014 -0800
+++ b/config/cc/gcc.in	Sun Feb 09 22:21:15 2014 +0100
@@ -38,7 +38,7 @@
 
 config CC_V_linaro_4_8
     bool
-    prompt "linaro-4.8-2013.12"
+    prompt "linaro-4.8-2014.01"
     depends on CC_GCC_SHOW_LINARO
     select CC_GCC_4_8
 
@@ -59,7 +59,7 @@
 
 config CC_V_linaro_4_7
     bool
-    prompt "linaro-4.7-2013.12"
+    prompt "linaro-4.7-2014.01"
     depends on CC_GCC_SHOW_LINARO
     select CC_GCC_4_7
 
@@ -449,11 +449,11 @@
     string
 # Don't remove next line
 # CT_INSERT_VERSION_STRING_BELOW
-    default "linaro-4.8-2013.12" if CC_V_linaro_4_8
+    default "linaro-4.8-2014.01" if CC_V_linaro_4_8
     default "4.8.2" if CC_V_4_8_2
     default "4.8.1" if CC_V_4_8_1
     default "4.8.0" if CC_V_4_8_0
-    default "linaro-4.7-2013.12" if CC_V_linaro_4_7
+    default "linaro-4.7-2014.01" if CC_V_linaro_4_7
     default "4.7.3" if CC_V_4_7_3
     default "4.7.2" if CC_V_4_7_2
     default "4.7.1" if CC_V_4_7_1

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

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH 2 of 4] Updated GMP library
  2014-02-09 22:16 [PATCH 0 of 4] Updated Linaro GCC and companion libs Daniel Rubio Bonilla
  2014-02-09 22:18 ` [PATCH 1 of 4] Updated linaro GCC 4.7 & 4.8 to version 2014.01 Daniel Rubio Bonilla
@ 2014-02-09 22:20 ` Daniel Rubio Bonilla
  2014-02-11 20:39   ` complibs/gmp: bump version Yann E. MORIN
  2014-02-09 22:22 ` [PATCH 3 of 4] Updated MPC library Daniel Rubio Bonilla
  2014-02-09 22:24 ` [PATCH 4 of 4] Updated CLooG library Daniel Rubio Bonilla
  3 siblings, 1 reply; 10+ messages in thread
From: Daniel Rubio Bonilla @ 2014-02-09 22:20 UTC (permalink / raw)
  To: crossgcc; +Cc: danielrubiob

# HG changeset patch
# User danielrubiob@gmail.com
# Date 1391981039 -3600
#      Sun Feb 09 22:23:59 2014 +0100
# Node ID e0361ed37146d025171ffd55a3e9f6a8a0a653c6
# Parent  08addb73e684d5e36f22468918f7ae08c0a9060c
Updated GMP library

Signed-off-by: Daniel Rubio Bonilla <danielrubiob@gmail.com>

diff -r 08addb73e684 -r e0361ed37146 config/companion_libs/gmp.in
--- a/config/companion_libs/gmp.in	Sun Feb 09 22:21:15 2014 +0100
+++ b/config/companion_libs/gmp.in	Sun Feb 09 22:23:59 2014 +0100
@@ -6,6 +6,10 @@
 # Don't remove next line
 # CT_INSERT_VERSION_BELOW
 
+config GMP_V_5_1_3
+    bool
+    prompt "5.1.3"
+
 config GMP_V_5_1_1
     bool
     prompt "5.1.1"
@@ -36,6 +40,7 @@
     string
 # Don't remove next line
 # CT_INSERT_VERSION_STRING_BELOW
+    default "5.1.3" if GMP_V_5_1_3
     default "5.1.1" if GMP_V_5_1_1
     default "5.0.2" if GMP_V_5_0_2
     default "5.0.1" if GMP_V_5_0_1

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

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH 3 of 4] Updated MPC library
  2014-02-09 22:16 [PATCH 0 of 4] Updated Linaro GCC and companion libs Daniel Rubio Bonilla
  2014-02-09 22:18 ` [PATCH 1 of 4] Updated linaro GCC 4.7 & 4.8 to version 2014.01 Daniel Rubio Bonilla
  2014-02-09 22:20 ` [PATCH 2 of 4] Updated GMP library Daniel Rubio Bonilla
@ 2014-02-09 22:22 ` Daniel Rubio Bonilla
  2014-02-11 20:39   ` complibs/mpc: bump version Yann E. MORIN
  2014-02-09 22:24 ` [PATCH 4 of 4] Updated CLooG library Daniel Rubio Bonilla
  3 siblings, 1 reply; 10+ messages in thread
From: Daniel Rubio Bonilla @ 2014-02-09 22:22 UTC (permalink / raw)
  To: crossgcc; +Cc: danielrubiob

# HG changeset patch
# User danielrubiob@gmail.com
# Date 1391981096 -3600
#      Sun Feb 09 22:24:56 2014 +0100
# Node ID d78f3a4ba2df1e0768519764d1d0c295d8ce61bc
# Parent  e0361ed37146d025171ffd55a3e9f6a8a0a653c6
Updated MPC library

Signed-off-by: Daniel Rubio Bonilla <danielrubiob@gmail.com>

diff -r e0361ed37146 -r d78f3a4ba2df config/companion_libs/mpc.in
--- a/config/companion_libs/mpc.in	Sun Feb 09 22:23:59 2014 +0100
+++ b/config/companion_libs/mpc.in	Sun Feb 09 22:24:56 2014 +0100
@@ -6,6 +6,10 @@
 # Don't remove next line
 # CT_INSERT_VERSION_BELOW
 
+config MPC_V_1_0_2
+    bool
+    prompt "1.0.2"
+
 config MPC_V_1_0_1
     bool
     prompt "1.0.1"
@@ -22,7 +26,6 @@
     bool
     prompt "0.8.2"
 
-
 config MPC_V_0_8_1
     bool
     prompt "0.8.1"
@@ -37,6 +40,7 @@
     string
 # Don't remove next line
 # CT_INSERT_VERSION_STRING_BELOW
+    default "1.0.2" if MPC_V_1_0_2
     default "1.0.1" if MPC_V_1_0_1
     default "1.0" if MPC_V_1_0
     default "0.9" if MPC_V_0_9

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

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH 4 of 4] Updated CLooG library
  2014-02-09 22:16 [PATCH 0 of 4] Updated Linaro GCC and companion libs Daniel Rubio Bonilla
                   ` (2 preceding siblings ...)
  2014-02-09 22:22 ` [PATCH 3 of 4] Updated MPC library Daniel Rubio Bonilla
@ 2014-02-09 22:24 ` Daniel Rubio Bonilla
  2014-02-11  0:11   ` Cody P Schafer
  2014-02-11 20:39   ` complibs/cloog: bump version Yann E. MORIN
  3 siblings, 2 replies; 10+ messages in thread
From: Daniel Rubio Bonilla @ 2014-02-09 22:24 UTC (permalink / raw)
  To: crossgcc; +Cc: danielrubiob

# HG changeset patch
# User danielrubiob@gmail.com
# Date 1391981120 -3600
#      Sun Feb 09 22:25:20 2014 +0100
# Node ID c2de3964cd6d5e4173ccb766052dc6b5b977b53a
# Parent  d78f3a4ba2df1e0768519764d1d0c295d8ce61bc
Updated CLooG library

Signed-off-by: Daniel Rubio Bonilla <danielrubiob@gmail.com>

diff -r d78f3a4ba2df -r c2de3964cd6d config/companion_libs/cloog.in
--- a/config/companion_libs/cloog.in	Sun Feb 09 22:24:56 2014 +0100
+++ b/config/companion_libs/cloog.in	Sun Feb 09 22:25:20 2014 +0100
@@ -9,6 +9,11 @@
 # Don't remove next line
 # CT_INSERT_VERSION_BELOW
 
+config CLOOG_V_0_18_1
+    bool
+    prompt "0.18.1"
+    select CLOOG_0_18_or_later
+
 config CLOOG_V_0_18_0
     bool
     prompt "0.18.0"
@@ -53,6 +58,7 @@
 # Don't remove next line
 # CT_INSERT_VERSION_STRING_BELOW
     default "0.18.0" if CLOOG_V_0_18_0
+    default "0.18.1" if CLOOG_V_0_18_1
     default "0.15.11" if CLOOG_V_0_15_11
     default "0.15.10" if CLOOG_V_0_15_10
     default "0.15.9" if CLOOG_V_0_15_9

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

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 4 of 4] Updated CLooG library
  2014-02-09 22:24 ` [PATCH 4 of 4] Updated CLooG library Daniel Rubio Bonilla
@ 2014-02-11  0:11   ` Cody P Schafer
  2014-02-11 20:39   ` complibs/cloog: bump version Yann E. MORIN
  1 sibling, 0 replies; 10+ messages in thread
From: Cody P Schafer @ 2014-02-11  0:11 UTC (permalink / raw)
  To: Daniel Rubio Bonilla, crossgcc

> @@ -53,6 +58,7 @@
>   # Don't remove next line
>   # CT_INSERT_VERSION_STRING_BELOW
>       default "0.18.0" if CLOOG_V_0_18_0
> +    default "0.18.1" if CLOOG_V_0_18_1
>       default "0.15.11" if CLOOG_V_0_15_11
>       default "0.15.10" if CLOOG_V_0_15_10
>       default "0.15.9" if CLOOG_V_0_15_9
>

Looks a bit out of order.

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

^ permalink raw reply	[flat|nested] 10+ messages in thread

* cc/gcc: update linaro GCC 4.7 & 4.8 to version 2014.01
  2014-02-09 22:18 ` [PATCH 1 of 4] Updated linaro GCC 4.7 & 4.8 to version 2014.01 Daniel Rubio Bonilla
@ 2014-02-11 20:39   ` Yann E. MORIN
  0 siblings, 0 replies; 10+ messages in thread
From: Yann E. MORIN @ 2014-02-11 20:39 UTC (permalink / raw)
  To: danielrubiob; +Cc: crossgcc

danielrubiob, All,

Your patch:
    cc/gcc: update linaro GCC 4.7 & 4.8 to version 2014.01

has been applied as: #1e26cdc4c228
    http://crosstool-ng.org/hg/crosstool-ng/rev/1e26cdc4c228

Thank you!

Regards,
Yann E. MORIN.



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

^ permalink raw reply	[flat|nested] 10+ messages in thread

* complibs/gmp: bump version
  2014-02-09 22:20 ` [PATCH 2 of 4] Updated GMP library Daniel Rubio Bonilla
@ 2014-02-11 20:39   ` Yann E. MORIN
  0 siblings, 0 replies; 10+ messages in thread
From: Yann E. MORIN @ 2014-02-11 20:39 UTC (permalink / raw)
  To: danielrubiob; +Cc: crossgcc

danielrubiob, All,

Your patch:
    complibs/gmp: bump version

has been applied as: #d317f3a211d3
    http://crosstool-ng.org/hg/crosstool-ng/rev/d317f3a211d3

Thank you!

Regards,
Yann E. MORIN.



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

^ permalink raw reply	[flat|nested] 10+ messages in thread

* complibs/cloog: bump version
  2014-02-09 22:24 ` [PATCH 4 of 4] Updated CLooG library Daniel Rubio Bonilla
  2014-02-11  0:11   ` Cody P Schafer
@ 2014-02-11 20:39   ` Yann E. MORIN
  1 sibling, 0 replies; 10+ messages in thread
From: Yann E. MORIN @ 2014-02-11 20:39 UTC (permalink / raw)
  To: danielrubiob, Yann E. MORIN; +Cc: crossgcc, Cody P Schafer

danielrubiob, All,

Your patch:
    complibs/cloog: bump version

has been applied as: #a8cb9039fade
    http://crosstool-ng.org/hg/crosstool-ng/rev/a8cb9039fade

Thank you!

Regards,
Yann E. MORIN.



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

^ permalink raw reply	[flat|nested] 10+ messages in thread

* complibs/mpc: bump version
  2014-02-09 22:22 ` [PATCH 3 of 4] Updated MPC library Daniel Rubio Bonilla
@ 2014-02-11 20:39   ` Yann E. MORIN
  0 siblings, 0 replies; 10+ messages in thread
From: Yann E. MORIN @ 2014-02-11 20:39 UTC (permalink / raw)
  To: danielrubiob; +Cc: crossgcc

danielrubiob, All,

Your patch:
    complibs/mpc: bump version

has been applied as: #f9dec799e51e
    http://crosstool-ng.org/hg/crosstool-ng/rev/f9dec799e51e

Thank you!

Regards,
Yann E. MORIN.



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

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2014-02-11 20:39 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-09 22:16 [PATCH 0 of 4] Updated Linaro GCC and companion libs Daniel Rubio Bonilla
2014-02-09 22:18 ` [PATCH 1 of 4] Updated linaro GCC 4.7 & 4.8 to version 2014.01 Daniel Rubio Bonilla
2014-02-11 20:39   ` cc/gcc: update " Yann E. MORIN
2014-02-09 22:20 ` [PATCH 2 of 4] Updated GMP library Daniel Rubio Bonilla
2014-02-11 20:39   ` complibs/gmp: bump version Yann E. MORIN
2014-02-09 22:22 ` [PATCH 3 of 4] Updated MPC library Daniel Rubio Bonilla
2014-02-11 20:39   ` complibs/mpc: bump version Yann E. MORIN
2014-02-09 22:24 ` [PATCH 4 of 4] Updated CLooG library Daniel Rubio Bonilla
2014-02-11  0:11   ` Cody P Schafer
2014-02-11 20:39   ` complibs/cloog: bump version Yann E. MORIN

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).