perf tools: event.h needs asm/perf_regs.h
[deliverable/linux.git] / tools / perf / config / Makefile
CommitLineData
8bd407b9 1
a6cf5f39
JO
2ifeq ($(src-perf),)
3src-perf := $(srctree)/tools/perf
4endif
8bd407b9 5
a6cf5f39
JO
6ifeq ($(obj-perf),)
7obj-perf := $(OUTPUT)
8bd407b9
JO
8endif
9
a6cf5f39
JO
10ifneq ($(obj-perf),)
11obj-perf := $(abspath $(obj-perf))/
12endif
13
52c0a18b 14$(shell printf "" > $(OUTPUT).config-detected)
64227379
AK
15detected = $(shell echo "$(1)=y" >> $(OUTPUT).config-detected)
16detected_var = $(shell echo "$(1)=$($(1))" >> $(OUTPUT).config-detected)
fcfd6611 17
a6cf5f39
JO
18CFLAGS := $(EXTRA_CFLAGS) $(EXTRA_WARNINGS)
19
935e6bd3 20include $(srctree)/tools/scripts/Makefile.arch
a6cf5f39 21
f39e042a
JO
22$(call detected_var,ARCH)
23
a6cf5f39
JO
24NO_PERF_REGS := 1
25
dc642e83
A
26# Additional ARCH settings for ppc
27ifeq ($(ARCH),powerpc)
28 NO_PERF_REGS := 0
c4522469 29 LIBUNWIND_LIBS := -lunwind -lunwind-ppc64
dc642e83
A
30endif
31
a6cf5f39
JO
32# Additional ARCH settings for x86
33ifeq ($(ARCH),x86)
f39e042a 34 $(call detected,CONFIG_X86)
c6e5e9fb 35 ifeq (${IS_64_BIT}, 1)
1b700c99 36 CFLAGS += -DHAVE_ARCH_X86_64_SUPPORT -DHAVE_SYSCALL_TABLE -I$(OUTPUT)arch/x86/include/generated
8e1b3f68 37 ARCH_INCLUDE = ../../arch/x86/lib/memcpy_64.S ../../arch/x86/lib/memset_64.S
8a0c4c28 38 LIBUNWIND_LIBS = -lunwind -lunwind-x86_64
72965b87 39 $(call detected,CONFIG_X86_64)
8a0c4c28 40 else
05b41775 41 LIBUNWIND_LIBS = -lunwind-x86 -llzma -lunwind
8e1b3f68
JO
42 endif
43 NO_PERF_REGS := 0
8bd407b9 44endif
8ab596af 45
7495f374
WD
46ifeq ($(ARCH),arm)
47 NO_PERF_REGS := 0
48 LIBUNWIND_LIBS = -lunwind -lunwind-arm
49endif
8bd407b9 50
8ab596af
JP
51ifeq ($(ARCH),arm64)
52 NO_PERF_REGS := 0
53 LIBUNWIND_LIBS = -lunwind -lunwind-aarch64
54endif
55
3bc3374c
JO
56ifeq ($(NO_PERF_REGS),0)
57 $(call detected,CONFIG_PERF_REGS)
58endif
59
90fa9deb 60# So far there's only x86 and arm libdw unwind support merged in perf.
4dc549e5
JO
61# Disable it on all other architectures in case libdw unwind
62# support is detected in system. Add supported architectures
63# to the check.
90fa9deb 64ifneq ($(ARCH),$(filter $(ARCH),x86 arm))
4dc549e5
JO
65 NO_LIBDW_DWARF_UNWIND := 1
66endif
67
1448fef4
JP
68ifeq ($(LIBUNWIND_LIBS),)
69 NO_LIBUNWIND := 1
1448fef4 70endif
5a155bb7
WN
71#
72# For linking with debug library, run like:
73#
74# make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
75#
195106b9
HK
76
77libunwind_arch_set_flags = $(eval $(libunwind_arch_set_flags_code))
78define libunwind_arch_set_flags_code
79 FEATURE_CHECK_CFLAGS-libunwind-$(1) = -I$(LIBUNWIND_DIR)/include
80 FEATURE_CHECK_LDFLAGS-libunwind-$(1) = -L$(LIBUNWIND_DIR)/lib
81endef
82
5a155bb7
WN
83ifdef LIBUNWIND_DIR
84 LIBUNWIND_CFLAGS = -I$(LIBUNWIND_DIR)/include
85 LIBUNWIND_LDFLAGS = -L$(LIBUNWIND_DIR)/lib
195106b9
HK
86 LIBUNWIND_ARCHS = x86 x86_64 arm aarch64 debug-frame-arm debug-frame-aarch64
87 $(foreach libunwind_arch,$(LIBUNWIND_ARCHS),$(call libunwind_arch_set_flags,$(libunwind_arch)))
5a155bb7 88endif
5a155bb7
WN
89
90# Set per-feature check compilation flags
91FEATURE_CHECK_CFLAGS-libunwind = $(LIBUNWIND_CFLAGS)
403cacb8 92FEATURE_CHECK_LDFLAGS-libunwind = $(LIBUNWIND_LDFLAGS) $(LIBUNWIND_LIBS)
5a155bb7 93FEATURE_CHECK_CFLAGS-libunwind-debug-frame = $(LIBUNWIND_CFLAGS)
403cacb8 94FEATURE_CHECK_LDFLAGS-libunwind-debug-frame = $(LIBUNWIND_LDFLAGS) $(LIBUNWIND_LIBS)
1448fef4 95
8bd407b9 96ifeq ($(NO_PERF_REGS),0)
89fe808a 97 CFLAGS += -DHAVE_PERF_REGS_SUPPORT
8bd407b9 98endif
a32f4936 99
5a155bb7
WN
100# for linking with debug library, run like:
101# make DEBUG=1 LIBDW_DIR=/opt/libdw/
102ifdef LIBDW_DIR
103 LIBDW_CFLAGS := -I$(LIBDW_DIR)/include
104 LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib
45757895 105endif
5a155bb7
WN
106FEATURE_CHECK_CFLAGS-libdw-dwarf-unwind := $(LIBDW_CFLAGS)
107FEATURE_CHECK_LDFLAGS-libdw-dwarf-unwind := $(LIBDW_LDFLAGS) -ldw
45757895 108
5a155bb7
WN
109# for linking with debug library, run like:
110# make DEBUG=1 LIBBABELTRACE_DIR=/opt/libbabeltrace/
111ifdef LIBBABELTRACE_DIR
112 LIBBABELTRACE_CFLAGS := -I$(LIBBABELTRACE_DIR)/include
113 LIBBABELTRACE_LDFLAGS := -L$(LIBBABELTRACE_DIR)/lib
53d0a573 114endif
5a155bb7
WN
115FEATURE_CHECK_CFLAGS-libbabeltrace := $(LIBBABELTRACE_CFLAGS)
116FEATURE_CHECK_LDFLAGS-libbabeltrace := $(LIBBABELTRACE_LDFLAGS) -lbabeltrace-ctf
53d0a573 117
ed63f34c 118FEATURE_CHECK_CFLAGS-bpf = -I. -I$(srctree)/tools/include -I$(srctree)/arch/$(ARCH)/include/uapi -I$(srctree)/include/uapi
7c53746e
JO
119# include ARCH specific config
120-include $(src-perf)/arch/$(ARCH)/Makefile
121
63ab024a
WN
122ifdef PERF_HAVE_ARCH_REGS_QUERY_REGISTER_OFFSET
123 CFLAGS += -DHAVE_ARCH_REGS_QUERY_REGISTER_OFFSET
124endif
125
ca70c24f 126include $(srctree)/tools/scripts/utilities.mak
a32f4936
JO
127
128ifeq ($(call get-executable,$(FLEX)),)
8e1b3f68 129 dummy := $(error Error: $(FLEX) is missing on this system, please install it)
a32f4936
JO
130endif
131
132ifeq ($(call get-executable,$(BISON)),)
8e1b3f68 133 dummy := $(error Error: $(BISON) is missing on this system, please install it)
a32f4936 134endif
362493f0
JO
135
136# Treat warnings as errors unless directed not to
137ifneq ($(WERROR),0)
8e1b3f68 138 CFLAGS += -Werror
362493f0
JO
139endif
140
74af377b
AH
141ifndef DEBUG
142 DEBUG := 0
143endif
144
fcf92585 145ifeq ($(DEBUG),0)
8e1b3f68 146 CFLAGS += -O6
362493f0
JO
147endif
148
149ifdef PARSER_DEBUG
8e1b3f68
JO
150 PARSER_DEBUG_BISON := -t
151 PARSER_DEBUG_FLEX := -d
152 CFLAGS += -DPARSER_DEBUG
9352aaba
JO
153 $(call detected_var,PARSER_DEBUG_BISON)
154 $(call detected_var,PARSER_DEBUG_FLEX)
362493f0
JO
155endif
156
5a155bb7
WN
157# Try different combinations to accommodate systems that only have
158# python[2][-config] in weird combinations but always preferring
159# python2 and python2-config as per pep-0394. If we catch a
160# python[-config] in version 3, the version check will kill it.
161PYTHON2 := $(if $(call get-executable,python2),python2,python)
162override PYTHON := $(call get-executable-or-default,PYTHON,$(PYTHON2))
163PYTHON2_CONFIG := \
164 $(if $(call get-executable,$(PYTHON)-config),$(PYTHON)-config,python-config)
165override PYTHON_CONFIG := \
166 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON2_CONFIG))
56c7d79e 167
5a155bb7 168PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
56c7d79e 169
5a155bb7
WN
170PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
171PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
56c7d79e 172
5a155bb7
WN
173FEATURE_CHECK_CFLAGS-libpython := $(PYTHON_EMBED_CCOPTS)
174FEATURE_CHECK_LDFLAGS-libpython := $(PYTHON_EMBED_LDOPTS)
175FEATURE_CHECK_CFLAGS-libpython-version := $(PYTHON_EMBED_CCOPTS)
176FEATURE_CHECK_LDFLAGS-libpython-version := $(PYTHON_EMBED_LDOPTS)
56c7d79e 177
2fe73746
JO
178CFLAGS += -fno-omit-frame-pointer
179CFLAGS += -ggdb3
180CFLAGS += -funwind-tables
181CFLAGS += -Wall
182CFLAGS += -Wextra
183CFLAGS += -std=gnu99
9c12cf95 184
6392b4eb
MK
185# Enforce a non-executable stack, as we may regress (again) in the future by
186# adding assembler files missing the .GNU-stack linker note.
187LDFLAGS += -Wl,-z,noexecstack
188
5e2d4d0e 189EXTLIBS = -lpthread -lrt -lm -ldl
362493f0 190
96b9e70b 191ifeq ($(FEATURES_DUMP),)
e6c76d62 192include $(srctree)/tools/build/Makefile.feature
96b9e70b
JO
193else
194include $(FEATURES_DUMP)
195endif
baa9c30e 196
90ac5422 197ifeq ($(feature-stackprotector-all), 1)
8e1b3f68 198 CFLAGS += -fstack-protector-all
362493f0
JO
199endif
200
fcf92585 201ifeq ($(DEBUG),0)
1ea6f99e 202 ifeq ($(feature-fortify-source), 1)
8e1b3f68
JO
203 CFLAGS += -D_FORTIFY_SOURCE=2
204 endif
362493f0
JO
205endif
206
2fe73746
JO
207CFLAGS += -I$(src-perf)/util/include
208CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
8a625c1f 209CFLAGS += -I$(srctree)/tools/include/
2fe73746
JO
210CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
211CFLAGS += -I$(srctree)/arch/$(ARCH)/include
cec07f53 212CFLAGS += -I$(srctree)/tools/arch/$(ARCH)/include
2fe73746
JO
213CFLAGS += -I$(srctree)/include/uapi
214CFLAGS += -I$(srctree)/include
7c53746e
JO
215
216# $(obj-perf) for generated common-cmds.h
217# $(obj-perf)/util for generated bison/flex headers
218ifneq ($(OUTPUT),)
2fe73746
JO
219CFLAGS += -I$(obj-perf)/util
220CFLAGS += -I$(obj-perf)
7c53746e
JO
221endif
222
2fe73746
JO
223CFLAGS += -I$(src-perf)/util
224CFLAGS += -I$(src-perf)
9444e874 225CFLAGS += -I$(srctree)/tools/lib/
7c53746e 226
2fe73746 227CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
362493f0 228
f6d31369
AH
229ifeq ($(feature-sync-compare-and-swap), 1)
230 CFLAGS += -DHAVE_SYNC_COMPARE_AND_SWAP_SUPPORT
231endif
232
459a3df7
VG
233ifeq ($(feature-pthread-attr-setaffinity-np), 1)
234 CFLAGS += -DHAVE_PTHREAD_ATTR_SETAFFINITY_NP
235endif
236
4e22db46 237ifndef NO_BIONIC
5febff00 238 $(call feature_check,bionic)
78e9d655
IM
239 ifeq ($(feature-bionic), 1)
240 BIONIC := 1
241 EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
242 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
243 endif
362493f0 244endif
cf4cca10
JO
245
246ifdef NO_LIBELF
8e1b3f68
JO
247 NO_DWARF := 1
248 NO_DEMANGLE := 1
249 NO_LIBUNWIND := 1
5ea84154 250 NO_LIBDW_DWARF_UNWIND := 1
ed63f34c 251 NO_LIBBPF := 1
cf4cca10 252else
8f7f8005 253 ifeq ($(feature-libelf), 0)
e12762cf 254 ifeq ($(feature-glibc), 1)
50eed7a7
IM
255 LIBC_SUPPORT := 1
256 endif
257 ifeq ($(BIONIC),1)
258 LIBC_SUPPORT := 1
259 endif
260 ifeq ($(LIBC_SUPPORT),1)
b573d802 261 msg := $(warning No libelf found, disables 'probe' tool and BPF support in 'perf record', please install libelf-dev, libelf-devel or elfutils-libelf-devel);
50eed7a7
IM
262
263 NO_LIBELF := 1
264 NO_DWARF := 1
265 NO_DEMANGLE := 1
94589557
ACM
266 NO_LIBUNWIND := 1
267 NO_LIBDW_DWARF_UNWIND := 1
ed63f34c 268 NO_LIBBPF := 1
50eed7a7 269 else
f9ca2d89
ACM
270 ifneq ($(filter s% -static%,$(LDFLAGS),),)
271 msg := $(error No static glibc found, please install glibc-static);
272 else
273 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]);
274 endif
50eed7a7 275 endif
8e1b3f68 276 else
0a4f2b6a
JO
277 ifndef NO_LIBDW_DWARF_UNWIND
278 ifneq ($(feature-libdw-dwarf-unwind),1)
279 NO_LIBDW_DWARF_UNWIND := 1
280 msg := $(warning No libdw DWARF unwind found, Please install elfutils-devel/libdw-dev >= 0.158 and/or set LIBDW_DIR);
281 endif
282 endif
8295d4e2 283 ifneq ($(feature-dwarf), 1)
50eed7a7
IM
284 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);
285 NO_DWARF := 1
bd0419e2
ACM
286 else
287 ifneq ($(feature-dwarf_getlocations), 1)
288 msg := $(warning Old libdw.h, finding variables at given 'perf probe' point will not work, install elfutils-devel/libdw-dev >= 0.157);
289 else
290 CFLAGS += -DHAVE_DWARF_GETLOCATIONS
291 endif # dwarf_getlocations
50eed7a7 292 endif # Dwarf support
0648f839 293 endif # libelf support
cf4cca10
JO
294endif # NO_LIBELF
295
76d40849
NR
296ifdef NO_DWARF
297 NO_LIBDW_DWARF_UNWIND := 1
298endif
299
cf4cca10 300ifndef NO_LIBELF
fb3d333b 301 CFLAGS += -DHAVE_LIBELF_SUPPORT
5e2d4d0e 302 EXTLIBS += -lelf
709e6791 303 $(call detected,CONFIG_LIBELF)
779724fd 304
8869b17e 305 ifeq ($(feature-libelf-mmap), 1)
fb3d333b
IM
306 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
307 endif
779724fd 308
b7bcef6f 309 ifeq ($(feature-libelf-getphdrnum), 1)
fb3d333b
IM
310 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
311 endif
312
2492c465
ACM
313 ifeq ($(feature-libelf-getshdrstrndx), 1)
314 CFLAGS += -DHAVE_ELF_GETSHDRSTRNDX_SUPPORT
315 endif
316
fb3d333b
IM
317 ifndef NO_DWARF
318 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
319 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
320 NO_DWARF := 1
321 else
322 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
323 LDFLAGS += $(LIBDW_LDFLAGS)
7aec51cb
AK
324 DWARFLIBS := -ldw
325 ifeq ($(findstring -static,${LDFLAGS}),-static)
326 DWARFLIBS += -lelf -lebl -lz -llzma -lbz2
327 endif
328 EXTLIBS += ${DWARFLIBS}
8379fce4 329 $(call detected,CONFIG_DWARF)
fb3d333b
IM
330 endif # PERF_HAVE_DWARF_REGS
331 endif # NO_DWARF
ed63f34c
WN
332
333 ifndef NO_LIBBPF
334 ifeq ($(feature-bpf), 1)
335 CFLAGS += -DHAVE_LIBBPF_SUPPORT
336 $(call detected,CONFIG_LIBBPF)
337 endif
1c0ed632
WN
338
339 ifndef NO_DWARF
340 ifdef PERF_HAVE_ARCH_REGS_QUERY_REGISTER_OFFSET
341 CFLAGS += -DHAVE_BPF_PROLOGUE
342 $(call detected,CONFIG_BPF_PROLOGUE)
343 else
344 msg := $(warning BPF prologue is not supported by architecture $(ARCH), missing regs_query_register_offset());
345 endif
346 else
347 msg := $(warning DWARF support is off, BPF prologue is disabled);
348 endif
349
ed63f34c 350 endif # NO_LIBBPF
cf4cca10 351endif # NO_LIBELF
0e433feb 352
e12b202f
JO
353ifdef PERF_HAVE_JITDUMP
354 ifndef NO_DWARF
355 $(call detected,CONFIG_JITDUMP)
356 CFLAGS += -DHAVE_JITDUMP
357 endif
358endif
359
65ccb4fa
AB
360ifeq ($(ARCH),powerpc)
361 ifndef NO_DWARF
362 CFLAGS += -DHAVE_SKIP_CALLCHAIN_IDX
363 endif
364endif
365
0e433feb 366ifndef NO_LIBUNWIND
9d8e14d3 367 have_libunwind :=
52ffe0ff
HK
368
369 ifeq ($(feature-libunwind-x86), 1)
370 $(call detected,CONFIG_LIBUNWIND_X86)
371 CFLAGS += -DHAVE_LIBUNWIND_X86_SUPPORT
372 LDFLAGS += -lunwind-x86
906a8276 373 EXTLIBS_LIBUNWIND += -lunwind-x86
52ffe0ff
HK
374 have_libunwind = 1
375 endif
376
057fbfb2
HK
377 ifeq ($(feature-libunwind-aarch64), 1)
378 $(call detected,CONFIG_LIBUNWIND_AARCH64)
379 CFLAGS += -DHAVE_LIBUNWIND_AARCH64_SUPPORT
380 LDFLAGS += -lunwind-aarch64
906a8276 381 EXTLIBS_LIBUNWIND += -lunwind-aarch64
057fbfb2
HK
382 have_libunwind = 1
383 $(call feature_check,libunwind-debug-frame-aarch64)
384 ifneq ($(feature-libunwind-debug-frame-aarch64), 1)
385 msg := $(warning No debug_frame support found in libunwind-aarch64);
386 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME_AARCH64
387 endif
388 endif
389
058f952d 390 ifneq ($(feature-libunwind), 1)
0a4f2b6a 391 msg := $(warning No libunwind found. Please install libunwind-dev[el] >= 1.1 and/or set LIBUNWIND_DIR);
9d8e14d3
HK
392 NO_LOCAL_LIBUNWIND := 1
393 else
394 have_libunwind := 1
395 $(call detected,CONFIG_LOCAL_LIBUNWIND)
396 endif
397
398 ifneq ($(have_libunwind), 1)
308e1e70 399 NO_LIBUNWIND := 1
0a4f2b6a 400 endif
9d8e14d3
HK
401else
402 NO_LOCAL_LIBUNWIND := 1
0a4f2b6a
JO
403endif
404
ed63f34c
WN
405ifndef NO_LIBBPF
406 ifneq ($(feature-bpf), 1)
407 msg := $(warning BPF API too old. Please install recent kernel headers. BPF support in 'perf record' is disabled.)
408 NO_LIBBPF := 1
409 endif
410endif
411
0a4f2b6a
JO
412dwarf-post-unwind := 1
413dwarf-post-unwind-text := BUG
414
415# setup DWARF post unwinder
416ifdef NO_LIBUNWIND
417 ifdef NO_LIBDW_DWARF_UNWIND
418 msg := $(warning Disabling post unwind, no support found.);
419 dwarf-post-unwind := 0
f47671e2 420 else
0a4f2b6a 421 dwarf-post-unwind-text := libdw
b2e45c32 422 $(call detected,CONFIG_LIBDW_DWARF_UNWIND)
0a4f2b6a
JO
423 endif
424else
425 dwarf-post-unwind-text := libunwind
b2e45c32 426 $(call detected,CONFIG_LIBUNWIND)
0a4f2b6a
JO
427 # Enable libunwind support by default.
428 ifndef NO_LIBDW_DWARF_UNWIND
429 NO_LIBDW_DWARF_UNWIND := 1
430 endif
431endif
432
433ifeq ($(dwarf-post-unwind),1)
434 CFLAGS += -DHAVE_DWARF_UNWIND_SUPPORT
f39e042a 435 $(call detected,CONFIG_DWARF_UNWIND)
0a4f2b6a
JO
436else
437 NO_DWARF_UNWIND := 1
438endif
439
9d8e14d3 440ifndef NO_LOCAL_LIBUNWIND
8ab596af 441 ifeq ($(ARCH),$(filter $(ARCH),arm arm64))
0a4f2b6a
JO
442 $(call feature_check,libunwind-debug-frame)
443 ifneq ($(feature-libunwind-debug-frame), 1)
444 msg := $(warning No debug_frame support found in libunwind);
f47671e2
LT
445 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
446 endif
0a4f2b6a
JO
447 else
448 # non-ARM has no dwarf_find_debug_frame() function:
449 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
450 endif
0a4f2b6a 451 EXTLIBS += $(LIBUNWIND_LIBS)
9d8e14d3
HK
452 LDFLAGS += $(LIBUNWIND_LIBS)
453endif
454
455ifndef NO_LIBUNWIND
456 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
0a4f2b6a
JO
457 CFLAGS += $(LIBUNWIND_CFLAGS)
458 LDFLAGS += $(LIBUNWIND_LDFLAGS)
906a8276 459 EXTLIBS += $(EXTLIBS_LIBUNWIND)
058f952d 460endif
a8279525
JO
461
462ifndef NO_LIBAUDIT
d795a658 463 ifneq ($(feature-libaudit), 1)
8e1b3f68
JO
464 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
465 NO_LIBAUDIT := 1
466 else
89fe808a 467 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
8e1b3f68 468 EXTLIBS += -laudit
285ab8bf 469 $(call detected,CONFIG_AUDIT)
8e1b3f68 470 endif
a8279525 471endif
4a8f888a 472
8ee46460
SE
473ifndef NO_LIBCRYPTO
474 ifneq ($(feature-libcrypto), 1)
475 msg := $(warning No libcrypto.h found, disables jitted code injection, please install libssl-devel or libssl-dev);
476 NO_LIBCRYPTO := 1
477 else
478 CFLAGS += -DHAVE_LIBCRYPTO_SUPPORT
479 EXTLIBS += -lcrypto
480 $(call detected,CONFIG_CRYPTO)
481 endif
482endif
483
4a8f888a 484ifdef NO_NEWT
8e1b3f68 485 NO_SLANG=1
4a8f888a
JO
486endif
487
488ifndef NO_SLANG
b9498b50 489 ifneq ($(feature-libslang), 1)
9f776ba1 490 msg := $(warning slang not found, disables TUI support. Please install slang-devel, libslang-dev or libslang2-dev);
8e1b3f68
JO
491 NO_SLANG := 1
492 else
493 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
494 CFLAGS += -I/usr/include/slang
89fe808a 495 CFLAGS += -DHAVE_SLANG_SUPPORT
8e1b3f68 496 EXTLIBS += -lslang
cf15c74c 497 $(call detected,CONFIG_SLANG)
8e1b3f68 498 endif
4a8f888a 499endif
58cabf6a
JO
500
501ifndef NO_GTK2
a8a5cd8b 502 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null)
7ef9e055 503 ifneq ($(feature-gtk2), 1)
8e1b3f68
JO
504 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
505 NO_GTK2 := 1
506 else
c7a79e96 507 ifeq ($(feature-gtk2-infobar), 1)
fc67297b 508 GTK_CFLAGS := -DHAVE_GTK_INFO_BAR_SUPPORT
8e1b3f68 509 endif
89fe808a 510 CFLAGS += -DHAVE_GTK2_SUPPORT
a8a5cd8b
MR
511 GTK_CFLAGS += $(shell $(PKG_CONFIG) --cflags gtk+-2.0 2>/dev/null)
512 GTK_LIBS := $(shell $(PKG_CONFIG) --libs gtk+-2.0 2>/dev/null)
e2137086 513 EXTLIBS += -ldl
8e1b3f68 514 endif
58cabf6a 515endif
3082cb33
JO
516
517grep-libs = $(filter -l%,$(1))
518strip-libs = $(filter-out -l%,$(1))
519
520ifdef NO_LIBPERL
8e1b3f68 521 CFLAGS += -DNO_LIBPERL
3082cb33 522else
8e1b3f68
JO
523 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
524 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
525 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
526 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
527 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
528
7181a671 529 ifneq ($(feature-libperl), 1)
8e1b3f68
JO
530 CFLAGS += -DNO_LIBPERL
531 NO_LIBPERL := 1
a954e684 532 msg := $(warning Missing perl devel files. Disabling perl scripting support, please install perl-ExtUtils-Embed/libperl-dev);
8e1b3f68
JO
533 else
534 LDFLAGS += $(PERL_EMBED_LDFLAGS)
535 EXTLIBS += $(PERL_EMBED_LIBADD)
c7355f84 536 $(call detected,CONFIG_LIBPERL)
8e1b3f68 537 endif
3082cb33 538endif
6e533cf1 539
87419c9a
DA
540ifeq ($(feature-timerfd), 1)
541 CFLAGS += -DHAVE_TIMERFD_SUPPORT
542else
543 msg := $(warning No timerfd support. Disables 'perf kvm stat live');
544endif
545
6e533cf1
JO
546disable-python = $(eval $(disable-python_code))
547define disable-python_code
9c12cf95 548 CFLAGS += -DNO_LIBPYTHON
6c5aa237 549 $(warning $1)
6e533cf1
JO
550 NO_LIBPYTHON := 1
551endef
552
56c7d79e 553ifdef NO_LIBPYTHON
6c5aa237 554 $(call disable-python,Python support disabled by user)
6e533cf1
JO
555else
556
56c7d79e 557 ifndef PYTHON
6c5aa237 558 $(call disable-python,No python interpreter was found: disables Python support - please install python-devel/python-dev)
6e533cf1 559 else
56c7d79e 560 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
6e533cf1
JO
561
562 ifndef PYTHON_CONFIG
6c5aa237 563 $(call disable-python,No 'python-config' tool was found: disables Python support - please install python-devel/python-dev)
6e533cf1
JO
564 else
565
566 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
567
568 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
569 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
11dc0c57 570 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS)) -lutil
6e533cf1
JO
571 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
572 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
573
9734163b 574 ifneq ($(feature-libpython), 1)
6c5aa237 575 $(call disable-python,No 'Python.h' (for Python 2.x support) was found: disables Python support - please install python-devel/python-dev)
6e533cf1
JO
576 else
577
95d061c8 578 ifneq ($(feature-libpython-version), 1)
6e533cf1
JO
579 $(warning Python 3 is not yet supported; please set)
580 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
581 $(warning If you also have Python 2 installed, then)
582 $(warning try something like:)
583 $(warning $(and ,))
584 $(warning $(and ,) make PYTHON=python2)
585 $(warning $(and ,))
586 $(warning Otherwise, disable Python support entirely:)
587 $(warning $(and ,))
588 $(warning $(and ,) make NO_LIBPYTHON=1)
589 $(warning $(and ,))
590 $(error $(and ,))
591 else
1e9f7aad 592 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
6e533cf1 593 EXTLIBS += $(PYTHON_EMBED_LIBADD)
7c53746e 594 LANG_BINDINGS += $(obj-perf)python/perf.so
c7355f84 595 $(call detected,CONFIG_LIBPYTHON)
6e533cf1
JO
596 endif
597 endif
598 endif
599 endif
600endif
c3cf8368 601
3e6a147d 602ifeq ($(feature-libbfd), 1)
2cf90407
JO
603 EXTLIBS += -lbfd
604
605 # call all detections now so we get correct
606 # status in VF output
607 $(call feature_check,liberty)
608 $(call feature_check,liberty-z)
609 $(call feature_check,cplus-demangle)
610
611 ifeq ($(feature-liberty), 1)
612 EXTLIBS += -liberty
613 else
614 ifeq ($(feature-liberty-z), 1)
615 EXTLIBS += -liberty -lz
616 endif
617 endif
3e6a147d
JO
618endif
619
c3cf8368 620ifdef NO_DEMANGLE
8e1b3f68 621 CFLAGS += -DNO_DEMANGLE
c3cf8368 622else
89fe808a 623 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
8e1b3f68 624 EXTLIBS += -liberty
89fe808a 625 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
8e1b3f68 626 else
3e6a147d 627 ifneq ($(feature-libbfd), 1)
2cf90407
JO
628 ifneq ($(feature-liberty), 1)
629 ifneq ($(feature-liberty-z), 1)
630 # we dont have neither HAVE_CPLUS_DEMANGLE_SUPPORT
631 # or any of 'bfd iberty z' trinity
1c47661a 632 ifeq ($(feature-cplus-demangle), 1)
8e1b3f68 633 EXTLIBS += -liberty
89fe808a 634 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
8e1b3f68 635 else
0189d7c4 636 msg := $(warning No bfd.h/libbfd found, please install binutils-dev[el]/zlib-static/libiberty-dev to gain symbol demangling)
8e1b3f68
JO
637 CFLAGS += -DNO_DEMANGLE
638 endif
639 endif
640 endif
641 endif
642 endif
c3cf8368 643endif
a1c7c9e7 644
3e6a147d
JO
645ifneq ($(filter -lbfd,$(EXTLIBS)),)
646 CFLAGS += -DHAVE_LIBBFD_SUPPORT
647endif
648
e92ce12e
NK
649ifndef NO_ZLIB
650 ifeq ($(feature-zlib), 1)
651 CFLAGS += -DHAVE_ZLIB_SUPPORT
652 EXTLIBS += -lz
1571b695 653 $(call detected,CONFIG_ZLIB)
e92ce12e
NK
654 else
655 NO_ZLIB := 1
656 endif
657endif
658
80a32e5b
JO
659ifndef NO_LZMA
660 ifeq ($(feature-lzma), 1)
661 CFLAGS += -DHAVE_LZMA_SUPPORT
662 EXTLIBS += -llzma
663 $(call detected,CONFIG_LZMA)
664 else
665 msg := $(warning No liblzma found, disables xz kernel module decompression, please install xz-devel/liblzma-dev);
666 NO_LZMA := 1
667 endif
668endif
669
a1c7c9e7 670ifndef NO_BACKTRACE
4cc9117a 671 ifeq ($(feature-backtrace), 1)
89fe808a 672 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
8e1b3f68 673 endif
a1c7c9e7 674endif
58a0abd7
JO
675
676ifndef NO_LIBNUMA
3ae069cf 677 ifeq ($(feature-libnuma), 0)
6305edfc 678 msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numactl-devel/libnuma-devel/libnuma-dev);
8e1b3f68
JO
679 NO_LIBNUMA := 1
680 else
f8ac8606
ACM
681 ifeq ($(feature-numa_num_possible_cpus), 0)
682 msg := $(warning Old numa library found, disables 'perf bench numa mem' benchmark, please install numactl-devel/libnuma-devel/libnuma-dev >= 2.0.8);
683 NO_LIBNUMA := 1
684 else
685 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
686 EXTLIBS += -lnuma
687 $(call detected,CONFIG_NUMA)
688 endif
8e1b3f68 689 endif
58a0abd7 690endif
cd1c39f2 691
da50ad69
AY
692ifdef HAVE_KVM_STAT_SUPPORT
693 CFLAGS += -DHAVE_KVM_STAT_SUPPORT
694endif
695
e477f3f0
AH
696ifeq (${IS_64_BIT}, 1)
697 ifndef NO_PERF_READ_VDSO32
698 $(call feature_check,compile-32)
46b1fa85
AH
699 ifeq ($(feature-compile-32), 1)
700 CFLAGS += -DHAVE_PERF_READ_VDSO32
701 else
e477f3f0
AH
702 NO_PERF_READ_VDSO32 := 1
703 endif
704 endif
76aea773 705 ifneq ($(ARCH), x86)
e477f3f0
AH
706 NO_PERF_READ_VDSOX32 := 1
707 endif
708 ifndef NO_PERF_READ_VDSOX32
709 $(call feature_check,compile-x32)
46b1fa85
AH
710 ifeq ($(feature-compile-x32), 1)
711 CFLAGS += -DHAVE_PERF_READ_VDSOX32
712 else
e477f3f0
AH
713 NO_PERF_READ_VDSOX32 := 1
714 endif
715 endif
716else
717 NO_PERF_READ_VDSO32 := 1
718 NO_PERF_READ_VDSOX32 := 1
719endif
720
6ab2b762 721ifdef LIBBABELTRACE
97e7a515
JO
722 $(call feature_check,libbabeltrace)
723 ifeq ($(feature-libbabeltrace), 1)
53d0a573
JO
724 CFLAGS += -DHAVE_LIBBABELTRACE_SUPPORT $(LIBBABELTRACE_CFLAGS)
725 LDFLAGS += $(LIBBABELTRACE_LDFLAGS)
726 EXTLIBS += -lbabeltrace-ctf
edbe9817 727 $(call detected,CONFIG_LIBBABELTRACE)
97e7a515
JO
728 else
729 msg := $(warning No libbabeltrace found, disables 'perf data' CTF format support, please install libbabeltrace-dev[el]/libbabeltrace-ctf-dev);
53d0a573
JO
730 endif
731endif
732
e31f0d01 733ifndef NO_AUXTRACE
b0063dbf
ACM
734 ifeq ($(feature-get_cpuid), 0)
735 msg := $(warning Your gcc lacks the __get_cpuid() builtin, disables support for auxtrace/Intel PT, please install a newer gcc);
736 NO_AUXTRACE := 1
737 else
738 $(call detected,CONFIG_AUXTRACE)
739 CFLAGS += -DHAVE_AUXTRACE_SUPPORT
740 endif
e31f0d01
AH
741endif
742
cd1c39f2
JO
743# Among the variables below, these:
744# perfexecdir
745# template_dir
746# mandir
747# infodir
748# htmldir
749# ETC_PERFCONFIG (but not sysconfdir)
750# can be specified as a relative path some/where/else;
751# this is interpreted as relative to $(prefix) and "perf" at
752# runtime figures out where they are based on the path to the executable.
753# This can help installing the suite in a relocatable way.
754
755# Make the path relative to DESTDIR, not to prefix
756ifndef DESTDIR
fc9cabea 757prefix ?= $(HOME)
cd1c39f2
JO
758endif
759bindir_relative = bin
0927beec 760bindir = $(abspath $(prefix)/$(bindir_relative))
cd1c39f2
JO
761mandir = share/man
762infodir = share/info
763perfexecdir = libexec/perf-core
764sharedir = $(prefix)/share
765template_dir = share/perf-core/templates
005438a8 766STRACE_GROUPS_DIR = share/perf-core/strace/groups
cd1c39f2 767htmldir = share/doc/perf-doc
14cbfbeb 768tipdir = share/doc/perf-tip
84cfac7f 769srcdir = $(srctree)/tools/perf
cd1c39f2
JO
770ifeq ($(prefix),/usr)
771sysconfdir = /etc
772ETC_PERFCONFIG = $(sysconfdir)/perfconfig
773else
774sysconfdir = $(prefix)/etc
775ETC_PERFCONFIG = etc/perfconfig
776endif
6997af72 777ifndef lib
76aea773 778ifeq ($(ARCH)$(IS_64_BIT), x861)
fc67297b
NK
779lib = lib64
780else
cd1c39f2 781lib = lib
fc67297b 782endif
6997af72 783endif # lib
fc67297b 784libdir = $(prefix)/$(lib)
cd1c39f2
JO
785
786# Shell quote (do not use $(call) to accommodate ancient setups);
787ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
005438a8 788STRACE_GROUPS_DIR_SQ = $(subst ','\'',$(STRACE_GROUPS_DIR))
cd1c39f2
JO
789DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
790bindir_SQ = $(subst ','\'',$(bindir))
791mandir_SQ = $(subst ','\'',$(mandir))
792infodir_SQ = $(subst ','\'',$(infodir))
793perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
794template_dir_SQ = $(subst ','\'',$(template_dir))
795htmldir_SQ = $(subst ','\'',$(htmldir))
14cbfbeb 796tipdir_SQ = $(subst ','\'',$(tipdir))
cd1c39f2
JO
797prefix_SQ = $(subst ','\'',$(prefix))
798sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
fc67297b 799libdir_SQ = $(subst ','\'',$(libdir))
84cfac7f 800srcdir_SQ = $(subst ','\'',$(srcdir))
cd1c39f2
JO
801
802ifneq ($(filter /%,$(firstword $(perfexecdir))),)
803perfexec_instdir = $(perfexecdir)
005438a8 804STRACE_GROUPS_INSTDIR = $(STRACE_GROUPS_DIR)
14cbfbeb 805tip_instdir = $(tipdir)
cd1c39f2
JO
806else
807perfexec_instdir = $(prefix)/$(perfexecdir)
005438a8 808STRACE_GROUPS_INSTDIR = $(prefix)/$(STRACE_GROUPS_DIR)
14cbfbeb 809tip_instdir = $(prefix)/$(tipdir)
cd1c39f2
JO
810endif
811perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))
005438a8 812STRACE_GROUPS_INSTDIR_SQ = $(subst ','\'',$(STRACE_GROUPS_INSTDIR))
14cbfbeb 813tip_instdir_SQ = $(subst ','\'',$(tip_instdir))
3d7c0144
JO
814
815# If we install to $(HOME) we keep the traceevent default:
816# $(HOME)/.traceevent/plugins
817# Otherwise we install plugins into the global $(libdir).
818ifdef DESTDIR
819plugindir=$(libdir)/traceevent/plugins
b935a58d 820plugindir_SQ= $(subst ','\'',$(plugindir))
3d7c0144 821endif
0695e57b 822
4b20d684
JO
823print_var = $(eval $(print_var_code)) $(info $(MSG))
824define print_var_code
8d79076a
JO
825 MSG = $(shell printf '...%30s: %s' $(1) $($(1)))
826endef
827
0695e57b 828ifeq ($(VF),1)
4b20d684
JO
829 $(call print_var,prefix)
830 $(call print_var,bindir)
831 $(call print_var,libdir)
832 $(call print_var,sysconfdir)
833 $(call print_var,LIBUNWIND_DIR)
834 $(call print_var,LIBDW_DIR)
76ee2ff3
JO
835
836 ifeq ($(dwarf-post-unwind),1)
837 $(call feature_print_text,"DWARF post unwind library", $(dwarf-post-unwind-text))
838 endif
0695e57b
JO
839 $(info )
840endif
f39e042a
JO
841
842$(call detected_var,bindir_SQ)
843$(call detected_var,PYTHON_WORD)
844ifneq ($(OUTPUT),)
845$(call detected_var,OUTPUT)
846endif
285ab8bf
JO
847$(call detected_var,htmldir_SQ)
848$(call detected_var,infodir_SQ)
849$(call detected_var,mandir_SQ)
9352aaba 850$(call detected_var,ETC_PERFCONFIG_SQ)
005438a8 851$(call detected_var,STRACE_GROUPS_DIR_SQ)
9352aaba
JO
852$(call detected_var,prefix_SQ)
853$(call detected_var,perfexecdir_SQ)
14cbfbeb 854$(call detected_var,tipdir_SQ)
84cfac7f 855$(call detected_var,srcdir_SQ)
3b939a63 856$(call detected_var,LIBDIR)
88aeea06 857$(call detected_var,GTK_CFLAGS)
c7355f84
JO
858$(call detected_var,PERL_EMBED_CCOPTS)
859$(call detected_var,PYTHON_EMBED_CCOPTS)
This page took 0.153349 seconds and 5 git commands to generate.