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=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,c1bdceb867926fdb X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII Path: g2news1.google.com!postnews.google.com!t2g2000yqe.googlegroups.com!not-for-mail From: Ada novice Newsgroups: comp.lang.ada Subject: Re: Interfacing Ada with C Date: Fri, 30 Jul 2010 14:08:09 -0700 (PDT) Organization: http://groups.google.com Message-ID: References: <0ee9eec7-6024-4fb8-8df0-f65c146e4b84@i28g2000yqa.googlegroups.com> <143ef70b-7e74-426b-a621-a5fd157849be@x21g2000yqa.googlegroups.com> <317a22bc-3fff-4036-8945-8a61befab2eb@c10g2000yqi.googlegroups.com> <0b4752f2-411e-4f82-835a-8a46adaf2ff4@5g2000yqz.googlegroups.com> NNTP-Posting-Host: 193.11.22.91 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1280524090 2742 127.0.0.1 (30 Jul 2010 21:08:10 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Fri, 30 Jul 2010 21:08:10 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: t2g2000yqe.googlegroups.com; posting-host=193.11.22.91; posting-account=Rr9I-QoAAACS-nOzpA-mGxtAlZ46Nb6I User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8 (.NET CLR 3.5.30729),gzip(gfe) Xref: g2news1.google.com comp.lang.ada:12743 Date: 2010-07-30T14:08:09-07:00 List-Id: On Jul 30, 9:41=A0pm, "John B. Matthews" wrote: > > I think you may be looking at [raw] [diff] (difference) files. Thanks. I have been able to locate the correct set of files. Opening test_extensions.gpr in GPS gives me the following error messages: [2010-07-30 22:54:16] E:\\ada\numerics\simon\jul29\test_extensions.gpr: 15:06: unknown project file: "../src/ada_math_build" [2010-07-30 22:54:16] Error while loading project 'E:\ada\numerics \simon\jul29\test_extensions.gpr'. Loading the default project. I've tried to compile the source ads file (Ada.Numerics.Generic_Complex_Arrays.Extensions.ads) in AdaGIDE and I get the warning: 22. package Ada.Numerics.Generic_Complex_Arrays.Extensions is | >>> warning: file name does not match unit name, should be "a- ngcaex.ads" and I get an error message with Ada.Numerics.Generic_Complex_Arrays.Extensions.adb on compiling: 25. 26. package body Ada.Numerics.Generic_Complex_Arrays.Extensions is | >>> descendents of package Ada may not be compiled Note: for the source files adb and ads the name is ada-numerics- generic_complex_arrays-extensions. Should it be ada-numerics- generic_complex_arrays.extensions (with a dot between "arrays" and "extensions" instead)? YC