-
Notifications
You must be signed in to change notification settings - Fork 184
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
Add CI testing with Intel Fortran compiler #260
Conversation
- ifort 21.1 BETA 20200827 compiles F18 error stop syntax but does not propagate the error code correctly
This is amazing, thank you!! |
It took only 1.5 min to install, and it overall finishes quickly. Very usable! |
If you only require |
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.
Great! Thank you!
The CI says |
Only |
I tried to install it on my laptop running Ubuntu 18.04 using the exact commands in this PR. Everything installs fine. I load the variables. But then trying to compile any program gives:
|
That is a known issue, they broke binutils with the update from beta10 to the release version and supplied patches only for Ubuntu 20.04 and later. So you either have to downgrade manually to the beta10 version, which is broken for stdlib or upgrade your Ubuntu to 20.04 (sounds like fun). I can't find it in the release notes anymore but I definitely remember a list of supported OS somewhere for the binutils issue. |
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.
Wonderful, thanks a lot. #257 is in so I'll go ahead and merge.
I am going to go ahead and merge this. We can then further improve in master. |
@junghans, here is how we got Intel Fortran working, and it seems to work really nicely (small download, quick run). |
Quick follow-up, here are the release notes stating the binutils issue: https://software.intel.com/content/www/us/en/develop/articles/intel-oneapi-fortran-compiler-release-notes.html |
Read more on Intel oneAPI: https://fortran-lang.discourse.group/t/intel-releases-oneapi-toolkit-free-fortran-2018/471
This finally implements support for Intel oneAPI compilers to test stdlib.
Requires #257
Fixes #249