tags:

views:

84

answers:

1

Has anyone used WinDbg to debug an Intel Visual Fortran routine? If I have the Fortran source file that crashes with an AccViol, how can I use WinDbg to determine the line that is crashing?

A: 

It should be the same as with a C program. Compile with debugging info, then use kb in WinDbg to get a back trace when a fault occurs.

Alex
That helped. Thanks Alex.
No problem. Feel free to mark the response as an "answer" :).
Alex