Why does my release driver binary includes full path to source and pdb?

Posted: 02-19-2004, 02:38 PM
I am builing a release driver using XP DDK 2600 free build environment. The
driver binary includes a full path to the pdb and source files (to all
source files and not headers). I don not want these to be included into the
release build. Its fine if its a debug build. Drivers found user under
windows\system32\drivers doesnt include these info, I assume that these are
also built using the same DDK which I am using. Why is the difference? How
can I get rid of this? Thanks.

# Target name and type
TARGETNAME=Uucf1894
TARGETPATH=obj
TARGETTYPE=DRIVER

!IF "$(DDK_TARGET_OS)" == "WinXP" || "$(DDK_TARGET_OS)" == "Win2K"
# XP/Later DDK build env being used
!IF "$(DDKBUILDENV)" == "chk"
NTDEBUG=ntsd
NTDEBUGTYPE=both
!ELSE
NTDEBUG=ntsdnodbg
NTDEBUGTYPE=both
!ENDIF
!ELSE
# Win2k DDK build env being used
!IF "$(DDKBUILDENV)" == "checked"
NTDEBUG=ntsd
NTDEBUGTYPE=both
!ELSE
NTDEBUG=ntsdnodbg
NTDEBUGTYPE=both
!ENDIF
!ENDIF
# for assembly listings
USER_C_FLAGS = /Fc

# for PDB
USE_PDB=1

USE_MAPSYM=1
BROWSER_INFO=1

SOURCES=Uucf1894.cpp \
Uuioctl.cpp \
UuPwr.cpp \
Uucf1894.RC


Reply With Quote

Responses to "Why does my release driver binary includes full path to source and pdb?"

 
LinkBack Thread Tools Display Modes
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Driver D: is full Staci Windows Vista File Management 1 03-30-2007 08:19 PM
Driver Path Or Tsemah Windows Vista Install & Setup 2 06-07-2006 09:58 AM
Release date for full version of Microsoft spyware beta Bonnie Windows XP Beta 2 03-23-2005 09:39 PM
Default Driver Path Gabriel Moricz Windows XP Device Drivers 0 12-23-2003 05:35 PM
XP includes ??????? rapdor Windows XP Basics 0 07-19-2003 11:28 PM


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90