1 uname_M := $(shell uname -m 2>/dev/null || echo not)
3 ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ \
4 -e s/arm.*/arm/ -e s/sa110/arm/ \
5 -e s/s390x/s390/ -e s/parisc64/parisc/ \
6 -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
7 -e s/sh[234].*/sh/ -e s/aarch64.*/arm64/ )
9 CFLAGS := $(EXTRA_CFLAGS) $(EXTRA_WARNINGS)
11 # Additional ARCH settings for x86
15 LIBUNWIND_LIBS = -lunwind -lunwind-x86
21 ifeq (, $(findstring m32,$(CFLAGS)))
22 IS_X86_64 := $(shell echo __x86_64__ | ${CC} -E -x c - | tail -n 1)
24 ifeq (${IS_X86_64}, 1)
26 CFLAGS += -DHAVE_ARCH_X86_64_SUPPORT
27 ARCH_INCLUDE = ../../arch/x86/lib/memcpy_64.S ../../arch/x86/lib/memset_64.S
30 LIBUNWIND_LIBS = -lunwind -lunwind-x86_64
33 ifeq ($(NO_PERF_REGS),0)
34 CFLAGS += -DHAVE_PERF_REGS_SUPPORT
38 src-perf := $(srctree)/tools/perf
46 obj-perf := $(abspath $(obj-perf))/
49 LIB_INCLUDE := $(srctree)/tools/lib/
51 # include ARCH specific config
52 -include $(src-perf)/arch/$(ARCH)/Makefile
54 include $(src-perf)/config/utilities.mak
56 ifeq ($(call get-executable,$(FLEX)),)
57 dummy := $(error Error: $(FLEX) is missing on this system, please install it)
60 ifeq ($(call get-executable,$(BISON)),)
61 dummy := $(error Error: $(BISON) is missing on this system, please install it)
64 # Treat warnings as errors unless directed not to
69 ifeq ("$(origin DEBUG)", "command line")
77 PARSER_DEBUG_BISON := -t
78 PARSER_DEBUG_FLEX := -d
79 CFLAGS += -DPARSER_DEBUG
82 CFLAGS += -fno-omit-frame-pointer
84 CFLAGS += -funwind-tables
89 EXTLIBS = -lelf -lpthread -lrt -lm -ldl
92 OUTPUT_FEATURES = $(OUTPUT)config/feature-checks/
93 $(shell mkdir -p $(OUTPUT_FEATURES))
96 feature_check = $(eval $(feature_check_code))
97 define feature_check_code
98 feature-$(1) := $(shell $(MAKE) OUTPUT=$(OUTPUT_FEATURES) -C config/feature-checks test-$1 >/dev/null 2>/dev/null && echo 1 || echo 0)
101 feature_set = $(eval $(feature_set_code))
102 define feature_set_code
107 # Build the feature check binaries in parallel, ignore errors, ignore return value and suppress output:
111 # Note that this is not a complete list of all feature tests, just
112 # those that are typically built on a fully configured system.
114 # [ Feature tests not mentioned here have to be built explicitly in
115 # the rule that uses them - an example for that is the 'bionic'
118 CORE_FEATURE_TESTS = \
139 volatile-register-var
142 # So here we detect whether test-all was rebuilt, to be able
143 # to skip the print-out of the long features list if the file
144 # existed before and after it was built:
146 ifeq ($(wildcard $(OUTPUT)config/feature-checks/test-all),)
153 # Special fast-path for the 'all features are available' case:
155 $(call feature_check,all,$(MSG))
158 # Just in case the build freshly failed, make sure we print the
161 ifeq ($(feature-all), 0)
165 ifeq ($(test-all-failed),1)
167 $(info Auto-detecting system features:)
170 ifeq ($(feature-all), 1)
172 # test-all.c passed - just set all the core feature flags to 1:
174 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_set,$(feat)))
176 $(shell $(MAKE) OUTPUT=$(OUTPUT_FEATURES) -i -j -C config/feature-checks $(CORE_FEATURE_TESTS) >/dev/null 2>&1)
177 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_check,$(feat)))
181 # Print the result of the feature test:
183 feature_print = $(eval $(feature_print_code))
184 define feature_print_code
185 ifeq ($(feature-$(1)), 1)
186 MSG = $(shell printf '...%30s: [ \033[32mon\033[m ]' $(1))
188 MSG = $(shell printf '...%30s: [ \033[31mOFF\033[m ]' $(1))
194 # Only print out our features if we rebuilt the testcases or if a test failed:
196 ifeq ($(test-all-failed), 1)
197 $(foreach feat,$(CORE_FEATURE_TESTS) DUMMY,$(call feature_print,$(feat)))
201 ifeq ($(feature-stackprotector-all), 1)
202 CFLAGS += -fstack-protector-all
205 ifeq ($(feature-stackprotector), 1)
206 CFLAGS += -Wstack-protector
209 ifeq ($(feature-volatile-register-var), 1)
210 CFLAGS += -Wvolatile-register-var
214 ifeq ($(feature-fortify-source), 1)
215 CFLAGS += -D_FORTIFY_SOURCE=2
219 CFLAGS += -I$(src-perf)/util/include
220 CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
221 CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
222 CFLAGS += -I$(srctree)/arch/$(ARCH)/include
223 CFLAGS += -I$(srctree)/include/uapi
224 CFLAGS += -I$(srctree)/include
226 # $(obj-perf) for generated common-cmds.h
227 # $(obj-perf)/util for generated bison/flex headers
229 CFLAGS += -I$(obj-perf)/util
230 CFLAGS += -I$(obj-perf)
233 CFLAGS += -I$(src-perf)/util
234 CFLAGS += -I$(src-perf)
235 CFLAGS += -I$(LIB_INCLUDE)
237 CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
240 $(feature_check,bionic)
241 ifeq ($(feature-bionic), 1)
243 EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
244 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
253 ifeq ($(feature-libelf), 0)
254 ifeq ($(feature-glibc), 1)
260 ifeq ($(LIBC_SUPPORT),1)
261 msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libelf-dev);
267 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]/glibc-static);
270 # for linking with debug library, run like:
271 # make DEBUG=1 LIBDW_DIR=/opt/libdw/
273 LIBDW_CFLAGS := -I$(LIBDW_DIR)/include
274 LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib
277 ifneq ($(feature-dwarf), 1)
278 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);
280 endif # Dwarf support
281 endif # libelf support
285 CFLAGS += -DHAVE_LIBELF_SUPPORT
286 FLAGS_LIBELF=$(CFLAGS) $(LDFLAGS) $(EXTLIBS)
288 ifeq ($(feature-libelf-mmap), 1)
289 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
292 ifeq ($(feature-libelf-getphdrnum), 1)
293 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
296 # include ARCH specific config
297 -include $(src-perf)/arch/$(ARCH)/Makefile
300 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
301 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
304 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
305 LDFLAGS += $(LIBDW_LDFLAGS)
306 EXTLIBS += -lelf -ldw
307 endif # PERF_HAVE_DWARF_REGS
312 CFLAGS += -DHAVE_LIBELF_SUPPORT
313 ifeq ($(feature-libelf-mmap), 1)
314 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
318 # There's only x86 (both 32 and 64) support for CFI unwind so far
325 # For linking with debug library, run like:
327 # make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
330 LIBUNWIND_CFLAGS := -I$(LIBUNWIND_DIR)/include
331 LIBUNWIND_LDFLAGS := -L$(LIBUNWIND_DIR)/lib
334 ifneq ($(feature-libunwind), 1)
335 msg := $(warning No libunwind found, disabling post unwind support. Please install libunwind-dev[el] >= 0.99);
341 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
342 EXTLIBS += $(LIBUNWIND_LIBS)
343 CFLAGS += $(LIBUNWIND_CFLAGS)
344 LDFLAGS += $(LIBUNWIND_LDFLAGS)
348 ifneq ($(feature-libaudit), 1)
349 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
352 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
362 ifneq ($(feature-libslang), 1)
363 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
366 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
367 CFLAGS += -I/usr/include/slang
368 CFLAGS += -DHAVE_SLANG_SUPPORT
374 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell pkg-config --libs --cflags gtk+-2.0 2>/dev/null)
375 ifneq ($(feature-gtk2), 1)
376 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
379 ifeq ($(feature-gtk2-infobar), 1)
380 CFLAGS += -DHAVE_GTK_INFO_BAR_SUPPORT
382 CFLAGS += -DHAVE_GTK2_SUPPORT
383 CFLAGS += $(shell pkg-config --cflags gtk+-2.0 2>/dev/null)
384 EXTLIBS += $(shell pkg-config --libs gtk+-2.0 2>/dev/null)
388 grep-libs = $(filter -l%,$(1))
389 strip-libs = $(filter-out -l%,$(1))
392 CFLAGS += -DNO_LIBPERL
394 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
395 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
396 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
397 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
398 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
400 ifneq ($(feature-libperl), 1)
401 CFLAGS += -DNO_LIBPERL
404 LDFLAGS += $(PERL_EMBED_LDFLAGS)
405 EXTLIBS += $(PERL_EMBED_LIBADD)
409 disable-python = $(eval $(disable-python_code))
410 define disable-python_code
411 CFLAGS += -DNO_LIBPYTHON
412 $(if $(1),$(warning No $(1) was found))
413 $(warning Python support will not be built)
418 $(call get-executable-or-default,PYTHON,python)
421 $(call disable-python,python interpreter)
424 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
427 $(call disable-python)
430 override PYTHON_CONFIG := \
431 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON)-config)
434 $(call disable-python,python-config tool)
437 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
439 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
440 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
441 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
442 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
443 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
445 ifneq ($(feature-libpython), 1)
446 $(call disable-python,Python.h (for Python 2.x))
449 ifneq ($(feature-libpython-version), 1)
450 $(warning Python 3 is not yet supported; please set)
451 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
452 $(warning If you also have Python 2 installed, then)
453 $(warning try something like:)
455 $(warning $(and ,) make PYTHON=python2)
457 $(warning Otherwise, disable Python support entirely:)
459 $(warning $(and ,) make NO_LIBPYTHON=1)
463 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
464 EXTLIBS += $(PYTHON_EMBED_LIBADD)
465 LANG_BINDINGS += $(obj-perf)python/perf.so
473 CFLAGS += -DNO_DEMANGLE
475 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
477 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
479 ifeq ($(feature-libbfd), 1)
482 $(feature_check,liberty)
483 ifeq ($(feature-liberty), 1)
484 EXTLIBS += -lbfd -liberty
486 $(feature_check,liberty-z)
487 ifeq ($(feature-liberty-z), 1)
488 EXTLIBS += -lbfd -liberty -lz
490 $(feature_check,cplus-demangle)
491 ifeq ($(feature-cplus-demangle), 1)
493 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
495 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
496 CFLAGS += -DNO_DEMANGLE
505 ifeq ($(feature-on-exit), 1)
506 CFLAGS += -DHAVE_ON_EXIT_SUPPORT
511 ifeq ($(feature-backtrace), 1)
512 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
517 ifeq ($(feature-libnuma), 0)
518 msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numa-libs-devel or libnuma-dev);
521 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
526 # Among the variables below, these:
532 # ETC_PERFCONFIG (but not sysconfdir)
533 # can be specified as a relative path some/where/else;
534 # this is interpreted as relative to $(prefix) and "perf" at
535 # runtime figures out where they are based on the path to the executable.
536 # This can help installing the suite in a relocatable way.
538 # Make the path relative to DESTDIR, not to prefix
542 bindir_relative = bin
543 bindir = $(prefix)/$(bindir_relative)
546 perfexecdir = libexec/perf-core
547 sharedir = $(prefix)/share
548 template_dir = share/perf-core/templates
549 htmldir = share/doc/perf-doc
550 ifeq ($(prefix),/usr)
552 ETC_PERFCONFIG = $(sysconfdir)/perfconfig
554 sysconfdir = $(prefix)/etc
555 ETC_PERFCONFIG = etc/perfconfig
559 # Shell quote (do not use $(call) to accommodate ancient setups);
560 ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
561 DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
562 bindir_SQ = $(subst ','\'',$(bindir))
563 mandir_SQ = $(subst ','\'',$(mandir))
564 infodir_SQ = $(subst ','\'',$(infodir))
565 perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
566 template_dir_SQ = $(subst ','\'',$(template_dir))
567 htmldir_SQ = $(subst ','\'',$(htmldir))
568 prefix_SQ = $(subst ','\'',$(prefix))
569 sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
571 ifneq ($(filter /%,$(firstword $(perfexecdir))),)
572 perfexec_instdir = $(perfexecdir)
574 perfexec_instdir = $(prefix)/$(perfexecdir)
576 perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))