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

Can't print the contents of variables in common...

Richard_M_1
Beginner
863 Views

or common blocks in IDB. I've tried various combinations of the Local Variable Storage and Name Case Interpretation build options with no joy. Is this a known problem or am I don't something wrong (I'm using Xcode to build the project and idb interactively to debug it).

Best,

Dick Munroe
 

0 Kudos
1 Reply
Steven_L_Intel1
Employee
863 Views
If you try to access (print, etc.) a Fortran module or common using the name in the source code, the debugger may not be able to find it. As a workaround, the you can try prepending '_' to the name. For example, in the source code, if you have a common called "com":

(idb) print _com
0 Kudos
Reply