-
-
Notifications
You must be signed in to change notification settings - Fork 32.3k
bpo-32647: Link ctypes extension with libdl. #5550
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The ctypes module used to depend on indirect linking for dlopen. The shared extension is now explicitly linked against libdl on platforms with dl. Signed-off-by: Christian Heimes <[email protected]>
8b4aff0
to
10162d3
Compare
@tiran: Please replace |
Thanks @tiran for the PR 🌮🎉.. I'm working now to backport this PR to: 2.7, 3.6, 3.7. |
The ctypes module used to depend on indirect linking for dlopen. The shared extension is now explicitly linked against libdl on platforms with dl. Signed-off-by: Christian Heimes <[email protected]> (cherry picked from commit 5bb9692) Co-authored-by: Christian Heimes <[email protected]>
GH-5874 is a backport of this pull request to the 3.7 branch. |
GH-5875 is a backport of this pull request to the 3.6 branch. |
The ctypes module used to depend on indirect linking for dlopen. The shared extension is now explicitly linked against libdl on platforms with dl. Signed-off-by: Christian Heimes <[email protected]> (cherry picked from commit 5bb9692) Co-authored-by: Christian Heimes <[email protected]>
Sorry, @tiran, I could not cleanly backport this to |
The ctypes module used to depend on indirect linking for dlopen. The shared extension is now explicitly linked against libdl on platforms with dl. Signed-off-by: Christian Heimes <[email protected]>. (cherry picked from commit 5bb9692) Co-authored-by: Christian Heimes <[email protected]>
GH-5877 is a backport of this pull request to the 2.7 branch. |
The ctypes module used to depend on indirect linking for dlopen. The shared extension is now explicitly linked against libdl on platforms with dl. Signed-off-by: Christian Heimes <[email protected]>. (cherry picked from commit 5bb9692) Co-authored-by: Christian Heimes <[email protected]>
The ctypes module used to depend on indirect linking for dlopen. The shared extension is now explicitly linked against libdl on platforms with dl. Signed-off-by: Christian Heimes <[email protected]> (cherry picked from commit 5bb9692) Co-authored-by: Christian Heimes <[email protected]>
The ctypes module used to depend on indirect linking for dlopen. The shared extension is now explicitly linked against libdl on platforms with dl. Signed-off-by: Christian Heimes <[email protected]> (cherry picked from commit 5bb9692) Co-authored-by: Christian Heimes <[email protected]>
The ctypes module used to depend on indirect linking for dlopen. The shared
extension is now explicitly linked against libdl on platforms with dl.
Signed-off-by: Christian Heimes [email protected]
https://bugs.python.org/issue32647