Changeset 156290 in webkit


Ignore:
Timestamp:
Sep 23, 2013 1:38:36 PM (11 years ago)
Author:
alex.christensen@flexsim.com
Message:

Added --64-bit option for Windows build.
https://bugs.webkit.org/show_bug.cgi?id=121799

Reviewed by Brent Fulgham.

  • Scripts/webkitdirs.pm:

(determinePassedConfiguration): Add "|x64" for 64-bit configuration.
(isWin64): Added.
(determineIsWin64): Added.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r156281 r156290  
     12013-09-23  Alex Christensen  <alex.christensen@flexsim.com>
     2
     3        Added --64-bit option for Windows build.
     4        https://bugs.webkit.org/show_bug.cgi?id=121799
     5
     6        Reviewed by Brent Fulgham.
     7
     8        * Scripts/webkitdirs.pm:
     9        (determinePassedConfiguration): Add "|x64" for 64-bit configuration.
     10        (isWin64): Added.
     11        (determineIsWin64): Added.
     12
    1132013-09-23  Anders Carlsson  <andersca@apple.com>
    214
  • trunk/Tools/Scripts/webkitdirs.pm

    r156208 r156290  
    9595my $isWinCE;
    9696my $isWinCairo;
     97my $isWin64;
    9798my $isEfl;
    9899my $isBlackBerry;
     
    624625            $passedConfiguration = "Debug";
    625626            $passedConfiguration .= "_WinCairo" if (isWinCairo() && isCygwin());
     627            $passedConfiguration .= "|x64" if isWin64();
    626628            return;
    627629        }
     
    630632            $passedConfiguration = "Release";
    631633            $passedConfiguration .= "_WinCairo" if (isWinCairo() && isCygwin());
     634            $passedConfiguration .= "|x64" if isWin64();
    632635            return;
    633636        }
     
    636639            $passedConfiguration = "Profiling";
    637640            $passedConfiguration .= "_WinCairo" if (isWinCairo() && isCygwin());
     641            $passedConfiguration .= "|x64" if isWin64();
    638642            return;
    639643        }
     
    11961200    return if defined($isWinCairo);
    11971201    $isWinCairo = checkForArgumentAndRemoveFromARGV("--wincairo");
     1202}
     1203
     1204sub isWin64()
     1205{
     1206    determineIsWin64();
     1207    return $isWin64;
     1208}
     1209
     1210sub determineIsWin64()
     1211{
     1212    return if defined($isWin64);
     1213    $isWin64 = checkForArgumentAndRemoveFromARGV("--64-bit");
    11981214}
    11991215
Note: See TracChangeset for help on using the changeset viewer.