3 src-perf := $(srctree)/tools/perf
11 obj-perf := $(abspath $(obj-perf))/
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)
18 CFLAGS := $(EXTRA_CFLAGS) $(EXTRA_WARNINGS)
20 include $(srctree)/tools/scripts/Makefile.arch
22 $(call detected_var,ARCH)
26 # Additional ARCH settings for ppc
27 ifeq ($(ARCH),powerpc)
29 LIBUNWIND_LIBS := -lunwind -lunwind-ppc64
32 # Additional ARCH settings for 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)
41 LIBUNWIND_LIBS = -lunwind-x86 -llzma -lunwind
48 LIBUNWIND_LIBS = -lunwind -lunwind-arm
53 LIBUNWIND_LIBS = -lunwind -lunwind-aarch64
56 ifeq ($(NO_PERF_REGS),0)
57 $(call detected,CONFIG_PERF_REGS)
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
64 ifneq ($(ARCH),$(filter $(ARCH),x86 arm))
65 NO_LIBDW_DWARF_UNWIND := 1
68 ifeq ($(LIBUNWIND_LIBS),)
72 # For linking with debug library, run like:
74 # make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
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
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)))
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)
96 ifeq ($(NO_PERF_REGS),0)
97 CFLAGS += -DHAVE_PERF_REGS_SUPPORT
100 # for linking with debug library, run like:
101 # make DEBUG=1 LIBDW_DIR=/opt/libdw/
103 LIBDW_CFLAGS := -I$(LIBDW_DIR)/include
104 LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib
106 FEATURE_CHECK_CFLAGS-libdw-dwarf-unwind := $(LIBDW_CFLAGS)
107 FEATURE_CHECK_LDFLAGS-libdw-dwarf-unwind := $(LIBDW_LDFLAGS) -ldw
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
115 FEATURE_CHECK_CFLAGS-libbabeltrace := $(LIBBABELTRACE_CFLAGS)
116 FEATURE_CHECK_LDFLAGS-libbabeltrace := $(LIBBABELTRACE_LDFLAGS) -lbabeltrace-ctf
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
122 ifdef PERF_HAVE_ARCH_REGS_QUERY_REGISTER_OFFSET
123 CFLAGS += -DHAVE_ARCH_REGS_QUERY_REGISTER_OFFSET
126 include $(srctree)/tools/scripts/utilities.mak
128 ifeq ($(call get-executable,$(FLEX)),)
129 dummy := $(error Error: $(FLEX) is missing on this system, please install it)
132 ifeq ($(call get-executable,$(BISON)),)
133 dummy := $(error Error: $(BISON) is missing on this system, please install it)
136 # Treat warnings as errors unless directed not to
151 PARSER_DEBUG_BISON := -t
152 PARSER_DEBUG_FLEX := -d
153 CFLAGS += -DPARSER_DEBUG
154 $(call detected_var,PARSER_DEBUG_BISON)
155 $(call detected_var,PARSER_DEBUG_FLEX)
158 # Try different combinations to accommodate systems that only have
159 # python[2][-config] in weird combinations but always preferring
160 # python2 and python2-config as per pep-0394. If we catch a
161 # python[-config] in version 3, the version check will kill it.
162 PYTHON2 := $(if $(call get-executable,python2),python2,python)
163 override PYTHON := $(call get-executable-or-default,PYTHON,$(PYTHON2))
165 $(if $(call get-executable,$(PYTHON)-config),$(PYTHON)-config,python-config)
166 override PYTHON_CONFIG := \
167 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON2_CONFIG))
169 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
171 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
172 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
174 FEATURE_CHECK_CFLAGS-libpython := $(PYTHON_EMBED_CCOPTS)
175 FEATURE_CHECK_LDFLAGS-libpython := $(PYTHON_EMBED_LDOPTS)
176 FEATURE_CHECK_CFLAGS-libpython-version := $(PYTHON_EMBED_CCOPTS)
177 FEATURE_CHECK_LDFLAGS-libpython-version := $(PYTHON_EMBED_LDOPTS)
179 CFLAGS += -fno-omit-frame-pointer
181 CFLAGS += -funwind-tables
186 CXXFLAGS += -std=gnu++11 -fno-exceptions -fno-rtti
188 CXXFLAGS += -fno-omit-frame-pointer
190 CXXFLAGS += -funwind-tables
191 CXXFLAGS += -Wno-strict-aliasing
193 # Enforce a non-executable stack, as we may regress (again) in the future by
194 # adding assembler files missing the .GNU-stack linker note.
195 LDFLAGS += -Wl,-z,noexecstack
197 EXTLIBS = -lpthread -lrt -lm -ldl
199 ifeq ($(FEATURES_DUMP),)
200 include $(srctree)/tools/build/Makefile.feature
202 include $(FEATURES_DUMP)
205 ifeq ($(feature-stackprotector-all), 1)
206 CFLAGS += -fstack-protector-all
210 ifeq ($(feature-fortify-source), 1)
211 CFLAGS += -D_FORTIFY_SOURCE=2
215 INC_FLAGS += -I$(src-perf)/util/include
216 INC_FLAGS += -I$(src-perf)/arch/$(ARCH)/include
217 INC_FLAGS += -I$(srctree)/tools/include/uapi
218 INC_FLAGS += -I$(srctree)/tools/include/
219 INC_FLAGS += -I$(srctree)/tools/arch/$(ARCH)/include/uapi
220 INC_FLAGS += -I$(srctree)/tools/arch/$(ARCH)/include/
221 INC_FLAGS += -I$(srctree)/tools/arch/$(ARCH)/
223 # $(obj-perf) for generated common-cmds.h
224 # $(obj-perf)/util for generated bison/flex headers
226 INC_FLAGS += -I$(obj-perf)/util
227 INC_FLAGS += -I$(obj-perf)
230 INC_FLAGS += -I$(src-perf)/util
231 INC_FLAGS += -I$(src-perf)
232 INC_FLAGS += -I$(srctree)/tools/lib/
234 CFLAGS += $(INC_FLAGS)
235 CXXFLAGS += $(INC_FLAGS)
237 CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
239 ifeq ($(feature-sync-compare-and-swap), 1)
240 CFLAGS += -DHAVE_SYNC_COMPARE_AND_SWAP_SUPPORT
243 ifeq ($(feature-pthread-attr-setaffinity-np), 1)
244 CFLAGS += -DHAVE_PTHREAD_ATTR_SETAFFINITY_NP
248 $(call feature_check,bionic)
249 ifeq ($(feature-bionic), 1)
251 EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
252 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
260 NO_LIBDW_DWARF_UNWIND := 1
263 ifeq ($(feature-libelf), 0)
264 ifeq ($(feature-glibc), 1)
270 ifeq ($(LIBC_SUPPORT),1)
271 msg := $(warning No libelf found, disables 'probe' tool and BPF support in 'perf record', please install libelf-dev, libelf-devel or elfutils-libelf-devel);
277 NO_LIBDW_DWARF_UNWIND := 1
280 ifneq ($(filter s% -static%,$(LDFLAGS),),)
281 msg := $(error No static glibc found, please install glibc-static);
283 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]);
287 ifndef NO_LIBDW_DWARF_UNWIND
288 ifneq ($(feature-libdw-dwarf-unwind),1)
289 NO_LIBDW_DWARF_UNWIND := 1
290 msg := $(warning No libdw DWARF unwind found, Please install elfutils-devel/libdw-dev >= 0.158 and/or set LIBDW_DIR);
293 ifneq ($(feature-dwarf), 1)
294 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);
297 ifneq ($(feature-dwarf_getlocations), 1)
298 msg := $(warning Old libdw.h, finding variables at given 'perf probe' point will not work, install elfutils-devel/libdw-dev >= 0.157);
300 CFLAGS += -DHAVE_DWARF_GETLOCATIONS
301 endif # dwarf_getlocations
302 endif # Dwarf support
303 endif # libelf support
307 NO_LIBDW_DWARF_UNWIND := 1
311 CFLAGS += -DHAVE_LIBELF_SUPPORT
313 $(call detected,CONFIG_LIBELF)
315 ifeq ($(feature-libelf-mmap), 1)
316 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
319 ifeq ($(feature-libelf-getphdrnum), 1)
320 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
323 ifeq ($(feature-libelf-gelf_getnote), 1)
324 CFLAGS += -DHAVE_GELF_GETNOTE_SUPPORT
326 msg := $(warning gelf_getnote() not found on libelf, SDT support disabled);
329 ifeq ($(feature-libelf-getshdrstrndx), 1)
330 CFLAGS += -DHAVE_ELF_GETSHDRSTRNDX_SUPPORT
334 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
335 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
338 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
339 LDFLAGS += $(LIBDW_LDFLAGS)
341 ifeq ($(findstring -static,${LDFLAGS}),-static)
342 DWARFLIBS += -lelf -lebl -lz -llzma -lbz2
344 EXTLIBS += ${DWARFLIBS}
345 $(call detected,CONFIG_DWARF)
346 endif # PERF_HAVE_DWARF_REGS
350 ifeq ($(feature-bpf), 1)
351 CFLAGS += -DHAVE_LIBBPF_SUPPORT
352 $(call detected,CONFIG_LIBBPF)
356 ifdef PERF_HAVE_ARCH_REGS_QUERY_REGISTER_OFFSET
357 CFLAGS += -DHAVE_BPF_PROLOGUE
358 $(call detected,CONFIG_BPF_PROLOGUE)
360 msg := $(warning BPF prologue is not supported by architecture $(ARCH), missing regs_query_register_offset());
363 msg := $(warning DWARF support is off, BPF prologue is disabled);
370 ifneq ($(feature-sdt), 1)
371 msg := $(warning No sys/sdt.h found, no SDT events are defined, please install systemtap-sdt-devel or systemtap-sdt-dev);
374 CFLAGS += -DHAVE_SDT_EVENT
375 $(call detected,CONFIG_SDT_EVENT)
379 ifdef PERF_HAVE_JITDUMP
381 $(call detected,CONFIG_JITDUMP)
382 CFLAGS += -DHAVE_JITDUMP
386 ifeq ($(ARCH),powerpc)
388 CFLAGS += -DHAVE_SKIP_CALLCHAIN_IDX
395 ifeq ($(feature-libunwind-x86), 1)
396 $(call detected,CONFIG_LIBUNWIND_X86)
397 CFLAGS += -DHAVE_LIBUNWIND_X86_SUPPORT
398 LDFLAGS += -lunwind-x86
399 EXTLIBS_LIBUNWIND += -lunwind-x86
403 ifeq ($(feature-libunwind-aarch64), 1)
404 $(call detected,CONFIG_LIBUNWIND_AARCH64)
405 CFLAGS += -DHAVE_LIBUNWIND_AARCH64_SUPPORT
406 LDFLAGS += -lunwind-aarch64
407 EXTLIBS_LIBUNWIND += -lunwind-aarch64
409 $(call feature_check,libunwind-debug-frame-aarch64)
410 ifneq ($(feature-libunwind-debug-frame-aarch64), 1)
411 msg := $(warning No debug_frame support found in libunwind-aarch64);
412 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME_AARCH64
416 ifneq ($(feature-libunwind), 1)
417 msg := $(warning No libunwind found. Please install libunwind-dev[el] >= 1.1 and/or set LIBUNWIND_DIR);
418 NO_LOCAL_LIBUNWIND := 1
421 $(call detected,CONFIG_LOCAL_LIBUNWIND)
424 ifneq ($(have_libunwind), 1)
428 NO_LOCAL_LIBUNWIND := 1
432 ifneq ($(feature-bpf), 1)
433 msg := $(warning BPF API too old. Please install recent kernel headers. BPF support in 'perf record' is disabled.)
438 dwarf-post-unwind := 1
439 dwarf-post-unwind-text := BUG
441 # setup DWARF post unwinder
443 ifdef NO_LIBDW_DWARF_UNWIND
444 msg := $(warning Disabling post unwind, no support found.);
445 dwarf-post-unwind := 0
447 dwarf-post-unwind-text := libdw
448 $(call detected,CONFIG_LIBDW_DWARF_UNWIND)
451 dwarf-post-unwind-text := libunwind
452 $(call detected,CONFIG_LIBUNWIND)
453 # Enable libunwind support by default.
454 ifndef NO_LIBDW_DWARF_UNWIND
455 NO_LIBDW_DWARF_UNWIND := 1
459 ifeq ($(dwarf-post-unwind),1)
460 CFLAGS += -DHAVE_DWARF_UNWIND_SUPPORT
461 $(call detected,CONFIG_DWARF_UNWIND)
466 ifndef NO_LOCAL_LIBUNWIND
467 ifeq ($(ARCH),$(filter $(ARCH),arm arm64))
468 $(call feature_check,libunwind-debug-frame)
469 ifneq ($(feature-libunwind-debug-frame), 1)
470 msg := $(warning No debug_frame support found in libunwind);
471 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
474 # non-ARM has no dwarf_find_debug_frame() function:
475 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
477 EXTLIBS += $(LIBUNWIND_LIBS)
478 LDFLAGS += $(LIBUNWIND_LIBS)
482 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
483 CFLAGS += $(LIBUNWIND_CFLAGS)
484 LDFLAGS += $(LIBUNWIND_LDFLAGS)
485 EXTLIBS += $(EXTLIBS_LIBUNWIND)
489 ifneq ($(feature-libaudit), 1)
490 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
493 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
495 $(call detected,CONFIG_AUDIT)
500 ifneq ($(feature-libcrypto), 1)
501 msg := $(warning No libcrypto.h found, disables jitted code injection, please install libssl-devel or libssl-dev);
504 CFLAGS += -DHAVE_LIBCRYPTO_SUPPORT
506 $(call detected,CONFIG_CRYPTO)
515 ifneq ($(feature-libslang), 1)
516 msg := $(warning slang not found, disables TUI support. Please install slang-devel, libslang-dev or libslang2-dev);
519 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
520 CFLAGS += -I/usr/include/slang
521 CFLAGS += -DHAVE_SLANG_SUPPORT
523 $(call detected,CONFIG_SLANG)
528 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null)
529 ifneq ($(feature-gtk2), 1)
530 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
533 ifeq ($(feature-gtk2-infobar), 1)
534 GTK_CFLAGS := -DHAVE_GTK_INFO_BAR_SUPPORT
536 CFLAGS += -DHAVE_GTK2_SUPPORT
537 GTK_CFLAGS += $(shell $(PKG_CONFIG) --cflags gtk+-2.0 2>/dev/null)
538 GTK_LIBS := $(shell $(PKG_CONFIG) --libs gtk+-2.0 2>/dev/null)
543 grep-libs = $(filter -l%,$(1))
544 strip-libs = $(filter-out -l%,$(1))
547 CFLAGS += -DNO_LIBPERL
549 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
550 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
551 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
552 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
553 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
555 ifneq ($(feature-libperl), 1)
556 CFLAGS += -DNO_LIBPERL
558 msg := $(warning Missing perl devel files. Disabling perl scripting support, please install perl-ExtUtils-Embed/libperl-dev);
560 LDFLAGS += $(PERL_EMBED_LDFLAGS)
561 EXTLIBS += $(PERL_EMBED_LIBADD)
562 $(call detected,CONFIG_LIBPERL)
566 ifeq ($(feature-timerfd), 1)
567 CFLAGS += -DHAVE_TIMERFD_SUPPORT
569 msg := $(warning No timerfd support. Disables 'perf kvm stat live');
572 disable-python = $(eval $(disable-python_code))
573 define disable-python_code
574 CFLAGS += -DNO_LIBPYTHON
580 $(call disable-python,Python support disabled by user)
584 $(call disable-python,No python interpreter was found: disables Python support - please install python-devel/python-dev)
586 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
589 $(call disable-python,No 'python-config' tool was found: disables Python support - please install python-devel/python-dev)
592 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
594 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
595 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
596 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS)) -lutil
597 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
598 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
600 ifneq ($(feature-libpython), 1)
601 $(call disable-python,No 'Python.h' (for Python 2.x support) was found: disables Python support - please install python-devel/python-dev)
604 ifneq ($(feature-libpython-version), 1)
605 $(warning Python 3 is not yet supported; please set)
606 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
607 $(warning If you also have Python 2 installed, then)
608 $(warning try something like:)
610 $(warning $(and ,) make PYTHON=python2)
612 $(warning Otherwise, disable Python support entirely:)
614 $(warning $(and ,) make NO_LIBPYTHON=1)
618 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
619 EXTLIBS += $(PYTHON_EMBED_LIBADD)
620 LANG_BINDINGS += $(obj-perf)python/perf.so
621 $(call detected,CONFIG_LIBPYTHON)
628 ifeq ($(feature-libbfd), 1)
631 # call all detections now so we get correct
632 # status in VF output
633 $(call feature_check,liberty)
634 $(call feature_check,liberty-z)
635 $(call feature_check,cplus-demangle)
637 ifeq ($(feature-liberty), 1)
640 ifeq ($(feature-liberty-z), 1)
641 EXTLIBS += -liberty -lz
647 CFLAGS += -DNO_DEMANGLE
649 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
651 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
653 ifneq ($(feature-libbfd), 1)
654 ifneq ($(feature-liberty), 1)
655 ifneq ($(feature-liberty-z), 1)
656 # we dont have neither HAVE_CPLUS_DEMANGLE_SUPPORT
657 # or any of 'bfd iberty z' trinity
658 ifeq ($(feature-cplus-demangle), 1)
660 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
662 msg := $(warning No bfd.h/libbfd found, please install binutils-dev[el]/zlib-static/libiberty-dev to gain symbol demangling)
663 CFLAGS += -DNO_DEMANGLE
671 ifneq ($(filter -lbfd,$(EXTLIBS)),)
672 CFLAGS += -DHAVE_LIBBFD_SUPPORT
676 ifeq ($(feature-zlib), 1)
677 CFLAGS += -DHAVE_ZLIB_SUPPORT
679 $(call detected,CONFIG_ZLIB)
686 ifeq ($(feature-lzma), 1)
687 CFLAGS += -DHAVE_LZMA_SUPPORT
689 $(call detected,CONFIG_LZMA)
691 msg := $(warning No liblzma found, disables xz kernel module decompression, please install xz-devel/liblzma-dev);
697 ifeq ($(feature-backtrace), 1)
698 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
703 ifeq ($(feature-libnuma), 0)
704 msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numactl-devel/libnuma-devel/libnuma-dev);
707 ifeq ($(feature-numa_num_possible_cpus), 0)
708 msg := $(warning Old numa library found, disables 'perf bench numa mem' benchmark, please install numactl-devel/libnuma-devel/libnuma-dev >= 2.0.8);
711 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
713 $(call detected,CONFIG_NUMA)
718 ifdef HAVE_KVM_STAT_SUPPORT
719 CFLAGS += -DHAVE_KVM_STAT_SUPPORT
722 ifeq (${IS_64_BIT}, 1)
723 ifndef NO_PERF_READ_VDSO32
724 $(call feature_check,compile-32)
725 ifeq ($(feature-compile-32), 1)
726 CFLAGS += -DHAVE_PERF_READ_VDSO32
728 NO_PERF_READ_VDSO32 := 1
732 NO_PERF_READ_VDSOX32 := 1
734 ifndef NO_PERF_READ_VDSOX32
735 $(call feature_check,compile-x32)
736 ifeq ($(feature-compile-x32), 1)
737 CFLAGS += -DHAVE_PERF_READ_VDSOX32
739 NO_PERF_READ_VDSOX32 := 1
743 NO_PERF_READ_VDSO32 := 1
744 NO_PERF_READ_VDSOX32 := 1
748 $(call feature_check,libbabeltrace)
749 ifeq ($(feature-libbabeltrace), 1)
750 CFLAGS += -DHAVE_LIBBABELTRACE_SUPPORT $(LIBBABELTRACE_CFLAGS)
751 LDFLAGS += $(LIBBABELTRACE_LDFLAGS)
752 EXTLIBS += -lbabeltrace-ctf
753 $(call detected,CONFIG_LIBBABELTRACE)
755 msg := $(warning No libbabeltrace found, disables 'perf data' CTF format support, please install libbabeltrace-dev[el]/libbabeltrace-ctf-dev);
761 ifeq ($(feature-get_cpuid), 0)
762 msg := $(warning Your gcc lacks the __get_cpuid() builtin, disables support for auxtrace/Intel PT, please install a newer gcc);
767 $(call detected,CONFIG_AUXTRACE)
768 CFLAGS += -DHAVE_AUXTRACE_SUPPORT
773 ifneq (,$(wildcard /usr/sbin/update-java-alternatives))
774 JDIR=$(shell /usr/sbin/update-java-alternatives -l | head -1 | awk '{print $$3}')
776 ifneq (,$(wildcard /usr/sbin/alternatives))
777 JDIR=$(shell alternatives --display java | tail -1 | cut -d' ' -f 5 | sed 's%/jre/bin/java.%%g')
781 $(warning No alternatives command found, you need to set JDIR= to point to the root of your Java directory)
787 FEATURE_CHECK_CFLAGS-jvmti := -I$(JDIR)/include -I$(JDIR)/include/linux
788 $(call feature_check,jvmti)
789 ifeq ($(feature-jvmti), 1)
790 $(call detected_var,JDIR)
792 $(warning No openjdk development package found, please install JDK package)
800 $(call feature_check,cxx)
801 ifneq ($(feature-cxx), 1)
802 msg := $(warning No g++ found, disable clang and llvm support. Please install g++)
804 $(call feature_check,llvm)
805 $(call feature_check,llvm-version)
806 ifneq ($(feature-llvm), 1)
807 msg := $(warning No suitable libLLVM found, disabling builtin clang and LLVM support. Please install llvm-dev(el) (>= 3.9.0))
809 $(call feature_check,clang)
810 ifneq ($(feature-clang), 1)
811 msg := $(warning No suitable libclang found, disabling builtin clang and LLVM support. Please install libclang-dev(el) (>= 3.9.0))
813 CFLAGS += -DHAVE_LIBCLANGLLVM_SUPPORT
814 CXXFLAGS += -DHAVE_LIBCLANGLLVM_SUPPORT -I$(shell $(LLVM_CONFIG) --includedir)
815 $(call detected,CONFIG_CXX)
816 $(call detected,CONFIG_CLANGLLVM)
820 ifneq ($(feature-llvm-version),1)
821 msg := $(warning This version of LLVM is not tested. May cause build errors)
828 # Among the variables below, these:
834 # ETC_PERFCONFIG (but not sysconfdir)
835 # can be specified as a relative path some/where/else;
836 # this is interpreted as relative to $(prefix) and "perf" at
837 # runtime figures out where they are based on the path to the executable.
838 # This can help installing the suite in a relocatable way.
840 # Make the path relative to DESTDIR, not to prefix
844 bindir_relative = bin
845 bindir = $(abspath $(prefix)/$(bindir_relative))
848 perfexecdir = libexec/perf-core
849 sharedir = $(prefix)/share
850 template_dir = share/perf-core/templates
851 STRACE_GROUPS_DIR = share/perf-core/strace/groups
852 htmldir = share/doc/perf-doc
853 tipdir = share/doc/perf-tip
854 srcdir = $(srctree)/tools/perf
855 ifeq ($(prefix),/usr)
857 ETC_PERFCONFIG = $(sysconfdir)/perfconfig
859 sysconfdir = $(prefix)/etc
860 ETC_PERFCONFIG = etc/perfconfig
863 ifeq ($(ARCH)$(IS_64_BIT), x861)
869 libdir = $(prefix)/$(lib)
871 # Shell quote (do not use $(call) to accommodate ancient setups);
872 ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
873 STRACE_GROUPS_DIR_SQ = $(subst ','\'',$(STRACE_GROUPS_DIR))
874 DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
875 bindir_SQ = $(subst ','\'',$(bindir))
876 mandir_SQ = $(subst ','\'',$(mandir))
877 infodir_SQ = $(subst ','\'',$(infodir))
878 perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
879 template_dir_SQ = $(subst ','\'',$(template_dir))
880 htmldir_SQ = $(subst ','\'',$(htmldir))
881 tipdir_SQ = $(subst ','\'',$(tipdir))
882 prefix_SQ = $(subst ','\'',$(prefix))
883 sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
884 libdir_SQ = $(subst ','\'',$(libdir))
885 srcdir_SQ = $(subst ','\'',$(srcdir))
887 ifneq ($(filter /%,$(firstword $(perfexecdir))),)
888 perfexec_instdir = $(perfexecdir)
889 STRACE_GROUPS_INSTDIR = $(STRACE_GROUPS_DIR)
890 tip_instdir = $(tipdir)
892 perfexec_instdir = $(prefix)/$(perfexecdir)
893 STRACE_GROUPS_INSTDIR = $(prefix)/$(STRACE_GROUPS_DIR)
894 tip_instdir = $(prefix)/$(tipdir)
896 perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))
897 STRACE_GROUPS_INSTDIR_SQ = $(subst ','\'',$(STRACE_GROUPS_INSTDIR))
898 tip_instdir_SQ = $(subst ','\'',$(tip_instdir))
900 # If we install to $(HOME) we keep the traceevent default:
901 # $(HOME)/.traceevent/plugins
902 # Otherwise we install plugins into the global $(libdir).
904 plugindir=$(libdir)/traceevent/plugins
905 plugindir_SQ= $(subst ','\'',$(plugindir))
908 print_var = $(eval $(print_var_code)) $(info $(MSG))
909 define print_var_code
910 MSG = $(shell printf '...%30s: %s' $(1) $($(1)))
914 $(call print_var,prefix)
915 $(call print_var,bindir)
916 $(call print_var,libdir)
917 $(call print_var,sysconfdir)
918 $(call print_var,LIBUNWIND_DIR)
919 $(call print_var,LIBDW_DIR)
920 $(call print_var,JDIR)
922 ifeq ($(dwarf-post-unwind),1)
923 $(call feature_print_text,"DWARF post unwind library", $(dwarf-post-unwind-text))
928 $(call detected_var,bindir_SQ)
929 $(call detected_var,PYTHON_WORD)
931 $(call detected_var,OUTPUT)
933 $(call detected_var,htmldir_SQ)
934 $(call detected_var,infodir_SQ)
935 $(call detected_var,mandir_SQ)
936 $(call detected_var,ETC_PERFCONFIG_SQ)
937 $(call detected_var,STRACE_GROUPS_DIR_SQ)
938 $(call detected_var,prefix_SQ)
939 $(call detected_var,perfexecdir_SQ)
940 $(call detected_var,tipdir_SQ)
941 $(call detected_var,srcdir_SQ)
942 $(call detected_var,LIBDIR)
943 $(call detected_var,GTK_CFLAGS)
944 $(call detected_var,PERL_EMBED_CCOPTS)
945 $(call detected_var,PYTHON_EMBED_CCOPTS)