Closed miroi closed 9 years ago
The same problem without "--int64". Also I provided the PR for minor fix for Ifort (https://github.com/scisoft/autocmake/pull/46).
Ah,
the autocmake/test/fc_blas/src/CMakeFiles.txt in has default linking of GNU blas:
if(BLAS_FOUND)
add_executable(example example.f90)
target_link_libraries(example blas)
else()
message(FATAL_ERROR "BLAS library not found for the test fc_blas!")
endif()
This has to be rewritten for more intelligent linking of the available BLAS library.
Aha. Yes. I will correct it.
Fine; the same correction would be needed for the future fc_lapack test as well.
On my Linux machine with Intel/MKL installed it founds MKL as the first library:
but it does not link it:
what is linked is the GNU blas (-lblas ), see also