aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorarkhip0v0 <arkhip0v0@yandex-team.com>2024-09-02 23:50:23 +0300
committerarkhip0v0 <arkhip0v0@yandex-team.com>2024-09-03 00:04:55 +0300
commitf521542f2363de26174dc2fa8b2eb1a8806c3bd5 (patch)
tree5a88cce30704ba899baf3e3730a133de1e318fb7 /build
parent596b9c6bf6af936e655e5d86a8d2e1d8bcba81df (diff)
downloadydb-f521542f2363de26174dc2fa8b2eb1a8806c3bd5.tar.gz
clean some blacklist
occupancy_grid_utils maintenance_tools incident_detectors topic_commutator sdcbag_player launcherd f4ef1453a86ab809b9ceefb57dc6a5fb45a90ec9
Diffstat (limited to 'build')
-rw-r--r--build/scripts/compile_cuda.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/scripts/compile_cuda.py b/build/scripts/compile_cuda.py
index cd37a95c60..9660300069 100644
--- a/build/scripts/compile_cuda.py
+++ b/build/scripts/compile_cuda.py
@@ -82,6 +82,7 @@ def main():
'-flto',
'-faligned-allocation',
'-fsized-deallocation',
+ '-fexperimental-library',
# While it might be reasonable to compile host part of .cu sources with these optimizations enabled,
# nvcc passes these options down towards cicc which lacks x86_64 extensions support.
'-msse2',
@@ -95,7 +96,7 @@ def main():
skip_list.append('-nostdinc++')
for flag in skip_list:
- if flag in cflags:
+ while flag in cflags:
cflags.remove(flag)
skip_prefix_list = [