Title: [271426] trunk/Tools
Revision
271426
Author
[email protected]
Date
2021-01-12 20:14:28 -0800 (Tue, 12 Jan 2021)

Log Message

Invoke ccache properly on macOS aarch64
https://bugs.webkit.org/show_bug.cgi?id=220497

Patch by Tetsuharu Ohzeki <[email protected]> on 2021-01-12
Reviewed by Darin Adler.

For macOS aarch64, the current homebrew recommends to install homebrew to `/opt/homebrew`.
https://docs.brew.sh/Installation

This patch adds it to the list which `ccache-wrapper` searches.

* ccache/ccache-wrapper:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (271425 => 271426)


--- trunk/Tools/ChangeLog	2021-01-13 00:55:07 UTC (rev 271425)
+++ trunk/Tools/ChangeLog	2021-01-13 04:14:28 UTC (rev 271426)
@@ -1,3 +1,17 @@
+2021-01-12  Tetsuharu Ohzeki  <[email protected]>
+
+        Invoke ccache properly on macOS aarch64
+        https://bugs.webkit.org/show_bug.cgi?id=220497
+
+        Reviewed by Darin Adler.
+
+        For macOS aarch64, the current homebrew recommends to install homebrew to `/opt/homebrew`.
+        https://docs.brew.sh/Installation
+
+        This patch adds it to the list which `ccache-wrapper` searches.
+
+        * ccache/ccache-wrapper:
+
 2021-01-12  BJ Burg  <[email protected]>
 
         [Cocoa] Web Inspector: move browser domain activation methods back to WKWebView and UIDelegate

Modified: trunk/Tools/ccache/ccache-wrapper (271425 => 271426)


--- trunk/Tools/ccache/ccache-wrapper	2021-01-13 00:55:07 UTC (rev 271425)
+++ trunk/Tools/ccache/ccache-wrapper	2021-01-13 04:14:28 UTC (rev 271426)
@@ -40,6 +40,7 @@
 try $(which ccache &> /dev/null)
 try /usr/local
 try /opt/brew
+try /opt/homebrew
 try "${HOMEBREW_TEMP}/../brew"
 try "${HOMEBREW_TEMP}/../../brew"
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to