blob: b799649ab0e7de4aa931da6bb25ba202c880a2a2 [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 Olsa53d0a572015-02-20 23:16:58 +010099ifndef NO_LIBBABELTRACE
100 # for linking with debug library, run like:
101 # make DEBUG=1 LIBBABELTRACE_DIR=/opt/libbabeltrace/
102 ifdef LIBBABELTRACE_DIR
103 LIBBABELTRACE_CFLAGS := -I$(LIBBABELTRACE_DIR)/include
104 LIBBABELTRACE_LDFLAGS := -L$(LIBBABELTRACE_DIR)/lib
105 endif
106 FEATURE_CHECK_CFLAGS-libbabeltrace := $(LIBBABELTRACE_CFLAGS)
107 FEATURE_CHECK_LDFLAGS-libbabeltrace := $(LIBBABELTRACE_LDFLAGS) -lbabeltrace-ctf
108endif
109
Jiri Olsa7c537462013-05-24 14:35:23 +0200110# include ARCH specific config
111-include $(src-perf)/arch/$(ARCH)/Makefile
112
Jiri Olsa7c537462013-05-24 14:35:23 +0200113include $(src-perf)/config/utilities.mak
Jiri Olsaa32f4932013-03-25 00:32:01 +0100114
115ifeq ($(call get-executable,$(FLEX)),)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200116 dummy := $(error Error: $(FLEX) is missing on this system, please install it)
Jiri Olsaa32f4932013-03-25 00:32:01 +0100117endif
118
119ifeq ($(call get-executable,$(BISON)),)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200120 dummy := $(error Error: $(BISON) is missing on this system, please install it)
Jiri Olsaa32f4932013-03-25 00:32:01 +0100121endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100122
123# Treat warnings as errors unless directed not to
124ifneq ($(WERROR),0)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200125 CFLAGS += -Werror
Jiri Olsa362493f2013-03-25 00:40:48 +0100126endif
127
Adrian Hunter74af3772013-10-22 10:34:05 +0300128ifndef DEBUG
129 DEBUG := 0
130endif
131
Ingo Molnarfcf92582013-10-10 08:05:25 +0200132ifeq ($(DEBUG),0)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200133 CFLAGS += -O6
Jiri Olsa362493f2013-03-25 00:40:48 +0100134endif
135
136ifdef PARSER_DEBUG
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200137 PARSER_DEBUG_BISON := -t
138 PARSER_DEBUG_FLEX := -d
139 CFLAGS += -DPARSER_DEBUG
Jiri Olsa9352aab2014-12-29 17:42:46 +0100140 $(call detected_var,PARSER_DEBUG_BISON)
141 $(call detected_var,PARSER_DEBUG_FLEX)
Jiri Olsa362493f2013-03-25 00:40:48 +0100142endif
143
Namhyung Kim56c7d792014-07-29 15:57:19 +0900144ifndef NO_LIBPYTHON
Thomas Ilsched6a947f2014-08-04 15:03:15 +0200145 # Try different combinations to accommodate systems that only have
146 # python[2][-config] in weird combinations but always preferring
147 # python2 and python2-config as per pep-0394. If we catch a
148 # python[-config] in version 3, the version check will kill it.
149 PYTHON2 := $(if $(call get-executable,python2),python2,python)
150 override PYTHON := $(call get-executable-or-default,PYTHON,$(PYTHON2))
151 PYTHON2_CONFIG := \
152 $(if $(call get-executable,$(PYTHON)-config),$(PYTHON)-config,python-config)
Namhyung Kim56c7d792014-07-29 15:57:19 +0900153 override PYTHON_CONFIG := \
Thomas Ilsched6a947f2014-08-04 15:03:15 +0200154 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON2_CONFIG))
Namhyung Kim56c7d792014-07-29 15:57:19 +0900155
156 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
157
158 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
159 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
160
161 FEATURE_CHECK_CFLAGS-libpython := $(PYTHON_EMBED_CCOPTS)
162 FEATURE_CHECK_LDFLAGS-libpython := $(PYTHON_EMBED_LDOPTS)
163 FEATURE_CHECK_CFLAGS-libpython-version := $(PYTHON_EMBED_CCOPTS)
164 FEATURE_CHECK_LDFLAGS-libpython-version := $(PYTHON_EMBED_LDOPTS)
165endif
166
Jiri Olsa2fe73742013-04-15 04:32:28 +0200167CFLAGS += -fno-omit-frame-pointer
168CFLAGS += -ggdb3
169CFLAGS += -funwind-tables
170CFLAGS += -Wall
171CFLAGS += -Wextra
172CFLAGS += -std=gnu99
Jiri Olsa9c12cf92013-03-21 11:30:54 +0100173
Mathias Krause6392b4e2014-04-27 18:51:05 +0200174# Enforce a non-executable stack, as we may regress (again) in the future by
175# adding assembler files missing the .GNU-stack linker note.
176LDFLAGS += -Wl,-z,noexecstack
177
Namhyung Kim5e2d4d02014-11-07 14:20:06 +0900178EXTLIBS = -lpthread -lrt -lm -ldl
Jiri Olsa362493f2013-03-25 00:40:48 +0100179
Ingo Molnar1c2d1d82013-10-03 15:05:56 +0200180ifneq ($(OUTPUT),)
181 OUTPUT_FEATURES = $(OUTPUT)config/feature-checks/
182 $(shell mkdir -p $(OUTPUT_FEATURES))
183endif
184
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200185feature_check = $(eval $(feature_check_code))
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200186define feature_check_code
Arnaldo Carvalho de Melo443a7052015-03-10 19:04:31 -0300187 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 > $(OUTPUT)config/feature-checks/.make-$(1).output 2>&1 && echo 1 || echo 0)
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200188endef
189
190feature_set = $(eval $(feature_set_code))
191define feature_set_code
192 feature-$(1) := 1
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200193endef
194
195#
196# Build the feature check binaries in parallel, ignore errors, ignore return value and suppress output:
197#
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200198
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200199#
200# Note that this is not a complete list of all feature tests, just
201# those that are typically built on a fully configured system.
202#
203# [ Feature tests not mentioned here have to be built explicitly in
204# the rule that uses them - an example for that is the 'bionic'
205# feature check. ]
206#
207CORE_FEATURE_TESTS = \
208 backtrace \
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200209 dwarf \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200210 fortify-source \
Adrian Hunterf6d31362014-07-14 13:02:53 +0300211 sync-compare-and-swap \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200212 glibc \
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200213 gtk2 \
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200214 gtk2-infobar \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200215 libaudit \
216 libbfd \
217 libelf \
218 libelf-getphdrnum \
219 libelf-mmap \
220 libnuma \
Ingo Molnar7181a672013-09-30 15:15:36 +0200221 libperl \
Ingo Molnar97341632013-09-30 15:18:37 +0200222 libpython \
Ingo Molnar95d061c2013-09-30 15:40:04 +0200223 libpython-version \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200224 libslang \
225 libunwind \
Vineet Gupta459a3df2015-01-13 19:13:24 +0530226 pthread-attr-setaffinity-np \
Ingo Molnarbb4c5502013-11-14 08:33:24 +0100227 stackprotector-all \
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100228 timerfd \
Namhyung Kime92ce122014-10-31 16:51:38 +0900229 libdw-dwarf-unwind \
230 zlib
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200231
Jiri Olsa0695e572014-02-19 16:52:54 +0100232LIB_FEATURE_TESTS = \
233 dwarf \
234 glibc \
235 gtk2 \
236 libaudit \
237 libbfd \
238 libelf \
239 libnuma \
240 libperl \
241 libpython \
242 libslang \
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100243 libunwind \
Namhyung Kime92ce122014-10-31 16:51:38 +0900244 libdw-dwarf-unwind \
245 zlib
Jiri Olsa0695e572014-02-19 16:52:54 +0100246
247VF_FEATURE_TESTS = \
248 backtrace \
249 fortify-source \
Adrian Hunterf6d31362014-07-14 13:02:53 +0300250 sync-compare-and-swap \
Jiri Olsa0695e572014-02-19 16:52:54 +0100251 gtk2-infobar \
252 libelf-getphdrnum \
253 libelf-mmap \
254 libpython-version \
Vineet Gupta459a3df2015-01-13 19:13:24 +0530255 pthread-attr-setaffinity-np \
Jiri Olsa0695e572014-02-19 16:52:54 +0100256 stackprotector-all \
257 timerfd \
258 libunwind-debug-frame \
Jiri Olsa2cf90402014-04-23 16:53:25 +0200259 bionic \
260 liberty \
261 liberty-z \
Adrian Huntere477f3f2014-10-23 18:16:03 -0300262 cplus-demangle \
263 compile-32 \
264 compile-x32
Jiri Olsa0695e572014-02-19 16:52:54 +0100265
Jiri Olsac4eb6c02014-01-07 13:47:18 +0100266# Set FEATURE_CHECK_(C|LD)FLAGS-all for all CORE_FEATURE_TESTS features.
267# If in the future we need per-feature checks/flags for features not
268# mentioned in this list we need to refactor this ;-).
269set_test_all_flags = $(eval $(set_test_all_flags_code))
270define set_test_all_flags_code
271 FEATURE_CHECK_CFLAGS-all += $(FEATURE_CHECK_CFLAGS-$(1))
272 FEATURE_CHECK_LDFLAGS-all += $(FEATURE_CHECK_LDFLAGS-$(1))
273endef
274
275$(foreach feat,$(CORE_FEATURE_TESTS),$(call set_test_all_flags,$(feat)))
276
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200277#
278# Special fast-path for the 'all features are available' case:
279#
Ingo Molnarb3b64a12013-10-02 10:01:42 +0200280$(call feature_check,all,$(MSG))
281
282#
283# Just in case the build freshly failed, make sure we print the
284# feature matrix:
285#
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200286ifeq ($(feature-all), 1)
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200287 #
288 # test-all.c passed - just set all the core feature flags to 1:
289 #
290 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_set,$(feat)))
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200291else
Chunwei Chen56560ec2013-12-21 13:48:11 +0800292 $(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 +0200293 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_check,$(feat)))
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200294endif
295
Ingo Molnar90ac5422013-09-30 13:48:44 +0200296ifeq ($(feature-stackprotector-all), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200297 CFLAGS += -fstack-protector-all
Jiri Olsa362493f2013-03-25 00:40:48 +0100298endif
299
Ingo Molnarfcf92582013-10-10 08:05:25 +0200300ifeq ($(DEBUG),0)
Ingo Molnar1ea6f992013-10-07 09:38:28 +0200301 ifeq ($(feature-fortify-source), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200302 CFLAGS += -D_FORTIFY_SOURCE=2
303 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100304endif
305
Jiri Olsa2fe73742013-04-15 04:32:28 +0200306CFLAGS += -I$(src-perf)/util/include
307CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
Namhyung Kim8a625c12014-01-09 23:00:52 +0900308CFLAGS += -I$(srctree)/tools/include/
Jiri Olsa2fe73742013-04-15 04:32:28 +0200309CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
310CFLAGS += -I$(srctree)/arch/$(ARCH)/include
311CFLAGS += -I$(srctree)/include/uapi
312CFLAGS += -I$(srctree)/include
Jiri Olsa7c537462013-05-24 14:35:23 +0200313
314# $(obj-perf) for generated common-cmds.h
315# $(obj-perf)/util for generated bison/flex headers
316ifneq ($(OUTPUT),)
Jiri Olsa2fe73742013-04-15 04:32:28 +0200317CFLAGS += -I$(obj-perf)/util
318CFLAGS += -I$(obj-perf)
Jiri Olsa7c537462013-05-24 14:35:23 +0200319endif
320
Jiri Olsa2fe73742013-04-15 04:32:28 +0200321CFLAGS += -I$(src-perf)/util
322CFLAGS += -I$(src-perf)
Robert Richter4e319022013-06-11 17:29:18 +0200323CFLAGS += -I$(LIB_INCLUDE)
Jiri Olsa7c537462013-05-24 14:35:23 +0200324
Jiri Olsa2fe73742013-04-15 04:32:28 +0200325CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
Jiri Olsa362493f2013-03-25 00:40:48 +0100326
Adrian Hunterf6d31362014-07-14 13:02:53 +0300327ifeq ($(feature-sync-compare-and-swap), 1)
328 CFLAGS += -DHAVE_SYNC_COMPARE_AND_SWAP_SUPPORT
329endif
330
Vineet Gupta459a3df2015-01-13 19:13:24 +0530331ifeq ($(feature-pthread-attr-setaffinity-np), 1)
332 CFLAGS += -DHAVE_PTHREAD_ATTR_SETAFFINITY_NP
333endif
334
Jiri Olsa4e22db42013-05-24 14:35:24 +0200335ifndef NO_BIONIC
David Ahern5febff02013-10-29 10:43:15 -0600336 $(call feature_check,bionic)
Ingo Molnar78e9d652013-09-30 14:11:46 +0200337 ifeq ($(feature-bionic), 1)
338 BIONIC := 1
339 EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
340 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
341 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100342endif
Jiri Olsacf4cca12013-03-25 00:45:08 +0100343
344ifdef NO_LIBELF
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200345 NO_DWARF := 1
346 NO_DEMANGLE := 1
347 NO_LIBUNWIND := 1
Jiri Olsa5ea84152014-02-19 16:52:57 +0100348 NO_LIBDW_DWARF_UNWIND := 1
Jiri Olsacf4cca12013-03-25 00:45:08 +0100349else
Ingo Molnar8f7f8002013-09-30 14:20:25 +0200350 ifeq ($(feature-libelf), 0)
Ingo Molnare12762c2013-10-07 10:34:20 +0200351 ifeq ($(feature-glibc), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200352 LIBC_SUPPORT := 1
353 endif
354 ifeq ($(BIONIC),1)
355 LIBC_SUPPORT := 1
356 endif
357 ifeq ($(LIBC_SUPPORT),1)
358 msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libelf-dev);
Jiri Olsacf4cca12013-03-25 00:45:08 +0100359
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200360 NO_LIBELF := 1
361 NO_DWARF := 1
362 NO_DEMANGLE := 1
Arnaldo Carvalho de Melo94589552014-03-25 09:35:11 -0300363 NO_LIBUNWIND := 1
364 NO_LIBDW_DWARF_UNWIND := 1
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200365 else
Arnaldo Carvalho de Melof9ca2d82014-06-05 12:46:04 -0300366 ifneq ($(filter s% -static%,$(LDFLAGS),),)
367 msg := $(error No static glibc found, please install glibc-static);
368 else
369 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]);
370 endif
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200371 endif
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200372 else
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100373 ifndef NO_LIBDW_DWARF_UNWIND
374 ifneq ($(feature-libdw-dwarf-unwind),1)
375 NO_LIBDW_DWARF_UNWIND := 1
376 msg := $(warning No libdw DWARF unwind found, Please install elfutils-devel/libdw-dev >= 0.158 and/or set LIBDW_DIR);
377 endif
378 endif
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200379 ifneq ($(feature-dwarf), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200380 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);
381 NO_DWARF := 1
382 endif # Dwarf support
Ingo Molnar0648f832013-10-02 15:30:35 +0200383 endif # libelf support
Jiri Olsacf4cca12013-03-25 00:45:08 +0100384endif # NO_LIBELF
385
386ifndef NO_LIBELF
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200387 CFLAGS += -DHAVE_LIBELF_SUPPORT
Namhyung Kim5e2d4d02014-11-07 14:20:06 +0900388 EXTLIBS += -lelf
Jiri Olsa709e6792014-12-29 23:52:25 +0100389 $(call detected,CONFIG_LIBELF)
Jiri Olsa779724f2013-03-25 00:48:14 +0100390
Ingo Molnar8869b172013-09-30 15:02:28 +0200391 ifeq ($(feature-libelf-mmap), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200392 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
393 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100394
Ingo Molnarb7bcef62013-09-30 14:35:27 +0200395 ifeq ($(feature-libelf-getphdrnum), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200396 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
397 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100398
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200399 # include ARCH specific config
400 -include $(src-perf)/arch/$(ARCH)/Makefile
401
402 ifndef NO_DWARF
403 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
404 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
405 NO_DWARF := 1
406 else
407 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
408 LDFLAGS += $(LIBDW_LDFLAGS)
Namhyung Kim5e2d4d02014-11-07 14:20:06 +0900409 EXTLIBS += -ldw
Jiri Olsa8379fce2014-12-30 00:06:25 +0100410 $(call detected,CONFIG_DWARF)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200411 endif # PERF_HAVE_DWARF_REGS
412 endif # NO_DWARF
Jiri Olsacf4cca12013-03-25 00:45:08 +0100413endif # NO_LIBELF
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100414
Anton Blanchard65ccb4f2014-08-25 18:25:06 +1000415ifeq ($(ARCH),powerpc)
416 ifndef NO_DWARF
417 CFLAGS += -DHAVE_SKIP_CALLCHAIN_IDX
418 endif
419endif
420
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100421ifndef NO_LIBUNWIND
Ingo Molnar058f9522013-09-30 14:45:44 +0200422 ifneq ($(feature-libunwind), 1)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100423 msg := $(warning No libunwind found. Please install libunwind-dev[el] >= 1.1 and/or set LIBUNWIND_DIR);
Ingo Molnar308e1e72013-10-07 10:30:47 +0200424 NO_LIBUNWIND := 1
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100425 endif
426endif
427
428dwarf-post-unwind := 1
429dwarf-post-unwind-text := BUG
430
431# setup DWARF post unwinder
432ifdef NO_LIBUNWIND
433 ifdef NO_LIBDW_DWARF_UNWIND
434 msg := $(warning Disabling post unwind, no support found.);
435 dwarf-post-unwind := 0
Linus Torvaldsf47671e2013-11-14 08:51:29 +0900436 else
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100437 dwarf-post-unwind-text := libdw
Jiri Olsab2e45c32014-12-30 00:11:11 +0100438 $(call detected,CONFIG_LIBDW_DWARF_UNWIND)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100439 endif
440else
441 dwarf-post-unwind-text := libunwind
Jiri Olsab2e45c32014-12-30 00:11:11 +0100442 $(call detected,CONFIG_LIBUNWIND)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100443 # Enable libunwind support by default.
444 ifndef NO_LIBDW_DWARF_UNWIND
445 NO_LIBDW_DWARF_UNWIND := 1
446 endif
447endif
448
449ifeq ($(dwarf-post-unwind),1)
450 CFLAGS += -DHAVE_DWARF_UNWIND_SUPPORT
Jiri Olsaf39e0422014-12-29 15:03:09 +0100451 $(call detected,CONFIG_DWARF_UNWIND)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100452else
453 NO_DWARF_UNWIND := 1
454endif
455
456ifndef NO_LIBUNWIND
Jean Pihet8ab596a2014-04-28 14:32:33 +0200457 ifeq ($(ARCH),$(filter $(ARCH),arm arm64))
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100458 $(call feature_check,libunwind-debug-frame)
459 ifneq ($(feature-libunwind-debug-frame), 1)
460 msg := $(warning No debug_frame support found in libunwind);
Linus Torvaldsf47671e2013-11-14 08:51:29 +0900461 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
462 endif
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100463 else
464 # non-ARM has no dwarf_find_debug_frame() function:
465 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
466 endif
467 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
468 EXTLIBS += $(LIBUNWIND_LIBS)
469 CFLAGS += $(LIBUNWIND_CFLAGS)
470 LDFLAGS += $(LIBUNWIND_LDFLAGS)
Ingo Molnar058f9522013-09-30 14:45:44 +0200471endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100472
473ifndef NO_LIBAUDIT
Ingo Molnard795a652013-09-30 14:55:31 +0200474 ifneq ($(feature-libaudit), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200475 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
476 NO_LIBAUDIT := 1
477 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200478 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200479 EXTLIBS += -laudit
Jiri Olsa285ab8b2014-12-29 15:13:44 +0100480 $(call detected,CONFIG_AUDIT)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200481 endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100482endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100483
484ifdef NO_NEWT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200485 NO_SLANG=1
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100486endif
487
488ifndef NO_SLANG
Ingo Molnarb9498b52013-09-30 14:57:54 +0200489 ifneq ($(feature-libslang), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200490 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
491 NO_SLANG := 1
492 else
493 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
494 CFLAGS += -I/usr/include/slang
Ingo Molnar89fe8082013-09-30 12:07:11 +0200495 CFLAGS += -DHAVE_SLANG_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200496 EXTLIBS += -lslang
Jiri Olsacf15c742014-12-30 00:27:52 +0100497 $(call detected,CONFIG_SLANG)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200498 endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100499endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100500
501ifndef NO_GTK2
Mark Rutlanda8a5cd82014-01-15 10:44:08 +0000502 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null)
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200503 ifneq ($(feature-gtk2), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200504 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
505 NO_GTK2 := 1
506 else
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200507 ifeq ($(feature-gtk2-infobar), 1)
Namhyung Kimfc672972013-09-13 15:27:43 +0900508 GTK_CFLAGS := -DHAVE_GTK_INFO_BAR_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200509 endif
Ingo Molnar89fe8082013-09-30 12:07:11 +0200510 CFLAGS += -DHAVE_GTK2_SUPPORT
Mark Rutlanda8a5cd82014-01-15 10:44:08 +0000511 GTK_CFLAGS += $(shell $(PKG_CONFIG) --cflags gtk+-2.0 2>/dev/null)
512 GTK_LIBS := $(shell $(PKG_CONFIG) --libs gtk+-2.0 2>/dev/null)
Jiri Olsae2137082013-09-26 20:55:54 +0200513 EXTLIBS += -ldl
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200514 endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100515endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100516
517grep-libs = $(filter -l%,$(1))
518strip-libs = $(filter-out -l%,$(1))
519
520ifdef NO_LIBPERL
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200521 CFLAGS += -DNO_LIBPERL
Jiri Olsa3082cb32013-03-18 00:19:44 +0100522else
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200523 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
524 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
525 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
526 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
527 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
Jiri Olsa3082cb32013-03-18 00:19:44 +0100528
Ingo Molnar7181a672013-09-30 15:15:36 +0200529 ifneq ($(feature-libperl), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200530 CFLAGS += -DNO_LIBPERL
531 NO_LIBPERL := 1
Ingo Molnara954e682015-02-28 09:39:09 +0100532 msg := $(warning Missing perl devel files. Disabling perl scripting support, please install perl-ExtUtils-Embed/libperl-dev);
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200533 else
534 LDFLAGS += $(PERL_EMBED_LDFLAGS)
535 EXTLIBS += $(PERL_EMBED_LIBADD)
Jiri Olsac7355f82014-12-30 13:11:32 +0100536 $(call detected,CONFIG_LIBPERL)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200537 endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100538endif
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100539
David Ahern87419c92013-10-29 10:43:16 -0600540ifeq ($(feature-timerfd), 1)
541 CFLAGS += -DHAVE_TIMERFD_SUPPORT
542else
543 msg := $(warning No timerfd support. Disables 'perf kvm stat live');
544endif
545
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100546disable-python = $(eval $(disable-python_code))
547define disable-python_code
Jiri Olsa9c12cf92013-03-21 11:30:54 +0100548 CFLAGS += -DNO_LIBPYTHON
Ingo Molnar6c5aa232015-02-28 09:33:45 +0100549 $(warning $1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100550 NO_LIBPYTHON := 1
551endef
552
Namhyung Kim56c7d792014-07-29 15:57:19 +0900553ifdef NO_LIBPYTHON
Ingo Molnar6c5aa232015-02-28 09:33:45 +0100554 $(call disable-python,Python support disabled by user)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100555else
556
Namhyung Kim56c7d792014-07-29 15:57:19 +0900557 ifndef PYTHON
Ingo Molnar6c5aa232015-02-28 09:33:45 +0100558 $(call disable-python,No python interpreter was found: disables Python support - please install python-devel/python-dev)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100559 else
Namhyung Kim56c7d792014-07-29 15:57:19 +0900560 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100561
562 ifndef PYTHON_CONFIG
Ingo Molnar6c5aa232015-02-28 09:33:45 +0100563 $(call disable-python,No 'python-config' tool was found: disables Python support - please install python-devel/python-dev)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100564 else
565
566 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
567
568 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
569 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
570 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
571 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
572 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
573
Ingo Molnar97341632013-09-30 15:18:37 +0200574 ifneq ($(feature-libpython), 1)
Ingo Molnar6c5aa232015-02-28 09:33:45 +0100575 $(call disable-python,No 'Python.h' (for Python 2.x support) was found: disables Python support - please install python-devel/python-dev)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100576 else
577
Ingo Molnar95d061c2013-09-30 15:40:04 +0200578 ifneq ($(feature-libpython-version), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100579 $(warning Python 3 is not yet supported; please set)
580 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
581 $(warning If you also have Python 2 installed, then)
582 $(warning try something like:)
583 $(warning $(and ,))
584 $(warning $(and ,) make PYTHON=python2)
585 $(warning $(and ,))
586 $(warning Otherwise, disable Python support entirely:)
587 $(warning $(and ,))
588 $(warning $(and ,) make NO_LIBPYTHON=1)
589 $(warning $(and ,))
590 $(error $(and ,))
591 else
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100592 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100593 EXTLIBS += $(PYTHON_EMBED_LIBADD)
Jiri Olsa7c537462013-05-24 14:35:23 +0200594 LANG_BINDINGS += $(obj-perf)python/perf.so
Jiri Olsac7355f82014-12-30 13:11:32 +0100595 $(call detected,CONFIG_LIBPYTHON)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100596 endif
597 endif
598 endif
599 endif
600endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100601
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200602ifeq ($(feature-libbfd), 1)
Jiri Olsa2cf90402014-04-23 16:53:25 +0200603 EXTLIBS += -lbfd
604
605 # call all detections now so we get correct
606 # status in VF output
607 $(call feature_check,liberty)
608 $(call feature_check,liberty-z)
609 $(call feature_check,cplus-demangle)
610
611 ifeq ($(feature-liberty), 1)
612 EXTLIBS += -liberty
613 else
614 ifeq ($(feature-liberty-z), 1)
615 EXTLIBS += -liberty -lz
616 endif
617 endif
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200618endif
619
Jiri Olsac3cf8362013-03-18 00:38:16 +0100620ifdef NO_DEMANGLE
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200621 CFLAGS += -DNO_DEMANGLE
Jiri Olsac3cf8362013-03-18 00:38:16 +0100622else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200623 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200624 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200625 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200626 else
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200627 ifneq ($(feature-libbfd), 1)
Jiri Olsa2cf90402014-04-23 16:53:25 +0200628 ifneq ($(feature-liberty), 1)
629 ifneq ($(feature-liberty-z), 1)
630 # we dont have neither HAVE_CPLUS_DEMANGLE_SUPPORT
631 # or any of 'bfd iberty z' trinity
Ingo Molnar1c476612013-10-02 15:15:09 +0200632 ifeq ($(feature-cplus-demangle), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200633 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200634 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200635 else
Ingo Molnar0189d7c2015-02-28 09:46:42 +0100636 msg := $(warning No bfd.h/libbfd found, please install binutils-dev[el]/zlib-static/libiberty-dev to gain symbol demangling)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200637 CFLAGS += -DNO_DEMANGLE
638 endif
639 endif
640 endif
641 endif
642 endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100643endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100644
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200645ifneq ($(filter -lbfd,$(EXTLIBS)),)
646 CFLAGS += -DHAVE_LIBBFD_SUPPORT
647endif
648
Namhyung Kime92ce122014-10-31 16:51:38 +0900649ifndef NO_ZLIB
650 ifeq ($(feature-zlib), 1)
651 CFLAGS += -DHAVE_ZLIB_SUPPORT
652 EXTLIBS += -lz
Jiri Olsa1571b692014-12-30 13:31:12 +0100653 $(call detected,CONFIG_ZLIB)
Namhyung Kime92ce122014-10-31 16:51:38 +0900654 else
655 NO_ZLIB := 1
656 endif
657endif
658
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100659ifndef NO_BACKTRACE
Ingo Molnar4cc91172013-09-30 16:49:38 +0200660 ifeq ($(feature-backtrace), 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200661 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200662 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100663endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100664
665ifndef NO_LIBNUMA
Ingo Molnar3ae069c2013-09-30 13:37:10 +0200666 ifeq ($(feature-libnuma), 0)
Dongsheng Yang6305edf2013-12-02 10:26:48 -0500667 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 +0200668 NO_LIBNUMA := 1
669 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200670 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200671 EXTLIBS += -lnuma
Jiri Olsa72965b82014-12-29 13:52:36 +0100672 $(call detected,CONFIG_NUMA)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200673 endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100674endif
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100675
Alexander Yaryginda50ad62014-07-03 17:59:49 +0400676ifdef HAVE_KVM_STAT_SUPPORT
677 CFLAGS += -DHAVE_KVM_STAT_SUPPORT
678endif
679
Adrian Huntere477f3f2014-10-23 18:16:03 -0300680ifeq (${IS_64_BIT}, 1)
681 ifndef NO_PERF_READ_VDSO32
682 $(call feature_check,compile-32)
Adrian Hunter46b1fa82014-10-23 13:45:24 +0300683 ifeq ($(feature-compile-32), 1)
684 CFLAGS += -DHAVE_PERF_READ_VDSO32
685 else
Adrian Huntere477f3f2014-10-23 18:16:03 -0300686 NO_PERF_READ_VDSO32 := 1
687 endif
688 endif
689 ifneq (${IS_X86_64}, 1)
690 NO_PERF_READ_VDSOX32 := 1
691 endif
692 ifndef NO_PERF_READ_VDSOX32
693 $(call feature_check,compile-x32)
Adrian Hunter46b1fa82014-10-23 13:45:24 +0300694 ifeq ($(feature-compile-x32), 1)
695 CFLAGS += -DHAVE_PERF_READ_VDSOX32
696 else
Adrian Huntere477f3f2014-10-23 18:16:03 -0300697 NO_PERF_READ_VDSOX32 := 1
698 endif
699 endif
700else
701 NO_PERF_READ_VDSO32 := 1
702 NO_PERF_READ_VDSOX32 := 1
703endif
704
Jiri Olsa53d0a572015-02-20 23:16:58 +0100705ifndef NO_LIBBABELTRACE
Jiri Olsa97e7a512015-03-11 09:00:41 +0100706 $(call feature_check,libbabeltrace)
707 ifeq ($(feature-libbabeltrace), 1)
Jiri Olsa53d0a572015-02-20 23:16:58 +0100708 CFLAGS += -DHAVE_LIBBABELTRACE_SUPPORT $(LIBBABELTRACE_CFLAGS)
709 LDFLAGS += $(LIBBABELTRACE_LDFLAGS)
710 EXTLIBS += -lbabeltrace-ctf
Jiri Olsaedbe9812015-02-20 23:17:00 +0100711 $(call detected,CONFIG_LIBBABELTRACE)
Jiri Olsa97e7a512015-03-11 09:00:41 +0100712 else
713 msg := $(warning No libbabeltrace found, disables 'perf data' CTF format support, please install libbabeltrace-dev[el]/libbabeltrace-ctf-dev);
714 NO_LIBBABELTRACE := 1
Jiri Olsa53d0a572015-02-20 23:16:58 +0100715 endif
716endif
717
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100718# Among the variables below, these:
719# perfexecdir
720# template_dir
721# mandir
722# infodir
723# htmldir
724# ETC_PERFCONFIG (but not sysconfdir)
725# can be specified as a relative path some/where/else;
726# this is interpreted as relative to $(prefix) and "perf" at
727# runtime figures out where they are based on the path to the executable.
728# This can help installing the suite in a relocatable way.
729
730# Make the path relative to DESTDIR, not to prefix
731ifndef DESTDIR
Jianyu Zhanfc9cabe2014-06-03 00:44:34 +0800732prefix ?= $(HOME)
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100733endif
734bindir_relative = bin
735bindir = $(prefix)/$(bindir_relative)
736mandir = share/man
737infodir = share/info
738perfexecdir = libexec/perf-core
739sharedir = $(prefix)/share
740template_dir = share/perf-core/templates
741htmldir = share/doc/perf-doc
742ifeq ($(prefix),/usr)
743sysconfdir = /etc
744ETC_PERFCONFIG = $(sysconfdir)/perfconfig
745else
746sysconfdir = $(prefix)/etc
747ETC_PERFCONFIG = etc/perfconfig
748endif
Jiri Olsa6997af722014-08-25 16:55:52 +0200749ifndef lib
Namhyung Kimfc672972013-09-13 15:27:43 +0900750ifeq ($(IS_X86_64),1)
751lib = lib64
752else
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100753lib = lib
Namhyung Kimfc672972013-09-13 15:27:43 +0900754endif
Jiri Olsa6997af722014-08-25 16:55:52 +0200755endif # lib
Namhyung Kimfc672972013-09-13 15:27:43 +0900756libdir = $(prefix)/$(lib)
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100757
758# Shell quote (do not use $(call) to accommodate ancient setups);
759ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
760DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
761bindir_SQ = $(subst ','\'',$(bindir))
762mandir_SQ = $(subst ','\'',$(mandir))
763infodir_SQ = $(subst ','\'',$(infodir))
764perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
765template_dir_SQ = $(subst ','\'',$(template_dir))
766htmldir_SQ = $(subst ','\'',$(htmldir))
767prefix_SQ = $(subst ','\'',$(prefix))
768sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
Namhyung Kimfc672972013-09-13 15:27:43 +0900769libdir_SQ = $(subst ','\'',$(libdir))
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100770
771ifneq ($(filter /%,$(firstword $(perfexecdir))),)
772perfexec_instdir = $(perfexecdir)
773else
774perfexec_instdir = $(prefix)/$(perfexecdir)
775endif
776perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))
Jiri Olsa3d7c0142013-12-03 14:09:21 +0100777
778# If we install to $(HOME) we keep the traceevent default:
779# $(HOME)/.traceevent/plugins
780# Otherwise we install plugins into the global $(libdir).
781ifdef DESTDIR
782plugindir=$(libdir)/traceevent/plugins
Josh Boyerb935a582014-01-22 10:01:48 -0500783plugindir_SQ= $(subst ','\'',$(plugindir))
Jiri Olsa3d7c0142013-12-03 14:09:21 +0100784endif
Jiri Olsa0695e572014-02-19 16:52:54 +0100785
786#
787# Print the result of the feature test:
788#
Jiri Olsa8d790762014-02-19 16:52:55 +0100789feature_print_status = $(eval $(feature_print_status_code)) $(info $(MSG))
Jiri Olsa0695e572014-02-19 16:52:54 +0100790
Jiri Olsa8d790762014-02-19 16:52:55 +0100791define feature_print_status_code
Jiri Olsa0695e572014-02-19 16:52:54 +0100792 ifeq ($(feature-$(1)), 1)
793 MSG = $(shell printf '...%30s: [ \033[32mon\033[m ]' $(1))
794 else
795 MSG = $(shell printf '...%30s: [ \033[31mOFF\033[m ]' $(1))
796 endif
797endef
798
Jiri Olsa8d790762014-02-19 16:52:55 +0100799feature_print_var = $(eval $(feature_print_var_code)) $(info $(MSG))
800define feature_print_var_code
801 MSG = $(shell printf '...%30s: %s' $(1) $($(1)))
802endef
803
804feature_print_text = $(eval $(feature_print_text_code)) $(info $(MSG))
805define feature_print_text_code
806 MSG = $(shell printf '...%30s: %s' $(1) $(2))
807endef
808
Jiri Olsa0695e572014-02-19 16:52:54 +0100809PERF_FEATURES := $(foreach feat,$(LIB_FEATURE_TESTS),feature-$(feat)($(feature-$(feat))))
810PERF_FEATURES_FILE := $(shell touch $(OUTPUT)PERF-FEATURES; cat $(OUTPUT)PERF-FEATURES)
811
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100812ifeq ($(dwarf-post-unwind),1)
813 PERF_FEATURES += dwarf-post-unwind($(dwarf-post-unwind-text))
814endif
815
Jiri Olsa0695e572014-02-19 16:52:54 +0100816# The $(display_lib) controls the default detection message
817# output. It's set if:
818# - detected features differes from stored features from
819# last build (in PERF-FEATURES file)
820# - one of the $(LIB_FEATURE_TESTS) is not detected
821# - VF is enabled
822
823ifneq ("$(PERF_FEATURES)","$(PERF_FEATURES_FILE)")
824 $(shell echo "$(PERF_FEATURES)" > $(OUTPUT)PERF-FEATURES)
825 display_lib := 1
826endif
827
828feature_check = $(eval $(feature_check_code))
829define feature_check_code
830 ifneq ($(feature-$(1)), 1)
831 display_lib := 1
832 endif
833endef
834
835$(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_check,$(feat)))
836
837ifeq ($(VF),1)
838 display_lib := 1
839 display_vf := 1
840endif
841
842ifeq ($(display_lib),1)
843 $(info )
844 $(info Auto-detecting system features:)
Jiri Olsa8d790762014-02-19 16:52:55 +0100845 $(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_print_status,$(feat),))
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100846
847 ifeq ($(dwarf-post-unwind),1)
848 $(call feature_print_text,"DWARF post unwind library", $(dwarf-post-unwind-text))
849 endif
Jiri Olsa0695e572014-02-19 16:52:54 +0100850endif
851
852ifeq ($(display_vf),1)
Jiri Olsa8d790762014-02-19 16:52:55 +0100853 $(foreach feat,$(VF_FEATURE_TESTS),$(call feature_print_status,$(feat),))
854 $(info )
855 $(call feature_print_var,prefix)
856 $(call feature_print_var,bindir)
857 $(call feature_print_var,libdir)
858 $(call feature_print_var,sysconfdir)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100859 $(call feature_print_var,LIBUNWIND_DIR)
860 $(call feature_print_var,LIBDW_DIR)
Jiri Olsa0695e572014-02-19 16:52:54 +0100861endif
862
863ifeq ($(display_lib),1)
864 $(info )
865endif
Jiri Olsaf39e0422014-12-29 15:03:09 +0100866
867$(call detected_var,bindir_SQ)
868$(call detected_var,PYTHON_WORD)
869ifneq ($(OUTPUT),)
870$(call detected_var,OUTPUT)
871endif
Jiri Olsa285ab8b2014-12-29 15:13:44 +0100872$(call detected_var,htmldir_SQ)
873$(call detected_var,infodir_SQ)
874$(call detected_var,mandir_SQ)
Jiri Olsa9352aab2014-12-29 17:42:46 +0100875$(call detected_var,ETC_PERFCONFIG_SQ)
876$(call detected_var,prefix_SQ)
877$(call detected_var,perfexecdir_SQ)
Jiri Olsa3b939a62014-12-30 00:16:01 +0100878$(call detected_var,LIBDIR)
Jiri Olsa88aeea02014-12-30 00:34:23 +0100879$(call detected_var,GTK_CFLAGS)
Jiri Olsac7355f82014-12-30 13:11:32 +0100880$(call detected_var,PERL_EMBED_CCOPTS)
881$(call detected_var,PYTHON_EMBED_CCOPTS)