bpo-14568: local libraries paths not passed to linker on HP-UX#8831
bpo-14568: local libraries paths not passed to linker on HP-UX#8831michael-o wants to merge 1 commit into
Conversation
|
This requires a backport to 3.7. |
|
Hi @michael-o . We have a few small patches for Python 2.7 for HPUX here https://github.com/chevah/python-package/tree/master/src/python and trying to get CFFI working on HPUX. Cheers |
|
@adiroiban In short -- yes. We want to migrate some mechinal application from Fortran to Python. Though, we plan to use 3.7+. I do not plan to contribute to 2.7 because it is a dead-end for me. I'd love to join forces. I have already several PRs created and pushing several other changes locally. |
Third party libraries on HP-UX don't reside in /usr/local/lib, but in /usr/local/lib/hpux<bitness>. These also need to be added to the compiler library dirs to make linking possible, not just for module discovery. Patch by Michael Osipov.
|
@auvipy Thanks for the approval, waiting for the merge.... |
|
Closing because there is actually no |
Third party libraries on HP-UX don't reside in /usr/local/lib, but in
/usr/local/lib/hpux<bitness>. These also need to be added to the compiler
library dirs to make linking possible, not just for module discovery.
Patch by Michael Osipov.
https://bugs.python.org/issue14568