Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Makefile.pre.in
Original file line number Diff line number Diff line change
Expand Up @@ -3323,7 +3323,9 @@ docclean:
# data. The PGO data is only valid if source code remains unchanged.
.PHONY: clean-retain-profile
clean-retain-profile: pycremoval
find . -name '*.[oa]' -exec rm -f {} ';'
# Keep the generated JIT shim objects with the rest of the JIT generated
# files: they are regenerated as a group and tracked by .jit-stamp.
find . -name '*.[oa]' ! -name 'jit_shim*.o' -exec rm -f {} ';'
find . -name '*.s[ol]' -exec rm -f {} ';'
find . -name '*.so.[0-9]*.[0-9]*' -exec rm -f {} ';'
find . -name '*.lto' -exec rm -f {} ';'
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Avoid unnecessary JIT-related rebuilds during ``make install`` after
``--enable-optimizations`` builds.
Loading