Browse Source

fixed: search of ATLAS library for C/C++-only projects

Alexey Ozeritsky 14 năm trước cách đây
mục cha
commit
cfad24a36b
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      Modules/FindBLAS.cmake

+ 3 - 3
Modules/FindBLAS.cmake

@@ -138,7 +138,7 @@ endif ($ENV{BLA_VENDOR} MATCHES ".+")
 
 if (BLA_VENDOR STREQUAL "Goto" OR BLA_VENDOR STREQUAL "All")
  if(NOT BLAS_LIBRARIES)
-  # BLAS in ATLAS library? (http://math-atlas.sourceforge.net/)
+  # gotoblas (http://www.tacc.utexas.edu/tacc-projects/gotoblas2)
   check_fortran_libraries(
   BLAS_LIBRARIES
   BLAS
@@ -156,9 +156,9 @@ if (BLA_VENDOR STREQUAL "ATLAS" OR BLA_VENDOR STREQUAL "All")
   check_fortran_libraries(
   BLAS_LIBRARIES
   BLAS
-  cblas_dgemm
+  dgemm
   ""
-  "cblas;f77blas;atlas"
+  "f77blas;atlas"
   ""
   )
  endif(NOT BLAS_LIBRARIES)