diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2003-02-20 16:56:05 +0100 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2003-02-20 16:56:05 +0100 |
commit | 8607e55c42249bd339de4f8da7087f2247475023 (patch) | |
tree | b55172536bec05a17d2589b94f2d5ec9a1e82d90 /support/win32 | |
parent | After consultations on the APR list, it was decided that /map files are (diff) | |
download | apache2-8607e55c42249bd339de4f8da7087f2247475023.tar.xz apache2-8607e55c42249bd339de4f8da7087f2247475023.zip |
After consultations on the APR list, it was decided that /map files are
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/httpd/httpd/trunk@98744 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/win32')
-rw-r--r-- | support/win32/ApacheMonitor.dsp | 6 | ||||
-rw-r--r-- | support/win32/wintty.dsp | 10 |
2 files changed, 8 insertions, 8 deletions
diff --git a/support/win32/ApacheMonitor.dsp b/support/win32/ApacheMonitor.dsp index 39cd78179a..cc62f0d0d4 100644 --- a/support/win32/ApacheMonitor.dsp +++ b/support/win32/ApacheMonitor.dsp @@ -53,13 +53,13 @@ BSC32=bscmake.exe # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib comctl32.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib /nologo /subsystem:windows /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib comctl32.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib /nologo /subsystem:windows /map /debug /debugtype:both /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib comctl32.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib /nologo /subsystem:windows /debug /debugtype:both /machine:I386 /pdbtype:sept # Begin Custom Build - Extracting .dbg symbols from $(InputPath) InputPath=.\Release\ApacheMonitor.so SOURCE="$(InputPath)" ".\Release\ApacheMonitor.dbr" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - rebase -q -b 0x00400000 -x ".\Release" $(InputPath) + rebase -q -p -b 0x00400000 -x ".\Release" $(InputPath) echo rebased > ".\Release\ApacheMonitor.dbr" # End Custom Build @@ -88,7 +88,7 @@ BSC32=bscmake.exe # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib comctl32.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib /nologo /subsystem:windows /debug /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib comctl32.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib /nologo /subsystem:windows /incremental:no /map /debug /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib comctl32.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib /nologo /subsystem:windows /incremental:no /debug /machine:I386 !ENDIF diff --git a/support/win32/wintty.dsp b/support/win32/wintty.dsp index b3d84db246..07ade0a425 100644 --- a/support/win32/wintty.dsp +++ b/support/win32/wintty.dsp @@ -49,14 +49,14 @@ BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib advapi32.lib /nologo /subsystem:console /map /machine:I386 -# ADD LINK32 kernel32.lib user32.lib advapi32.lib /nologo /subsystem:console /map /debug /debugtype:both /machine:I386 /pdbtype:sept +# ADD BASE LINK32 kernel32.lib user32.lib advapi32.lib /nologo /subsystem:console /machine:I386 +# ADD LINK32 kernel32.lib user32.lib advapi32.lib /nologo /subsystem:console /debug /debugtype:both /machine:I386 /pdbtype:sept # Begin Custom Build - Extracting .dbg symbols from $(InputPath) InputPath=.\Release\wintty.so SOURCE="$(InputPath)" ".\Release\wintty.dbr" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" - rebase -q -b 0x00400000 -x ".\Release" $(InputPath) + rebase -q -p -b 0x00400000 -x ".\Release" $(InputPath) echo rebased > ".\Release\wintty.dbr" # End Custom Build @@ -82,8 +82,8 @@ BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib advapi32.lib /nologo /subsystem:console /incremental:no /map /debug /machine:I386 -# ADD LINK32 kernel32.lib user32.lib advapi32.lib /nologo /subsystem:console /incremental:no /map /debug /machine:I386 +# ADD BASE LINK32 kernel32.lib user32.lib advapi32.lib /nologo /subsystem:console /incremental:no /debug /machine:I386 +# ADD LINK32 kernel32.lib user32.lib advapi32.lib /nologo /subsystem:console /incremental:no /debug /machine:I386 !ENDIF |