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.129.51.197 with SMTP id z188mr60729201ywz.7.1470246077683; Wed, 03 Aug 2016 10:41:17 -0700 (PDT) X-Received: by 10.157.10.77 with SMTP id 71mr423615otg.15.1470246077644; Wed, 03 Aug 2016 10:41:17 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!news.eternal-september.org!feeder.eternal-september.org!usenet.blueworldhosting.com!feeder01.blueworldhosting.com!peer03.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!c52no6780712qte.1!news-out.google.com!d130ni23634ith.0!nntp.google.com!f6no7100147ith.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Wed, 3 Aug 2016 10:41:16 -0700 (PDT) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=81.50.179.46; posting-account=94GLqQoAAABRDKJ5vWVBzCDWAEq47F5V NNTP-Posting-Host: 81.50.179.46 References: User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: cocor_ada: Sets, FileIO? From: p.p11@orange.fr Injection-Date: Wed, 03 Aug 2016 17:41:17 +0000 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Received-Bytes: 2559 X-Received-Body-CRC: 1936607209 Xref: news.eternal-september.org comp.lang.ada:31276 Date: 2016-08-03T10:41:16-07:00 List-Id: Hello Frank, Sets and FileIO packages depend on a Posix Ada Library like Florist. For MacOS I propose prebuilt libraries XAdaLib on: https://sourceforge.net/projects/gnuada/files/GNAT_GPL%20Mac%20OS%20X/2015-= mavericks/ Then you may go further with a very simple GNAT acr.gpr project file: with "florist"; project ACR is for Main use ("cr.adb"); package Builder is for Executable ("cr.adb") use "acr"; end Builder; end ACR; Then: $ gprbuild -P acr.gpr -aP /usr/local/xnadalib-2016/share/gpr gcc -c fileio.adb fileio.adb:529:16: warning: index for "ext" may assume lower bound of 1 fileio.adb:529:16: warning: suggested replacement: "ext'First" fileio.adb:529:42: warning: index for "ext" may assume lower bound of 1 fileio.adb:529:42: warning: suggested replacement: "ext'First" gcc -c sets.adb gprbind cr.bexch gnatbind cr.ali gcc -c b__cr.adb gcc cr.o -o acr $ ./acr Coco/R (Linux) - Compiler-Compiler V-1.53.1 Released by O.Havva 11 January 2005 Input Grammar_Name not present COCOR ? gives short help screen What language do you plan to process with Coco/R? HTH, Pascal. Le mercredi 3 ao=C3=BBt 2016 10:28:36 UTC+2, hreba a =C3=A9crit=C2=A0: > Searching the web I found an entry www.ada-ru.org > which is a link to > http://www.ada-ru.org/files/cocor_ada-1.53.1.tar.gz >=20 > This is the package I installed. >