Skip to content

Commit 02fa3ff

Browse files
committed
should show the path
1 parent fbbaed9 commit 02fa3ff

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ def _parse_path_env(name):
5555
for libdir in library_dirs:
5656
extra_link_args.append(f"-Wl,-rpath,{libdir}")
5757

58+
if sys.platform == "win32":
59+
for libdir in library_dirs:
60+
extra_link_args.append(f"/LIBPATH:{libdir}")
61+
5862
extra_compile_args = []
5963
if sys.platform == "win32":
6064
extra_compile_args.extend(["/O2"])

0 commit comments

Comments
 (0)