blob: 4f100b54ba8bf0a352c9db0ac2f9d7b6f719343d [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
302 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]/glibc-static);
303 endif
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200304 else
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100305 ifndef NO_LIBDW_DWARF_UNWIND
306 ifneq ($(feature-libdw-dwarf-unwind),1)
307 NO_LIBDW_DWARF_UNWIND := 1
308 msg := $(warning No libdw DWARF unwind found, Please install elfutils-devel/libdw-dev >= 0.158 and/or set LIBDW_DIR);
309 endif
310 endif
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200311 ifneq ($(feature-dwarf), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200312 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);
313 NO_DWARF := 1
314 endif # Dwarf support
Ingo Molnar0648f832013-10-02 15:30:35 +0200315 endif # libelf support
Jiri Olsacf4cca12013-03-25 00:45:08 +0100316endif # NO_LIBELF
317
318ifndef NO_LIBELF
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200319 CFLAGS += -DHAVE_LIBELF_SUPPORT
Jiri Olsa779724f2013-03-25 00:48:14 +0100320
Ingo Molnar8869b172013-09-30 15:02:28 +0200321 ifeq ($(feature-libelf-mmap), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200322 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
323 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100324
Ingo Molnarb7bcef62013-09-30 14:35:27 +0200325 ifeq ($(feature-libelf-getphdrnum), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200326 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
327 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100328
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200329 # include ARCH specific config
330 -include $(src-perf)/arch/$(ARCH)/Makefile
331
332 ifndef NO_DWARF
333 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
334 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
335 NO_DWARF := 1
336 else
337 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
338 LDFLAGS += $(LIBDW_LDFLAGS)
339 EXTLIBS += -lelf -ldw
340 endif # PERF_HAVE_DWARF_REGS
341 endif # NO_DWARF
Jiri Olsacf4cca12013-03-25 00:45:08 +0100342endif # NO_LIBELF
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100343
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100344ifndef NO_LIBUNWIND
Ingo Molnar058f9522013-09-30 14:45:44 +0200345 ifneq ($(feature-libunwind), 1)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100346 msg := $(warning No libunwind found. Please install libunwind-dev[el] >= 1.1 and/or set LIBUNWIND_DIR);
Ingo Molnar308e1e72013-10-07 10:30:47 +0200347 NO_LIBUNWIND := 1
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100348 endif
349endif
350
351dwarf-post-unwind := 1
352dwarf-post-unwind-text := BUG
353
354# setup DWARF post unwinder
355ifdef NO_LIBUNWIND
356 ifdef NO_LIBDW_DWARF_UNWIND
357 msg := $(warning Disabling post unwind, no support found.);
358 dwarf-post-unwind := 0
Linus Torvaldsf47671e2013-11-14 08:51:29 +0900359 else
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100360 dwarf-post-unwind-text := libdw
361 endif
362else
363 dwarf-post-unwind-text := libunwind
364 # Enable libunwind support by default.
365 ifndef NO_LIBDW_DWARF_UNWIND
366 NO_LIBDW_DWARF_UNWIND := 1
367 endif
368endif
369
370ifeq ($(dwarf-post-unwind),1)
371 CFLAGS += -DHAVE_DWARF_UNWIND_SUPPORT
372else
373 NO_DWARF_UNWIND := 1
374endif
375
376ifndef NO_LIBUNWIND
Jean Pihet8ab596a2014-04-28 14:32:33 +0200377 ifeq ($(ARCH),$(filter $(ARCH),arm arm64))
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100378 $(call feature_check,libunwind-debug-frame)
379 ifneq ($(feature-libunwind-debug-frame), 1)
380 msg := $(warning No debug_frame support found in libunwind);
Linus Torvaldsf47671e2013-11-14 08:51:29 +0900381 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
382 endif
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100383 else
384 # non-ARM has no dwarf_find_debug_frame() function:
385 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
386 endif
387 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
388 EXTLIBS += $(LIBUNWIND_LIBS)
389 CFLAGS += $(LIBUNWIND_CFLAGS)
390 LDFLAGS += $(LIBUNWIND_LDFLAGS)
Ingo Molnar058f9522013-09-30 14:45:44 +0200391endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100392
393ifndef NO_LIBAUDIT
Ingo Molnard795a652013-09-30 14:55:31 +0200394 ifneq ($(feature-libaudit), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200395 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
396 NO_LIBAUDIT := 1
397 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200398 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200399 EXTLIBS += -laudit
400 endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100401endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100402
403ifdef NO_NEWT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200404 NO_SLANG=1
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100405endif
406
407ifndef NO_SLANG
Ingo Molnarb9498b52013-09-30 14:57:54 +0200408 ifneq ($(feature-libslang), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200409 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
410 NO_SLANG := 1
411 else
412 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
413 CFLAGS += -I/usr/include/slang
Ingo Molnar89fe8082013-09-30 12:07:11 +0200414 CFLAGS += -DHAVE_SLANG_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200415 EXTLIBS += -lslang
416 endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100417endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100418
419ifndef NO_GTK2
Mark Rutlanda8a5cd82014-01-15 10:44:08 +0000420 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null)
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200421 ifneq ($(feature-gtk2), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200422 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
423 NO_GTK2 := 1
424 else
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200425 ifeq ($(feature-gtk2-infobar), 1)
Namhyung Kimfc672972013-09-13 15:27:43 +0900426 GTK_CFLAGS := -DHAVE_GTK_INFO_BAR_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200427 endif
Ingo Molnar89fe8082013-09-30 12:07:11 +0200428 CFLAGS += -DHAVE_GTK2_SUPPORT
Mark Rutlanda8a5cd82014-01-15 10:44:08 +0000429 GTK_CFLAGS += $(shell $(PKG_CONFIG) --cflags gtk+-2.0 2>/dev/null)
430 GTK_LIBS := $(shell $(PKG_CONFIG) --libs gtk+-2.0 2>/dev/null)
Jiri Olsae2137082013-09-26 20:55:54 +0200431 EXTLIBS += -ldl
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200432 endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100433endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100434
435grep-libs = $(filter -l%,$(1))
436strip-libs = $(filter-out -l%,$(1))
437
438ifdef NO_LIBPERL
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200439 CFLAGS += -DNO_LIBPERL
Jiri Olsa3082cb32013-03-18 00:19:44 +0100440else
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200441 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
442 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
443 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
444 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
445 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
Jiri Olsa3082cb32013-03-18 00:19:44 +0100446
Ingo Molnar7181a672013-09-30 15:15:36 +0200447 ifneq ($(feature-libperl), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200448 CFLAGS += -DNO_LIBPERL
449 NO_LIBPERL := 1
Arnaldo Carvalho de Melo6a2f2542014-05-26 16:02:30 -0300450 msg := $(warning Missing perl devel files. Disabling perl scripting support, consider installing perl-ExtUtils-Embed);
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200451 else
452 LDFLAGS += $(PERL_EMBED_LDFLAGS)
453 EXTLIBS += $(PERL_EMBED_LIBADD)
454 endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100455endif
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100456
David Ahern87419c92013-10-29 10:43:16 -0600457ifeq ($(feature-timerfd), 1)
458 CFLAGS += -DHAVE_TIMERFD_SUPPORT
459else
460 msg := $(warning No timerfd support. Disables 'perf kvm stat live');
461endif
462
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100463disable-python = $(eval $(disable-python_code))
464define disable-python_code
Jiri Olsa9c12cf92013-03-21 11:30:54 +0100465 CFLAGS += -DNO_LIBPYTHON
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100466 $(if $(1),$(warning No $(1) was found))
467 $(warning Python support will not be built)
468 NO_LIBPYTHON := 1
469endef
470
471override PYTHON := \
472 $(call get-executable-or-default,PYTHON,python)
473
474ifndef PYTHON
475 $(call disable-python,python interpreter)
476else
477
478 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
479
480 ifdef NO_LIBPYTHON
481 $(call disable-python)
482 else
483
484 override PYTHON_CONFIG := \
485 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON)-config)
486
487 ifndef PYTHON_CONFIG
488 $(call disable-python,python-config tool)
489 else
490
491 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
492
493 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
494 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
495 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
496 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
497 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
498
Ingo Molnar97341632013-09-30 15:18:37 +0200499 ifneq ($(feature-libpython), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100500 $(call disable-python,Python.h (for Python 2.x))
501 else
502
Ingo Molnar95d061c2013-09-30 15:40:04 +0200503 ifneq ($(feature-libpython-version), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100504 $(warning Python 3 is not yet supported; please set)
505 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
506 $(warning If you also have Python 2 installed, then)
507 $(warning try something like:)
508 $(warning $(and ,))
509 $(warning $(and ,) make PYTHON=python2)
510 $(warning $(and ,))
511 $(warning Otherwise, disable Python support entirely:)
512 $(warning $(and ,))
513 $(warning $(and ,) make NO_LIBPYTHON=1)
514 $(warning $(and ,))
515 $(error $(and ,))
516 else
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100517 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100518 EXTLIBS += $(PYTHON_EMBED_LIBADD)
Jiri Olsa7c537462013-05-24 14:35:23 +0200519 LANG_BINDINGS += $(obj-perf)python/perf.so
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100520 endif
521 endif
522 endif
523 endif
524endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100525
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200526ifeq ($(feature-libbfd), 1)
Jiri Olsa2cf90402014-04-23 16:53:25 +0200527 EXTLIBS += -lbfd
528
529 # call all detections now so we get correct
530 # status in VF output
531 $(call feature_check,liberty)
532 $(call feature_check,liberty-z)
533 $(call feature_check,cplus-demangle)
534
535 ifeq ($(feature-liberty), 1)
536 EXTLIBS += -liberty
537 else
538 ifeq ($(feature-liberty-z), 1)
539 EXTLIBS += -liberty -lz
540 endif
541 endif
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200542endif
543
Jiri Olsac3cf8362013-03-18 00:38:16 +0100544ifdef NO_DEMANGLE
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200545 CFLAGS += -DNO_DEMANGLE
Jiri Olsac3cf8362013-03-18 00:38:16 +0100546else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200547 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200548 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200549 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200550 else
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200551 ifneq ($(feature-libbfd), 1)
Jiri Olsa2cf90402014-04-23 16:53:25 +0200552 ifneq ($(feature-liberty), 1)
553 ifneq ($(feature-liberty-z), 1)
554 # we dont have neither HAVE_CPLUS_DEMANGLE_SUPPORT
555 # or any of 'bfd iberty z' trinity
Ingo Molnar1c476612013-10-02 15:15:09 +0200556 ifeq ($(feature-cplus-demangle), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200557 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200558 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200559 else
560 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
561 CFLAGS += -DNO_DEMANGLE
562 endif
563 endif
564 endif
565 endif
566 endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100567endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100568
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200569ifneq ($(filter -lbfd,$(EXTLIBS)),)
570 CFLAGS += -DHAVE_LIBBFD_SUPPORT
571endif
572
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100573ifndef NO_BACKTRACE
Ingo Molnar4cc91172013-09-30 16:49:38 +0200574 ifeq ($(feature-backtrace), 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200575 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200576 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100577endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100578
579ifndef NO_LIBNUMA
Ingo Molnar3ae069c2013-09-30 13:37:10 +0200580 ifeq ($(feature-libnuma), 0)
Dongsheng Yang6305edf2013-12-02 10:26:48 -0500581 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 +0200582 NO_LIBNUMA := 1
583 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200584 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200585 EXTLIBS += -lnuma
586 endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100587endif
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100588
589# Among the variables below, these:
590# perfexecdir
591# template_dir
592# mandir
593# infodir
594# htmldir
595# ETC_PERFCONFIG (but not sysconfdir)
596# can be specified as a relative path some/where/else;
597# this is interpreted as relative to $(prefix) and "perf" at
598# runtime figures out where they are based on the path to the executable.
599# This can help installing the suite in a relocatable way.
600
601# Make the path relative to DESTDIR, not to prefix
602ifndef DESTDIR
Jianyu Zhanfc9cabe2014-06-03 00:44:34 +0800603prefix ?= $(HOME)
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100604endif
605bindir_relative = bin
606bindir = $(prefix)/$(bindir_relative)
607mandir = share/man
608infodir = share/info
609perfexecdir = libexec/perf-core
610sharedir = $(prefix)/share
611template_dir = share/perf-core/templates
612htmldir = share/doc/perf-doc
613ifeq ($(prefix),/usr)
614sysconfdir = /etc
615ETC_PERFCONFIG = $(sysconfdir)/perfconfig
616else
617sysconfdir = $(prefix)/etc
618ETC_PERFCONFIG = etc/perfconfig
619endif
Namhyung Kimfc672972013-09-13 15:27:43 +0900620ifeq ($(IS_X86_64),1)
621lib = lib64
622else
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100623lib = lib
Namhyung Kimfc672972013-09-13 15:27:43 +0900624endif
625libdir = $(prefix)/$(lib)
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100626
627# Shell quote (do not use $(call) to accommodate ancient setups);
628ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
629DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
630bindir_SQ = $(subst ','\'',$(bindir))
631mandir_SQ = $(subst ','\'',$(mandir))
632infodir_SQ = $(subst ','\'',$(infodir))
633perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
634template_dir_SQ = $(subst ','\'',$(template_dir))
635htmldir_SQ = $(subst ','\'',$(htmldir))
636prefix_SQ = $(subst ','\'',$(prefix))
637sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
Namhyung Kimfc672972013-09-13 15:27:43 +0900638libdir_SQ = $(subst ','\'',$(libdir))
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100639
640ifneq ($(filter /%,$(firstword $(perfexecdir))),)
641perfexec_instdir = $(perfexecdir)
642else
643perfexec_instdir = $(prefix)/$(perfexecdir)
644endif
645perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))
Jiri Olsa3d7c0142013-12-03 14:09:21 +0100646
647# If we install to $(HOME) we keep the traceevent default:
648# $(HOME)/.traceevent/plugins
649# Otherwise we install plugins into the global $(libdir).
650ifdef DESTDIR
651plugindir=$(libdir)/traceevent/plugins
Josh Boyerb935a582014-01-22 10:01:48 -0500652plugindir_SQ= $(subst ','\'',$(plugindir))
Jiri Olsa3d7c0142013-12-03 14:09:21 +0100653endif
Jiri Olsa0695e572014-02-19 16:52:54 +0100654
655#
656# Print the result of the feature test:
657#
Jiri Olsa8d790762014-02-19 16:52:55 +0100658feature_print_status = $(eval $(feature_print_status_code)) $(info $(MSG))
Jiri Olsa0695e572014-02-19 16:52:54 +0100659
Jiri Olsa8d790762014-02-19 16:52:55 +0100660define feature_print_status_code
Jiri Olsa0695e572014-02-19 16:52:54 +0100661 ifeq ($(feature-$(1)), 1)
662 MSG = $(shell printf '...%30s: [ \033[32mon\033[m ]' $(1))
663 else
664 MSG = $(shell printf '...%30s: [ \033[31mOFF\033[m ]' $(1))
665 endif
666endef
667
Jiri Olsa8d790762014-02-19 16:52:55 +0100668feature_print_var = $(eval $(feature_print_var_code)) $(info $(MSG))
669define feature_print_var_code
670 MSG = $(shell printf '...%30s: %s' $(1) $($(1)))
671endef
672
673feature_print_text = $(eval $(feature_print_text_code)) $(info $(MSG))
674define feature_print_text_code
675 MSG = $(shell printf '...%30s: %s' $(1) $(2))
676endef
677
Jiri Olsa0695e572014-02-19 16:52:54 +0100678PERF_FEATURES := $(foreach feat,$(LIB_FEATURE_TESTS),feature-$(feat)($(feature-$(feat))))
679PERF_FEATURES_FILE := $(shell touch $(OUTPUT)PERF-FEATURES; cat $(OUTPUT)PERF-FEATURES)
680
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100681ifeq ($(dwarf-post-unwind),1)
682 PERF_FEATURES += dwarf-post-unwind($(dwarf-post-unwind-text))
683endif
684
Jiri Olsa0695e572014-02-19 16:52:54 +0100685# The $(display_lib) controls the default detection message
686# output. It's set if:
687# - detected features differes from stored features from
688# last build (in PERF-FEATURES file)
689# - one of the $(LIB_FEATURE_TESTS) is not detected
690# - VF is enabled
691
692ifneq ("$(PERF_FEATURES)","$(PERF_FEATURES_FILE)")
693 $(shell echo "$(PERF_FEATURES)" > $(OUTPUT)PERF-FEATURES)
694 display_lib := 1
695endif
696
697feature_check = $(eval $(feature_check_code))
698define feature_check_code
699 ifneq ($(feature-$(1)), 1)
700 display_lib := 1
701 endif
702endef
703
704$(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_check,$(feat)))
705
706ifeq ($(VF),1)
707 display_lib := 1
708 display_vf := 1
709endif
710
711ifeq ($(display_lib),1)
712 $(info )
713 $(info Auto-detecting system features:)
Jiri Olsa8d790762014-02-19 16:52:55 +0100714 $(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_print_status,$(feat),))
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100715
716 ifeq ($(dwarf-post-unwind),1)
717 $(call feature_print_text,"DWARF post unwind library", $(dwarf-post-unwind-text))
718 endif
Jiri Olsa0695e572014-02-19 16:52:54 +0100719endif
720
721ifeq ($(display_vf),1)
Jiri Olsa8d790762014-02-19 16:52:55 +0100722 $(foreach feat,$(VF_FEATURE_TESTS),$(call feature_print_status,$(feat),))
723 $(info )
724 $(call feature_print_var,prefix)
725 $(call feature_print_var,bindir)
726 $(call feature_print_var,libdir)
727 $(call feature_print_var,sysconfdir)
Jiri Olsa0a4f2b62014-02-19 16:52:58 +0100728 $(call feature_print_var,LIBUNWIND_DIR)
729 $(call feature_print_var,LIBDW_DIR)
Jiri Olsa0695e572014-02-19 16:52:54 +0100730endif
731
732ifeq ($(display_lib),1)
733 $(info )
734endif