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-Thread: 103376,d92cd733dc93e4e4,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Newsgroups: comp.lang.ada Subject: Gnat 3.15p @ win-2000 recompiles _all_ internal packages ... From: M E Leypold Date: 28 May 2006 01:24:44 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Some cool user agent (SCUG) NNTP-Posting-Host: 88.72.239.131 X-Trace: news.arcor-ip.de 1148771994 88.72.239.131 (28 May 2006 01:19:54 +0200) X-Complaints-To: abuse@arcor-ip.de Path: g2news2.google.com!news1.google.com!news3.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!newscon06.news.prodigy.com!prodigy.net!newsfeed-00.mathworks.com!kanaga.switch.ch!switch.ch!newsfeed00.sul.t-online.de!newsfeed01.sul.t-online.de!t-online.de!newsfeed.arcor-ip.de!news.arcor-ip.de!not-for-mail Xref: g2news2.google.com comp.lang.ada:4558 Date: 2006-05-28T01:24:44+02:00 List-Id: Hi, I've the following setup(s): - GNAT 3.15p at Sarge (Debian 3.1) and at Windows 2000 Professional. - I'm using Martin Dowies Ada95 port of Ada.Containers (which can be found here: http://www.martin.dowie.btinternet.co.uk). I didn't want to install Ada.Containers as precompiled packages (*.ali- and *.o-Files I mean) since I found some minor buglets in the code and want to correct them when I find them. Instead I use -I... as switch to gnatmake to point gnat make to the source distribution. - Of course then Ada.Containers doesn't recompile because its in the Ada.* package hierarchy and therefore considered 'internal' by Gnat. I therefore also give the switch -a to Gnat, which according to gnat_ug should incite gnatmake to "Consider all files in the make process, even the GNAT internal system files". As I understood that, gnatmake should only remake the internal packages in this situation if the corresponding *.ali- and *.o-Files are not up to date. Actually that is not what happens: Under Debian it works as I expected, but under Windows a lot of internal packages are recompiled to project-local *.ali and *.o files. It is almost as if gnatmake can't see the packages in .../lib/adalib/. All installed files in .../lib/adalib/ are (as far as I can see) much younger then the sources in .../lib/adainclude/. So that doesn't seem to be the reason why things go wrong. Does anybody here have an idea what I'm missing? Regards -- Markus