i-forbla.adb: Link against -llapack and -lblas by default instead of the private...
authorSamuel Tardieu <sam@rfc1149.net>
Tue, 22 Apr 2008 07:14:31 +0000 (07:14 +0000)
committerSamuel Tardieu <sam@gcc.gnu.org>
Tue, 22 Apr 2008 07:14:31 +0000 (07:14 +0000)
    gcc/ada/
* i-forbla.adb: Link against -llapack and -lblas by default
instead of the private -lgnalasup.

From-SVN: r134550

gcc/ada/ChangeLog
gcc/ada/i-forbla.adb

index 79f8440982cdb280bbc02d08038eaf42fc4ddb12..d4a76a68b04ffa30de97cd408693cfae1589f940 100644 (file)
@@ -1,3 +1,8 @@
+2008-04-22  Samuel Tardieu  <sam@rfc1149.net>
+
+       * i-forbla.adb: Link against -llapack and -lblas by default
+       instead of the private -lgnalasup.
+
 2008-04-21  Olivier Hainque  <hainque@adacore.com>
 
        Access to most C builtins from Ada
index f54497d941341511e1fc939bed36e26296a6231f..bda6084262fd0ed846a92c0f255d89d473350a9e 100644 (file)
 ------------------------------------------------------------------------------
 
 --  This Interfaces.Fortran.Blas package body contains the required linker
---  pragmas for automatically linking with the gnalasup linear algebra support
+--  pragmas for automatically linking with the LAPACK linear algebra support
 --  library, and the systems math library. Alternative bodies can be supplied
 --  if different sets of libraries are needed.
 
 package body Interfaces.Fortran.BLAS is
    pragma Linker_Options ("-lgnala");
-   pragma Linker_Options ("-lgnalasup");
+   pragma Linker_Options ("-llapack");
+   pragma Linker_Options ("-lblas");
    pragma Linker_Options ("-lm");
 end Interfaces.Fortran.BLAS;