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 e27bd79 commit a12270eCopy full SHA for a12270e
setup.py
@@ -386,7 +386,8 @@ def build_extension(self, ext):
386
# And then we have fun failures due to lib mismatch.
387
# I could not find a cleaner way, so lets just hook into linker command and make sure
388
# our libs appear before other libs.
389
- if sys.platform == 'darwin' and using_libcrypto() and not using_system_libs() and not using_system_libcrypto():
+ if ((sys.platform == 'darwin' or sys.platform == 'linux')
390
+ and using_libcrypto() and not using_system_libs() and not using_system_libcrypto()):
391
392
orig_linker_so = self.compiler.linker_so[:]
393
0 commit comments