commit | cf10a750f4b50b6775719cfb17bee00bc3a9c60b | [log] [tgz] |
---|---|---|
author | stratakis <cstratak@redhat.com> | Wed Dec 19 18:19:01 2018 +0100 |
committer | Victor Stinner <vstinner@redhat.com> | Wed Dec 19 18:19:01 2018 +0100 |
tree | b01cd3a429404cf2a2d58d8cfb35676c8969f5f6 | |
parent | 55cc34500e5abbfedb89adc95e3f94d53c544933 [diff] |
bpo-35257: Avoid leaking LTO linker flags into distutils (GH-10900) 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.