Find{BLAS,LAPACK}: Make possible testing of ILP64 model

This commit is contained in:
Igor S. Gerasimov 2021-09-04 11:35:22 +09:00
parent 2cd94f3e57
commit 95219365ff
2 changed files with 10 additions and 0 deletions

View File

@ -17,4 +17,9 @@ if((BLA_VENDOR STREQUAL "Intel10_64lp") OR
if(NOT BLAS_LIBRARIES MATCHES "^(-Wl,--start-group;)?[^;]*mkl_intel_lp64")
message(FATAL_ERROR "BLAS_LIBRARIES does not start in mkl_intel_lp64:\n ${BLAS_LIBRARIES}")
endif()
elseif((BLA_VENDOR STREQUAL "Intel10_64ilp") OR
(BLA_VENDOR STREQUAL "All" AND EXPECT_All STREQUAL "Intel10_64ilp"))
if(NOT BLAS_LIBRARIES MATCHES "^(-Wl,--start-group;)?[^;]*mkl_intel_ilp64")
message(FATAL_ERROR "BLAS_LIBRARIES does not start in mkl_intel_ilp64:\n ${BLAS_LIBRARIES}")
endif()
endif()

View File

@ -17,4 +17,9 @@ if((BLA_VENDOR STREQUAL "Intel10_64lp") OR
if(NOT LAPACK_LIBRARIES MATCHES "^(-Wl,--start-group;)?[^;]*mkl_intel_lp64")
message(FATAL_ERROR "LAPACK_LIBRARIES does not start in mkl_intel_lp64:\n ${LAPACK_LIBRARIES}")
endif()
elseif((BLA_VENDOR STREQUAL "Intel10_64ilp") OR
(BLA_VENDOR STREQUAL "All" AND EXPECT_All STREQUAL "Intel10_64ilp"))
if(NOT LAPACK_LIBRARIES MATCHES "^(-Wl,--start-group;)?[^;]*mkl_intel_ilp64")
message(FATAL_ERROR "LAPACK_LIBRARIES does not start in mkl_intel_ilp64:\n ${LAPACK_LIBRARIES}")
endif()
endif()