blob: 75d4c237b03d00ffdb60c9ba62b82537f7b5099c [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
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -070051ifeq ($(ARCH),powerpc)
52 CFLAGS += -DHAVE_SKIP_CALLCHAIN_IDX
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
David Ahern6d199122013-09-22 19:44:57 -0600157EXTLIBS = -lelf -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 \
Ingo Molnarbb4c5502013-11-14 08:33:24 +0100205 stackprotector-all \
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100206 timerfd \
207 libdw-dwarf-unwind
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200208
Jiri Olsa0695e572014-02-19 16:52:54 +0100209LIB_FEATURE_TESTS = \
210 dwarf \
211 glibc \
212 gtk2 \
213 libaudit \
214 libbfd \
215 libelf \
216 libnuma \
217 libperl \
218 libpython \
219 libslang \
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100220 libunwind \
221 libdw-dwarf-unwind
Jiri Olsa0695e572014-02-19 16:52:54 +0100222
223VF_FEATURE_TESTS = \
224 backtrace \
225 fortify-source \
Adrian Hunterf6d31362014-07-14 13:02:53 +0300226 sync-compare-and-swap \
Jiri Olsa0695e572014-02-19 16:52:54 +0100227 gtk2-infobar \
228 libelf-getphdrnum \
229 libelf-mmap \
230 libpython-version \
Jiri Olsa0695e572014-02-19 16:52:54 +0100231 stackprotector-all \
232 timerfd \
233 libunwind-debug-frame \
Jiri Olsa2cf90402014-04-23 16:53:25 +0200234 bionic \
235 liberty \
236 liberty-z \
237 cplus-demangle
Jiri Olsa0695e572014-02-19 16:52:54 +0100238
Jiri Olsac4eb6c02014-01-07 13:47:18 +0100239# Set FEATURE_CHECK_(C|LD)FLAGS-all for all CORE_FEATURE_TESTS features.
240# If in the future we need per-feature checks/flags for features not
241# mentioned in this list we need to refactor this ;-).
242set_test_all_flags = $(eval $(set_test_all_flags_code))
243define set_test_all_flags_code
244 FEATURE_CHECK_CFLAGS-all += $(FEATURE_CHECK_CFLAGS-$(1))
245 FEATURE_CHECK_LDFLAGS-all += $(FEATURE_CHECK_LDFLAGS-$(1))
246endef
247
248$(foreach feat,$(CORE_FEATURE_TESTS),$(call set_test_all_flags,$(feat)))
249
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200250#
251# Special fast-path for the 'all features are available' case:
252#
Ingo Molnarb3b64a12013-10-02 10:01:42 +0200253$(call feature_check,all,$(MSG))
254
255#
256# Just in case the build freshly failed, make sure we print the
257# feature matrix:
258#
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200259ifeq ($(feature-all), 1)
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200260 #
261 # test-all.c passed - just set all the core feature flags to 1:
262 #
263 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_set,$(feat)))
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200264else
Chunwei Chen56560ec2013-12-21 13:48:11 +0800265 $(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 +0200266 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_check,$(feat)))
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200267endif
268
Ingo Molnar90ac5422013-09-30 13:48:44 +0200269ifeq ($(feature-stackprotector-all), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200270 CFLAGS += -fstack-protector-all
Jiri Olsa362493f2013-03-25 00:40:48 +0100271endif
272
Ingo Molnarfcf92582013-10-10 08:05:25 +0200273ifeq ($(DEBUG),0)
Ingo Molnar1ea6f992013-10-07 09:38:28 +0200274 ifeq ($(feature-fortify-source), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200275 CFLAGS += -D_FORTIFY_SOURCE=2
276 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100277endif
278
Jiri Olsa2fe73742013-04-15 04:32:28 +0200279CFLAGS += -I$(src-perf)/util/include
280CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
Namhyung Kim8a625c12014-01-09 23:00:52 +0900281CFLAGS += -I$(srctree)/tools/include/
Jiri Olsa2fe73742013-04-15 04:32:28 +0200282CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
283CFLAGS += -I$(srctree)/arch/$(ARCH)/include
284CFLAGS += -I$(srctree)/include/uapi
285CFLAGS += -I$(srctree)/include
Jiri Olsa7c537462013-05-24 14:35:23 +0200286
287# $(obj-perf) for generated common-cmds.h
288# $(obj-perf)/util for generated bison/flex headers
289ifneq ($(OUTPUT),)
Jiri Olsa2fe73742013-04-15 04:32:28 +0200290CFLAGS += -I$(obj-perf)/util
291CFLAGS += -I$(obj-perf)
Jiri Olsa7c537462013-05-24 14:35:23 +0200292endif
293
Jiri Olsa2fe73742013-04-15 04:32:28 +0200294CFLAGS += -I$(src-perf)/util
295CFLAGS += -I$(src-perf)
Robert Richter4e319022013-06-11 17:29:18 +0200296CFLAGS += -I$(LIB_INCLUDE)
Jiri Olsa7c537462013-05-24 14:35:23 +0200297
Jiri Olsa2fe73742013-04-15 04:32:28 +0200298CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
Jiri Olsa362493f2013-03-25 00:40:48 +0100299
Adrian Hunterf6d31362014-07-14 13:02:53 +0300300ifeq ($(feature-sync-compare-and-swap), 1)
301 CFLAGS += -DHAVE_SYNC_COMPARE_AND_SWAP_SUPPORT
302endif
303
Jiri Olsa4e22db42013-05-24 14:35:24 +0200304ifndef NO_BIONIC
David Ahern5febff02013-10-29 10:43:15 -0600305 $(call feature_check,bionic)
Ingo Molnar78e9d652013-09-30 14:11:46 +0200306 ifeq ($(feature-bionic), 1)
307 BIONIC := 1
308 EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
309 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
310 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100311endif
Jiri Olsacf4cca12013-03-25 00:45:08 +0100312
313ifdef NO_LIBELF
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200314 NO_DWARF := 1
315 NO_DEMANGLE := 1
316 NO_LIBUNWIND := 1
Jiri Olsa5ea84152014-02-19 16:52:57 +0100317 NO_LIBDW_DWARF_UNWIND := 1
Jiri Olsacf4cca12013-03-25 00:45:08 +0100318else
Ingo Molnar8f7f8002013-09-30 14:20:25 +0200319 ifeq ($(feature-libelf), 0)
Ingo Molnare12762c2013-10-07 10:34:20 +0200320 ifeq ($(feature-glibc), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200321 LIBC_SUPPORT := 1
322 endif
323 ifeq ($(BIONIC),1)
324 LIBC_SUPPORT := 1
325 endif
326 ifeq ($(LIBC_SUPPORT),1)
327 msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libelf-dev);
Jiri Olsacf4cca12013-03-25 00:45:08 +0100328
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200329 NO_LIBELF := 1
330 NO_DWARF := 1
331 NO_DEMANGLE := 1
Arnaldo Carvalho de Melo94589552014-03-25 09:35:11 -0300332 NO_LIBUNWIND := 1
333 NO_LIBDW_DWARF_UNWIND := 1
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200334 else
Arnaldo Carvalho de Melof9ca2d82014-06-05 12:46:04 -0300335 ifneq ($(filter s% -static%,$(LDFLAGS),),)
336 msg := $(error No static glibc found, please install glibc-static);
337 else
338 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]);
339 endif
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200340 endif
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200341 else
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100342 ifndef NO_LIBDW_DWARF_UNWIND
343 ifneq ($(feature-libdw-dwarf-unwind),1)
344 NO_LIBDW_DWARF_UNWIND := 1
345 msg := $(warning No libdw DWARF unwind found, Please install elfutils-devel/libdw-dev >= 0.158 and/or set LIBDW_DIR);
346 endif
347 endif
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200348 ifneq ($(feature-dwarf), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200349 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);
350 NO_DWARF := 1
351 endif # Dwarf support
Ingo Molnar0648f832013-10-02 15:30:35 +0200352 endif # libelf support
Jiri Olsacf4cca12013-03-25 00:45:08 +0100353endif # NO_LIBELF
354
355ifndef NO_LIBELF
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200356 CFLAGS += -DHAVE_LIBELF_SUPPORT
Jiri Olsa779724f2013-03-25 00:48:14 +0100357
Ingo Molnar8869b172013-09-30 15:02:28 +0200358 ifeq ($(feature-libelf-mmap), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200359 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
360 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100361
Ingo Molnarb7bcef62013-09-30 14:35:27 +0200362 ifeq ($(feature-libelf-getphdrnum), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200363 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
364 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100365
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200366 # include ARCH specific config
367 -include $(src-perf)/arch/$(ARCH)/Makefile
368
369 ifndef NO_DWARF
370 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
371 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
372 NO_DWARF := 1
373 else
374 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
375 LDFLAGS += $(LIBDW_LDFLAGS)
376 EXTLIBS += -lelf -ldw
377 endif # PERF_HAVE_DWARF_REGS
378 endif # NO_DWARF
Jiri Olsacf4cca12013-03-25 00:45:08 +0100379endif # NO_LIBELF
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100380
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100381ifndef NO_LIBUNWIND
Ingo Molnar058f9522013-09-30 14:45:44 +0200382 ifneq ($(feature-libunwind), 1)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100383 msg := $(warning No libunwind found. Please install libunwind-dev[el] >= 1.1 and/or set LIBUNWIND_DIR);
Ingo Molnar308e1e72013-10-07 10:30:47 +0200384 NO_LIBUNWIND := 1
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100385 endif
386endif
387
388dwarf-post-unwind := 1
389dwarf-post-unwind-text := BUG
390
391# setup DWARF post unwinder
392ifdef NO_LIBUNWIND
393 ifdef NO_LIBDW_DWARF_UNWIND
394 msg := $(warning Disabling post unwind, no support found.);
395 dwarf-post-unwind := 0
Linus Torvaldsf47671e2013-11-14 08:51:29 +0900396 else
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100397 dwarf-post-unwind-text := libdw
398 endif
399else
400 dwarf-post-unwind-text := libunwind
401 # Enable libunwind support by default.
402 ifndef NO_LIBDW_DWARF_UNWIND
403 NO_LIBDW_DWARF_UNWIND := 1
404 endif
405endif
406
407ifeq ($(dwarf-post-unwind),1)
408 CFLAGS += -DHAVE_DWARF_UNWIND_SUPPORT
409else
410 NO_DWARF_UNWIND := 1
411endif
412
413ifndef NO_LIBUNWIND
Jean Pihet8ab596a2014-04-28 14:32:33 +0200414 ifeq ($(ARCH),$(filter $(ARCH),arm arm64))
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100415 $(call feature_check,libunwind-debug-frame)
416 ifneq ($(feature-libunwind-debug-frame), 1)
417 msg := $(warning No debug_frame support found in libunwind);
Linus Torvaldsf47671e2013-11-14 08:51:29 +0900418 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
419 endif
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100420 else
421 # non-ARM has no dwarf_find_debug_frame() function:
422 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
423 endif
424 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
425 EXTLIBS += $(LIBUNWIND_LIBS)
426 CFLAGS += $(LIBUNWIND_CFLAGS)
427 LDFLAGS += $(LIBUNWIND_LDFLAGS)
Ingo Molnar058f9522013-09-30 14:45:44 +0200428endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100429
430ifndef NO_LIBAUDIT
Ingo Molnard795a652013-09-30 14:55:31 +0200431 ifneq ($(feature-libaudit), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200432 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
433 NO_LIBAUDIT := 1
434 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200435 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200436 EXTLIBS += -laudit
437 endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100438endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100439
440ifdef NO_NEWT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200441 NO_SLANG=1
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100442endif
443
444ifndef NO_SLANG
Ingo Molnarb9498b52013-09-30 14:57:54 +0200445 ifneq ($(feature-libslang), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200446 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
447 NO_SLANG := 1
448 else
449 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
450 CFLAGS += -I/usr/include/slang
Ingo Molnar89fe8082013-09-30 12:07:11 +0200451 CFLAGS += -DHAVE_SLANG_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200452 EXTLIBS += -lslang
453 endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100454endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100455
456ifndef NO_GTK2
Mark Rutlanda8a5cd82014-01-15 10:44:08 +0000457 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null)
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200458 ifneq ($(feature-gtk2), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200459 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
460 NO_GTK2 := 1
461 else
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200462 ifeq ($(feature-gtk2-infobar), 1)
Namhyung Kimfc672972013-09-13 15:27:43 +0900463 GTK_CFLAGS := -DHAVE_GTK_INFO_BAR_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200464 endif
Ingo Molnar89fe8082013-09-30 12:07:11 +0200465 CFLAGS += -DHAVE_GTK2_SUPPORT
Mark Rutlanda8a5cd82014-01-15 10:44:08 +0000466 GTK_CFLAGS += $(shell $(PKG_CONFIG) --cflags gtk+-2.0 2>/dev/null)
467 GTK_LIBS := $(shell $(PKG_CONFIG) --libs gtk+-2.0 2>/dev/null)
Jiri Olsae2137082013-09-26 20:55:54 +0200468 EXTLIBS += -ldl
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200469 endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100470endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100471
472grep-libs = $(filter -l%,$(1))
473strip-libs = $(filter-out -l%,$(1))
474
475ifdef NO_LIBPERL
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200476 CFLAGS += -DNO_LIBPERL
Jiri Olsa3082cb32013-03-18 00:19:44 +0100477else
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200478 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
479 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
480 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
481 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
482 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
Jiri Olsa3082cb32013-03-18 00:19:44 +0100483
Ingo Molnar7181a672013-09-30 15:15:36 +0200484 ifneq ($(feature-libperl), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200485 CFLAGS += -DNO_LIBPERL
486 NO_LIBPERL := 1
Arnaldo Carvalho de Melo6a2f2542014-05-26 16:02:30 -0300487 msg := $(warning Missing perl devel files. Disabling perl scripting support, consider installing perl-ExtUtils-Embed);
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200488 else
489 LDFLAGS += $(PERL_EMBED_LDFLAGS)
490 EXTLIBS += $(PERL_EMBED_LIBADD)
491 endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100492endif
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100493
David Ahern87419c92013-10-29 10:43:16 -0600494ifeq ($(feature-timerfd), 1)
495 CFLAGS += -DHAVE_TIMERFD_SUPPORT
496else
497 msg := $(warning No timerfd support. Disables 'perf kvm stat live');
498endif
499
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100500disable-python = $(eval $(disable-python_code))
501define disable-python_code
Jiri Olsa9c12cf92013-03-21 11:30:54 +0100502 CFLAGS += -DNO_LIBPYTHON
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100503 $(if $(1),$(warning No $(1) was found))
504 $(warning Python support will not be built)
505 NO_LIBPYTHON := 1
506endef
507
Namhyung Kim56c7d792014-07-29 15:57:19 +0900508ifdef NO_LIBPYTHON
509 $(call disable-python)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100510else
511
Namhyung Kim56c7d792014-07-29 15:57:19 +0900512 ifndef PYTHON
513 $(call disable-python,python interpreter)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100514 else
Namhyung Kim56c7d792014-07-29 15:57:19 +0900515 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100516
517 ifndef PYTHON_CONFIG
518 $(call disable-python,python-config tool)
519 else
520
521 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
522
523 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
524 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
525 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
526 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
527 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
528
Ingo Molnar97341632013-09-30 15:18:37 +0200529 ifneq ($(feature-libpython), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100530 $(call disable-python,Python.h (for Python 2.x))
531 else
532
Ingo Molnar95d061c2013-09-30 15:40:04 +0200533 ifneq ($(feature-libpython-version), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100534 $(warning Python 3 is not yet supported; please set)
535 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
536 $(warning If you also have Python 2 installed, then)
537 $(warning try something like:)
538 $(warning $(and ,))
539 $(warning $(and ,) make PYTHON=python2)
540 $(warning $(and ,))
541 $(warning Otherwise, disable Python support entirely:)
542 $(warning $(and ,))
543 $(warning $(and ,) make NO_LIBPYTHON=1)
544 $(warning $(and ,))
545 $(error $(and ,))
546 else
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100547 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100548 EXTLIBS += $(PYTHON_EMBED_LIBADD)
Jiri Olsa7c537462013-05-24 14:35:23 +0200549 LANG_BINDINGS += $(obj-perf)python/perf.so
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100550 endif
551 endif
552 endif
553 endif
554endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100555
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200556ifeq ($(feature-libbfd), 1)
Jiri Olsa2cf90402014-04-23 16:53:25 +0200557 EXTLIBS += -lbfd
558
559 # call all detections now so we get correct
560 # status in VF output
561 $(call feature_check,liberty)
562 $(call feature_check,liberty-z)
563 $(call feature_check,cplus-demangle)
564
565 ifeq ($(feature-liberty), 1)
566 EXTLIBS += -liberty
567 else
568 ifeq ($(feature-liberty-z), 1)
569 EXTLIBS += -liberty -lz
570 endif
571 endif
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200572endif
573
Jiri Olsac3cf8362013-03-18 00:38:16 +0100574ifdef NO_DEMANGLE
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200575 CFLAGS += -DNO_DEMANGLE
Jiri Olsac3cf8362013-03-18 00:38:16 +0100576else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200577 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200578 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200579 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200580 else
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200581 ifneq ($(feature-libbfd), 1)
Jiri Olsa2cf90402014-04-23 16:53:25 +0200582 ifneq ($(feature-liberty), 1)
583 ifneq ($(feature-liberty-z), 1)
584 # we dont have neither HAVE_CPLUS_DEMANGLE_SUPPORT
585 # or any of 'bfd iberty z' trinity
Ingo Molnar1c476612013-10-02 15:15:09 +0200586 ifeq ($(feature-cplus-demangle), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200587 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200588 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200589 else
590 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
591 CFLAGS += -DNO_DEMANGLE
592 endif
593 endif
594 endif
595 endif
596 endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100597endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100598
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200599ifneq ($(filter -lbfd,$(EXTLIBS)),)
600 CFLAGS += -DHAVE_LIBBFD_SUPPORT
601endif
602
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100603ifndef NO_BACKTRACE
Ingo Molnar4cc91172013-09-30 16:49:38 +0200604 ifeq ($(feature-backtrace), 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200605 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200606 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100607endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100608
609ifndef NO_LIBNUMA
Ingo Molnar3ae069c2013-09-30 13:37:10 +0200610 ifeq ($(feature-libnuma), 0)
Dongsheng Yang6305edf2013-12-02 10:26:48 -0500611 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 +0200612 NO_LIBNUMA := 1
613 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200614 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200615 EXTLIBS += -lnuma
616 endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100617endif
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100618
Alexander Yaryginda50ad62014-07-03 17:59:49 +0400619ifdef HAVE_KVM_STAT_SUPPORT
620 CFLAGS += -DHAVE_KVM_STAT_SUPPORT
621endif
622
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100623# Among the variables below, these:
624# perfexecdir
625# template_dir
626# mandir
627# infodir
628# htmldir
629# ETC_PERFCONFIG (but not sysconfdir)
630# can be specified as a relative path some/where/else;
631# this is interpreted as relative to $(prefix) and "perf" at
632# runtime figures out where they are based on the path to the executable.
633# This can help installing the suite in a relocatable way.
634
635# Make the path relative to DESTDIR, not to prefix
636ifndef DESTDIR
Jianyu Zhanfc9cabe2014-06-03 00:44:34 +0800637prefix ?= $(HOME)
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100638endif
639bindir_relative = bin
640bindir = $(prefix)/$(bindir_relative)
641mandir = share/man
642infodir = share/info
643perfexecdir = libexec/perf-core
644sharedir = $(prefix)/share
645template_dir = share/perf-core/templates
646htmldir = share/doc/perf-doc
647ifeq ($(prefix),/usr)
648sysconfdir = /etc
649ETC_PERFCONFIG = $(sysconfdir)/perfconfig
650else
651sysconfdir = $(prefix)/etc
652ETC_PERFCONFIG = etc/perfconfig
653endif
Namhyung Kimfc672972013-09-13 15:27:43 +0900654ifeq ($(IS_X86_64),1)
655lib = lib64
656else
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100657lib = lib
Namhyung Kimfc672972013-09-13 15:27:43 +0900658endif
659libdir = $(prefix)/$(lib)
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100660
661# Shell quote (do not use $(call) to accommodate ancient setups);
662ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
663DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
664bindir_SQ = $(subst ','\'',$(bindir))
665mandir_SQ = $(subst ','\'',$(mandir))
666infodir_SQ = $(subst ','\'',$(infodir))
667perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
668template_dir_SQ = $(subst ','\'',$(template_dir))
669htmldir_SQ = $(subst ','\'',$(htmldir))
670prefix_SQ = $(subst ','\'',$(prefix))
671sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
Namhyung Kimfc672972013-09-13 15:27:43 +0900672libdir_SQ = $(subst ','\'',$(libdir))
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100673
674ifneq ($(filter /%,$(firstword $(perfexecdir))),)
675perfexec_instdir = $(perfexecdir)
676else
677perfexec_instdir = $(prefix)/$(perfexecdir)
678endif
679perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))
Jiri Olsa3d7c0142013-12-03 14:09:21 +0100680
681# If we install to $(HOME) we keep the traceevent default:
682# $(HOME)/.traceevent/plugins
683# Otherwise we install plugins into the global $(libdir).
684ifdef DESTDIR
685plugindir=$(libdir)/traceevent/plugins
Josh Boyerb935a582014-01-22 10:01:48 -0500686plugindir_SQ= $(subst ','\'',$(plugindir))
Jiri Olsa3d7c0142013-12-03 14:09:21 +0100687endif
Jiri Olsa0695e572014-02-19 16:52:54 +0100688
689#
690# Print the result of the feature test:
691#
Jiri Olsa8d790762014-02-19 16:52:55 +0100692feature_print_status = $(eval $(feature_print_status_code)) $(info $(MSG))
Jiri Olsa0695e572014-02-19 16:52:54 +0100693
Jiri Olsa8d790762014-02-19 16:52:55 +0100694define feature_print_status_code
Jiri Olsa0695e572014-02-19 16:52:54 +0100695 ifeq ($(feature-$(1)), 1)
696 MSG = $(shell printf '...%30s: [ \033[32mon\033[m ]' $(1))
697 else
698 MSG = $(shell printf '...%30s: [ \033[31mOFF\033[m ]' $(1))
699 endif
700endef
701
Jiri Olsa8d790762014-02-19 16:52:55 +0100702feature_print_var = $(eval $(feature_print_var_code)) $(info $(MSG))
703define feature_print_var_code
704 MSG = $(shell printf '...%30s: %s' $(1) $($(1)))
705endef
706
707feature_print_text = $(eval $(feature_print_text_code)) $(info $(MSG))
708define feature_print_text_code
709 MSG = $(shell printf '...%30s: %s' $(1) $(2))
710endef
711
Jiri Olsa0695e572014-02-19 16:52:54 +0100712PERF_FEATURES := $(foreach feat,$(LIB_FEATURE_TESTS),feature-$(feat)($(feature-$(feat))))
713PERF_FEATURES_FILE := $(shell touch $(OUTPUT)PERF-FEATURES; cat $(OUTPUT)PERF-FEATURES)
714
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100715ifeq ($(dwarf-post-unwind),1)
716 PERF_FEATURES += dwarf-post-unwind($(dwarf-post-unwind-text))
717endif
718
Jiri Olsa0695e572014-02-19 16:52:54 +0100719# The $(display_lib) controls the default detection message
720# output. It's set if:
721# - detected features differes from stored features from
722# last build (in PERF-FEATURES file)
723# - one of the $(LIB_FEATURE_TESTS) is not detected
724# - VF is enabled
725
726ifneq ("$(PERF_FEATURES)","$(PERF_FEATURES_FILE)")
727 $(shell echo "$(PERF_FEATURES)" > $(OUTPUT)PERF-FEATURES)
728 display_lib := 1
729endif
730
731feature_check = $(eval $(feature_check_code))
732define feature_check_code
733 ifneq ($(feature-$(1)), 1)
734 display_lib := 1
735 endif
736endef
737
738$(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_check,$(feat)))
739
740ifeq ($(VF),1)
741 display_lib := 1
742 display_vf := 1
743endif
744
745ifeq ($(display_lib),1)
746 $(info )
747 $(info Auto-detecting system features:)
Jiri Olsa8d790762014-02-19 16:52:55 +0100748 $(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_print_status,$(feat),))
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100749
750 ifeq ($(dwarf-post-unwind),1)
751 $(call feature_print_text,"DWARF post unwind library", $(dwarf-post-unwind-text))
752 endif
Jiri Olsa0695e572014-02-19 16:52:54 +0100753endif
754
755ifeq ($(display_vf),1)
Jiri Olsa8d790762014-02-19 16:52:55 +0100756 $(foreach feat,$(VF_FEATURE_TESTS),$(call feature_print_status,$(feat),))
757 $(info )
758 $(call feature_print_var,prefix)
759 $(call feature_print_var,bindir)
760 $(call feature_print_var,libdir)
761 $(call feature_print_var,sysconfdir)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100762 $(call feature_print_var,LIBUNWIND_DIR)
763 $(call feature_print_var,LIBDW_DIR)
Jiri Olsa0695e572014-02-19 16:52:54 +0100764endif
765
766ifeq ($(display_lib),1)
767 $(info )
768endif