diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2003-02-20 15:55:07 +0000 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2003-02-20 15:55:07 +0000 |
commit | ae0e33ff1ee97ed8c5ba267f4d1f05baa21ab367 (patch) | |
tree | 421b037768fe50150867c66e7a2afa485dd6284e /test/testappnt.dsp | |
parent | cc3575865a0b49152391999e7e7d6bcae398fc51 (diff) | |
download | apr-ae0e33ff1ee97ed8c5ba267f4d1f05baa21ab367.tar.gz |
After consulting with the APR list, it was decided that /map file creation
is fairly redundant when you retain rich .pdb debugging symbol files. We
have rarely used them, and generally .dbg and .pdb files prove much more
useful for the cases we have.
While eliminating /map files, we are also shrinking the size of the .dbg
files by stripping 'private' symbol information. Really this means less
rich diagnostics from Dr. Watson on NT or Win9x when they query the .dbg
symbols in creating a DrWatson log file. But it's more than compensated
for on newer OS'es where Dr. Watson will query the .pdb symbols, on all
Win32 flavors when WinDbg is used with the .pdb symbols, and the fact that
the distribution of binary symbols will use less bandwidth when less
information is duplicated from the .pdb format into the .dbg files.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64369 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/testappnt.dsp')
-rw-r--r-- | test/testappnt.dsp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/testappnt.dsp b/test/testappnt.dsp index 4f258b29d..54aa698ca 100644 --- a/test/testappnt.dsp +++ b/test/testappnt.dsp @@ -49,8 +49,8 @@ BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe -# ADD BASE LINK32 kernel32.lib advapi32.lib wsock32.lib ws2_32.lib /nologo /subsystem:console /map /machine:I386 -# ADD LINK32 kernel32.lib advapi32.lib wsock32.lib ws2_32.lib /nologo /entry:"wmainCRTStartup" /subsystem:console /map /machine:I386 +# ADD BASE LINK32 kernel32.lib advapi32.lib wsock32.lib ws2_32.lib /nologo /subsystem:console /machine:I386 +# ADD LINK32 kernel32.lib advapi32.lib wsock32.lib ws2_32.lib /nologo /entry:"wmainCRTStartup" /subsystem:console /machine:I386 !ELSEIF "$(CFG)" == "testappnt - Win32 Debug" @@ -73,8 +73,8 @@ BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe -# ADD BASE LINK32 kernel32.lib advapi32.lib wsock32.lib ws2_32.lib /nologo /subsystem:console /incremental:no /map /debug /machine:I386 -# ADD LINK32 kernel32.lib advapi32.lib wsock32.lib ws2_32.lib /nologo /entry:"wmainCRTStartup" /subsystem:console /incremental:no /map /debug /machine:I386 +# ADD BASE LINK32 kernel32.lib advapi32.lib wsock32.lib ws2_32.lib /nologo /subsystem:console /incremental:no /debug /machine:I386 +# ADD LINK32 kernel32.lib advapi32.lib wsock32.lib ws2_32.lib /nologo /entry:"wmainCRTStartup" /subsystem:console /incremental:no /debug /machine:I386 !ENDIF |