blob: 1f67aa02d240b0ba5c3ae53a55f0ecc03fbfb76a [file] [log] [blame]
Jiri Olsa8bd407b2013-03-15 16:28:49 +01001
Jiri Olsaa6cf5f32014-01-03 15:32:32 +01002ifeq ($(src-perf),)
3src-perf := $(srctree)/tools/perf
Jiri Olsa8bd407b2013-03-15 16:28:49 +01004endif
5
Jiri Olsaa6cf5f32014-01-03 15:32:32 +01006ifeq ($(obj-perf),)
7obj-perf := $(OUTPUT)
8endif
9
10ifneq ($(obj-perf),)
11obj-perf := $(abspath $(obj-perf))/
12endif
13
14LIB_INCLUDE := $(srctree)/tools/lib/
15CFLAGS := $(EXTRA_CFLAGS) $(EXTRA_WARNINGS)
16
17include $(src-perf)/config/Makefile.arch
18
19NO_PERF_REGS := 1
20
21# Additional ARCH settings for x86
22ifeq ($(ARCH),x86)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020023 ifeq (${IS_X86_64}, 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +020024 CFLAGS += -DHAVE_ARCH_X86_64_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020025 ARCH_INCLUDE = ../../arch/x86/lib/memcpy_64.S ../../arch/x86/lib/memset_64.S
Adrian Hunter8a0c4c22013-11-01 15:51:32 +020026 LIBUNWIND_LIBS = -lunwind -lunwind-x86_64
27 else
28 LIBUNWIND_LIBS = -lunwind -lunwind-x86
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020029 endif
30 NO_PERF_REGS := 0
Jiri Olsa8bd407b2013-03-15 16:28:49 +010031endif
Jean Pihet8ab596a2014-04-28 14:32:33 +020032
Will Deacon7495f372013-09-26 12:36:36 +010033ifeq ($(ARCH),arm)
34 NO_PERF_REGS := 0
35 LIBUNWIND_LIBS = -lunwind -lunwind-arm
36endif
Jiri Olsa8bd407b2013-03-15 16:28:49 +010037
Jean Pihet8ab596a2014-04-28 14:32:33 +020038ifeq ($(ARCH),arm64)
39 NO_PERF_REGS := 0
40 LIBUNWIND_LIBS = -lunwind -lunwind-aarch64
41endif
42
Jean Pihet90fa9de2014-05-16 10:41:11 +020043# So far there's only x86 and arm libdw unwind support merged in perf.
Jiri Olsa4dc549e2014-04-20 10:50:00 +020044# Disable it on all other architectures in case libdw unwind
45# support is detected in system. Add supported architectures
46# to the check.
Jean Pihet90fa9de2014-05-16 10:41:11 +020047ifneq ($(ARCH),$(filter $(ARCH),x86 arm))
Jiri Olsa4dc549e2014-04-20 10:50:00 +020048 NO_LIBDW_DWARF_UNWIND := 1
49endif
50
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -070051ifeq ($(ARCH),powerpc)
52 CFLAGS += -DHAVE_SKIP_CALLCHAIN_IDX
53endif
54
Jean Pihet1448fef2013-12-10 13:24:04 +010055ifeq ($(LIBUNWIND_LIBS),)
56 NO_LIBUNWIND := 1
57else
58 #
59 # For linking with debug library, run like:
60 #
61 # make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
62 #
63 ifdef LIBUNWIND_DIR
64 LIBUNWIND_CFLAGS = -I$(LIBUNWIND_DIR)/include
65 LIBUNWIND_LDFLAGS = -L$(LIBUNWIND_DIR)/lib
66 endif
67 LIBUNWIND_LDFLAGS += $(LIBUNWIND_LIBS)
68
69 # Set per-feature check compilation flags
70 FEATURE_CHECK_CFLAGS-libunwind = $(LIBUNWIND_CFLAGS)
71 FEATURE_CHECK_LDFLAGS-libunwind = $(LIBUNWIND_LDFLAGS)
72 FEATURE_CHECK_CFLAGS-libunwind-debug-frame = $(LIBUNWIND_CFLAGS)
73 FEATURE_CHECK_LDFLAGS-libunwind-debug-frame = $(LIBUNWIND_LDFLAGS)
Jean Pihet1448fef2013-12-10 13:24:04 +010074endif
75
Jiri Olsa8bd407b2013-03-15 16:28:49 +010076ifeq ($(NO_PERF_REGS),0)
Ingo Molnar89fe8082013-09-30 12:07:11 +020077 CFLAGS += -DHAVE_PERF_REGS_SUPPORT
Jiri Olsa8bd407b2013-03-15 16:28:49 +010078endif
Jiri Olsaa32f4932013-03-25 00:32:01 +010079
Jiri Olsa45757892014-02-19 16:52:56 +010080ifndef NO_LIBELF
81 # for linking with debug library, run like:
82 # make DEBUG=1 LIBDW_DIR=/opt/libdw/
83 ifdef LIBDW_DIR
84 LIBDW_CFLAGS := -I$(LIBDW_DIR)/include
85 LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib
Jiri Olsa45757892014-02-19 16:52:56 +010086 endif
Ramkumar Ramachandra2c529e42014-03-26 18:44:05 -040087 FEATURE_CHECK_CFLAGS-libdw-dwarf-unwind := $(LIBDW_CFLAGS)
88 FEATURE_CHECK_LDFLAGS-libdw-dwarf-unwind := $(LIBDW_LDFLAGS) -ldw
Jiri Olsa45757892014-02-19 16:52:56 +010089endif
90
Jiri Olsa7c537462013-05-24 14:35:23 +020091# include ARCH specific config
92-include $(src-perf)/arch/$(ARCH)/Makefile
93
Jiri Olsa7c537462013-05-24 14:35:23 +020094include $(src-perf)/config/utilities.mak
Jiri Olsaa32f4932013-03-25 00:32:01 +010095
96ifeq ($(call get-executable,$(FLEX)),)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020097 dummy := $(error Error: $(FLEX) is missing on this system, please install it)
Jiri Olsaa32f4932013-03-25 00:32:01 +010098endif
99
100ifeq ($(call get-executable,$(BISON)),)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200101 dummy := $(error Error: $(BISON) is missing on this system, please install it)
Jiri Olsaa32f4932013-03-25 00:32:01 +0100102endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100103
104# Treat warnings as errors unless directed not to
105ifneq ($(WERROR),0)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200106 CFLAGS += -Werror
Jiri Olsa362493f2013-03-25 00:40:48 +0100107endif
108
Adrian Hunter74af3772013-10-22 10:34:05 +0300109ifndef DEBUG
110 DEBUG := 0
111endif
112
Ingo Molnarfcf92582013-10-10 08:05:25 +0200113ifeq ($(DEBUG),0)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200114 CFLAGS += -O6
Jiri Olsa362493f2013-03-25 00:40:48 +0100115endif
116
117ifdef PARSER_DEBUG
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200118 PARSER_DEBUG_BISON := -t
119 PARSER_DEBUG_FLEX := -d
120 CFLAGS += -DPARSER_DEBUG
Jiri Olsa362493f2013-03-25 00:40:48 +0100121endif
122
Jiri Olsa2fe73742013-04-15 04:32:28 +0200123CFLAGS += -fno-omit-frame-pointer
124CFLAGS += -ggdb3
125CFLAGS += -funwind-tables
126CFLAGS += -Wall
127CFLAGS += -Wextra
128CFLAGS += -std=gnu99
Jiri Olsa9c12cf92013-03-21 11:30:54 +0100129
Mathias Krause6392b4e2014-04-27 18:51:05 +0200130# Enforce a non-executable stack, as we may regress (again) in the future by
131# adding assembler files missing the .GNU-stack linker note.
132LDFLAGS += -Wl,-z,noexecstack
133
David Ahern6d199122013-09-22 19:44:57 -0600134EXTLIBS = -lelf -lpthread -lrt -lm -ldl
Jiri Olsa362493f2013-03-25 00:40:48 +0100135
Ingo Molnar1c2d1d82013-10-03 15:05:56 +0200136ifneq ($(OUTPUT),)
137 OUTPUT_FEATURES = $(OUTPUT)config/feature-checks/
138 $(shell mkdir -p $(OUTPUT_FEATURES))
139endif
140
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200141feature_check = $(eval $(feature_check_code))
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200142define feature_check_code
Chunwei Chen56560ec2013-12-21 13:48:11 +0800143 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 +0200144endef
145
146feature_set = $(eval $(feature_set_code))
147define feature_set_code
148 feature-$(1) := 1
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200149endef
150
151#
152# Build the feature check binaries in parallel, ignore errors, ignore return value and suppress output:
153#
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200154
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200155#
156# Note that this is not a complete list of all feature tests, just
157# those that are typically built on a fully configured system.
158#
159# [ Feature tests not mentioned here have to be built explicitly in
160# the rule that uses them - an example for that is the 'bionic'
161# feature check. ]
162#
163CORE_FEATURE_TESTS = \
164 backtrace \
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200165 dwarf \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200166 fortify-source \
Adrian Hunterf6d31362014-07-14 13:02:53 +0300167 sync-compare-and-swap \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200168 glibc \
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200169 gtk2 \
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200170 gtk2-infobar \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200171 libaudit \
172 libbfd \
173 libelf \
174 libelf-getphdrnum \
175 libelf-mmap \
176 libnuma \
Ingo Molnar7181a672013-09-30 15:15:36 +0200177 libperl \
Ingo Molnar97341632013-09-30 15:18:37 +0200178 libpython \
Ingo Molnar95d061c2013-09-30 15:40:04 +0200179 libpython-version \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200180 libslang \
181 libunwind \
Ingo Molnarbb4c5502013-11-14 08:33:24 +0100182 stackprotector-all \
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100183 timerfd \
184 libdw-dwarf-unwind
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200185
Jiri Olsa0695e572014-02-19 16:52:54 +0100186LIB_FEATURE_TESTS = \
187 dwarf \
188 glibc \
189 gtk2 \
190 libaudit \
191 libbfd \
192 libelf \
193 libnuma \
194 libperl \
195 libpython \
196 libslang \
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100197 libunwind \
198 libdw-dwarf-unwind
Jiri Olsa0695e572014-02-19 16:52:54 +0100199
200VF_FEATURE_TESTS = \
201 backtrace \
202 fortify-source \
Adrian Hunterf6d31362014-07-14 13:02:53 +0300203 sync-compare-and-swap \
Jiri Olsa0695e572014-02-19 16:52:54 +0100204 gtk2-infobar \
205 libelf-getphdrnum \
206 libelf-mmap \
207 libpython-version \
Jiri Olsa0695e572014-02-19 16:52:54 +0100208 stackprotector-all \
209 timerfd \
210 libunwind-debug-frame \
Jiri Olsa2cf90402014-04-23 16:53:25 +0200211 bionic \
212 liberty \
213 liberty-z \
214 cplus-demangle
Jiri Olsa0695e572014-02-19 16:52:54 +0100215
Jiri Olsac4eb6c02014-01-07 13:47:18 +0100216# Set FEATURE_CHECK_(C|LD)FLAGS-all for all CORE_FEATURE_TESTS features.
217# If in the future we need per-feature checks/flags for features not
218# mentioned in this list we need to refactor this ;-).
219set_test_all_flags = $(eval $(set_test_all_flags_code))
220define set_test_all_flags_code
221 FEATURE_CHECK_CFLAGS-all += $(FEATURE_CHECK_CFLAGS-$(1))
222 FEATURE_CHECK_LDFLAGS-all += $(FEATURE_CHECK_LDFLAGS-$(1))
223endef
224
225$(foreach feat,$(CORE_FEATURE_TESTS),$(call set_test_all_flags,$(feat)))
226
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200227#
228# Special fast-path for the 'all features are available' case:
229#
Ingo Molnarb3b64a12013-10-02 10:01:42 +0200230$(call feature_check,all,$(MSG))
231
232#
233# Just in case the build freshly failed, make sure we print the
234# feature matrix:
235#
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200236ifeq ($(feature-all), 1)
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200237 #
238 # test-all.c passed - just set all the core feature flags to 1:
239 #
240 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_set,$(feat)))
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200241else
Chunwei Chen56560ec2013-12-21 13:48:11 +0800242 $(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 +0200243 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_check,$(feat)))
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200244endif
245
Ingo Molnar90ac5422013-09-30 13:48:44 +0200246ifeq ($(feature-stackprotector-all), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200247 CFLAGS += -fstack-protector-all
Jiri Olsa362493f2013-03-25 00:40:48 +0100248endif
249
Ingo Molnarfcf92582013-10-10 08:05:25 +0200250ifeq ($(DEBUG),0)
Ingo Molnar1ea6f992013-10-07 09:38:28 +0200251 ifeq ($(feature-fortify-source), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200252 CFLAGS += -D_FORTIFY_SOURCE=2
253 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100254endif
255
Jiri Olsa2fe73742013-04-15 04:32:28 +0200256CFLAGS += -I$(src-perf)/util/include
257CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
Namhyung Kim8a625c12014-01-09 23:00:52 +0900258CFLAGS += -I$(srctree)/tools/include/
Jiri Olsa2fe73742013-04-15 04:32:28 +0200259CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
260CFLAGS += -I$(srctree)/arch/$(ARCH)/include
261CFLAGS += -I$(srctree)/include/uapi
262CFLAGS += -I$(srctree)/include
Jiri Olsa7c537462013-05-24 14:35:23 +0200263
264# $(obj-perf) for generated common-cmds.h
265# $(obj-perf)/util for generated bison/flex headers
266ifneq ($(OUTPUT),)
Jiri Olsa2fe73742013-04-15 04:32:28 +0200267CFLAGS += -I$(obj-perf)/util
268CFLAGS += -I$(obj-perf)
Jiri Olsa7c537462013-05-24 14:35:23 +0200269endif
270
Jiri Olsa2fe73742013-04-15 04:32:28 +0200271CFLAGS += -I$(src-perf)/util
272CFLAGS += -I$(src-perf)
Robert Richter4e319022013-06-11 17:29:18 +0200273CFLAGS += -I$(LIB_INCLUDE)
Jiri Olsa7c537462013-05-24 14:35:23 +0200274
Jiri Olsa2fe73742013-04-15 04:32:28 +0200275CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
Jiri Olsa362493f2013-03-25 00:40:48 +0100276
Adrian Hunterf6d31362014-07-14 13:02:53 +0300277ifeq ($(feature-sync-compare-and-swap), 1)
278 CFLAGS += -DHAVE_SYNC_COMPARE_AND_SWAP_SUPPORT
279endif
280
Jiri Olsa4e22db42013-05-24 14:35:24 +0200281ifndef NO_BIONIC
David Ahern5febff02013-10-29 10:43:15 -0600282 $(call feature_check,bionic)
Ingo Molnar78e9d652013-09-30 14:11:46 +0200283 ifeq ($(feature-bionic), 1)
284 BIONIC := 1
285 EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
286 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
287 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100288endif
Jiri Olsacf4cca12013-03-25 00:45:08 +0100289
290ifdef NO_LIBELF
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200291 NO_DWARF := 1
292 NO_DEMANGLE := 1
293 NO_LIBUNWIND := 1
Jiri Olsa5ea84152014-02-19 16:52:57 +0100294 NO_LIBDW_DWARF_UNWIND := 1
Jiri Olsacf4cca12013-03-25 00:45:08 +0100295else
Ingo Molnar8f7f8002013-09-30 14:20:25 +0200296 ifeq ($(feature-libelf), 0)
Ingo Molnare12762c2013-10-07 10:34:20 +0200297 ifeq ($(feature-glibc), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200298 LIBC_SUPPORT := 1
299 endif
300 ifeq ($(BIONIC),1)
301 LIBC_SUPPORT := 1
302 endif
303 ifeq ($(LIBC_SUPPORT),1)
304 msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libelf-dev);
Jiri Olsacf4cca12013-03-25 00:45:08 +0100305
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200306 NO_LIBELF := 1
307 NO_DWARF := 1
308 NO_DEMANGLE := 1
Arnaldo Carvalho de Melo94589552014-03-25 09:35:11 -0300309 NO_LIBUNWIND := 1
310 NO_LIBDW_DWARF_UNWIND := 1
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200311 else
Arnaldo Carvalho de Melof9ca2d82014-06-05 12:46:04 -0300312 ifneq ($(filter s% -static%,$(LDFLAGS),),)
313 msg := $(error No static glibc found, please install glibc-static);
314 else
315 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]);
316 endif
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200317 endif
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200318 else
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100319 ifndef NO_LIBDW_DWARF_UNWIND
320 ifneq ($(feature-libdw-dwarf-unwind),1)
321 NO_LIBDW_DWARF_UNWIND := 1
322 msg := $(warning No libdw DWARF unwind found, Please install elfutils-devel/libdw-dev >= 0.158 and/or set LIBDW_DIR);
323 endif
324 endif
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200325 ifneq ($(feature-dwarf), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200326 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);
327 NO_DWARF := 1
328 endif # Dwarf support
Ingo Molnar0648f832013-10-02 15:30:35 +0200329 endif # libelf support
Jiri Olsacf4cca12013-03-25 00:45:08 +0100330endif # NO_LIBELF
331
332ifndef NO_LIBELF
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200333 CFLAGS += -DHAVE_LIBELF_SUPPORT
Jiri Olsa779724f2013-03-25 00:48:14 +0100334
Ingo Molnar8869b172013-09-30 15:02:28 +0200335 ifeq ($(feature-libelf-mmap), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200336 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
337 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100338
Ingo Molnarb7bcef62013-09-30 14:35:27 +0200339 ifeq ($(feature-libelf-getphdrnum), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200340 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
341 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100342
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200343 # include ARCH specific config
344 -include $(src-perf)/arch/$(ARCH)/Makefile
345
346 ifndef NO_DWARF
347 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
348 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
349 NO_DWARF := 1
350 else
351 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
352 LDFLAGS += $(LIBDW_LDFLAGS)
353 EXTLIBS += -lelf -ldw
354 endif # PERF_HAVE_DWARF_REGS
355 endif # NO_DWARF
Jiri Olsacf4cca12013-03-25 00:45:08 +0100356endif # NO_LIBELF
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100357
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100358ifndef NO_LIBUNWIND
Ingo Molnar058f9522013-09-30 14:45:44 +0200359 ifneq ($(feature-libunwind), 1)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100360 msg := $(warning No libunwind found. Please install libunwind-dev[el] >= 1.1 and/or set LIBUNWIND_DIR);
Ingo Molnar308e1e72013-10-07 10:30:47 +0200361 NO_LIBUNWIND := 1
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100362 endif
363endif
364
365dwarf-post-unwind := 1
366dwarf-post-unwind-text := BUG
367
368# setup DWARF post unwinder
369ifdef NO_LIBUNWIND
370 ifdef NO_LIBDW_DWARF_UNWIND
371 msg := $(warning Disabling post unwind, no support found.);
372 dwarf-post-unwind := 0
Linus Torvaldsf47671e2013-11-14 08:51:29 +0900373 else
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100374 dwarf-post-unwind-text := libdw
375 endif
376else
377 dwarf-post-unwind-text := libunwind
378 # Enable libunwind support by default.
379 ifndef NO_LIBDW_DWARF_UNWIND
380 NO_LIBDW_DWARF_UNWIND := 1
381 endif
382endif
383
384ifeq ($(dwarf-post-unwind),1)
385 CFLAGS += -DHAVE_DWARF_UNWIND_SUPPORT
386else
387 NO_DWARF_UNWIND := 1
388endif
389
390ifndef NO_LIBUNWIND
Jean Pihet8ab596a2014-04-28 14:32:33 +0200391 ifeq ($(ARCH),$(filter $(ARCH),arm arm64))
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100392 $(call feature_check,libunwind-debug-frame)
393 ifneq ($(feature-libunwind-debug-frame), 1)
394 msg := $(warning No debug_frame support found in libunwind);
Linus Torvaldsf47671e2013-11-14 08:51:29 +0900395 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
396 endif
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100397 else
398 # non-ARM has no dwarf_find_debug_frame() function:
399 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
400 endif
401 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
402 EXTLIBS += $(LIBUNWIND_LIBS)
403 CFLAGS += $(LIBUNWIND_CFLAGS)
404 LDFLAGS += $(LIBUNWIND_LDFLAGS)
Ingo Molnar058f9522013-09-30 14:45:44 +0200405endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100406
407ifndef NO_LIBAUDIT
Ingo Molnard795a652013-09-30 14:55:31 +0200408 ifneq ($(feature-libaudit), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200409 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
410 NO_LIBAUDIT := 1
411 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200412 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200413 EXTLIBS += -laudit
414 endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100415endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100416
417ifdef NO_NEWT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200418 NO_SLANG=1
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100419endif
420
421ifndef NO_SLANG
Ingo Molnarb9498b52013-09-30 14:57:54 +0200422 ifneq ($(feature-libslang), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200423 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
424 NO_SLANG := 1
425 else
426 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
427 CFLAGS += -I/usr/include/slang
Ingo Molnar89fe8082013-09-30 12:07:11 +0200428 CFLAGS += -DHAVE_SLANG_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200429 EXTLIBS += -lslang
430 endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100431endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100432
433ifndef NO_GTK2
Mark Rutlanda8a5cd82014-01-15 10:44:08 +0000434 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null)
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200435 ifneq ($(feature-gtk2), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200436 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
437 NO_GTK2 := 1
438 else
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200439 ifeq ($(feature-gtk2-infobar), 1)
Namhyung Kimfc672972013-09-13 15:27:43 +0900440 GTK_CFLAGS := -DHAVE_GTK_INFO_BAR_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200441 endif
Ingo Molnar89fe8082013-09-30 12:07:11 +0200442 CFLAGS += -DHAVE_GTK2_SUPPORT
Mark Rutlanda8a5cd82014-01-15 10:44:08 +0000443 GTK_CFLAGS += $(shell $(PKG_CONFIG) --cflags gtk+-2.0 2>/dev/null)
444 GTK_LIBS := $(shell $(PKG_CONFIG) --libs gtk+-2.0 2>/dev/null)
Jiri Olsae2137082013-09-26 20:55:54 +0200445 EXTLIBS += -ldl
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200446 endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100447endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100448
449grep-libs = $(filter -l%,$(1))
450strip-libs = $(filter-out -l%,$(1))
451
452ifdef NO_LIBPERL
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200453 CFLAGS += -DNO_LIBPERL
Jiri Olsa3082cb32013-03-18 00:19:44 +0100454else
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200455 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
456 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
457 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
458 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
459 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
Jiri Olsa3082cb32013-03-18 00:19:44 +0100460
Ingo Molnar7181a672013-09-30 15:15:36 +0200461 ifneq ($(feature-libperl), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200462 CFLAGS += -DNO_LIBPERL
463 NO_LIBPERL := 1
Arnaldo Carvalho de Melo6a2f2542014-05-26 16:02:30 -0300464 msg := $(warning Missing perl devel files. Disabling perl scripting support, consider installing perl-ExtUtils-Embed);
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200465 else
466 LDFLAGS += $(PERL_EMBED_LDFLAGS)
467 EXTLIBS += $(PERL_EMBED_LIBADD)
468 endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100469endif
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100470
David Ahern87419c92013-10-29 10:43:16 -0600471ifeq ($(feature-timerfd), 1)
472 CFLAGS += -DHAVE_TIMERFD_SUPPORT
473else
474 msg := $(warning No timerfd support. Disables 'perf kvm stat live');
475endif
476
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100477disable-python = $(eval $(disable-python_code))
478define disable-python_code
Jiri Olsa9c12cf92013-03-21 11:30:54 +0100479 CFLAGS += -DNO_LIBPYTHON
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100480 $(if $(1),$(warning No $(1) was found))
481 $(warning Python support will not be built)
482 NO_LIBPYTHON := 1
483endef
484
485override PYTHON := \
486 $(call get-executable-or-default,PYTHON,python)
487
488ifndef PYTHON
489 $(call disable-python,python interpreter)
490else
491
492 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
493
494 ifdef NO_LIBPYTHON
495 $(call disable-python)
496 else
497
498 override PYTHON_CONFIG := \
499 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON)-config)
500
501 ifndef PYTHON_CONFIG
502 $(call disable-python,python-config tool)
503 else
504
505 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
506
507 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
508 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
509 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
510 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
511 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
512
Ingo Molnar97341632013-09-30 15:18:37 +0200513 ifneq ($(feature-libpython), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100514 $(call disable-python,Python.h (for Python 2.x))
515 else
516
Ingo Molnar95d061c2013-09-30 15:40:04 +0200517 ifneq ($(feature-libpython-version), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100518 $(warning Python 3 is not yet supported; please set)
519 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
520 $(warning If you also have Python 2 installed, then)
521 $(warning try something like:)
522 $(warning $(and ,))
523 $(warning $(and ,) make PYTHON=python2)
524 $(warning $(and ,))
525 $(warning Otherwise, disable Python support entirely:)
526 $(warning $(and ,))
527 $(warning $(and ,) make NO_LIBPYTHON=1)
528 $(warning $(and ,))
529 $(error $(and ,))
530 else
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100531 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100532 EXTLIBS += $(PYTHON_EMBED_LIBADD)
Jiri Olsa7c537462013-05-24 14:35:23 +0200533 LANG_BINDINGS += $(obj-perf)python/perf.so
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100534 endif
535 endif
536 endif
537 endif
538endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100539
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200540ifeq ($(feature-libbfd), 1)
Jiri Olsa2cf90402014-04-23 16:53:25 +0200541 EXTLIBS += -lbfd
542
543 # call all detections now so we get correct
544 # status in VF output
545 $(call feature_check,liberty)
546 $(call feature_check,liberty-z)
547 $(call feature_check,cplus-demangle)
548
549 ifeq ($(feature-liberty), 1)
550 EXTLIBS += -liberty
551 else
552 ifeq ($(feature-liberty-z), 1)
553 EXTLIBS += -liberty -lz
554 endif
555 endif
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200556endif
557
Jiri Olsac3cf8362013-03-18 00:38:16 +0100558ifdef NO_DEMANGLE
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200559 CFLAGS += -DNO_DEMANGLE
Jiri Olsac3cf8362013-03-18 00:38:16 +0100560else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200561 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200562 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200563 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200564 else
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200565 ifneq ($(feature-libbfd), 1)
Jiri Olsa2cf90402014-04-23 16:53:25 +0200566 ifneq ($(feature-liberty), 1)
567 ifneq ($(feature-liberty-z), 1)
568 # we dont have neither HAVE_CPLUS_DEMANGLE_SUPPORT
569 # or any of 'bfd iberty z' trinity
Ingo Molnar1c476612013-10-02 15:15:09 +0200570 ifeq ($(feature-cplus-demangle), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200571 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200572 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200573 else
574 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
575 CFLAGS += -DNO_DEMANGLE
576 endif
577 endif
578 endif
579 endif
580 endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100581endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100582
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200583ifneq ($(filter -lbfd,$(EXTLIBS)),)
584 CFLAGS += -DHAVE_LIBBFD_SUPPORT
585endif
586
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100587ifndef NO_BACKTRACE
Ingo Molnar4cc91172013-09-30 16:49:38 +0200588 ifeq ($(feature-backtrace), 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200589 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200590 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100591endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100592
593ifndef NO_LIBNUMA
Ingo Molnar3ae069c2013-09-30 13:37:10 +0200594 ifeq ($(feature-libnuma), 0)
Dongsheng Yang6305edf2013-12-02 10:26:48 -0500595 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 +0200596 NO_LIBNUMA := 1
597 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200598 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200599 EXTLIBS += -lnuma
600 endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100601endif
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100602
Alexander Yaryginda50ad62014-07-03 17:59:49 +0400603ifdef HAVE_KVM_STAT_SUPPORT
604 CFLAGS += -DHAVE_KVM_STAT_SUPPORT
605endif
606
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100607# Among the variables below, these:
608# perfexecdir
609# template_dir
610# mandir
611# infodir
612# htmldir
613# ETC_PERFCONFIG (but not sysconfdir)
614# can be specified as a relative path some/where/else;
615# this is interpreted as relative to $(prefix) and "perf" at
616# runtime figures out where they are based on the path to the executable.
617# This can help installing the suite in a relocatable way.
618
619# Make the path relative to DESTDIR, not to prefix
620ifndef DESTDIR
Jianyu Zhanfc9cabe2014-06-03 00:44:34 +0800621prefix ?= $(HOME)
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100622endif
623bindir_relative = bin
624bindir = $(prefix)/$(bindir_relative)
625mandir = share/man
626infodir = share/info
627perfexecdir = libexec/perf-core
628sharedir = $(prefix)/share
629template_dir = share/perf-core/templates
630htmldir = share/doc/perf-doc
631ifeq ($(prefix),/usr)
632sysconfdir = /etc
633ETC_PERFCONFIG = $(sysconfdir)/perfconfig
634else
635sysconfdir = $(prefix)/etc
636ETC_PERFCONFIG = etc/perfconfig
637endif
Namhyung Kimfc672972013-09-13 15:27:43 +0900638ifeq ($(IS_X86_64),1)
639lib = lib64
640else
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100641lib = lib
Namhyung Kimfc672972013-09-13 15:27:43 +0900642endif
643libdir = $(prefix)/$(lib)
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100644
645# Shell quote (do not use $(call) to accommodate ancient setups);
646ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
647DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
648bindir_SQ = $(subst ','\'',$(bindir))
649mandir_SQ = $(subst ','\'',$(mandir))
650infodir_SQ = $(subst ','\'',$(infodir))
651perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
652template_dir_SQ = $(subst ','\'',$(template_dir))
653htmldir_SQ = $(subst ','\'',$(htmldir))
654prefix_SQ = $(subst ','\'',$(prefix))
655sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
Namhyung Kimfc672972013-09-13 15:27:43 +0900656libdir_SQ = $(subst ','\'',$(libdir))
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100657
658ifneq ($(filter /%,$(firstword $(perfexecdir))),)
659perfexec_instdir = $(perfexecdir)
660else
661perfexec_instdir = $(prefix)/$(perfexecdir)
662endif
663perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))
Jiri Olsa3d7c0142013-12-03 14:09:21 +0100664
665# If we install to $(HOME) we keep the traceevent default:
666# $(HOME)/.traceevent/plugins
667# Otherwise we install plugins into the global $(libdir).
668ifdef DESTDIR
669plugindir=$(libdir)/traceevent/plugins
Josh Boyerb935a582014-01-22 10:01:48 -0500670plugindir_SQ= $(subst ','\'',$(plugindir))
Jiri Olsa3d7c0142013-12-03 14:09:21 +0100671endif
Jiri Olsa0695e572014-02-19 16:52:54 +0100672
673#
674# Print the result of the feature test:
675#
Jiri Olsa8d790762014-02-19 16:52:55 +0100676feature_print_status = $(eval $(feature_print_status_code)) $(info $(MSG))
Jiri Olsa0695e572014-02-19 16:52:54 +0100677
Jiri Olsa8d790762014-02-19 16:52:55 +0100678define feature_print_status_code
Jiri Olsa0695e572014-02-19 16:52:54 +0100679 ifeq ($(feature-$(1)), 1)
680 MSG = $(shell printf '...%30s: [ \033[32mon\033[m ]' $(1))
681 else
682 MSG = $(shell printf '...%30s: [ \033[31mOFF\033[m ]' $(1))
683 endif
684endef
685
Jiri Olsa8d790762014-02-19 16:52:55 +0100686feature_print_var = $(eval $(feature_print_var_code)) $(info $(MSG))
687define feature_print_var_code
688 MSG = $(shell printf '...%30s: %s' $(1) $($(1)))
689endef
690
691feature_print_text = $(eval $(feature_print_text_code)) $(info $(MSG))
692define feature_print_text_code
693 MSG = $(shell printf '...%30s: %s' $(1) $(2))
694endef
695
Jiri Olsa0695e572014-02-19 16:52:54 +0100696PERF_FEATURES := $(foreach feat,$(LIB_FEATURE_TESTS),feature-$(feat)($(feature-$(feat))))
697PERF_FEATURES_FILE := $(shell touch $(OUTPUT)PERF-FEATURES; cat $(OUTPUT)PERF-FEATURES)
698
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100699ifeq ($(dwarf-post-unwind),1)
700 PERF_FEATURES += dwarf-post-unwind($(dwarf-post-unwind-text))
701endif
702
Jiri Olsa0695e572014-02-19 16:52:54 +0100703# The $(display_lib) controls the default detection message
704# output. It's set if:
705# - detected features differes from stored features from
706# last build (in PERF-FEATURES file)
707# - one of the $(LIB_FEATURE_TESTS) is not detected
708# - VF is enabled
709
710ifneq ("$(PERF_FEATURES)","$(PERF_FEATURES_FILE)")
711 $(shell echo "$(PERF_FEATURES)" > $(OUTPUT)PERF-FEATURES)
712 display_lib := 1
713endif
714
715feature_check = $(eval $(feature_check_code))
716define feature_check_code
717 ifneq ($(feature-$(1)), 1)
718 display_lib := 1
719 endif
720endef
721
722$(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_check,$(feat)))
723
724ifeq ($(VF),1)
725 display_lib := 1
726 display_vf := 1
727endif
728
729ifeq ($(display_lib),1)
730 $(info )
731 $(info Auto-detecting system features:)
Jiri Olsa8d790762014-02-19 16:52:55 +0100732 $(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_print_status,$(feat),))
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100733
734 ifeq ($(dwarf-post-unwind),1)
735 $(call feature_print_text,"DWARF post unwind library", $(dwarf-post-unwind-text))
736 endif
Jiri Olsa0695e572014-02-19 16:52:54 +0100737endif
738
739ifeq ($(display_vf),1)
Jiri Olsa8d790762014-02-19 16:52:55 +0100740 $(foreach feat,$(VF_FEATURE_TESTS),$(call feature_print_status,$(feat),))
741 $(info )
742 $(call feature_print_var,prefix)
743 $(call feature_print_var,bindir)
744 $(call feature_print_var,libdir)
745 $(call feature_print_var,sysconfdir)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100746 $(call feature_print_var,LIBUNWIND_DIR)
747 $(call feature_print_var,LIBDW_DIR)
Jiri Olsa0695e572014-02-19 16:52:54 +0100748endif
749
750ifeq ($(display_lib),1)
751 $(info )
752endif