aboutsummaryrefslogtreecommitdiff
path: root/contrib/devtools
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2021-05-03 14:45:08 +0800
committerfanquake <fanquake@gmail.com>2022-01-26 17:28:16 +0800
commit446e73cc0bb7cd628039eaf9b1bcc93db23b924f (patch)
treef2aa7ac9c043dd90d9c503960b94ce62fbc2b93c /contrib/devtools
parentdd405add6ecff44bde3924ff7bfa4719b36f3596 (diff)
downloadbitcoin-446e73cc0bb7cd628039eaf9b1bcc93db23b924f.tar.xz
build: use macOS 11 SDK (Xcode 12.2)
This should be sufficient to support building for Apple ARM when cross-compiling.
Diffstat (limited to 'contrib/devtools')
-rwxr-xr-xcontrib/devtools/symbol-check.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/devtools/symbol-check.py b/contrib/devtools/symbol-check.py
index 4b695b3530..461132ae63 100755
--- a/contrib/devtools/symbol-check.py
+++ b/contrib/devtools/symbol-check.py
@@ -229,7 +229,7 @@ def check_MACHO_min_os(binary) -> bool:
return False
def check_MACHO_sdk(binary) -> bool:
- if binary.build_version.sdk == [10, 15, 6]:
+ if binary.build_version.sdk == [11, 0, 0]:
return True
return False