From 19e0ec812804ed4fa7a64cc690177c8c1190f034 Mon Sep 17 00:00:00 2001 From: Max Desiatov Date: Tue, 15 Jul 2025 12:43:40 +0100 Subject: [PATCH] Remove `cmake` from `Brewfile` We're seeing multiple build failures with CMake 4.0 on macOS: e.g. SwiftPM bootstrapping issues. `build-script` will always build a fixed version of CMake that's known to work, if preinstalled one is not found. Let's reduce the chances for confusion by not preinstalling CMake for those who use `Brewfile`. --- Brewfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Brewfile b/Brewfile index d965eb21aaefa..a3dbeb5aa8f4c 100644 --- a/Brewfile +++ b/Brewfile @@ -1,3 +1,2 @@ -brew "cmake" brew "ninja" brew "sccache"