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: a07f3367d7,222ed89632aabb93 X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.66.88.5 with SMTP id bc5mr1510960pab.11.1342999953543; Sun, 22 Jul 2012 16:32:33 -0700 (PDT) Path: p10ni34677856pbh.1!nntp.google.com!border1.nntp.dca.giganews.com!border4.nntp.dca.giganews.com!border2.nntp.dca.giganews.com!nntp.giganews.com!ctu-peer!ctu-gate!news.nctu.edu.tw!usenet.stanford.edu!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail From: Ada novice Newsgroups: comp.lang.ada Subject: Re: Free AMD Core Math Library (BLAS/LAPACK) + Ada Date: Mon, 16 Jul 2012 04:15:40 -0700 (PDT) Organization: http://groups.google.com Message-ID: <86d23d75-ed73-4668-b30f-1c2c70f8ddb9@googlegroups.com> References: <41b74e89-f112-4791-883d-236080652dbf@googlegroups.com> <7cadf109-e24a-45eb-9d7c-354d8899eec4@googlegroups.com> <3f14ee5a-d055-4252-ab45-7ca512a23fac@googlegroups.com> <9cc53435-3c7f-4443-8209-5137b9377aca@googlegroups.com> <583b29e2-3f75-4b0a-8f1a-802b3d6e502c@googlegroups.com> <34139f6f-5905-4c9e-a873-0b2445a1fccd@googlegroups.com> <87txx8yl8t.fsf@ludovic-brenta.org> <87pq7wyek7.fsf@ludovic-brenta.org> <16a6786f-6de5-49c4-90b7-a55cb238d52a@googlegroups.com> <509991f4-bcb4-45a0-84f3-b8393db64da4@googlegroups.com> NNTP-Posting-Host: 193.11.21.204 Mime-Version: 1.0 X-Trace: posting.google.com 1342437340 14518 127.0.0.1 (16 Jul 2012 11:15:40 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Mon, 16 Jul 2012 11:15:40 +0000 (UTC) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=193.11.21.204; posting-account=Rr9I-QoAAACS-nOzpA-mGxtAlZ46Nb6I User-Agent: G2/1.0 Content-Type: text/plain; charset=ISO-8859-1 Date: 2012-07-16T04:15:40-07:00 List-Id: More message actions 12:14 PM (1 hour ago) On Monday, July 16, 2012 10:27:16 AM UTC+1, Simon Wright wrote: > What you need is the libgfortran.so.3 that lapack was actually linked > against. You only need libgfortran.so if you are going to develop in > Fortran. I can link against liblapack.so without needing gfortran > installed. libfortran.so.3 then requires the libgfortran3 package. In step 11 from Nasser's page: http://12000.org/my_notes/ada/index.htm He created a symlink as libgfortran.so is required. So he links /usr/lib/i386-linux-gnu/libfortran.so to point to /usr/lib/i386-linux-gnu/libgfortran.so.3 What's the difference between the .so and the .so.3 file? But I am thinking to install the gfortran-4.4 package since then I can test these programs also: http://www.nag.com/lapack-ex/lapack-ex.html where example fortran programs are given as well. I hope that I do not mess things up. Installing gfortran-4-4 will give me libgfortran.so directly and I "will" be able to test example fortran programs as well. YC