diff options
author | Sam Gross <colesbury@gmail.com> | 2024-05-30 17:48:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-30 17:48:28 (GMT) |
commit | 1c04c63ced5038e8f45a2aac7dc45f0815a4ddc5 (patch) | |
tree | d04093c6f44dd81abe4fb1f61b16381d36239337 /Misc/NEWS.d/next/Build | |
parent | bf098d4157158e1e4b2ea78aba4ac82d72e24cff (diff) | |
download | cpython-1c04c63ced5038e8f45a2aac7dc45f0815a4ddc5.zip cpython-1c04c63ced5038e8f45a2aac7dc45f0815a4ddc5.tar.gz cpython-1c04c63ced5038e8f45a2aac7dc45f0815a4ddc5.tar.bz2 |
gh-119729: Use 't' in pkg-config file name for free-threaded build (#119738)
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`.
Diffstat (limited to 'Misc/NEWS.d/next/Build')
-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) |