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=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,f0bea306882c2a15,start X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news2.google.com!news.glorb.com!feeder.erje.net!feeder2.ecngs.de!ecngs!feeder.ecngs.de!Xl.tags.giganews.com!border1.nntp.ams.giganews.com!nntp.giganews.com!local2.nntp.ams.giganews.com!nntp.brightview.co.uk!news.brightview.co.uk.POSTED!not-for-mail NNTP-Posting-Date: Sat, 30 Apr 2011 03:13:32 -0500 Content-Type: text/plain; charset="ISO-8859-1" From: Robert Matthews Date: Sat, 30 Apr 2011 09:15:34 +0100 User-Agent: KNode/4.4.9 Content-Transfer-Encoding: 7Bit Newsgroups: comp.lang.ada Subject: Problem referencing library file via project file Followup-To: comp.lang.ada MIME-Version: 1.0 Message-ID: X-Usenet-Provider: http://www.giganews.com X-Trace: sv3-gHjWozOJBsL7z6G4TGCi1Ev/pvW35SUneGd5AhJL4i7Xlx9w37ONlbXP8jQXTyT613lfajp5LnmzXI3!kMxIHtH+SEaoaKbc9dd6inNenYu7MmzTPBcintNn4aR6webdTc/IRJ4iAC91e8K9G3LzTvrJnx3V!Nl9Xw/3tWyMaUfxHjNFSxl7n X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.40 X-Original-Bytes: 1444 Xref: g2news1.google.com comp.lang.ada:19096 Date: 2011-04-30T09:15:34+01:00 List-Id: I am trying to link the webkit library file with my program. One way that works is to use: pragma Linker_Options ("-lwebkit-1.0"); in my source file. However I would like to specify this in the program's project file. I have tried: package Linker is for Default_Switches ("ada") use ("-lwebkit-1.0"); end Linker; but this seems to be ignored - I just get undefined reference messages from gnatlink. Please help! Robert Matthews