Get rid off fortran compiler usage for Lapack/Blas.
FindLAPACK and FindBLAS check for the name mangling with added underline as a fallback, anyway. Hence there is no need for using a Fortran compiler. With this commit we now simply add another check for a LAPACK function to see whether it has an underline added and adapt the existing macro in config.h accordingly.
Closes #184 (closed)
Merge request reports
Activity
added 1 commit
- 5f41d564 - Get rid off fortran compiler usage for Lapack/Blas.
16 if(${HAVE_LAPACK}) 17 dune_register_package_flags(LIBRARIES "${LAPACK_LIBRARIES}") 18 endif(${HAVE_LAPACK}) 19 set(HAVE_BLAS ${BLAS_FOUND}) 20 else(Fortran_Works) 21 set(HAVE_LAPACK Off) 22 set(HAVE_BLAS Off) 23 endif(Fortran_Works) 12 # search for lapack 13 find_package(LAPACK) 14 set(HAVE_LAPACK ${LAPACK_FOUND}) 15 if(${HAVE_LAPACK}) 16 dune_register_package_flags(LIBRARIES "${LAPACK_LIBRARIES}") 17 cmake_push_check_state() 18 set(CMAKE_REQUIRED_LIBRARIES ${LAPACK_LIBRARIES}) 19 check_function_exists("dsyev_" LAPACK_NEEDS_UNDERLINE) actually it is slightly more difficult, see https://www.netlib.org/lapack/lapacke_mangling.h
The mangling of
dsyev
can be any ofdsyev
dsyev_
DSYEV
Wikipedia states
On Microsoft Windows, the Intel Fortran compiler defaults to uppercase without an underscore.
The test in eigen (adopted from cgal) does all these additional checks. Should we switch to these tests?
Edited by Christian Engwer
added 1 commit
- 9f549df9 - [changelog] Meantion that Fortran is no longer a built requirement
Can we merge this and see if anybody complains? We could then adjust to fit their needs.
@christi Do you veto a merge?
added 54 commits
-
9f549df9...46ca5e99 - 52 commits from branch
master
- 54ac7b4b - Get rid off fortran compiler usage for Lapack/Blas.
- 3dfeff22 - [changelog] Meantion that Fortran is no longer a built requirement
-
9f549df9...46ca5e99 - 52 commits from branch
enabled an automatic merge when the pipeline for 3dfeff22 succeeds
mentioned in commit 9666beaa
mentioned in merge request infrastructure/dune-website!564 (merged)