blob: 2fc4d5682c3b5220e0caadfcd8ffd9c8f5f4cca2 [file] [log] [blame]
Jiri Olsa8bd407b2013-03-15 16:28:49 +01001
Jiri Olsaa6cf5f32014-01-03 15:32:32 +01002ifeq ($(src-perf),)
3src-perf := $(srctree)/tools/perf
Jiri Olsa8bd407b2013-03-15 16:28:49 +01004endif
5
Jiri Olsaa6cf5f32014-01-03 15:32:32 +01006ifeq ($(obj-perf),)
7obj-perf := $(OUTPUT)
8endif
9
10ifneq ($(obj-perf),)
11obj-perf := $(abspath $(obj-perf))/
12endif
13
Jiri Olsafcfd6612014-12-31 17:37:00 +010014$(shell echo -n > .config-detected)
15detected = $(shell echo "$(1)=y" >> .config-detected)
16detected_var = $(shell echo "$(1)=$($(1))" >> .config-detected)
17
Jiri Olsaa6cf5f32014-01-03 15:32:32 +010018LIB_INCLUDE := $(srctree)/tools/lib/
19CFLAGS := $(EXTRA_CFLAGS) $(EXTRA_WARNINGS)
20
21include $(src-perf)/config/Makefile.arch
22
Jiri Olsaf39e0422014-12-29 15:03:09 +010023$(call detected_var,ARCH)
24
Jiri Olsaa6cf5f32014-01-03 15:32:32 +010025NO_PERF_REGS := 1
26
27# Additional ARCH settings for x86
28ifeq ($(ARCH),x86)
Jiri Olsaf39e0422014-12-29 15:03:09 +010029 $(call detected,CONFIG_X86)
Namhyung Kimc6e5e9f2015-01-12 10:20:55 +080030 ifeq (${IS_64_BIT}, 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +020031 CFLAGS += -DHAVE_ARCH_X86_64_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020032 ARCH_INCLUDE = ../../arch/x86/lib/memcpy_64.S ../../arch/x86/lib/memset_64.S
Adrian Hunter8a0c4c22013-11-01 15:51:32 +020033 LIBUNWIND_LIBS = -lunwind -lunwind-x86_64
Jiri Olsa72965b82014-12-29 13:52:36 +010034 $(call detected,CONFIG_X86_64)
Adrian Hunter8a0c4c22013-11-01 15:51:32 +020035 else
36 LIBUNWIND_LIBS = -lunwind -lunwind-x86
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020037 endif
38 NO_PERF_REGS := 0
Jiri Olsa8bd407b2013-03-15 16:28:49 +010039endif
Jean Pihet8ab596a2014-04-28 14:32:33 +020040
Will Deacon7495f372013-09-26 12:36:36 +010041ifeq ($(ARCH),arm)
42 NO_PERF_REGS := 0
43 LIBUNWIND_LIBS = -lunwind -lunwind-arm
44endif
Jiri Olsa8bd407b2013-03-15 16:28:49 +010045
Jean Pihet8ab596a2014-04-28 14:32:33 +020046ifeq ($(ARCH),arm64)
47 NO_PERF_REGS := 0
48 LIBUNWIND_LIBS = -lunwind -lunwind-aarch64
49endif
50
Jiri Olsa3bc33742014-12-30 13:30:04 +010051ifeq ($(NO_PERF_REGS),0)
52 $(call detected,CONFIG_PERF_REGS)
53endif
54
Jean Pihet90fa9de2014-05-16 10:41:11 +020055# So far there's only x86 and arm libdw unwind support merged in perf.
Jiri Olsa4dc549e2014-04-20 10:50:00 +020056# Disable it on all other architectures in case libdw unwind
57# support is detected in system. Add supported architectures
58# to the check.
Jean Pihet90fa9de2014-05-16 10:41:11 +020059ifneq ($(ARCH),$(filter $(ARCH),x86 arm))
Jiri Olsa4dc549e2014-04-20 10:50:00 +020060 NO_LIBDW_DWARF_UNWIND := 1
61endif
62
Jean Pihet1448fef2013-12-10 13:24:04 +010063ifeq ($(LIBUNWIND_LIBS),)
64 NO_LIBUNWIND := 1
65else
66 #
67 # For linking with debug library, run like:
68 #
69 # make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
70 #
71 ifdef LIBUNWIND_DIR
72 LIBUNWIND_CFLAGS = -I$(LIBUNWIND_DIR)/include
73 LIBUNWIND_LDFLAGS = -L$(LIBUNWIND_DIR)/lib
74 endif
75 LIBUNWIND_LDFLAGS += $(LIBUNWIND_LIBS)
76
77 # Set per-feature check compilation flags
78 FEATURE_CHECK_CFLAGS-libunwind = $(LIBUNWIND_CFLAGS)
79 FEATURE_CHECK_LDFLAGS-libunwind = $(LIBUNWIND_LDFLAGS)
80 FEATURE_CHECK_CFLAGS-libunwind-debug-frame = $(LIBUNWIND_CFLAGS)
81 FEATURE_CHECK_LDFLAGS-libunwind-debug-frame = $(LIBUNWIND_LDFLAGS)
Jean Pihet1448fef2013-12-10 13:24:04 +010082endif
83
Jiri Olsa8bd407b2013-03-15 16:28:49 +010084ifeq ($(NO_PERF_REGS),0)
Ingo Molnar89fe8082013-09-30 12:07:11 +020085 CFLAGS += -DHAVE_PERF_REGS_SUPPORT
Jiri Olsa8bd407b2013-03-15 16:28:49 +010086endif
Jiri Olsaa32f4932013-03-25 00:32:01 +010087
Jiri Olsa45757892014-02-19 16:52:56 +010088ifndef NO_LIBELF
89 # for linking with debug library, run like:
90 # make DEBUG=1 LIBDW_DIR=/opt/libdw/
91 ifdef LIBDW_DIR
92 LIBDW_CFLAGS := -I$(LIBDW_DIR)/include
93 LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib
Jiri Olsa45757892014-02-19 16:52:56 +010094 endif
Ramkumar Ramachandra2c529e42014-03-26 18:44:05 -040095 FEATURE_CHECK_CFLAGS-libdw-dwarf-unwind := $(LIBDW_CFLAGS)
96 FEATURE_CHECK_LDFLAGS-libdw-dwarf-unwind := $(LIBDW_LDFLAGS) -ldw
Jiri Olsa45757892014-02-19 16:52:56 +010097endif
98
Jiri Olsa7c537462013-05-24 14:35:23 +020099# include ARCH specific config
100-include $(src-perf)/arch/$(ARCH)/Makefile
101
Jiri Olsa7c537462013-05-24 14:35:23 +0200102include $(src-perf)/config/utilities.mak
Jiri Olsaa32f4932013-03-25 00:32:01 +0100103
104ifeq ($(call get-executable,$(FLEX)),)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200105 dummy := $(error Error: $(FLEX) is missing on this system, please install it)
Jiri Olsaa32f4932013-03-25 00:32:01 +0100106endif
107
108ifeq ($(call get-executable,$(BISON)),)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200109 dummy := $(error Error: $(BISON) is missing on this system, please install it)
Jiri Olsaa32f4932013-03-25 00:32:01 +0100110endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100111
112# Treat warnings as errors unless directed not to
113ifneq ($(WERROR),0)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200114 CFLAGS += -Werror
Jiri Olsa362493f2013-03-25 00:40:48 +0100115endif
116
Adrian Hunter74af3772013-10-22 10:34:05 +0300117ifndef DEBUG
118 DEBUG := 0
119endif
120
Ingo Molnarfcf92582013-10-10 08:05:25 +0200121ifeq ($(DEBUG),0)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200122 CFLAGS += -O6
Jiri Olsa362493f2013-03-25 00:40:48 +0100123endif
124
125ifdef PARSER_DEBUG
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200126 PARSER_DEBUG_BISON := -t
127 PARSER_DEBUG_FLEX := -d
128 CFLAGS += -DPARSER_DEBUG
Jiri Olsa9352aab2014-12-29 17:42:46 +0100129 $(call detected_var,PARSER_DEBUG_BISON)
130 $(call detected_var,PARSER_DEBUG_FLEX)
Jiri Olsa362493f2013-03-25 00:40:48 +0100131endif
132
Namhyung Kim56c7d792014-07-29 15:57:19 +0900133ifndef NO_LIBPYTHON
Thomas Ilsched6a947f2014-08-04 15:03:15 +0200134 # Try different combinations to accommodate systems that only have
135 # python[2][-config] in weird combinations but always preferring
136 # python2 and python2-config as per pep-0394. If we catch a
137 # python[-config] in version 3, the version check will kill it.
138 PYTHON2 := $(if $(call get-executable,python2),python2,python)
139 override PYTHON := $(call get-executable-or-default,PYTHON,$(PYTHON2))
140 PYTHON2_CONFIG := \
141 $(if $(call get-executable,$(PYTHON)-config),$(PYTHON)-config,python-config)
Namhyung Kim56c7d792014-07-29 15:57:19 +0900142 override PYTHON_CONFIG := \
Thomas Ilsched6a947f2014-08-04 15:03:15 +0200143 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON2_CONFIG))
Namhyung Kim56c7d792014-07-29 15:57:19 +0900144
145 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
146
147 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
148 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
149
150 FEATURE_CHECK_CFLAGS-libpython := $(PYTHON_EMBED_CCOPTS)
151 FEATURE_CHECK_LDFLAGS-libpython := $(PYTHON_EMBED_LDOPTS)
152 FEATURE_CHECK_CFLAGS-libpython-version := $(PYTHON_EMBED_CCOPTS)
153 FEATURE_CHECK_LDFLAGS-libpython-version := $(PYTHON_EMBED_LDOPTS)
154endif
155
Jiri Olsa2fe73742013-04-15 04:32:28 +0200156CFLAGS += -fno-omit-frame-pointer
157CFLAGS += -ggdb3
158CFLAGS += -funwind-tables
159CFLAGS += -Wall
160CFLAGS += -Wextra
161CFLAGS += -std=gnu99
Jiri Olsa9c12cf92013-03-21 11:30:54 +0100162
Mathias Krause6392b4e2014-04-27 18:51:05 +0200163# Enforce a non-executable stack, as we may regress (again) in the future by
164# adding assembler files missing the .GNU-stack linker note.
165LDFLAGS += -Wl,-z,noexecstack
166
Namhyung Kim5e2d4d02014-11-07 14:20:06 +0900167EXTLIBS = -lpthread -lrt -lm -ldl
Jiri Olsa362493f2013-03-25 00:40:48 +0100168
Ingo Molnar1c2d1d82013-10-03 15:05:56 +0200169ifneq ($(OUTPUT),)
170 OUTPUT_FEATURES = $(OUTPUT)config/feature-checks/
171 $(shell mkdir -p $(OUTPUT_FEATURES))
172endif
173
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200174feature_check = $(eval $(feature_check_code))
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200175define feature_check_code
Chunwei Chen56560ec2013-12-21 13:48:11 +0800176 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 +0200177endef
178
179feature_set = $(eval $(feature_set_code))
180define feature_set_code
181 feature-$(1) := 1
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200182endef
183
184#
185# Build the feature check binaries in parallel, ignore errors, ignore return value and suppress output:
186#
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200187
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200188#
189# Note that this is not a complete list of all feature tests, just
190# those that are typically built on a fully configured system.
191#
192# [ Feature tests not mentioned here have to be built explicitly in
193# the rule that uses them - an example for that is the 'bionic'
194# feature check. ]
195#
196CORE_FEATURE_TESTS = \
197 backtrace \
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200198 dwarf \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200199 fortify-source \
Adrian Hunterf6d31362014-07-14 13:02:53 +0300200 sync-compare-and-swap \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200201 glibc \
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200202 gtk2 \
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200203 gtk2-infobar \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200204 libaudit \
205 libbfd \
206 libelf \
207 libelf-getphdrnum \
208 libelf-mmap \
209 libnuma \
Ingo Molnar7181a672013-09-30 15:15:36 +0200210 libperl \
Ingo Molnar97341632013-09-30 15:18:37 +0200211 libpython \
Ingo Molnar95d061c2013-09-30 15:40:04 +0200212 libpython-version \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200213 libslang \
214 libunwind \
Vineet Gupta459a3df2015-01-13 19:13:24 +0530215 pthread-attr-setaffinity-np \
Ingo Molnarbb4c5502013-11-14 08:33:24 +0100216 stackprotector-all \
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100217 timerfd \
Namhyung Kime92ce122014-10-31 16:51:38 +0900218 libdw-dwarf-unwind \
219 zlib
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200220
Jiri Olsa0695e572014-02-19 16:52:54 +0100221LIB_FEATURE_TESTS = \
222 dwarf \
223 glibc \
224 gtk2 \
225 libaudit \
226 libbfd \
227 libelf \
228 libnuma \
229 libperl \
230 libpython \
231 libslang \
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100232 libunwind \
Namhyung Kime92ce122014-10-31 16:51:38 +0900233 libdw-dwarf-unwind \
234 zlib
Jiri Olsa0695e572014-02-19 16:52:54 +0100235
236VF_FEATURE_TESTS = \
237 backtrace \
238 fortify-source \
Adrian Hunterf6d31362014-07-14 13:02:53 +0300239 sync-compare-and-swap \
Jiri Olsa0695e572014-02-19 16:52:54 +0100240 gtk2-infobar \
241 libelf-getphdrnum \
242 libelf-mmap \
243 libpython-version \
Vineet Gupta459a3df2015-01-13 19:13:24 +0530244 pthread-attr-setaffinity-np \
Jiri Olsa0695e572014-02-19 16:52:54 +0100245 stackprotector-all \
246 timerfd \
247 libunwind-debug-frame \
Jiri Olsa2cf90402014-04-23 16:53:25 +0200248 bionic \
249 liberty \
250 liberty-z \
Adrian Huntere477f3f2014-10-23 18:16:03 -0300251 cplus-demangle \
252 compile-32 \
253 compile-x32
Jiri Olsa0695e572014-02-19 16:52:54 +0100254
Jiri Olsac4eb6c02014-01-07 13:47:18 +0100255# Set FEATURE_CHECK_(C|LD)FLAGS-all for all CORE_FEATURE_TESTS features.
256# If in the future we need per-feature checks/flags for features not
257# mentioned in this list we need to refactor this ;-).
258set_test_all_flags = $(eval $(set_test_all_flags_code))
259define set_test_all_flags_code
260 FEATURE_CHECK_CFLAGS-all += $(FEATURE_CHECK_CFLAGS-$(1))
261 FEATURE_CHECK_LDFLAGS-all += $(FEATURE_CHECK_LDFLAGS-$(1))
262endef
263
264$(foreach feat,$(CORE_FEATURE_TESTS),$(call set_test_all_flags,$(feat)))
265
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200266#
267# Special fast-path for the 'all features are available' case:
268#
Ingo Molnarb3b64a12013-10-02 10:01:42 +0200269$(call feature_check,all,$(MSG))
270
271#
272# Just in case the build freshly failed, make sure we print the
273# feature matrix:
274#
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200275ifeq ($(feature-all), 1)
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200276 #
277 # test-all.c passed - just set all the core feature flags to 1:
278 #
279 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_set,$(feat)))
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200280else
Chunwei Chen56560ec2013-12-21 13:48:11 +0800281 $(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 +0200282 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_check,$(feat)))
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200283endif
284
Ingo Molnar90ac5422013-09-30 13:48:44 +0200285ifeq ($(feature-stackprotector-all), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200286 CFLAGS += -fstack-protector-all
Jiri Olsa362493f2013-03-25 00:40:48 +0100287endif
288
Ingo Molnarfcf92582013-10-10 08:05:25 +0200289ifeq ($(DEBUG),0)
Ingo Molnar1ea6f992013-10-07 09:38:28 +0200290 ifeq ($(feature-fortify-source), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200291 CFLAGS += -D_FORTIFY_SOURCE=2
292 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100293endif
294
Jiri Olsa2fe73742013-04-15 04:32:28 +0200295CFLAGS += -I$(src-perf)/util/include
296CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
Namhyung Kim8a625c12014-01-09 23:00:52 +0900297CFLAGS += -I$(srctree)/tools/include/
Jiri Olsa2fe73742013-04-15 04:32:28 +0200298CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
299CFLAGS += -I$(srctree)/arch/$(ARCH)/include
300CFLAGS += -I$(srctree)/include/uapi
301CFLAGS += -I$(srctree)/include
Jiri Olsa7c537462013-05-24 14:35:23 +0200302
303# $(obj-perf) for generated common-cmds.h
304# $(obj-perf)/util for generated bison/flex headers
305ifneq ($(OUTPUT),)
Jiri Olsa2fe73742013-04-15 04:32:28 +0200306CFLAGS += -I$(obj-perf)/util
307CFLAGS += -I$(obj-perf)
Jiri Olsa7c537462013-05-24 14:35:23 +0200308endif
309
Jiri Olsa2fe73742013-04-15 04:32:28 +0200310CFLAGS += -I$(src-perf)/util
311CFLAGS += -I$(src-perf)
Robert Richter4e319022013-06-11 17:29:18 +0200312CFLAGS += -I$(LIB_INCLUDE)
Jiri Olsa7c537462013-05-24 14:35:23 +0200313
Jiri Olsa2fe73742013-04-15 04:32:28 +0200314CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
Jiri Olsa362493f2013-03-25 00:40:48 +0100315
Adrian Hunterf6d31362014-07-14 13:02:53 +0300316ifeq ($(feature-sync-compare-and-swap), 1)
317 CFLAGS += -DHAVE_SYNC_COMPARE_AND_SWAP_SUPPORT
318endif
319
Vineet Gupta459a3df2015-01-13 19:13:24 +0530320ifeq ($(feature-pthread-attr-setaffinity-np), 1)
321 CFLAGS += -DHAVE_PTHREAD_ATTR_SETAFFINITY_NP
322endif
323
Jiri Olsa4e22db42013-05-24 14:35:24 +0200324ifndef NO_BIONIC
David Ahern5febff02013-10-29 10:43:15 -0600325 $(call feature_check,bionic)
Ingo Molnar78e9d652013-09-30 14:11:46 +0200326 ifeq ($(feature-bionic), 1)
327 BIONIC := 1
328 EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
329 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
330 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100331endif
Jiri Olsacf4cca12013-03-25 00:45:08 +0100332
333ifdef NO_LIBELF
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200334 NO_DWARF := 1
335 NO_DEMANGLE := 1
336 NO_LIBUNWIND := 1
Jiri Olsa5ea84152014-02-19 16:52:57 +0100337 NO_LIBDW_DWARF_UNWIND := 1
Jiri Olsacf4cca12013-03-25 00:45:08 +0100338else
Ingo Molnar8f7f8002013-09-30 14:20:25 +0200339 ifeq ($(feature-libelf), 0)
Ingo Molnare12762c2013-10-07 10:34:20 +0200340 ifeq ($(feature-glibc), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200341 LIBC_SUPPORT := 1
342 endif
343 ifeq ($(BIONIC),1)
344 LIBC_SUPPORT := 1
345 endif
346 ifeq ($(LIBC_SUPPORT),1)
347 msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libelf-dev);
Jiri Olsacf4cca12013-03-25 00:45:08 +0100348
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200349 NO_LIBELF := 1
350 NO_DWARF := 1
351 NO_DEMANGLE := 1
Arnaldo Carvalho de Melo94589552014-03-25 09:35:11 -0300352 NO_LIBUNWIND := 1
353 NO_LIBDW_DWARF_UNWIND := 1
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200354 else
Arnaldo Carvalho de Melof9ca2d82014-06-05 12:46:04 -0300355 ifneq ($(filter s% -static%,$(LDFLAGS),),)
356 msg := $(error No static glibc found, please install glibc-static);
357 else
358 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]);
359 endif
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200360 endif
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200361 else
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100362 ifndef NO_LIBDW_DWARF_UNWIND
363 ifneq ($(feature-libdw-dwarf-unwind),1)
364 NO_LIBDW_DWARF_UNWIND := 1
365 msg := $(warning No libdw DWARF unwind found, Please install elfutils-devel/libdw-dev >= 0.158 and/or set LIBDW_DIR);
366 endif
367 endif
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200368 ifneq ($(feature-dwarf), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200369 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);
370 NO_DWARF := 1
371 endif # Dwarf support
Ingo Molnar0648f832013-10-02 15:30:35 +0200372 endif # libelf support
Jiri Olsacf4cca12013-03-25 00:45:08 +0100373endif # NO_LIBELF
374
375ifndef NO_LIBELF
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200376 CFLAGS += -DHAVE_LIBELF_SUPPORT
Namhyung Kim5e2d4d02014-11-07 14:20:06 +0900377 EXTLIBS += -lelf
Jiri Olsa709e6792014-12-29 23:52:25 +0100378 $(call detected,CONFIG_LIBELF)
Jiri Olsa779724f2013-03-25 00:48:14 +0100379
Ingo Molnar8869b172013-09-30 15:02:28 +0200380 ifeq ($(feature-libelf-mmap), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200381 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
382 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100383
Ingo Molnarb7bcef62013-09-30 14:35:27 +0200384 ifeq ($(feature-libelf-getphdrnum), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200385 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
386 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100387
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200388 # include ARCH specific config
389 -include $(src-perf)/arch/$(ARCH)/Makefile
390
391 ifndef NO_DWARF
392 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
393 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
394 NO_DWARF := 1
395 else
396 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
397 LDFLAGS += $(LIBDW_LDFLAGS)
Namhyung Kim5e2d4d02014-11-07 14:20:06 +0900398 EXTLIBS += -ldw
Jiri Olsa8379fce2014-12-30 00:06:25 +0100399 $(call detected,CONFIG_DWARF)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200400 endif # PERF_HAVE_DWARF_REGS
401 endif # NO_DWARF
Jiri Olsacf4cca12013-03-25 00:45:08 +0100402endif # NO_LIBELF
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100403
Anton Blanchard65ccb4f2014-08-25 18:25:06 +1000404ifeq ($(ARCH),powerpc)
405 ifndef NO_DWARF
406 CFLAGS += -DHAVE_SKIP_CALLCHAIN_IDX
407 endif
408endif
409
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100410ifndef NO_LIBUNWIND
Ingo Molnar058f9522013-09-30 14:45:44 +0200411 ifneq ($(feature-libunwind), 1)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100412 msg := $(warning No libunwind found. Please install libunwind-dev[el] >= 1.1 and/or set LIBUNWIND_DIR);
Ingo Molnar308e1e72013-10-07 10:30:47 +0200413 NO_LIBUNWIND := 1
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100414 endif
415endif
416
417dwarf-post-unwind := 1
418dwarf-post-unwind-text := BUG
419
420# setup DWARF post unwinder
421ifdef NO_LIBUNWIND
422 ifdef NO_LIBDW_DWARF_UNWIND
423 msg := $(warning Disabling post unwind, no support found.);
424 dwarf-post-unwind := 0
Linus Torvaldsf47671e2013-11-14 08:51:29 +0900425 else
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100426 dwarf-post-unwind-text := libdw
Jiri Olsab2e45c32014-12-30 00:11:11 +0100427 $(call detected,CONFIG_LIBDW_DWARF_UNWIND)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100428 endif
429else
430 dwarf-post-unwind-text := libunwind
Jiri Olsab2e45c32014-12-30 00:11:11 +0100431 $(call detected,CONFIG_LIBUNWIND)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100432 # Enable libunwind support by default.
433 ifndef NO_LIBDW_DWARF_UNWIND
434 NO_LIBDW_DWARF_UNWIND := 1
435 endif
436endif
437
438ifeq ($(dwarf-post-unwind),1)
439 CFLAGS += -DHAVE_DWARF_UNWIND_SUPPORT
Jiri Olsaf39e0422014-12-29 15:03:09 +0100440 $(call detected,CONFIG_DWARF_UNWIND)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100441else
442 NO_DWARF_UNWIND := 1
443endif
444
445ifndef NO_LIBUNWIND
Jean Pihet8ab596a2014-04-28 14:32:33 +0200446 ifeq ($(ARCH),$(filter $(ARCH),arm arm64))
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100447 $(call feature_check,libunwind-debug-frame)
448 ifneq ($(feature-libunwind-debug-frame), 1)
449 msg := $(warning No debug_frame support found in libunwind);
Linus Torvaldsf47671e2013-11-14 08:51:29 +0900450 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
451 endif
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100452 else
453 # non-ARM has no dwarf_find_debug_frame() function:
454 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
455 endif
456 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
457 EXTLIBS += $(LIBUNWIND_LIBS)
458 CFLAGS += $(LIBUNWIND_CFLAGS)
459 LDFLAGS += $(LIBUNWIND_LDFLAGS)
Ingo Molnar058f9522013-09-30 14:45:44 +0200460endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100461
462ifndef NO_LIBAUDIT
Ingo Molnard795a652013-09-30 14:55:31 +0200463 ifneq ($(feature-libaudit), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200464 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
465 NO_LIBAUDIT := 1
466 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200467 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200468 EXTLIBS += -laudit
Jiri Olsa285ab8b2014-12-29 15:13:44 +0100469 $(call detected,CONFIG_AUDIT)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200470 endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100471endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100472
473ifdef NO_NEWT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200474 NO_SLANG=1
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100475endif
476
477ifndef NO_SLANG
Ingo Molnarb9498b52013-09-30 14:57:54 +0200478 ifneq ($(feature-libslang), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200479 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
480 NO_SLANG := 1
481 else
482 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
483 CFLAGS += -I/usr/include/slang
Ingo Molnar89fe8082013-09-30 12:07:11 +0200484 CFLAGS += -DHAVE_SLANG_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200485 EXTLIBS += -lslang
Jiri Olsacf15c742014-12-30 00:27:52 +0100486 $(call detected,CONFIG_SLANG)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200487 endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100488endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100489
490ifndef NO_GTK2
Mark Rutlanda8a5cd82014-01-15 10:44:08 +0000491 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null)
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200492 ifneq ($(feature-gtk2), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200493 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
494 NO_GTK2 := 1
495 else
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200496 ifeq ($(feature-gtk2-infobar), 1)
Namhyung Kimfc672972013-09-13 15:27:43 +0900497 GTK_CFLAGS := -DHAVE_GTK_INFO_BAR_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200498 endif
Ingo Molnar89fe8082013-09-30 12:07:11 +0200499 CFLAGS += -DHAVE_GTK2_SUPPORT
Mark Rutlanda8a5cd82014-01-15 10:44:08 +0000500 GTK_CFLAGS += $(shell $(PKG_CONFIG) --cflags gtk+-2.0 2>/dev/null)
501 GTK_LIBS := $(shell $(PKG_CONFIG) --libs gtk+-2.0 2>/dev/null)
Jiri Olsae2137082013-09-26 20:55:54 +0200502 EXTLIBS += -ldl
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200503 endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100504endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100505
506grep-libs = $(filter -l%,$(1))
507strip-libs = $(filter-out -l%,$(1))
508
509ifdef NO_LIBPERL
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200510 CFLAGS += -DNO_LIBPERL
Jiri Olsa3082cb32013-03-18 00:19:44 +0100511else
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200512 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
513 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
514 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
515 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
516 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
Jiri Olsa3082cb32013-03-18 00:19:44 +0100517
Ingo Molnar7181a672013-09-30 15:15:36 +0200518 ifneq ($(feature-libperl), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200519 CFLAGS += -DNO_LIBPERL
520 NO_LIBPERL := 1
Arnaldo Carvalho de Melo6a2f2542014-05-26 16:02:30 -0300521 msg := $(warning Missing perl devel files. Disabling perl scripting support, consider installing perl-ExtUtils-Embed);
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200522 else
523 LDFLAGS += $(PERL_EMBED_LDFLAGS)
524 EXTLIBS += $(PERL_EMBED_LIBADD)
Jiri Olsac7355f82014-12-30 13:11:32 +0100525 $(call detected,CONFIG_LIBPERL)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200526 endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100527endif
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100528
David Ahern87419c92013-10-29 10:43:16 -0600529ifeq ($(feature-timerfd), 1)
530 CFLAGS += -DHAVE_TIMERFD_SUPPORT
531else
532 msg := $(warning No timerfd support. Disables 'perf kvm stat live');
533endif
534
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100535disable-python = $(eval $(disable-python_code))
536define disable-python_code
Jiri Olsa9c12cf92013-03-21 11:30:54 +0100537 CFLAGS += -DNO_LIBPYTHON
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100538 $(if $(1),$(warning No $(1) was found))
539 $(warning Python support will not be built)
540 NO_LIBPYTHON := 1
541endef
542
Namhyung Kim56c7d792014-07-29 15:57:19 +0900543ifdef NO_LIBPYTHON
544 $(call disable-python)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100545else
546
Namhyung Kim56c7d792014-07-29 15:57:19 +0900547 ifndef PYTHON
548 $(call disable-python,python interpreter)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100549 else
Namhyung Kim56c7d792014-07-29 15:57:19 +0900550 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100551
552 ifndef PYTHON_CONFIG
553 $(call disable-python,python-config tool)
554 else
555
556 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
557
558 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
559 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
560 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
561 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
562 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
563
Ingo Molnar97341632013-09-30 15:18:37 +0200564 ifneq ($(feature-libpython), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100565 $(call disable-python,Python.h (for Python 2.x))
566 else
567
Ingo Molnar95d061c2013-09-30 15:40:04 +0200568 ifneq ($(feature-libpython-version), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100569 $(warning Python 3 is not yet supported; please set)
570 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
571 $(warning If you also have Python 2 installed, then)
572 $(warning try something like:)
573 $(warning $(and ,))
574 $(warning $(and ,) make PYTHON=python2)
575 $(warning $(and ,))
576 $(warning Otherwise, disable Python support entirely:)
577 $(warning $(and ,))
578 $(warning $(and ,) make NO_LIBPYTHON=1)
579 $(warning $(and ,))
580 $(error $(and ,))
581 else
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100582 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100583 EXTLIBS += $(PYTHON_EMBED_LIBADD)
Jiri Olsa7c537462013-05-24 14:35:23 +0200584 LANG_BINDINGS += $(obj-perf)python/perf.so
Jiri Olsac7355f82014-12-30 13:11:32 +0100585 $(call detected,CONFIG_LIBPYTHON)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100586 endif
587 endif
588 endif
589 endif
590endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100591
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200592ifeq ($(feature-libbfd), 1)
Jiri Olsa2cf90402014-04-23 16:53:25 +0200593 EXTLIBS += -lbfd
594
595 # call all detections now so we get correct
596 # status in VF output
597 $(call feature_check,liberty)
598 $(call feature_check,liberty-z)
599 $(call feature_check,cplus-demangle)
600
601 ifeq ($(feature-liberty), 1)
602 EXTLIBS += -liberty
603 else
604 ifeq ($(feature-liberty-z), 1)
605 EXTLIBS += -liberty -lz
606 endif
607 endif
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200608endif
609
Jiri Olsac3cf8362013-03-18 00:38:16 +0100610ifdef NO_DEMANGLE
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200611 CFLAGS += -DNO_DEMANGLE
Jiri Olsac3cf8362013-03-18 00:38:16 +0100612else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200613 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200614 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200615 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200616 else
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200617 ifneq ($(feature-libbfd), 1)
Jiri Olsa2cf90402014-04-23 16:53:25 +0200618 ifneq ($(feature-liberty), 1)
619 ifneq ($(feature-liberty-z), 1)
620 # we dont have neither HAVE_CPLUS_DEMANGLE_SUPPORT
621 # or any of 'bfd iberty z' trinity
Ingo Molnar1c476612013-10-02 15:15:09 +0200622 ifeq ($(feature-cplus-demangle), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200623 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200624 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200625 else
626 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
627 CFLAGS += -DNO_DEMANGLE
628 endif
629 endif
630 endif
631 endif
632 endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100633endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100634
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200635ifneq ($(filter -lbfd,$(EXTLIBS)),)
636 CFLAGS += -DHAVE_LIBBFD_SUPPORT
637endif
638
Namhyung Kime92ce122014-10-31 16:51:38 +0900639ifndef NO_ZLIB
640 ifeq ($(feature-zlib), 1)
641 CFLAGS += -DHAVE_ZLIB_SUPPORT
642 EXTLIBS += -lz
643 else
644 NO_ZLIB := 1
645 endif
646endif
647
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100648ifndef NO_BACKTRACE
Ingo Molnar4cc91172013-09-30 16:49:38 +0200649 ifeq ($(feature-backtrace), 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200650 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200651 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100652endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100653
654ifndef NO_LIBNUMA
Ingo Molnar3ae069c2013-09-30 13:37:10 +0200655 ifeq ($(feature-libnuma), 0)
Dongsheng Yang6305edf2013-12-02 10:26:48 -0500656 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 +0200657 NO_LIBNUMA := 1
658 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200659 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200660 EXTLIBS += -lnuma
Jiri Olsa72965b82014-12-29 13:52:36 +0100661 $(call detected,CONFIG_NUMA)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200662 endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100663endif
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100664
Alexander Yaryginda50ad62014-07-03 17:59:49 +0400665ifdef HAVE_KVM_STAT_SUPPORT
666 CFLAGS += -DHAVE_KVM_STAT_SUPPORT
667endif
668
Adrian Huntere477f3f2014-10-23 18:16:03 -0300669ifeq (${IS_64_BIT}, 1)
670 ifndef NO_PERF_READ_VDSO32
671 $(call feature_check,compile-32)
Adrian Hunter46b1fa82014-10-23 13:45:24 +0300672 ifeq ($(feature-compile-32), 1)
673 CFLAGS += -DHAVE_PERF_READ_VDSO32
674 else
Adrian Huntere477f3f2014-10-23 18:16:03 -0300675 NO_PERF_READ_VDSO32 := 1
676 endif
677 endif
678 ifneq (${IS_X86_64}, 1)
679 NO_PERF_READ_VDSOX32 := 1
680 endif
681 ifndef NO_PERF_READ_VDSOX32
682 $(call feature_check,compile-x32)
Adrian Hunter46b1fa82014-10-23 13:45:24 +0300683 ifeq ($(feature-compile-x32), 1)
684 CFLAGS += -DHAVE_PERF_READ_VDSOX32
685 else
Adrian Huntere477f3f2014-10-23 18:16:03 -0300686 NO_PERF_READ_VDSOX32 := 1
687 endif
688 endif
689else
690 NO_PERF_READ_VDSO32 := 1
691 NO_PERF_READ_VDSOX32 := 1
692endif
693
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100694# Among the variables below, these:
695# perfexecdir
696# template_dir
697# mandir
698# infodir
699# htmldir
700# ETC_PERFCONFIG (but not sysconfdir)
701# can be specified as a relative path some/where/else;
702# this is interpreted as relative to $(prefix) and "perf" at
703# runtime figures out where they are based on the path to the executable.
704# This can help installing the suite in a relocatable way.
705
706# Make the path relative to DESTDIR, not to prefix
707ifndef DESTDIR
Jianyu Zhanfc9cabe2014-06-03 00:44:34 +0800708prefix ?= $(HOME)
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100709endif
710bindir_relative = bin
711bindir = $(prefix)/$(bindir_relative)
712mandir = share/man
713infodir = share/info
714perfexecdir = libexec/perf-core
715sharedir = $(prefix)/share
716template_dir = share/perf-core/templates
717htmldir = share/doc/perf-doc
718ifeq ($(prefix),/usr)
719sysconfdir = /etc
720ETC_PERFCONFIG = $(sysconfdir)/perfconfig
721else
722sysconfdir = $(prefix)/etc
723ETC_PERFCONFIG = etc/perfconfig
724endif
Jiri Olsa6997af722014-08-25 16:55:52 +0200725ifndef lib
Namhyung Kimfc672972013-09-13 15:27:43 +0900726ifeq ($(IS_X86_64),1)
727lib = lib64
728else
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100729lib = lib
Namhyung Kimfc672972013-09-13 15:27:43 +0900730endif
Jiri Olsa6997af722014-08-25 16:55:52 +0200731endif # lib
Namhyung Kimfc672972013-09-13 15:27:43 +0900732libdir = $(prefix)/$(lib)
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100733
734# Shell quote (do not use $(call) to accommodate ancient setups);
735ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
736DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
737bindir_SQ = $(subst ','\'',$(bindir))
738mandir_SQ = $(subst ','\'',$(mandir))
739infodir_SQ = $(subst ','\'',$(infodir))
740perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
741template_dir_SQ = $(subst ','\'',$(template_dir))
742htmldir_SQ = $(subst ','\'',$(htmldir))
743prefix_SQ = $(subst ','\'',$(prefix))
744sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
Namhyung Kimfc672972013-09-13 15:27:43 +0900745libdir_SQ = $(subst ','\'',$(libdir))
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100746
747ifneq ($(filter /%,$(firstword $(perfexecdir))),)
748perfexec_instdir = $(perfexecdir)
749else
750perfexec_instdir = $(prefix)/$(perfexecdir)
751endif
752perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))
Jiri Olsa3d7c0142013-12-03 14:09:21 +0100753
754# If we install to $(HOME) we keep the traceevent default:
755# $(HOME)/.traceevent/plugins
756# Otherwise we install plugins into the global $(libdir).
757ifdef DESTDIR
758plugindir=$(libdir)/traceevent/plugins
Josh Boyerb935a582014-01-22 10:01:48 -0500759plugindir_SQ= $(subst ','\'',$(plugindir))
Jiri Olsa3d7c0142013-12-03 14:09:21 +0100760endif
Jiri Olsa0695e572014-02-19 16:52:54 +0100761
762#
763# Print the result of the feature test:
764#
Jiri Olsa8d790762014-02-19 16:52:55 +0100765feature_print_status = $(eval $(feature_print_status_code)) $(info $(MSG))
Jiri Olsa0695e572014-02-19 16:52:54 +0100766
Jiri Olsa8d790762014-02-19 16:52:55 +0100767define feature_print_status_code
Jiri Olsa0695e572014-02-19 16:52:54 +0100768 ifeq ($(feature-$(1)), 1)
769 MSG = $(shell printf '...%30s: [ \033[32mon\033[m ]' $(1))
770 else
771 MSG = $(shell printf '...%30s: [ \033[31mOFF\033[m ]' $(1))
772 endif
773endef
774
Jiri Olsa8d790762014-02-19 16:52:55 +0100775feature_print_var = $(eval $(feature_print_var_code)) $(info $(MSG))
776define feature_print_var_code
777 MSG = $(shell printf '...%30s: %s' $(1) $($(1)))
778endef
779
780feature_print_text = $(eval $(feature_print_text_code)) $(info $(MSG))
781define feature_print_text_code
782 MSG = $(shell printf '...%30s: %s' $(1) $(2))
783endef
784
Jiri Olsa0695e572014-02-19 16:52:54 +0100785PERF_FEATURES := $(foreach feat,$(LIB_FEATURE_TESTS),feature-$(feat)($(feature-$(feat))))
786PERF_FEATURES_FILE := $(shell touch $(OUTPUT)PERF-FEATURES; cat $(OUTPUT)PERF-FEATURES)
787
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100788ifeq ($(dwarf-post-unwind),1)
789 PERF_FEATURES += dwarf-post-unwind($(dwarf-post-unwind-text))
790endif
791
Jiri Olsa0695e572014-02-19 16:52:54 +0100792# The $(display_lib) controls the default detection message
793# output. It's set if:
794# - detected features differes from stored features from
795# last build (in PERF-FEATURES file)
796# - one of the $(LIB_FEATURE_TESTS) is not detected
797# - VF is enabled
798
799ifneq ("$(PERF_FEATURES)","$(PERF_FEATURES_FILE)")
800 $(shell echo "$(PERF_FEATURES)" > $(OUTPUT)PERF-FEATURES)
801 display_lib := 1
802endif
803
804feature_check = $(eval $(feature_check_code))
805define feature_check_code
806 ifneq ($(feature-$(1)), 1)
807 display_lib := 1
808 endif
809endef
810
811$(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_check,$(feat)))
812
813ifeq ($(VF),1)
814 display_lib := 1
815 display_vf := 1
816endif
817
818ifeq ($(display_lib),1)
819 $(info )
820 $(info Auto-detecting system features:)
Jiri Olsa8d790762014-02-19 16:52:55 +0100821 $(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_print_status,$(feat),))
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100822
823 ifeq ($(dwarf-post-unwind),1)
824 $(call feature_print_text,"DWARF post unwind library", $(dwarf-post-unwind-text))
825 endif
Jiri Olsa0695e572014-02-19 16:52:54 +0100826endif
827
828ifeq ($(display_vf),1)
Jiri Olsa8d790762014-02-19 16:52:55 +0100829 $(foreach feat,$(VF_FEATURE_TESTS),$(call feature_print_status,$(feat),))
830 $(info )
831 $(call feature_print_var,prefix)
832 $(call feature_print_var,bindir)
833 $(call feature_print_var,libdir)
834 $(call feature_print_var,sysconfdir)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100835 $(call feature_print_var,LIBUNWIND_DIR)
836 $(call feature_print_var,LIBDW_DIR)
Jiri Olsa0695e572014-02-19 16:52:54 +0100837endif
838
839ifeq ($(display_lib),1)
840 $(info )
841endif
Jiri Olsaf39e0422014-12-29 15:03:09 +0100842
843$(call detected_var,bindir_SQ)
844$(call detected_var,PYTHON_WORD)
845ifneq ($(OUTPUT),)
846$(call detected_var,OUTPUT)
847endif
Jiri Olsa285ab8b2014-12-29 15:13:44 +0100848$(call detected_var,htmldir_SQ)
849$(call detected_var,infodir_SQ)
850$(call detected_var,mandir_SQ)
Jiri Olsa9352aab2014-12-29 17:42:46 +0100851$(call detected_var,ETC_PERFCONFIG_SQ)
852$(call detected_var,prefix_SQ)
853$(call detected_var,perfexecdir_SQ)
Jiri Olsa3b939a62014-12-30 00:16:01 +0100854$(call detected_var,LIBDIR)
Jiri Olsa88aeea02014-12-30 00:34:23 +0100855$(call detected_var,GTK_CFLAGS)
Jiri Olsac7355f82014-12-30 13:11:32 +0100856$(call detected_var,PERL_EMBED_CCOPTS)
857$(call detected_var,PYTHON_EMBED_CCOPTS)