xref: /linux/tools/build/Makefile.feature (revision ec714e371f22f716a04e6ecb2a24988c92b26911)
1ec8f24b7SThomas Gleixner# SPDX-License-Identifier: GPL-2.0-only
2e6c76d62SJiri Olsafeature_dir := $(srctree)/tools/build/feature
3e6c76d62SJiri Olsa
4e6c76d62SJiri Olsaifneq ($(OUTPUT),)
5e6c76d62SJiri Olsa  OUTPUT_FEATURES = $(OUTPUT)feature/
6e6c76d62SJiri Olsa  $(shell mkdir -p $(OUTPUT_FEATURES))
7e6c76d62SJiri Olsaendif
8e6c76d62SJiri Olsa
9e6c76d62SJiri Olsafeature_check = $(eval $(feature_check_code))
10e6c76d62SJiri Olsadefine feature_check_code
11fa5c8931SDaniel Díaz  feature-$(1) := $(shell $(MAKE) OUTPUT=$(OUTPUT_FEATURES) CC="$(CC)" CXX="$(CXX)" CFLAGS="$(EXTRA_CFLAGS) $(FEATURE_CHECK_CFLAGS-$(1))" CXXFLAGS="$(EXTRA_CXXFLAGS) $(FEATURE_CHECK_CXXFLAGS-$(1))" LDFLAGS="$(LDFLAGS) $(FEATURE_CHECK_LDFLAGS-$(1))" -C $(feature_dir) $(OUTPUT_FEATURES)test-$1.bin >/dev/null 2>/dev/null && echo 1 || echo 0)
12e6c76d62SJiri Olsaendef
13e6c76d62SJiri Olsa
14e6c76d62SJiri Olsafeature_set = $(eval $(feature_set_code))
15e6c76d62SJiri Olsadefine feature_set_code
16e6c76d62SJiri Olsa  feature-$(1) := 1
17e6c76d62SJiri Olsaendef
18e6c76d62SJiri Olsa
19e6c76d62SJiri Olsa#
20e6c76d62SJiri Olsa# Build the feature check binaries in parallel, ignore errors, ignore return value and suppress output:
21e6c76d62SJiri Olsa#
22e6c76d62SJiri Olsa
23e6c76d62SJiri Olsa#
24e6c76d62SJiri Olsa# Note that this is not a complete list of all feature tests, just
25e6c76d62SJiri Olsa# those that are typically built on a fully configured system.
26e6c76d62SJiri Olsa#
27e6c76d62SJiri Olsa# [ Feature tests not mentioned here have to be built explicitly in
28e6c76d62SJiri Olsa#   the rule that uses them - an example for that is the 'bionic'
29e6c76d62SJiri Olsa#   feature check. ]
30e6c76d62SJiri Olsa#
3120ed5325SArnaldo Carvalho de Melo# These + the ones in FEATURE_TESTS_EXTRA are included in
3220ed5325SArnaldo Carvalho de Melo# tools/build/feature/test-all.c and we try to build it all together
3320ed5325SArnaldo Carvalho de Melo# then setting all those features to '1' meaning they are all enabled.
3420ed5325SArnaldo Carvalho de Melo#
3520ed5325SArnaldo Carvalho de Melo# There are things like fortify-source that will be set to 1 because test-all
3620ed5325SArnaldo Carvalho de Melo# is built with the flags needed to test if its enabled, resulting in
3720ed5325SArnaldo Carvalho de Melo#
3820ed5325SArnaldo Carvalho de Melo#   $ rm -rf /tmp/b ; mkdir /tmp/b ; make -C tools/perf O=/tmp/b feature-dump
3920ed5325SArnaldo Carvalho de Melo#   $ grep fortify-source /tmp/b/FEATURE-DUMP
4020ed5325SArnaldo Carvalho de Melo#   feature-fortify-source=1
4120ed5325SArnaldo Carvalho de Melo#   $
4220ed5325SArnaldo Carvalho de Melo#
4320ed5325SArnaldo Carvalho de Melo#   All the others should have lines in tools/build/feature/test-all.c like:
4420ed5325SArnaldo Carvalho de Melo#
4520ed5325SArnaldo Carvalho de Melo#    #define main main_test_disassembler_init_styled
4620ed5325SArnaldo Carvalho de Melo#    # include "test-disassembler-init-styled.c"
4720ed5325SArnaldo Carvalho de Melo#    #undef main
4820ed5325SArnaldo Carvalho de Melo#
4920ed5325SArnaldo Carvalho de Melo#    #define main main_test_libzstd
5020ed5325SArnaldo Carvalho de Melo#    # include "test-libzstd.c"
5120ed5325SArnaldo Carvalho de Melo#    #undef main
5220ed5325SArnaldo Carvalho de Melo#
5320ed5325SArnaldo Carvalho de Melo#    int main(int argc, char *argv[])
5420ed5325SArnaldo Carvalho de Melo#    {
5520ed5325SArnaldo Carvalho de Melo#      main_test_disassembler_four_args();
5620ed5325SArnaldo Carvalho de Melo#      main_test_libzstd();
5720ed5325SArnaldo Carvalho de Melo#      return 0;
5820ed5325SArnaldo Carvalho de Melo#    }
5920ed5325SArnaldo Carvalho de Melo#
6020ed5325SArnaldo Carvalho de Melo#    If the sample above works, then we end up with these lines in the FEATURE-DUMP
6120ed5325SArnaldo Carvalho de Melo#    file:
6220ed5325SArnaldo Carvalho de Melo#
6320ed5325SArnaldo Carvalho de Melo#    feature-disassembler-four-args=1
6420ed5325SArnaldo Carvalho de Melo#    feature-libzstd=1
6520ed5325SArnaldo Carvalho de Melo#
669fd4186aSWang NanFEATURE_TESTS_BASIC :=                  \
67e6c76d62SJiri Olsa        backtrace                       \
687c943261SIan Rogers        libdw                           \
6911c6cbe7SArnaldo Carvalho de Melo        eventfd                         \
70e6c76d62SJiri Olsa        fortify-source                  \
714541a8bbSArnaldo Carvalho de Melo        gettid				\
72e6c76d62SJiri Olsa        glibc                           \
73e6c76d62SJiri Olsa        libbfd                          \
74e71e19a9SArnaldo Carvalho de Melo        libbfd-buildid			\
75e6c76d62SJiri Olsa        libelf                          \
76e6c76d62SJiri Olsa        libelf-getphdrnum               \
771c1a3a47SArnaldo Carvalho de Melo        libelf-gelf_getnote             \
782492c465SArnaldo Carvalho de Melo        libelf-getshdrstrndx            \
79d557814cSLeo Yan        libelf-zstd                     \
80e6c76d62SJiri Olsa        libnuma                         \
81f8ac8606SArnaldo Carvalho de Melo        numa_num_possible_cpus          \
82e6c76d62SJiri Olsa        libpython                       \
83e6c76d62SJiri Olsa        libslang                        \
8456d32d4cSMichael Petlan        libtraceevent                   \
850f59a6c9STomas Glozar        libcpupower                     \
86e6c76d62SJiri Olsa        pthread-attr-setaffinity-np     \
8725ab5abfSArnaldo Carvalho de Melo        pthread-barrier     		\
88db42a21aSJakub Kicinski        reallocarray                    \
89e6c76d62SJiri Olsa        stackprotector-all              \
90e6c76d62SJiri Olsa        timerfd                         \
916c6f0f61SJiri Olsa        zlib                            \
92b0063dbfSArnaldo Carvalho de Melo        lzma                            \
93ed63f34cSWang Nan        get_cpuid                       \
94e26e63beSMasami Hiramatsu        bpf                             \
959e03608eSArnaldo Carvalho de Melo        scandirat			\
96120010cbSArnaldo Carvalho de Melo        sched_getcpu			\
9786bcdb5aSArnaldo Carvalho de Melo        sdt				\
98aa6292f4SMathieu Poirier        setns				\
998a1b1718SSong Liu        libaio				\
1003b1c5d96SAlexey Budankov        libzstd				\
10149f550eaSNamhyung Kim        disassembler-four-args		\
102cfd59ca9SAndres Freund        disassembler-init-styled	\
10349f550eaSNamhyung Kim        file-handle
104e6c76d62SJiri Olsa
1059fd4186aSWang Nan# FEATURE_TESTS_BASIC + FEATURE_TESTS_EXTRA is the complete list
1069fd4186aSWang Nan# of all feature tests
1079fd4186aSWang NanFEATURE_TESTS_EXTRA :=                  \
1089fd4186aSWang Nan         bionic                         \
1099fd4186aSWang Nan         compile-32                     \
1109fd4186aSWang Nan         compile-x32                    \
1119fd4186aSWang Nan         cplus-demangle                 \
1124c72e2b3SIan Rogers         cxa-demangle                   \
1134751bdddSArnaldo Carvalho de Melo         gtk2                           \
1144751bdddSArnaldo Carvalho de Melo         gtk2-infobar                   \
1159fd4186aSWang Nan         hello                          \
1169fd4186aSWang Nan         libbabeltrace                  \
1178b767db3SChangbin Du         libcapstone                    \
11814541b1eSStanislav Fomichev         libbfd-liberty                 \
11914541b1eSStanislav Fomichev         libbfd-liberty-z               \
1201c3b28fdSArnaldo Carvalho de Melo         libopencsd                     \
121*5519b691SIan Rogers         libperl                        \
122bd476684SJiri Olsa         cxx                            \
123bd476684SJiri Olsa         llvm                           \
1247b65e203SJiri Olsa         clang                          \
1255ef86146SStephane Eranian         libbpf                         \
126c7a14fdcSFrank Ch. Eigler         libpfm4                        \
127fbcdaa19SSong Liu         libdebuginfod			\
1288a635c38STomas Glozar         clang-bpf-co-re		\
1298a635c38STomas Glozar         bpftool-skeletons
130fbcdaa19SSong Liu
1319fd4186aSWang Nan
1329fd4186aSWang NanFEATURE_TESTS ?= $(FEATURE_TESTS_BASIC)
1339fd4186aSWang Nan
1349fd4186aSWang Nanifeq ($(FEATURE_TESTS),all)
1359fd4186aSWang Nan  FEATURE_TESTS := $(FEATURE_TESTS_BASIC) $(FEATURE_TESTS_EXTRA)
1369fd4186aSWang Nanendif
1379fd4186aSWang Nan
1388135c8c7SWang NanFEATURE_DISPLAY ?=              \
1397c943261SIan Rogers         libdw                  \
140e6c76d62SJiri Olsa         glibc                  \
141e6c76d62SJiri Olsa         libelf                 \
142e6c76d62SJiri Olsa         libnuma                \
143f8ac8606SArnaldo Carvalho de Melo         numa_num_possible_cpus \
144e6c76d62SJiri Olsa         libpython              \
1458b767db3SChangbin Du         libcapstone            \
146206dcfcaSJames Clark         llvm-perf              \
1476c6f0f61SJiri Olsa         zlib                   \
148b0063dbfSArnaldo Carvalho de Melo         lzma                   \
149ed63f34cSWang Nan         get_cpuid              \
1502a07d814SAlexey Budankov         bpf			\
1518a1b1718SSong Liu         libaio			\
152516ddaadSAndres Freund         libzstd
153e6c76d62SJiri Olsa
15474ef1cc9SRoberto Sassu#
15574ef1cc9SRoberto Sassu# Declare group members of a feature to display the logical OR of the detection
15674ef1cc9SRoberto Sassu# result instead of each member result.
15774ef1cc9SRoberto Sassu#
15874ef1cc9SRoberto SassuFEATURE_GROUP_MEMBERS-libbfd = libbfd-liberty libbfd-liberty-z
15974ef1cc9SRoberto Sassu
1608f61e98aSGuilherme Amadio#
1618f61e98aSGuilherme Amadio# Declare list of feature dependency packages that provide pkg-config files.
1628f61e98aSGuilherme Amadio#
1638f61e98aSGuilherme AmadioFEATURE_PKG_CONFIG ?=           \
1648f61e98aSGuilherme Amadio         libtraceevent          \
1658f61e98aSGuilherme Amadio         libtracefs
1668f61e98aSGuilherme Amadio
1678f61e98aSGuilherme Amadiofeature_pkg_config = $(eval $(feature_pkg_config_code))
1688f61e98aSGuilherme Amadiodefine feature_pkg_config_code
1698f61e98aSGuilherme Amadio  FEATURE_CHECK_CFLAGS-$(1) := $(shell $(PKG_CONFIG) --cflags $(1) 2>/dev/null)
1708f61e98aSGuilherme Amadio  FEATURE_CHECK_LDFLAGS-$(1) := $(shell $(PKG_CONFIG) --libs $(1) 2>/dev/null)
1718f61e98aSGuilherme Amadioendef
1728f61e98aSGuilherme Amadio
1738f61e98aSGuilherme Amadio# Set FEATURE_CHECK_(C|LD)FLAGS-$(package) for packages using pkg-config.
1748f61e98aSGuilherme Amadioifneq ($(PKG_CONFIG),)
1758f61e98aSGuilherme Amadio  $(foreach package,$(FEATURE_PKG_CONFIG),$(call feature_pkg_config,$(package)))
1768f61e98aSGuilherme Amadioendif
1778f61e98aSGuilherme Amadio
178e6c76d62SJiri Olsa# Set FEATURE_CHECK_(C|LD)FLAGS-all for all FEATURE_TESTS features.
179e6c76d62SJiri Olsa# If in the future we need per-feature checks/flags for features not
180e6c76d62SJiri Olsa# mentioned in this list we need to refactor this ;-).
181e6c76d62SJiri Olsaset_test_all_flags = $(eval $(set_test_all_flags_code))
182e6c76d62SJiri Olsadefine set_test_all_flags_code
183e6c76d62SJiri Olsa  FEATURE_CHECK_CFLAGS-all  += $(FEATURE_CHECK_CFLAGS-$(1))
184e6c76d62SJiri Olsa  FEATURE_CHECK_LDFLAGS-all += $(FEATURE_CHECK_LDFLAGS-$(1))
185e6c76d62SJiri Olsaendef
186e6c76d62SJiri Olsa
187e6c76d62SJiri Olsa$(foreach feat,$(FEATURE_TESTS),$(call set_test_all_flags,$(feat)))
188e6c76d62SJiri Olsa
189e6c76d62SJiri Olsa#
190e6c76d62SJiri Olsa# Special fast-path for the 'all features are available' case:
191e6c76d62SJiri Olsa#
192e6c76d62SJiri Olsa$(call feature_check,all,$(MSG))
193e6c76d62SJiri Olsa
194e6c76d62SJiri Olsa#
195e6c76d62SJiri Olsa# Just in case the build freshly failed, make sure we print the
196e6c76d62SJiri Olsa# feature matrix:
197e6c76d62SJiri Olsa#
198e6c76d62SJiri Olsaifeq ($(feature-all), 1)
199e6c76d62SJiri Olsa  #
200e6c76d62SJiri Olsa  # test-all.c passed - just set all the core feature flags to 1:
201e6c76d62SJiri Olsa  #
202e6c76d62SJiri Olsa  $(foreach feat,$(FEATURE_TESTS),$(call feature_set,$(feat)))
20376c4aaecSJiri Olsa  #
20476c4aaecSJiri Olsa  # test-all.c does not comprise these tests, so we need to
20576c4aaecSJiri Olsa  # for this case to get features proper values
20676c4aaecSJiri Olsa  #
20776c4aaecSJiri Olsa  $(call feature_check,compile-32)
20876c4aaecSJiri Olsa  $(call feature_check,compile-x32)
20976c4aaecSJiri Olsa  $(call feature_check,bionic)
21076c4aaecSJiri Olsa  $(call feature_check,libbabeltrace)
211e6c76d62SJiri Olsaelse
212e6c76d62SJiri Olsa  $(foreach feat,$(FEATURE_TESTS),$(call feature_check,$(feat)))
213e6c76d62SJiri Olsaendif
214e6c76d62SJiri Olsa
215e6c76d62SJiri Olsa#
216e6c76d62SJiri Olsa# Print the result of the feature test:
217e6c76d62SJiri Olsa#
218709533e5SRoberto Sassufeature_print_status = $(eval $(feature_print_status_code))
219e6c76d62SJiri Olsa
22074ef1cc9SRoberto Sassufeature_group = $(eval $(feature_gen_group)) $(GROUP)
22174ef1cc9SRoberto Sassu
22274ef1cc9SRoberto Sassudefine feature_gen_group
22374ef1cc9SRoberto Sassu  GROUP := $(1)
22474ef1cc9SRoberto Sassu  ifneq ($(feature_verbose),1)
22574ef1cc9SRoberto Sassu    GROUP += $(FEATURE_GROUP_MEMBERS-$(1))
22674ef1cc9SRoberto Sassu  endif
22774ef1cc9SRoberto Sassuendef
22874ef1cc9SRoberto Sassu
229e6c76d62SJiri Olsadefine feature_print_status_code
23074ef1cc9SRoberto Sassu  ifneq (,$(filter 1,$(foreach feat,$(call feature_group,$(feat)),$(feature-$(feat)))))
23174da7697SRoberto Sassu    MSG = $(shell printf '...%40s: [ \033[32mon\033[m  ]' $(1))
232e6c76d62SJiri Olsa  else
23374da7697SRoberto Sassu    MSG = $(shell printf '...%40s: [ \033[31mOFF\033[m ]' $(1))
234e6c76d62SJiri Olsa  endif
235e6c76d62SJiri Olsaendef
236e6c76d62SJiri Olsa
237709533e5SRoberto Sassufeature_print_text = $(eval $(feature_print_text_code))
238e6c76d62SJiri Olsadefine feature_print_text_code
23974da7697SRoberto Sassu    MSG = $(shell printf '...%40s: %s' $(1) $(2))
240e6c76d62SJiri Olsaendef
241e6c76d62SJiri Olsa
242c6a5f88fSJiri Olsa#
243c6a5f88fSJiri Olsa# generates feature value assignment for name, like:
2447c943261SIan Rogers#   $(call feature_assign,libdw) == feature-libdw=1
245c6a5f88fSJiri Olsa#
246c6a5f88fSJiri Olsafeature_assign = feature-$(1)=$(feature-$(1))
247c6a5f88fSJiri Olsa
24813e96db6SArnaldo Carvalho de MeloFEATURE_DUMP_FILENAME = $(OUTPUT)FEATURE-DUMP$(FEATURE_USER)
249936d120dSJiri OlsaFEATURE_DUMP := $(shell touch $(FEATURE_DUMP_FILENAME); cat $(FEATURE_DUMP_FILENAME))
250936d120dSJiri Olsa
251936d120dSJiri Olsafeature_dump_check = $(eval $(feature_dump_check_code))
252936d120dSJiri Olsadefine feature_dump_check_code
253936d120dSJiri Olsa  ifeq ($(findstring $(1),$(FEATURE_DUMP)),)
254936d120dSJiri Olsa    $(2) := 1
255936d120dSJiri Olsa  endif
256936d120dSJiri Olsaendef
257936d120dSJiri Olsa
258936d120dSJiri Olsa#
259936d120dSJiri Olsa# First check if any test from FEATURE_DISPLAY
260936d120dSJiri Olsa# and set feature_display := 1 if it does
261936d120dSJiri Olsa$(foreach feat,$(FEATURE_DISPLAY),$(call feature_dump_check,$(call feature_assign,$(feat)),feature_display))
262936d120dSJiri Olsa
263936d120dSJiri Olsa#
264936d120dSJiri Olsa# Now also check if any other test changed,
265936d120dSJiri Olsa# so we force FEATURE-DUMP generation
266936d120dSJiri Olsa$(foreach feat,$(FEATURE_TESTS),$(call feature_dump_check,$(call feature_assign,$(feat)),feature_dump_changed))
267e6c76d62SJiri Olsa
268e6c76d62SJiri Olsa# The $(feature_display) controls the default detection message
269e6c76d62SJiri Olsa# output. It's set if:
270e6c76d62SJiri Olsa# - detected features differes from stored features from
27113e96db6SArnaldo Carvalho de Melo#   last build (in $(FEATURE_DUMP_FILENAME) file)
272e6c76d62SJiri Olsa# - one of the $(FEATURE_DISPLAY) is not detected
273e6c76d62SJiri Olsa# - VF is enabled
274e6c76d62SJiri Olsa
275936d120dSJiri Olsaifeq ($(feature_dump_changed),1)
276936d120dSJiri Olsa  $(shell rm -f $(FEATURE_DUMP_FILENAME))
277936d120dSJiri Olsa  $(foreach feat,$(FEATURE_TESTS),$(shell echo "$(call feature_assign,$(feat))" >> $(FEATURE_DUMP_FILENAME)))
278e6c76d62SJiri Olsaendif
279e6c76d62SJiri Olsa
2806076e2a4SArnaldo Carvalho de Melofeature_display_check = $(eval $(feature_check_display_code))
281d0018b49SJiri Olsadefine feature_check_display_code
282e6c76d62SJiri Olsa  ifneq ($(feature-$(1)), 1)
283e6c76d62SJiri Olsa    feature_display := 1
284e6c76d62SJiri Olsa  endif
285e6c76d62SJiri Olsaendef
286e6c76d62SJiri Olsa
287e6c76d62SJiri Olsa$(foreach feat,$(FEATURE_DISPLAY),$(call feature_display_check,$(feat)))
288e6c76d62SJiri Olsa
289e6c76d62SJiri Olsaifeq ($(VF),1)
290e6c76d62SJiri Olsa  feature_display := 1
291e6c76d62SJiri Olsa  feature_verbose := 1
292e6c76d62SJiri Olsaendif
293e6c76d62SJiri Olsa
29474ef1cc9SRoberto Sassuifneq ($(feature_verbose),1)
29574ef1cc9SRoberto Sassu  #
29674ef1cc9SRoberto Sassu  # Determine the features to omit from the displayed message, as only the
29774ef1cc9SRoberto Sassu  # logical OR of the detection result will be shown.
29874ef1cc9SRoberto Sassu  #
29974ef1cc9SRoberto Sassu  FEATURE_OMIT := $(foreach feat,$(FEATURE_DISPLAY),$(FEATURE_GROUP_MEMBERS-$(feat)))
30074ef1cc9SRoberto Sassuendif
30174ef1cc9SRoberto Sassu
30219177bc3SArnaldo Carvalho de Melofeature_display_entries = $(eval $(feature_display_entries_code))
30319177bc3SArnaldo Carvalho de Melodefine feature_display_entries_code
304e6c76d62SJiri Olsa  ifeq ($(feature_display),1)
305709533e5SRoberto Sassu    $$(info )
306709533e5SRoberto Sassu    $$(info Auto-detecting system features:)
30774ef1cc9SRoberto Sassu    $(foreach feat,$(filter-out $(FEATURE_OMIT),$(FEATURE_DISPLAY)),$(call feature_print_status,$(feat),) $$(info $(MSG)))
308e6c76d62SJiri Olsa  endif
309e6c76d62SJiri Olsa
310e6c76d62SJiri Olsa  ifeq ($(feature_verbose),1)
311709533e5SRoberto Sassu    $(eval TMP := $(filter-out $(FEATURE_DISPLAY),$(FEATURE_TESTS)))
312709533e5SRoberto Sassu    $(foreach feat,$(TMP),$(call feature_print_status,$(feat),) $$(info $(MSG)))
313e6c76d62SJiri Olsa  endif
31419177bc3SArnaldo Carvalho de Meloendef
31519177bc3SArnaldo Carvalho de Melo
31619177bc3SArnaldo Carvalho de Meloifeq ($(FEATURE_DISPLAY_DEFERRED),)
31719177bc3SArnaldo Carvalho de Melo  $(call feature_display_entries)
318709533e5SRoberto Sassu  $(info )
31919177bc3SArnaldo Carvalho de Meloendif
320