Closed
Description
Description
The header lapack.h
is only installed if LAPACKE is enabled (cmake -DLAPACKE=ON
). lapack.h
is completely independent of LAPACKE and thus my expectation is that it is always installed and working.
Since the LAPACK 3.10 release, the issue has gotten more urgent because even LAPACK code (e.g., code in TESTING/
directory) cannot access lapack.h
anymore without LAPACKE=ON
because the lapacke_mangling.h
header is only generated when LAPACKE is enabled. This adds needlessly to compile times.
Checklist
- I've included a minimal example to reproduce the issue
- I'd be willing to make a PR to solve this issue