[Python-checkins] cpython (3.3): Issue #16116: Now uses corrected include and library paths when building C
vinay.sajip
python-checkins at python.org
Tue Oct 23 21:27:56 CEST 2012
http://hg.python.org/cpython/rev/43f537339107
changeset: 79921:43f537339107
branch: 3.3
parent: 79916:1eb1c6942ac8
user: Vinay Sajip <vinay_sajip at yahoo.co.uk>
date: Tue Oct 23 20:26:14 2012 +0100
summary:
Issue #16116: Now uses corrected include and library paths when building C extensions in a venv.
files:
Lib/distutils/command/build_ext.py | 7 +++++++
Misc/NEWS | 3 +++
2 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py
--- a/Lib/distutils/command/build_ext.py
+++ b/Lib/distutils/command/build_ext.py
@@ -160,6 +160,11 @@
if isinstance(self.include_dirs, str):
self.include_dirs = self.include_dirs.split(os.pathsep)
+ # If in a virtualenv, add its include directory
+ # Issue 16116
+ if sys.exec_prefix != sys.base_exec_prefix:
+ self.include_dirs.append(os.path.join(sys.exec_prefix, 'include'))
+
# Put the Python "system" include dir at the end, so that
# any local include dirs take precedence.
self.include_dirs.append(py_include)
@@ -190,6 +195,8 @@
# must be the *native* platform. But we don't really support
# cross-compiling via a binary install anyway, so we let it go.
self.library_dirs.append(os.path.join(sys.exec_prefix, 'libs'))
+ if sys.base_exec_prefix != sys.prefix: # Issue 16116
+ self.library_dirs.append(os.path.join(sys.base_exec_prefix, 'libs'))
if self.debug:
self.build_temp = os.path.join(self.build_temp, "Debug")
else:
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -46,6 +46,9 @@
Library
-------
+- Issue #16116: Fix include and library paths to be correctwhen building C
+ extensions in venvs.
+
- Issue #16245: Fix the value of a few entities in html.entities.html5.
- Issue #14398: Fix size truncation and overflow bugs in the bz2 module.
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list