- Issue #17219: Add library build dir for Python extension cross-builds.
This commit is contained in:
commit
9816619c5b
|
@ -244,7 +244,7 @@ class build_ext(Command):
|
|||
# Python's library directory must be appended to library_dirs
|
||||
# See Issues: #1600860, #4366
|
||||
if (sysconfig.get_config_var('Py_ENABLE_SHARED')):
|
||||
if sys.executable.startswith(os.path.join(sys.exec_prefix, "bin")):
|
||||
if not sysconfig.python_build:
|
||||
# building third party extensions
|
||||
self.library_dirs.append(sysconfig.get_config_var('LIBDIR'))
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue