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,72b4405f73db889f X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-05-21 06:12:12 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!news.airnews.net!cabal11.airnews.net!cabal1.airnews.net!news-f.iadfw.net!usenet From: "John R. Strohm" Newsgroups: comp.lang.ada Subject: Re: Prebuilt version of gcc 3.1 with Ada as an additional package for windows Date: Tue, 21 May 2002 08:05:55 -0700 Organization: Airnews.net! at Internet America Message-ID: <737EB0EF36381A58.18613047C7A2E3A7.2E42F852FB4527DA@lp.airnews.net> X-Orig-Message-ID: References: Abuse-Reports-To: abuse at airmail.net to report improper postings NNTP-Proxy-Relay: library1-aux.airnews.net NNTP-Posting-Time: Tue May 21 08:11:31 2002 NNTP-Posting-Host: !Z>r&1k-YGfaPhJ (Encoded at Airnews!) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4522.1200 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Xref: archiver1.google.com comp.lang.ada:24458 Date: 2002-05-21T08:05:55-07:00 List-Id: Stupid question. The files are all packed up in .tar.gz GZIP archives. What is an appropriate Windows utility for opening them? Where can I get it? If I actually succeed in getting things working, I'll write up the procedure and the list of necessary files. "Sune Falck" wrote in message news:TxeG8.8178$p56.2336358@newsb.telia.net... > The mingw project www.mingw.org has made available prebuilt > gcc 3.1 core, gcc 3.1 Ada, binutils and other support files at > > http://sourceforge.net/project/showfiles.php?group_id=2435 > > Sune Falck > > PS A simple test showed that gcc Ada had problems finding the > system files - maybe because I had installed in a nonstandard > location. > > Defining ADA_INCLUDE_PATH and ADA_OBJECTS_PATH pointing > to the library files solked the problem and a simple hello world > program compiled and run without any problems. > > C:\data\msys>set > ADA_INCLUDE_PATH=c:\data\msys\lib\gcc-lib\mingw32\3.1\adainclude > C:\data\msys>set > ADA_OBJECTS_PATH=c:\data\msys\lib\gcc-lib\mingw32\3.1\adalib > C:\data\msys>PATH c:\data\msys\bin;%path% > C:\data\msys>gnatmake -v -f atest > > GNATMAKE 3.1 (20020501) Copyright 1995-2001 Free Software Foundation, Inc. > gcc -c atest.adb > End of compilation > gnatbind -x atest.ali > gnatlink atest.ali > > C:\data\msys>atest > Hello from Ada > > >