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,adf721d80d71e381 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-02-08 10:15:18 PST Path: supernews.google.com!sn-xit-02!sn-xit-04!supernews.com!newsfeed.mesh.ad.jp!osa.uu.net!sac.uu.net!usenet.rational.com!not-for-mail From: "Greg Bek" Newsgroups: comp.lang.ada Subject: Re: [GNAT:GLIDE] Failure to compile Date: Thu, 8 Feb 2001 10:13:15 -0800 Organization: Rational Software Message-ID: <95unj1$dhs$1@usenet.rational.com> References: <95s8lp$b4$1@nnrp1.deja.com> NNTP-Posting-Host: ext-2157.rational.com X-Newsreader: Microsoft Outlook Express 4.72.2106.4 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4 Xref: supernews.google.com comp.lang.ada:5008 Date: 2001-02-08T10:13:15-08:00 List-Id: aschw1309@my-deja.com wrote in message <95s8lp$b4$1@nnrp1.deja.com>... >Environment: GNAT-3.13p-sparc-sun-solaris2.5.1-bin > Solaris 2.5.1 on Sun > emacs-20.6 > glide-3.13p > > >..... > - One of the Rational libraries has a terminal '_' which > is rejected by GNAT. (/.../standard_.1.ada). Any idea > if there is a workaround or should I just delete the > reference and hope for the best. (Maybe move it to a > 'tame' directory and rename it to 'standard.1.ada' or use > a link or some such.) > Package Standard is the "magic" Ada package that provides a context within which all Ada units are compiled. Standard contains the definitions of such things like: Integer, Natural, Float, Character, Wide_Character, Ascii etc. All compilers have Standard somewhere, but not always as source code. Rational delivers Standard as source code with Apex, but it does have that special file name, so that you can use the normal browsing commands etc. to see the declarations in the package. Similarly, you shouldn't try to compile the Apex Text_Io source with GNAT, instead use the Text_Io that comes with GNAT. As a basic rule, you should not migrate anything under the lrm.ss, predefined.ss, rational.ss subsystems. Greg