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 \ 74cff602f6SJames Clark libbfd-threadsafe \ 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 \ 93e26e63beSMasami Hiramatsu bpf \ 949e03608eSArnaldo Carvalho de Melo scandirat \ 95120010cbSArnaldo Carvalho de Melo sched_getcpu \ 9686bcdb5aSArnaldo Carvalho de Melo sdt \ 97aa6292f4SMathieu Poirier setns \ 988a1b1718SSong Liu libaio \ 993b1c5d96SAlexey Budankov libzstd \ 10049f550eaSNamhyung Kim disassembler-four-args \ 101cfd59ca9SAndres Freund disassembler-init-styled \ 10276785231SNamhyung Kim file-handle \ 103*3f5dfa47SArnaldo Carvalho de Melo libopenssl 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 \ 1215519b691SIan 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 \ 1492a07d814SAlexey Budankov bpf \ 1508a1b1718SSong Liu libaio \ 15176785231SNamhyung Kim libzstd \ 1526a32fa5cSDmitrii Dolgov libopenssl \ 1536a32fa5cSDmitrii Dolgov rust 154e6c76d62SJiri Olsa 15574ef1cc9SRoberto Sassu# 15674ef1cc9SRoberto Sassu# Declare group members of a feature to display the logical OR of the detection 15774ef1cc9SRoberto Sassu# result instead of each member result. 15874ef1cc9SRoberto Sassu# 15974ef1cc9SRoberto SassuFEATURE_GROUP_MEMBERS-libbfd = libbfd-liberty libbfd-liberty-z 16074ef1cc9SRoberto Sassu 1618f61e98aSGuilherme Amadio# 1628f61e98aSGuilherme Amadio# Declare list of feature dependency packages that provide pkg-config files. 1638f61e98aSGuilherme Amadio# 1648f61e98aSGuilherme AmadioFEATURE_PKG_CONFIG ?= \ 1658f61e98aSGuilherme Amadio libtraceevent \ 1668f61e98aSGuilherme Amadio libtracefs 1678f61e98aSGuilherme Amadio 1688f61e98aSGuilherme Amadiofeature_pkg_config = $(eval $(feature_pkg_config_code)) 1698f61e98aSGuilherme Amadiodefine feature_pkg_config_code 1708f61e98aSGuilherme Amadio FEATURE_CHECK_CFLAGS-$(1) := $(shell $(PKG_CONFIG) --cflags $(1) 2>/dev/null) 1718f61e98aSGuilherme Amadio FEATURE_CHECK_LDFLAGS-$(1) := $(shell $(PKG_CONFIG) --libs $(1) 2>/dev/null) 1728f61e98aSGuilherme Amadioendef 1738f61e98aSGuilherme Amadio 1748f61e98aSGuilherme Amadio# Set FEATURE_CHECK_(C|LD)FLAGS-$(package) for packages using pkg-config. 1758f61e98aSGuilherme Amadioifneq ($(PKG_CONFIG),) 1768f61e98aSGuilherme Amadio $(foreach package,$(FEATURE_PKG_CONFIG),$(call feature_pkg_config,$(package))) 1778f61e98aSGuilherme Amadioendif 1788f61e98aSGuilherme Amadio 179e6c76d62SJiri Olsa# Set FEATURE_CHECK_(C|LD)FLAGS-all for all FEATURE_TESTS features. 180e6c76d62SJiri Olsa# If in the future we need per-feature checks/flags for features not 181e6c76d62SJiri Olsa# mentioned in this list we need to refactor this ;-). 182e6c76d62SJiri Olsaset_test_all_flags = $(eval $(set_test_all_flags_code)) 183e6c76d62SJiri Olsadefine set_test_all_flags_code 184e6c76d62SJiri Olsa FEATURE_CHECK_CFLAGS-all += $(FEATURE_CHECK_CFLAGS-$(1)) 185e6c76d62SJiri Olsa FEATURE_CHECK_LDFLAGS-all += $(FEATURE_CHECK_LDFLAGS-$(1)) 186e6c76d62SJiri Olsaendef 187e6c76d62SJiri Olsa 188e6c76d62SJiri Olsa$(foreach feat,$(FEATURE_TESTS),$(call set_test_all_flags,$(feat))) 189e6c76d62SJiri Olsa 190e6c76d62SJiri Olsa# 191e6c76d62SJiri Olsa# Special fast-path for the 'all features are available' case: 192e6c76d62SJiri Olsa# 193e6c76d62SJiri Olsa$(call feature_check,all,$(MSG)) 194e6c76d62SJiri Olsa 195e6c76d62SJiri Olsa# 196e6c76d62SJiri Olsa# Just in case the build freshly failed, make sure we print the 197e6c76d62SJiri Olsa# feature matrix: 198e6c76d62SJiri Olsa# 199e6c76d62SJiri Olsaifeq ($(feature-all), 1) 200e6c76d62SJiri Olsa # 201e6c76d62SJiri Olsa # test-all.c passed - just set all the core feature flags to 1: 202e6c76d62SJiri Olsa # 203e6c76d62SJiri Olsa $(foreach feat,$(FEATURE_TESTS),$(call feature_set,$(feat))) 20476c4aaecSJiri Olsa # 20576c4aaecSJiri Olsa # test-all.c does not comprise these tests, so we need to 20676c4aaecSJiri Olsa # for this case to get features proper values 20776c4aaecSJiri Olsa # 20876c4aaecSJiri Olsa $(call feature_check,compile-32) 20976c4aaecSJiri Olsa $(call feature_check,compile-x32) 21076c4aaecSJiri Olsa $(call feature_check,bionic) 21176c4aaecSJiri Olsa $(call feature_check,libbabeltrace) 212e6c76d62SJiri Olsaelse 213e6c76d62SJiri Olsa $(foreach feat,$(FEATURE_TESTS),$(call feature_check,$(feat))) 214e6c76d62SJiri Olsaendif 215e6c76d62SJiri Olsa 216e6c76d62SJiri Olsa# 217e6c76d62SJiri Olsa# Print the result of the feature test: 218e6c76d62SJiri Olsa# 219709533e5SRoberto Sassufeature_print_status = $(eval $(feature_print_status_code)) 220e6c76d62SJiri Olsa 22174ef1cc9SRoberto Sassufeature_group = $(eval $(feature_gen_group)) $(GROUP) 22274ef1cc9SRoberto Sassu 22374ef1cc9SRoberto Sassudefine feature_gen_group 22474ef1cc9SRoberto Sassu GROUP := $(1) 22574ef1cc9SRoberto Sassu ifneq ($(feature_verbose),1) 22674ef1cc9SRoberto Sassu GROUP += $(FEATURE_GROUP_MEMBERS-$(1)) 22774ef1cc9SRoberto Sassu endif 22874ef1cc9SRoberto Sassuendef 22974ef1cc9SRoberto Sassu 230e6c76d62SJiri Olsadefine feature_print_status_code 23174ef1cc9SRoberto Sassu ifneq (,$(filter 1,$(foreach feat,$(call feature_group,$(feat)),$(feature-$(feat))))) 23274da7697SRoberto Sassu MSG = $(shell printf '...%40s: [ \033[32mon\033[m ]' $(1)) 233e6c76d62SJiri Olsa else 23474da7697SRoberto Sassu MSG = $(shell printf '...%40s: [ \033[31mOFF\033[m ]' $(1)) 235e6c76d62SJiri Olsa endif 236e6c76d62SJiri Olsaendef 237e6c76d62SJiri Olsa 238709533e5SRoberto Sassufeature_print_text = $(eval $(feature_print_text_code)) 239e6c76d62SJiri Olsadefine feature_print_text_code 24074da7697SRoberto Sassu MSG = $(shell printf '...%40s: %s' $(1) $(2)) 241e6c76d62SJiri Olsaendef 242e6c76d62SJiri Olsa 243c6a5f88fSJiri Olsa# 244c6a5f88fSJiri Olsa# generates feature value assignment for name, like: 2457c943261SIan Rogers# $(call feature_assign,libdw) == feature-libdw=1 246c6a5f88fSJiri Olsa# 247c6a5f88fSJiri Olsafeature_assign = feature-$(1)=$(feature-$(1)) 248c6a5f88fSJiri Olsa 24913e96db6SArnaldo Carvalho de MeloFEATURE_DUMP_FILENAME = $(OUTPUT)FEATURE-DUMP$(FEATURE_USER) 250936d120dSJiri OlsaFEATURE_DUMP := $(shell touch $(FEATURE_DUMP_FILENAME); cat $(FEATURE_DUMP_FILENAME)) 251936d120dSJiri Olsa 252936d120dSJiri Olsafeature_dump_check = $(eval $(feature_dump_check_code)) 253936d120dSJiri Olsadefine feature_dump_check_code 254936d120dSJiri Olsa ifeq ($(findstring $(1),$(FEATURE_DUMP)),) 255936d120dSJiri Olsa $(2) := 1 256936d120dSJiri Olsa endif 257936d120dSJiri Olsaendef 258936d120dSJiri Olsa 259936d120dSJiri Olsa# 260936d120dSJiri Olsa# First check if any test from FEATURE_DISPLAY 261936d120dSJiri Olsa# and set feature_display := 1 if it does 262936d120dSJiri Olsa$(foreach feat,$(FEATURE_DISPLAY),$(call feature_dump_check,$(call feature_assign,$(feat)),feature_display)) 263936d120dSJiri Olsa 264936d120dSJiri Olsa# 265936d120dSJiri Olsa# Now also check if any other test changed, 266936d120dSJiri Olsa# so we force FEATURE-DUMP generation 267936d120dSJiri Olsa$(foreach feat,$(FEATURE_TESTS),$(call feature_dump_check,$(call feature_assign,$(feat)),feature_dump_changed)) 268e6c76d62SJiri Olsa 269e6c76d62SJiri Olsa# The $(feature_display) controls the default detection message 270e6c76d62SJiri Olsa# output. It's set if: 271e6c76d62SJiri Olsa# - detected features differes from stored features from 27213e96db6SArnaldo Carvalho de Melo# last build (in $(FEATURE_DUMP_FILENAME) file) 273e6c76d62SJiri Olsa# - one of the $(FEATURE_DISPLAY) is not detected 274e6c76d62SJiri Olsa# - VF is enabled 275e6c76d62SJiri Olsa 276936d120dSJiri Olsaifeq ($(feature_dump_changed),1) 277936d120dSJiri Olsa $(shell rm -f $(FEATURE_DUMP_FILENAME)) 278936d120dSJiri Olsa $(foreach feat,$(FEATURE_TESTS),$(shell echo "$(call feature_assign,$(feat))" >> $(FEATURE_DUMP_FILENAME))) 279e6c76d62SJiri Olsaendif 280e6c76d62SJiri Olsa 2816076e2a4SArnaldo Carvalho de Melofeature_display_check = $(eval $(feature_check_display_code)) 282d0018b49SJiri Olsadefine feature_check_display_code 283e6c76d62SJiri Olsa ifneq ($(feature-$(1)), 1) 284e6c76d62SJiri Olsa feature_display := 1 285e6c76d62SJiri Olsa endif 286e6c76d62SJiri Olsaendef 287e6c76d62SJiri Olsa 288e6c76d62SJiri Olsa$(foreach feat,$(FEATURE_DISPLAY),$(call feature_display_check,$(feat))) 289e6c76d62SJiri Olsa 290e6c76d62SJiri Olsaifeq ($(VF),1) 291e6c76d62SJiri Olsa feature_display := 1 292e6c76d62SJiri Olsa feature_verbose := 1 293e6c76d62SJiri Olsaendif 294e6c76d62SJiri Olsa 29574ef1cc9SRoberto Sassuifneq ($(feature_verbose),1) 29674ef1cc9SRoberto Sassu # 29774ef1cc9SRoberto Sassu # Determine the features to omit from the displayed message, as only the 29874ef1cc9SRoberto Sassu # logical OR of the detection result will be shown. 29974ef1cc9SRoberto Sassu # 30074ef1cc9SRoberto Sassu FEATURE_OMIT := $(foreach feat,$(FEATURE_DISPLAY),$(FEATURE_GROUP_MEMBERS-$(feat))) 30174ef1cc9SRoberto Sassuendif 30274ef1cc9SRoberto Sassu 30319177bc3SArnaldo Carvalho de Melofeature_display_entries = $(eval $(feature_display_entries_code)) 30419177bc3SArnaldo Carvalho de Melodefine feature_display_entries_code 305e6c76d62SJiri Olsa ifeq ($(feature_display),1) 306709533e5SRoberto Sassu $$(info ) 307709533e5SRoberto Sassu $$(info Auto-detecting system features:) 30874ef1cc9SRoberto Sassu $(foreach feat,$(filter-out $(FEATURE_OMIT),$(FEATURE_DISPLAY)),$(call feature_print_status,$(feat),) $$(info $(MSG))) 309e6c76d62SJiri Olsa endif 310e6c76d62SJiri Olsa 311e6c76d62SJiri Olsa ifeq ($(feature_verbose),1) 312709533e5SRoberto Sassu $(eval TMP := $(filter-out $(FEATURE_DISPLAY),$(FEATURE_TESTS))) 313709533e5SRoberto Sassu $(foreach feat,$(TMP),$(call feature_print_status,$(feat),) $$(info $(MSG))) 314e6c76d62SJiri Olsa endif 31519177bc3SArnaldo Carvalho de Meloendef 31619177bc3SArnaldo Carvalho de Melo 31719177bc3SArnaldo Carvalho de Meloifeq ($(FEATURE_DISPLAY_DEFERRED),) 31819177bc3SArnaldo Carvalho de Melo $(call feature_display_entries) 319f348a44cSAlexandre Chartre ifeq ($(feature_display),1) 320709533e5SRoberto Sassu $(info ) 32119177bc3SArnaldo Carvalho de Melo endif 322f348a44cSAlexandre Chartreendif 323