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,XPRIO autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,b1cf4428bf3b72a4,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news1.google.com!news.glorb.com!news.tele.dk!news.tele.dk!small.news.tele.dk!uninett.no!newsfeed1.eu.ignite.net!newsr1.ipcore.viaginterkom.de!news-peer1!btnet-feed3!btnet!itchen!hamble.qinetiq.com!not-for-mail From: "Harry Overs" Newsgroups: comp.lang.ada Subject: library files Date: Thu, 5 Aug 2004 14:54:43 +0100 Organization: QinetiQ Message-ID: NNTP-Posting-Host: 10.176.81.216 X-Trace: hamble.qinetiq.com 1091714029 8485 10.176.81.216 (5 Aug 2004 13:53:49 GMT) X-Complaints-To: postmaster@qinetiq.com NNTP-Posting-Date: Thu, 5 Aug 2004 13:53:49 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Xref: g2news1.google.com comp.lang.ada:2579 Date: 2004-08-05T14:54:43+01:00 List-Id: Hi, we've got some legacy Ada source code which we want to compile into a library which will be accessed using a MS VC++ application. Although we've managed to compile the ada code and turn the .o files into a library when it comes to linking the C++ program we get thousands of errors which seem to relate to system calls within the library (i.e. put method). Do we need to do anything 'special' whilst creating the library or the object files? at present we just use (from the command line): ar r myLib.lib *.o many thanks,