From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on ip-172-31-65-14.ec2.internal X-Spam-Level: X-Spam-Status: No, score=-0.0 required=3.0 tests=BAYES_40,FREEMAIL_FROM, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Received: by 2002:a05:620a:f86:b0:71f:b8ba:ff45 with SMTP id b6-20020a05620a0f8600b0071fb8baff45mr1579611qkn.3.1677956476119; Sat, 04 Mar 2023 11:01:16 -0800 (PST) X-Received: by 2002:a4a:d5d2:0:b0:525:54b6:dac1 with SMTP id a18-20020a4ad5d2000000b0052554b6dac1mr2332854oot.1.1677956475933; Sat, 04 Mar 2023 11:01:15 -0800 (PST) Path: eternal-september.org!reader01.eternal-september.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Sat, 4 Mar 2023 11:01:15 -0800 (PST) In-Reply-To: Injection-Info: google-groups.googlegroups.com; posting-host=54.93.170.68; posting-account=rmHyLAoAAADSQmMWJF0a_815Fdd96RDf NNTP-Posting-Host: 54.93.170.68 References: <2bee0de5-2d5c-44a7-bdab-a1d266855c96n@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <58842241-09e8-4b35-85ce-5abe12b314bbn@googlegroups.com> Subject: Re: Build order with gprbuild From: AdaMagica Injection-Date: Sat, 04 Mar 2023 19:01:16 +0000 Content-Type: text/plain; charset="UTF-8" Xref: reader01.eternal-september.org comp.lang.ada:64999 List-Id: package Compiler is for Driver ("Fuzzy") use "fuzzy_gen"; end Compiler; I'm still playing around and have problems with the Driver attribute. The documentation says; >Driver: single, indexed, case-insensitive index >Index is a language name. Value is the name of the executable for the compiler of the language. However it does not say where the executable is located, how does gprbuild find it? I moved fuzzy_gen into another directory and changed accordingly for Driver ("Fuzzy") use "path/fuzzy_gen"; Now I get unable to locate fuzzy_gen. How do I solve this problem?