From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,16af87b269754773 X-Google-Attributes: gid103376,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news2.google.com!news.glorb.com!newscon02.news.prodigy.net!prodigy.net!newsfeed-00.mathworks.com!nntp.TheWorld.com!not-for-mail From: Robert A Duff Newsgroups: comp.lang.ada Subject: Re: Newbie Questions Date: Tue, 01 Apr 2008 11:04:40 -0400 Organization: The World Public Access UNIX, Brookline, MA Message-ID: References: NNTP-Posting-Host: shell01.theworld.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: pcls4.std.com 1207062280 31589 192.74.137.71 (1 Apr 2008 15:04:40 GMT) X-Complaints-To: abuse@TheWorld.com NNTP-Posting-Date: Tue, 1 Apr 2008 15:04:40 +0000 (UTC) User-Agent: Gnus/5.1008 (Gnus v5.10.8) Emacs/21.3 (irix) Cancel-Lock: sha1:XxkP6UxS3iBGBqMmpqh3QTrcrUc= Xref: g2news1.google.com comp.lang.ada:20724 Date: 2008-04-01T11:04:40-04:00 List-Id: Chris Yocum writes: > Might anyone have any ideas? Have I missed something in the call to > gnatlink? I can post code if that will help. You should never have to call gnatlink or gnatbind or gcc by hand, unless you're doing something weird. Gnatmake will do it all. You should put "for Main use..." in your project file, and/or mention the name of the main file on the gnatmake command line. These things are covered in the docs. - Bob