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.66.146.65 with SMTP id ta1mr4315760pab.19.1377516087099; Mon, 26 Aug 2013 04:21:27 -0700 (PDT) X-Received: by 10.49.24.132 with SMTP id u4mr1600qef.17.1377516086765; Mon, 26 Aug 2013 04:21:26 -0700 (PDT) Path: border1.nntp.ams.giganews.com!nntp.giganews.com!feeder.erje.net!us.feeder.erje.net!nntp.club.cc.cmu.edu!newsfeed.news.ucla.edu!usenet.stanford.edu!pt2no30905881pbb.0!news-out.google.com!z6ni17653pbu.0!nntp.google.com!q10no903639qai.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Mon, 26 Aug 2013 04:21:26 -0700 (PDT) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=2a02:120b:2c10:cb40:ece3:72ab:d0b3:5f1c; posting-account=gRqrnQkAAAAC_02ynnhqGk1VRQlve6ZG NNTP-Posting-Host: 2a02:120b:2c10:cb40:ece3:72ab:d0b3:5f1c References: <167c4830-c8f9-48d3-9850-b1772c2aa452@googlegroups.com> <85k3j9fdq1.fsf@stephe-leake.org> <88b6ef16-7473-44a8-95fa-1115be6eac2c@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <5fd11c27-12dc-44cd-a0e2-dfc0204a54b6@googlegroups.com> Subject: Re: [GNAT] compiler options ignored for sources from ADA_INCLUDE_PATH From: gautier_niouzes@hotmail.com Injection-Date: Mon, 26 Aug 2013 11:21:26 +0000 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Date: 2013-08-26T04:21:26-07:00 List-Id: Le lundi 26 ao=FBt 2013 09:37:41 UTC+2, Simon Wright a =E9crit=A0: > What are these special compiler options that mean you have to go to all > this trouble? ... Only fully normal options: in a "Fast" mode, optimisations and less checks,= in a "Debug" mode, the most checks possible, including overflow checks and= validity checks. > Anyway, if you're using a recent GNAT, consider external_as_list[1] in > your own project file: >=20 > for Source_Dirs use (".") & external_as_list("ADA_SOURCE_PATH", ":"); =20 Thanks *a lot*, it is exactly what I need! G.