Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
f5460475
Commit
f5460475
authored
Sep 22, 2012
by
Davis King
Browse files
Improved detection of ATLAS.
parent
fae59716
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
dlib/cmake_find_blas.txt
dlib/cmake_find_blas.txt
+3
-2
No files found.
dlib/cmake_find_blas.txt
View file @
f5460475
...
@@ -80,8 +80,9 @@ if (UNIX)
...
@@ -80,8 +80,9 @@ if (UNIX)
# try to find some other BLAS libraries if we didn't find the MKL
# try to find some other BLAS libraries if we didn't find the MKL
if (NOT blas_found)
if (NOT blas_found)
find_library(atlas_lib atlas)
set(extra_paths /usr/lib/atlas-base/ /usr/lib/atlas/ )
find_library(cblas_lib cblas)
find_library(atlas_lib atlas ${extra_paths})
find_library(cblas_lib cblas ${extra_paths})
if (atlas_lib AND cblas_lib)
if (atlas_lib AND cblas_lib)
set(blas_libraries ${atlas_lib} ${cblas_lib})
set(blas_libraries ${atlas_lib} ${cblas_lib})
set(blas_found 1)
set(blas_found 1)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment