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-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,fd9c1501d721d76e X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-05-16 10:14:49 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed.us.prserv.net!prserv.net!cyclone.swbell.net!bos-service1.ext.raytheon.com!dfw-service2.ext.raytheon.com.POSTED!not-for-mail Message-ID: <3CE3E901.5E528FF@raytheon.com> From: Mark Johnson X-Mailer: Mozilla 4.76 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: gcc 3.1 References: <3CE3D1BB.2050305@gmx.spam.egg.sausage.and.spam.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Thu, 16 May 2002 12:14:41 -0500 NNTP-Posting-Host: 192.27.48.39 X-Complaints-To: news@ext.ray.com X-Trace: dfw-service2.ext.raytheon.com 1021569289 192.27.48.39 (Thu, 16 May 2002 12:14:49 CDT) NNTP-Posting-Date: Thu, 16 May 2002 12:14:49 CDT Organization: Raytheon Company Xref: archiver1.google.com comp.lang.ada:24215 Date: 2002-05-16T12:14:41-05:00 List-Id: 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