Title: [263660] trunk/Tools
Revision
263660
Author
jbed...@apple.com
Date
2020-06-29 07:22:05 -0700 (Mon, 29 Jun 2020)

Log Message

run-_javascript_core-tests: Support Apple Silicon running x86 processes
https://bugs.webkit.org/show_bug.cgi?id=213487
<rdar://problem/64606667>

Unreviewed infrastructure fix.

* Scripts/webkitdirs.pm:
(architecturesForProducts): Return architecutre(), not determineArchitecture().

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (263659 => 263660)


--- trunk/Tools/ChangeLog	2020-06-29 12:15:06 UTC (rev 263659)
+++ trunk/Tools/ChangeLog	2020-06-29 14:22:05 UTC (rev 263660)
@@ -1,3 +1,14 @@
+2020-06-29  Jonathan Bedard  <jbed...@apple.com>
+
+        run-_javascript_core-tests: Support Apple Silicon running x86 processes
+        https://bugs.webkit.org/show_bug.cgi?id=213487
+        <rdar://problem/64606667>
+
+        Unreviewed infrastructure fix.
+
+        * Scripts/webkitdirs.pm:
+        (architecturesForProducts): Return architecutre(), not determineArchitecture().
+
 2020-06-29  Xabier Rodriguez Calvar  <calva...@igalia.com>
 
         [webkitpy] PHP7.4 support on Debian platforms

Modified: trunk/Tools/Scripts/webkitdirs.pm (263659 => 263660)


--- trunk/Tools/Scripts/webkitdirs.pm	2020-06-29 12:15:06 UTC (rev 263659)
+++ trunk/Tools/Scripts/webkitdirs.pm	2020-06-29 14:22:05 UTC (rev 263660)
@@ -843,7 +843,7 @@
 {
     # Most ports don't have emulation, assume that the user gave us an accurate architecture
     if (!isAppleCocoaWebKit()) {
-        return determineArchitecture();
+        return architecture();
     }
     my $webkitBinary = File::Spec->catdir(executableProductDir(), "_javascript_Core.framework", "_javascript_Core");
     my $architectures = `/usr/bin/lipo -archs $webkitBinary`;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to