]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] GH-118943: Remove regen-jit from the regen-all make target (GH-122840)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 8 Aug 2024 21:14:49 +0000 (23:14 +0200)
committerGitHub <noreply@github.com>
Thu, 8 Aug 2024 21:14:49 +0000 (14:14 -0700)
cherry picked from commit 8c9d1742de6e3c3232c96660291f109c23a3bc49)

Co-authored-by: Miro Hrončok <miro@hroncok.cz>
Co-authored-by: Éric <merwok@netwok.org>
Makefile.pre.in
Misc/NEWS.d/next/Build/2024-08-02-12-59-15.gh-issue-118943.vZQtET.rst [new file with mode: 0644]

index 6b40228bca0d988cdfca0868db86208281a9f85c..39f771cb14b3ebc788bbbe127f7f4d09022d5076 100644 (file)
@@ -1663,7 +1663,7 @@ regen-unicodedata:
 regen-all: regen-cases regen-typeslots \
        regen-token regen-ast regen-keyword regen-sre regen-frozen \
        regen-pegen-metaparser regen-pegen regen-test-frozenmain \
-       regen-test-levenshtein regen-global-objects regen-jit
+       regen-test-levenshtein regen-global-objects
        @echo
        @echo "Note: make regen-stdlib-module-names, make regen-limited-abi, "
        @echo "make regen-configure, make regen-sbom, and make regen-unicodedata should be run manually"
diff --git a/Misc/NEWS.d/next/Build/2024-08-02-12-59-15.gh-issue-118943.vZQtET.rst b/Misc/NEWS.d/next/Build/2024-08-02-12-59-15.gh-issue-118943.vZQtET.rst
new file mode 100644 (file)
index 0000000..42cda69
--- /dev/null
@@ -0,0 +1 @@
+Fix an issue where the experimental JIT could be built several times by the ``make regen-all`` target, leading to possible race conditions on heavily parallelized builds.