public inbox for crossgcc@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] cc/gcc: Add 4.7.4 and 4.8.3
@ 2014-06-30  6:57 Anton Leontiev
  2014-06-30 16:40 ` Yann E. MORIN
  0 siblings, 1 reply; 3+ messages in thread
From: Anton Leontiev @ 2014-06-30  6:57 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: crossgcc

Signed-off-by: Anton Leontiev <aleontiev@elvees.com>
---
 config/cc/gcc.in | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/config/cc/gcc.in b/config/cc/gcc.in
index 9c16df6..33d5675 100644
--- a/config/cc/gcc.in
+++ b/config/cc/gcc.in
@@ -47,6 +47,11 @@ config CC_V_linaro_4_8
     depends on CC_GCC_SHOW_LINARO
     select CC_GCC_4_8
 
+config CC_V_4_8_3
+    bool
+    prompt "4.8.3"
+    select CC_GCC_4_8
+
 config CC_V_4_8_2
     bool
     prompt "4.8.2"
@@ -68,6 +73,11 @@ config CC_V_linaro_4_7
     depends on CC_GCC_SHOW_LINARO
     select CC_GCC_4_7
 
+config CC_V_4_7_4
+    bool
+    prompt "4.7.4"
+    select CC_GCC_4_7
+
 config CC_V_4_7_3
     bool
     prompt "4.7.3"
@@ -473,10 +483,12 @@ config CC_VERSION
 # CT_INSERT_VERSION_STRING_BELOW
     default "4.9.0" if CC_V_4_9_0
     default "linaro-4.8-2014.01" if CC_V_linaro_4_8
+    default "4.8.3" if CC_V_4_8_3
     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-2014.01" if CC_V_linaro_4_7
+    default "4.7.4" if CC_V_4_7_4
     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
-- 
2.0.0


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

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

* Re: [PATCH] cc/gcc: Add 4.7.4 and 4.8.3
  2014-06-30  6:57 [PATCH] cc/gcc: Add 4.7.4 and 4.8.3 Anton Leontiev
@ 2014-06-30 16:40 ` Yann E. MORIN
  2014-07-01  6:26   ` Антон Леонтьев
  0 siblings, 1 reply; 3+ messages in thread
From: Yann E. MORIN @ 2014-06-30 16:40 UTC (permalink / raw)
  To: Anton Leontiev; +Cc: crossgcc

Anton, All,

On 2014-06-30 10:57 +0400, Anton Leontiev spake thusly:
> Signed-off-by: Anton Leontiev <aleontiev@elvees.com>

Have you checked that the patches we have for gcc 4.7.3 and 4.8.2 are no
longer necessary for 4.7.4 or 4.8.3?

Regards,
Yann E. MORIN.

> ---
>  config/cc/gcc.in | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
> 
> diff --git a/config/cc/gcc.in b/config/cc/gcc.in
> index 9c16df6..33d5675 100644
> --- a/config/cc/gcc.in
> +++ b/config/cc/gcc.in
> @@ -47,6 +47,11 @@ config CC_V_linaro_4_8
>      depends on CC_GCC_SHOW_LINARO
>      select CC_GCC_4_8
>  
> +config CC_V_4_8_3
> +    bool
> +    prompt "4.8.3"
> +    select CC_GCC_4_8
> +
>  config CC_V_4_8_2
>      bool
>      prompt "4.8.2"
> @@ -68,6 +73,11 @@ config CC_V_linaro_4_7
>      depends on CC_GCC_SHOW_LINARO
>      select CC_GCC_4_7
>  
> +config CC_V_4_7_4
> +    bool
> +    prompt "4.7.4"
> +    select CC_GCC_4_7
> +
>  config CC_V_4_7_3
>      bool
>      prompt "4.7.3"
> @@ -473,10 +483,12 @@ config CC_VERSION
>  # CT_INSERT_VERSION_STRING_BELOW
>      default "4.9.0" if CC_V_4_9_0
>      default "linaro-4.8-2014.01" if CC_V_linaro_4_8
> +    default "4.8.3" if CC_V_4_8_3
>      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-2014.01" if CC_V_linaro_4_7
> +    default "4.7.4" if CC_V_4_7_4
>      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
> -- 
> 2.0.0
> 

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

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

* Re: [PATCH] cc/gcc: Add 4.7.4 and 4.8.3
  2014-06-30 16:40 ` Yann E. MORIN
@ 2014-07-01  6:26   ` Антон Леонтьев
  0 siblings, 0 replies; 3+ messages in thread
From: Антон Леонтьев @ 2014-07-01  6:26 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: crossgcc

Hi Yann,

On 06/30/2014 08:40 PM, Yann E. MORIN wrote:
> Have you checked that the patches we have for gcc 4.7.3 and 4.8.2 are no
> longer necessary for 4.7.4 or 4.8.3?

I've just checked that:

  * Both patches for 4.7.3 are applicable for 4.7.4. None are included.
  * All three patches for 4.8.2 are included in 4.8.3.

I've uploaded updated version of patch.

With the best wishes,

-- 
Anton Leontiev

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

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

end of thread, other threads:[~2014-07-01  6:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-30  6:57 [PATCH] cc/gcc: Add 4.7.4 and 4.8.3 Anton Leontiev
2014-06-30 16:40 ` Yann E. MORIN
2014-07-01  6:26   ` Антон Леонтьев

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).