Software Archive
Read-only legacy content
17060 Discussions

Internal Compiler Error

Intel_C_Intel
Employee
579 Views
I get the following error during compilation:
f90: Fatal: There has been an internal compiler error(C00000FD).
Where can I find description of compilation errors?
Is this error similar to internal compiler error(C000005) described in the forum?.
0 Kudos
2 Replies
Steven_L_Intel1
Employee
579 Views
This means the compiler has a bug. Submit complete details, including a ZIP archive of your project, to vf-support@compaq.com.

You should try downloading and installing 6.6 first, though.

Steve
0 Kudos
Intel_C_Intel
Employee
579 Views
The RECORD Statement is used to declare a record structure as an entity with a name.
Its syntax is
RECORD /structure-name/record-namelist
Where
structure-name
Is the name of a previously declared structure.

record-namelist
Is a list of one or more variable names, array names, or array specifications, separated by commas.

structure-name must be different to record-namelist (obviusly).
Well, that was my error.
I had the statement:
Record/aire_ambiental/aire_ambiental
and the compiler was unable to find the error, and to continue the compilation and generated the internal compiler error C00000FD
Changing the statement to
Record/aire_ambiental/othername
solved the problem.
0 Kudos
Reply