public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug ada/27769]  New: cross-gnatmake needs host gcc
@ 2006-05-25 16:13 berndtrog at yahoo dot com
  2006-05-25 17:01 ` [Bug ada/27769] " pinskia at gcc dot gnu dot org
                   ` (14 more replies)
  0 siblings, 15 replies; 17+ messages in thread
From: berndtrog at yahoo dot com @ 2006-05-25 16:13 UTC (permalink / raw)
  To: gcc-bugs

$ cat p.gpr
project p is
   for Library_Name use "p";
   for Library_Dir  use "lib";
   for Library_Kind use "static";
end p;

$ cat p.ads
package p is
end;

$ avr-gnatmake -Pp -f -v --RTS=rts/atmega8

Parsing Project File "p".
Checking project file "p"
 5 lines: No errors

Parsing of Project File "p" is finished.

[..]

end of compilation
build library build (RE2)

building static library for project p

object files:
   /src/source/p/p.o

ALI files:
   /src/source/p/p.ali

building a library...
   make p
avr-gnatmake: gcc not found in path


-- 
           Summary: cross-gnatmake needs host gcc
           Product: gcc
           Version: 4.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: berndtrog at yahoo dot com
  GCC host triplet: i686-pc-linux-gnu
GCC target triplet: avr


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27769


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

* [Bug ada/27769] cross-gnatmake needs host gcc
  2006-05-25 16:13 [Bug ada/27769] New: cross-gnatmake needs host gcc berndtrog at yahoo dot com
@ 2006-05-25 17:01 ` pinskia at gcc dot gnu dot org
  2006-05-25 18:09 ` laurent at guerby dot net
                   ` (13 subsequent siblings)
  14 siblings, 0 replies; 17+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-05-25 17:01 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from pinskia at gcc dot gnu dot org  2006-05-25 17:01 -------
This is still not enough info.
I bet a beer at the GCC summit, it is trying to invoke gcc instead of avr-gcc
for avr-gnatmake.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27769


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

* [Bug ada/27769] cross-gnatmake needs host gcc
  2006-05-25 16:13 [Bug ada/27769] New: cross-gnatmake needs host gcc berndtrog at yahoo dot com
  2006-05-25 17:01 ` [Bug ada/27769] " pinskia at gcc dot gnu dot org
@ 2006-05-25 18:09 ` laurent at guerby dot net
  2006-05-25 18:19   ` Andrew Pinski
  2006-05-25 18:19 ` pinskia at physics dot uc dot edu
                   ` (12 subsequent siblings)
  14 siblings, 1 reply; 17+ messages in thread
From: laurent at guerby dot net @ 2006-05-25 18:09 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from laurent at guerby dot net  2006-05-25 18:08 -------
I'm unable to build even a C compiler to the avr target, binutils-2.16.1 +
newlib-1.13.0 + gcc-4.1.1-prerelease I get:

make[5]: Entering directory `/mnt/data-5-1/guerby/build/avr/newlib/libc/ctype'
/mnt/data-5-1/guerby/build/./gcc/xgcc -B/mnt/data-5-1/guerby/build/./gcc/
-nostdinc -B/mnt/data-5-1/guerby/build/avr/newlib/ -isystem
/mnt/data-5-1/guerby/build/avr/newlib/targ-include -isystem
/mnt/data-5-1/guerby/gcc-4.1.1-20060517/newlib/libc/include
-B/mnt/data-5-1/guerby/install/avr/bin/ -B/mnt/data-5-1/guerby/install/avr/lib/
-isystem /mnt/data-5-1/guerby/install/avr/include -isystem
/mnt/data-5-1/guerby/install/avr/sys-include -DPACKAGE=\"newlib\"
-DVERSION=\"1.13.0\"  -I. -I../../../../../gcc-4.1.1-20060517/newlib/libc/ctype
 -Os -DPREFER_SIZE_OVER_SPEED -mcall-prologues -DNO_EXEC -DSMALL_MEMORY
-DMISSING_SYSCALL_NAMES -fno-builtin      -O2 -g -O2  -c
../../../../../gcc-4.1.1-20060517/newlib/libc/ctype/ctype_.c
../../../../../gcc-4.1.1-20060517/newlib/libc/ctype/ctype_.c:91: error: alias
definitions not supported in this configuration
make[5]: *** [ctype_.o] Error 1

In my recollection, cross gnatmake were properly calling TARGET-gcc, ie:
http://www.rtems.com/wiki/index.php/RTEMSAda


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27769


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

* Re: [Bug ada/27769] cross-gnatmake needs host gcc
  2006-05-25 18:09 ` laurent at guerby dot net
@ 2006-05-25 18:19   ` Andrew Pinski
  0 siblings, 0 replies; 17+ messages in thread
From: Andrew Pinski @ 2006-05-25 18:19 UTC (permalink / raw)
  To: gcc-bugzilla; +Cc: gcc-bugs

> 
> 
> 
> ------- Comment #2 from laurent at guerby dot net  2006-05-25 18:08 -------
> I'm unable to build even a C compiler to the avr target, binutils-2.16.1 +
> newlib-1.13.0 + gcc-4.1.1-prerelease I get:

avr has its own libc and is not supported by newlib.

-- Pinski


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

* [Bug ada/27769] cross-gnatmake needs host gcc
  2006-05-25 16:13 [Bug ada/27769] New: cross-gnatmake needs host gcc berndtrog at yahoo dot com
  2006-05-25 17:01 ` [Bug ada/27769] " pinskia at gcc dot gnu dot org
  2006-05-25 18:09 ` laurent at guerby dot net
@ 2006-05-25 18:19 ` pinskia at physics dot uc dot edu
  2006-05-25 21:00 ` laurent at guerby dot net
                   ` (11 subsequent siblings)
  14 siblings, 0 replies; 17+ messages in thread
From: pinskia at physics dot uc dot edu @ 2006-05-25 18:19 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from pinskia at physics dot uc dot edu  2006-05-25 18:19 -------
Subject: Re:  cross-gnatmake needs host gcc

> 
> 
> 
> ------- Comment #2 from laurent at guerby dot net  2006-05-25 18:08 -------
> I'm unable to build even a C compiler to the avr target, binutils-2.16.1 +
> newlib-1.13.0 + gcc-4.1.1-prerelease I get:

avr has its own libc and is not supported by newlib.

-- Pinski


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27769


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

* [Bug ada/27769] cross-gnatmake needs host gcc
  2006-05-25 16:13 [Bug ada/27769] New: cross-gnatmake needs host gcc berndtrog at yahoo dot com
                   ` (2 preceding siblings ...)
  2006-05-25 18:19 ` pinskia at physics dot uc dot edu
@ 2006-05-25 21:00 ` laurent at guerby dot net
  2006-05-25 21:06 ` pinskia at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  14 siblings, 0 replies; 17+ messages in thread
From: laurent at guerby dot net @ 2006-05-25 21:00 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from laurent at guerby dot net  2006-05-25 21:00 -------
Even when removing newlib it fails too:

de -I../../gcc-4.1.1-20060517/gcc/../libcpp/include  -DL_fixunssfsi -c
../../gcc-4.1.1-20060517/gcc/libgcc2.c -o libgcc/./_fixunssfsi.o
../../gcc-4.1.1-20060517/gcc/libgcc2.c: In function '__fixunssfsi':
../../gcc-4.1.1-20060517/gcc/libgcc2.c:1499: internal compiler error: in
compute_frame_pointer_to_cfa_displacement, at dwarf2out.c:10446
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for inst

Bernd what version of various items in the toolchain did you use? Did you apply
patches?


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27769


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

* [Bug ada/27769] cross-gnatmake needs host gcc
  2006-05-25 16:13 [Bug ada/27769] New: cross-gnatmake needs host gcc berndtrog at yahoo dot com
                   ` (3 preceding siblings ...)
  2006-05-25 21:00 ` laurent at guerby dot net
@ 2006-05-25 21:06 ` pinskia at gcc dot gnu dot org
  2006-05-25 21:51 ` laurent at guerby dot net
                   ` (9 subsequent siblings)
  14 siblings, 0 replies; 17+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-05-25 21:06 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from pinskia at gcc dot gnu dot org  2006-05-25 21:06 -------
How did you configure the compiler?


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |pinskia at gcc dot gnu dot
                   |dot org                     |org
             Status|UNCONFIRMED                 |ASSIGNED
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2006-05-25 21:06:04
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27769


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

* [Bug ada/27769] cross-gnatmake needs host gcc
  2006-05-25 16:13 [Bug ada/27769] New: cross-gnatmake needs host gcc berndtrog at yahoo dot com
                   ` (4 preceding siblings ...)
  2006-05-25 21:06 ` pinskia at gcc dot gnu dot org
@ 2006-05-25 21:51 ` laurent at guerby dot net
  2006-05-26 11:15 ` berndtrog at yahoo dot com
                   ` (8 subsequent siblings)
  14 siblings, 0 replies; 17+ messages in thread
From: laurent at guerby dot net @ 2006-05-25 21:51 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from laurent at guerby dot net  2006-05-25 21:51 -------
TARGET=avr

../gcc-4.1.1-20060517/configure --verbose --disable-nls --enable-languages=c
--target=$TARGET --prefix=$INSTALL --with-dwarf2


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27769


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

* [Bug ada/27769] cross-gnatmake needs host gcc
  2006-05-25 16:13 [Bug ada/27769] New: cross-gnatmake needs host gcc berndtrog at yahoo dot com
                   ` (5 preceding siblings ...)
  2006-05-25 21:51 ` laurent at guerby dot net
@ 2006-05-26 11:15 ` berndtrog at yahoo dot com
  2006-05-26 17:00 ` pinskia at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  14 siblings, 0 replies; 17+ messages in thread
From: berndtrog at yahoo dot com @ 2006-05-26 11:15 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from berndtrog at yahoo dot com  2006-05-26 11:15 -------
This bug is target independent. 
I see the same behaviour for --target=mingw32.

Workaround (for avr only):
Index: mlib-utl.adb
===================================================================
--- mlib-utl.adb        (revision 114128)
+++ mlib-utl.adb        (working copy)
@@ -38,7 +38,7 @@

    Initialized : Boolean := False;

-   Gcc_Name : constant String := "gcc";
+   Gcc_Name : constant String := "avr-gcc";
    Gcc_Exec : OS_Lib.String_Access;

    Ar_Name    : OS_Lib.String_Access;


-- 

berndtrog at yahoo dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 GCC target triplet|avr                         |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27769


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

* [Bug ada/27769] cross-gnatmake needs host gcc
  2006-05-25 16:13 [Bug ada/27769] New: cross-gnatmake needs host gcc berndtrog at yahoo dot com
                   ` (6 preceding siblings ...)
  2006-05-26 11:15 ` berndtrog at yahoo dot com
@ 2006-05-26 17:00 ` pinskia at gcc dot gnu dot org
  2006-05-27 16:32 ` laurent at guerby dot net
                   ` (6 subsequent siblings)
  14 siblings, 0 replies; 17+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-05-26 17:00 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from pinskia at gcc dot gnu dot org  2006-05-26 16:59 -------
Woops what did I do to make this assign this to myself.

Anyways I am no way at all working on this.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|pinskia at gcc dot gnu dot  |unassigned at gcc dot gnu
                   |org                         |dot org
             Status|ASSIGNED                    |NEW


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27769


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

* [Bug ada/27769] cross-gnatmake needs host gcc
  2006-05-25 16:13 [Bug ada/27769] New: cross-gnatmake needs host gcc berndtrog at yahoo dot com
                   ` (7 preceding siblings ...)
  2006-05-26 17:00 ` pinskia at gcc dot gnu dot org
@ 2006-05-27 16:32 ` laurent at guerby dot net
  2006-05-27 17:09 ` laurent at guerby dot net
                   ` (5 subsequent siblings)
  14 siblings, 0 replies; 17+ messages in thread
From: laurent at guerby dot net @ 2006-05-27 16:32 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from laurent at guerby dot net  2006-05-27 16:32 -------
I just build a mingw32 cross with c,ada from 4.1.1 prerelease (using native
Linux c,ada GCC 4.1.0 as base compiler) and it invokes properly ming32-gcc:

$ mingw32-gnatmake -Pp -v

Parsing Project File "p".
Checking project file "p"
 5 lines: No errors

Parsing of Project File "p" is finished.
Adding source directory "/mnt/data-5-1/guerby/tmp".
Adding object directory "/mnt/data-5-1/guerby/tmp".
Adding "p.ads" as if on the command line

GNATMAKE 4.1.1 20060517 (prerelease)
Copyright 1995-2004 Free Software Foundation, Inc.
Main source file: "p.ads".
Library file does not exist for project "p"
Adding "p.ads" to the queue
  "p.ali" being checked ...
  -> "p.ali" missing.
Creating temp file "/mnt/data-5-1/guerby/tmp/GNAT-TEMP-000001.TMP"
Closing configuration file "/mnt/data-5-1/guerby/tmp/GNAT-TEMP-000001.TMP"
mingw32-gcc -c -I- -gnatA /mnt/data-5-1/guerby/tmp/p.ads
Deleting temp configuration file
"/mnt/data-5-1/guerby/tmp/GNAT-TEMP-000001.TMP"
End of compilation

building static library for project p

object files:
   /mnt/data-5-1/guerby/tmp/p.o

ALI files:
   /mnt/data-5-1/guerby/tmp/p.ali

building a library...
   make p
found /opt/gcc/4.1.0/bin/gcc
found /usr/bin/ar
found /usr/bin/ranlib
could not delete /mnt/data-5-1/guerby/tmp/lib/libp.a
ar cr /mnt/data-5-1/guerby/tmp/lib/libp.a /mnt/data-5-1/guerby/tmp/p.o
ranlib /mnt/data-5-1/guerby/tmp/lib/libp.a
Copying "/mnt/data-5-1/guerby/tmp/p.ali" to "/mnt/data-5-1/guerby/tmp/lib"

$ 

So this is probably something very specific to your setup. I'm setting the PR
in WAITING state since I cannot confirm it without some additional information.


-- 

laurent at guerby dot net changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |WAITING


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27769


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

* [Bug ada/27769] cross-gnatmake needs host gcc
  2006-05-25 16:13 [Bug ada/27769] New: cross-gnatmake needs host gcc berndtrog at yahoo dot com
                   ` (8 preceding siblings ...)
  2006-05-27 16:32 ` laurent at guerby dot net
@ 2006-05-27 17:09 ` laurent at guerby dot net
  2006-05-27 18:41 ` laurent at guerby dot net
                   ` (4 subsequent siblings)
  14 siblings, 0 replies; 17+ messages in thread
From: laurent at guerby dot net @ 2006-05-27 17:09 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from laurent at guerby dot net  2006-05-27 17:09 -------
Oops sorry, didn't see that my log show the problem you mentionned (and not the
one I imagined), the library building tools of gnatmake when using a project
file are indeed looking for and using native tools (it "succeeds" on my machine
because I have the native compiler in PATH).

I wrote a patch
http://gcc.gnu.org/ml/gcc-patches/2006-05/msg01411.html

It seems to fix the problem:

found /mnt/data-5-1/guerby/install/bin/mingw32-gcc
found /mnt/data-5-1/guerby/install/bin/mingw32-ar
found /mnt/data-5-1/guerby/install/bin/mingw32-ranlib
could not delete /mnt/data-5-1/guerby/tmp/lib/libp.a
mingw32-ar cr /mnt/data-5-1/guerby/tmp/lib/libp.a /mnt/data-5-1/guerby/tmp/p.o
mingw32-ranlib /mnt/data-5-1/guerby/tmp/lib/libp.a
Copying "/mnt/data-5-1/guerby/tmp/p.ali" to "/mnt/data-5-1/guerby/tmp/lib"


-- 

laurent at guerby dot net changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                URL|                            |http://gcc.gnu.org/ml/gcc-
                   |                            |patches/2006-
                   |                            |05/msg01411.html
             Status|WAITING                     |NEW
           Keywords|                            |patch
   Last reconfirmed|2006-05-25 21:06:04         |2006-05-27 17:09:09
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27769


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

* [Bug ada/27769] cross-gnatmake needs host gcc
  2006-05-25 16:13 [Bug ada/27769] New: cross-gnatmake needs host gcc berndtrog at yahoo dot com
                   ` (9 preceding siblings ...)
  2006-05-27 17:09 ` laurent at guerby dot net
@ 2006-05-27 18:41 ` laurent at guerby dot net
  2006-05-28 14:11 ` berndtrog at yahoo dot com
                   ` (3 subsequent siblings)
  14 siblings, 0 replies; 17+ messages in thread
From: laurent at guerby dot net @ 2006-05-27 18:41 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from laurent at guerby dot net  2006-05-27 18:41 -------
Bernd, could you contribute (attach here) your Makefile and ada RTS changes so
that Ada build with AVR target succeeds? I see lots of ICE due to the target
8bit-ness while building the Ada RTS so I assume you cut it or disable it
somehow.

Thanks in advance,

Laurent


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27769


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

* [Bug ada/27769] cross-gnatmake needs host gcc
  2006-05-25 16:13 [Bug ada/27769] New: cross-gnatmake needs host gcc berndtrog at yahoo dot com
                   ` (10 preceding siblings ...)
  2006-05-27 18:41 ` laurent at guerby dot net
@ 2006-05-28 14:11 ` berndtrog at yahoo dot com
  2006-06-06 12:38 ` guerby at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  14 siblings, 0 replies; 17+ messages in thread
From: berndtrog at yahoo dot com @ 2006-05-28 14:11 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from berndtrog at yahoo dot com  2006-05-28 14:10 -------
> ------- Comment #11 from laurent at guerby dot net  2006-05-27 18:41 -------
> Bernd, could you contribute (attach here) your Makefile and ada RTS changes so
> that Ada build with AVR target succeeds?

Since I don't like to have mutiple copies of the same thing around, I'd
rather provide only a link into AVR-Ada repo.:

http://svn.sourceforge.net/viewcvs.cgi/avr-ada/trunk/patches/


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27769


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

* [Bug ada/27769] cross-gnatmake needs host gcc
  2006-05-25 16:13 [Bug ada/27769] New: cross-gnatmake needs host gcc berndtrog at yahoo dot com
                   ` (11 preceding siblings ...)
  2006-05-28 14:11 ` berndtrog at yahoo dot com
@ 2006-06-06 12:38 ` guerby at gcc dot gnu dot org
  2006-06-06 12:43 ` guerby at gcc dot gnu dot org
  2006-06-06 12:54 ` laurent at guerby dot net
  14 siblings, 0 replies; 17+ messages in thread
From: guerby at gcc dot gnu dot org @ 2006-06-06 12:38 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from guerby at gcc dot gnu dot org  2006-06-06 12:37 -------
Subject: Bug 27769

Author: guerby
Date: Tue Jun  6 12:37:01 2006
New Revision: 114429

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=114429
Log:
2006-06-06  Laurent GUERBY  <laurent@guerby.net>

        PR ada/27769
        mlib-utl.adb: Use Program_Name.



Modified:
    trunk/gcc/ada/ChangeLog
    trunk/gcc/ada/mlib-utl.adb


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27769


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

* [Bug ada/27769] cross-gnatmake needs host gcc
  2006-05-25 16:13 [Bug ada/27769] New: cross-gnatmake needs host gcc berndtrog at yahoo dot com
                   ` (12 preceding siblings ...)
  2006-06-06 12:38 ` guerby at gcc dot gnu dot org
@ 2006-06-06 12:43 ` guerby at gcc dot gnu dot org
  2006-06-06 12:54 ` laurent at guerby dot net
  14 siblings, 0 replies; 17+ messages in thread
From: guerby at gcc dot gnu dot org @ 2006-06-06 12:43 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from guerby at gcc dot gnu dot org  2006-06-06 12:38 -------
Subject: Bug 27769

Author: guerby
Date: Tue Jun  6 12:37:36 2006
New Revision: 114430

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=114430
Log:
2006-06-06  Laurent GUERBY  <laurent@guerby.net>

        PR ada/27769
        mlib-utl.adb: Use Program_Name.



Modified:
    branches/gcc-4_1-branch/gcc/ada/ChangeLog
    branches/gcc-4_1-branch/gcc/ada/mlib-utl.adb


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27769


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

* [Bug ada/27769] cross-gnatmake needs host gcc
  2006-05-25 16:13 [Bug ada/27769] New: cross-gnatmake needs host gcc berndtrog at yahoo dot com
                   ` (13 preceding siblings ...)
  2006-06-06 12:43 ` guerby at gcc dot gnu dot org
@ 2006-06-06 12:54 ` laurent at guerby dot net
  14 siblings, 0 replies; 17+ messages in thread
From: laurent at guerby dot net @ 2006-06-06 12:54 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #15 from laurent at guerby dot net  2006-06-06 12:43 -------
Should be fixed now.


-- 

laurent at guerby dot net changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27769


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

end of thread, other threads:[~2006-06-06 12:43 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-05-25 16:13 [Bug ada/27769] New: cross-gnatmake needs host gcc berndtrog at yahoo dot com
2006-05-25 17:01 ` [Bug ada/27769] " pinskia at gcc dot gnu dot org
2006-05-25 18:09 ` laurent at guerby dot net
2006-05-25 18:19   ` Andrew Pinski
2006-05-25 18:19 ` pinskia at physics dot uc dot edu
2006-05-25 21:00 ` laurent at guerby dot net
2006-05-25 21:06 ` pinskia at gcc dot gnu dot org
2006-05-25 21:51 ` laurent at guerby dot net
2006-05-26 11:15 ` berndtrog at yahoo dot com
2006-05-26 17:00 ` pinskia at gcc dot gnu dot org
2006-05-27 16:32 ` laurent at guerby dot net
2006-05-27 17:09 ` laurent at guerby dot net
2006-05-27 18:41 ` laurent at guerby dot net
2006-05-28 14:11 ` berndtrog at yahoo dot com
2006-06-06 12:38 ` guerby at gcc dot gnu dot org
2006-06-06 12:43 ` guerby at gcc dot gnu dot org
2006-06-06 12:54 ` laurent at guerby dot net

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