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,e5b66358dd7447cf X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-12-30 11:33:14 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: anh_vo@udlp.com (Anh_Vo) Newsgroups: comp.lang.ada Subject: Re: binary gnatgcc 3.3 prerelease available Date: 30 Dec 2002 11:33:14 -0800 Organization: http://groups.google.com/ Message-ID: <5a59d6a9.0212301133.46b0b82e@posting.google.com> References: NNTP-Posting-Host: 65.168.133.252 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1041276794 20204 127.0.0.1 (30 Dec 2002 19:33:14 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: 30 Dec 2002 19:33:14 GMT Xref: archiver1.google.com comp.lang.ada:32395 Date: 2002-12-30T19:33:14+00:00 List-Id: Jerry, Thanks for your effort to make gnatgcc-3.3 available. It worked very well on my PC with Windows 2K. However, it also contains a minor bug because it does not poses any problem from compiling package bodies and linking the main subprograms. The problem occurs when compiling a package specification having corresponding package body. for example, when compiling global.ads, I got this error message. C:\Ada_95\Bugs\gnatgcc-3.3>gcc -c global.ads No code generated for file global.ads (package spec) gcc: Internal error: Aborted (program gnat1) Please submit a full bug report. See for instructions. -- global.ads -- with Interfaces; package Global is pragma Elaborate_Body; type Size_T is new Interfaces.Unsigned_32; end Global; In addition, when testing the examples by invoking make, I got this error c++ -c ex7.C ex7.C: In member function `void A::method1()': ex7.C:9: `printf' undeclared (first use this function) ex7.C:9: (Each undeclared identifier is reported only once for each function it appears in.) make: *** [ex7.o] Error 1 By the way, I used MinGW-2.0.0-3.exe distribution for C++. Happy and healthy new year to all. A. Vo Jerry van Dijk wrote in message news:... > I made a binary mingw version of the gnatgcc 3.3 prerelease available at: > > http://prdownloads.sf.net/mingw/gnatgcc-3.3-pre-20021223.tar.gz > > The mingw page will hopefully be updated next weekend. > > Remember that this version needs to be unpacked in the /gnatgcc directory. > See the readme there for more installation information. > > Note that the mingw build is NOT a straight FSF build, but includes many > mingw specific patches. > > Please report any bugs on GNATLIST or directly to me. Thanks. > > Have a nice christmas... > > gr. > Jerry.