From: Phillip Wood <phillip.wood123@gmail.com>
To: Patrick Steinhardt <ps@pks.im>, git@vger.kernel.org
Cc: "SZEDER Gábor" <szeder.dev@gmail.com>,
"Junio C Hamano" <gitster@pobox.com>,
"Phillip Wood" <phillip.wood@dunelm.org.uk>
Subject: Re: [PATCH v2 0/8] Some build system improvements
Date: Mon, 16 Mar 2026 10:54:37 +0000 [thread overview]
Message-ID: <7ff11efb-a44c-4c78-b8b2-d38f8a6beb9f@gmail.com> (raw)
In-Reply-To: <20260316-b4-pks-build-infra-improvements-v2-0-4b2c2c0c0425@pks.im>
On 16/03/2026 10:07, Patrick Steinhardt wrote:
>
> Changes in v2:
> - Turn array of precompiled headers into a simple string.
> - Point out in the commit message that the precompiled header is
> included implicitly.
> - Link to v1: https://lore.kernel.org/r/20260310-b4-pks-build-infra-improvements-v1-0-ec75d0710d6a@pks.im
Thanks for expanding the commit message in patch 8, the range-diff looks
good.
Phillip
> Thanks!
>
> Patrick
>
> [1]: https://lore.kernel.org/git/20250506-pks-contrib-spring-cleanup-v1-0-e6d5ddd79a72@pks.im/
>
> ---
> Patrick Steinhardt (8):
> Introduce new "tools/" directory
> contrib: move "coccinelle/" directory into "tools/"
> contrib: move "coverage-diff.sh" script into "tools/"
> contrib: move "update-unicode.sh" script into "tools/"
> builds: move build scripts into "tools/"
> git-compat-util.h: move warning infra to prepare for PCHs
> meson: compile compatibility sources separately
> meson: precompile "git-compat-util.h"
>
> Makefile | 76 ++++++++---------
> ci/run-static-analysis.sh | 2 +-
> config.mak.dev | 2 +-
> contrib/buildsystems/CMakeLists.txt | 18 ++--
> contrib/meson.build | 1 -
> contrib/subtree/meson.build | 2 +-
> git-compat-util.h | 8 +-
> meson.build | 96 +++++++++++++---------
> tools/README.md | 7 ++
> check-builtins.sh => tools/check-builtins.sh | 0
> {contrib => tools}/coccinelle/.gitignore | 0
> {contrib => tools}/coccinelle/README | 2 +-
> {contrib => tools}/coccinelle/array.cocci | 0
> {contrib => tools}/coccinelle/commit.cocci | 0
> .../coccinelle/config_fn_ctx.pending.cocci | 0
> {contrib => tools}/coccinelle/equals-null.cocci | 0
> {contrib => tools}/coccinelle/flex_alloc.cocci | 0
> {contrib => tools}/coccinelle/free.cocci | 0
> .../coccinelle/git_config_number.cocci | 0
> {contrib => tools}/coccinelle/hashmap.cocci | 0
> .../coccinelle/index-compatibility.cocci | 0
> {contrib => tools}/coccinelle/meson.build | 0
> {contrib => tools}/coccinelle/object_id.cocci | 0
> {contrib => tools}/coccinelle/preincr.cocci | 0
> {contrib => tools}/coccinelle/qsort.cocci | 0
> {contrib => tools}/coccinelle/refs.cocci | 0
> {contrib => tools}/coccinelle/spatchcache | 6 +-
> {contrib => tools}/coccinelle/strbuf.cocci | 0
> {contrib => tools}/coccinelle/swap.cocci | 0
> {contrib => tools}/coccinelle/tests/free.c | 0
> {contrib => tools}/coccinelle/tests/free.res | 0
> {contrib => tools}/coccinelle/the_repository.cocci | 0
> {contrib => tools}/coccinelle/xcalloc.cocci | 0
> {contrib => tools}/coccinelle/xopen.cocci | 0
> .../coccinelle/xstrdup_or_null.cocci | 0
> {contrib => tools}/coccinelle/xstrncmpz.cocci | 0
> {contrib => tools}/coverage-diff.sh | 0
> detect-compiler => tools/detect-compiler | 0
> generate-cmdlist.sh => tools/generate-cmdlist.sh | 0
> .../generate-configlist.sh | 0
> generate-hooklist.sh => tools/generate-hooklist.sh | 0
> generate-perl.sh => tools/generate-perl.sh | 0
> generate-python.sh => tools/generate-python.sh | 0
> generate-script.sh => tools/generate-script.sh | 0
> tools/meson.build | 1 +
> tools/precompiled.h | 1 +
> {contrib => tools}/update-unicode/.gitignore | 0
> {contrib => tools}/update-unicode/README | 0
> .../update-unicode/update_unicode.sh | 0
> 49 files changed, 123 insertions(+), 99 deletions(-)
>
> Range-diff versus v1:
>
> 1: 224e28be31 = 1: 9d09d2c39a Introduce new "tools/" directory
> 2: b217df51e5 = 2: 1b96bfe0f4 contrib: move "coccinelle/" directory into "tools/"
> 3: e371b6c221 = 3: ed6e90bd36 contrib: move "coverage-diff.sh" script into "tools/"
> 4: 3efeda9fa0 = 4: 48d8275ed1 contrib: move "update-unicode.sh" script into "tools/"
> 5: ee074c1396 = 5: daafeb3462 builds: move build scripts into "tools/"
> 6: d30d4a3119 = 6: 947fc0f7b4 git-compat-util.h: move warning infra to prepare for PCHs
> 7: ca118197a9 = 7: 6a2fb99aae meson: compile compatibility sources separately
> 8: a865a8650b ! 8: 857b478896 meson: precompile "git-compat-util.h"
> @@ Commit message
> set up properly it means that the file won't need to be reprocessed.
>
> Set up such a precompiled header for "git-compat-util.h" and wire it up
> - via Meson. This leads to a significant speedup when performing full
> - builds:
> + via Meson. This causes Meson to implicitly include the precompiled
> + header in all compilation units. With GCC and Clang for example this is
> + done via the "-include" statement [1].
> +
> + This leads to a significant speedup when performing full builds:
>
> Benchmark 1: ninja (rev = HEAD~)
> Time (mean ± σ): 14.467 s ± 0.126 s [User: 248.133 s, System: 31.298 s]
> @@ Commit message
> ninja (rev = HEAD) ran
> 1.40 ± 0.02 times faster than ninja (rev = HEAD~)
>
> + [1]: https://gcc.gnu.org/onlinedocs/gcc/Precompiled-Headers.html
> +
> Signed-off-by: Patrick Steinhardt <ps@pks.im>
>
> ## meson.build ##
> @@ meson.build: libgit = declare_dependency(
> c_args: libgit_c_args + [
> '-DGIT_VERSION_H="' + version_def_h.full_path() + '"',
> ],
> -+ c_pch: [ 'tools/precompiled.h' ],
> ++ c_pch: 'tools/precompiled.h',
> dependencies: libgit_dependencies,
> include_directories: libgit_include_directories,
> ),
> @@ meson.build: test_dependencies = [ ]
>
> git_builtin = executable('git',
> sources: builtin_sources + 'git.c',
> -+ c_pch: [ 'tools/precompiled.h' ],
> ++ c_pch: 'tools/precompiled.h',
> dependencies: [libgit_commonmain],
> install: true,
> install_dir: git_exec_path,
>
> ---
> base-commit: af2c8a61818d773325ef2324dd135786a03ebca0
> change-id: 20260304-b4-pks-build-infra-improvements-cc4012c5364e
>
>
next prev parent reply other threads:[~2026-03-16 10:54 UTC|newest]
Thread overview: 53+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-10 17:52 [PATCH 0/8] Some build system improvements Patrick Steinhardt
2026-03-10 17:52 ` [PATCH 1/8] Introduce new "tools/" directory Patrick Steinhardt
2026-03-10 17:52 ` [PATCH 2/8] contrib: move "coccinelle/" directory into "tools/" Patrick Steinhardt
2026-03-10 17:52 ` [PATCH 3/8] contrib: move "coverage-diff.sh" script " Patrick Steinhardt
2026-03-10 17:52 ` [PATCH 4/8] contrib: move "update-unicode.sh" " Patrick Steinhardt
2026-03-10 17:52 ` [PATCH 5/8] builds: move build scripts " Patrick Steinhardt
2026-03-10 17:52 ` [PATCH 6/8] git-compat-util.h: move warning infra to prepare for PCHs Patrick Steinhardt
2026-03-10 17:52 ` [PATCH 7/8] meson: compile compatibility sources separately Patrick Steinhardt
2026-03-11 14:32 ` Phillip Wood
2026-03-11 14:56 ` Phillip Wood
2026-03-11 23:27 ` SZEDER Gábor
2026-03-12 6:21 ` Patrick Steinhardt
2026-03-13 10:33 ` Phillip Wood
2026-03-16 8:09 ` Patrick Steinhardt
2026-04-10 15:17 ` SZEDER Gábor
2026-03-12 6:22 ` Patrick Steinhardt
2026-03-13 10:33 ` Phillip Wood
2026-03-16 8:09 ` Patrick Steinhardt
2026-03-16 10:52 ` Phillip Wood
2026-03-17 15:38 ` Kristoffer Haugsbakk
2026-03-19 5:32 ` Patrick Steinhardt
2026-03-10 17:52 ` [PATCH 8/8] meson: precompile "git-compat-util.h" Patrick Steinhardt
2026-03-11 14:32 ` Phillip Wood
2026-03-12 6:21 ` Patrick Steinhardt
2026-03-10 18:23 ` [PATCH 0/8] Some build system improvements Junio C Hamano
2026-03-11 7:32 ` Patrick Steinhardt
2026-03-13 22:21 ` Junio C Hamano
2026-03-16 8:09 ` Patrick Steinhardt
2026-03-16 10:07 ` [PATCH v2 " Patrick Steinhardt
2026-03-16 10:07 ` [PATCH v2 1/8] Introduce new "tools/" directory Patrick Steinhardt
2026-03-16 10:07 ` [PATCH v2 2/8] contrib: move "coccinelle/" directory into "tools/" Patrick Steinhardt
2026-03-16 10:07 ` [PATCH v2 3/8] contrib: move "coverage-diff.sh" script " Patrick Steinhardt
2026-03-16 10:07 ` [PATCH v2 4/8] contrib: move "update-unicode.sh" " Patrick Steinhardt
2026-03-16 10:08 ` [PATCH v2 5/8] builds: move build scripts " Patrick Steinhardt
2026-03-16 10:08 ` [PATCH v2 6/8] git-compat-util.h: move warning infra to prepare for PCHs Patrick Steinhardt
2026-03-16 10:08 ` [PATCH v2 7/8] meson: compile compatibility sources separately Patrick Steinhardt
2026-03-16 10:08 ` [PATCH v2 8/8] meson: precompile "git-compat-util.h" Patrick Steinhardt
2026-03-16 10:54 ` Phillip Wood [this message]
2026-03-19 5:33 ` [PATCH v3 0/8] Some build system improvements Patrick Steinhardt
2026-03-19 5:33 ` [PATCH v3 1/8] Introduce new "tools/" directory Patrick Steinhardt
2026-03-19 5:33 ` [PATCH v3 2/8] contrib: move "coccinelle/" directory into "tools/" Patrick Steinhardt
2026-03-19 5:33 ` [PATCH v3 3/8] contrib: move "coverage-diff.sh" script " Patrick Steinhardt
2026-03-20 12:15 ` Toon Claes
2026-03-19 5:33 ` [PATCH v3 4/8] contrib: move "update-unicode.sh" " Patrick Steinhardt
2026-03-19 5:33 ` [PATCH v3 5/8] builds: move build scripts " Patrick Steinhardt
2026-03-19 5:33 ` [PATCH v3 6/8] git-compat-util.h: move warning infra to prepare for PCHs Patrick Steinhardt
2026-03-20 12:34 ` Toon Claes
2026-03-19 5:33 ` [PATCH v3 7/8] meson: compile compatibility sources separately Patrick Steinhardt
2026-03-19 5:33 ` [PATCH v3 8/8] meson: precompile "git-compat-util.h" Patrick Steinhardt
2026-03-20 12:37 ` Toon Claes
2026-04-10 15:36 ` SZEDER Gábor
2026-04-10 15:46 ` Phillip Wood
2026-04-10 16:05 ` SZEDER Gábor
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7ff11efb-a44c-4c78-b8b2-d38f8a6beb9f@gmail.com \
--to=phillip.wood123@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=phillip.wood@dunelm.org.uk \
--cc=ps@pks.im \
--cc=szeder.dev@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.