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
- 标记:
- ICE
链接已复制
4 回复数
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.
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
