FIX: Debugger Does Not Properly Trace Include FilesLast reviewed: September 16, 1997Article ID: Q106636 |
1.00
MS-DOS
kbtool kbfixlist kbbuglist
The information in this article applies to:
SYMPTOMSThe debugger does not highlight the current point of execution of an include file containing executable statements.
CAUSEThe debugger does not recognize that the include file is in a different source window. All lines in the include file are interpreted by the debugger as being in the same window as the main source.
STATUSMicrosoft has confirmed this to be a problem in FORTRAN PowerStation version 1.0 for MS-DOS. This problem has been resolved with FORTRAN PowerStation maintenance release version 1.0a for MS-DOS.
MORE INFORMATIONFORTRAN PowerStation version 1.0 can be differentiated from the maintenance release version 1.0a by invoking the linker. Typing "Link32 | more " from \F32\BIN directory will show version 2.8 for FORTRAN PowerStation version 1.0, and it will show version 1.0f for the maintenance release version 1.0a.To demonstrate the problem:
Sample Code (TEST.FOR)
1 print *, 'Main Line 1'c 2 3 include 'test.inc' 4 print *, 'Main Line 4' 5 end Sample Code (TEST.INC)c 11 12 print *, 'Inc Line 2' 13 print *, 'Inc Line 3' 14 print *, 'Inc Line 4' |
Additional reference words: 1.00 buglist1.00 fixlist1.00a
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |