Add CI jobs for more recent versions of flang - #3069
Conversation
Co-authored-by: vchuravy <145258+vchuravy@users.noreply.github.com>
11346e5 to
0ec9f3b
Compare
|
@copilot Fix the 'The following signatures couldn't be verified because the public key is not available' errors in the Fortran CI jobs. It looks like we need to import the appropriate public keys. |
Co-authored-by: joewallwork <22053413+joewallwork@users.noreply.github.com>
Fixed in commit |
|
@copilot Fix pip upgrade in the Fortran Flang CI. This seems to be an issue running on Ubuntu 26.04 because the IFX workflow (which runs on Ubuntu 22.04) seems fine. |
Co-authored-by: joewallwork <22053413+joewallwork@users.noreply.github.com>
Fixed in commit |
|
Okay so this lines up with the errors I'd reported on #2968 - it looks like Flang 23 is struggling to access the intrinsic |
|
Looking at a local (LLVM 24) build of LLVM/Flang I have lying around, I see that the missing module can be found at |
With that Flang, I can compile the following test program fine program test
use, intrinsic :: iso_c_binding, only: c_int
implicit none
end program test |
Closes #3067.