From 775fe6f710a284c00352fc2771e633707c33bfee Mon Sep 17 00:00:00 2001 From: Ingmar Schoegl Date: Tue, 4 Apr 2023 22:37:00 -0500 Subject: [PATCH] [SCons] Remove unused LAPACK_NAMES_LOWERCASE option --- SConstruct | 7 ------- include/cantera/base/config.h.in | 1 - 2 files changed, 8 deletions(-) diff --git a/SConstruct b/SConstruct index 5d6b39c25c..323a33ebb1 100644 --- a/SConstruct +++ b/SConstruct @@ -449,12 +449,6 @@ config_options = [ needed if the libraries are installed in a standard location, for example, '/usr/lib'.""", "", PathVariable.PathAccept), - EnumOption( - "lapack_names", - """Set depending on whether the procedure names in the specified - libraries are lowercase or uppercase. If you don't know, run 'nm' on - the library file (for example, "nm libblas.a").""", - "lower", ("lower", "upper")), BoolOption( "lapack_ftn_trailing_underscore", """Controls whether the LAPACK functions have a trailing underscore @@ -2139,7 +2133,6 @@ else: cdefine('LAPACK_FTN_STRING_LEN_AT_END', 'lapack_ftn_string_len_at_end') cdefine('LAPACK_FTN_TRAILING_UNDERSCORE', 'lapack_ftn_trailing_underscore') cdefine('FTN_TRAILING_UNDERSCORE', 'lapack_ftn_trailing_underscore') -cdefine('LAPACK_NAMES_LOWERCASE', 'lapack_names', 'lower') cdefine('CT_USE_LAPACK', 'use_lapack') cdefine("CT_USE_HDF5", "use_hdf5") cdefine("CT_USE_SYSTEM_HIGHFIVE", "system_highfive") diff --git a/include/cantera/base/config.h.in b/include/cantera/base/config.h.in index 09fa2defa8..fe3eba785c 100644 --- a/include/cantera/base/config.h.in +++ b/include/cantera/base/config.h.in @@ -38,7 +38,6 @@ typedef int ftnlen; // Fortran hidden string length type //-------- LAPACK / BLAS --------- {LAPACK_FTN_STRING_LEN_AT_END!s} -{LAPACK_NAMES_LOWERCASE!s} {LAPACK_FTN_TRAILING_UNDERSCORE!s} {CT_USE_LAPACK!s}