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,b847a4bf21e6829a X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-10-13 22:19:52 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!wn14feed!worldnet.att.net!204.127.198.203!attbi_feed3!attbi_feed4!attbi.com!sccrnsc01.POSTED!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: windows ada compiler error REferences: X-Newsreader: Tom's custom newsreader Message-ID: NNTP-Posting-Host: 12.234.124.41 X-Complaints-To: abuse@comcast.net X-Trace: sccrnsc01 1066108791 12.234.124.41 (Tue, 14 Oct 2003 05:19:51 GMT) NNTP-Posting-Date: Tue, 14 Oct 2003 05:19:51 GMT Organization: Comcast Online Date: Tue, 14 Oct 2003 05:19:51 GMT Xref: archiver1.google.com comp.lang.ada:801 Date: 2003-10-14T05:19:51+00:00 List-Id: >red hat 9.0 linux computer it runs just fine.. but if I try to compile >it on a windows xp computer I get the following error. I think you mean it compiles fine, but it doesn't execute fine. >raised ADA.IO_EXCEPTION.NAME_ERROR : s-fileio.adb:869 You might look at file s-fileio.adb, line 869, and see what it's trying to do. Better yet, use the Gnat facilities for printing a walkback so it will show what line of your program caused the problem. I used a compiler that prints walkbacks of user, not library, code and got: ** Unhandled ADA.IO_EXCEPTIONS.NAME_ERROR File not found on open - Map On Line Number 159 In MAZECREATE You probably want a Create, not an Open. Your prof or TA should be helping you out.