Skip to content

Commit

Permalink
pythongh-118943: Remove 'regen-jit' from the 'regen-all' make target
Browse files Browse the repository at this point in the history
  • Loading branch information
hroncok committed Aug 2, 2024
1 parent addbb73 commit a593b7c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
- name: Build CPython
run: |
make -j4 regen-all
make regen-stdlib-module-names regen-sbom
make regen-stdlib-module-names regen-sbom regen-jit
- name: Check for changes
run: |
git add -u
Expand Down
4 changes: 2 additions & 2 deletions Makefile.pre.in
Original file line number Diff line number Diff line change
Expand Up @@ -1665,10 +1665,10 @@ 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"
@echo "make regen-configure, make regen-sbom, regen-jit, and make regen-unicodedata should be run manually"

############################################################################
# Special rules for object files
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
The ``regen-jit`` make target is no longer part of ``regen-all`` to avoid various
race conditions when running ``regen-all``.

0 comments on commit a593b7c

Please sign in to comment.