aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorthegeorg <thegeorg@yandex-team.com>2023-03-23 12:48:27 +0300
committerthegeorg <thegeorg@yandex-team.com>2023-03-23 12:48:27 +0300
commitcb162fe3f7dc8ebd28829cce641e8b250f28802c (patch)
tree9e475e141642e8011d96172473a2053efef4eaad /build
parent8cfa97b5487686f556b3dae62132c8f099b1a0b3 (diff)
downloadydb-cb162fe3f7dc8ebd28829cce641e8b250f28802c.tar.gz
Mandate sdk_version 11.0 when targeting MacOS
Diffstat (limited to 'build')
-rwxr-xr-xbuild/ymake_conf.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/build/ymake_conf.py b/build/ymake_conf.py
index 0198a822e9..751d45cd40 100755
--- a/build/ymake_conf.py
+++ b/build/ymake_conf.py
@@ -1661,8 +1661,7 @@ class LD(Linker):
self.ld_flags.append('-Wl,-no_compact_unwind')
self.ld_sdk = select(default=None, selectors=[
- (target.is_macos_arm64, '-Wl,-sdk_version,11.0'),
- (target.is_macos, '-Wl,-sdk_version,10.15'),
+ (target.is_macos, '-Wl,-sdk_version,11.0'),
(not target.is_iossim and target.is_ios, '-Wl,-sdk_version,13.1'),
(target.is_iossim, '-Wl,-sdk_version,14.5'),
])