diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-04-16 06:01:33 -0700 |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2019-04-16 15:01:33 +0200 |
commit | cd46b09b0863c787dd54c433fae52bd8bdfaecd0 (patch) | |
tree | 987ea0adf52010f92bb8f8aa4564bfda48287ba0 /Misc/NEWS.d/next/Build | |
parent | 2815bf5b1f39b9f677135473392887a8d261fc97 (diff) | |
download | cpython-git-cd46b09b0863c787dd54c433fae52bd8bdfaecd0.tar.gz |
bpo-36508: python-config don't export LINKFORSHARED (GH-12661) (GH-12748)
python-config --ldflags no longer includes flags of the LINKFORSHARED
variable. The LINKFORSHARED variable must only be used to build
executables.
(cherry picked from commit e65f01f78d7bda3013fc5be485afa87ff56511d9)
Co-authored-by: Victor Stinner <vstinner@redhat.com>
Diffstat (limited to 'Misc/NEWS.d/next/Build')
-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 0000000000..62f80840a0 --- /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. |