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,99b1e592ddea1442,start X-Google-Attributes: gid103376,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!n20g2000hsh.googlegroups.com!not-for-mail From: david-mamour@hotmail.fr Newsgroups: comp.lang.ada Subject: Ada library, interfacing ADA with C Date: Tue, 18 Dec 2007 05:16:02 -0800 (PST) Organization: http://groups.google.com Message-ID: NNTP-Posting-Host: 83.145.89.123 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: posting.google.com 1197983763 17983 127.0.0.1 (18 Dec 2007 13:16:03 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 18 Dec 2007 13:16:03 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: n20g2000hsh.googlegroups.com; posting-host=83.145.89.123; posting-account=UAVzbAoAAAC5ROxH7bnzBQVBG0SLz3VB User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727),gzip(gfe),gzip(gfe) Xref: g2news1.google.com comp.lang.ada:18982 Date: 2007-12-18T05:16:02-08:00 List-Id: Hello everybody !!! I have to interface ADA with C and I would like to create an ADA library. I read the gnat manual and it is said that i can use gnatmake and a project library. So I use gnatmake: $ gnatmake -Pmy_lib.gpr I get the following message: powerpc-eabispe-gnatbind -n -o b~lib.adb -Llib prog1.ali prog2.ali powerpc-eabispe-gcc -c b~lib.adb building static library for project my_lib powerpc-eabispegnatmake: powerpc-elf-ar not found in path. In fact I haven't powerpc-elf-ar on my computer, so i created a link to it with : ln -s powerpc-eabispe-ar powerpc-elf-ar But the problem is the same and all my PATH are good. My project library my_lib.gpr /******** Library project*****/ project My_Lib is for Source_Dirs use ("SRC"); for Object_Dir use "CGN"; for Library_Name use "lib"; for Library_Dir use "LIB"; for Library_Kind use "static"; end My_lib; Because it didn't work, i tried to create a library with the following command: powerpc-eabispe-ar rc libmy_lib.a prog1.o prog2.o but there is an other problem because gnatlink ask me to supply an ALI file which has a corresponding bind file so I can't create an executable. Could you say me how must I use a library file with gnatlink (which command use) ? I forgot to say you I use Cygwin a Unix emulator.