blob: 58f609198c6dcce0c7af6082d62c7254c29e5179 [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 \
233 cplus-demangle
Jiri Olsa0695e572014-02-19 16:52:54 +0100234
Jiri Olsac4eb6c02014-01-07 13:47:18 +0100235# Set FEATURE_CHECK_(C|LD)FLAGS-all for all CORE_FEATURE_TESTS features.
236# If in the future we need per-feature checks/flags for features not
237# mentioned in this list we need to refactor this ;-).
238set_test_all_flags = $(eval $(set_test_all_flags_code))
239define set_test_all_flags_code
240 FEATURE_CHECK_CFLAGS-all += $(FEATURE_CHECK_CFLAGS-$(1))
241 FEATURE_CHECK_LDFLAGS-all += $(FEATURE_CHECK_LDFLAGS-$(1))
242endef
243
244$(foreach feat,$(CORE_FEATURE_TESTS),$(call set_test_all_flags,$(feat)))
245
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200246#
247# Special fast-path for the 'all features are available' case:
248#
Ingo Molnarb3b64a12013-10-02 10:01:42 +0200249$(call feature_check,all,$(MSG))
250
251#
252# Just in case the build freshly failed, make sure we print the
253# feature matrix:
254#
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200255ifeq ($(feature-all), 1)
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200256 #
257 # test-all.c passed - just set all the core feature flags to 1:
258 #
259 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_set,$(feat)))
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200260else
Chunwei Chen56560ec2013-12-21 13:48:11 +0800261 $(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 +0200262 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_check,$(feat)))
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200263endif
264
Ingo Molnar90ac5422013-09-30 13:48:44 +0200265ifeq ($(feature-stackprotector-all), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200266 CFLAGS += -fstack-protector-all
Jiri Olsa362493f2013-03-25 00:40:48 +0100267endif
268
Ingo Molnarfcf92582013-10-10 08:05:25 +0200269ifeq ($(DEBUG),0)
Ingo Molnar1ea6f992013-10-07 09:38:28 +0200270 ifeq ($(feature-fortify-source), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200271 CFLAGS += -D_FORTIFY_SOURCE=2
272 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100273endif
274
Jiri Olsa2fe73742013-04-15 04:32:28 +0200275CFLAGS += -I$(src-perf)/util/include
276CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
Namhyung Kim8a625c12014-01-09 23:00:52 +0900277CFLAGS += -I$(srctree)/tools/include/
Jiri Olsa2fe73742013-04-15 04:32:28 +0200278CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
279CFLAGS += -I$(srctree)/arch/$(ARCH)/include
280CFLAGS += -I$(srctree)/include/uapi
281CFLAGS += -I$(srctree)/include
Jiri Olsa7c537462013-05-24 14:35:23 +0200282
283# $(obj-perf) for generated common-cmds.h
284# $(obj-perf)/util for generated bison/flex headers
285ifneq ($(OUTPUT),)
Jiri Olsa2fe73742013-04-15 04:32:28 +0200286CFLAGS += -I$(obj-perf)/util
287CFLAGS += -I$(obj-perf)
Jiri Olsa7c537462013-05-24 14:35:23 +0200288endif
289
Jiri Olsa2fe73742013-04-15 04:32:28 +0200290CFLAGS += -I$(src-perf)/util
291CFLAGS += -I$(src-perf)
Robert Richter4e319022013-06-11 17:29:18 +0200292CFLAGS += -I$(LIB_INCLUDE)
Jiri Olsa7c537462013-05-24 14:35:23 +0200293
Jiri Olsa2fe73742013-04-15 04:32:28 +0200294CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
Jiri Olsa362493f2013-03-25 00:40:48 +0100295
Adrian Hunterf6d31362014-07-14 13:02:53 +0300296ifeq ($(feature-sync-compare-and-swap), 1)
297 CFLAGS += -DHAVE_SYNC_COMPARE_AND_SWAP_SUPPORT
298endif
299
Jiri Olsa4e22db42013-05-24 14:35:24 +0200300ifndef NO_BIONIC
David Ahern5febff02013-10-29 10:43:15 -0600301 $(call feature_check,bionic)
Ingo Molnar78e9d652013-09-30 14:11:46 +0200302 ifeq ($(feature-bionic), 1)
303 BIONIC := 1
304 EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
305 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
306 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100307endif
Jiri Olsacf4cca12013-03-25 00:45:08 +0100308
309ifdef NO_LIBELF
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200310 NO_DWARF := 1
311 NO_DEMANGLE := 1
312 NO_LIBUNWIND := 1
Jiri Olsa5ea84152014-02-19 16:52:57 +0100313 NO_LIBDW_DWARF_UNWIND := 1
Jiri Olsacf4cca12013-03-25 00:45:08 +0100314else
Ingo Molnar8f7f8002013-09-30 14:20:25 +0200315 ifeq ($(feature-libelf), 0)
Ingo Molnare12762c2013-10-07 10:34:20 +0200316 ifeq ($(feature-glibc), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200317 LIBC_SUPPORT := 1
318 endif
319 ifeq ($(BIONIC),1)
320 LIBC_SUPPORT := 1
321 endif
322 ifeq ($(LIBC_SUPPORT),1)
323 msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libelf-dev);
Jiri Olsacf4cca12013-03-25 00:45:08 +0100324
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200325 NO_LIBELF := 1
326 NO_DWARF := 1
327 NO_DEMANGLE := 1
Arnaldo Carvalho de Melo94589552014-03-25 09:35:11 -0300328 NO_LIBUNWIND := 1
329 NO_LIBDW_DWARF_UNWIND := 1
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200330 else
Arnaldo Carvalho de Melof9ca2d82014-06-05 12:46:04 -0300331 ifneq ($(filter s% -static%,$(LDFLAGS),),)
332 msg := $(error No static glibc found, please install glibc-static);
333 else
334 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]);
335 endif
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200336 endif
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200337 else
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100338 ifndef NO_LIBDW_DWARF_UNWIND
339 ifneq ($(feature-libdw-dwarf-unwind),1)
340 NO_LIBDW_DWARF_UNWIND := 1
341 msg := $(warning No libdw DWARF unwind found, Please install elfutils-devel/libdw-dev >= 0.158 and/or set LIBDW_DIR);
342 endif
343 endif
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200344 ifneq ($(feature-dwarf), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200345 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);
346 NO_DWARF := 1
347 endif # Dwarf support
Ingo Molnar0648f832013-10-02 15:30:35 +0200348 endif # libelf support
Jiri Olsacf4cca12013-03-25 00:45:08 +0100349endif # NO_LIBELF
350
351ifndef NO_LIBELF
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200352 CFLAGS += -DHAVE_LIBELF_SUPPORT
Jiri Olsa779724f2013-03-25 00:48:14 +0100353
Ingo Molnar8869b172013-09-30 15:02:28 +0200354 ifeq ($(feature-libelf-mmap), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200355 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
356 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100357
Ingo Molnarb7bcef62013-09-30 14:35:27 +0200358 ifeq ($(feature-libelf-getphdrnum), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200359 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
360 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100361
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200362 # include ARCH specific config
363 -include $(src-perf)/arch/$(ARCH)/Makefile
364
365 ifndef NO_DWARF
366 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
367 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
368 NO_DWARF := 1
369 else
370 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
371 LDFLAGS += $(LIBDW_LDFLAGS)
372 EXTLIBS += -lelf -ldw
373 endif # PERF_HAVE_DWARF_REGS
374 endif # NO_DWARF
Jiri Olsacf4cca12013-03-25 00:45:08 +0100375endif # NO_LIBELF
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100376
Anton Blanchard65ccb4f2014-08-25 18:25:06 +1000377ifeq ($(ARCH),powerpc)
378 ifndef NO_DWARF
379 CFLAGS += -DHAVE_SKIP_CALLCHAIN_IDX
380 endif
381endif
382
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100383ifndef NO_LIBUNWIND
Ingo Molnar058f9522013-09-30 14:45:44 +0200384 ifneq ($(feature-libunwind), 1)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100385 msg := $(warning No libunwind found. Please install libunwind-dev[el] >= 1.1 and/or set LIBUNWIND_DIR);
Ingo Molnar308e1e72013-10-07 10:30:47 +0200386 NO_LIBUNWIND := 1
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100387 endif
388endif
389
390dwarf-post-unwind := 1
391dwarf-post-unwind-text := BUG
392
393# setup DWARF post unwinder
394ifdef NO_LIBUNWIND
395 ifdef NO_LIBDW_DWARF_UNWIND
396 msg := $(warning Disabling post unwind, no support found.);
397 dwarf-post-unwind := 0
Linus Torvaldsf47671e2013-11-14 08:51:29 +0900398 else
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100399 dwarf-post-unwind-text := libdw
400 endif
401else
402 dwarf-post-unwind-text := libunwind
403 # Enable libunwind support by default.
404 ifndef NO_LIBDW_DWARF_UNWIND
405 NO_LIBDW_DWARF_UNWIND := 1
406 endif
407endif
408
409ifeq ($(dwarf-post-unwind),1)
410 CFLAGS += -DHAVE_DWARF_UNWIND_SUPPORT
411else
412 NO_DWARF_UNWIND := 1
413endif
414
415ifndef NO_LIBUNWIND
Jean Pihet8ab596a2014-04-28 14:32:33 +0200416 ifeq ($(ARCH),$(filter $(ARCH),arm arm64))
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100417 $(call feature_check,libunwind-debug-frame)
418 ifneq ($(feature-libunwind-debug-frame), 1)
419 msg := $(warning No debug_frame support found in libunwind);
Linus Torvaldsf47671e2013-11-14 08:51:29 +0900420 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
421 endif
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100422 else
423 # non-ARM has no dwarf_find_debug_frame() function:
424 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
425 endif
426 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
427 EXTLIBS += $(LIBUNWIND_LIBS)
428 CFLAGS += $(LIBUNWIND_CFLAGS)
429 LDFLAGS += $(LIBUNWIND_LDFLAGS)
Ingo Molnar058f9522013-09-30 14:45:44 +0200430endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100431
432ifndef NO_LIBAUDIT
Ingo Molnard795a652013-09-30 14:55:31 +0200433 ifneq ($(feature-libaudit), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200434 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
435 NO_LIBAUDIT := 1
436 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200437 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200438 EXTLIBS += -laudit
439 endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100440endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100441
442ifdef NO_NEWT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200443 NO_SLANG=1
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100444endif
445
446ifndef NO_SLANG
Ingo Molnarb9498b52013-09-30 14:57:54 +0200447 ifneq ($(feature-libslang), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200448 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
449 NO_SLANG := 1
450 else
451 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
452 CFLAGS += -I/usr/include/slang
Ingo Molnar89fe8082013-09-30 12:07:11 +0200453 CFLAGS += -DHAVE_SLANG_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200454 EXTLIBS += -lslang
455 endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100456endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100457
458ifndef NO_GTK2
Mark Rutlanda8a5cd82014-01-15 10:44:08 +0000459 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null)
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200460 ifneq ($(feature-gtk2), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200461 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
462 NO_GTK2 := 1
463 else
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200464 ifeq ($(feature-gtk2-infobar), 1)
Namhyung Kimfc672972013-09-13 15:27:43 +0900465 GTK_CFLAGS := -DHAVE_GTK_INFO_BAR_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200466 endif
Ingo Molnar89fe8082013-09-30 12:07:11 +0200467 CFLAGS += -DHAVE_GTK2_SUPPORT
Mark Rutlanda8a5cd82014-01-15 10:44:08 +0000468 GTK_CFLAGS += $(shell $(PKG_CONFIG) --cflags gtk+-2.0 2>/dev/null)
469 GTK_LIBS := $(shell $(PKG_CONFIG) --libs gtk+-2.0 2>/dev/null)
Jiri Olsae2137082013-09-26 20:55:54 +0200470 EXTLIBS += -ldl
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200471 endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100472endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100473
474grep-libs = $(filter -l%,$(1))
475strip-libs = $(filter-out -l%,$(1))
476
477ifdef NO_LIBPERL
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200478 CFLAGS += -DNO_LIBPERL
Jiri Olsa3082cb32013-03-18 00:19:44 +0100479else
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200480 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
481 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
482 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
483 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
484 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
Jiri Olsa3082cb32013-03-18 00:19:44 +0100485
Ingo Molnar7181a672013-09-30 15:15:36 +0200486 ifneq ($(feature-libperl), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200487 CFLAGS += -DNO_LIBPERL
488 NO_LIBPERL := 1
Arnaldo Carvalho de Melo6a2f2542014-05-26 16:02:30 -0300489 msg := $(warning Missing perl devel files. Disabling perl scripting support, consider installing perl-ExtUtils-Embed);
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200490 else
491 LDFLAGS += $(PERL_EMBED_LDFLAGS)
492 EXTLIBS += $(PERL_EMBED_LIBADD)
493 endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100494endif
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100495
David Ahern87419c92013-10-29 10:43:16 -0600496ifeq ($(feature-timerfd), 1)
497 CFLAGS += -DHAVE_TIMERFD_SUPPORT
498else
499 msg := $(warning No timerfd support. Disables 'perf kvm stat live');
500endif
501
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100502disable-python = $(eval $(disable-python_code))
503define disable-python_code
Jiri Olsa9c12cf92013-03-21 11:30:54 +0100504 CFLAGS += -DNO_LIBPYTHON
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100505 $(if $(1),$(warning No $(1) was found))
506 $(warning Python support will not be built)
507 NO_LIBPYTHON := 1
508endef
509
Namhyung Kim56c7d792014-07-29 15:57:19 +0900510ifdef NO_LIBPYTHON
511 $(call disable-python)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100512else
513
Namhyung Kim56c7d792014-07-29 15:57:19 +0900514 ifndef PYTHON
515 $(call disable-python,python interpreter)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100516 else
Namhyung Kim56c7d792014-07-29 15:57:19 +0900517 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100518
519 ifndef PYTHON_CONFIG
520 $(call disable-python,python-config tool)
521 else
522
523 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
524
525 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
526 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
527 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
528 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
529 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
530
Ingo Molnar97341632013-09-30 15:18:37 +0200531 ifneq ($(feature-libpython), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100532 $(call disable-python,Python.h (for Python 2.x))
533 else
534
Ingo Molnar95d061c2013-09-30 15:40:04 +0200535 ifneq ($(feature-libpython-version), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100536 $(warning Python 3 is not yet supported; please set)
537 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
538 $(warning If you also have Python 2 installed, then)
539 $(warning try something like:)
540 $(warning $(and ,))
541 $(warning $(and ,) make PYTHON=python2)
542 $(warning $(and ,))
543 $(warning Otherwise, disable Python support entirely:)
544 $(warning $(and ,))
545 $(warning $(and ,) make NO_LIBPYTHON=1)
546 $(warning $(and ,))
547 $(error $(and ,))
548 else
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100549 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100550 EXTLIBS += $(PYTHON_EMBED_LIBADD)
Jiri Olsa7c537462013-05-24 14:35:23 +0200551 LANG_BINDINGS += $(obj-perf)python/perf.so
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100552 endif
553 endif
554 endif
555 endif
556endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100557
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200558ifeq ($(feature-libbfd), 1)
Jiri Olsa2cf90402014-04-23 16:53:25 +0200559 EXTLIBS += -lbfd
560
561 # call all detections now so we get correct
562 # status in VF output
563 $(call feature_check,liberty)
564 $(call feature_check,liberty-z)
565 $(call feature_check,cplus-demangle)
566
567 ifeq ($(feature-liberty), 1)
568 EXTLIBS += -liberty
569 else
570 ifeq ($(feature-liberty-z), 1)
571 EXTLIBS += -liberty -lz
572 endif
573 endif
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200574endif
575
Jiri Olsac3cf8362013-03-18 00:38:16 +0100576ifdef NO_DEMANGLE
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200577 CFLAGS += -DNO_DEMANGLE
Jiri Olsac3cf8362013-03-18 00:38:16 +0100578else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200579 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200580 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200581 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200582 else
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200583 ifneq ($(feature-libbfd), 1)
Jiri Olsa2cf90402014-04-23 16:53:25 +0200584 ifneq ($(feature-liberty), 1)
585 ifneq ($(feature-liberty-z), 1)
586 # we dont have neither HAVE_CPLUS_DEMANGLE_SUPPORT
587 # or any of 'bfd iberty z' trinity
Ingo Molnar1c476612013-10-02 15:15:09 +0200588 ifeq ($(feature-cplus-demangle), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200589 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200590 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200591 else
592 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
593 CFLAGS += -DNO_DEMANGLE
594 endif
595 endif
596 endif
597 endif
598 endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100599endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100600
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200601ifneq ($(filter -lbfd,$(EXTLIBS)),)
602 CFLAGS += -DHAVE_LIBBFD_SUPPORT
603endif
604
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100605ifndef NO_BACKTRACE
Ingo Molnar4cc91172013-09-30 16:49:38 +0200606 ifeq ($(feature-backtrace), 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200607 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200608 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100609endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100610
611ifndef NO_LIBNUMA
Ingo Molnar3ae069c2013-09-30 13:37:10 +0200612 ifeq ($(feature-libnuma), 0)
Dongsheng Yang6305edf2013-12-02 10:26:48 -0500613 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 +0200614 NO_LIBNUMA := 1
615 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200616 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200617 EXTLIBS += -lnuma
618 endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100619endif
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100620
Alexander Yaryginda50ad62014-07-03 17:59:49 +0400621ifdef HAVE_KVM_STAT_SUPPORT
622 CFLAGS += -DHAVE_KVM_STAT_SUPPORT
623endif
624
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100625# Among the variables below, these:
626# perfexecdir
627# template_dir
628# mandir
629# infodir
630# htmldir
631# ETC_PERFCONFIG (but not sysconfdir)
632# can be specified as a relative path some/where/else;
633# this is interpreted as relative to $(prefix) and "perf" at
634# runtime figures out where they are based on the path to the executable.
635# This can help installing the suite in a relocatable way.
636
637# Make the path relative to DESTDIR, not to prefix
638ifndef DESTDIR
Jianyu Zhanfc9cabe2014-06-03 00:44:34 +0800639prefix ?= $(HOME)
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100640endif
641bindir_relative = bin
642bindir = $(prefix)/$(bindir_relative)
643mandir = share/man
644infodir = share/info
645perfexecdir = libexec/perf-core
646sharedir = $(prefix)/share
647template_dir = share/perf-core/templates
648htmldir = share/doc/perf-doc
649ifeq ($(prefix),/usr)
650sysconfdir = /etc
651ETC_PERFCONFIG = $(sysconfdir)/perfconfig
652else
653sysconfdir = $(prefix)/etc
654ETC_PERFCONFIG = etc/perfconfig
655endif
Jiri Olsa6997af722014-08-25 16:55:52 +0200656ifndef lib
Namhyung Kimfc672972013-09-13 15:27:43 +0900657ifeq ($(IS_X86_64),1)
658lib = lib64
659else
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100660lib = lib
Namhyung Kimfc672972013-09-13 15:27:43 +0900661endif
Jiri Olsa6997af722014-08-25 16:55:52 +0200662endif # lib
Namhyung Kimfc672972013-09-13 15:27:43 +0900663libdir = $(prefix)/$(lib)
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100664
665# Shell quote (do not use $(call) to accommodate ancient setups);
666ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
667DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
668bindir_SQ = $(subst ','\'',$(bindir))
669mandir_SQ = $(subst ','\'',$(mandir))
670infodir_SQ = $(subst ','\'',$(infodir))
671perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
672template_dir_SQ = $(subst ','\'',$(template_dir))
673htmldir_SQ = $(subst ','\'',$(htmldir))
674prefix_SQ = $(subst ','\'',$(prefix))
675sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
Namhyung Kimfc672972013-09-13 15:27:43 +0900676libdir_SQ = $(subst ','\'',$(libdir))
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100677
678ifneq ($(filter /%,$(firstword $(perfexecdir))),)
679perfexec_instdir = $(perfexecdir)
680else
681perfexec_instdir = $(prefix)/$(perfexecdir)
682endif
683perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))
Jiri Olsa3d7c0142013-12-03 14:09:21 +0100684
685# If we install to $(HOME) we keep the traceevent default:
686# $(HOME)/.traceevent/plugins
687# Otherwise we install plugins into the global $(libdir).
688ifdef DESTDIR
689plugindir=$(libdir)/traceevent/plugins
Josh Boyerb935a582014-01-22 10:01:48 -0500690plugindir_SQ= $(subst ','\'',$(plugindir))
Jiri Olsa3d7c0142013-12-03 14:09:21 +0100691endif
Jiri Olsa0695e572014-02-19 16:52:54 +0100692
693#
694# Print the result of the feature test:
695#
Jiri Olsa8d790762014-02-19 16:52:55 +0100696feature_print_status = $(eval $(feature_print_status_code)) $(info $(MSG))
Jiri Olsa0695e572014-02-19 16:52:54 +0100697
Jiri Olsa8d790762014-02-19 16:52:55 +0100698define feature_print_status_code
Jiri Olsa0695e572014-02-19 16:52:54 +0100699 ifeq ($(feature-$(1)), 1)
700 MSG = $(shell printf '...%30s: [ \033[32mon\033[m ]' $(1))
701 else
702 MSG = $(shell printf '...%30s: [ \033[31mOFF\033[m ]' $(1))
703 endif
704endef
705
Jiri Olsa8d790762014-02-19 16:52:55 +0100706feature_print_var = $(eval $(feature_print_var_code)) $(info $(MSG))
707define feature_print_var_code
708 MSG = $(shell printf '...%30s: %s' $(1) $($(1)))
709endef
710
711feature_print_text = $(eval $(feature_print_text_code)) $(info $(MSG))
712define feature_print_text_code
713 MSG = $(shell printf '...%30s: %s' $(1) $(2))
714endef
715
Jiri Olsa0695e572014-02-19 16:52:54 +0100716PERF_FEATURES := $(foreach feat,$(LIB_FEATURE_TESTS),feature-$(feat)($(feature-$(feat))))
717PERF_FEATURES_FILE := $(shell touch $(OUTPUT)PERF-FEATURES; cat $(OUTPUT)PERF-FEATURES)
718
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100719ifeq ($(dwarf-post-unwind),1)
720 PERF_FEATURES += dwarf-post-unwind($(dwarf-post-unwind-text))
721endif
722
Jiri Olsa0695e572014-02-19 16:52:54 +0100723# The $(display_lib) controls the default detection message
724# output. It's set if:
725# - detected features differes from stored features from
726# last build (in PERF-FEATURES file)
727# - one of the $(LIB_FEATURE_TESTS) is not detected
728# - VF is enabled
729
730ifneq ("$(PERF_FEATURES)","$(PERF_FEATURES_FILE)")
731 $(shell echo "$(PERF_FEATURES)" > $(OUTPUT)PERF-FEATURES)
732 display_lib := 1
733endif
734
735feature_check = $(eval $(feature_check_code))
736define feature_check_code
737 ifneq ($(feature-$(1)), 1)
738 display_lib := 1
739 endif
740endef
741
742$(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_check,$(feat)))
743
744ifeq ($(VF),1)
745 display_lib := 1
746 display_vf := 1
747endif
748
749ifeq ($(display_lib),1)
750 $(info )
751 $(info Auto-detecting system features:)
Jiri Olsa8d790762014-02-19 16:52:55 +0100752 $(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_print_status,$(feat),))
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100753
754 ifeq ($(dwarf-post-unwind),1)
755 $(call feature_print_text,"DWARF post unwind library", $(dwarf-post-unwind-text))
756 endif
Jiri Olsa0695e572014-02-19 16:52:54 +0100757endif
758
759ifeq ($(display_vf),1)
Jiri Olsa8d790762014-02-19 16:52:55 +0100760 $(foreach feat,$(VF_FEATURE_TESTS),$(call feature_print_status,$(feat),))
761 $(info )
762 $(call feature_print_var,prefix)
763 $(call feature_print_var,bindir)
764 $(call feature_print_var,libdir)
765 $(call feature_print_var,sysconfdir)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100766 $(call feature_print_var,LIBUNWIND_DIR)
767 $(call feature_print_var,LIBDW_DIR)
Jiri Olsa0695e572014-02-19 16:52:54 +0100768endif
769
770ifeq ($(display_lib),1)
771 $(info )
772endif