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

Finding address in release build

john_keenan
Beginner
358 Views

Given the address of an exception in a release build, what are the better means to find the location in the source code?

Right now I launch the application from the development environment, hit a breakpoint somewhere, show dissasembly, and scroll around until I see the address. I am expecting I can enter the address somewhere and have it put me in the right place butI have not been able to find this.

John

0 Kudos
1 Reply
Steven_L_Intel1
Employee
358 Views
Enable Traceback and disable incremental linking? (This is the default for a Fortran executable project but a mixed-language project may be different.)

You could look at the link map to see where each function gets loaded. Perhaps typing the address into the Memory window would also help, though I am not sure about this with code.
0 Kudos
Reply