Skip to content
Snippets Groups Projects
Commit 3f4a993e authored by Cédric Roux's avatar Cédric Roux
Browse files

fix compilation order of lapack

As reported on the mailing list, there was a problem
for some users. The link phase of building the simulators
was giving the error "undefined reference to ATL_scopy".
parent 23fc8fdb
No related branches found
No related tags found
No related merge requests found
...@@ -1691,7 +1691,7 @@ endif() ...@@ -1691,7 +1691,7 @@ endif()
# Atlas is required by some packages, but not found in pkg-config # Atlas is required by some packages, but not found in pkg-config
if(EXISTS "/usr/include/atlas/cblas.h") if(EXISTS "/usr/include/atlas/cblas.h")
include_directories("/usr/include/atlas") include_directories("/usr/include/atlas")
list(APPEND ATLAS_LIBRARIES lapack cblas atlas) list(APPEND ATLAS_LIBRARIES cblas atlas lapack)
else() else()
message("No Blas/Atlas libs found, some targets will fail") message("No Blas/Atlas libs found, some targets will fail")
endif() endif()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment