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=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,959d44d0a56995bc,start X-Google-Attributes: gid103376,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!y43g2000hsy.googlegroups.com!not-for-mail From: Kevin.Marciniak@gmail.com Newsgroups: comp.lang.ada Subject: using jGRASP to compile Ada Date: Fri, 30 Nov 2007 08:29:54 -0800 (PST) Organization: http://groups.google.com Message-ID: <65cf3d5f-bd31-4b09-a963-810d9510bb65@y43g2000hsy.googlegroups.com> NNTP-Posting-Host: 205.196.224.139 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: posting.google.com 1196440194 5567 127.0.0.1 (30 Nov 2007 16:29:54 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Fri, 30 Nov 2007 16:29:54 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: y43g2000hsy.googlegroups.com; posting-host=205.196.224.139; posting-account=z-J6MgoAAAC4VaoBeY8qA6ASvZ39PNmG User-Agent: G2/1.0 X-HTTP-UserAgent: Opera/9.23 (Windows NT 5.1; U; en),gzip(gfe),gzip(gfe) Content-Disposition: inline Xref: g2news1.google.com comp.lang.ada:18676 Date: 2007-11-30T08:29:54-08:00 List-Id: I'm trying to use jGRASP to compile, but I get the following error: ----jGRASP exec: gnatmake -g hello_world.adb gcc -c -g hello_world.adb gcc.exe: CreateProcess: No such file or directory gnatmake: "hello_world.adb" compilation error ----jGRASP wedge2: exit code for process is 4. ----jGRASP: operation complete. This is on a Windows XP Pro machine. And the Windows system path includes the folder where gnatmake and gcc are, but I don't understand why its giving me this error. I also put the Ada source file in the same directory, but same result. Source: with Text_IO; procedure Hello_World is begin Text_IO.Put_Line("Hello World!"); end Hello_World; I also checked the Settings->Compiler Settings->Workspace for Ada and its using the compiler that I have in the system path. Any help would be great. Thanks.