Fix Xcode 14.3 compatibility

With Xcode 14.3+ on x86_64 machines there is an opaque error when linking binaries on macOS because Apple removed an old support library. That library is only linked if the macOS target is < 10.11, so this bumps the default versions past that. This macOS version was released in September 2015.

Fixes https://github.com/bazelbuild/bazel/issues/18278

Closes #18460.

PiperOrigin-RevId: 534743568
Change-Id: I131880096c941df0097fe3b1faabd5a6afada4f3
diff --git a/.bazelrc b/.bazelrc
index 2d6f295..a0434ae 100644
--- a/.bazelrc
+++ b/.bazelrc
@@ -25,7 +25,7 @@
 # Alias
 build:remote --config=ubuntu1804_java11
 
-build:macos --macos_minimum_os=10.10
+build:macos --macos_minimum_os=10.11
 
 # Enable Bzlmod
 build:bzlmod --enable_bzlmod