From 6c2ab6cd7e7493db330f0aa0a026e0095d1cbdd4 Mon Sep 17 00:00:00 2001
From: SAM COX
+ Note: At the time of writing (November 2016) Trilinos (at least up to
+ v12.8.1) cannot link against LAPACK 3.6.0 or later, due to two symbols
+ that were deprecated (and removed by default) in LAPACK 3.6.0 (see the
+
+ release notes). To fix this, edit the Trilinos file
+ BLAS and LAPACK
+ packages/epetra/src/Epetra_LAPACK_wrappers.h
and change the
+ lines
+
+
+ #define DGGSVD_F77 F77_BLAS_MANGLE(dggsvd,DGGSVD)
+ #define SGGSVD_F77 F77_BLAS_MANGLE(sggsvd,SGGSVD)
+
+ to
+
+
+ #define DGGSVD_F77 F77_BLAS_MANGLE(dggsvd3,DGGSVD3)
+ #define SGGSVD_F77 F77_BLAS_MANGLE(sggsvd3,SGGSVD3)
+
+ before installing Trilinos. (Credit for this fix goes to
+ this page.)
+
Trilinos sometimes searches for other libraries but can't find them if they are not in the usual directories or have other -- 2.39.5