We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 596b9c6 commit f521542Copy full SHA for f521542
build/scripts/compile_cuda.py
@@ -82,6 +82,7 @@ def main():
82
'-flto',
83
'-faligned-allocation',
84
'-fsized-deallocation',
85
+ '-fexperimental-library',
86
# While it might be reasonable to compile host part of .cu sources with these optimizations enabled,
87
# nvcc passes these options down towards cicc which lacks x86_64 extensions support.
88
'-msse2',
@@ -95,7 +96,7 @@ def main():
95
96
skip_list.append('-nostdinc++')
97
98
for flag in skip_list:
- if flag in cflags:
99
+ while flag in cflags:
100
cflags.remove(flag)
101
102
skip_prefix_list = [
0 commit comments