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,e4e4e52c2b6b0777 X-Google-Attributes: gid103376,public From: brashear@ns1.sw-eng.falls-church.va.us (Philip Brashear) Subject: Re: gnat3.10 Win95 saya command line not part of Ada Date: 1997/09/24 Message-ID: <60asmu$lh8@ns1.sw-eng.falls-church.va.us>#1/1 X-Deja-AN: 275132556 References: Organization: None Newsgroups: comp.lang.ada Date: 1997-09-24T00:00:00+00:00 List-Id: In article , William Paul Berriss wrote: > >Hi > >I have GNAT3.10 for win95 and I cannot quite get it working. >Bascially, when I commpile a program that uses Ada.Command_Line >it says that Command_Line is not a precompiled library thingy. When I've had a similar problem, it's because I did not use the full name, and the above hints that you might have done the same. That is, you must refer to the package as "Ada.Command_Line" in all occurrences (or use a "renames"). In my case, I often have "with Ada.Text_IO;" and then, in my code, write "Text_IO.Put_Line ... ". I get a complaint that Text_IO is not recognized. (Yes, that's a kind of dumb thing for me to do, but I do it anyway.) Good luck! Phil Brashear