Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

Bug report

DmitrySkachkov
Beginner
394 Views

Hello,

 

I tried several versions of Intel Compilers starting from 2020 up to latest OneAPI 2024, but got the same error:

 

010101_2010

catastrophic error: **Internal compiler error: internal abort** Please report this error along with the circumstances in which it occurred in a Software Problem Report. Note: File and line given may not be explicit cause of this error.

 

Could you pleaser help

 

0 Kudos
4 Replies
Steve_Lionel
Honored Contributor III
363 Views

You need to provide the source(s) and compiler options used.

0 Kudos
DmitrySkachkov
Beginner
294 Views

Hello,

 

I found the error. I called 

Array(:)%re = ...

 

but Array was declared as not complex, but real. The compiler did not say that this is error in array definition, but instead reported the catastrophic error.

 

 

0 Kudos
Steve_Lionel
Honored Contributor III
273 Views

Here's a source that reproduces the problem in 2024.1 (I'm waiting for the individual component installer of 2025.0 to be available.)

real, allocatable :: array(:)
allocate (array(10))
array(:)%re = 3.0
print *, array
end
0 Kudos
TobiasK
Moderator
169 Views

@DmitrySkachkov thanks for reporting that, I reported it to our developers.

0 Kudos
Reply