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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,9a8547d5b2e10418 X-Google-Attributes: gid103376,public From: "Ed Falis" Subject: Re: ads file not found Date: 1998/02/14 Message-ID: #1/1 X-Deja-AN: 325142658 Sender: news@sd.aonix.com (USENET News Admin @flash) X-Nntp-Posting-Host: 192.157.137.14 References: <34E5C031.1AD45111@iinet.net.au> <01bd397b$dee126a0$0e2915c0@p5120> X-Mimeole: Produced By Microsoft MimeOLE Engine V4.71.1008.4 Organization: Aonix, San Diego, CA, USA Newsgroups: comp.lang.ada Date: 1998-02-14T00:00:00+00:00 List-Id: It's also worth pointing out to the person asking the question (and casual observers) that this is not an Ada issue, but a specific compiler issue, so taking the oft-mentioned advice - RTFM (read the manual). - Ed Falis Aonix bklungle wrote in article <01bd397b$dee126a0$0e2915c0@p5120>... >Assuming you really are a beginner and this is not a pre-April fools joke, >the message you are getting implies that you have created a file such as >"filename.adb" which contains the phrase "package body filename is ..... >end filename;". The Ada compiler then assumes the existence of a >corresponding "filename.ads" which contains the phrase "package filename is >.... end filename:". This is called the filename package specification and >should contain the definitions and object declarations you want to export >to the external world (some other package uses your packages objects). A >real simple example follows: