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.
library_dir
_build
1 parent bf9abf7 commit 2705442Copy full SHA for 2705442
python/triton/runtime/build.py
@@ -92,7 +92,7 @@ def _build(name, src, srcdir, library_dirs, include_dirs, libraries, extra_compi
92
else:
93
extra_compile_args += ["--std=c++17"]
94
if os.name == "nt":
95
- library_dirs += [os.path.join(sysconfig.get_paths(scheme=scheme)["stdlib"], "..", "libs")]
+ library_dirs = library_dirs + [os.path.join(sysconfig.get_paths(scheme=scheme)["stdlib"], "..", "libs")]
96
97
cc_cmd = [cc]
98
0 commit comments