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,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 2002:a24:294f:: with SMTP id p76mr4585410itp.34.1549056387886; Fri, 01 Feb 2019 13:26:27 -0800 (PST) X-Received: by 2002:aca:5395:: with SMTP id h143mr296994oib.6.1549056387702; Fri, 01 Feb 2019 13:26:27 -0800 (PST) Path: eternal-september.org!reader01.eternal-september.org!feeder.eternal-september.org!goblin3!goblin1!goblin.stu.neva.ru!q69no330961itb.0!news-out.google.com!v71ni420ita.0!nntp.google.com!k10no329911itk.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Fri, 1 Feb 2019 13:26:27 -0800 (PST) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=85.168.19.89; posting-account=O_NgcgoAAABs6pgCjroQBmOBL5ZZGPUc NNTP-Posting-Host: 85.168.19.89 References: <987a6ff2-32d0-45a0-b90a-be9fbf1ff47b@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <62cfed2a-f9b8-4df4-be2f-af3b9343cc66@googlegroups.com> Subject: Re: Yet another gnat bug From: George Shapovalov Injection-Date: Fri, 01 Feb 2019 21:26:27 +0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Xref: reader01.eternal-september.org comp.lang.ada:55423 Date: 2019-02-01T13:26:27-08:00 List-Id: On Friday, February 1, 2019 at 9:41:08 PM UTC+1, Simon Wright wrote: > but I get >=20 > $ gprbuild -p -P wann > wann.gpr:5:32: "../../libs/ada_common/src" is not a valid directory > gprbuild: "wann" processing failed Oops, that's a stale import of an extra lib I thought to use at one point b= ut then rolled back. Apparently I forgot to remove the path, and I obviousl= y still have that lib on my system, even if its not withed any more..=20 Removed, you should be able to proceed now. Sorry about that. One other note: at first build the compiler may complain about missing obj/= dbg dir. Please just run: mkdir -p obj/dbg=20 from the project dir (not src, one level above it). I have obj/ in .gitignore to prevent it tracking generated files (and git t= ends to ignore the entire dir, not just its contents. At least my very shor= t attempts to force it to ignore obj/* but not obj/ itself did not succeed.= I preferred the annoyance of running once the mkdir command over spending = more time trying to beat git when I set it up).=20 Thanks for your attempt! George