Skip to content

Commit b73a7c9

Browse files
committed
fix library names in lapack64.pc
Add substitutions to `lapack.pc.in`, in order to ensure that the generated `lapack64.pc` file correctly references the index64 library and BLAS dependency. It seems that other pkg-config templates have been updated as part of #462 but this one was omitted. As a result, finding a lapack64 via pkg-config gave non-index64 libraries. Signed-off-by: Michał Górny <[email protected]>
1 parent 3c1abe4 commit b73a7c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lapack.pc.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ Name: LAPACK
55
Description: FORTRAN reference implementation of LAPACK Linear Algebra PACKage
66
Version: @LAPACK_VERSION@
77
URL: http://www.netlib.org/lapack/
8-
Libs: -L${libdir} -llapack
9-
Requires.private: blas
8+
Libs: -L${libdir} -l@LAPACKLIB@
9+
Requires.private: @BLASLIB@

0 commit comments

Comments
 (0)