of: overlay: enable of_overlay_fdt_apply() kerneldoc
[linux.git] / scripts / Makefile.btf
1 # SPDX-License-Identifier: GPL-2.0
2
3 pahole-ver := $(CONFIG_PAHOLE_VERSION)
4 pahole-flags-y :=
5
6 # pahole 1.18 through 1.21 can't handle zero-sized per-CPU vars
7 ifeq ($(call test-le, $(pahole-ver), 121),y)
8 pahole-flags-$(call test-ge, $(pahole-ver), 118)        += --skip_encoding_btf_vars
9 endif
10
11 pahole-flags-$(call test-ge, $(pahole-ver), 121)        += --btf_gen_floats
12
13 pahole-flags-$(call test-ge, $(pahole-ver), 122)        += -j
14
15 pahole-flags-$(CONFIG_PAHOLE_HAS_LANG_EXCLUDE)          += --lang_exclude=rust
16
17 pahole-flags-$(call test-ge, $(pahole-ver), 125)        += --skip_encoding_btf_inconsistent_proto --btf_gen_optimized
18
19 export PAHOLE_FLAGS := $(pahole-flags-y)