+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
------------------------------------------------------------------------------
-- 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;