Changeset 157607 in webkit
- Timestamp:
- Oct 17, 2013, 3:28:32 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 6 edited
-
Source/JavaScriptCore/ChangeLog (modified) (1 diff)
-
Source/JavaScriptCore/JavaScriptCore.vcxproj/JavaScriptCore.sln (added)
-
Source/JavaScriptCore/jit/JITStubsMSVC64.asm (modified) (1 diff)
-
Tools/ChangeLog (modified) (1 diff)
-
Tools/Scripts/build-jsc (modified) (1 diff)
-
Tools/Scripts/run-javascriptcore-tests (modified) (1 diff)
-
Tools/Scripts/webkitdirs.pm (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r157604 r157607 1 2013-10-17 Alex Christensen <achristensen@webkit.org> 2 3 Run JavaScriptCore tests again on Windows. 4 https://bugs.webkit.org/show_bug.cgi?id=122787 5 6 Reviewed by Tim Horton. 7 8 * JavaScriptCore.vcxproj/JavaScriptCore.sln: Added. 9 * jit/JITStubsMSVC64.asm: Removed reference to cti_vm_throw unused since r157581. 10 1 11 2013-10-17 Geoffrey Garen <ggaren@apple.com> 2 12 -
trunk/Source/JavaScriptCore/jit/JITStubsMSVC64.asm
r157581 r157607 24 24 ;*/ 25 25 26 EXTERN cti_vm_throw : near27 26 EXTERN cti_vm_handle_exception : near 28 27 EXTERN getHostCallReturnValueWithExecState : near -
trunk/Tools/ChangeLog
r157565 r157607 1 2013-10-17 Alex Christensen <achristensen@webkit.org> 2 3 Run JavaScriptCore tests again on Windows. 4 https://bugs.webkit.org/show_bug.cgi?id=122787 5 6 Reviewed by Tim Horton. 7 8 * Scripts/build-jsc: 9 (buildMyProject): Use JavaScriptCore.sln to build JavaScriptCore and WTF. 10 * Scripts/run-javascriptcore-tests: Don't run stress tests on WinCairo. 11 * Scripts/webkitdirs.pm: 12 (determineConfigurationForVisualStudio): 13 (determineConfigurationProductDir): 14 Build directory should end with bin64 and configuration should end with |x64 on Win64. 15 (isAppleWinWebKit): 16 (copyInspectorFrontendFiles): 17 (setPathForRunningWebKitApp): 18 Separated WinCairo directories and options from AppleWin. 19 1 20 2013-10-17 Mihnea Ovidenie <mihnea@adobe.com> 2 21 -
trunk/Tools/Scripts/build-jsc
r156895 r157607 85 85 if (isAppleMacWebKit()) { 86 86 $result = system "sh", "-c", ('xcodebuild -project ' . $projectName . '.xcodeproj "$@" | grep -v setenv && exit ${PIPESTATUS[0]}'), "xcodebuild", @options, @ARGV, @coverageSupportOptions; 87 } elsif (isAppleWinWebKit()) { 88 $result = buildVisualStudioProject("$projectName.vcxproj/$projectName.submit.sln"); 87 } elsif (isAppleWinWebKit() || isWinCairo()) { 88 # WTF is a part of JavaScriptCore.sln because jsc.exe wouldn't start otherwise. 89 if ($projectName ne "WTF") { 90 $result = buildVisualStudioProject("$projectName.vcxproj/$projectName.sln"); 91 } 89 92 } elsif (isGtk()) { 90 93 checkForArgumentAndRemoveFromARGV("--gtk"); -
trunk/Tools/Scripts/run-javascriptcore-tests
r157014 r157607 75 75 # FIXME: run-jsc-stress-tests should be ported to other platforms. 76 76 # https://bugs.webkit.org/show_bug.cgi?id=120809 77 my $runJSCStress = !isAppleWinWebKit() ;77 my $runJSCStress = !isAppleWinWebKit() && !isWinCairo(); 78 78 79 79 my $enableFTL = 0; -
trunk/Tools/Scripts/webkitdirs.pm
r157322 r157607 461 461 determineConfiguration(); 462 462 # FIXME: We should detect when Debug_All or Production has been chosen. 463 $configurationForVisualStudio = $configuration ;463 $configurationForVisualStudio = $configuration . (isWin64() ? "|x64" : ""); 464 464 } 465 465 … … 478 478 determineBaseProductDir(); 479 479 determineConfiguration(); 480 if (isAppleWinWebKit() ) {480 if (isAppleWinWebKit() || isWinCairo()) { 481 481 my $binDir = isWin64() ? "bin64" : "bin32"; 482 $configurationProductDir = File::Spec->catdir($baseProductDir, configurationForVisualStudio(), $binDir);482 $configurationProductDir = File::Spec->catdir($baseProductDir, $configuration, $binDir); 483 483 } else { 484 484 if (usesPerConfigurationBuildDirectory()) { … … 1214 1214 sub isAppleWinWebKit() 1215 1215 { 1216 return isAppleWebKit() && (isCygwin() || isWindows()) ;1216 return isAppleWebKit() && (isCygwin() || isWindows()) && !isWinCairo(); 1217 1217 } 1218 1218 … … 1651 1651 $inspectorResourcesDirPath = $productDir . "/WebCore.framework/Resources/inspector"; 1652 1652 } 1653 } elsif (isAppleWinWebKit() ) {1653 } elsif (isAppleWinWebKit() || isWinCairo()) { 1654 1654 $inspectorResourcesDirPath = $productDir . "/WebKit.resources/inspector"; 1655 1655 } elsif (isGtk()) { … … 2152 2152 if (isAppleWinWebKit()) { 2153 2153 $env->{PATH} = join(':', productDir(), dirname(installedSafariPath()), appleApplicationSupportPath(), $env->{PATH} || ""); 2154 } elsif (isWinCairo()) { 2155 my $winCairoBin = sourceDir() . "/WebKitLibraries/win/" . (isWin64() ? "bin64/" : "bin32/"); 2156 $env->{PATH} = join(':', productDir(), $winCairoBin , $env->{PATH} || ""); 2154 2157 } 2155 2158 }
Note:
See TracChangeset
for help on using the changeset viewer.