public inbox for crossgcc@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] toolchain/build: for a canadian cross compilation we need to build the pass1 gcc
@ 2014-05-08 21:31 Daniel Zimmermann
  2014-05-10 10:21 ` Yann E. MORIN
  0 siblings, 1 reply; 4+ messages in thread
From: Daniel Zimmermann @ 2014-05-08 21:31 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: crossgcc

# HG changeset patch
# User Daniel Zimmermann <netzimme@gmail.com>
# Date 1399584665 -7200
#      Thu May 08 23:31:05 2014 +0200
# Node ID 8bedc1ab846a57568b076ef66440cd6ae512f2a7
# Parent  80e46e644bc0c788084071bcf480c5fc5823bfab
toolchain/build: for a canadian cross compilation we need to build the pass1 gcc

for a canadian cross compilation we need to build the pass1 gcc.

Signed-off-by: '"Daniel Zimmermann" <netzimme@gmail.com>'

diff -r 80e46e644bc0 -r 8bedc1ab846a config/toolchain.in
--- a/config/toolchain.in	Wed May 07 18:40:48 2014 +0200
+++ b/config/toolchain.in	Thu May 08 23:31:05 2014 +0200
@@ -179,6 +179,7 @@
 config CANADIAN
     bool
     prompt "Canadian"
+    select CC_CORE_PASSES_NEEDED
     help
       Build a canadian-toolchain.
       See: "docs/6 - Toolchain types.txt"

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

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

* Re: [PATCH] toolchain/build: for a canadian cross compilation we need to build the pass1 gcc
  2014-05-08 21:31 [PATCH] toolchain/build: for a canadian cross compilation we need to build the pass1 gcc Daniel Zimmermann
@ 2014-05-10 10:21 ` Yann E. MORIN
  0 siblings, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2014-05-10 10:21 UTC (permalink / raw)
  To: Daniel Zimmermann; +Cc: crossgcc

Daniel, All,

On 2014-05-08 23:31 +0200, Daniel Zimmermann spake thusly:
> # HG changeset patch
> # User Daniel Zimmermann <netzimme@gmail.com>
> # Date 1399584665 -7200
> #      Thu May 08 23:31:05 2014 +0200
> # Node ID 8bedc1ab846a57568b076ef66440cd6ae512f2a7
> # Parent  80e46e644bc0c788084071bcf480c5fc5823bfab
> toolchain/build: for a canadian cross compilation we need to build the pass1 gcc

Here you say we need the pass-1 gcc...

> for a canadian cross compilation we need to build the pass1 gcc.
> 
> Signed-off-by: '"Daniel Zimmermann" <netzimme@gmail.com>'
> 
> diff -r 80e46e644bc0 -r 8bedc1ab846a config/toolchain.in
> --- a/config/toolchain.in	Wed May 07 18:40:48 2014 +0200
> +++ b/config/toolchain.in	Thu May 08 23:31:05 2014 +0200
> @@ -179,6 +179,7 @@
>  config CANADIAN
>      bool
>      prompt "Canadian"
> +    select CC_CORE_PASSES_NEEDED

... while here you select both passes.

I've recently added two new symbols to select either passes:
    CC_CORE_PASS_1_NEEDED
    CC_CORE_PASS_2_NEEDED

Do we really need only pass-1, or both passes?

>      help
>        Build a canadian-toolchain.
>        See: "docs/6 - Toolchain types.txt"

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  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] 4+ messages in thread

* Re: [PATCH] toolchain/build: for a canadian cross compilation we need to build the pass1 gcc
  2014-05-19 21:43 Daniel Zimmermann
@ 2014-05-20 16:55 ` Daniel Zimmermann
  0 siblings, 0 replies; 4+ messages in thread
From: Daniel Zimmermann @ 2014-05-20 16:55 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: crossgcc

Hello

Yes only the pass-1 gcc is needed. I have test it with my
configuration and have send a new patch.

Greetings
Daniel Zimmermann

2014-05-19 23:42 GMT+02:00 Daniel Zimmermann <netzimme@gmail.com>:
> # HG changeset patch
> # User Daniel Zimmermann <netzimme@gmail.com>
> # Date 1400535778 -7200
> #      Mon May 19 23:42:58 2014 +0200
> # Node ID 78f7773cb3b80fce09f9c5505ff65264b38670d5
> # Parent  99029fac116b6cdd86de7015379dd765af77c116
> toolchain/build: for a canadian cross compilation we need to build the pass1 gcc
>
> for a canadian cross compilation we need to build the pass1 gcc.
>
> Signed-off-by: '"Daniel Zimmermann" <netzimme@gmail.com>'
>
> diff -r 99029fac116b -r 78f7773cb3b8 config/toolchain.in
> --- a/config/toolchain.in       Mon May 12 00:09:31 2014 +0200
> +++ b/config/toolchain.in       Mon May 19 23:42:58 2014 +0200
> @@ -179,6 +179,7 @@
>  config CANADIAN
>      bool
>      prompt "Canadian"
> +    select CC_CORE_PASS_1_NEEDED
>      help
>        Build a canadian-toolchain.
>        See: "docs/6 - Toolchain types.txt"

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

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

* [PATCH] toolchain/build: for a canadian cross compilation we need to build the pass1 gcc
@ 2014-05-19 21:43 Daniel Zimmermann
  2014-05-20 16:55 ` Daniel Zimmermann
  0 siblings, 1 reply; 4+ messages in thread
From: Daniel Zimmermann @ 2014-05-19 21:43 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: crossgcc

# HG changeset patch
# User Daniel Zimmermann <netzimme@gmail.com>
# Date 1400535778 -7200
#      Mon May 19 23:42:58 2014 +0200
# Node ID 78f7773cb3b80fce09f9c5505ff65264b38670d5
# Parent  99029fac116b6cdd86de7015379dd765af77c116
toolchain/build: for a canadian cross compilation we need to build the pass1 gcc

for a canadian cross compilation we need to build the pass1 gcc.

Signed-off-by: '"Daniel Zimmermann" <netzimme@gmail.com>'

diff -r 99029fac116b -r 78f7773cb3b8 config/toolchain.in
--- a/config/toolchain.in	Mon May 12 00:09:31 2014 +0200
+++ b/config/toolchain.in	Mon May 19 23:42:58 2014 +0200
@@ -179,6 +179,7 @@
 config CANADIAN
     bool
     prompt "Canadian"
+    select CC_CORE_PASS_1_NEEDED
     help
       Build a canadian-toolchain.
       See: "docs/6 - Toolchain types.txt"

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

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

end of thread, other threads:[~2014-05-20 16:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-08 21:31 [PATCH] toolchain/build: for a canadian cross compilation we need to build the pass1 gcc Daniel Zimmermann
2014-05-10 10:21 ` Yann E. MORIN
2014-05-19 21:43 Daniel Zimmermann
2014-05-20 16:55 ` Daniel Zimmermann

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