Skip to content

Commit 3091a31

Browse files
committed
fix typo in EULA: replace libnvrtx-builtins_static by libnvrtc-builtins_static
1 parent c9abbf9 commit 3091a31

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

eb_hooks.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -786,6 +786,11 @@ def post_postproc_cuda(self, *args, **kwargs):
786786
for word in line.split():
787787
if any(ext in word for ext in file_extensions):
788788
allowlist.append(os.path.splitext(word)[0])
789+
# The EULA of CUDA 12.4 introduced a typo (confirmed by NVIDIA):
790+
# libnvrtx-builtins_static.so should be libnvrtc-builtins_static.so
791+
if 'libnvrtx-builtins_static' in allowlist:
792+
allowlist.remove('libnvrtx-builtins_static')
793+
allowlist.append('libnvrtc-builtins_static')
789794
allowlist = sorted(set(allowlist))
790795
self.log.info("Allowlist for files in CUDA installation that can be redistributed: " + ', '.join(allowlist))
791796

0 commit comments

Comments
 (0)