blob: 71264e41fa8593bab678aefe23d77ec7e56052fa [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
14LIB_INCLUDE := $(srctree)/tools/lib/
15CFLAGS := $(EXTRA_CFLAGS) $(EXTRA_WARNINGS)
16
17include $(src-perf)/config/Makefile.arch
18
19NO_PERF_REGS := 1
20
21# Additional ARCH settings for x86
22ifeq ($(ARCH),x86)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020023 ifeq (${IS_X86_64}, 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +020024 CFLAGS += -DHAVE_ARCH_X86_64_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020025 ARCH_INCLUDE = ../../arch/x86/lib/memcpy_64.S ../../arch/x86/lib/memset_64.S
Adrian Hunter8a0c4c22013-11-01 15:51:32 +020026 LIBUNWIND_LIBS = -lunwind -lunwind-x86_64
27 else
28 LIBUNWIND_LIBS = -lunwind -lunwind-x86
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020029 endif
30 NO_PERF_REGS := 0
Jiri Olsa8bd407b2013-03-15 16:28:49 +010031endif
Jean Pihet8ab596a2014-04-28 14:32:33 +020032
Will Deacon7495f372013-09-26 12:36:36 +010033ifeq ($(ARCH),arm)
34 NO_PERF_REGS := 0
35 LIBUNWIND_LIBS = -lunwind -lunwind-arm
36endif
Jiri Olsa8bd407b2013-03-15 16:28:49 +010037
Jean Pihet8ab596a2014-04-28 14:32:33 +020038ifeq ($(ARCH),arm64)
39 NO_PERF_REGS := 0
40 LIBUNWIND_LIBS = -lunwind -lunwind-aarch64
41endif
42
Jean Pihet90fa9de2014-05-16 10:41:11 +020043# So far there's only x86 and arm libdw unwind support merged in perf.
Jiri Olsa4dc549e2014-04-20 10:50:00 +020044# Disable it on all other architectures in case libdw unwind
45# support is detected in system. Add supported architectures
46# to the check.
Jean Pihet90fa9de2014-05-16 10:41:11 +020047ifneq ($(ARCH),$(filter $(ARCH),x86 arm))
Jiri Olsa4dc549e2014-04-20 10:50:00 +020048 NO_LIBDW_DWARF_UNWIND := 1
49endif
50
Jean Pihet1448fef2013-12-10 13:24:04 +010051ifeq ($(LIBUNWIND_LIBS),)
52 NO_LIBUNWIND := 1
53else
54 #
55 # For linking with debug library, run like:
56 #
57 # make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
58 #
59 ifdef LIBUNWIND_DIR
60 LIBUNWIND_CFLAGS = -I$(LIBUNWIND_DIR)/include
61 LIBUNWIND_LDFLAGS = -L$(LIBUNWIND_DIR)/lib
62 endif
63 LIBUNWIND_LDFLAGS += $(LIBUNWIND_LIBS)
64
65 # Set per-feature check compilation flags
66 FEATURE_CHECK_CFLAGS-libunwind = $(LIBUNWIND_CFLAGS)
67 FEATURE_CHECK_LDFLAGS-libunwind = $(LIBUNWIND_LDFLAGS)
68 FEATURE_CHECK_CFLAGS-libunwind-debug-frame = $(LIBUNWIND_CFLAGS)
69 FEATURE_CHECK_LDFLAGS-libunwind-debug-frame = $(LIBUNWIND_LDFLAGS)
Jean Pihet1448fef2013-12-10 13:24:04 +010070endif
71
Jiri Olsa8bd407b2013-03-15 16:28:49 +010072ifeq ($(NO_PERF_REGS),0)
Ingo Molnar89fe8082013-09-30 12:07:11 +020073 CFLAGS += -DHAVE_PERF_REGS_SUPPORT
Jiri Olsa8bd407b2013-03-15 16:28:49 +010074endif
Jiri Olsaa32f4932013-03-25 00:32:01 +010075
Jiri Olsa45757892014-02-19 16:52:56 +010076ifndef NO_LIBELF
77 # for linking with debug library, run like:
78 # make DEBUG=1 LIBDW_DIR=/opt/libdw/
79 ifdef LIBDW_DIR
80 LIBDW_CFLAGS := -I$(LIBDW_DIR)/include
81 LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib
Jiri Olsa45757892014-02-19 16:52:56 +010082 endif
Ramkumar Ramachandra2c529e42014-03-26 18:44:05 -040083 FEATURE_CHECK_CFLAGS-libdw-dwarf-unwind := $(LIBDW_CFLAGS)
84 FEATURE_CHECK_LDFLAGS-libdw-dwarf-unwind := $(LIBDW_LDFLAGS) -ldw
Jiri Olsa45757892014-02-19 16:52:56 +010085endif
86
Jiri Olsa7c537462013-05-24 14:35:23 +020087# include ARCH specific config
88-include $(src-perf)/arch/$(ARCH)/Makefile
89
Jiri Olsa7c537462013-05-24 14:35:23 +020090include $(src-perf)/config/utilities.mak
Jiri Olsaa32f4932013-03-25 00:32:01 +010091
92ifeq ($(call get-executable,$(FLEX)),)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020093 dummy := $(error Error: $(FLEX) is missing on this system, please install it)
Jiri Olsaa32f4932013-03-25 00:32:01 +010094endif
95
96ifeq ($(call get-executable,$(BISON)),)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020097 dummy := $(error Error: $(BISON) is missing on this system, please install it)
Jiri Olsaa32f4932013-03-25 00:32:01 +010098endif
Jiri Olsa362493f2013-03-25 00:40:48 +010099
100# Treat warnings as errors unless directed not to
101ifneq ($(WERROR),0)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200102 CFLAGS += -Werror
Jiri Olsa362493f2013-03-25 00:40:48 +0100103endif
104
Adrian Hunter74af3772013-10-22 10:34:05 +0300105ifndef DEBUG
106 DEBUG := 0
107endif
108
Ingo Molnarfcf92582013-10-10 08:05:25 +0200109ifeq ($(DEBUG),0)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200110 CFLAGS += -O6
Jiri Olsa362493f2013-03-25 00:40:48 +0100111endif
112
113ifdef PARSER_DEBUG
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200114 PARSER_DEBUG_BISON := -t
115 PARSER_DEBUG_FLEX := -d
116 CFLAGS += -DPARSER_DEBUG
Jiri Olsa362493f2013-03-25 00:40:48 +0100117endif
118
Namhyung Kim56c7d792014-07-29 15:57:19 +0900119ifndef NO_LIBPYTHON
Thomas Ilsched6a947f2014-08-04 15:03:15 +0200120 # Try different combinations to accommodate systems that only have
121 # python[2][-config] in weird combinations but always preferring
122 # python2 and python2-config as per pep-0394. If we catch a
123 # python[-config] in version 3, the version check will kill it.
124 PYTHON2 := $(if $(call get-executable,python2),python2,python)
125 override PYTHON := $(call get-executable-or-default,PYTHON,$(PYTHON2))
126 PYTHON2_CONFIG := \
127 $(if $(call get-executable,$(PYTHON)-config),$(PYTHON)-config,python-config)
Namhyung Kim56c7d792014-07-29 15:57:19 +0900128 override PYTHON_CONFIG := \
Thomas Ilsched6a947f2014-08-04 15:03:15 +0200129 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON2_CONFIG))
Namhyung Kim56c7d792014-07-29 15:57:19 +0900130
131 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
132
133 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
134 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
135
136 FEATURE_CHECK_CFLAGS-libpython := $(PYTHON_EMBED_CCOPTS)
137 FEATURE_CHECK_LDFLAGS-libpython := $(PYTHON_EMBED_LDOPTS)
138 FEATURE_CHECK_CFLAGS-libpython-version := $(PYTHON_EMBED_CCOPTS)
139 FEATURE_CHECK_LDFLAGS-libpython-version := $(PYTHON_EMBED_LDOPTS)
140endif
141
Jiri Olsa2fe73742013-04-15 04:32:28 +0200142CFLAGS += -fno-omit-frame-pointer
143CFLAGS += -ggdb3
144CFLAGS += -funwind-tables
145CFLAGS += -Wall
146CFLAGS += -Wextra
147CFLAGS += -std=gnu99
Jiri Olsa9c12cf92013-03-21 11:30:54 +0100148
Mathias Krause6392b4e2014-04-27 18:51:05 +0200149# Enforce a non-executable stack, as we may regress (again) in the future by
150# adding assembler files missing the .GNU-stack linker note.
151LDFLAGS += -Wl,-z,noexecstack
152
David Ahern6d199122013-09-22 19:44:57 -0600153EXTLIBS = -lelf -lpthread -lrt -lm -ldl
Jiri Olsa362493f2013-03-25 00:40:48 +0100154
Ingo Molnar1c2d1d82013-10-03 15:05:56 +0200155ifneq ($(OUTPUT),)
156 OUTPUT_FEATURES = $(OUTPUT)config/feature-checks/
157 $(shell mkdir -p $(OUTPUT_FEATURES))
158endif
159
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200160feature_check = $(eval $(feature_check_code))
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200161define feature_check_code
Chunwei Chen56560ec2013-12-21 13:48:11 +0800162 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 +0200163endef
164
165feature_set = $(eval $(feature_set_code))
166define feature_set_code
167 feature-$(1) := 1
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200168endef
169
170#
171# Build the feature check binaries in parallel, ignore errors, ignore return value and suppress output:
172#
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200173
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200174#
175# Note that this is not a complete list of all feature tests, just
176# those that are typically built on a fully configured system.
177#
178# [ Feature tests not mentioned here have to be built explicitly in
179# the rule that uses them - an example for that is the 'bionic'
180# feature check. ]
181#
182CORE_FEATURE_TESTS = \
183 backtrace \
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200184 dwarf \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200185 fortify-source \
Adrian Hunterf6d31362014-07-14 13:02:53 +0300186 sync-compare-and-swap \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200187 glibc \
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200188 gtk2 \
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200189 gtk2-infobar \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200190 libaudit \
191 libbfd \
192 libelf \
193 libelf-getphdrnum \
194 libelf-mmap \
195 libnuma \
Ingo Molnar7181a672013-09-30 15:15:36 +0200196 libperl \
Ingo Molnar97341632013-09-30 15:18:37 +0200197 libpython \
Ingo Molnar95d061c2013-09-30 15:40:04 +0200198 libpython-version \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200199 libslang \
200 libunwind \
Ingo Molnarbb4c5502013-11-14 08:33:24 +0100201 stackprotector-all \
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100202 timerfd \
203 libdw-dwarf-unwind
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200204
Jiri Olsa0695e572014-02-19 16:52:54 +0100205LIB_FEATURE_TESTS = \
206 dwarf \
207 glibc \
208 gtk2 \
209 libaudit \
210 libbfd \
211 libelf \
212 libnuma \
213 libperl \
214 libpython \
215 libslang \
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100216 libunwind \
217 libdw-dwarf-unwind
Jiri Olsa0695e572014-02-19 16:52:54 +0100218
219VF_FEATURE_TESTS = \
220 backtrace \
221 fortify-source \
Adrian Hunterf6d31362014-07-14 13:02:53 +0300222 sync-compare-and-swap \
Jiri Olsa0695e572014-02-19 16:52:54 +0100223 gtk2-infobar \
224 libelf-getphdrnum \
225 libelf-mmap \
226 libpython-version \
Jiri Olsa0695e572014-02-19 16:52:54 +0100227 stackprotector-all \
228 timerfd \
229 libunwind-debug-frame \
Jiri Olsa2cf90402014-04-23 16:53:25 +0200230 bionic \
231 liberty \
232 liberty-z \
Adrian Huntere477f3f2014-10-23 18:16:03 -0300233 cplus-demangle \
234 compile-32 \
235 compile-x32
Jiri Olsa0695e572014-02-19 16:52:54 +0100236
Jiri Olsac4eb6c02014-01-07 13:47:18 +0100237# Set FEATURE_CHECK_(C|LD)FLAGS-all for all CORE_FEATURE_TESTS features.
238# If in the future we need per-feature checks/flags for features not
239# mentioned in this list we need to refactor this ;-).
240set_test_all_flags = $(eval $(set_test_all_flags_code))
241define set_test_all_flags_code
242 FEATURE_CHECK_CFLAGS-all += $(FEATURE_CHECK_CFLAGS-$(1))
243 FEATURE_CHECK_LDFLAGS-all += $(FEATURE_CHECK_LDFLAGS-$(1))
244endef
245
246$(foreach feat,$(CORE_FEATURE_TESTS),$(call set_test_all_flags,$(feat)))
247
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200248#
249# Special fast-path for the 'all features are available' case:
250#
Ingo Molnarb3b64a12013-10-02 10:01:42 +0200251$(call feature_check,all,$(MSG))
252
253#
254# Just in case the build freshly failed, make sure we print the
255# feature matrix:
256#
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200257ifeq ($(feature-all), 1)
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200258 #
259 # test-all.c passed - just set all the core feature flags to 1:
260 #
261 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_set,$(feat)))
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200262else
Chunwei Chen56560ec2013-12-21 13:48:11 +0800263 $(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 +0200264 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_check,$(feat)))
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200265endif
266
Ingo Molnar90ac5422013-09-30 13:48:44 +0200267ifeq ($(feature-stackprotector-all), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200268 CFLAGS += -fstack-protector-all
Jiri Olsa362493f2013-03-25 00:40:48 +0100269endif
270
Ingo Molnarfcf92582013-10-10 08:05:25 +0200271ifeq ($(DEBUG),0)
Ingo Molnar1ea6f992013-10-07 09:38:28 +0200272 ifeq ($(feature-fortify-source), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200273 CFLAGS += -D_FORTIFY_SOURCE=2
274 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100275endif
276
Jiri Olsa2fe73742013-04-15 04:32:28 +0200277CFLAGS += -I$(src-perf)/util/include
278CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
Namhyung Kim8a625c12014-01-09 23:00:52 +0900279CFLAGS += -I$(srctree)/tools/include/
Jiri Olsa2fe73742013-04-15 04:32:28 +0200280CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
281CFLAGS += -I$(srctree)/arch/$(ARCH)/include
282CFLAGS += -I$(srctree)/include/uapi
283CFLAGS += -I$(srctree)/include
Jiri Olsa7c537462013-05-24 14:35:23 +0200284
285# $(obj-perf) for generated common-cmds.h
286# $(obj-perf)/util for generated bison/flex headers
287ifneq ($(OUTPUT),)
Jiri Olsa2fe73742013-04-15 04:32:28 +0200288CFLAGS += -I$(obj-perf)/util
289CFLAGS += -I$(obj-perf)
Jiri Olsa7c537462013-05-24 14:35:23 +0200290endif
291
Jiri Olsa2fe73742013-04-15 04:32:28 +0200292CFLAGS += -I$(src-perf)/util
293CFLAGS += -I$(src-perf)
Robert Richter4e319022013-06-11 17:29:18 +0200294CFLAGS += -I$(LIB_INCLUDE)
Jiri Olsa7c537462013-05-24 14:35:23 +0200295
Jiri Olsa2fe73742013-04-15 04:32:28 +0200296CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
Jiri Olsa362493f2013-03-25 00:40:48 +0100297
Adrian Hunterf6d31362014-07-14 13:02:53 +0300298ifeq ($(feature-sync-compare-and-swap), 1)
299 CFLAGS += -DHAVE_SYNC_COMPARE_AND_SWAP_SUPPORT
300endif
301
Jiri Olsa4e22db42013-05-24 14:35:24 +0200302ifndef NO_BIONIC
David Ahern5febff02013-10-29 10:43:15 -0600303 $(call feature_check,bionic)
Ingo Molnar78e9d652013-09-30 14:11:46 +0200304 ifeq ($(feature-bionic), 1)
305 BIONIC := 1
306 EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
307 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
308 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100309endif
Jiri Olsacf4cca12013-03-25 00:45:08 +0100310
311ifdef NO_LIBELF
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200312 NO_DWARF := 1
313 NO_DEMANGLE := 1
314 NO_LIBUNWIND := 1
Jiri Olsa5ea84152014-02-19 16:52:57 +0100315 NO_LIBDW_DWARF_UNWIND := 1
Jiri Olsacf4cca12013-03-25 00:45:08 +0100316else
Ingo Molnar8f7f8002013-09-30 14:20:25 +0200317 ifeq ($(feature-libelf), 0)
Ingo Molnare12762c2013-10-07 10:34:20 +0200318 ifeq ($(feature-glibc), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200319 LIBC_SUPPORT := 1
320 endif
321 ifeq ($(BIONIC),1)
322 LIBC_SUPPORT := 1
323 endif
324 ifeq ($(LIBC_SUPPORT),1)
325 msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libelf-dev);
Jiri Olsacf4cca12013-03-25 00:45:08 +0100326
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200327 NO_LIBELF := 1
328 NO_DWARF := 1
329 NO_DEMANGLE := 1
Arnaldo Carvalho de Melo94589552014-03-25 09:35:11 -0300330 NO_LIBUNWIND := 1
331 NO_LIBDW_DWARF_UNWIND := 1
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200332 else
Arnaldo Carvalho de Melof9ca2d82014-06-05 12:46:04 -0300333 ifneq ($(filter s% -static%,$(LDFLAGS),),)
334 msg := $(error No static glibc found, please install glibc-static);
335 else
336 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]);
337 endif
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200338 endif
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200339 else
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100340 ifndef NO_LIBDW_DWARF_UNWIND
341 ifneq ($(feature-libdw-dwarf-unwind),1)
342 NO_LIBDW_DWARF_UNWIND := 1
343 msg := $(warning No libdw DWARF unwind found, Please install elfutils-devel/libdw-dev >= 0.158 and/or set LIBDW_DIR);
344 endif
345 endif
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200346 ifneq ($(feature-dwarf), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200347 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);
348 NO_DWARF := 1
349 endif # Dwarf support
Ingo Molnar0648f832013-10-02 15:30:35 +0200350 endif # libelf support
Jiri Olsacf4cca12013-03-25 00:45:08 +0100351endif # NO_LIBELF
352
353ifndef NO_LIBELF
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200354 CFLAGS += -DHAVE_LIBELF_SUPPORT
Jiri Olsa779724f2013-03-25 00:48:14 +0100355
Ingo Molnar8869b172013-09-30 15:02:28 +0200356 ifeq ($(feature-libelf-mmap), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200357 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
358 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100359
Ingo Molnarb7bcef62013-09-30 14:35:27 +0200360 ifeq ($(feature-libelf-getphdrnum), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200361 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
362 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100363
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200364 # include ARCH specific config
365 -include $(src-perf)/arch/$(ARCH)/Makefile
366
367 ifndef NO_DWARF
368 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
369 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
370 NO_DWARF := 1
371 else
372 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
373 LDFLAGS += $(LIBDW_LDFLAGS)
374 EXTLIBS += -lelf -ldw
375 endif # PERF_HAVE_DWARF_REGS
376 endif # NO_DWARF
Jiri Olsacf4cca12013-03-25 00:45:08 +0100377endif # NO_LIBELF
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100378
Anton Blanchard65ccb4f2014-08-25 18:25:06 +1000379ifeq ($(ARCH),powerpc)
380 ifndef NO_DWARF
381 CFLAGS += -DHAVE_SKIP_CALLCHAIN_IDX
382 endif
383endif
384
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100385ifndef NO_LIBUNWIND
Ingo Molnar058f9522013-09-30 14:45:44 +0200386 ifneq ($(feature-libunwind), 1)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100387 msg := $(warning No libunwind found. Please install libunwind-dev[el] >= 1.1 and/or set LIBUNWIND_DIR);
Ingo Molnar308e1e72013-10-07 10:30:47 +0200388 NO_LIBUNWIND := 1
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100389 endif
390endif
391
392dwarf-post-unwind := 1
393dwarf-post-unwind-text := BUG
394
395# setup DWARF post unwinder
396ifdef NO_LIBUNWIND
397 ifdef NO_LIBDW_DWARF_UNWIND
398 msg := $(warning Disabling post unwind, no support found.);
399 dwarf-post-unwind := 0
Linus Torvaldsf47671e2013-11-14 08:51:29 +0900400 else
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100401 dwarf-post-unwind-text := libdw
402 endif
403else
404 dwarf-post-unwind-text := libunwind
405 # Enable libunwind support by default.
406 ifndef NO_LIBDW_DWARF_UNWIND
407 NO_LIBDW_DWARF_UNWIND := 1
408 endif
409endif
410
411ifeq ($(dwarf-post-unwind),1)
412 CFLAGS += -DHAVE_DWARF_UNWIND_SUPPORT
413else
414 NO_DWARF_UNWIND := 1
415endif
416
417ifndef NO_LIBUNWIND
Jean Pihet8ab596a2014-04-28 14:32:33 +0200418 ifeq ($(ARCH),$(filter $(ARCH),arm arm64))
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100419 $(call feature_check,libunwind-debug-frame)
420 ifneq ($(feature-libunwind-debug-frame), 1)
421 msg := $(warning No debug_frame support found in libunwind);
Linus Torvaldsf47671e2013-11-14 08:51:29 +0900422 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
423 endif
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100424 else
425 # non-ARM has no dwarf_find_debug_frame() function:
426 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
427 endif
428 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
429 EXTLIBS += $(LIBUNWIND_LIBS)
430 CFLAGS += $(LIBUNWIND_CFLAGS)
431 LDFLAGS += $(LIBUNWIND_LDFLAGS)
Ingo Molnar058f9522013-09-30 14:45:44 +0200432endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100433
434ifndef NO_LIBAUDIT
Ingo Molnard795a652013-09-30 14:55:31 +0200435 ifneq ($(feature-libaudit), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200436 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
437 NO_LIBAUDIT := 1
438 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200439 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200440 EXTLIBS += -laudit
441 endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100442endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100443
444ifdef NO_NEWT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200445 NO_SLANG=1
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100446endif
447
448ifndef NO_SLANG
Ingo Molnarb9498b52013-09-30 14:57:54 +0200449 ifneq ($(feature-libslang), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200450 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
451 NO_SLANG := 1
452 else
453 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
454 CFLAGS += -I/usr/include/slang
Ingo Molnar89fe8082013-09-30 12:07:11 +0200455 CFLAGS += -DHAVE_SLANG_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200456 EXTLIBS += -lslang
457 endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100458endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100459
460ifndef NO_GTK2
Mark Rutlanda8a5cd82014-01-15 10:44:08 +0000461 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null)
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200462 ifneq ($(feature-gtk2), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200463 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
464 NO_GTK2 := 1
465 else
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200466 ifeq ($(feature-gtk2-infobar), 1)
Namhyung Kimfc672972013-09-13 15:27:43 +0900467 GTK_CFLAGS := -DHAVE_GTK_INFO_BAR_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200468 endif
Ingo Molnar89fe8082013-09-30 12:07:11 +0200469 CFLAGS += -DHAVE_GTK2_SUPPORT
Mark Rutlanda8a5cd82014-01-15 10:44:08 +0000470 GTK_CFLAGS += $(shell $(PKG_CONFIG) --cflags gtk+-2.0 2>/dev/null)
471 GTK_LIBS := $(shell $(PKG_CONFIG) --libs gtk+-2.0 2>/dev/null)
Jiri Olsae2137082013-09-26 20:55:54 +0200472 EXTLIBS += -ldl
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200473 endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100474endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100475
476grep-libs = $(filter -l%,$(1))
477strip-libs = $(filter-out -l%,$(1))
478
479ifdef NO_LIBPERL
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200480 CFLAGS += -DNO_LIBPERL
Jiri Olsa3082cb32013-03-18 00:19:44 +0100481else
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200482 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
483 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
484 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
485 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
486 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
Jiri Olsa3082cb32013-03-18 00:19:44 +0100487
Ingo Molnar7181a672013-09-30 15:15:36 +0200488 ifneq ($(feature-libperl), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200489 CFLAGS += -DNO_LIBPERL
490 NO_LIBPERL := 1
Arnaldo Carvalho de Melo6a2f2542014-05-26 16:02:30 -0300491 msg := $(warning Missing perl devel files. Disabling perl scripting support, consider installing perl-ExtUtils-Embed);
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200492 else
493 LDFLAGS += $(PERL_EMBED_LDFLAGS)
494 EXTLIBS += $(PERL_EMBED_LIBADD)
495 endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100496endif
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100497
David Ahern87419c92013-10-29 10:43:16 -0600498ifeq ($(feature-timerfd), 1)
499 CFLAGS += -DHAVE_TIMERFD_SUPPORT
500else
501 msg := $(warning No timerfd support. Disables 'perf kvm stat live');
502endif
503
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100504disable-python = $(eval $(disable-python_code))
505define disable-python_code
Jiri Olsa9c12cf92013-03-21 11:30:54 +0100506 CFLAGS += -DNO_LIBPYTHON
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100507 $(if $(1),$(warning No $(1) was found))
508 $(warning Python support will not be built)
509 NO_LIBPYTHON := 1
510endef
511
Namhyung Kim56c7d792014-07-29 15:57:19 +0900512ifdef NO_LIBPYTHON
513 $(call disable-python)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100514else
515
Namhyung Kim56c7d792014-07-29 15:57:19 +0900516 ifndef PYTHON
517 $(call disable-python,python interpreter)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100518 else
Namhyung Kim56c7d792014-07-29 15:57:19 +0900519 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100520
521 ifndef PYTHON_CONFIG
522 $(call disable-python,python-config tool)
523 else
524
525 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
526
527 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
528 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
529 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
530 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
531 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
532
Ingo Molnar97341632013-09-30 15:18:37 +0200533 ifneq ($(feature-libpython), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100534 $(call disable-python,Python.h (for Python 2.x))
535 else
536
Ingo Molnar95d061c2013-09-30 15:40:04 +0200537 ifneq ($(feature-libpython-version), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100538 $(warning Python 3 is not yet supported; please set)
539 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
540 $(warning If you also have Python 2 installed, then)
541 $(warning try something like:)
542 $(warning $(and ,))
543 $(warning $(and ,) make PYTHON=python2)
544 $(warning $(and ,))
545 $(warning Otherwise, disable Python support entirely:)
546 $(warning $(and ,))
547 $(warning $(and ,) make NO_LIBPYTHON=1)
548 $(warning $(and ,))
549 $(error $(and ,))
550 else
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100551 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100552 EXTLIBS += $(PYTHON_EMBED_LIBADD)
Jiri Olsa7c537462013-05-24 14:35:23 +0200553 LANG_BINDINGS += $(obj-perf)python/perf.so
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100554 endif
555 endif
556 endif
557 endif
558endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100559
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200560ifeq ($(feature-libbfd), 1)
Jiri Olsa2cf90402014-04-23 16:53:25 +0200561 EXTLIBS += -lbfd
562
563 # call all detections now so we get correct
564 # status in VF output
565 $(call feature_check,liberty)
566 $(call feature_check,liberty-z)
567 $(call feature_check,cplus-demangle)
568
569 ifeq ($(feature-liberty), 1)
570 EXTLIBS += -liberty
571 else
572 ifeq ($(feature-liberty-z), 1)
573 EXTLIBS += -liberty -lz
574 endif
575 endif
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200576endif
577
Jiri Olsac3cf8362013-03-18 00:38:16 +0100578ifdef NO_DEMANGLE
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200579 CFLAGS += -DNO_DEMANGLE
Jiri Olsac3cf8362013-03-18 00:38:16 +0100580else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200581 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200582 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200583 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200584 else
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200585 ifneq ($(feature-libbfd), 1)
Jiri Olsa2cf90402014-04-23 16:53:25 +0200586 ifneq ($(feature-liberty), 1)
587 ifneq ($(feature-liberty-z), 1)
588 # we dont have neither HAVE_CPLUS_DEMANGLE_SUPPORT
589 # or any of 'bfd iberty z' trinity
Ingo Molnar1c476612013-10-02 15:15:09 +0200590 ifeq ($(feature-cplus-demangle), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200591 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200592 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200593 else
594 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
595 CFLAGS += -DNO_DEMANGLE
596 endif
597 endif
598 endif
599 endif
600 endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100601endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100602
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200603ifneq ($(filter -lbfd,$(EXTLIBS)),)
604 CFLAGS += -DHAVE_LIBBFD_SUPPORT
605endif
606
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100607ifndef NO_BACKTRACE
Ingo Molnar4cc91172013-09-30 16:49:38 +0200608 ifeq ($(feature-backtrace), 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200609 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200610 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100611endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100612
613ifndef NO_LIBNUMA
Ingo Molnar3ae069c2013-09-30 13:37:10 +0200614 ifeq ($(feature-libnuma), 0)
Dongsheng Yang6305edf2013-12-02 10:26:48 -0500615 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 +0200616 NO_LIBNUMA := 1
617 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200618 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200619 EXTLIBS += -lnuma
620 endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100621endif
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100622
Alexander Yaryginda50ad62014-07-03 17:59:49 +0400623ifdef HAVE_KVM_STAT_SUPPORT
624 CFLAGS += -DHAVE_KVM_STAT_SUPPORT
625endif
626
Adrian Huntere477f3f2014-10-23 18:16:03 -0300627ifeq (${IS_64_BIT}, 1)
628 ifndef NO_PERF_READ_VDSO32
629 $(call feature_check,compile-32)
Adrian Hunter46b1fa82014-10-23 13:45:24 +0300630 ifeq ($(feature-compile-32), 1)
631 CFLAGS += -DHAVE_PERF_READ_VDSO32
632 else
Adrian Huntere477f3f2014-10-23 18:16:03 -0300633 NO_PERF_READ_VDSO32 := 1
634 endif
635 endif
636 ifneq (${IS_X86_64}, 1)
637 NO_PERF_READ_VDSOX32 := 1
638 endif
639 ifndef NO_PERF_READ_VDSOX32
640 $(call feature_check,compile-x32)
Adrian Hunter46b1fa82014-10-23 13:45:24 +0300641 ifeq ($(feature-compile-x32), 1)
642 CFLAGS += -DHAVE_PERF_READ_VDSOX32
643 else
Adrian Huntere477f3f2014-10-23 18:16:03 -0300644 NO_PERF_READ_VDSOX32 := 1
645 endif
646 endif
647else
648 NO_PERF_READ_VDSO32 := 1
649 NO_PERF_READ_VDSOX32 := 1
650endif
651
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100652# Among the variables below, these:
653# perfexecdir
654# template_dir
655# mandir
656# infodir
657# htmldir
658# ETC_PERFCONFIG (but not sysconfdir)
659# can be specified as a relative path some/where/else;
660# this is interpreted as relative to $(prefix) and "perf" at
661# runtime figures out where they are based on the path to the executable.
662# This can help installing the suite in a relocatable way.
663
664# Make the path relative to DESTDIR, not to prefix
665ifndef DESTDIR
Jianyu Zhanfc9cabe2014-06-03 00:44:34 +0800666prefix ?= $(HOME)
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100667endif
668bindir_relative = bin
669bindir = $(prefix)/$(bindir_relative)
670mandir = share/man
671infodir = share/info
672perfexecdir = libexec/perf-core
673sharedir = $(prefix)/share
674template_dir = share/perf-core/templates
675htmldir = share/doc/perf-doc
676ifeq ($(prefix),/usr)
677sysconfdir = /etc
678ETC_PERFCONFIG = $(sysconfdir)/perfconfig
679else
680sysconfdir = $(prefix)/etc
681ETC_PERFCONFIG = etc/perfconfig
682endif
Jiri Olsa6997af722014-08-25 16:55:52 +0200683ifndef lib
Namhyung Kimfc672972013-09-13 15:27:43 +0900684ifeq ($(IS_X86_64),1)
685lib = lib64
686else
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100687lib = lib
Namhyung Kimfc672972013-09-13 15:27:43 +0900688endif
Jiri Olsa6997af722014-08-25 16:55:52 +0200689endif # lib
Namhyung Kimfc672972013-09-13 15:27:43 +0900690libdir = $(prefix)/$(lib)
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100691
692# Shell quote (do not use $(call) to accommodate ancient setups);
693ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
694DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
695bindir_SQ = $(subst ','\'',$(bindir))
696mandir_SQ = $(subst ','\'',$(mandir))
697infodir_SQ = $(subst ','\'',$(infodir))
698perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
699template_dir_SQ = $(subst ','\'',$(template_dir))
700htmldir_SQ = $(subst ','\'',$(htmldir))
701prefix_SQ = $(subst ','\'',$(prefix))
702sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
Namhyung Kimfc672972013-09-13 15:27:43 +0900703libdir_SQ = $(subst ','\'',$(libdir))
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100704
705ifneq ($(filter /%,$(firstword $(perfexecdir))),)
706perfexec_instdir = $(perfexecdir)
707else
708perfexec_instdir = $(prefix)/$(perfexecdir)
709endif
710perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))
Jiri Olsa3d7c0142013-12-03 14:09:21 +0100711
712# If we install to $(HOME) we keep the traceevent default:
713# $(HOME)/.traceevent/plugins
714# Otherwise we install plugins into the global $(libdir).
715ifdef DESTDIR
716plugindir=$(libdir)/traceevent/plugins
Josh Boyerb935a582014-01-22 10:01:48 -0500717plugindir_SQ= $(subst ','\'',$(plugindir))
Jiri Olsa3d7c0142013-12-03 14:09:21 +0100718endif
Jiri Olsa0695e572014-02-19 16:52:54 +0100719
720#
721# Print the result of the feature test:
722#
Jiri Olsa8d790762014-02-19 16:52:55 +0100723feature_print_status = $(eval $(feature_print_status_code)) $(info $(MSG))
Jiri Olsa0695e572014-02-19 16:52:54 +0100724
Jiri Olsa8d790762014-02-19 16:52:55 +0100725define feature_print_status_code
Jiri Olsa0695e572014-02-19 16:52:54 +0100726 ifeq ($(feature-$(1)), 1)
727 MSG = $(shell printf '...%30s: [ \033[32mon\033[m ]' $(1))
728 else
729 MSG = $(shell printf '...%30s: [ \033[31mOFF\033[m ]' $(1))
730 endif
731endef
732
Jiri Olsa8d790762014-02-19 16:52:55 +0100733feature_print_var = $(eval $(feature_print_var_code)) $(info $(MSG))
734define feature_print_var_code
735 MSG = $(shell printf '...%30s: %s' $(1) $($(1)))
736endef
737
738feature_print_text = $(eval $(feature_print_text_code)) $(info $(MSG))
739define feature_print_text_code
740 MSG = $(shell printf '...%30s: %s' $(1) $(2))
741endef
742
Jiri Olsa0695e572014-02-19 16:52:54 +0100743PERF_FEATURES := $(foreach feat,$(LIB_FEATURE_TESTS),feature-$(feat)($(feature-$(feat))))
744PERF_FEATURES_FILE := $(shell touch $(OUTPUT)PERF-FEATURES; cat $(OUTPUT)PERF-FEATURES)
745
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100746ifeq ($(dwarf-post-unwind),1)
747 PERF_FEATURES += dwarf-post-unwind($(dwarf-post-unwind-text))
748endif
749
Jiri Olsa0695e572014-02-19 16:52:54 +0100750# The $(display_lib) controls the default detection message
751# output. It's set if:
752# - detected features differes from stored features from
753# last build (in PERF-FEATURES file)
754# - one of the $(LIB_FEATURE_TESTS) is not detected
755# - VF is enabled
756
757ifneq ("$(PERF_FEATURES)","$(PERF_FEATURES_FILE)")
758 $(shell echo "$(PERF_FEATURES)" > $(OUTPUT)PERF-FEATURES)
759 display_lib := 1
760endif
761
762feature_check = $(eval $(feature_check_code))
763define feature_check_code
764 ifneq ($(feature-$(1)), 1)
765 display_lib := 1
766 endif
767endef
768
769$(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_check,$(feat)))
770
771ifeq ($(VF),1)
772 display_lib := 1
773 display_vf := 1
774endif
775
776ifeq ($(display_lib),1)
777 $(info )
778 $(info Auto-detecting system features:)
Jiri Olsa8d790762014-02-19 16:52:55 +0100779 $(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_print_status,$(feat),))
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100780
781 ifeq ($(dwarf-post-unwind),1)
782 $(call feature_print_text,"DWARF post unwind library", $(dwarf-post-unwind-text))
783 endif
Jiri Olsa0695e572014-02-19 16:52:54 +0100784endif
785
786ifeq ($(display_vf),1)
Jiri Olsa8d790762014-02-19 16:52:55 +0100787 $(foreach feat,$(VF_FEATURE_TESTS),$(call feature_print_status,$(feat),))
788 $(info )
789 $(call feature_print_var,prefix)
790 $(call feature_print_var,bindir)
791 $(call feature_print_var,libdir)
792 $(call feature_print_var,sysconfdir)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100793 $(call feature_print_var,LIBUNWIND_DIR)
794 $(call feature_print_var,LIBDW_DIR)
Jiri Olsa0695e572014-02-19 16:52:54 +0100795endif
796
797ifeq ($(display_lib),1)
798 $(info )
799endif