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