We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The cmake command may require -DMKL_Fortran=on depending on the MKL, the actually issue seems to be with the FindMKL.cmake in ecbuild.
The text was updated successfully, but these errors were encountered:
@bena-nasa Did you try changing this bit of esma.cmake:
esma.cmake
ESMA_cmake/esma.cmake
Lines 68 to 71 in df6e079
to be set(MKL_Fortran ON)? It seems equivalent to what's there before.
set(MKL_Fortran ON)
Or even the full on:
set(MKL_Fortran ON CACHE BOOL "Set MKL_Fortran on")
Sorry, something went wrong.
Hmm. I was lazy and had not even realized that we'd previously added logic outside the FindMKL file. I guess it is not quite correct as it stands.
Probably should instead use
option(MKL_Fortran "Allow building without C bindings for MKL" ON)
@bena-nasa Can you test and submit a PR?
mathomp4
tclune
bena-nasa
No branches or pull requests
The cmake command may require -DMKL_Fortran=on depending on the MKL, the actually issue seems to be with the FindMKL.cmake in ecbuild.
The text was updated successfully, but these errors were encountered: