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

Fortran Graphical debugger question

postaquestion
Novice
482 Views
I have recently purchased the professional edition of FORTRAN from Intel.I have the compiler up and running and can write codes. However i have never used a graphical debugger and would like instructions on how to bring up the graphical debugger and use it with a code. Is there a link to this information somewhere?
0 Kudos
2 Replies
g_f_thomas
Beginner
482 Views

I presume by graphical debugger you mean the VS debugger. Try the IVF documentation (online integrated IVF Help) it has some pointers on using the debugger. There is a Microsoft Press door stopper by Jeff Robins but it's VC++/Net oriented. Here's a rudimentary introduction: in Debug configuration and with your program showing click on the extreme left of the IDE and you set a breakpoint. Repeat to setfurther breakpoints. Click on Debug/Start Debugging. After your progie has compiled and linked it will stop at the firstbreakpoint. Press F5 to continue to the next breakpoint, etc. While stopped on a breakpoint let the cursor hover over variables and arrays to see their current (Janus not allowed) values. There's a watch window you might want to explore.

Gerry

0 Kudos
Steven_L_Intel1
Employee
482 Views
As Gerry says, the on-disk documentation includes an overview of using the Visual Studio debugger. You'll find it under Building Applications > Debugging. Ignore the text about the "Intel Debugger (idb)" and focus on the part relating to Visual Studio.
0 Kudos
Reply