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=2.0 required=5.0 tests=BAYES_00,FORGED_MUA_MOZILLA, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,222ed89632aabb93 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.220.230 with SMTP id pz6mr22563069pbc.3.1341869818772; Mon, 09 Jul 2012 14:36:58 -0700 (PDT) Path: l9ni11236pbj.0!nntp.google.com!news2.google.com!goblin2!goblin.stu.neva.ru!aioe.org!.POSTED!not-for-mail From: "Nasser M. Abbasi" Newsgroups: comp.lang.ada Subject: Re: Free AMD Core Math Library (BLAS/LAPACK) + Ada Date: Mon, 09 Jul 2012 16:36:56 -0500 Organization: Aioe.org NNTP Server Message-ID: References: <41b74e89-f112-4791-883d-236080652dbf@googlegroups.com> <2565f27a-48d1-4000-978d-c3946154ea32@googlegroups.com> <212027fd-e3a3-45cc-b594-df6a4ae96138@googlegroups.com> <0c159836-b4b9-4861-85cd-e3e61e94f8bc@googlegroups.com> Reply-To: nma@12000.org NNTP-Posting-Host: KdJUrTuvv3Zv/s8pPxNluw.user.speranza.aioe.org Mime-Version: 1.0 X-Complaints-To: abuse@aioe.org User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:13.0) Gecko/20120614 Thunderbird/13.0.1 X-Notice: Filtered by postfilter v. 0.8.2 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Date: 2012-07-09T16:36:56-05:00 List-Id: On 7/9/2012 4:15 PM, Ada novice wrote: > > > I have 2 questions (not related to windows hopefully): > > 1. You issued the command: > > gnatmake example1.adb -largs -lada_blas -lacml > > About the -lada_blas, is ada_blas the FOLDER name for the blas binding? No. -L is used for the folder, and -l (small l) is used for the name of the library. For example -lgfortran means to look for libgfortran.so (for shared linking, the default, unless you used -static, then it will look for .a). The library must be libgfortran.so and not anything else, not even libgfortran.so.1, if it is libgfortran.so.1 then the common fix is to make a symbolic link. Why not just install VBox on windows (it is free) and install Linux on it (free) and just use Linux? So much easier. This is what I do. My PC is running windows (because I need few apps there), but I do all my programming on Linux on the VBox). --Nasser