Skip to content

Commit a86ab58

Browse files
committed
make MSVC linker happy
1 parent 170f9c9 commit a86ab58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def get_objcryst_libraries():
6565
if "objcryst" not in stem.lower():
6666
continue
6767
# strip a leading "lib" so that setuptools does -lObjCryst, not -llibObjCryst
68-
if stem.startswith("lib"):
68+
if os.name != "nt" and stem.startswith("lib"):
6969
stem = stem[3:]
7070
libs.append(stem)
7171

0 commit comments

Comments
 (0)