-
Notifications
You must be signed in to change notification settings - Fork 15
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
documentation improvements #581
Conversation
@AlexanderRichert-NOAA any idea why ifort is no longer working? I didn't change anything... |
In the place where it's currently failing (the "which" line), setvars.sh hasn't actually been sourced yet, so I'm assuming that's why it's not finding it. As far the previous error of "Could not find compiler set in environment variable FC" I'm not sure. Maybe try putting the "which" right before the cmake call? |
It's a problem with Intel. I just did my own installation on Ubuntu 22 following the workflow steps, and it installs the same versions and everything. Version 2023.2.2 doesn't provide ifort (note that the fortran package version is 2024). I think what we'll need to do is specify the version we want, probably 2023.2.1. As far as I understand it, icc/icpc are not and will not be part of the 2024 release. |
@AlexanderRichert-NOAA I don't quite understand from your response what should be done... |
Yeah sorry-- try specifying the compiler versions, i.e. "intel-oneapi-compiler-fortran-2023.2.1 intel-oneapi-compiler-dpcpp-cpp-and-cpp-classic-2023.2.1" and see if that does the trick. |
Part of #580