blob: f30ac5e5d27153cd195cd6143a84fba3e27a8916 [file] [log] [blame]
Jiri Olsa8bd407b2013-03-15 16:28:49 +01001
Jiri Olsaa6cf5f32014-01-03 15:32:32 +01002ifeq ($(src-perf),)
3src-perf := $(srctree)/tools/perf
Jiri Olsa8bd407b2013-03-15 16:28:49 +01004endif
5
Jiri Olsaa6cf5f32014-01-03 15:32:32 +01006ifeq ($(obj-perf),)
7obj-perf := $(OUTPUT)
8endif
9
10ifneq ($(obj-perf),)
11obj-perf := $(abspath $(obj-perf))/
12endif
13
14LIB_INCLUDE := $(srctree)/tools/lib/
15CFLAGS := $(EXTRA_CFLAGS) $(EXTRA_WARNINGS)
16
17include $(src-perf)/config/Makefile.arch
18
19NO_PERF_REGS := 1
20
21# Additional ARCH settings for x86
22ifeq ($(ARCH),x86)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020023 ifeq (${IS_X86_64}, 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +020024 CFLAGS += -DHAVE_ARCH_X86_64_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020025 ARCH_INCLUDE = ../../arch/x86/lib/memcpy_64.S ../../arch/x86/lib/memset_64.S
Adrian Hunter8a0c4c22013-11-01 15:51:32 +020026 LIBUNWIND_LIBS = -lunwind -lunwind-x86_64
27 else
28 LIBUNWIND_LIBS = -lunwind -lunwind-x86
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020029 endif
30 NO_PERF_REGS := 0
Jiri Olsa8bd407b2013-03-15 16:28:49 +010031endif
Jean Pihet8ab596a2014-04-28 14:32:33 +020032
Will Deacon7495f372013-09-26 12:36:36 +010033ifeq ($(ARCH),arm)
34 NO_PERF_REGS := 0
35 LIBUNWIND_LIBS = -lunwind -lunwind-arm
36endif
Jiri Olsa8bd407b2013-03-15 16:28:49 +010037
Jean Pihet8ab596a2014-04-28 14:32:33 +020038ifeq ($(ARCH),arm64)
39 NO_PERF_REGS := 0
40 LIBUNWIND_LIBS = -lunwind -lunwind-aarch64
41endif
42
Jean Pihet90fa9de2014-05-16 10:41:11 +020043# So far there's only x86 and arm libdw unwind support merged in perf.
Jiri Olsa4dc549e2014-04-20 10:50:00 +020044# Disable it on all other architectures in case libdw unwind
45# support is detected in system. Add supported architectures
46# to the check.
Jean Pihet90fa9de2014-05-16 10:41:11 +020047ifneq ($(ARCH),$(filter $(ARCH),x86 arm))
Jiri Olsa4dc549e2014-04-20 10:50:00 +020048 NO_LIBDW_DWARF_UNWIND := 1
49endif
50
Jean Pihet1448fef2013-12-10 13:24:04 +010051ifeq ($(LIBUNWIND_LIBS),)
52 NO_LIBUNWIND := 1
53else
54 #
55 # For linking with debug library, run like:
56 #
57 # make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
58 #
59 ifdef LIBUNWIND_DIR
60 LIBUNWIND_CFLAGS = -I$(LIBUNWIND_DIR)/include
61 LIBUNWIND_LDFLAGS = -L$(LIBUNWIND_DIR)/lib
62 endif
63 LIBUNWIND_LDFLAGS += $(LIBUNWIND_LIBS)
64
65 # Set per-feature check compilation flags
66 FEATURE_CHECK_CFLAGS-libunwind = $(LIBUNWIND_CFLAGS)
67 FEATURE_CHECK_LDFLAGS-libunwind = $(LIBUNWIND_LDFLAGS)
68 FEATURE_CHECK_CFLAGS-libunwind-debug-frame = $(LIBUNWIND_CFLAGS)
69 FEATURE_CHECK_LDFLAGS-libunwind-debug-frame = $(LIBUNWIND_LDFLAGS)
Jean Pihet1448fef2013-12-10 13:24:04 +010070endif
71
Jiri Olsa8bd407b2013-03-15 16:28:49 +010072ifeq ($(NO_PERF_REGS),0)
Ingo Molnar89fe8082013-09-30 12:07:11 +020073 CFLAGS += -DHAVE_PERF_REGS_SUPPORT
Jiri Olsa8bd407b2013-03-15 16:28:49 +010074endif
Jiri Olsaa32f4932013-03-25 00:32:01 +010075
Jiri Olsa45757892014-02-19 16:52:56 +010076ifndef NO_LIBELF
77 # for linking with debug library, run like:
78 # make DEBUG=1 LIBDW_DIR=/opt/libdw/
79 ifdef LIBDW_DIR
80 LIBDW_CFLAGS := -I$(LIBDW_DIR)/include
81 LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib
Jiri Olsa45757892014-02-19 16:52:56 +010082 endif
Ramkumar Ramachandra2c529e42014-03-26 18:44:05 -040083 FEATURE_CHECK_CFLAGS-libdw-dwarf-unwind := $(LIBDW_CFLAGS)
84 FEATURE_CHECK_LDFLAGS-libdw-dwarf-unwind := $(LIBDW_LDFLAGS) -ldw
Jiri Olsa45757892014-02-19 16:52:56 +010085endif
86
Jiri Olsa7c537462013-05-24 14:35:23 +020087# include ARCH specific config
88-include $(src-perf)/arch/$(ARCH)/Makefile
89
Jiri Olsa7c537462013-05-24 14:35:23 +020090include $(src-perf)/config/utilities.mak
Jiri Olsaa32f4932013-03-25 00:32:01 +010091
92ifeq ($(call get-executable,$(FLEX)),)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020093 dummy := $(error Error: $(FLEX) is missing on this system, please install it)
Jiri Olsaa32f4932013-03-25 00:32:01 +010094endif
95
96ifeq ($(call get-executable,$(BISON)),)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020097 dummy := $(error Error: $(BISON) is missing on this system, please install it)
Jiri Olsaa32f4932013-03-25 00:32:01 +010098endif
Jiri Olsa362493f2013-03-25 00:40:48 +010099
100# Treat warnings as errors unless directed not to
101ifneq ($(WERROR),0)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200102 CFLAGS += -Werror
Jiri Olsa362493f2013-03-25 00:40:48 +0100103endif
104
Adrian Hunter74af3772013-10-22 10:34:05 +0300105ifndef DEBUG
106 DEBUG := 0
107endif
108
Ingo Molnarfcf92582013-10-10 08:05:25 +0200109ifeq ($(DEBUG),0)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200110 CFLAGS += -O6
Jiri Olsa362493f2013-03-25 00:40:48 +0100111endif
112
113ifdef PARSER_DEBUG
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200114 PARSER_DEBUG_BISON := -t
115 PARSER_DEBUG_FLEX := -d
116 CFLAGS += -DPARSER_DEBUG
Jiri Olsa362493f2013-03-25 00:40:48 +0100117endif
118
Jiri Olsa2fe73742013-04-15 04:32:28 +0200119CFLAGS += -fno-omit-frame-pointer
120CFLAGS += -ggdb3
121CFLAGS += -funwind-tables
122CFLAGS += -Wall
123CFLAGS += -Wextra
124CFLAGS += -std=gnu99
Jiri Olsa9c12cf92013-03-21 11:30:54 +0100125
Mathias Krause6392b4e2014-04-27 18:51:05 +0200126# Enforce a non-executable stack, as we may regress (again) in the future by
127# adding assembler files missing the .GNU-stack linker note.
128LDFLAGS += -Wl,-z,noexecstack
129
David Ahern6d199122013-09-22 19:44:57 -0600130EXTLIBS = -lelf -lpthread -lrt -lm -ldl
Jiri Olsa362493f2013-03-25 00:40:48 +0100131
Ingo Molnar1c2d1d82013-10-03 15:05:56 +0200132ifneq ($(OUTPUT),)
133 OUTPUT_FEATURES = $(OUTPUT)config/feature-checks/
134 $(shell mkdir -p $(OUTPUT_FEATURES))
135endif
136
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200137feature_check = $(eval $(feature_check_code))
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200138define feature_check_code
Chunwei Chen56560ec2013-12-21 13:48:11 +0800139 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 +0200140endef
141
142feature_set = $(eval $(feature_set_code))
143define feature_set_code
144 feature-$(1) := 1
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200145endef
146
147#
148# Build the feature check binaries in parallel, ignore errors, ignore return value and suppress output:
149#
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200150
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200151#
152# Note that this is not a complete list of all feature tests, just
153# those that are typically built on a fully configured system.
154#
155# [ Feature tests not mentioned here have to be built explicitly in
156# the rule that uses them - an example for that is the 'bionic'
157# feature check. ]
158#
159CORE_FEATURE_TESTS = \
160 backtrace \
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200161 dwarf \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200162 fortify-source \
163 glibc \
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200164 gtk2 \
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200165 gtk2-infobar \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200166 libaudit \
167 libbfd \
168 libelf \
169 libelf-getphdrnum \
170 libelf-mmap \
171 libnuma \
Ingo Molnar7181a672013-09-30 15:15:36 +0200172 libperl \
Ingo Molnar97341632013-09-30 15:18:37 +0200173 libpython \
Ingo Molnar95d061c2013-09-30 15:40:04 +0200174 libpython-version \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200175 libslang \
176 libunwind \
Ingo Molnarbb4c5502013-11-14 08:33:24 +0100177 stackprotector-all \
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100178 timerfd \
179 libdw-dwarf-unwind
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200180
Jiri Olsa0695e572014-02-19 16:52:54 +0100181LIB_FEATURE_TESTS = \
182 dwarf \
183 glibc \
184 gtk2 \
185 libaudit \
186 libbfd \
187 libelf \
188 libnuma \
189 libperl \
190 libpython \
191 libslang \
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100192 libunwind \
193 libdw-dwarf-unwind
Jiri Olsa0695e572014-02-19 16:52:54 +0100194
195VF_FEATURE_TESTS = \
196 backtrace \
197 fortify-source \
198 gtk2-infobar \
199 libelf-getphdrnum \
200 libelf-mmap \
201 libpython-version \
Jiri Olsa0695e572014-02-19 16:52:54 +0100202 stackprotector-all \
203 timerfd \
204 libunwind-debug-frame \
Jiri Olsa2cf90402014-04-23 16:53:25 +0200205 bionic \
206 liberty \
207 liberty-z \
208 cplus-demangle
Jiri Olsa0695e572014-02-19 16:52:54 +0100209
Jiri Olsac4eb6c02014-01-07 13:47:18 +0100210# Set FEATURE_CHECK_(C|LD)FLAGS-all for all CORE_FEATURE_TESTS features.
211# If in the future we need per-feature checks/flags for features not
212# mentioned in this list we need to refactor this ;-).
213set_test_all_flags = $(eval $(set_test_all_flags_code))
214define set_test_all_flags_code
215 FEATURE_CHECK_CFLAGS-all += $(FEATURE_CHECK_CFLAGS-$(1))
216 FEATURE_CHECK_LDFLAGS-all += $(FEATURE_CHECK_LDFLAGS-$(1))
217endef
218
219$(foreach feat,$(CORE_FEATURE_TESTS),$(call set_test_all_flags,$(feat)))
220
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200221#
222# Special fast-path for the 'all features are available' case:
223#
Ingo Molnarb3b64a12013-10-02 10:01:42 +0200224$(call feature_check,all,$(MSG))
225
226#
227# Just in case the build freshly failed, make sure we print the
228# feature matrix:
229#
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200230ifeq ($(feature-all), 1)
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200231 #
232 # test-all.c passed - just set all the core feature flags to 1:
233 #
234 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_set,$(feat)))
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200235else
Chunwei Chen56560ec2013-12-21 13:48:11 +0800236 $(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 +0200237 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_check,$(feat)))
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200238endif
239
Ingo Molnar90ac5422013-09-30 13:48:44 +0200240ifeq ($(feature-stackprotector-all), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200241 CFLAGS += -fstack-protector-all
Jiri Olsa362493f2013-03-25 00:40:48 +0100242endif
243
Ingo Molnarfcf92582013-10-10 08:05:25 +0200244ifeq ($(DEBUG),0)
Ingo Molnar1ea6f992013-10-07 09:38:28 +0200245 ifeq ($(feature-fortify-source), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200246 CFLAGS += -D_FORTIFY_SOURCE=2
247 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100248endif
249
Jiri Olsa2fe73742013-04-15 04:32:28 +0200250CFLAGS += -I$(src-perf)/util/include
251CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
Namhyung Kim8a625c12014-01-09 23:00:52 +0900252CFLAGS += -I$(srctree)/tools/include/
Jiri Olsa2fe73742013-04-15 04:32:28 +0200253CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
254CFLAGS += -I$(srctree)/arch/$(ARCH)/include
255CFLAGS += -I$(srctree)/include/uapi
256CFLAGS += -I$(srctree)/include
Jiri Olsa7c537462013-05-24 14:35:23 +0200257
258# $(obj-perf) for generated common-cmds.h
259# $(obj-perf)/util for generated bison/flex headers
260ifneq ($(OUTPUT),)
Jiri Olsa2fe73742013-04-15 04:32:28 +0200261CFLAGS += -I$(obj-perf)/util
262CFLAGS += -I$(obj-perf)
Jiri Olsa7c537462013-05-24 14:35:23 +0200263endif
264
Jiri Olsa2fe73742013-04-15 04:32:28 +0200265CFLAGS += -I$(src-perf)/util
266CFLAGS += -I$(src-perf)
Robert Richter4e319022013-06-11 17:29:18 +0200267CFLAGS += -I$(LIB_INCLUDE)
Jiri Olsa7c537462013-05-24 14:35:23 +0200268
Jiri Olsa2fe73742013-04-15 04:32:28 +0200269CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
Jiri Olsa362493f2013-03-25 00:40:48 +0100270
Jiri Olsa4e22db42013-05-24 14:35:24 +0200271ifndef NO_BIONIC
David Ahern5febff02013-10-29 10:43:15 -0600272 $(call feature_check,bionic)
Ingo Molnar78e9d652013-09-30 14:11:46 +0200273 ifeq ($(feature-bionic), 1)
274 BIONIC := 1
275 EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
276 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
277 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100278endif
Jiri Olsacf4cca12013-03-25 00:45:08 +0100279
280ifdef NO_LIBELF
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200281 NO_DWARF := 1
282 NO_DEMANGLE := 1
283 NO_LIBUNWIND := 1
Jiri Olsa5ea84152014-02-19 16:52:57 +0100284 NO_LIBDW_DWARF_UNWIND := 1
Jiri Olsacf4cca12013-03-25 00:45:08 +0100285else
Ingo Molnar8f7f8002013-09-30 14:20:25 +0200286 ifeq ($(feature-libelf), 0)
Ingo Molnare12762c2013-10-07 10:34:20 +0200287 ifeq ($(feature-glibc), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200288 LIBC_SUPPORT := 1
289 endif
290 ifeq ($(BIONIC),1)
291 LIBC_SUPPORT := 1
292 endif
293 ifeq ($(LIBC_SUPPORT),1)
294 msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libelf-dev);
Jiri Olsacf4cca12013-03-25 00:45:08 +0100295
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200296 NO_LIBELF := 1
297 NO_DWARF := 1
298 NO_DEMANGLE := 1
Arnaldo Carvalho de Melo94589552014-03-25 09:35:11 -0300299 NO_LIBUNWIND := 1
300 NO_LIBDW_DWARF_UNWIND := 1
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200301 else
Arnaldo Carvalho de Melof9ca2d82014-06-05 12:46:04 -0300302 ifneq ($(filter s% -static%,$(LDFLAGS),),)
303 msg := $(error No static glibc found, please install glibc-static);
304 else
305 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]);
306 endif
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200307 endif
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200308 else
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100309 ifndef NO_LIBDW_DWARF_UNWIND
310 ifneq ($(feature-libdw-dwarf-unwind),1)
311 NO_LIBDW_DWARF_UNWIND := 1
312 msg := $(warning No libdw DWARF unwind found, Please install elfutils-devel/libdw-dev >= 0.158 and/or set LIBDW_DIR);
313 endif
314 endif
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200315 ifneq ($(feature-dwarf), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200316 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);
317 NO_DWARF := 1
318 endif # Dwarf support
Ingo Molnar0648f832013-10-02 15:30:35 +0200319 endif # libelf support
Jiri Olsacf4cca12013-03-25 00:45:08 +0100320endif # NO_LIBELF
321
322ifndef NO_LIBELF
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200323 CFLAGS += -DHAVE_LIBELF_SUPPORT
Jiri Olsa779724f2013-03-25 00:48:14 +0100324
Ingo Molnar8869b172013-09-30 15:02:28 +0200325 ifeq ($(feature-libelf-mmap), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200326 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
327 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100328
Ingo Molnarb7bcef62013-09-30 14:35:27 +0200329 ifeq ($(feature-libelf-getphdrnum), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200330 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
331 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100332
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200333 # include ARCH specific config
334 -include $(src-perf)/arch/$(ARCH)/Makefile
335
336 ifndef NO_DWARF
337 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
338 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
339 NO_DWARF := 1
340 else
341 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
342 LDFLAGS += $(LIBDW_LDFLAGS)
343 EXTLIBS += -lelf -ldw
344 endif # PERF_HAVE_DWARF_REGS
345 endif # NO_DWARF
Jiri Olsacf4cca12013-03-25 00:45:08 +0100346endif # NO_LIBELF
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100347
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100348ifndef NO_LIBUNWIND
Ingo Molnar058f9522013-09-30 14:45:44 +0200349 ifneq ($(feature-libunwind), 1)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100350 msg := $(warning No libunwind found. Please install libunwind-dev[el] >= 1.1 and/or set LIBUNWIND_DIR);
Ingo Molnar308e1e72013-10-07 10:30:47 +0200351 NO_LIBUNWIND := 1
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100352 endif
353endif
354
355dwarf-post-unwind := 1
356dwarf-post-unwind-text := BUG
357
358# setup DWARF post unwinder
359ifdef NO_LIBUNWIND
360 ifdef NO_LIBDW_DWARF_UNWIND
361 msg := $(warning Disabling post unwind, no support found.);
362 dwarf-post-unwind := 0
Linus Torvaldsf47671e2013-11-14 08:51:29 +0900363 else
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100364 dwarf-post-unwind-text := libdw
365 endif
366else
367 dwarf-post-unwind-text := libunwind
368 # Enable libunwind support by default.
369 ifndef NO_LIBDW_DWARF_UNWIND
370 NO_LIBDW_DWARF_UNWIND := 1
371 endif
372endif
373
374ifeq ($(dwarf-post-unwind),1)
375 CFLAGS += -DHAVE_DWARF_UNWIND_SUPPORT
376else
377 NO_DWARF_UNWIND := 1
378endif
379
380ifndef NO_LIBUNWIND
Jean Pihet8ab596a2014-04-28 14:32:33 +0200381 ifeq ($(ARCH),$(filter $(ARCH),arm arm64))
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100382 $(call feature_check,libunwind-debug-frame)
383 ifneq ($(feature-libunwind-debug-frame), 1)
384 msg := $(warning No debug_frame support found in libunwind);
Linus Torvaldsf47671e2013-11-14 08:51:29 +0900385 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
386 endif
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100387 else
388 # non-ARM has no dwarf_find_debug_frame() function:
389 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
390 endif
391 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
392 EXTLIBS += $(LIBUNWIND_LIBS)
393 CFLAGS += $(LIBUNWIND_CFLAGS)
394 LDFLAGS += $(LIBUNWIND_LDFLAGS)
Ingo Molnar058f9522013-09-30 14:45:44 +0200395endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100396
397ifndef NO_LIBAUDIT
Ingo Molnard795a652013-09-30 14:55:31 +0200398 ifneq ($(feature-libaudit), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200399 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
400 NO_LIBAUDIT := 1
401 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200402 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200403 EXTLIBS += -laudit
404 endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100405endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100406
407ifdef NO_NEWT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200408 NO_SLANG=1
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100409endif
410
411ifndef NO_SLANG
Ingo Molnarb9498b52013-09-30 14:57:54 +0200412 ifneq ($(feature-libslang), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200413 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
414 NO_SLANG := 1
415 else
416 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
417 CFLAGS += -I/usr/include/slang
Ingo Molnar89fe8082013-09-30 12:07:11 +0200418 CFLAGS += -DHAVE_SLANG_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200419 EXTLIBS += -lslang
420 endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100421endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100422
423ifndef NO_GTK2
Mark Rutlanda8a5cd82014-01-15 10:44:08 +0000424 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null)
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200425 ifneq ($(feature-gtk2), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200426 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
427 NO_GTK2 := 1
428 else
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200429 ifeq ($(feature-gtk2-infobar), 1)
Namhyung Kimfc672972013-09-13 15:27:43 +0900430 GTK_CFLAGS := -DHAVE_GTK_INFO_BAR_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200431 endif
Ingo Molnar89fe8082013-09-30 12:07:11 +0200432 CFLAGS += -DHAVE_GTK2_SUPPORT
Mark Rutlanda8a5cd82014-01-15 10:44:08 +0000433 GTK_CFLAGS += $(shell $(PKG_CONFIG) --cflags gtk+-2.0 2>/dev/null)
434 GTK_LIBS := $(shell $(PKG_CONFIG) --libs gtk+-2.0 2>/dev/null)
Jiri Olsae2137082013-09-26 20:55:54 +0200435 EXTLIBS += -ldl
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200436 endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100437endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100438
439grep-libs = $(filter -l%,$(1))
440strip-libs = $(filter-out -l%,$(1))
441
442ifdef NO_LIBPERL
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200443 CFLAGS += -DNO_LIBPERL
Jiri Olsa3082cb32013-03-18 00:19:44 +0100444else
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200445 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
446 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
447 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
448 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
449 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
Jiri Olsa3082cb32013-03-18 00:19:44 +0100450
Ingo Molnar7181a672013-09-30 15:15:36 +0200451 ifneq ($(feature-libperl), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200452 CFLAGS += -DNO_LIBPERL
453 NO_LIBPERL := 1
Arnaldo Carvalho de Melo6a2f2542014-05-26 16:02:30 -0300454 msg := $(warning Missing perl devel files. Disabling perl scripting support, consider installing perl-ExtUtils-Embed);
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200455 else
456 LDFLAGS += $(PERL_EMBED_LDFLAGS)
457 EXTLIBS += $(PERL_EMBED_LIBADD)
458 endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100459endif
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100460
David Ahern87419c92013-10-29 10:43:16 -0600461ifeq ($(feature-timerfd), 1)
462 CFLAGS += -DHAVE_TIMERFD_SUPPORT
463else
464 msg := $(warning No timerfd support. Disables 'perf kvm stat live');
465endif
466
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100467disable-python = $(eval $(disable-python_code))
468define disable-python_code
Jiri Olsa9c12cf92013-03-21 11:30:54 +0100469 CFLAGS += -DNO_LIBPYTHON
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100470 $(if $(1),$(warning No $(1) was found))
471 $(warning Python support will not be built)
472 NO_LIBPYTHON := 1
473endef
474
475override PYTHON := \
476 $(call get-executable-or-default,PYTHON,python)
477
478ifndef PYTHON
479 $(call disable-python,python interpreter)
480else
481
482 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
483
484 ifdef NO_LIBPYTHON
485 $(call disable-python)
486 else
487
488 override PYTHON_CONFIG := \
489 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON)-config)
490
491 ifndef PYTHON_CONFIG
492 $(call disable-python,python-config tool)
493 else
494
495 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
496
497 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
498 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
499 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
500 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
501 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
502
Ingo Molnar97341632013-09-30 15:18:37 +0200503 ifneq ($(feature-libpython), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100504 $(call disable-python,Python.h (for Python 2.x))
505 else
506
Ingo Molnar95d061c2013-09-30 15:40:04 +0200507 ifneq ($(feature-libpython-version), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100508 $(warning Python 3 is not yet supported; please set)
509 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
510 $(warning If you also have Python 2 installed, then)
511 $(warning try something like:)
512 $(warning $(and ,))
513 $(warning $(and ,) make PYTHON=python2)
514 $(warning $(and ,))
515 $(warning Otherwise, disable Python support entirely:)
516 $(warning $(and ,))
517 $(warning $(and ,) make NO_LIBPYTHON=1)
518 $(warning $(and ,))
519 $(error $(and ,))
520 else
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100521 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100522 EXTLIBS += $(PYTHON_EMBED_LIBADD)
Jiri Olsa7c537462013-05-24 14:35:23 +0200523 LANG_BINDINGS += $(obj-perf)python/perf.so
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100524 endif
525 endif
526 endif
527 endif
528endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100529
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200530ifeq ($(feature-libbfd), 1)
Jiri Olsa2cf90402014-04-23 16:53:25 +0200531 EXTLIBS += -lbfd
532
533 # call all detections now so we get correct
534 # status in VF output
535 $(call feature_check,liberty)
536 $(call feature_check,liberty-z)
537 $(call feature_check,cplus-demangle)
538
539 ifeq ($(feature-liberty), 1)
540 EXTLIBS += -liberty
541 else
542 ifeq ($(feature-liberty-z), 1)
543 EXTLIBS += -liberty -lz
544 endif
545 endif
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200546endif
547
Jiri Olsac3cf8362013-03-18 00:38:16 +0100548ifdef NO_DEMANGLE
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200549 CFLAGS += -DNO_DEMANGLE
Jiri Olsac3cf8362013-03-18 00:38:16 +0100550else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200551 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200552 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200553 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200554 else
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200555 ifneq ($(feature-libbfd), 1)
Jiri Olsa2cf90402014-04-23 16:53:25 +0200556 ifneq ($(feature-liberty), 1)
557 ifneq ($(feature-liberty-z), 1)
558 # we dont have neither HAVE_CPLUS_DEMANGLE_SUPPORT
559 # or any of 'bfd iberty z' trinity
Ingo Molnar1c476612013-10-02 15:15:09 +0200560 ifeq ($(feature-cplus-demangle), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200561 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200562 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200563 else
564 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
565 CFLAGS += -DNO_DEMANGLE
566 endif
567 endif
568 endif
569 endif
570 endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100571endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100572
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200573ifneq ($(filter -lbfd,$(EXTLIBS)),)
574 CFLAGS += -DHAVE_LIBBFD_SUPPORT
575endif
576
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100577ifndef NO_BACKTRACE
Ingo Molnar4cc91172013-09-30 16:49:38 +0200578 ifeq ($(feature-backtrace), 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200579 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200580 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100581endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100582
583ifndef NO_LIBNUMA
Ingo Molnar3ae069c2013-09-30 13:37:10 +0200584 ifeq ($(feature-libnuma), 0)
Dongsheng Yang6305edf2013-12-02 10:26:48 -0500585 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 +0200586 NO_LIBNUMA := 1
587 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200588 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200589 EXTLIBS += -lnuma
590 endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100591endif
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100592
593# Among the variables below, these:
594# perfexecdir
595# template_dir
596# mandir
597# infodir
598# htmldir
599# ETC_PERFCONFIG (but not sysconfdir)
600# can be specified as a relative path some/where/else;
601# this is interpreted as relative to $(prefix) and "perf" at
602# runtime figures out where they are based on the path to the executable.
603# This can help installing the suite in a relocatable way.
604
605# Make the path relative to DESTDIR, not to prefix
606ifndef DESTDIR
Jianyu Zhanfc9cabe2014-06-03 00:44:34 +0800607prefix ?= $(HOME)
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100608endif
609bindir_relative = bin
610bindir = $(prefix)/$(bindir_relative)
611mandir = share/man
612infodir = share/info
613perfexecdir = libexec/perf-core
614sharedir = $(prefix)/share
615template_dir = share/perf-core/templates
616htmldir = share/doc/perf-doc
617ifeq ($(prefix),/usr)
618sysconfdir = /etc
619ETC_PERFCONFIG = $(sysconfdir)/perfconfig
620else
621sysconfdir = $(prefix)/etc
622ETC_PERFCONFIG = etc/perfconfig
623endif
Namhyung Kimfc672972013-09-13 15:27:43 +0900624ifeq ($(IS_X86_64),1)
625lib = lib64
626else
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100627lib = lib
Namhyung Kimfc672972013-09-13 15:27:43 +0900628endif
629libdir = $(prefix)/$(lib)
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100630
631# Shell quote (do not use $(call) to accommodate ancient setups);
632ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
633DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
634bindir_SQ = $(subst ','\'',$(bindir))
635mandir_SQ = $(subst ','\'',$(mandir))
636infodir_SQ = $(subst ','\'',$(infodir))
637perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
638template_dir_SQ = $(subst ','\'',$(template_dir))
639htmldir_SQ = $(subst ','\'',$(htmldir))
640prefix_SQ = $(subst ','\'',$(prefix))
641sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
Namhyung Kimfc672972013-09-13 15:27:43 +0900642libdir_SQ = $(subst ','\'',$(libdir))
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100643
644ifneq ($(filter /%,$(firstword $(perfexecdir))),)
645perfexec_instdir = $(perfexecdir)
646else
647perfexec_instdir = $(prefix)/$(perfexecdir)
648endif
649perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))
Jiri Olsa3d7c0142013-12-03 14:09:21 +0100650
651# If we install to $(HOME) we keep the traceevent default:
652# $(HOME)/.traceevent/plugins
653# Otherwise we install plugins into the global $(libdir).
654ifdef DESTDIR
655plugindir=$(libdir)/traceevent/plugins
Josh Boyerb935a582014-01-22 10:01:48 -0500656plugindir_SQ= $(subst ','\'',$(plugindir))
Jiri Olsa3d7c0142013-12-03 14:09:21 +0100657endif
Jiri Olsa0695e572014-02-19 16:52:54 +0100658
659#
660# Print the result of the feature test:
661#
Jiri Olsa8d790762014-02-19 16:52:55 +0100662feature_print_status = $(eval $(feature_print_status_code)) $(info $(MSG))
Jiri Olsa0695e572014-02-19 16:52:54 +0100663
Jiri Olsa8d790762014-02-19 16:52:55 +0100664define feature_print_status_code
Jiri Olsa0695e572014-02-19 16:52:54 +0100665 ifeq ($(feature-$(1)), 1)
666 MSG = $(shell printf '...%30s: [ \033[32mon\033[m ]' $(1))
667 else
668 MSG = $(shell printf '...%30s: [ \033[31mOFF\033[m ]' $(1))
669 endif
670endef
671
Jiri Olsa8d790762014-02-19 16:52:55 +0100672feature_print_var = $(eval $(feature_print_var_code)) $(info $(MSG))
673define feature_print_var_code
674 MSG = $(shell printf '...%30s: %s' $(1) $($(1)))
675endef
676
677feature_print_text = $(eval $(feature_print_text_code)) $(info $(MSG))
678define feature_print_text_code
679 MSG = $(shell printf '...%30s: %s' $(1) $(2))
680endef
681
Jiri Olsa0695e572014-02-19 16:52:54 +0100682PERF_FEATURES := $(foreach feat,$(LIB_FEATURE_TESTS),feature-$(feat)($(feature-$(feat))))
683PERF_FEATURES_FILE := $(shell touch $(OUTPUT)PERF-FEATURES; cat $(OUTPUT)PERF-FEATURES)
684
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100685ifeq ($(dwarf-post-unwind),1)
686 PERF_FEATURES += dwarf-post-unwind($(dwarf-post-unwind-text))
687endif
688
Jiri Olsa0695e572014-02-19 16:52:54 +0100689# The $(display_lib) controls the default detection message
690# output. It's set if:
691# - detected features differes from stored features from
692# last build (in PERF-FEATURES file)
693# - one of the $(LIB_FEATURE_TESTS) is not detected
694# - VF is enabled
695
696ifneq ("$(PERF_FEATURES)","$(PERF_FEATURES_FILE)")
697 $(shell echo "$(PERF_FEATURES)" > $(OUTPUT)PERF-FEATURES)
698 display_lib := 1
699endif
700
701feature_check = $(eval $(feature_check_code))
702define feature_check_code
703 ifneq ($(feature-$(1)), 1)
704 display_lib := 1
705 endif
706endef
707
708$(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_check,$(feat)))
709
710ifeq ($(VF),1)
711 display_lib := 1
712 display_vf := 1
713endif
714
715ifeq ($(display_lib),1)
716 $(info )
717 $(info Auto-detecting system features:)
Jiri Olsa8d790762014-02-19 16:52:55 +0100718 $(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_print_status,$(feat),))
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100719
720 ifeq ($(dwarf-post-unwind),1)
721 $(call feature_print_text,"DWARF post unwind library", $(dwarf-post-unwind-text))
722 endif
Jiri Olsa0695e572014-02-19 16:52:54 +0100723endif
724
725ifeq ($(display_vf),1)
Jiri Olsa8d790762014-02-19 16:52:55 +0100726 $(foreach feat,$(VF_FEATURE_TESTS),$(call feature_print_status,$(feat),))
727 $(info )
728 $(call feature_print_var,prefix)
729 $(call feature_print_var,bindir)
730 $(call feature_print_var,libdir)
731 $(call feature_print_var,sysconfdir)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100732 $(call feature_print_var,LIBUNWIND_DIR)
733 $(call feature_print_var,LIBDW_DIR)
Jiri Olsa0695e572014-02-19 16:52:54 +0100734endif
735
736ifeq ($(display_lib),1)
737 $(info )
738endif