From ab8973fed85293cb93e804723f6ca222de680c19 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Fri, 21 Mar 2025 10:22:07 -0400 Subject: [PATCH] Trilinos: require 13.2 --- cmake/configure/configure_20_trilinos.cmake | 8 +++---- doc/external-libs/trilinos.html | 25 +-------------------- 2 files changed, 5 insertions(+), 28 deletions(-) diff --git a/cmake/configure/configure_20_trilinos.cmake b/cmake/configure/configure_20_trilinos.cmake index a207f0b636..ed568f3e28 100644 --- a/cmake/configure/configure_20_trilinos.cmake +++ b/cmake/configure/configure_20_trilinos.cmake @@ -79,17 +79,17 @@ macro(feature_trilinos_find_external var) endif() # - # We require at least Trilinos 12.14.1 + # We require at least Trilinos 13.2 # - if(TRILINOS_VERSION VERSION_LESS 12.14.1) + if(TRILINOS_VERSION VERSION_LESS 13.2) message(STATUS "Could not find a sufficient Trilinos installation: " - "deal.II requires at least version 12.14.1, but version ${TRILINOS_VERSION} was found." + "deal.II requires at least version 13.2, but version ${TRILINOS_VERSION} was found." ) set(TRILINOS_ADDITIONAL_ERROR_STRING ${TRILINOS_ADDITIONAL_ERROR_STRING} "The Trilinos installation (found at \"${TRILINOS_DIR}\")\n" "with version ${TRILINOS_VERSION} is too old.\n" - "deal.II requires at least version 12.14.1.\n\n" + "deal.II requires at least version 13.2.\n\n" ) set(${var} FALSE) endif() diff --git a/doc/external-libs/trilinos.html b/doc/external-libs/trilinos.html index 8f4710d62a..fb73223962 100644 --- a/doc/external-libs/trilinos.html +++ b/doc/external-libs/trilinos.html @@ -49,7 +49,7 @@
Installing Trilinos

- Note: The current version of deal.II requires at least Trilinos 12.14.1. + Note: The current version of deal.II requires at least Trilinos 13.2. Deal.II is known to work with Trilinos up to 16.0.0. Other versions of Trilinos should work too but have not been tested prior to the release. @@ -131,29 +131,6 @@

BLAS and LAPACK
-

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