We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eddf76a commit 9dd01adCopy full SHA for 9dd01ad
1 file changed
setup.py
@@ -49,7 +49,8 @@
49
extra_link_args.extend(deflate_libs)
50
except (subprocess.CalledProcessError, FileNotFoundError):
51
if sys.platform == "win32":
52
- extra_link_args.append("deflate.lib")
+ # Use static lib on Windows to avoid DLL shipping
53
+ extra_link_args.append("deflatestatic.lib")
54
else:
55
extra_link_args.append("-ldeflate")
56
0 commit comments