Merge tag 'perf-core-for-mingo-20160712' of git://git.kernel.org/pub/scm/linux/kernel...
[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)/tools/arch/$(ARCH)/include/uapi -I$(srctree)/tools/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/uapi
210 CFLAGS += -I$(srctree)/tools/include/
211 CFLAGS += -I$(srctree)/tools/arch/$(ARCH)/include/uapi
212 CFLAGS += -I$(srctree)/tools/arch/$(ARCH)/include/
213 CFLAGS += -I$(srctree)/tools/arch/$(ARCH)/
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-gelf_getnote), 1)
313     CFLAGS += -DHAVE_GELF_GETNOTE_SUPPORT
314   else
315     msg := $(warning gelf_getnote() not found on libelf, SDT support disabled);
316   endif
317
318   ifeq ($(feature-libelf-getshdrstrndx), 1)
319     CFLAGS += -DHAVE_ELF_GETSHDRSTRNDX_SUPPORT
320   endif
321
322   ifndef NO_DWARF
323     ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
324       msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
325       NO_DWARF := 1
326     else
327       CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
328       LDFLAGS += $(LIBDW_LDFLAGS)
329       DWARFLIBS := -ldw
330       ifeq ($(findstring -static,${LDFLAGS}),-static)
331         DWARFLIBS += -lelf -lebl -lz -llzma -lbz2
332       endif
333       EXTLIBS += ${DWARFLIBS}
334       $(call detected,CONFIG_DWARF)
335     endif # PERF_HAVE_DWARF_REGS
336   endif # NO_DWARF
337
338   ifndef NO_LIBBPF
339     ifeq ($(feature-bpf), 1)
340       CFLAGS += -DHAVE_LIBBPF_SUPPORT
341       $(call detected,CONFIG_LIBBPF)
342     endif
343
344     ifndef NO_DWARF
345       ifdef PERF_HAVE_ARCH_REGS_QUERY_REGISTER_OFFSET
346         CFLAGS += -DHAVE_BPF_PROLOGUE
347         $(call detected,CONFIG_BPF_PROLOGUE)
348       else
349         msg := $(warning BPF prologue is not supported by architecture $(ARCH), missing regs_query_register_offset());
350       endif
351     else
352       msg := $(warning DWARF support is off, BPF prologue is disabled);
353     endif
354
355   endif # NO_LIBBPF
356 endif # NO_LIBELF
357
358 ifdef PERF_HAVE_JITDUMP
359   ifndef NO_DWARF
360     $(call detected,CONFIG_JITDUMP)
361     CFLAGS += -DHAVE_JITDUMP
362   endif
363 endif
364
365 ifeq ($(ARCH),powerpc)
366   ifndef NO_DWARF
367     CFLAGS += -DHAVE_SKIP_CALLCHAIN_IDX
368   endif
369 endif
370
371 ifndef NO_LIBUNWIND
372   have_libunwind :=
373
374   ifeq ($(feature-libunwind-x86), 1)
375     $(call detected,CONFIG_LIBUNWIND_X86)
376     CFLAGS += -DHAVE_LIBUNWIND_X86_SUPPORT
377     LDFLAGS += -lunwind-x86
378     EXTLIBS_LIBUNWIND += -lunwind-x86
379     have_libunwind = 1
380   endif
381
382   ifeq ($(feature-libunwind-aarch64), 1)
383     $(call detected,CONFIG_LIBUNWIND_AARCH64)
384     CFLAGS += -DHAVE_LIBUNWIND_AARCH64_SUPPORT
385     LDFLAGS += -lunwind-aarch64
386     EXTLIBS_LIBUNWIND += -lunwind-aarch64
387     have_libunwind = 1
388     $(call feature_check,libunwind-debug-frame-aarch64)
389     ifneq ($(feature-libunwind-debug-frame-aarch64), 1)
390       msg := $(warning No debug_frame support found in libunwind-aarch64);
391       CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME_AARCH64
392     endif
393   endif
394
395   ifneq ($(feature-libunwind), 1)
396     msg := $(warning No libunwind found. Please install libunwind-dev[el] >= 1.1 and/or set LIBUNWIND_DIR);
397     NO_LOCAL_LIBUNWIND := 1
398   else
399     have_libunwind := 1
400     $(call detected,CONFIG_LOCAL_LIBUNWIND)
401   endif
402
403   ifneq ($(have_libunwind), 1)
404     NO_LIBUNWIND := 1
405   endif
406 else
407   NO_LOCAL_LIBUNWIND := 1
408 endif
409
410 ifndef NO_LIBBPF
411   ifneq ($(feature-bpf), 1)
412     msg := $(warning BPF API too old. Please install recent kernel headers. BPF support in 'perf record' is disabled.)
413     NO_LIBBPF := 1
414   endif
415 endif
416
417 dwarf-post-unwind := 1
418 dwarf-post-unwind-text := BUG
419
420 # setup DWARF post unwinder
421 ifdef NO_LIBUNWIND
422   ifdef NO_LIBDW_DWARF_UNWIND
423     msg := $(warning Disabling post unwind, no support found.);
424     dwarf-post-unwind := 0
425   else
426     dwarf-post-unwind-text := libdw
427     $(call detected,CONFIG_LIBDW_DWARF_UNWIND)
428   endif
429 else
430   dwarf-post-unwind-text := libunwind
431   $(call detected,CONFIG_LIBUNWIND)
432   # Enable libunwind support by default.
433   ifndef NO_LIBDW_DWARF_UNWIND
434     NO_LIBDW_DWARF_UNWIND := 1
435   endif
436 endif
437
438 ifeq ($(dwarf-post-unwind),1)
439   CFLAGS += -DHAVE_DWARF_UNWIND_SUPPORT
440   $(call detected,CONFIG_DWARF_UNWIND)
441 else
442   NO_DWARF_UNWIND := 1
443 endif
444
445 ifndef NO_LOCAL_LIBUNWIND
446   ifeq ($(ARCH),$(filter $(ARCH),arm arm64))
447     $(call feature_check,libunwind-debug-frame)
448     ifneq ($(feature-libunwind-debug-frame), 1)
449       msg := $(warning No debug_frame support found in libunwind);
450       CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
451     endif
452   else
453     # non-ARM has no dwarf_find_debug_frame() function:
454     CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
455   endif
456   EXTLIBS += $(LIBUNWIND_LIBS)
457   LDFLAGS += $(LIBUNWIND_LIBS)
458 endif
459
460 ifndef NO_LIBUNWIND
461   CFLAGS  += -DHAVE_LIBUNWIND_SUPPORT
462   CFLAGS  += $(LIBUNWIND_CFLAGS)
463   LDFLAGS += $(LIBUNWIND_LDFLAGS)
464   EXTLIBS += $(EXTLIBS_LIBUNWIND)
465 endif
466
467 ifndef NO_LIBAUDIT
468   ifneq ($(feature-libaudit), 1)
469     msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
470     NO_LIBAUDIT := 1
471   else
472     CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
473     EXTLIBS += -laudit
474     $(call detected,CONFIG_AUDIT)
475   endif
476 endif
477
478 ifndef NO_LIBCRYPTO
479   ifneq ($(feature-libcrypto), 1)
480     msg := $(warning No libcrypto.h found, disables jitted code injection, please install libssl-devel or libssl-dev);
481     NO_LIBCRYPTO := 1
482   else
483     CFLAGS += -DHAVE_LIBCRYPTO_SUPPORT
484     EXTLIBS += -lcrypto
485     $(call detected,CONFIG_CRYPTO)
486   endif
487 endif
488
489 ifdef NO_NEWT
490   NO_SLANG=1
491 endif
492
493 ifndef NO_SLANG
494   ifneq ($(feature-libslang), 1)
495     msg := $(warning slang not found, disables TUI support. Please install slang-devel, libslang-dev or libslang2-dev);
496     NO_SLANG := 1
497   else
498     # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
499     CFLAGS += -I/usr/include/slang
500     CFLAGS += -DHAVE_SLANG_SUPPORT
501     EXTLIBS += -lslang
502     $(call detected,CONFIG_SLANG)
503   endif
504 endif
505
506 ifndef NO_GTK2
507   FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null)
508   ifneq ($(feature-gtk2), 1)
509     msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
510     NO_GTK2 := 1
511   else
512     ifeq ($(feature-gtk2-infobar), 1)
513       GTK_CFLAGS := -DHAVE_GTK_INFO_BAR_SUPPORT
514     endif
515     CFLAGS += -DHAVE_GTK2_SUPPORT
516     GTK_CFLAGS += $(shell $(PKG_CONFIG) --cflags gtk+-2.0 2>/dev/null)
517     GTK_LIBS := $(shell $(PKG_CONFIG) --libs gtk+-2.0 2>/dev/null)
518     EXTLIBS += -ldl
519   endif
520 endif
521
522 grep-libs  = $(filter -l%,$(1))
523 strip-libs = $(filter-out -l%,$(1))
524
525 ifdef NO_LIBPERL
526   CFLAGS += -DNO_LIBPERL
527 else
528   PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
529   PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
530   PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
531   PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
532   FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
533
534   ifneq ($(feature-libperl), 1)
535     CFLAGS += -DNO_LIBPERL
536     NO_LIBPERL := 1
537     msg := $(warning Missing perl devel files. Disabling perl scripting support, please install perl-ExtUtils-Embed/libperl-dev);
538   else
539     LDFLAGS += $(PERL_EMBED_LDFLAGS)
540     EXTLIBS += $(PERL_EMBED_LIBADD)
541     $(call detected,CONFIG_LIBPERL)
542   endif
543 endif
544
545 ifeq ($(feature-timerfd), 1)
546   CFLAGS += -DHAVE_TIMERFD_SUPPORT
547 else
548   msg := $(warning No timerfd support. Disables 'perf kvm stat live');
549 endif
550
551 disable-python = $(eval $(disable-python_code))
552 define disable-python_code
553   CFLAGS += -DNO_LIBPYTHON
554   $(warning $1)
555   NO_LIBPYTHON := 1
556 endef
557
558 ifdef NO_LIBPYTHON
559   $(call disable-python,Python support disabled by user)
560 else
561
562   ifndef PYTHON
563     $(call disable-python,No python interpreter was found: disables Python support - please install python-devel/python-dev)
564   else
565     PYTHON_WORD := $(call shell-wordify,$(PYTHON))
566
567     ifndef PYTHON_CONFIG
568       $(call disable-python,No 'python-config' tool was found: disables Python support - please install python-devel/python-dev)
569     else
570
571       PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
572
573       PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
574       PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
575       PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS)) -lutil
576       PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
577       FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
578
579       ifneq ($(feature-libpython), 1)
580         $(call disable-python,No 'Python.h' (for Python 2.x support) was found: disables Python support - please install python-devel/python-dev)
581       else
582
583         ifneq ($(feature-libpython-version), 1)
584           $(warning Python 3 is not yet supported; please set)
585           $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
586           $(warning If you also have Python 2 installed, then)
587           $(warning try something like:)
588           $(warning $(and ,))
589           $(warning $(and ,)  make PYTHON=python2)
590           $(warning $(and ,))
591           $(warning Otherwise, disable Python support entirely:)
592           $(warning $(and ,))
593           $(warning $(and ,)  make NO_LIBPYTHON=1)
594           $(warning $(and ,))
595           $(error   $(and ,))
596         else
597           LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
598           EXTLIBS += $(PYTHON_EMBED_LIBADD)
599           LANG_BINDINGS += $(obj-perf)python/perf.so
600           $(call detected,CONFIG_LIBPYTHON)
601         endif
602       endif
603     endif
604   endif
605 endif
606
607 ifeq ($(feature-libbfd), 1)
608   EXTLIBS += -lbfd
609
610   # call all detections now so we get correct
611   # status in VF output
612   $(call feature_check,liberty)
613   $(call feature_check,liberty-z)
614   $(call feature_check,cplus-demangle)
615
616   ifeq ($(feature-liberty), 1)
617     EXTLIBS += -liberty
618   else
619     ifeq ($(feature-liberty-z), 1)
620       EXTLIBS += -liberty -lz
621     endif
622   endif
623 endif
624
625 ifdef NO_DEMANGLE
626   CFLAGS += -DNO_DEMANGLE
627 else
628   ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
629     EXTLIBS += -liberty
630     CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
631   else
632     ifneq ($(feature-libbfd), 1)
633       ifneq ($(feature-liberty), 1)
634         ifneq ($(feature-liberty-z), 1)
635           # we dont have neither HAVE_CPLUS_DEMANGLE_SUPPORT
636           # or any of 'bfd iberty z' trinity
637           ifeq ($(feature-cplus-demangle), 1)
638             EXTLIBS += -liberty
639             CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
640           else
641             msg := $(warning No bfd.h/libbfd found, please install binutils-dev[el]/zlib-static/libiberty-dev to gain symbol demangling)
642             CFLAGS += -DNO_DEMANGLE
643           endif
644         endif
645       endif
646     endif
647   endif
648 endif
649
650 ifneq ($(filter -lbfd,$(EXTLIBS)),)
651   CFLAGS += -DHAVE_LIBBFD_SUPPORT
652 endif
653
654 ifndef NO_ZLIB
655   ifeq ($(feature-zlib), 1)
656     CFLAGS += -DHAVE_ZLIB_SUPPORT
657     EXTLIBS += -lz
658     $(call detected,CONFIG_ZLIB)
659   else
660     NO_ZLIB := 1
661   endif
662 endif
663
664 ifndef NO_LZMA
665   ifeq ($(feature-lzma), 1)
666     CFLAGS += -DHAVE_LZMA_SUPPORT
667     EXTLIBS += -llzma
668     $(call detected,CONFIG_LZMA)
669   else
670     msg := $(warning No liblzma found, disables xz kernel module decompression, please install xz-devel/liblzma-dev);
671     NO_LZMA := 1
672   endif
673 endif
674
675 ifndef NO_BACKTRACE
676   ifeq ($(feature-backtrace), 1)
677     CFLAGS += -DHAVE_BACKTRACE_SUPPORT
678   endif
679 endif
680
681 ifndef NO_LIBNUMA
682   ifeq ($(feature-libnuma), 0)
683     msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numactl-devel/libnuma-devel/libnuma-dev);
684     NO_LIBNUMA := 1
685   else
686     ifeq ($(feature-numa_num_possible_cpus), 0)
687       msg := $(warning Old numa library found, disables 'perf bench numa mem' benchmark, please install numactl-devel/libnuma-devel/libnuma-dev >= 2.0.8);
688       NO_LIBNUMA := 1
689     else
690       CFLAGS += -DHAVE_LIBNUMA_SUPPORT
691       EXTLIBS += -lnuma
692       $(call detected,CONFIG_NUMA)
693     endif
694   endif
695 endif
696
697 ifdef HAVE_KVM_STAT_SUPPORT
698     CFLAGS += -DHAVE_KVM_STAT_SUPPORT
699 endif
700
701 ifeq (${IS_64_BIT}, 1)
702   ifndef NO_PERF_READ_VDSO32
703     $(call feature_check,compile-32)
704     ifeq ($(feature-compile-32), 1)
705       CFLAGS += -DHAVE_PERF_READ_VDSO32
706     else
707       NO_PERF_READ_VDSO32 := 1
708     endif
709   endif
710   ifneq ($(ARCH), x86)
711     NO_PERF_READ_VDSOX32 := 1
712   endif
713   ifndef NO_PERF_READ_VDSOX32
714     $(call feature_check,compile-x32)
715     ifeq ($(feature-compile-x32), 1)
716       CFLAGS += -DHAVE_PERF_READ_VDSOX32
717     else
718       NO_PERF_READ_VDSOX32 := 1
719     endif
720   endif
721 else
722   NO_PERF_READ_VDSO32 := 1
723   NO_PERF_READ_VDSOX32 := 1
724 endif
725
726 ifdef LIBBABELTRACE
727   $(call feature_check,libbabeltrace)
728   ifeq ($(feature-libbabeltrace), 1)
729     CFLAGS += -DHAVE_LIBBABELTRACE_SUPPORT $(LIBBABELTRACE_CFLAGS)
730     LDFLAGS += $(LIBBABELTRACE_LDFLAGS)
731     EXTLIBS += -lbabeltrace-ctf
732     $(call detected,CONFIG_LIBBABELTRACE)
733   else
734     msg := $(warning No libbabeltrace found, disables 'perf data' CTF format support, please install libbabeltrace-dev[el]/libbabeltrace-ctf-dev);
735   endif
736 endif
737
738 ifndef NO_AUXTRACE
739   ifeq ($(feature-get_cpuid), 0)
740     msg := $(warning Your gcc lacks the __get_cpuid() builtin, disables support for auxtrace/Intel PT, please install a newer gcc);
741     NO_AUXTRACE := 1
742   else
743     $(call detected,CONFIG_AUXTRACE)
744     CFLAGS += -DHAVE_AUXTRACE_SUPPORT
745   endif
746 endif
747
748 # Among the variables below, these:
749 #   perfexecdir
750 #   template_dir
751 #   mandir
752 #   infodir
753 #   htmldir
754 #   ETC_PERFCONFIG (but not sysconfdir)
755 # can be specified as a relative path some/where/else;
756 # this is interpreted as relative to $(prefix) and "perf" at
757 # runtime figures out where they are based on the path to the executable.
758 # This can help installing the suite in a relocatable way.
759
760 # Make the path relative to DESTDIR, not to prefix
761 ifndef DESTDIR
762 prefix ?= $(HOME)
763 endif
764 bindir_relative = bin
765 bindir = $(abspath $(prefix)/$(bindir_relative))
766 mandir = share/man
767 infodir = share/info
768 perfexecdir = libexec/perf-core
769 sharedir = $(prefix)/share
770 template_dir = share/perf-core/templates
771 STRACE_GROUPS_DIR = share/perf-core/strace/groups
772 htmldir = share/doc/perf-doc
773 tipdir = share/doc/perf-tip
774 srcdir = $(srctree)/tools/perf
775 ifeq ($(prefix),/usr)
776 sysconfdir = /etc
777 ETC_PERFCONFIG = $(sysconfdir)/perfconfig
778 else
779 sysconfdir = $(prefix)/etc
780 ETC_PERFCONFIG = etc/perfconfig
781 endif
782 ifndef lib
783 ifeq ($(ARCH)$(IS_64_BIT), x861)
784 lib = lib64
785 else
786 lib = lib
787 endif
788 endif # lib
789 libdir = $(prefix)/$(lib)
790
791 # Shell quote (do not use $(call) to accommodate ancient setups);
792 ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
793 STRACE_GROUPS_DIR_SQ = $(subst ','\'',$(STRACE_GROUPS_DIR))
794 DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
795 bindir_SQ = $(subst ','\'',$(bindir))
796 mandir_SQ = $(subst ','\'',$(mandir))
797 infodir_SQ = $(subst ','\'',$(infodir))
798 perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
799 template_dir_SQ = $(subst ','\'',$(template_dir))
800 htmldir_SQ = $(subst ','\'',$(htmldir))
801 tipdir_SQ = $(subst ','\'',$(tipdir))
802 prefix_SQ = $(subst ','\'',$(prefix))
803 sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
804 libdir_SQ = $(subst ','\'',$(libdir))
805 srcdir_SQ = $(subst ','\'',$(srcdir))
806
807 ifneq ($(filter /%,$(firstword $(perfexecdir))),)
808 perfexec_instdir = $(perfexecdir)
809 STRACE_GROUPS_INSTDIR = $(STRACE_GROUPS_DIR)
810 tip_instdir = $(tipdir)
811 else
812 perfexec_instdir = $(prefix)/$(perfexecdir)
813 STRACE_GROUPS_INSTDIR = $(prefix)/$(STRACE_GROUPS_DIR)
814 tip_instdir = $(prefix)/$(tipdir)
815 endif
816 perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))
817 STRACE_GROUPS_INSTDIR_SQ = $(subst ','\'',$(STRACE_GROUPS_INSTDIR))
818 tip_instdir_SQ = $(subst ','\'',$(tip_instdir))
819
820 # If we install to $(HOME) we keep the traceevent default:
821 # $(HOME)/.traceevent/plugins
822 # Otherwise we install plugins into the global $(libdir).
823 ifdef DESTDIR
824 plugindir=$(libdir)/traceevent/plugins
825 plugindir_SQ= $(subst ','\'',$(plugindir))
826 endif
827
828 print_var = $(eval $(print_var_code)) $(info $(MSG))
829 define print_var_code
830     MSG = $(shell printf '...%30s: %s' $(1) $($(1)))
831 endef
832
833 ifeq ($(VF),1)
834   $(call print_var,prefix)
835   $(call print_var,bindir)
836   $(call print_var,libdir)
837   $(call print_var,sysconfdir)
838   $(call print_var,LIBUNWIND_DIR)
839   $(call print_var,LIBDW_DIR)
840
841   ifeq ($(dwarf-post-unwind),1)
842     $(call feature_print_text,"DWARF post unwind library", $(dwarf-post-unwind-text))
843   endif
844   $(info )
845 endif
846
847 $(call detected_var,bindir_SQ)
848 $(call detected_var,PYTHON_WORD)
849 ifneq ($(OUTPUT),)
850 $(call detected_var,OUTPUT)
851 endif
852 $(call detected_var,htmldir_SQ)
853 $(call detected_var,infodir_SQ)
854 $(call detected_var,mandir_SQ)
855 $(call detected_var,ETC_PERFCONFIG_SQ)
856 $(call detected_var,STRACE_GROUPS_DIR_SQ)
857 $(call detected_var,prefix_SQ)
858 $(call detected_var,perfexecdir_SQ)
859 $(call detected_var,tipdir_SQ)
860 $(call detected_var,srcdir_SQ)
861 $(call detected_var,LIBDIR)
862 $(call detected_var,GTK_CFLAGS)
863 $(call detected_var,PERL_EMBED_CCOPTS)
864 $(call detected_var,PYTHON_EMBED_CCOPTS)