Browse Source

FindBLAS: Search for libblas from ATLAS vendor

Symbols such as `cblas_ccopy` are defined in `libblas.a` but NOT IN
`libf77blas.a`.

Fixes: #14320
Eisuke Kawashima 6 years ago
parent
commit
85f4d580c9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Modules/FindBLAS.cmake

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