]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-112984: Fix link error on free-threaded Windows build (GH-114455)
authorSam Gross <colesbury@gmail.com>
Tue, 23 Jan 2024 18:05:15 +0000 (13:05 -0500)
committerGitHub <noreply@github.com>
Tue, 23 Jan 2024 18:05:15 +0000 (18:05 +0000)
commit5f1997896d9c3ecf92e9863177c452b468a6a2c8
treeb7ec662ae2ae284d19633b8c5c4453e5bf726a28
parentba253a4794ae2d35a6f6df46a98a1ed38bd61268
gh-112984: Fix link error on free-threaded Windows build (GH-114455)

The test_peg_generator test tried to link the python313_d.lib library,
which failed because the library is now named python313t_d.lib. The
underlying problem is that the "compiler" attribute was not set when
we call get_libraries() from distutils.
Tools/peg_generator/pegen/build.py