diff options
author | Pu Lehui <pulehui@huawei.com> | 2025-02-19 06:31:13 +0000 |
---|---|---|
committer | Andrii Nakryiko <andrii@kernel.org> | 2025-02-24 14:14:52 -0800 |
commit | 1ffe30efd2f2e58c36b754c42c2b61906078a4cf (patch) | |
tree | a1d723c76aca06a4c737891211bd0dea105dc462 /scripts | |
parent | 236d3910117e9f97ebf75e511d8bcc950f1a4e5f (diff) |
kbuild, bpf: Correct pahole version that supports distilled base btf feature
pahole commit [0] of supporting distilled base btf feature released on
pahole v1.28 rather than v1.26. So let's correct this.
Signed-off-by: Pu Lehui <pulehui@huawei.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://git.kernel.org/pub/scm/devel/pahole/pahole.git/commit/?id=c7b1f6a29ba1 [0]
Link: https://lore.kernel.org/bpf/20250219063113.706600-1-pulehui@huaweicloud.com
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.btf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.btf b/scripts/Makefile.btf index c3cbeb13de50..fbaaec2187e5 100644 --- a/scripts/Makefile.btf +++ b/scripts/Makefile.btf @@ -24,7 +24,7 @@ else pahole-flags-$(call test-ge, $(pahole-ver), 126) = -j$(JOBS) --btf_features=encode_force,var,float,enum64,decl_tag,type_tag,optimized_func,consistent_func,decl_tag_kfuncs ifneq ($(KBUILD_EXTMOD),) -module-pahole-flags-$(call test-ge, $(pahole-ver), 126) += --btf_features=distilled_base +module-pahole-flags-$(call test-ge, $(pahole-ver), 128) += --btf_features=distilled_base endif endif |