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.
1 parent 170f9c9 commit a86ab58Copy full SHA for a86ab58
setup.py
@@ -65,7 +65,7 @@ def get_objcryst_libraries():
65
if "objcryst" not in stem.lower():
66
continue
67
# strip a leading "lib" so that setuptools does -lObjCryst, not -llibObjCryst
68
- if stem.startswith("lib"):
+ if os.name != "nt" and stem.startswith("lib"):
69
stem = stem[3:]
70
libs.append(stem)
71
0 commit comments