comp.lang.ada
 help / color / mirror / Atom feed
* gcc 3.1
@ 2002-05-16 15:35 David Rasmussen
  2002-05-16 17:14 ` Mark Johnson
  0 siblings, 1 reply; 10+ messages in thread
From: David Rasmussen @ 2002-05-16 15:35 UTC (permalink / raw)


I've built gcc 3.1 with --enable-languages=..., ada, ...
But how do I actually invoke the ada compiler?

/David




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

* Re: gcc 3.1
  2002-05-16 15:35 gcc 3.1 David Rasmussen
@ 2002-05-16 17:14 ` Mark Johnson
  2002-05-16 19:24   ` Florian Weimer
  0 siblings, 1 reply; 10+ messages in thread
From: Mark Johnson @ 2002-05-16 17:14 UTC (permalink / raw)


David Rasmussen wrote:
> 
> I've built gcc 3.1 with --enable-languages=..., ada, ...
> But how do I actually invoke the ada compiler?
> 
> /David

Have you tried...
  gnatmake -o a a.adb
where a.adb is your Ada main program?

That works w/ the gnat released from Ada Core.... If gnatmake is not
included - you may have other problems since you also need gnatbind,
gnatlink, the Ada run time, etc. to produce the proper main program
files. Those have been part of gnat releases but I haven't looked at gcc
3.1 to see if they are included or not.
  --Mark



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

* Re: gcc 3.1
  2002-05-16 17:14 ` Mark Johnson
@ 2002-05-16 19:24   ` Florian Weimer
  2002-05-18 11:50     ` David Rasmussen
                       ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Florian Weimer @ 2002-05-16 19:24 UTC (permalink / raw)


Mark Johnson <mark_h_johnson@raytheon.com> writes:

> If gnatmake is not included - you may have other problems since you
> also need gnatbind, gnatlink, the Ada run time, etc. to produce the
> proper main program files. Those have been part of gnat releases but
> I haven't looked at gcc 3.1 to see if they are included or not.

They are included, but you have to read the secret build instructions.



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

* Re: gcc 3.1
  2002-05-16 19:24   ` Florian Weimer
@ 2002-05-18 11:50     ` David Rasmussen
  2002-05-18 12:09       ` Florian Weimer
  2002-05-18 11:52     ` David Rasmussen
  2002-05-18 11:53     ` David Rasmussen
  2 siblings, 1 reply; 10+ messages in thread
From: David Rasmussen @ 2002-05-18 11:50 UTC (permalink / raw)
  To: Florian Weimer

Florian Weimer wrote:
> Mark Johnson <mark_h_johnson@raytheon.com> writes:
> 
> 
>>If gnatmake is not included - you may have other problems since you
>>also need gnatbind, gnatlink, the Ada run time, etc. to produce the
>>proper main program files. Those have been part of gnat releases but
>>I haven't looked at gcc 3.1 to see if they are included or not.
> 
> 
> They are included, but you have to read the secret build instructions.

Where are those? And what are they, in a gist?




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

* Re: gcc 3.1
  2002-05-16 19:24   ` Florian Weimer
  2002-05-18 11:50     ` David Rasmussen
@ 2002-05-18 11:52     ` David Rasmussen
  2002-05-18 20:29       ` Robert Dewar
  2002-05-18 11:53     ` David Rasmussen
  2 siblings, 1 reply; 10+ messages in thread
From: David Rasmussen @ 2002-05-18 11:52 UTC (permalink / raw)
  To: Florian Weimer

Florian Weimer wrote:
> Mark Johnson <mark_h_johnson@raytheon.com> writes:
> 
> 
>>If gnatmake is not included - you may have other problems since you
>>also need gnatbind, gnatlink, the Ada run time, etc. to produce the
>>proper main program files. Those have been part of gnat releases but
>>I haven't looked at gcc 3.1 to see if they are included or not.
> 
> 
> They are included, but you have to read the secret build instructions.

Where are those? And what are they, the gist of it?

/David




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

* Re: gcc 3.1
  2002-05-16 19:24   ` Florian Weimer
  2002-05-18 11:50     ` David Rasmussen
  2002-05-18 11:52     ` David Rasmussen
@ 2002-05-18 11:53     ` David Rasmussen
  2002-05-19  0:39       ` David Rasmussen
  2 siblings, 1 reply; 10+ messages in thread
From: David Rasmussen @ 2002-05-18 11:53 UTC (permalink / raw)
  To: Florian Weimer

Florian Weimer wrote:
> Mark Johnson <mark_h_johnson@raytheon.com> writes:
> 
> 
>>If gnatmake is not included - you may have other problems since you
>>also need gnatbind, gnatlink, the Ada run time, etc. to produce the
>>proper main program files. Those have been part of gnat releases but
>>I haven't looked at gcc 3.1 to see if they are included or not.
> 
> 
> They are included, but you have to read the secret build instructions.

Where are those? And what are they, the gist of it?

/David




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

* Re: gcc 3.1
  2002-05-18 11:50     ` David Rasmussen
@ 2002-05-18 12:09       ` Florian Weimer
  2002-05-19  0:37         ` David Rasmussen
  0 siblings, 1 reply; 10+ messages in thread
From: Florian Weimer @ 2002-05-18 12:09 UTC (permalink / raw)


David Rasmussen <david.rasmussen@gmx.spam.egg.sausage.and.spam.net> writes:

> Where are those? And what are they, in a gist?

http://gcc.gnu.org/install/build.html

David, it is not very impolite to send courtesy copies by mail without
marking them as such.



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

* Re: gcc 3.1
  2002-05-18 11:52     ` David Rasmussen
@ 2002-05-18 20:29       ` Robert Dewar
  0 siblings, 0 replies; 10+ messages in thread
From: Robert Dewar @ 2002-05-18 20:29 UTC (permalink / raw)


David Rasmussen <david.rasmussen@gmx.spam.egg.sausage.and.spam.net> wrote in message news:<3CE64067.2050603@gmx.spam.egg.sausage.and.spam.net>..> > They are included, but you have to read the secret 
> > build instructions.
> 
> Where are those? And what are they, the gist of it?
> 
> /David


Florian means that these are secret like the GNAT documentation is
secret. They are probably under some
obscure name like install.html :-)



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

* Re: gcc 3.1
  2002-05-18 12:09       ` Florian Weimer
@ 2002-05-19  0:37         ` David Rasmussen
  0 siblings, 0 replies; 10+ messages in thread
From: David Rasmussen @ 2002-05-19  0:37 UTC (permalink / raw)


Florian Weimer wrote:
> David Rasmussen <david.rasmussen@gmx.spam.egg.sausage.and.spam.net> writes:
> 
> 
>>Where are those? And what are they, in a gist?
> 
> 
> http://gcc.gnu.org/install/build.html
> 
> David, it is not very impolite to send courtesy copies by mail without
> marking them as such.

What? What are you talking about?

/David




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

* Re: gcc 3.1
  2002-05-18 11:53     ` David Rasmussen
@ 2002-05-19  0:39       ` David Rasmussen
  0 siblings, 0 replies; 10+ messages in thread
From: David Rasmussen @ 2002-05-19  0:39 UTC (permalink / raw)


David Rasmussen wrote:
> Florian Weimer wrote:
> 
>> Mark Johnson <mark_h_johnson@raytheon.com> writes:
>>
>>
>>> If gnatmake is not included - you may have other problems since you
>>> also need gnatbind, gnatlink, the Ada run time, etc. to produce the
>>> proper main program files. Those have been part of gnat releases but
>>> I haven't looked at gcc 3.1 to see if they are included or not.
>>
>>
>>
>> They are included, but you have to read the secret build instructions.
> 
> 
> Where are those? And what are they, the gist of it?
> 
> /David
> 

Doh.... Sorry for the duplicate messages. When I sent these, I got a 
very clear message that the messages weren't sent (for some reason). So 
I tried again a couple of times.

Sorry.




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

end of thread, other threads:[~2002-05-19  0:39 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-05-16 15:35 gcc 3.1 David Rasmussen
2002-05-16 17:14 ` Mark Johnson
2002-05-16 19:24   ` Florian Weimer
2002-05-18 11:50     ` David Rasmussen
2002-05-18 12:09       ` Florian Weimer
2002-05-19  0:37         ` David Rasmussen
2002-05-18 11:52     ` David Rasmussen
2002-05-18 20:29       ` Robert Dewar
2002-05-18 11:53     ` David Rasmussen
2002-05-19  0:39       ` David Rasmussen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox