Changeset 83310 in webkit


Ignore:
Timestamp:
Apr 8, 2011 10:43:13 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-04-08 Pere Martir <pere.martir4@gmail.com>

Reviewed by Adam Roben.

Locate NSTD.EXE in 64-bit Windows
https://bugs.webkit.org/show_bug.cgi?id=57847

  • Scripts/old-run-webkit-tests:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r83302 r83310  
     12011-04-08  Pere Martir  <pere.martir4@gmail.com>
     2
     3        Reviewed by Adam Roben.
     4
     5        Locate NSTD.EXE in 64-bit Windows
     6        https://bugs.webkit.org/show_bug.cgi?id=57847
     7
     8        * Scripts/old-run-webkit-tests:
     9
    1102011-04-08  Adam Roben  <aroben@apple.com>
    211
  • trunk/Tools/Scripts/old-run-webkit-tests

    r83300 r83310  
    26842684    my $ntsdPath = File::Spec->catfile(toCygwinPath($ENV{PROGRAMFILES}), "Debugging Tools for Windows (x86)", "ntsd.exe");
    26852685    unless (-f $ntsdPath) {
    2686         $ntsdPath = File::Spec->catfile(toCygwinPath($ENV{SYSTEMROOT}), "system32", "ntsd.exe");
     2686        $ntsdPath = File::Spec->catfile(toCygwinPath($ENV{ProgramW6432}), "Debugging Tools for Windows (x64)", "ntsd.exe");
    26872687        unless (-f $ntsdPath) {
    2688             print STDERR "Can't find ntsd.exe. Crash logs will not be saved.\nSee <http://trac.webkit.org/wiki/BuildingOnWindows#GettingCrashLogs>.\n";
    2689             return;
     2688            $ntsdPath = File::Spec->catfile(toCygwinPath($ENV{SYSTEMROOT}), "system32", "ntsd.exe");
     2689            unless (-f $ntsdPath) {
     2690                print STDERR "Can't find ntsd.exe. Crash logs will not be saved.\nSee <http://trac.webkit.org/wiki/BuildingOnWindows#GettingCrashLogs>.\n";
     2691                return;
     2692            }
    26902693        }
    26912694    }
Note: See TracChangeset for help on using the changeset viewer.