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 d开发者_如何学JAVAetermine the line that is crashing?
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.
精彩评论