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