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

Seeing intrinsic function results in debugging

cacciatore
Beginner
1,884 Views
While debugging my projects, I can't see the result of an intrinsic function in Watch or QuickWatch. The projects are built using Debug Active Configuration. If I try to watch the value of, for example, ALOG10(DISTANCIA), the " undefined variable ALOG10" apears in place of the value of ALOG10(DISTANCIA).
In Project Settings, Fortran/Debug Debugging Level is Full, and have the " use program database for debug information" checked. Tried checking " Compile debugg(D)Lines" but it didn't work.
Is there any setting I am missing, or what I want is not possible?
Thanks for any hint
Geraldo
0 Kudos
5 Replies
Steven_L_Intel1
Employee
1,884 Views
Not possible. Watch is for variables (and subobjects of variables) only.

Steve
0 Kudos
Intel_C_Intel
Employee
1,884 Views
Actually, watch even allows fairly complicated
expressions, for example X**2.5+X-5.
0 Kudos
Steven_L_Intel1
Employee
1,884 Views
Ok - variables and constants. But not function calls.

Steve
0 Kudos
faizhoda
Beginner
1,884 Views
I am not able to watcg even user-defined type variables and their memebers. Do I need to have some special settings to view them?
0 Kudos
Steven_L_Intel1
Employee
1,884 Views
You need to have run Per-User Setup from the Visual Fortran program group.
0 Kudos
Reply