commit | f14087a4a96bb3f500e2d2bbc36c1124e90d5f73 | [log] [tgz] |
---|---|---|
author | Victor Stinner <vstinner@redhat.com> | Thu Dec 20 16:03:01 2018 +0100 |
committer | Ned Deily <nad@python.org> | Sun Dec 23 15:45:10 2018 -0500 |
tree | c37b0740d086c8ab2439df9ca3f1ffda8d752fa5 | |
parent | 371ca0bb8f5eaa0dcbd3fa2f878398285488d47f [diff] |
bpo-35257: Avoid leaking LTO linker flags into distutils (GH-10900) (GH-11264) When compiling 3rd party C extensions, the linker flags used by the compiler for the interpreter and the stdlib modules, will get leaked into distutils. In order to avoid that, the PY_CORE_LDFLAGS and PY_LDFLAGS_NODIST are introduced to keep those flags separated. (cherry picked from commit cf10a750f4b50b6775719cfb17bee00bc3a9c60b)