- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
module mod1
implicit none
contains
SUBROUTINE display(message) bind(C)
use iso_c_binding
IMPLICIT NONE
CHARACTER(kind = c_char,LEN=*),VALUE::message
print*,message
END SUBROUTINE display
end module mod1
PROGRAM MAIN
USE mod1
implicit none
call display(message="Hello world!")
END PROGRAM MAINThe output in IFX shows the following. What does it really mean? Is it an ICE?
Compiling with Intel® Fortran Compiler 2022.1.0 [Intel(R) 64]...
display.f90
C:/Users/ddopico/OneDrive - Universidade da Coruña/Descargas/temp/Fallo_compilador26/display.f90: remark #5415: Feature not yet implemented: Some 'check' options temporarily disabled.
#0 0x00007FF6FE89C845 (0x0000000000000000 0x0000000000000240 0x0000019600000000 0x00008D7BB6C49E67)
#1 0x00007FF6FE89C81A (0x000000864738E9E0 0x00007FF6FEB52BAC 0x0702000000000000 0x0000000000000000)
#2 0x00007FF6FE7ED3DB (0x00000196F8690690 0x00000196F83AC340 0x0000000000000000 0x00007FF6FE7F8587)
#3 0x00007FF6FE7DFFA9 (0x00000196F8690610 0x0000000000000000 0x000000864738ED60 0x800000040000000F)
#4 0x00007FF6FE7DF1DF (0x00008D7BB6C49B47 0x00000196F8370AE0 0x0000000000000000 0x0000000000000012)
#5 0x00007FF6FE8703AA (0x00000196F8010000 0x000000864738F5D9 0x0000000000000002 0x00007FFBD2A5B3C7)
#6 0x00007FF6FE87560C (0x00000196F8620310 0x00007FF6FE89C0B1 0x00000196F8370060 0x00007FF6FE7FE7CA)
#7 0x00007FF6FE8728F3 (0x00008D7BB6C48F77 0x00000196F85E0000 0x0000000000000000 0x00000196F85B0900)
#8 0x00007FF6FE873B39 (0x00008D7BB6C48F27 0x0000000000000000 0x8000000300000000 0x00007FF6FE89C8F6)
#9 0x00007FF6FE8EEDB5 (0x00000196F8370060 0x00000196F85E0000 0x00000196F85B09C0 0x0000000000000000)
#10 0x00007FF6FE8EC91C (0x00000196F85D0000 0x00007FF6FE8EA370 0x0000000000000000 0x8000000100000000)
#11 0x00007FF6FE8ECEFD (0x000000000000000F 0x00008D7BB6C48D00 0x0000000000000010 0x00007FF7019474B0)
#12 0x00007FF6FE8EA3A0 (0x00000196F809E728 0x0000000000000000 0x00008D7BB6C48D77 0xFFFFFFFFFFFFFFFF)
#13 0x00007FF6FE8EC91C (0x000000864738FB48 0x00007FF6FE8721FD 0x0000000000000001 0x0000000000000000)
#14 0x00007FF6FE8E9A3D (0x800031444F4D0004 0x462431444F4D000D 0x00444F4D24454C49 0x0000000000000000)
#15 0x00007FF6FE8EC91C (0x00000196F85D0000 0x0000000000000000 0x0000000000000000 0x00007FF6FE793132)
#16 0x00007FF6FE792D0A (0x0000000000000001 0x00007FF701947EE0 0x00007FF700B91470 0x0000000000000000)
#17 0x00007FF6FE792470 (0x00007FF700008002 0x00000196F8019F80 0x0000000000000024 0x00007FF700000002)
#18 0x00007FF6FE941202 (0x0000000000000000 0x0000000000000000 0x0000000000000000 0x0000000000000000)
#19 0x00007FF700B519B0 (0x0000000000000000 0x0000000000000000 0x0000000000000000 0x0000000000000000)
#20 0x00007FFBD1B87374 (0x0000000000000000 0x0000000000000000 0x0000000000000000 0x0000000000000000), BaseThreadInitThunk() + 0x14 bytes(s)
#21 0x00007FFBD2A7CC91 (0x0000000000000000 0x0000000000000000 0x0000000000000000 0x0000000000000000), RtlUserThreadStart() + 0x21 bytes(s)
C:/Users/ddopico/OneDrive - Universidade da Coruña/Descargas/temp/Fallo_compilador26/display.f90(4): error #5533: Feature found on this line is not yet supported in ifx
compilation aborted for C:\Users\ddopico\OneDrive - Universidade da Coruña\Descargas\temp\Fallo_compilador26\display.f90 (code 3)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
the ifx compiler 2022.1 was still under development. These errors should be gone with the latest 2025.0 compiler.
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
the ifx compiler 2022.1 was still under development. These errors should be gone with the latest 2025.0 compiler.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Ron.
I can't go to 2025 because it cmake doesn't have support yet (as far as I know) but I'll try to update to 2024 and try but since you tagged it as "accepted solution" I assume that you checked it.
Daniel.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Cmake support for ifx came in Cmake version 3.22, but I would recommend getting the latest version.
I recognize the error message - we used that when we hit something that wasn't implemented at that version. There are no such messages any longer: all Fortran 2018 features are supported, along with a few F2023 features.
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page