diff options
author | Kyle Guinn <elyk03@gmail.com> | 2017-02-01 21:19:08 -0600 |
---|---|---|
committer | Kyle Guinn <elyk03@gmail.com> | 2017-02-02 00:28:39 -0600 |
commit | 5817812eb2aa6fae9a570a3dfc914f083eab228d (patch) | |
tree | 6aa54cd8fee6347e54d7a23629028ddd3e5e95f0 /TESTING | |
parent | 0ebb712165267a7fd305795588d3e4323a93dea2 (diff) | |
download | lapack-5817812eb2aa6fae9a570a3dfc914f083eab228d.tar.gz lapack-5817812eb2aa6fae9a570a3dfc914f083eab228d.tar.bz2 lapack-5817812eb2aa6fae9a570a3dfc914f083eab228d.zip |
Fix overlinking/underlinking LAPACK dependencies
Diffstat (limited to 'TESTING')
-rw-r--r-- | TESTING/EIG/CMakeLists.txt | 2 | ||||
-rw-r--r-- | TESTING/LIN/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/TESTING/EIG/CMakeLists.txt b/TESTING/EIG/CMakeLists.txt index 19fffcd4..d4577133 100644 --- a/TESTING/EIG/CMakeLists.txt +++ b/TESTING/EIG/CMakeLists.txt @@ -119,7 +119,7 @@ set(ZEIGTST zchkee.f macro(add_eig_executable name) add_executable(${name} ${ARGN}) - target_link_libraries(${name} tmglib ${LAPACK_LIBRARIES}) + target_link_libraries(${name} tmglib ${LAPACK_LIBRARIES} ${BLAS_LIBRARIES}) endmacro() if(BUILD_SINGLE) diff --git a/TESTING/LIN/CMakeLists.txt b/TESTING/LIN/CMakeLists.txt index 27ee2659..7749d15b 100644 --- a/TESTING/LIN/CMakeLists.txt +++ b/TESTING/LIN/CMakeLists.txt @@ -207,7 +207,7 @@ set(ZLINTSTRFP zchkrfp.f zdrvrfp.f zdrvrf1.f zdrvrf2.f zdrvrf3.f zdrvrf4.f zerrr macro(add_lin_executable name) add_executable(${name} ${ARGN}) - target_link_libraries(${name} tmglib ${LAPACK_LIBRARIES}) + target_link_libraries(${name} tmglib ${LAPACK_LIBRARIES} ${BLAS_LIBRARIES}) endmacro() if(BUILD_SINGLE) |