Changeset 150281 in webkit


Ignore:
Timestamp:
May 17, 2013, 12:06:43 PM (12 years ago)
Author:
Brent Fulgham
Message:

[Windows] Don't use pdevenv when building with VS2010.
https://bugs.webkit.org/show_bug.cgi?id=116338.

Reviewed by Adam Roben.

  • Scripts/webkitdirs.pm:

(setupCygwinEnv): Check if we are using VS2005, and only use
the 'pdevenv' hack if we are. Otherwise, just build with
our standard project since it uses VS2010+'s native
parallel building features.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r150275 r150281  
     12013-05-17  Brent Fulgham  <bfulgham@apple.com>
     2
     3        [Windows] Don't use pdevenv when building with VS2010.
     4        https://bugs.webkit.org/show_bug.cgi?id=116338.
     5
     6        Reviewed by Adam Roben.
     7
     8        * Scripts/webkitdirs.pm:
     9        (setupCygwinEnv): Check if we are using VS2005, and only use
     10        the 'pdevenv' hack if we are. Otherwise, just build with
     11        our standard project since it uses VS2010+'s native
     12        parallel building features.
     13
    1142013-05-17  Gustavo Noronha Silva  <gustavo.noronha@collabora.com>
    215
  • trunk/Tools/Scripts/webkitdirs.pm

    r150131 r150281  
    16351635    if (-e $vcBuildPath) {
    16361636        # Visual Studio is installed; we can use pdevenv to build.
    1637         # FIXME: Make pdevenv work with non-Cygwin Perl.
    1638         $vcBuildPath = File::Spec->catfile(sourceDir(), qw(Tools Scripts pdevenv)) if isCygwin();
     1637        if (visualStudioVersion() eq "8") {
     1638            # FIXME: Make pdevenv work with non-Cygwin Perl.
     1639            $vcBuildPath = File::Spec->catfile(sourceDir(), qw(Tools Scripts pdevenv)) if isCygwin();
     1640        }
    16391641    } else {
    16401642        # Visual Studio not found, try VC++ Express
Note: See TracChangeset for help on using the changeset viewer.