Skip to content

Commit 797ae08

Browse files
authored
Add explanation of LAPACK_STRLEN
1 parent 923b79d commit 797ae08

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Makefile.rule

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,12 @@ VERSION = 0.3.27.dev
134134
# Build LAPACK Deprecated functions since LAPACK 3.6.0
135135
BUILD_LAPACK_DEPRECATED = 1
136136

137+
# The variable type assumed for the length of character arguments when passing
138+
# data between Fortran LAPACK and C BLAS (defaults to "size_t", but older GCC
139+
# versions used "int"). Mismatches will not cause runtime failures but may result
140+
# in build warnings or errors when building with link-time optimization (LTO)
141+
# LAPACK_STRLEN=int
142+
137143
# Build RecursiveLAPACK on top of LAPACK
138144
# BUILD_RELAPACK = 1
139145
# Have RecursiveLAPACK actually replace standard LAPACK routines instead of

0 commit comments

Comments
 (0)