summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorEisuke Kawashima <15070-e-kwsm@users.noreply.gitlab.kitware.com>2019-12-02 06:07:20 (GMT)
committerBrad King <brad.king@kitware.com>2019-12-04 19:53:40 (GMT)
commit85f4d580c94a3434e605c3f01c293179e02424d7 (patch)
tree4b05a956441d0bfe662e42fe7c1f84daa8634697 /Modules
parent735d731119e731c8a321f85824ee685005b38731 (diff)
downloadCMake-85f4d580c94a3434e605c3f01c293179e02424d7.zip
CMake-85f4d580c94a3434e605c3f01c293179e02424d7.tar.gz
CMake-85f4d580c94a3434e605c3f01c293179e02424d7.tar.bz2
FindBLAS: Search for libblas from ATLAS vendor
Symbols such as `cblas_ccopy` are defined in `libblas.a` but NOT IN `libf77blas.a`. Fixes: #14320
Diffstat (limited to 'Modules')
-rw-r--r--Modules/FindBLAS.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindBLAS.cmake b/Modules/FindBLAS.cmake
index 77f9d0e..165627e 100644
--- a/Modules/FindBLAS.cmake
+++ b/Modules/FindBLAS.cmake
@@ -517,7 +517,7 @@ if (BLA_VENDOR STREQUAL "ATLAS" OR BLA_VENDOR STREQUAL "All")
BLAS
dgemm
""
- "f77blas;atlas"
+ "blas;f77blas;atlas"
""
)
endif()