Skip to content

Commit f521542

Browse files
author
arkhip0v0
committed
clean some blacklist
occupancy_grid_utils maintenance_tools incident_detectors topic_commutator sdcbag_player launcherd f4ef1453a86ab809b9ceefb57dc6a5fb45a90ec9
1 parent 596b9c6 commit f521542

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build/scripts/compile_cuda.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ def main():
8282
'-flto',
8383
'-faligned-allocation',
8484
'-fsized-deallocation',
85+
'-fexperimental-library',
8586
# While it might be reasonable to compile host part of .cu sources with these optimizations enabled,
8687
# nvcc passes these options down towards cicc which lacks x86_64 extensions support.
8788
'-msse2',
@@ -95,7 +96,7 @@ def main():
9596
skip_list.append('-nostdinc++')
9697

9798
for flag in skip_list:
98-
if flag in cflags:
99+
while flag in cflags:
99100
cflags.remove(flag)
100101

101102
skip_prefix_list = [

0 commit comments

Comments
 (0)