diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-05-30 18:17:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-30 18:17:05 (GMT) |
commit | 608cfb8b416d0c2f55efb94f57efcc86d74dbf80 (patch) | |
tree | d1294574010ad9084bd3187393cfb25f1f048e17 /Misc | |
parent | 5a037b79597e127426a882a333d013bff6b313f6 (diff) | |
download | cpython-608cfb8b416d0c2f55efb94f57efcc86d74dbf80.zip cpython-608cfb8b416d0c2f55efb94f57efcc86d74dbf80.tar.gz cpython-608cfb8b416d0c2f55efb94f57efcc86d74dbf80.tar.bz2 |
[3.13] gh-119729: Use 't' in pkg-config file name for free-threaded build (GH-119738) (#119797)
For example, the free-threaded build now generates
`lib/pkgconfig/python-3.13t.pc` and the debug build generates
`lib/pkgconfig/python-3.13d.pc`.
(cherry picked from commit 1c04c63ced5038e8f45a2aac7dc45f0815a4ddc5)
Co-authored-by: Sam Gross <colesbury@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Build/2024-05-29-17-40-50.gh-issue-119729.k0xJ5U.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2024-05-29-17-40-50.gh-issue-119729.k0xJ5U.rst b/Misc/NEWS.d/next/Build/2024-05-29-17-40-50.gh-issue-119729.k0xJ5U.rst new file mode 100644 index 0000000..7ac300e --- /dev/null +++ b/Misc/NEWS.d/next/Build/2024-05-29-17-40-50.gh-issue-119729.k0xJ5U.rst @@ -0,0 +1,5 @@ +On POSIX systems, the pkg-config (``.pc``) filenames now include the ABI +flags, which may include debug ("d") and free-threaded ("t"). For example: +* ``python-3.14.pc`` (default, non-debug build) +* ``python-3.14d.pc`` (default, debug build) +* ``python-3.14t.pc`` (free-threaded build) |