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,222ed89632aabb93 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.223.40 with SMTP id qr8mr6887721pbc.0.1342351549898; Sun, 15 Jul 2012 04:25:49 -0700 (PDT) Path: l9ni11846pbj.0!nntp.google.com!news1.google.com!goblin1!goblin.stu.neva.ru!eternal-september.org!feeder.eternal-september.org!mx04.eternal-september.org!.POSTED!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: Free AMD Core Math Library (BLAS/LAPACK) + Ada Date: Sun, 15 Jul 2012 12:25:49 +0100 Organization: A noiseless patient Spider Message-ID: References: <41b74e89-f112-4791-883d-236080652dbf@googlegroups.com> <0c159836-b4b9-4861-85cd-e3e61e94f8bc@googlegroups.com> <99901f55-e61a-4808-a442-1a62e625cd2e@googlegroups.com> <37b4ba31-245e-44d1-9183-5c3367c88101@googlegroups.com> <2db42c1b-cfd4-4a6f-9e0c-ce269ddf00c5@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> Mime-Version: 1.0 Injection-Info: mx04.eternal-september.org; posting-host="9bf283a230abc1bf5b8bf7ae893d3723"; logging-data="10312"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18UX84E7mcAasRYXxL0tPE3B83ZcNDBsto=" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.1 (darwin) Cancel-Lock: sha1:HH1VaBfM2a4ohUfrZvncGfxITrs= sha1:FCjnQ2qj+/n7jYT6Yms47aAwmVU= Content-Type: text/plain Date: 2012-07-15T12:25:49+01:00 List-Id: -largs -v gives the -v (verbose) switch to gnatlink. If you want to give -v to the system linker, ld, you would say -largs -Wl,-v (*exactly* as typed!) LD_LIBRARY_PATH is used at run time to tell the program loader where to find extra shared libraries; what you need is to tell the linker where to find extra shared libraries. Use LIBRARY_PATH as well. See http://stackoverflow.com/questions/4250624/ld-library-path-vs-library-path, for example.