latest windbg, pdb files, and NT4 DDK..

I’m trying to debug an NT4 system with the latest windbg
and I can’t get it to resolve symbolic information in
my driver with the exception of global information.

My driver is built with an NT4 DDK checked build window.

I’m guessing that the new windbg expects .pdb files, which
are not created by default in an NT4 DDK build environment.

Has anyone else experienced this? Can anyone tell me how
to modify my SOURCES file to create a .pdb file for an
NT4 driver?

Thanks.


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

Put “USE_PDB=0” in your SOURCES file. This should produce the pdb your after

Rod.

-----Original Message-----
From: Peter Craft [mailto:xxxxx@alacritech.com]
Sent: Tuesday, 24 April 2001 9:17 am
To: NT Developers Interest List
Subject: [ntdev] latest windbg, pdb files, and NT4 DDK…

I’m trying to debug an NT4 system with the latest windbg
and I can’t get it to resolve symbolic information in
my driver with the exception of global information.

My driver is built with an NT4 DDK checked build window.

I’m guessing that the new windbg expects .pdb files, which
are not created by default in an NT4 DDK build environment.

Has anyone else experienced this? Can anyone tell me how
to modify my SOURCES file to create a .pdb file for an
NT4 driver?

Thanks.


You are currently subscribed to ntdev as: xxxxx@mobilesoft.com.au
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

Thanks!

----- Original Message -----
From: Rodney Sigmund
To: NT Developers Interest List
Sent: Monday, April 23, 2001 5:43 PM
Subject: [ntdev] RE: latest windbg, pdb files, and NT4 DDK…

Put “USE_PDB=0” in your SOURCES file. This should produce the pdb your after

Rod.
-----Original Message-----
From: Peter Craft [mailto:xxxxx@alacritech.com]
Sent: Tuesday, 24 April 2001 9:17 am
To: NT Developers Interest List
Subject: [ntdev] latest windbg, pdb files, and NT4 DDK…

I’m trying to debug an NT4 system with the latest windbg
and I can’t get it to resolve symbolic information in
my driver with the exception of global information.

My driver is built with an NT4 DDK checked build window.

I’m guessing that the new windbg expects .pdb files, which
are not created by default in an NT4 DDK build environment.

Has anyone else experienced this? Can anyone tell me how
to modify my SOURCES file to create a .pdb file for an
NT4 driver?

Thanks.


You are currently subscribed to ntdev as: xxxxx@mobilesoft.com.au
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

You are currently subscribed to ntdev as: xxxxx@alacritech.com
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

>Has anyone else experienced this? Can anyone tell me how

to modify my SOURCES file to create a .pdb file for an
NT4 driver?

USE_PDB=1

BTW, MAKEFILE.DEF is a good reference for SOURCES syntax.

Max


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com

Adding the following to my SOURCES file for both NT4 and W2K
has successfully created .pdb files for my driver projects
for both free and checked builds:

!IF “$(DDKBUILDENV)” != “checked”
NTDEBUG=ntsdnodbg
NTDEBUGTYPE=both
USE_PDB=1
!ELSE
NTDEBUG=ntsd
NTDEBUGTYPE=both
USE_PDB=1
!ENDIF

-----Original Message-----
From: Maxim S. Shatskih [mailto:xxxxx@storagecraft.com]
Sent: Tuesday, April 24, 2001 6:36 AM
To: NT Developers Interest List
Subject: [ntdev] Re: latest windbg, pdb files, and NT4 DDK…

Has anyone else experienced this? Can anyone tell me how
to modify my SOURCES file to create a .pdb file for an
NT4 driver?

USE_PDB=1

BTW, MAKEFILE.DEF is a good reference for SOURCES syntax.

Max


You are currently subscribed to ntdev as: xxxxx@legato.com
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com