You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The GNU GSL needs a BLAS implementation to work. To enhance flexibility and allow different BLAS implementations to be used, even though it provides a libgslcblas it is not automatically linked when linking against libgsl.
Since PETSc is already linked agains a BLAS implementation and chances are that this implementation is more efficient than libgslcblas, configure does not link against libgslcblas if PETSc is found. This works well in Debian but does not work in Fedora, that uses libflexiblas that exports the symbol cblas_dgemm that configure searchs for but it is not found during linking.
The GNU GSL needs a BLAS implementation to work. To enhance flexibility and allow different BLAS implementations to be used, even though it provides a
libgslcblas
it is not automatically linked when linking againstlibgsl
.Since PETSc is already linked agains a BLAS implementation and chances are that this implementation is more efficient than
libgslcblas
, configure does not link againstlibgslcblas
if PETSc is found. This works well in Debian but does not work in Fedora, that useslibflexiblas
that exports the symbolcblas_dgemm
thatconfigure
searchs for but it is not found during linking.Source: #4
The text was updated successfully, but these errors were encountered: