Changeset 252827 in webkit


Ignore:
Timestamp:
Nov 22, 2019 9:37:46 PM (4 years ago)
Author:
pvollan@apple.com
Message:

Set 64-bit as default architecture on Windows
https://bugs.webkit.org/show_bug.cgi?id=204477

Reviewed by Ross Kirsling.

This will make 64-bit building and testing the default.

  • Scripts/webkitdirs.pm:

(determineIsWin64):

  • Scripts/webkitpy/port/win.py:

(WinPort):

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r252822 r252827  
     12019-11-22  Per Arne Vollan  <pvollan@apple.com>
     2
     3        Set 64-bit as default architecture on Windows
     4        https://bugs.webkit.org/show_bug.cgi?id=204477
     5
     6        Reviewed by Ross Kirsling.
     7
     8        This will make 64-bit building and testing the default.
     9
     10        * Scripts/webkitdirs.pm:
     11        (determineIsWin64):
     12        * Scripts/webkitpy/port/win.py:
     13        (WinPort):
     14
    1152019-11-22  Jonathan Bedard  <jbedard@apple.com>
    216
  • trunk/Tools/Scripts/webkitdirs.pm

    r252564 r252827  
    496496    push(@args, '--32-bit') if ($architecture eq "x86" and !isWin64());
    497497    push(@args, '--64-bit') if (isWin64());
    498     push(@args, '--64-bit') if (isFTW());
    499498    push(@args, '--ftw') if isFTW();
    500499    push(@args, '--gtk') if isGtk();
     
    12931292{
    12941293    return if defined($isWin64);
    1295     $isWin64 = checkForArgumentAndRemoveFromARGV("--64-bit") || ((isFTW() || isWinCairo() || isJSCOnly()) && !shouldBuild32Bit());
     1294    $isWin64 = checkForArgumentAndRemoveFromARGV("--64-bit") || ((isAnyWindows() || isJSCOnly()) && !shouldBuild32Bit());
    12961295}
    12971296
  • trunk/Tools/Scripts/webkitpy/port/win.py

    r252087 r252827  
    6363    ARCHITECTURES = ['x86', 'x86_64']
    6464
     65    DEFAULT_ARCHITECTURE = 'x86_64'
     66
    6567    CRASH_LOG_PREFIX = "CrashLog"
    6668
Note: See TracChangeset for help on using the changeset viewer.