diff options
author | thegeorg <thegeorg@yandex-team.ru> | 2022-05-14 14:49:01 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.ru> | 2022-05-14 14:49:01 +0300 |
commit | 971233c067fb183ddbc0261a7b5e6cb5c1de823b (patch) | |
tree | b13beae5d16e9e885a8d508312f91fe37f2586b1 /build/ymake_conf.py | |
parent | c0235b947d8f43708878e4aa1ed7532ef663bbaf (diff) | |
download | ydb-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-x | build/ymake_conf.py | 3 |
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: |