summaryrefslogtreecommitdiffstats
path: root/Modules/FindBLAS.cmake
diff options
context:
space:
mode:
authorAlexey Ozeritsky <aozeritsky@gmail.com>2011-08-15 13:52:40 (GMT)
committerAlexey Ozeritsky <aozeritsky@gmail.com>2011-08-15 13:54:28 (GMT)
commitcfad24a36beb5fbf6d0e5ae8c730b9da651a3488 (patch)
tree2a27fdc20b6e72c00feaeed0c30ede0429743f02 /Modules/FindBLAS.cmake
parentd5e603026b9bfde90742483df322e0c168407fef (diff)
downloadCMake-cfad24a36beb5fbf6d0e5ae8c730b9da651a3488.zip
CMake-cfad24a36beb5fbf6d0e5ae8c730b9da651a3488.tar.gz
CMake-cfad24a36beb5fbf6d0e5ae8c730b9da651a3488.tar.bz2
fixed: search of ATLAS library for C/C++-only projects
Diffstat (limited to 'Modules/FindBLAS.cmake')
-rw-r--r--Modules/FindBLAS.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/FindBLAS.cmake b/Modules/FindBLAS.cmake
index 7bad959..dc9ab37 100644
--- a/Modules/FindBLAS.cmake
+++ b/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)