diff options
| author | 2020-02-12 18:31:35 -0800 | |
|---|---|---|
| committer | 2020-02-12 18:31:35 -0800 | |
| commit | 632dbb3dc2d45e9da7367e66676b09e26676fcf7 (patch) | |
| tree | e40bf370efe47317fb2034a527554e44db1e100c | |
| parent | a871ee2067d7e95de0c02a9dd68a6b4efd02d037 (diff) | |
Bump our macOS target version to 10.9.
https://developer.apple.com/documentation/xcode/notarizing_macos_software_before_distribution/resolving_common_notarization_issues
says "notarization only works for binaries linked against macOS 10.9
or later".
Test: N/A
Bug: http://b/143105198
Change-Id: If66f81caa2f074bf70a75094da578295aa9f58ad
| -rw-r--r-- | cc/config/x86_darwin_host.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/config/x86_darwin_host.go b/cc/config/x86_darwin_host.go index 63b9d4872..000228d49 100644 --- a/cc/config/x86_darwin_host.go +++ b/cc/config/x86_darwin_host.go @@ -100,7 +100,7 @@ func init() { pctx.VariableFunc("macSdkRoot", func(ctx android.PackageVarContext) string { return xcrunSdk(ctx, "--show-sdk-path") }) - pctx.StaticVariable("macMinVersion", "10.8") + pctx.StaticVariable("macMinVersion", "10.9") pctx.VariableFunc("MacArPath", func(ctx android.PackageVarContext) string { return xcrun(ctx, "--find", "ar") }) |