Changeset 150281 in webkit
- Timestamp:
- May 17, 2013, 12:06:43 PM (12 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r150275 r150281 1 2013-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 1 14 2013-05-17 Gustavo Noronha Silva <gustavo.noronha@collabora.com> 2 15 -
trunk/Tools/Scripts/webkitdirs.pm
r150131 r150281 1635 1635 if (-e $vcBuildPath) { 1636 1636 # 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 } 1639 1641 } else { 1640 1642 # Visual Studio not found, try VC++ Express
Note:
See TracChangeset
for help on using the changeset viewer.