diff options
author | svidyuk <[email protected]> | 2022-06-01 15:52:24 +0300 |
---|---|---|
committer | svidyuk <[email protected]> | 2022-06-01 15:52:24 +0300 |
commit | 3078efc0435f57bcd781b58118a6b82578d11037 (patch) | |
tree | ff27d21df1544d3113d94a04d32050d169b7ffac /build/scripts/link_exe.py | |
parent | 8e7094c87fa7ad049e6ea600a5f90f1c97d683bd (diff) |
Fix missing dep in build scripts
ref:e2d05ce38be56e0783b84372504682f58fbb3c5c
Diffstat (limited to 'build/scripts/link_exe.py')
-rw-r--r-- | build/scripts/link_exe.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/scripts/link_exe.py b/build/scripts/link_exe.py index a885a2b9189..aa968188516 100644 --- a/build/scripts/link_exe.py +++ b/build/scripts/link_exe.py @@ -106,7 +106,7 @@ if __name__ == '__main__': cmd = remove_excessive_flags(args) if opts.musl: cmd = fix_cmd_for_musl(cmd) - + if opts.dynamic_cuda: cmd = fix_cmd_for_dynamic_cuda(cmd) cmd = ProcessWholeArchiveOption(opts.arch, opts.whole_archive_peers, opts.whole_archive_libs).construct_cmd(cmd) |