-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
bpo-34449: HP aCC complains about invalid -fPIC on HP-UX #8847
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
bc780bd
to
e605974
Compare
-fPIC is code generation option and not a link option. At compile time '+z' is already properly used with HP aCC and shared libraries are correctly linked with '+b'. This switch can safely be dropped. Patch by Michael Osipov.
@michael-o, can you please sign the CLA? |
@erlend-aasland I am certain that I already did because other PRs from me have been absorbed into Python already. See here: https://github.com/python/cpython/commits?author=michael-o |
Ah, it was a different email address. This I can change. |
FYI, CLA is still failing. We cannot merge without it. |
@erlend-aasland Just signed. Please check. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
SGTM
Awesome, 4 years of patience payed out. GCC has been dead for a very long time on HP-UX. |
Misc/NEWS.d/next/Build/2018-08-21-11-10-18.bpo-34449.Z3qm3c.rst
Outdated
Show resolved
Hide resolved
Thanks @michael-o for the PR, and @erlend-aasland for merging it 🌮🎉.. I'm working now to backport this PR to: 3.11. |
…ythonGH-8847) At compile time, '+z' is already properly used with HP aCC, and shared libraries are correctly linked with '+b'. The '-fPIC' switch can safely be dropped. (cherry picked from commit 09be18a) Co-authored-by: Michael Osipov <[email protected]>
GH-92977 is a backport of this pull request to the 3.11 branch. |
At compile time, '+z' is already properly used with HP aCC, and shared libraries are correctly linked with '+b'. The '-fPIC' switch can safely be dropped. (cherry picked from commit 09be18a) Co-authored-by: Michael Osipov <[email protected]>
-fPIC is code generation option and not a link option. At compile time '+z' is
already properly used with HP aCC and shared libraries are correctly linked
with '+b'. This switch can safely be dropped.
Patch by Michael Osipov.
https://bugs.python.org/issue34449