mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Just to be sure, initialize with a copy of the compiler's lib and inc dirs.
This commit is contained in:
commit
e6f228011e
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
@ -507,8 +507,8 @@ class PyBuildExt(build_ext):
|
|||
]
|
||||
inc_dirs = self.compiler.include_dirs + ['/usr/include']
|
||||
else:
|
||||
lib_dirs = []
|
||||
inc_dirs = []
|
||||
lib_dirs = self.compiler.library_dirs[:]
|
||||
inc_dirs = self.compiler.include_dirs[:]
|
||||
exts = []
|
||||
missing = []
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue