mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Patch #926209: Patch to setup.py to run on x86_64 Linux.
This commit is contained in:
parent
2d6783b4bc
commit
642c8a11fd
2 changed files with 4 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -264,7 +264,7 @@ class PyBuildExt(build_ext):
|
|||
# lib_dirs and inc_dirs are used to search for files;
|
||||
# if a file is found in one of those directories, it can
|
||||
# be assumed that no additional -I,-L directives are needed.
|
||||
lib_dirs = self.compiler.library_dirs + ['/lib', '/usr/lib']
|
||||
lib_dirs = self.compiler.library_dirs + ['/lib', '/usr/lib', '/usr/lib/lib64']
|
||||
inc_dirs = self.compiler.include_dirs + ['/usr/include']
|
||||
exts = []
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue