From 3dc4326ce7907a77a62481a8de457652569c9672 Mon Sep 17 00:00:00 2001 From: Dan Willemsen Date: Thu, 29 Jul 2021 12:16:14 -0700 Subject: [PATCH] Bump minimum MacOS version to 10.13 We've removed all of our buildbots running 10.10, and Android Studio requires 10.14+, so our oldest users are now the 10.13 buildbots. Bug: 191879468 Change-Id: Ie9fdb59f12bb672c5f2448cb558f54a2e10039fb --- cc/config/x86_darwin_host.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cc/config/x86_darwin_host.go b/cc/config/x86_darwin_host.go index 23fe1ab85..0bb1a816e 100644 --- a/cc/config/x86_darwin_host.go +++ b/cc/config/x86_darwin_host.go @@ -53,14 +53,12 @@ var ( } darwinSupportedSdkVersions = []string{ - "10.10", - "10.11", - "10.12", "10.13", "10.14", "10.15", "11.0", "11.1", + "11.3", } darwinAvailableLibraries = append( @@ -89,7 +87,7 @@ func init() { pctx.VariableFunc("macSdkRoot", func(ctx android.PackageVarContext) string { return getMacTools(ctx).sdkRoot }) - pctx.StaticVariable("macMinVersion", "10.10") + pctx.StaticVariable("macMinVersion", "10.13") pctx.VariableFunc("MacArPath", func(ctx android.PackageVarContext) string { return getMacTools(ctx).arPath })