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=unavailable autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: Error in installing AWS on windows Date: Fri, 26 Aug 2016 18:30:48 +0100 Organization: A noiseless patient Spider Message-ID: References: <1472151385.16907.56.camel@obry.net> <6c6fa25f-f4fb-430c-a73b-957477bf1805@googlegroups.com> <1472155206.16907.59.camel@obry.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Info: mx02.eternal-september.org; posting-host="5267241106bfbad1cae7e8b738bf59f6"; logging-data="24407"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19HIq4WVr4JBZTFTL14cAczvK+GTeQlSnU=" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (darwin) Cancel-Lock: sha1:vnmrMKXVL8I31AuAL6DT7jejpTg= sha1:YTDzzdeakHfkT4cGujz9mGsO0x0= Xref: news.eternal-september.org comp.lang.ada:31594 Date: 2016-08-26T18:30:48+01:00 List-Id: Björn Lundin writes: > On 2016-08-26 12:27, pideltachange@gmail.com wrote: >> On another note, I'm not able to call any of the xml/ada >> packages. I'm inferring the packages will have to be built prior to >> building out the aws. However, I thought I did see a static lib of >> xmlada_etc (.a file) in GNAT/2016/LIB directory. >> >> Or did I miss something when I install gnat-gpl window executable? > > You need > > with "xmlada_schema"; > with "xmlada_dom"; > with "xmlada_input"; > with "xmlada_sax"; > with "xmlada_unicode"; > > in your gpr file You should really only need the one with: I have one with with "asis"; with "xmlada"; project ASIS2XML is because, in (here) /opt/gnat-gpl-2016/lib/gnat/xmlada.gpr I see -- Project file for use of XML/Ada. -- Put the directory that contains xmlada.gpr in your ADA_PROJECT_PATH -- variable. Then, in our own project file, add a "with" dependency on -- "xmlada.gpr". with "xmlada_unicode", "xmlada_sax", "xmlada_input", "xmlada_dom"; with "xmlada_schema"; project Xmlada is for Source_Dirs use (); end Xmlada;