RE: Problem compiling simple Ada program

2005-06-29 Thread Michael Swanson
I am trying to compile and link a simple Ada program on Cygwin. The code for this looks like: Hello.adb: with Text_IO; Procedure Hello is begin Text_IO.Put_Line(Hello); end; This compiles fine, but when I try to link the hello.o file, I get this error:

Re: Problem compiling simple Ada program

2005-06-29 Thread Gerrit P. Haase
Michael Swanson wrote: I am trying to compile and link a simple Ada program on Cygwin. The code for this looks like: Hello.adb: with Text_IO; Procedure Hello is begin Text_IO.Put_Line(Hello); end; This compiles fine, but when I try to link the hello.o file, I get this error:

Re: Problem compiling simple Ada program

2005-06-29 Thread Michael Swanson
Thanks for the solution. Gnatmake seems to have fixed it. Mike Swanson Gerrit P. Haase wrote: *This message was transferred with a trial version of CommuniGate(tm) Pro* Michael Swanson wrote: I am trying to compile and link a simple Ada program on Cygwin. The code for this looks like: