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-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,cfdd65467559ea53,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-05-05 18:12:53 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: aussie2010@yahoo.com (Chris) Newsgroups: comp.lang.ada Subject: GNAT problem Date: 5 May 2003 18:12:52 -0700 Organization: http://groups.google.com/ Message-ID: <435d40e0.0305051712.500524d4@posting.google.com> NNTP-Posting-Host: 192.35.35.35 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1052183572 5338 127.0.0.1 (6 May 2003 01:12:52 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: 6 May 2003 01:12:52 GMT Xref: archiver1.google.com comp.lang.ada:36994 Date: 2003-05-06T01:12:52+00:00 List-Id: I was successfully using GNAT with AdaGIDE on Windows 2000. I went to compile a small test program today and it would not compile. I have tried uninstallling, deleting directories, and reinstalling the programs but fomr some reason I continue to get an error that "da compiler not installed on this system"?? Here is what I see in AdaGIDE output: Building... GNATMAKE 3.15p (20020523) Copyright 1995-2002 Free Software Foundation, Inc "helloworld.ali" being checked ... -> "helloworld.ali" missing. gcc -c -Ic:/ada/test/ -gnatwu -gnato -IC:\ada\test -g -I- c:/ada/test/helloworld.adb gcc.exe: c:/ada/test/helloworld.adb: Ada compiler not installed on this system gnatmake: "helloworld.ali" WARNING: ALI or object file not found after compile End of compilation gnatmake: "c:/ada/test/helloworld.adb" compilation error Done--error detected. __________________________________________________ Here is the program: with "Text_Io"; PROCEDURE HelloWorld IS -- i : Integer; begin Test_Io.Put("Hello World"); END HelloWorld;