summaryrefslogtreecommitdiff
path: root/gcc/ada/i-forbla.adb
diff options
context:
space:
mode:
authorsam <sam@138bc75d-0d04-0410-961f-82ee72b054a4>2008-04-22 07:14:31 +0000
committersam <sam@138bc75d-0d04-0410-961f-82ee72b054a4>2008-04-22 07:14:31 +0000
commitc1b05a8887bd48a70183716342d92371c9ac6c28 (patch)
tree3973382000e73b01e7bef027056522131259ce29 /gcc/ada/i-forbla.adb
parent44552520ee0cecc48b8d432f684c72c810aefde2 (diff)
downloadgcc-c1b05a8887bd48a70183716342d92371c9ac6c28.tar.gz
gcc/ada/
* i-forbla.adb: Link against -llapack and -lblas by default instead of the private -lgnalasup. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@134550 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/i-forbla.adb')
-rw-r--r--gcc/ada/i-forbla.adb5
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/ada/i-forbla.adb b/gcc/ada/i-forbla.adb
index f54497d9413..bda6084262f 100644
--- a/gcc/ada/i-forbla.adb
+++ b/gcc/ada/i-forbla.adb
@@ -32,12 +32,13 @@
------------------------------------------------------------------------------
-- 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;