xref: /linux/tools/build/Makefile.feature (revision f4f346c3465949ebba80c6cc52cd8d2eeaa545fd)
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                  \
718feb8efeSArnaldo Carvalho de Melo        get_current_dir_name            \
724541a8bbSArnaldo Carvalho de Melo        gettid				\
73e6c76d62SJiri Olsa        glibc                           \
74e6c76d62SJiri Olsa        libbfd                          \
75e71e19a9SArnaldo Carvalho de Melo        libbfd-buildid			\
76e6c76d62SJiri Olsa        libelf                          \
77e6c76d62SJiri Olsa        libelf-getphdrnum               \
781c1a3a47SArnaldo Carvalho de Melo        libelf-gelf_getnote             \
792492c465SArnaldo Carvalho de Melo        libelf-getshdrstrndx            \
80d557814cSLeo Yan        libelf-zstd                     \
81e6c76d62SJiri Olsa        libnuma                         \
82f8ac8606SArnaldo Carvalho de Melo        numa_num_possible_cpus          \
83e6c76d62SJiri Olsa        libperl                         \
84e6c76d62SJiri Olsa        libpython                       \
85e6c76d62SJiri Olsa        libslang                        \
8656d32d4cSMichael Petlan        libtraceevent                   \
87b758a61bSIan Rogers        libtracefs                      \
880f59a6c9STomas Glozar        libcpupower                     \
89e6c76d62SJiri Olsa        pthread-attr-setaffinity-np     \
9025ab5abfSArnaldo Carvalho de Melo        pthread-barrier     		\
91db42a21aSJakub Kicinski        reallocarray                    \
92e6c76d62SJiri Olsa        stackprotector-all              \
93e6c76d62SJiri Olsa        timerfd                         \
946c6f0f61SJiri Olsa        zlib                            \
95b0063dbfSArnaldo Carvalho de Melo        lzma                            \
96ed63f34cSWang Nan        get_cpuid                       \
97e26e63beSMasami Hiramatsu        bpf                             \
989e03608eSArnaldo Carvalho de Melo        scandirat			\
99120010cbSArnaldo Carvalho de Melo        sched_getcpu			\
10086bcdb5aSArnaldo Carvalho de Melo        sdt				\
101aa6292f4SMathieu Poirier        setns				\
1028a1b1718SSong Liu        libaio				\
1033b1c5d96SAlexey Budankov        libzstd				\
10449f550eaSNamhyung Kim        disassembler-four-args		\
105cfd59ca9SAndres Freund        disassembler-init-styled	\
10649f550eaSNamhyung Kim        file-handle
107e6c76d62SJiri Olsa
1089fd4186aSWang Nan# FEATURE_TESTS_BASIC + FEATURE_TESTS_EXTRA is the complete list
1099fd4186aSWang Nan# of all feature tests
1109fd4186aSWang NanFEATURE_TESTS_EXTRA :=                  \
1119fd4186aSWang Nan         bionic                         \
1129fd4186aSWang Nan         compile-32                     \
1139fd4186aSWang Nan         compile-x32                    \
1149fd4186aSWang Nan         cplus-demangle                 \
1154c72e2b3SIan Rogers         cxa-demangle                   \
1164751bdddSArnaldo Carvalho de Melo         gtk2                           \
1174751bdddSArnaldo Carvalho de Melo         gtk2-infobar                   \
1189fd4186aSWang Nan         hello                          \
1199fd4186aSWang Nan         libbabeltrace                  \
1208b767db3SChangbin Du         libcapstone                    \
12114541b1eSStanislav Fomichev         libbfd-liberty                 \
12214541b1eSStanislav Fomichev         libbfd-liberty-z               \
1231c3b28fdSArnaldo Carvalho de Melo         libopencsd                     \
124bd476684SJiri Olsa         cxx                            \
125bd476684SJiri Olsa         llvm                           \
1267b65e203SJiri Olsa         clang                          \
1275ef86146SStephane Eranian         libbpf                         \
128*1d0654b7SBlake Jones         libbpf-strings                 \
129c7a14fdcSFrank Ch. Eigler         libpfm4                        \
130fbcdaa19SSong Liu         libdebuginfod			\
1318a635c38STomas Glozar         clang-bpf-co-re		\
1328a635c38STomas Glozar         bpftool-skeletons
133fbcdaa19SSong Liu
1349fd4186aSWang Nan
1359fd4186aSWang NanFEATURE_TESTS ?= $(FEATURE_TESTS_BASIC)
1369fd4186aSWang Nan
1379fd4186aSWang Nanifeq ($(FEATURE_TESTS),all)
1389fd4186aSWang Nan  FEATURE_TESTS := $(FEATURE_TESTS_BASIC) $(FEATURE_TESTS_EXTRA)
1399fd4186aSWang Nanendif
1409fd4186aSWang Nan
1418135c8c7SWang NanFEATURE_DISPLAY ?=              \
1427c943261SIan Rogers         libdw                  \
143e6c76d62SJiri Olsa         glibc                  \
144e6c76d62SJiri Olsa         libelf                 \
145e6c76d62SJiri Olsa         libnuma                \
146f8ac8606SArnaldo Carvalho de Melo         numa_num_possible_cpus \
147e6c76d62SJiri Olsa         libperl                \
148e6c76d62SJiri Olsa         libpython              \
1498b767db3SChangbin Du         libcapstone            \
150206dcfcaSJames Clark         llvm-perf              \
1516c6f0f61SJiri Olsa         zlib                   \
152b0063dbfSArnaldo Carvalho de Melo         lzma                   \
153ed63f34cSWang Nan         get_cpuid              \
1542a07d814SAlexey Budankov         bpf			\
1558a1b1718SSong Liu         libaio			\
156516ddaadSAndres Freund         libzstd
157e6c76d62SJiri Olsa
15874ef1cc9SRoberto Sassu#
15974ef1cc9SRoberto Sassu# Declare group members of a feature to display the logical OR of the detection
16074ef1cc9SRoberto Sassu# result instead of each member result.
16174ef1cc9SRoberto Sassu#
16274ef1cc9SRoberto SassuFEATURE_GROUP_MEMBERS-libbfd = libbfd-liberty libbfd-liberty-z
16374ef1cc9SRoberto Sassu
1648f61e98aSGuilherme Amadio#
1658f61e98aSGuilherme Amadio# Declare list of feature dependency packages that provide pkg-config files.
1668f61e98aSGuilherme Amadio#
1678f61e98aSGuilherme AmadioFEATURE_PKG_CONFIG ?=           \
1688f61e98aSGuilherme Amadio         libtraceevent          \
1698f61e98aSGuilherme Amadio         libtracefs
1708f61e98aSGuilherme Amadio
1718f61e98aSGuilherme Amadiofeature_pkg_config = $(eval $(feature_pkg_config_code))
1728f61e98aSGuilherme Amadiodefine feature_pkg_config_code
1738f61e98aSGuilherme Amadio  FEATURE_CHECK_CFLAGS-$(1) := $(shell $(PKG_CONFIG) --cflags $(1) 2>/dev/null)
1748f61e98aSGuilherme Amadio  FEATURE_CHECK_LDFLAGS-$(1) := $(shell $(PKG_CONFIG) --libs $(1) 2>/dev/null)
1758f61e98aSGuilherme Amadioendef
1768f61e98aSGuilherme Amadio
1778f61e98aSGuilherme Amadio# Set FEATURE_CHECK_(C|LD)FLAGS-$(package) for packages using pkg-config.
1788f61e98aSGuilherme Amadioifneq ($(PKG_CONFIG),)
1798f61e98aSGuilherme Amadio  $(foreach package,$(FEATURE_PKG_CONFIG),$(call feature_pkg_config,$(package)))
1808f61e98aSGuilherme Amadioendif
1818f61e98aSGuilherme Amadio
182e6c76d62SJiri Olsa# Set FEATURE_CHECK_(C|LD)FLAGS-all for all FEATURE_TESTS features.
183e6c76d62SJiri Olsa# If in the future we need per-feature checks/flags for features not
184e6c76d62SJiri Olsa# mentioned in this list we need to refactor this ;-).
185e6c76d62SJiri Olsaset_test_all_flags = $(eval $(set_test_all_flags_code))
186e6c76d62SJiri Olsadefine set_test_all_flags_code
187e6c76d62SJiri Olsa  FEATURE_CHECK_CFLAGS-all  += $(FEATURE_CHECK_CFLAGS-$(1))
188e6c76d62SJiri Olsa  FEATURE_CHECK_LDFLAGS-all += $(FEATURE_CHECK_LDFLAGS-$(1))
189e6c76d62SJiri Olsaendef
190e6c76d62SJiri Olsa
191e6c76d62SJiri Olsa$(foreach feat,$(FEATURE_TESTS),$(call set_test_all_flags,$(feat)))
192e6c76d62SJiri Olsa
193e6c76d62SJiri Olsa#
194e6c76d62SJiri Olsa# Special fast-path for the 'all features are available' case:
195e6c76d62SJiri Olsa#
196e6c76d62SJiri Olsa$(call feature_check,all,$(MSG))
197e6c76d62SJiri Olsa
198e6c76d62SJiri Olsa#
199e6c76d62SJiri Olsa# Just in case the build freshly failed, make sure we print the
200e6c76d62SJiri Olsa# feature matrix:
201e6c76d62SJiri Olsa#
202e6c76d62SJiri Olsaifeq ($(feature-all), 1)
203e6c76d62SJiri Olsa  #
204e6c76d62SJiri Olsa  # test-all.c passed - just set all the core feature flags to 1:
205e6c76d62SJiri Olsa  #
206e6c76d62SJiri Olsa  $(foreach feat,$(FEATURE_TESTS),$(call feature_set,$(feat)))
20776c4aaecSJiri Olsa  #
20876c4aaecSJiri Olsa  # test-all.c does not comprise these tests, so we need to
20976c4aaecSJiri Olsa  # for this case to get features proper values
21076c4aaecSJiri Olsa  #
21176c4aaecSJiri Olsa  $(call feature_check,compile-32)
21276c4aaecSJiri Olsa  $(call feature_check,compile-x32)
21376c4aaecSJiri Olsa  $(call feature_check,bionic)
21476c4aaecSJiri Olsa  $(call feature_check,libbabeltrace)
215e6c76d62SJiri Olsaelse
216e6c76d62SJiri Olsa  $(foreach feat,$(FEATURE_TESTS),$(call feature_check,$(feat)))
217e6c76d62SJiri Olsaendif
218e6c76d62SJiri Olsa
219e6c76d62SJiri Olsa#
220e6c76d62SJiri Olsa# Print the result of the feature test:
221e6c76d62SJiri Olsa#
222709533e5SRoberto Sassufeature_print_status = $(eval $(feature_print_status_code))
223e6c76d62SJiri Olsa
22474ef1cc9SRoberto Sassufeature_group = $(eval $(feature_gen_group)) $(GROUP)
22574ef1cc9SRoberto Sassu
22674ef1cc9SRoberto Sassudefine feature_gen_group
22774ef1cc9SRoberto Sassu  GROUP := $(1)
22874ef1cc9SRoberto Sassu  ifneq ($(feature_verbose),1)
22974ef1cc9SRoberto Sassu    GROUP += $(FEATURE_GROUP_MEMBERS-$(1))
23074ef1cc9SRoberto Sassu  endif
23174ef1cc9SRoberto Sassuendef
23274ef1cc9SRoberto Sassu
233e6c76d62SJiri Olsadefine feature_print_status_code
23474ef1cc9SRoberto Sassu  ifneq (,$(filter 1,$(foreach feat,$(call feature_group,$(feat)),$(feature-$(feat)))))
23574da7697SRoberto Sassu    MSG = $(shell printf '...%40s: [ \033[32mon\033[m  ]' $(1))
236e6c76d62SJiri Olsa  else
23774da7697SRoberto Sassu    MSG = $(shell printf '...%40s: [ \033[31mOFF\033[m ]' $(1))
238e6c76d62SJiri Olsa  endif
239e6c76d62SJiri Olsaendef
240e6c76d62SJiri Olsa
241709533e5SRoberto Sassufeature_print_text = $(eval $(feature_print_text_code))
242e6c76d62SJiri Olsadefine feature_print_text_code
24374da7697SRoberto Sassu    MSG = $(shell printf '...%40s: %s' $(1) $(2))
244e6c76d62SJiri Olsaendef
245e6c76d62SJiri Olsa
246c6a5f88fSJiri Olsa#
247c6a5f88fSJiri Olsa# generates feature value assignment for name, like:
2487c943261SIan Rogers#   $(call feature_assign,libdw) == feature-libdw=1
249c6a5f88fSJiri Olsa#
250c6a5f88fSJiri Olsafeature_assign = feature-$(1)=$(feature-$(1))
251c6a5f88fSJiri Olsa
25213e96db6SArnaldo Carvalho de MeloFEATURE_DUMP_FILENAME = $(OUTPUT)FEATURE-DUMP$(FEATURE_USER)
253936d120dSJiri OlsaFEATURE_DUMP := $(shell touch $(FEATURE_DUMP_FILENAME); cat $(FEATURE_DUMP_FILENAME))
254936d120dSJiri Olsa
255936d120dSJiri Olsafeature_dump_check = $(eval $(feature_dump_check_code))
256936d120dSJiri Olsadefine feature_dump_check_code
257936d120dSJiri Olsa  ifeq ($(findstring $(1),$(FEATURE_DUMP)),)
258936d120dSJiri Olsa    $(2) := 1
259936d120dSJiri Olsa  endif
260936d120dSJiri Olsaendef
261936d120dSJiri Olsa
262936d120dSJiri Olsa#
263936d120dSJiri Olsa# First check if any test from FEATURE_DISPLAY
264936d120dSJiri Olsa# and set feature_display := 1 if it does
265936d120dSJiri Olsa$(foreach feat,$(FEATURE_DISPLAY),$(call feature_dump_check,$(call feature_assign,$(feat)),feature_display))
266936d120dSJiri Olsa
267936d120dSJiri Olsa#
268936d120dSJiri Olsa# Now also check if any other test changed,
269936d120dSJiri Olsa# so we force FEATURE-DUMP generation
270936d120dSJiri Olsa$(foreach feat,$(FEATURE_TESTS),$(call feature_dump_check,$(call feature_assign,$(feat)),feature_dump_changed))
271e6c76d62SJiri Olsa
272e6c76d62SJiri Olsa# The $(feature_display) controls the default detection message
273e6c76d62SJiri Olsa# output. It's set if:
274e6c76d62SJiri Olsa# - detected features differes from stored features from
27513e96db6SArnaldo Carvalho de Melo#   last build (in $(FEATURE_DUMP_FILENAME) file)
276e6c76d62SJiri Olsa# - one of the $(FEATURE_DISPLAY) is not detected
277e6c76d62SJiri Olsa# - VF is enabled
278e6c76d62SJiri Olsa
279936d120dSJiri Olsaifeq ($(feature_dump_changed),1)
280936d120dSJiri Olsa  $(shell rm -f $(FEATURE_DUMP_FILENAME))
281936d120dSJiri Olsa  $(foreach feat,$(FEATURE_TESTS),$(shell echo "$(call feature_assign,$(feat))" >> $(FEATURE_DUMP_FILENAME)))
282e6c76d62SJiri Olsaendif
283e6c76d62SJiri Olsa
2846076e2a4SArnaldo Carvalho de Melofeature_display_check = $(eval $(feature_check_display_code))
285d0018b49SJiri Olsadefine feature_check_display_code
286e6c76d62SJiri Olsa  ifneq ($(feature-$(1)), 1)
287e6c76d62SJiri Olsa    feature_display := 1
288e6c76d62SJiri Olsa  endif
289e6c76d62SJiri Olsaendef
290e6c76d62SJiri Olsa
291e6c76d62SJiri Olsa$(foreach feat,$(FEATURE_DISPLAY),$(call feature_display_check,$(feat)))
292e6c76d62SJiri Olsa
293e6c76d62SJiri Olsaifeq ($(VF),1)
294e6c76d62SJiri Olsa  feature_display := 1
295e6c76d62SJiri Olsa  feature_verbose := 1
296e6c76d62SJiri Olsaendif
297e6c76d62SJiri Olsa
29874ef1cc9SRoberto Sassuifneq ($(feature_verbose),1)
29974ef1cc9SRoberto Sassu  #
30074ef1cc9SRoberto Sassu  # Determine the features to omit from the displayed message, as only the
30174ef1cc9SRoberto Sassu  # logical OR of the detection result will be shown.
30274ef1cc9SRoberto Sassu  #
30374ef1cc9SRoberto Sassu  FEATURE_OMIT := $(foreach feat,$(FEATURE_DISPLAY),$(FEATURE_GROUP_MEMBERS-$(feat)))
30474ef1cc9SRoberto Sassuendif
30574ef1cc9SRoberto Sassu
30619177bc3SArnaldo Carvalho de Melofeature_display_entries = $(eval $(feature_display_entries_code))
30719177bc3SArnaldo Carvalho de Melodefine feature_display_entries_code
308e6c76d62SJiri Olsa  ifeq ($(feature_display),1)
309709533e5SRoberto Sassu    $$(info )
310709533e5SRoberto Sassu    $$(info Auto-detecting system features:)
31174ef1cc9SRoberto Sassu    $(foreach feat,$(filter-out $(FEATURE_OMIT),$(FEATURE_DISPLAY)),$(call feature_print_status,$(feat),) $$(info $(MSG)))
312e6c76d62SJiri Olsa  endif
313e6c76d62SJiri Olsa
314e6c76d62SJiri Olsa  ifeq ($(feature_verbose),1)
315709533e5SRoberto Sassu    $(eval TMP := $(filter-out $(FEATURE_DISPLAY),$(FEATURE_TESTS)))
316709533e5SRoberto Sassu    $(foreach feat,$(TMP),$(call feature_print_status,$(feat),) $$(info $(MSG)))
317e6c76d62SJiri Olsa  endif
31819177bc3SArnaldo Carvalho de Meloendef
31919177bc3SArnaldo Carvalho de Melo
32019177bc3SArnaldo Carvalho de Meloifeq ($(FEATURE_DISPLAY_DEFERRED),)
32119177bc3SArnaldo Carvalho de Melo  $(call feature_display_entries)
322709533e5SRoberto Sassu  $(info )
32319177bc3SArnaldo Carvalho de Meloendif
324