Commit dd83a641 authored by Cedric Roux's avatar Cedric Roux

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 474d7b0f
...@@ -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()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment