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=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,f96b82f9bd22d18a X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.224.219.144 with SMTP id hu16mr11554702qab.1.1353440911973; Tue, 20 Nov 2012 11:48:31 -0800 (PST) Received: by 10.49.58.140 with SMTP id r12mr3697160qeq.35.1353440911950; Tue, 20 Nov 2012 11:48:31 -0800 (PST) Path: gf5ni2754062qab.0!nntp.google.com!i9no1068160qap.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Tue, 20 Nov 2012 11:48:31 -0800 (PST) In-Reply-To: <253677668362437683.864049rm-host.bauhaus-maps.arcor.de@news.arcor.de> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=81.81.97.146; posting-account=gBqXowoAAADtwy-lTtThITzjfIOaxAwo NNTP-Posting-Host: 81.81.97.146 References: <253677668362437683.864049rm-host.bauhaus-maps.arcor.de@news.arcor.de> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: how to fix crt1.o: No such file or directory (link error for gnat)? after installing gnat 2012 on linux From: giorgio.piantella@gmail.com Injection-Date: Tue, 20 Nov 2012 19:48:31 +0000 Content-Type: text/plain; charset=ISO-8859-1 Date: 2012-11-20T11:48:31-08:00 List-Id: > > >> export LIBRARY_PATH=/usr/lib/i386-linux-gnu/ > attention depends of your system because depends from where is the file crt1.o I recommend: $ locate crt1.o ... /usr/lib/debug/usr/lib32/ ... /usr/lib/x86_64-linux-gnu/Mcrt1.o /usr/lib/x86_64-linux-gnu/Scrt1.o /usr/lib/x86_64-linux-gnu/crt1.o --------------------------^^^^^^ /usr/lib/x86_64-linux-gnu/gcrt1.o ... required to locate the path of the file and then the correct invocation of export is: $ export LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/