-
Notifications
You must be signed in to change notification settings - Fork 369
New issue
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
MPAS Standalone: Fix check for LAPACK libraries #4972
MPAS Standalone: Fix check for LAPACK libraries #4972
Conversation
Previously, there were error messages like: ``` ls: cannot access '/global/cfs/cdirs/e3sm/software/compass/cori-haswell/spack/spack_for_mache_1.4.1/var/spack/environments/dev_compass_1_1_0-alpha_4_gnu_mpt_netlib_lapack_petsc/.spack-env/view/liblapack.*': No such file or directory ``` even though this just means that the correct directory for LAPACK had not yet been found.
TestingI built standalone MPAS-Ocean with this fix. Previously, I was seeing the error message shown above. With this branch, the error message goes away. |
@mark-petersen, I believe this was introduced in #4214, as I don't see any evidence of this Could you take a look and let me know if you agree? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@xylar thanks for fixing this. I don't remember putting in the shell ls
myself, but the wildcard is better. I test compiled this with gnu and intel, each with debug and optimized, and all compiled fine.
passes sanity testing, merged to next |
merged to master |
Thanks as always, @jonbob! |
Previously, there were error messages like:
even though this just means that the correct directory for LAPACK had not yet been found.
[BFB]