Merge pull request #2757 from martin-frbg/cmake64

Fix lapack-tests linking to a suffixed libopenblas in cmake builds
This commit is contained in:
Martin Kroeker 2020-08-02 23:05:21 +02:00 committed by GitHub
commit 4847bfdddd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

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)

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()