Browse Source

Merge pull request #2757 from martin-frbg/cmake64

Fix lapack-tests linking to a suffixed libopenblas in cmake builds
tags/v0.3.11^2
Martin Kroeker GitHub 5 years ago
parent
commit
4847bfdddd
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      lapack-netlib/TESTING/EIG/CMakeLists.txt
  2. +1
    -1
      lapack-netlib/TESTING/LIN/CMakeLists.txt

+ 1
- 1
lapack-netlib/TESTING/EIG/CMakeLists.txt View File

@@ -98,7 +98,7 @@ set(ZEIGTST zchkee.f

macro(add_eig_executable name)
add_executable(${name} ${ARGN})
target_link_libraries(${name} openblas)
target_link_libraries(${name} openblas${SUFFIX64_UNDERSCORE})
endmacro()

if(BUILD_SINGLE)


+ 1
- 1
lapack-netlib/TESTING/LIN/CMakeLists.txt View File

@@ -239,7 +239,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} openblas)
target_link_libraries(${name} openblas${SUFFIX64_UNDERSCORE})
#${TMGLIB} ${LAPACK_LIBRARIES} ${BLAS_LIBRARIES})
endmacro()



Loading…
Cancel
Save