tools build: Add test for presence of numa_num_possible_cpus() in libnuma
[deliverable/linux.git] / tools / build / Makefile.feature
CommitLineData
e6c76d62 1feature_dir := $(srctree)/tools/build/feature
970e87b3 2
0afc5cad 3ifneq ($(OUTPUT),)
e6c76d62 4 OUTPUT_FEATURES = $(OUTPUT)feature/
0afc5cad
JO
5 $(shell mkdir -p $(OUTPUT_FEATURES))
6endif
7
8feature_check = $(eval $(feature_check_code))
9define feature_check_code
970e87b3 10 feature-$(1) := $(shell $(MAKE) OUTPUT=$(OUTPUT_FEATURES) CFLAGS="$(EXTRA_CFLAGS) $(FEATURE_CHECK_CFLAGS-$(1))" LDFLAGS="$(LDFLAGS) $(FEATURE_CHECK_LDFLAGS-$(1))" -C $(feature_dir) test-$1.bin >/dev/null 2>/dev/null && echo 1 || echo 0)
0afc5cad
JO
11endef
12
13feature_set = $(eval $(feature_set_code))
14define feature_set_code
15 feature-$(1) := 1
16endef
17
18#
19# Build the feature check binaries in parallel, ignore errors, ignore return value and suppress output:
20#
21
22#
23# Note that this is not a complete list of all feature tests, just
24# those that are typically built on a fully configured system.
25#
26# [ Feature tests not mentioned here have to be built explicitly in
27# the rule that uses them - an example for that is the 'bionic'
28# feature check. ]
29#
8135c8c7 30FEATURE_TESTS ?= \
0afc5cad
JO
31 backtrace \
32 dwarf \
33 fortify-source \
34 sync-compare-and-swap \
35 glibc \
36 gtk2 \
37 gtk2-infobar \
38 libaudit \
39 libbfd \
40 libelf \
41 libelf-getphdrnum \
42 libelf-mmap \
43 libnuma \
f8ac8606 44 numa_num_possible_cpus \
0afc5cad
JO
45 libperl \
46 libpython \
47 libpython-version \
48 libslang \
49 libunwind \
50 pthread-attr-setaffinity-np \
51 stackprotector-all \
52 timerfd \
53 libdw-dwarf-unwind \
6c6f0f61
JO
54 zlib \
55 lzma
0afc5cad 56
8135c8c7 57FEATURE_DISPLAY ?= \
0afc5cad
JO
58 dwarf \
59 glibc \
60 gtk2 \
61 libaudit \
62 libbfd \
63 libelf \
64 libnuma \
f8ac8606 65 numa_num_possible_cpus \
0afc5cad
JO
66 libperl \
67 libpython \
68 libslang \
69 libunwind \
70 libdw-dwarf-unwind \
6c6f0f61
JO
71 zlib \
72 lzma
0afc5cad
JO
73
74# Set FEATURE_CHECK_(C|LD)FLAGS-all for all FEATURE_TESTS features.
75# If in the future we need per-feature checks/flags for features not
76# mentioned in this list we need to refactor this ;-).
77set_test_all_flags = $(eval $(set_test_all_flags_code))
78define set_test_all_flags_code
79 FEATURE_CHECK_CFLAGS-all += $(FEATURE_CHECK_CFLAGS-$(1))
80 FEATURE_CHECK_LDFLAGS-all += $(FEATURE_CHECK_LDFLAGS-$(1))
81endef
82
83$(foreach feat,$(FEATURE_TESTS),$(call set_test_all_flags,$(feat)))
84
85#
86# Special fast-path for the 'all features are available' case:
87#
88$(call feature_check,all,$(MSG))
89
90#
91# Just in case the build freshly failed, make sure we print the
92# feature matrix:
93#
94ifeq ($(feature-all), 1)
95 #
96 # test-all.c passed - just set all the core feature flags to 1:
97 #
98 $(foreach feat,$(FEATURE_TESTS),$(call feature_set,$(feat)))
99else
970e87b3 100 $(shell $(MAKE) OUTPUT=$(OUTPUT_FEATURES) CFLAGS="$(EXTRA_CFLAGS)" LDFLAGS=$(LDFLAGS) -i -j -C $(feature_dir) $(addsuffix .bin,$(FEATURE_TESTS)) >/dev/null 2>&1)
0afc5cad
JO
101 $(foreach feat,$(FEATURE_TESTS),$(call feature_check,$(feat)))
102endif
103
104#
105# Print the result of the feature test:
106#
107feature_print_status = $(eval $(feature_print_status_code)) $(info $(MSG))
108
109define feature_print_status_code
110 ifeq ($(feature-$(1)), 1)
111 MSG = $(shell printf '...%30s: [ \033[32mon\033[m ]' $(1))
112 else
113 MSG = $(shell printf '...%30s: [ \033[31mOFF\033[m ]' $(1))
114 endif
115endef
116
117feature_print_text = $(eval $(feature_print_text_code)) $(info $(MSG))
118define feature_print_text_code
119 MSG = $(shell printf '...%30s: %s' $(1) $(2))
120endef
121
122FEATURE_DUMP := $(foreach feat,$(FEATURE_DISPLAY),feature-$(feat)($(feature-$(feat))))
123FEATURE_DUMP_FILE := $(shell touch $(OUTPUT)FEATURE-DUMP; cat $(OUTPUT)FEATURE-DUMP)
124
125ifeq ($(dwarf-post-unwind),1)
126 FEATURE_DUMP += dwarf-post-unwind($(dwarf-post-unwind-text))
127endif
128
129# The $(feature_display) controls the default detection message
130# output. It's set if:
131# - detected features differes from stored features from
132# last build (in FEATURE-DUMP file)
133# - one of the $(FEATURE_DISPLAY) is not detected
134# - VF is enabled
135
136ifneq ("$(FEATURE_DUMP)","$(FEATURE_DUMP_FILE)")
137 $(shell echo "$(FEATURE_DUMP)" > $(OUTPUT)FEATURE-DUMP)
138 feature_display := 1
139endif
140
141feature_display_check = $(eval $(feature_check_code))
142define feature_display_check_code
143 ifneq ($(feature-$(1)), 1)
144 feature_display := 1
145 endif
146endef
147
148$(foreach feat,$(FEATURE_DISPLAY),$(call feature_display_check,$(feat)))
149
150ifeq ($(VF),1)
151 feature_display := 1
152 feature_verbose := 1
153endif
154
155ifeq ($(feature_display),1)
156 $(info )
157 $(info Auto-detecting system features:)
158 $(foreach feat,$(FEATURE_DISPLAY),$(call feature_print_status,$(feat),))
159
160 ifeq ($(dwarf-post-unwind),1)
161 $(call feature_print_text,"DWARF post unwind library", $(dwarf-post-unwind-text))
162 endif
163
164 ifneq ($(feature_verbose),1)
165 $(info )
166 endif
167endif
168
169ifeq ($(feature_verbose),1)
170 TMP := $(filter-out $(FEATURE_DISPLAY),$(FEATURE_TESTS))
171 $(foreach feat,$(TMP),$(call feature_print_status,$(feat),))
172 $(info )
173endif
This page took 0.053465 seconds and 5 git commands to generate.