This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: avoid runtime library path for extensions found in system directories
Type: Stage:
Components: Build Versions: Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: doko Nosy List: doko, python-dev, twouters
Priority: normal Keywords: patch

Created on 2012-07-01 08:29 by doko, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
avoid-rpath.diff doko, 2014-04-17 15:51
Messages (4)
msg164460 - (view) Author: Matthias Klose (doko) * (Python committer) Date: 2012-07-01 08:29
if a runtime library path is passed to build an extension, it always ends up in the .so file. it's not needed, so avoid runtime library path for extensions found in system directories.
msg216700 - (view) Author: Matthias Klose (doko) * (Python committer) Date: 2014-04-17 15:51
updated patch, reviewed by Thomas, checked that rpath is not added, and the the extensions still build.
msg216701 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-04-17 15:55
New changeset 1a00e04a233d by doko in branch '3.4':
- Issue #15234: For BerkelyDB and Sqlite, only add the found library and
http://hg.python.org/cpython/rev/1a00e04a233d
msg216702 - (view) Author: Matthias Klose (doko) * (Python committer) Date: 2014-04-17 15:56
fixed
History
Date User Action Args
2022-04-11 14:57:32adminsetgithub: 59439
2014-04-17 15:56:54dokosetstatus: open -> closed
resolution: fixed
messages: + msg216702
2014-04-17 15:55:48python-devsetnosy: + python-dev
messages: + msg216701
2014-04-17 15:52:00dokosetfiles: - rpath.diff
2014-04-17 15:51:39dokosetfiles: + avoid-rpath.diff
nosy: + twouters
messages: + msg216700

2012-07-01 08:29:13dokocreate