summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMichael Osipov <michael.osipov@siemens.com>2022-05-19 15:42:21 (GMT)
committerGitHub <noreply@github.com>2022-05-19 15:42:21 (GMT)
commit09be18a73d81aa82cc57a782f3b0a9811e43ad3b (patch)
treeb220db22f0c60b01a96df108b387f39e96d9de10 /Misc/NEWS.d
parent2cdd57f119e3b85f1bfd28c7ff040e0d9bcaf115 (diff)
downloadcpython-09be18a73d81aa82cc57a782f3b0a9811e43ad3b.zip
cpython-09be18a73d81aa82cc57a782f3b0a9811e43ad3b.tar.gz
cpython-09be18a73d81aa82cc57a782f3b0a9811e43ad3b.tar.bz2
gh-78630: Drop invalid HP aCC compiler switch -fPIC on HP-UX (#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.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Build/2018-08-21-11-10-18.bpo-34449.Z3qm3c.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2018-08-21-11-10-18.bpo-34449.Z3qm3c.rst b/Misc/NEWS.d/next/Build/2018-08-21-11-10-18.bpo-34449.Z3qm3c.rst
new file mode 100644
index 0000000..53b75ae
--- /dev/null
+++ b/Misc/NEWS.d/next/Build/2018-08-21-11-10-18.bpo-34449.Z3qm3c.rst
@@ -0,0 +1 @@
+Drop invalid compiler switch ``-fPIC`` for HP aCC on HP-UX. Patch by Michael Osipov.