diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-04-09 16:12:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-09 16:12:44 (GMT) |
commit | e65f01f78d7bda3013fc5be485afa87ff56511d9 (patch) | |
tree | 01b62d53ee1489e18155a1fb183b4a488b8d09fc /Misc/NEWS.d/next | |
parent | 2ee077f7955e0349074f16a7afee40b4914619f7 (diff) | |
download | cpython-e65f01f78d7bda3013fc5be485afa87ff56511d9.zip cpython-e65f01f78d7bda3013fc5be485afa87ff56511d9.tar.gz cpython-e65f01f78d7bda3013fc5be485afa87ff56511d9.tar.bz2 |
bpo-36508: python-config don't export LINKFORSHARED (GH-12661)
python-config --ldflags no longer includes flags of the LINKFORSHARED
variable. The LINKFORSHARED variable must only be used to build
executables.
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r-- | Misc/NEWS.d/next/Build/2019-04-02-17-01-23.bpo-36508.SN5Y6N.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2019-04-02-17-01-23.bpo-36508.SN5Y6N.rst b/Misc/NEWS.d/next/Build/2019-04-02-17-01-23.bpo-36508.SN5Y6N.rst new file mode 100644 index 0000000..62f8084 --- /dev/null +++ b/Misc/NEWS.d/next/Build/2019-04-02-17-01-23.bpo-36508.SN5Y6N.rst @@ -0,0 +1,3 @@ +``python-config --ldflags`` no longer includes flags of the +``LINKFORSHARED`` variable. The ``LINKFORSHARED`` variable must only be used +to build executables. |