Changeset 80024 in webkit


Ignore:
Timestamp:
Mar 1, 2011 12:34:13 PM (13 years ago)
Author:
Adam Roben
Message:

Give WebKitLauncherWin's PDB file a name different from WebKit's

WebKitLauncherWin (which builds WebKit.exe) and WebKit (which builds WebKit.dll) were
fighting over the same PDB file, meaning that one of them was going to lose and not have
symbols. WebKitLauncherWin's PDB file is now named WebKitLauncherWin.pdb.

Fixes <http://webkit.org/b/55495> Crashes in WebKit.dll have bad backtraces for some test
runs (due to missing symbols)

Reviewed by David Kilzer.

  • WebKitLauncherWin/WebKitLauncherWinCommon.vsprops: Use the project name,

"WebKitLauncherWin", instead of the target name, "WebKit", when naming the PDB file.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r80019 r80024  
     12011-03-01  Adam Roben  <aroben@apple.com>
     2
     3        Give WebKitLauncherWin's PDB file a name different from WebKit's
     4
     5        WebKitLauncherWin (which builds WebKit.exe) and WebKit (which builds WebKit.dll) were
     6        fighting over the same PDB file, meaning that one of them was going to lose and not have
     7        symbols. WebKitLauncherWin's PDB file is now named WebKitLauncherWin.pdb.
     8
     9        Fixes <http://webkit.org/b/55495> Crashes in WebKit.dll have bad backtraces for some test
     10        runs (due to missing symbols)
     11
     12        Reviewed by David Kilzer.
     13
     14        * WebKitLauncherWin/WebKitLauncherWinCommon.vsprops: Use the project name,
     15        "WebKitLauncherWin", instead of the target name, "WebKit", when naming the PDB file.
     16
    1172011-03-01  Adam Roben  <aroben@apple.com>
    218
  • trunk/Tools/WebKitLauncherWin/WebKitLauncherWinCommon.vsprops

    r73060 r80024  
    99                AdditionalDependencies="shlwapi.lib"
    1010                OutputFile="$(OutDir)\WebKit$(WebKitConfigSuffix).exe"
     11                ProgramDatabaseFile="$(TargetDir)$(ProjectName)$(WebKitConfigSuffix).pdb"
    1112        />
    1213</VisualStudioPropertySheet>
Note: See TracChangeset for help on using the changeset viewer.