summaryrefslogtreecommitdiff
path: root/TESTING
diff options
context:
space:
mode:
authorKyle Guinn <elyk03@gmail.com>2017-02-01 21:19:08 -0600
committerKyle Guinn <elyk03@gmail.com>2017-02-02 00:28:39 -0600
commit5817812eb2aa6fae9a570a3dfc914f083eab228d (patch)
tree6aa54cd8fee6347e54d7a23629028ddd3e5e95f0 /TESTING
parent0ebb712165267a7fd305795588d3e4323a93dea2 (diff)
downloadlapack-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.txt2
-rw-r--r--TESTING/LIN/CMakeLists.txt2
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)