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

ifort compiles for infinite time

Matthias_M_
Beginner
540 Views

Dear all,

starting with ifort 13.0.0.x in Linux SLES 11.0 (including all ifort updates up to 13.1.2.183) the ifort compiles no longer is able to compile our in-house code. Most source files are compiled into object file but at some particular file compilation never finishes even after several days. I know that this is very vague information, and therefore, I am not asking "how to fix this problem" ;-) My question is as follows: Is is possible to instruct ifort to print out internal information, e.g. about which line of the source code file is processed, which compilation stage is active, etc. In short, instead of seeing that

ifort -c mysource.f90 -o mysource.o

keeps in compiling forever I would like to see any information which would give me a hint, where to start debugging this failure.

Thanking you very much in avance.

Matthias

0 Kudos
2 Replies
TimP
Honored Contributor III
540 Views

You could try reducing optimization limit thresholds or turning off optimizations for groups of loops e.g.

-mP2OPT_hlo_upto_line=n

(if that option works with your version)

0 Kudos
Steven_L_Intel1
Employee
540 Views

If you contact Intel Premier Support, we can help you with tools to narrow down where the issue might be. It would be more helpful if you're able to provide us with the source file that is causing the problem, including any sources it depends on.

0 Kudos
Reply