aboutsummaryrefslogtreecommitdiffstats
path: root/build/ymake_conf.py
diff options
context:
space:
mode:
authorthegeorg <thegeorg@yandex-team.ru>2022-05-14 14:49:01 +0300
committerthegeorg <thegeorg@yandex-team.ru>2022-05-14 14:49:01 +0300
commit971233c067fb183ddbc0261a7b5e6cb5c1de823b (patch)
treeb13beae5d16e9e885a8d508312f91fe37f2586b1 /build/ymake_conf.py
parentc0235b947d8f43708878e4aa1ed7532ef663bbaf (diff)
downloadydb-971233c067fb183ddbc0261a7b5e6cb5c1de823b.tar.gz
Move some of the lld invocation logic to build/platform/lld
ref:b73d67b7c0dead2d8e7cda493896151162b02f55
Diffstat (limited to 'build/ymake_conf.py')
-rwxr-xr-xbuild/ymake_conf.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/build/ymake_conf.py b/build/ymake_conf.py
index 9c95c70cd3..173eab7ad0 100755
--- a/build/ymake_conf.py
+++ b/build/ymake_conf.py
@@ -1893,9 +1893,6 @@ class LD(Linker):
self.ld_flags.extend(('-Wl,-Bstatic', '-latomic', '-Wl,-Bdynamic'))
elif target.is_android:
self.ld_flags.extend(['-ldl', '-Wl,--no-as-needed'])
- if self.type == Linker.LLD and target.android_api < 29:
- # https://github.com/android/ndk/issues/1196
- self.ld_flags.append('-Wl,--no-rosegment')
elif target.is_macos:
self.ld_flags.append('-Wl,-no_deduplicate')
if not self.tc.is_clang: