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 10.200.39.1 with SMTP id g1mr13731284qtg.17.1465849554948; Mon, 13 Jun 2016 13:25:54 -0700 (PDT) X-Received: by 10.157.29.3 with SMTP id m3mr67500otm.2.1465849554912; Mon, 13 Jun 2016 13:25:54 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!mx02.eternal-september.org!feeder.eternal-september.org!news.glorb.com!p34no6487425qgp.1!news-out.google.com!v8ni362qgv.0!nntp.google.com!p34no6487422qgp.1!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Mon, 13 Jun 2016 13:25:54 -0700 (PDT) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=71.171.109.232; posting-account=vk6_JwoAAABkMyHO1YfdP69Hm3CpbdGR NNTP-Posting-Host: 71.171.109.232 References: <4a015e82-e236-494e-b26f-40132a342542@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <839548d2-6efb-47dd-b5d5-02405810b258@googlegroups.com> Subject: Re: Creating a GPR file to use a custom built runtime library From: Jeremiah Injection-Date: Mon, 13 Jun 2016 20:25:54 +0000 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Xref: news.eternal-september.org comp.lang.ada:30720 Date: 2016-06-13T13:25:54-07:00 List-Id: On Monday, June 13, 2016 at 3:56:37 PM UTC-4, Simon Wright wrote: > Jeremiah writes: >=20 > > package Builder is > > for Default_Switches ("ada") use ("--RTS=3D../zfp-atsaml21j18"); > > End Builder; >=20 > I'm fairly sure that your version of gprbuild needs to see an absolute > directory here. You can get this by saying >=20 > package Builder is > for Default_Switches ("ada") use > ("--RTS=3D" & project'Project_Dir & "../zfp-atsaml21j18"); > end Builder; >=20 > or you could say >=20 > for Runtime ("ada") use project'Project_Dir & "../zfp-atsaml21j18"; This fixed it for me. Thank you!. =20 Side note: I just realized that it was one of your runtimes that I started = with. In the future, if I have any questions about the runtime in particul= ar, would it be more appropriate to post them to comp.lang.ada or via direc= t email (or if it is inappropriate either way, let me know...I found it via= google)?