cpython: 87331820569a (original) (raw)
Mercurial > cpython
changeset 83240:87331820569a 2.7
- Issue #17086: Search the include and library directories provided by the compiler. [#17086]
doko@ubuntu.com | |
---|---|
date | Thu, 11 Apr 2013 00:19:55 +0200 |
parents | 54532684dbed |
children | 99e363e67844 |
files | Misc/NEWS setup.py |
diffstat | 2 files changed, 4 insertions(+), 0 deletions(-)[+] [-] Misc/NEWS 3 setup.py 1 |
line wrap: on
line diff
--- a/Misc/NEWS +++ b/Misc/NEWS @@ -11,6 +11,9 @@ Build
- Issue #17682: Add the _io module to Modules/Setup.dist (commented out). +- Issue #17086: Search the include and library directories provided by the
--- a/setup.py +++ b/setup.py @@ -439,6 +439,7 @@ class PyBuildExt(build_ext): # Ensure that /usr/local is always used add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib') add_dir_to_list(self.compiler.include_dirs, '/usr/local/include')
self.add_gcc_paths()[](#l2.7) self.add_multiarch_paths()[](#l2.8)
# Add paths specified in the environment variables LDFLAGS and