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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,b8a1363302988cfe X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII Path: g2news1.google.com!postnews.google.com!a32g2000yqm.googlegroups.com!not-for-mail From: sjw Newsgroups: comp.lang.ada Subject: Re: GNAT GPL 2009 for Mac OS X (Snow Leopard) Date: Thu, 24 Dec 2009 06:50:43 -0800 (PST) Organization: http://groups.google.com Message-ID: References: <5b0bf629-0935-414d-9a57-1757632840b8@d10g2000yqh.googlegroups.com> <96854a61-2032-49b1-a8b2-8a5aee181701@22g2000yqr.googlegroups.com> <68e6e09a-9f02-4fd4-a87c-d1c43dd104e1@27g2000yqr.googlegroups.com> NNTP-Posting-Host: 82.30.110.254 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1261666244 13857 127.0.0.1 (24 Dec 2009 14:50:44 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Thu, 24 Dec 2009 14:50:44 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: a32g2000yqm.googlegroups.com; posting-host=82.30.110.254; posting-account=_RXWmAoAAADQS3ojtLFDmTNJCT0N2R4U User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_2; en-us) AppleWebKit/531.21.8 (KHTML, like Gecko) Version/4.0.4 Safari/531.21.10,gzip(gfe),gzip(gfe) Xref: g2news1.google.com comp.lang.ada:8515 Date: 2009-12-24T06:50:43-08:00 List-Id: On Dec 24, 12:01=A0am, "(see below)" wrote: > On 23/12/2009 23:44, in article > eeaf5cb6-a582-4c90-a494-bd1714260...@v25g2000yqk.googlegroups.com, "sjw" > wrote: > > On Dec 23, 5:18=A0pm, "(see below)" wrote: > >> On 23/12/2009 14:26, in article [...] > >> Do you have any other versions of GNAT installed in that testing > >> environment? > > > Several! though I'd be surprised if any of them got invoked. Will > > check further. > > What I had in mind was interference between libraries, etc. Each compiler I have installed lives in a different top-level directory. I set my path using $ export PATH=3D/opt/gnat-gpl-2009/bin:/usr/bin:/bin:/usr/sbin:/sbin (ie, the 32-bit Snow Leopard compiler I just released on SF); now I can compile your example without trouble. Did you use more options? nidhoggr:findlay simon$ gnatmake -f test gcc -c test.adb nidhoggr:findlay simon$ gnatmake -f test -O0 gcc -c -O0 test.adb nidhoggr:findlay simon$ gnatmake -f test -O1 gcc -c -O1 test.adb nidhoggr:findlay simon$ gnatmake -f test -O2 gcc -c -O2 test.adb nidhoggr:findlay simon$ gnatmake -f test -O3 gcc -c -O3 test.adb nidhoggr:findlay