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,5cedbcafd5ae3ee1 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-07-02 06:24:25 PST Path: archiver1.google.com!newsfeed.google.com!newsfeed.stanford.edu!feed.textport.net!hammer.uoregon.edu!skates!not-for-mail From: Stephen Leake Newsgroups: comp.lang.ada Subject: Re: Problem with glade Date: 02 Jul 2001 09:20:08 -0400 Organization: NASA Goddard Space Flight Center Message-ID: References: <9ff447f2.0106302111.31eddaee@posting.google.com> NNTP-Posting-Host: anarres.gsfc.nasa.gov Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: skates.gsfc.nasa.gov 994081019 12658 128.183.220.71 (2 Jul 2001 13:36:59 GMT) X-Complaints-To: dscoggin@cne-odin.gsfc.nasa.gov NNTP-Posting-Date: 2 Jul 2001 13:36:59 GMT User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.6 Xref: archiver1.google.com comp.lang.ada:9326 Date: 2001-07-02T13:36:59+00:00 List-Id: byhoe@greenlime.com (Adrian Hoe) writes: > Hello, > > I downloaded a copy of glade-3.11p and when I was trying to compile it > on Intel/Linux (Caldera OpenLinux 2.3) with GNAT-3.11p, it gave a > warning message: > > debug.ads:36:06: warning: no entities of "Types" are referenced > gnatmake: "../ada/debug.adb" compilation error > > There is no problem when I compiled other units such as ali.adb which > also uses Types. > > I could not determine what is the cause of this warning with ARM. > > Can someone kindly shed some lights to me? This is a friendly message from GNAT, informing you that there is an unnecessary "with Types" clause in file 'debug.ads'. Since it is a "warning", not an "error", you can ignore it. Or you can simply delete the offending "with types", and recompile. GNAT often adds checks in new versions that find minor inconsistencies like this in old code; apparently the glade 3.11p release was not carefully checked with the gnat-3.11p compiler. -- -- Stephe