blob: ba414216e5061a3fc68fdf14f6a807b22fddefda [file] [log] [blame]
Jiri Olsa8bd407b2013-03-15 16:28:49 +01001
Jiri Olsaa6cf5f32014-01-03 15:32:32 +01002ifeq ($(src-perf),)
3src-perf := $(srctree)/tools/perf
Jiri Olsa8bd407b2013-03-15 16:28:49 +01004endif
5
Jiri Olsaa6cf5f32014-01-03 15:32:32 +01006ifeq ($(obj-perf),)
7obj-perf := $(OUTPUT)
8endif
9
10ifneq ($(obj-perf),)
11obj-perf := $(abspath $(obj-perf))/
12endif
13
Jiri Olsafcfd6612014-12-31 17:37:00 +010014$(shell echo -n > .config-detected)
15detected = $(shell echo "$(1)=y" >> .config-detected)
16detected_var = $(shell echo "$(1)=$($(1))" >> .config-detected)
17
Jiri Olsaa6cf5f32014-01-03 15:32:32 +010018LIB_INCLUDE := $(srctree)/tools/lib/
19CFLAGS := $(EXTRA_CFLAGS) $(EXTRA_WARNINGS)
20
21include $(src-perf)/config/Makefile.arch
22
23NO_PERF_REGS := 1
24
25# Additional ARCH settings for x86
26ifeq ($(ARCH),x86)
Namhyung Kimc6e5e9f2015-01-12 10:20:55 +080027 ifeq (${IS_64_BIT}, 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +020028 CFLAGS += -DHAVE_ARCH_X86_64_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020029 ARCH_INCLUDE = ../../arch/x86/lib/memcpy_64.S ../../arch/x86/lib/memset_64.S
Adrian Hunter8a0c4c22013-11-01 15:51:32 +020030 LIBUNWIND_LIBS = -lunwind -lunwind-x86_64
31 else
32 LIBUNWIND_LIBS = -lunwind -lunwind-x86
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020033 endif
34 NO_PERF_REGS := 0
Jiri Olsa8bd407b2013-03-15 16:28:49 +010035endif
Jean Pihet8ab596a2014-04-28 14:32:33 +020036
Will Deacon7495f372013-09-26 12:36:36 +010037ifeq ($(ARCH),arm)
38 NO_PERF_REGS := 0
39 LIBUNWIND_LIBS = -lunwind -lunwind-arm
40endif
Jiri Olsa8bd407b2013-03-15 16:28:49 +010041
Jean Pihet8ab596a2014-04-28 14:32:33 +020042ifeq ($(ARCH),arm64)
43 NO_PERF_REGS := 0
44 LIBUNWIND_LIBS = -lunwind -lunwind-aarch64
45endif
46
Jean Pihet90fa9de2014-05-16 10:41:11 +020047# So far there's only x86 and arm libdw unwind support merged in perf.
Jiri Olsa4dc549e2014-04-20 10:50:00 +020048# Disable it on all other architectures in case libdw unwind
49# support is detected in system. Add supported architectures
50# to the check.
Jean Pihet90fa9de2014-05-16 10:41:11 +020051ifneq ($(ARCH),$(filter $(ARCH),x86 arm))
Jiri Olsa4dc549e2014-04-20 10:50:00 +020052 NO_LIBDW_DWARF_UNWIND := 1
53endif
54
Jean Pihet1448fef2013-12-10 13:24:04 +010055ifeq ($(LIBUNWIND_LIBS),)
56 NO_LIBUNWIND := 1
57else
58 #
59 # For linking with debug library, run like:
60 #
61 # make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
62 #
63 ifdef LIBUNWIND_DIR
64 LIBUNWIND_CFLAGS = -I$(LIBUNWIND_DIR)/include
65 LIBUNWIND_LDFLAGS = -L$(LIBUNWIND_DIR)/lib
66 endif
67 LIBUNWIND_LDFLAGS += $(LIBUNWIND_LIBS)
68
69 # Set per-feature check compilation flags
70 FEATURE_CHECK_CFLAGS-libunwind = $(LIBUNWIND_CFLAGS)
71 FEATURE_CHECK_LDFLAGS-libunwind = $(LIBUNWIND_LDFLAGS)
72 FEATURE_CHECK_CFLAGS-libunwind-debug-frame = $(LIBUNWIND_CFLAGS)
73 FEATURE_CHECK_LDFLAGS-libunwind-debug-frame = $(LIBUNWIND_LDFLAGS)
Jean Pihet1448fef2013-12-10 13:24:04 +010074endif
75
Jiri Olsa8bd407b2013-03-15 16:28:49 +010076ifeq ($(NO_PERF_REGS),0)
Ingo Molnar89fe8082013-09-30 12:07:11 +020077 CFLAGS += -DHAVE_PERF_REGS_SUPPORT
Jiri Olsa8bd407b2013-03-15 16:28:49 +010078endif
Jiri Olsaa32f4932013-03-25 00:32:01 +010079
Jiri Olsa45757892014-02-19 16:52:56 +010080ifndef NO_LIBELF
81 # for linking with debug library, run like:
82 # make DEBUG=1 LIBDW_DIR=/opt/libdw/
83 ifdef LIBDW_DIR
84 LIBDW_CFLAGS := -I$(LIBDW_DIR)/include
85 LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib
Jiri Olsa45757892014-02-19 16:52:56 +010086 endif
Ramkumar Ramachandra2c529e42014-03-26 18:44:05 -040087 FEATURE_CHECK_CFLAGS-libdw-dwarf-unwind := $(LIBDW_CFLAGS)
88 FEATURE_CHECK_LDFLAGS-libdw-dwarf-unwind := $(LIBDW_LDFLAGS) -ldw
Jiri Olsa45757892014-02-19 16:52:56 +010089endif
90
Jiri Olsa7c537462013-05-24 14:35:23 +020091# include ARCH specific config
92-include $(src-perf)/arch/$(ARCH)/Makefile
93
Jiri Olsa7c537462013-05-24 14:35:23 +020094include $(src-perf)/config/utilities.mak
Jiri Olsaa32f4932013-03-25 00:32:01 +010095
96ifeq ($(call get-executable,$(FLEX)),)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020097 dummy := $(error Error: $(FLEX) is missing on this system, please install it)
Jiri Olsaa32f4932013-03-25 00:32:01 +010098endif
99
100ifeq ($(call get-executable,$(BISON)),)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200101 dummy := $(error Error: $(BISON) is missing on this system, please install it)
Jiri Olsaa32f4932013-03-25 00:32:01 +0100102endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100103
104# Treat warnings as errors unless directed not to
105ifneq ($(WERROR),0)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200106 CFLAGS += -Werror
Jiri Olsa362493f2013-03-25 00:40:48 +0100107endif
108
Adrian Hunter74af3772013-10-22 10:34:05 +0300109ifndef DEBUG
110 DEBUG := 0
111endif
112
Ingo Molnarfcf92582013-10-10 08:05:25 +0200113ifeq ($(DEBUG),0)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200114 CFLAGS += -O6
Jiri Olsa362493f2013-03-25 00:40:48 +0100115endif
116
117ifdef PARSER_DEBUG
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200118 PARSER_DEBUG_BISON := -t
119 PARSER_DEBUG_FLEX := -d
120 CFLAGS += -DPARSER_DEBUG
Jiri Olsa362493f2013-03-25 00:40:48 +0100121endif
122
Namhyung Kim56c7d792014-07-29 15:57:19 +0900123ifndef NO_LIBPYTHON
Thomas Ilsched6a947f2014-08-04 15:03:15 +0200124 # Try different combinations to accommodate systems that only have
125 # python[2][-config] in weird combinations but always preferring
126 # python2 and python2-config as per pep-0394. If we catch a
127 # python[-config] in version 3, the version check will kill it.
128 PYTHON2 := $(if $(call get-executable,python2),python2,python)
129 override PYTHON := $(call get-executable-or-default,PYTHON,$(PYTHON2))
130 PYTHON2_CONFIG := \
131 $(if $(call get-executable,$(PYTHON)-config),$(PYTHON)-config,python-config)
Namhyung Kim56c7d792014-07-29 15:57:19 +0900132 override PYTHON_CONFIG := \
Thomas Ilsched6a947f2014-08-04 15:03:15 +0200133 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON2_CONFIG))
Namhyung Kim56c7d792014-07-29 15:57:19 +0900134
135 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
136
137 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
138 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
139
140 FEATURE_CHECK_CFLAGS-libpython := $(PYTHON_EMBED_CCOPTS)
141 FEATURE_CHECK_LDFLAGS-libpython := $(PYTHON_EMBED_LDOPTS)
142 FEATURE_CHECK_CFLAGS-libpython-version := $(PYTHON_EMBED_CCOPTS)
143 FEATURE_CHECK_LDFLAGS-libpython-version := $(PYTHON_EMBED_LDOPTS)
144endif
145
Jiri Olsa2fe73742013-04-15 04:32:28 +0200146CFLAGS += -fno-omit-frame-pointer
147CFLAGS += -ggdb3
148CFLAGS += -funwind-tables
149CFLAGS += -Wall
150CFLAGS += -Wextra
151CFLAGS += -std=gnu99
Jiri Olsa9c12cf92013-03-21 11:30:54 +0100152
Mathias Krause6392b4e2014-04-27 18:51:05 +0200153# Enforce a non-executable stack, as we may regress (again) in the future by
154# adding assembler files missing the .GNU-stack linker note.
155LDFLAGS += -Wl,-z,noexecstack
156
Namhyung Kim5e2d4d02014-11-07 14:20:06 +0900157EXTLIBS = -lpthread -lrt -lm -ldl
Jiri Olsa362493f2013-03-25 00:40:48 +0100158
Ingo Molnar1c2d1d82013-10-03 15:05:56 +0200159ifneq ($(OUTPUT),)
160 OUTPUT_FEATURES = $(OUTPUT)config/feature-checks/
161 $(shell mkdir -p $(OUTPUT_FEATURES))
162endif
163
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200164feature_check = $(eval $(feature_check_code))
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200165define feature_check_code
Chunwei Chen56560ec2013-12-21 13:48:11 +0800166 feature-$(1) := $(shell $(MAKE) OUTPUT=$(OUTPUT_FEATURES) CFLAGS="$(EXTRA_CFLAGS) $(FEATURE_CHECK_CFLAGS-$(1))" LDFLAGS="$(LDFLAGS) $(FEATURE_CHECK_LDFLAGS-$(1))" -C config/feature-checks test-$1.bin >/dev/null 2>/dev/null && echo 1 || echo 0)
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200167endef
168
169feature_set = $(eval $(feature_set_code))
170define feature_set_code
171 feature-$(1) := 1
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200172endef
173
174#
175# Build the feature check binaries in parallel, ignore errors, ignore return value and suppress output:
176#
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200177
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200178#
179# Note that this is not a complete list of all feature tests, just
180# those that are typically built on a fully configured system.
181#
182# [ Feature tests not mentioned here have to be built explicitly in
183# the rule that uses them - an example for that is the 'bionic'
184# feature check. ]
185#
186CORE_FEATURE_TESTS = \
187 backtrace \
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200188 dwarf \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200189 fortify-source \
Adrian Hunterf6d31362014-07-14 13:02:53 +0300190 sync-compare-and-swap \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200191 glibc \
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200192 gtk2 \
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200193 gtk2-infobar \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200194 libaudit \
195 libbfd \
196 libelf \
197 libelf-getphdrnum \
198 libelf-mmap \
199 libnuma \
Ingo Molnar7181a672013-09-30 15:15:36 +0200200 libperl \
Ingo Molnar97341632013-09-30 15:18:37 +0200201 libpython \
Ingo Molnar95d061c2013-09-30 15:40:04 +0200202 libpython-version \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200203 libslang \
204 libunwind \
Vineet Gupta459a3df2015-01-13 19:13:24 +0530205 pthread-attr-setaffinity-np \
Ingo Molnarbb4c5502013-11-14 08:33:24 +0100206 stackprotector-all \
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100207 timerfd \
Namhyung Kime92ce122014-10-31 16:51:38 +0900208 libdw-dwarf-unwind \
209 zlib
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200210
Jiri Olsa0695e572014-02-19 16:52:54 +0100211LIB_FEATURE_TESTS = \
212 dwarf \
213 glibc \
214 gtk2 \
215 libaudit \
216 libbfd \
217 libelf \
218 libnuma \
219 libperl \
220 libpython \
221 libslang \
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100222 libunwind \
Namhyung Kime92ce122014-10-31 16:51:38 +0900223 libdw-dwarf-unwind \
224 zlib
Jiri Olsa0695e572014-02-19 16:52:54 +0100225
226VF_FEATURE_TESTS = \
227 backtrace \
228 fortify-source \
Adrian Hunterf6d31362014-07-14 13:02:53 +0300229 sync-compare-and-swap \
Jiri Olsa0695e572014-02-19 16:52:54 +0100230 gtk2-infobar \
231 libelf-getphdrnum \
232 libelf-mmap \
233 libpython-version \
Vineet Gupta459a3df2015-01-13 19:13:24 +0530234 pthread-attr-setaffinity-np \
Jiri Olsa0695e572014-02-19 16:52:54 +0100235 stackprotector-all \
236 timerfd \
237 libunwind-debug-frame \
Jiri Olsa2cf90402014-04-23 16:53:25 +0200238 bionic \
239 liberty \
240 liberty-z \
Adrian Huntere477f3f2014-10-23 18:16:03 -0300241 cplus-demangle \
242 compile-32 \
243 compile-x32
Jiri Olsa0695e572014-02-19 16:52:54 +0100244
Jiri Olsac4eb6c02014-01-07 13:47:18 +0100245# Set FEATURE_CHECK_(C|LD)FLAGS-all for all CORE_FEATURE_TESTS features.
246# If in the future we need per-feature checks/flags for features not
247# mentioned in this list we need to refactor this ;-).
248set_test_all_flags = $(eval $(set_test_all_flags_code))
249define set_test_all_flags_code
250 FEATURE_CHECK_CFLAGS-all += $(FEATURE_CHECK_CFLAGS-$(1))
251 FEATURE_CHECK_LDFLAGS-all += $(FEATURE_CHECK_LDFLAGS-$(1))
252endef
253
254$(foreach feat,$(CORE_FEATURE_TESTS),$(call set_test_all_flags,$(feat)))
255
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200256#
257# Special fast-path for the 'all features are available' case:
258#
Ingo Molnarb3b64a12013-10-02 10:01:42 +0200259$(call feature_check,all,$(MSG))
260
261#
262# Just in case the build freshly failed, make sure we print the
263# feature matrix:
264#
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200265ifeq ($(feature-all), 1)
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200266 #
267 # test-all.c passed - just set all the core feature flags to 1:
268 #
269 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_set,$(feat)))
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200270else
Chunwei Chen56560ec2013-12-21 13:48:11 +0800271 $(shell $(MAKE) OUTPUT=$(OUTPUT_FEATURES) CFLAGS="$(EXTRA_CFLAGS)" LDFLAGS=$(LDFLAGS) -i -j -C config/feature-checks $(addsuffix .bin,$(CORE_FEATURE_TESTS)) >/dev/null 2>&1)
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200272 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_check,$(feat)))
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200273endif
274
Ingo Molnar90ac5422013-09-30 13:48:44 +0200275ifeq ($(feature-stackprotector-all), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200276 CFLAGS += -fstack-protector-all
Jiri Olsa362493f2013-03-25 00:40:48 +0100277endif
278
Ingo Molnarfcf92582013-10-10 08:05:25 +0200279ifeq ($(DEBUG),0)
Ingo Molnar1ea6f992013-10-07 09:38:28 +0200280 ifeq ($(feature-fortify-source), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200281 CFLAGS += -D_FORTIFY_SOURCE=2
282 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100283endif
284
Jiri Olsa2fe73742013-04-15 04:32:28 +0200285CFLAGS += -I$(src-perf)/util/include
286CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
Namhyung Kim8a625c12014-01-09 23:00:52 +0900287CFLAGS += -I$(srctree)/tools/include/
Jiri Olsa2fe73742013-04-15 04:32:28 +0200288CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
289CFLAGS += -I$(srctree)/arch/$(ARCH)/include
290CFLAGS += -I$(srctree)/include/uapi
291CFLAGS += -I$(srctree)/include
Jiri Olsa7c537462013-05-24 14:35:23 +0200292
293# $(obj-perf) for generated common-cmds.h
294# $(obj-perf)/util for generated bison/flex headers
295ifneq ($(OUTPUT),)
Jiri Olsa2fe73742013-04-15 04:32:28 +0200296CFLAGS += -I$(obj-perf)/util
297CFLAGS += -I$(obj-perf)
Jiri Olsa7c537462013-05-24 14:35:23 +0200298endif
299
Jiri Olsa2fe73742013-04-15 04:32:28 +0200300CFLAGS += -I$(src-perf)/util
301CFLAGS += -I$(src-perf)
Robert Richter4e319022013-06-11 17:29:18 +0200302CFLAGS += -I$(LIB_INCLUDE)
Jiri Olsa7c537462013-05-24 14:35:23 +0200303
Jiri Olsa2fe73742013-04-15 04:32:28 +0200304CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
Jiri Olsa362493f2013-03-25 00:40:48 +0100305
Adrian Hunterf6d31362014-07-14 13:02:53 +0300306ifeq ($(feature-sync-compare-and-swap), 1)
307 CFLAGS += -DHAVE_SYNC_COMPARE_AND_SWAP_SUPPORT
308endif
309
Vineet Gupta459a3df2015-01-13 19:13:24 +0530310ifeq ($(feature-pthread-attr-setaffinity-np), 1)
311 CFLAGS += -DHAVE_PTHREAD_ATTR_SETAFFINITY_NP
312endif
313
Jiri Olsa4e22db42013-05-24 14:35:24 +0200314ifndef NO_BIONIC
David Ahern5febff02013-10-29 10:43:15 -0600315 $(call feature_check,bionic)
Ingo Molnar78e9d652013-09-30 14:11:46 +0200316 ifeq ($(feature-bionic), 1)
317 BIONIC := 1
318 EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
319 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
320 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100321endif
Jiri Olsacf4cca12013-03-25 00:45:08 +0100322
323ifdef NO_LIBELF
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200324 NO_DWARF := 1
325 NO_DEMANGLE := 1
326 NO_LIBUNWIND := 1
Jiri Olsa5ea84152014-02-19 16:52:57 +0100327 NO_LIBDW_DWARF_UNWIND := 1
Jiri Olsacf4cca12013-03-25 00:45:08 +0100328else
Ingo Molnar8f7f8002013-09-30 14:20:25 +0200329 ifeq ($(feature-libelf), 0)
Ingo Molnare12762c2013-10-07 10:34:20 +0200330 ifeq ($(feature-glibc), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200331 LIBC_SUPPORT := 1
332 endif
333 ifeq ($(BIONIC),1)
334 LIBC_SUPPORT := 1
335 endif
336 ifeq ($(LIBC_SUPPORT),1)
337 msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libelf-dev);
Jiri Olsacf4cca12013-03-25 00:45:08 +0100338
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200339 NO_LIBELF := 1
340 NO_DWARF := 1
341 NO_DEMANGLE := 1
Arnaldo Carvalho de Melo94589552014-03-25 09:35:11 -0300342 NO_LIBUNWIND := 1
343 NO_LIBDW_DWARF_UNWIND := 1
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200344 else
Arnaldo Carvalho de Melof9ca2d82014-06-05 12:46:04 -0300345 ifneq ($(filter s% -static%,$(LDFLAGS),),)
346 msg := $(error No static glibc found, please install glibc-static);
347 else
348 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]);
349 endif
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200350 endif
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200351 else
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100352 ifndef NO_LIBDW_DWARF_UNWIND
353 ifneq ($(feature-libdw-dwarf-unwind),1)
354 NO_LIBDW_DWARF_UNWIND := 1
355 msg := $(warning No libdw DWARF unwind found, Please install elfutils-devel/libdw-dev >= 0.158 and/or set LIBDW_DIR);
356 endif
357 endif
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200358 ifneq ($(feature-dwarf), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200359 msg := $(warning No libdw.h found or old libdw.h found or elfutils is older than 0.138, disables dwarf support. Please install new elfutils-devel/libdw-dev);
360 NO_DWARF := 1
361 endif # Dwarf support
Ingo Molnar0648f832013-10-02 15:30:35 +0200362 endif # libelf support
Jiri Olsacf4cca12013-03-25 00:45:08 +0100363endif # NO_LIBELF
364
365ifndef NO_LIBELF
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200366 CFLAGS += -DHAVE_LIBELF_SUPPORT
Namhyung Kim5e2d4d02014-11-07 14:20:06 +0900367 EXTLIBS += -lelf
Jiri Olsa779724f2013-03-25 00:48:14 +0100368
Ingo Molnar8869b172013-09-30 15:02:28 +0200369 ifeq ($(feature-libelf-mmap), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200370 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
371 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100372
Ingo Molnarb7bcef62013-09-30 14:35:27 +0200373 ifeq ($(feature-libelf-getphdrnum), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200374 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
375 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100376
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200377 # include ARCH specific config
378 -include $(src-perf)/arch/$(ARCH)/Makefile
379
380 ifndef NO_DWARF
381 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
382 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
383 NO_DWARF := 1
384 else
385 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
386 LDFLAGS += $(LIBDW_LDFLAGS)
Namhyung Kim5e2d4d02014-11-07 14:20:06 +0900387 EXTLIBS += -ldw
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200388 endif # PERF_HAVE_DWARF_REGS
389 endif # NO_DWARF
Jiri Olsacf4cca12013-03-25 00:45:08 +0100390endif # NO_LIBELF
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100391
Anton Blanchard65ccb4f2014-08-25 18:25:06 +1000392ifeq ($(ARCH),powerpc)
393 ifndef NO_DWARF
394 CFLAGS += -DHAVE_SKIP_CALLCHAIN_IDX
395 endif
396endif
397
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100398ifndef NO_LIBUNWIND
Ingo Molnar058f9522013-09-30 14:45:44 +0200399 ifneq ($(feature-libunwind), 1)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100400 msg := $(warning No libunwind found. Please install libunwind-dev[el] >= 1.1 and/or set LIBUNWIND_DIR);
Ingo Molnar308e1e72013-10-07 10:30:47 +0200401 NO_LIBUNWIND := 1
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100402 endif
403endif
404
405dwarf-post-unwind := 1
406dwarf-post-unwind-text := BUG
407
408# setup DWARF post unwinder
409ifdef NO_LIBUNWIND
410 ifdef NO_LIBDW_DWARF_UNWIND
411 msg := $(warning Disabling post unwind, no support found.);
412 dwarf-post-unwind := 0
Linus Torvaldsf47671e2013-11-14 08:51:29 +0900413 else
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100414 dwarf-post-unwind-text := libdw
415 endif
416else
417 dwarf-post-unwind-text := libunwind
418 # Enable libunwind support by default.
419 ifndef NO_LIBDW_DWARF_UNWIND
420 NO_LIBDW_DWARF_UNWIND := 1
421 endif
422endif
423
424ifeq ($(dwarf-post-unwind),1)
425 CFLAGS += -DHAVE_DWARF_UNWIND_SUPPORT
426else
427 NO_DWARF_UNWIND := 1
428endif
429
430ifndef NO_LIBUNWIND
Jean Pihet8ab596a2014-04-28 14:32:33 +0200431 ifeq ($(ARCH),$(filter $(ARCH),arm arm64))
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100432 $(call feature_check,libunwind-debug-frame)
433 ifneq ($(feature-libunwind-debug-frame), 1)
434 msg := $(warning No debug_frame support found in libunwind);
Linus Torvaldsf47671e2013-11-14 08:51:29 +0900435 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
436 endif
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100437 else
438 # non-ARM has no dwarf_find_debug_frame() function:
439 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
440 endif
441 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
442 EXTLIBS += $(LIBUNWIND_LIBS)
443 CFLAGS += $(LIBUNWIND_CFLAGS)
444 LDFLAGS += $(LIBUNWIND_LDFLAGS)
Ingo Molnar058f9522013-09-30 14:45:44 +0200445endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100446
447ifndef NO_LIBAUDIT
Ingo Molnard795a652013-09-30 14:55:31 +0200448 ifneq ($(feature-libaudit), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200449 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
450 NO_LIBAUDIT := 1
451 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200452 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200453 EXTLIBS += -laudit
454 endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100455endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100456
457ifdef NO_NEWT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200458 NO_SLANG=1
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100459endif
460
461ifndef NO_SLANG
Ingo Molnarb9498b52013-09-30 14:57:54 +0200462 ifneq ($(feature-libslang), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200463 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
464 NO_SLANG := 1
465 else
466 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
467 CFLAGS += -I/usr/include/slang
Ingo Molnar89fe8082013-09-30 12:07:11 +0200468 CFLAGS += -DHAVE_SLANG_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200469 EXTLIBS += -lslang
470 endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100471endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100472
473ifndef NO_GTK2
Mark Rutlanda8a5cd82014-01-15 10:44:08 +0000474 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null)
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200475 ifneq ($(feature-gtk2), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200476 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
477 NO_GTK2 := 1
478 else
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200479 ifeq ($(feature-gtk2-infobar), 1)
Namhyung Kimfc672972013-09-13 15:27:43 +0900480 GTK_CFLAGS := -DHAVE_GTK_INFO_BAR_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200481 endif
Ingo Molnar89fe8082013-09-30 12:07:11 +0200482 CFLAGS += -DHAVE_GTK2_SUPPORT
Mark Rutlanda8a5cd82014-01-15 10:44:08 +0000483 GTK_CFLAGS += $(shell $(PKG_CONFIG) --cflags gtk+-2.0 2>/dev/null)
484 GTK_LIBS := $(shell $(PKG_CONFIG) --libs gtk+-2.0 2>/dev/null)
Jiri Olsae2137082013-09-26 20:55:54 +0200485 EXTLIBS += -ldl
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200486 endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100487endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100488
489grep-libs = $(filter -l%,$(1))
490strip-libs = $(filter-out -l%,$(1))
491
492ifdef NO_LIBPERL
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200493 CFLAGS += -DNO_LIBPERL
Jiri Olsa3082cb32013-03-18 00:19:44 +0100494else
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200495 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
496 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
497 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
498 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
499 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
Jiri Olsa3082cb32013-03-18 00:19:44 +0100500
Ingo Molnar7181a672013-09-30 15:15:36 +0200501 ifneq ($(feature-libperl), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200502 CFLAGS += -DNO_LIBPERL
503 NO_LIBPERL := 1
Arnaldo Carvalho de Melo6a2f2542014-05-26 16:02:30 -0300504 msg := $(warning Missing perl devel files. Disabling perl scripting support, consider installing perl-ExtUtils-Embed);
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200505 else
506 LDFLAGS += $(PERL_EMBED_LDFLAGS)
507 EXTLIBS += $(PERL_EMBED_LIBADD)
508 endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100509endif
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100510
David Ahern87419c92013-10-29 10:43:16 -0600511ifeq ($(feature-timerfd), 1)
512 CFLAGS += -DHAVE_TIMERFD_SUPPORT
513else
514 msg := $(warning No timerfd support. Disables 'perf kvm stat live');
515endif
516
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100517disable-python = $(eval $(disable-python_code))
518define disable-python_code
Jiri Olsa9c12cf92013-03-21 11:30:54 +0100519 CFLAGS += -DNO_LIBPYTHON
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100520 $(if $(1),$(warning No $(1) was found))
521 $(warning Python support will not be built)
522 NO_LIBPYTHON := 1
523endef
524
Namhyung Kim56c7d792014-07-29 15:57:19 +0900525ifdef NO_LIBPYTHON
526 $(call disable-python)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100527else
528
Namhyung Kim56c7d792014-07-29 15:57:19 +0900529 ifndef PYTHON
530 $(call disable-python,python interpreter)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100531 else
Namhyung Kim56c7d792014-07-29 15:57:19 +0900532 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100533
534 ifndef PYTHON_CONFIG
535 $(call disable-python,python-config tool)
536 else
537
538 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
539
540 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
541 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
542 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
543 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
544 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
545
Ingo Molnar97341632013-09-30 15:18:37 +0200546 ifneq ($(feature-libpython), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100547 $(call disable-python,Python.h (for Python 2.x))
548 else
549
Ingo Molnar95d061c2013-09-30 15:40:04 +0200550 ifneq ($(feature-libpython-version), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100551 $(warning Python 3 is not yet supported; please set)
552 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
553 $(warning If you also have Python 2 installed, then)
554 $(warning try something like:)
555 $(warning $(and ,))
556 $(warning $(and ,) make PYTHON=python2)
557 $(warning $(and ,))
558 $(warning Otherwise, disable Python support entirely:)
559 $(warning $(and ,))
560 $(warning $(and ,) make NO_LIBPYTHON=1)
561 $(warning $(and ,))
562 $(error $(and ,))
563 else
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100564 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100565 EXTLIBS += $(PYTHON_EMBED_LIBADD)
Jiri Olsa7c537462013-05-24 14:35:23 +0200566 LANG_BINDINGS += $(obj-perf)python/perf.so
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100567 endif
568 endif
569 endif
570 endif
571endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100572
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200573ifeq ($(feature-libbfd), 1)
Jiri Olsa2cf90402014-04-23 16:53:25 +0200574 EXTLIBS += -lbfd
575
576 # call all detections now so we get correct
577 # status in VF output
578 $(call feature_check,liberty)
579 $(call feature_check,liberty-z)
580 $(call feature_check,cplus-demangle)
581
582 ifeq ($(feature-liberty), 1)
583 EXTLIBS += -liberty
584 else
585 ifeq ($(feature-liberty-z), 1)
586 EXTLIBS += -liberty -lz
587 endif
588 endif
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200589endif
590
Jiri Olsac3cf8362013-03-18 00:38:16 +0100591ifdef NO_DEMANGLE
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200592 CFLAGS += -DNO_DEMANGLE
Jiri Olsac3cf8362013-03-18 00:38:16 +0100593else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200594 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200595 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200596 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200597 else
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200598 ifneq ($(feature-libbfd), 1)
Jiri Olsa2cf90402014-04-23 16:53:25 +0200599 ifneq ($(feature-liberty), 1)
600 ifneq ($(feature-liberty-z), 1)
601 # we dont have neither HAVE_CPLUS_DEMANGLE_SUPPORT
602 # or any of 'bfd iberty z' trinity
Ingo Molnar1c476612013-10-02 15:15:09 +0200603 ifeq ($(feature-cplus-demangle), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200604 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200605 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200606 else
607 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
608 CFLAGS += -DNO_DEMANGLE
609 endif
610 endif
611 endif
612 endif
613 endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100614endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100615
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200616ifneq ($(filter -lbfd,$(EXTLIBS)),)
617 CFLAGS += -DHAVE_LIBBFD_SUPPORT
618endif
619
Namhyung Kime92ce122014-10-31 16:51:38 +0900620ifndef NO_ZLIB
621 ifeq ($(feature-zlib), 1)
622 CFLAGS += -DHAVE_ZLIB_SUPPORT
623 EXTLIBS += -lz
624 else
625 NO_ZLIB := 1
626 endif
627endif
628
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100629ifndef NO_BACKTRACE
Ingo Molnar4cc91172013-09-30 16:49:38 +0200630 ifeq ($(feature-backtrace), 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200631 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200632 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100633endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100634
635ifndef NO_LIBNUMA
Ingo Molnar3ae069c2013-09-30 13:37:10 +0200636 ifeq ($(feature-libnuma), 0)
Dongsheng Yang6305edf2013-12-02 10:26:48 -0500637 msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numactl-devel/libnuma-devel/libnuma-dev);
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200638 NO_LIBNUMA := 1
639 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200640 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200641 EXTLIBS += -lnuma
642 endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100643endif
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100644
Alexander Yaryginda50ad62014-07-03 17:59:49 +0400645ifdef HAVE_KVM_STAT_SUPPORT
646 CFLAGS += -DHAVE_KVM_STAT_SUPPORT
647endif
648
Adrian Huntere477f3f2014-10-23 18:16:03 -0300649ifeq (${IS_64_BIT}, 1)
650 ifndef NO_PERF_READ_VDSO32
651 $(call feature_check,compile-32)
Adrian Hunter46b1fa82014-10-23 13:45:24 +0300652 ifeq ($(feature-compile-32), 1)
653 CFLAGS += -DHAVE_PERF_READ_VDSO32
654 else
Adrian Huntere477f3f2014-10-23 18:16:03 -0300655 NO_PERF_READ_VDSO32 := 1
656 endif
657 endif
658 ifneq (${IS_X86_64}, 1)
659 NO_PERF_READ_VDSOX32 := 1
660 endif
661 ifndef NO_PERF_READ_VDSOX32
662 $(call feature_check,compile-x32)
Adrian Hunter46b1fa82014-10-23 13:45:24 +0300663 ifeq ($(feature-compile-x32), 1)
664 CFLAGS += -DHAVE_PERF_READ_VDSOX32
665 else
Adrian Huntere477f3f2014-10-23 18:16:03 -0300666 NO_PERF_READ_VDSOX32 := 1
667 endif
668 endif
669else
670 NO_PERF_READ_VDSO32 := 1
671 NO_PERF_READ_VDSOX32 := 1
672endif
673
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100674# Among the variables below, these:
675# perfexecdir
676# template_dir
677# mandir
678# infodir
679# htmldir
680# ETC_PERFCONFIG (but not sysconfdir)
681# can be specified as a relative path some/where/else;
682# this is interpreted as relative to $(prefix) and "perf" at
683# runtime figures out where they are based on the path to the executable.
684# This can help installing the suite in a relocatable way.
685
686# Make the path relative to DESTDIR, not to prefix
687ifndef DESTDIR
Jianyu Zhanfc9cabe2014-06-03 00:44:34 +0800688prefix ?= $(HOME)
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100689endif
690bindir_relative = bin
691bindir = $(prefix)/$(bindir_relative)
692mandir = share/man
693infodir = share/info
694perfexecdir = libexec/perf-core
695sharedir = $(prefix)/share
696template_dir = share/perf-core/templates
697htmldir = share/doc/perf-doc
698ifeq ($(prefix),/usr)
699sysconfdir = /etc
700ETC_PERFCONFIG = $(sysconfdir)/perfconfig
701else
702sysconfdir = $(prefix)/etc
703ETC_PERFCONFIG = etc/perfconfig
704endif
Jiri Olsa6997af722014-08-25 16:55:52 +0200705ifndef lib
Namhyung Kimfc672972013-09-13 15:27:43 +0900706ifeq ($(IS_X86_64),1)
707lib = lib64
708else
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100709lib = lib
Namhyung Kimfc672972013-09-13 15:27:43 +0900710endif
Jiri Olsa6997af722014-08-25 16:55:52 +0200711endif # lib
Namhyung Kimfc672972013-09-13 15:27:43 +0900712libdir = $(prefix)/$(lib)
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100713
714# Shell quote (do not use $(call) to accommodate ancient setups);
715ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
716DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
717bindir_SQ = $(subst ','\'',$(bindir))
718mandir_SQ = $(subst ','\'',$(mandir))
719infodir_SQ = $(subst ','\'',$(infodir))
720perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
721template_dir_SQ = $(subst ','\'',$(template_dir))
722htmldir_SQ = $(subst ','\'',$(htmldir))
723prefix_SQ = $(subst ','\'',$(prefix))
724sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
Namhyung Kimfc672972013-09-13 15:27:43 +0900725libdir_SQ = $(subst ','\'',$(libdir))
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100726
727ifneq ($(filter /%,$(firstword $(perfexecdir))),)
728perfexec_instdir = $(perfexecdir)
729else
730perfexec_instdir = $(prefix)/$(perfexecdir)
731endif
732perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))
Jiri Olsa3d7c0142013-12-03 14:09:21 +0100733
734# If we install to $(HOME) we keep the traceevent default:
735# $(HOME)/.traceevent/plugins
736# Otherwise we install plugins into the global $(libdir).
737ifdef DESTDIR
738plugindir=$(libdir)/traceevent/plugins
Josh Boyerb935a582014-01-22 10:01:48 -0500739plugindir_SQ= $(subst ','\'',$(plugindir))
Jiri Olsa3d7c0142013-12-03 14:09:21 +0100740endif
Jiri Olsa0695e572014-02-19 16:52:54 +0100741
742#
743# Print the result of the feature test:
744#
Jiri Olsa8d790762014-02-19 16:52:55 +0100745feature_print_status = $(eval $(feature_print_status_code)) $(info $(MSG))
Jiri Olsa0695e572014-02-19 16:52:54 +0100746
Jiri Olsa8d790762014-02-19 16:52:55 +0100747define feature_print_status_code
Jiri Olsa0695e572014-02-19 16:52:54 +0100748 ifeq ($(feature-$(1)), 1)
749 MSG = $(shell printf '...%30s: [ \033[32mon\033[m ]' $(1))
750 else
751 MSG = $(shell printf '...%30s: [ \033[31mOFF\033[m ]' $(1))
752 endif
753endef
754
Jiri Olsa8d790762014-02-19 16:52:55 +0100755feature_print_var = $(eval $(feature_print_var_code)) $(info $(MSG))
756define feature_print_var_code
757 MSG = $(shell printf '...%30s: %s' $(1) $($(1)))
758endef
759
760feature_print_text = $(eval $(feature_print_text_code)) $(info $(MSG))
761define feature_print_text_code
762 MSG = $(shell printf '...%30s: %s' $(1) $(2))
763endef
764
Jiri Olsa0695e572014-02-19 16:52:54 +0100765PERF_FEATURES := $(foreach feat,$(LIB_FEATURE_TESTS),feature-$(feat)($(feature-$(feat))))
766PERF_FEATURES_FILE := $(shell touch $(OUTPUT)PERF-FEATURES; cat $(OUTPUT)PERF-FEATURES)
767
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100768ifeq ($(dwarf-post-unwind),1)
769 PERF_FEATURES += dwarf-post-unwind($(dwarf-post-unwind-text))
770endif
771
Jiri Olsa0695e572014-02-19 16:52:54 +0100772# The $(display_lib) controls the default detection message
773# output. It's set if:
774# - detected features differes from stored features from
775# last build (in PERF-FEATURES file)
776# - one of the $(LIB_FEATURE_TESTS) is not detected
777# - VF is enabled
778
779ifneq ("$(PERF_FEATURES)","$(PERF_FEATURES_FILE)")
780 $(shell echo "$(PERF_FEATURES)" > $(OUTPUT)PERF-FEATURES)
781 display_lib := 1
782endif
783
784feature_check = $(eval $(feature_check_code))
785define feature_check_code
786 ifneq ($(feature-$(1)), 1)
787 display_lib := 1
788 endif
789endef
790
791$(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_check,$(feat)))
792
793ifeq ($(VF),1)
794 display_lib := 1
795 display_vf := 1
796endif
797
798ifeq ($(display_lib),1)
799 $(info )
800 $(info Auto-detecting system features:)
Jiri Olsa8d790762014-02-19 16:52:55 +0100801 $(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_print_status,$(feat),))
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100802
803 ifeq ($(dwarf-post-unwind),1)
804 $(call feature_print_text,"DWARF post unwind library", $(dwarf-post-unwind-text))
805 endif
Jiri Olsa0695e572014-02-19 16:52:54 +0100806endif
807
808ifeq ($(display_vf),1)
Jiri Olsa8d790762014-02-19 16:52:55 +0100809 $(foreach feat,$(VF_FEATURE_TESTS),$(call feature_print_status,$(feat),))
810 $(info )
811 $(call feature_print_var,prefix)
812 $(call feature_print_var,bindir)
813 $(call feature_print_var,libdir)
814 $(call feature_print_var,sysconfdir)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100815 $(call feature_print_var,LIBUNWIND_DIR)
816 $(call feature_print_var,LIBDW_DIR)
Jiri Olsa0695e572014-02-19 16:52:54 +0100817endif
818
819ifeq ($(display_lib),1)
820 $(info )
821endif