1# SPDX-License-Identifier: GPL-2.0-only 2 3ifeq ($(src-perf),) 4src-perf := $(srctree)/tools/perf 5endif 6 7ifeq ($(obj-perf),) 8obj-perf := $(OUTPUT) 9endif 10 11ifneq ($(obj-perf),) 12obj-perf := $(abspath $(obj-perf))/ 13endif 14 15$(shell printf "" > $(OUTPUT).config-detected) 16detected = $(shell echo "$(1)=y" >> $(OUTPUT).config-detected) 17detected_var = $(shell echo "$(1)=$($(1))" >> $(OUTPUT).config-detected) 18 19CFLAGS := $(EXTRA_CFLAGS) $(filter-out -Wnested-externs,$(EXTRA_WARNINGS)) 20HOSTCFLAGS := $(filter-out -Wnested-externs,$(EXTRA_WARNINGS)) 21 22# Enabled Wthread-safety analysis for clang builds. 23ifeq ($(CC_NO_CLANG), 0) 24 CFLAGS += -Wthread-safety 25endif 26 27include $(srctree)/tools/scripts/Makefile.arch 28 29$(call detected_var,SRCARCH) 30 31NO_PERF_REGS := 1 32 33ifneq ($(NO_SYSCALL_TABLE),1) 34 NO_SYSCALL_TABLE := 1 35 36 ifeq ($(SRCARCH),x86) 37 ifeq (${IS_64_BIT}, 1) 38 NO_SYSCALL_TABLE := 0 39 endif 40 else 41 ifeq ($(SRCARCH),$(filter $(SRCARCH),powerpc arm64 s390 mips loongarch)) 42 NO_SYSCALL_TABLE := 0 43 endif 44 endif 45 46 ifneq ($(NO_SYSCALL_TABLE),1) 47 CFLAGS += -DHAVE_SYSCALL_TABLE_SUPPORT 48 endif 49endif 50 51# Additional ARCH settings for ppc 52ifeq ($(SRCARCH),powerpc) 53 NO_PERF_REGS := 0 54 CFLAGS += -I$(OUTPUT)arch/powerpc/include/generated 55 LIBUNWIND_LIBS := -lunwind -lunwind-ppc64 56endif 57 58# Additional ARCH settings for x86 59ifeq ($(SRCARCH),x86) 60 $(call detected,CONFIG_X86) 61 ifeq (${IS_64_BIT}, 1) 62 CFLAGS += -DHAVE_ARCH_X86_64_SUPPORT -I$(OUTPUT)arch/x86/include/generated 63 ARCH_INCLUDE = ../../arch/x86/lib/memcpy_64.S ../../arch/x86/lib/memset_64.S 64 LIBUNWIND_LIBS = -lunwind-x86_64 -lunwind -llzma 65 $(call detected,CONFIG_X86_64) 66 else 67 LIBUNWIND_LIBS = -lunwind-x86 -llzma -lunwind 68 endif 69 NO_PERF_REGS := 0 70endif 71 72ifeq ($(SRCARCH),arm) 73 NO_PERF_REGS := 0 74 LIBUNWIND_LIBS = -lunwind -lunwind-arm 75endif 76 77ifeq ($(SRCARCH),arm64) 78 NO_PERF_REGS := 0 79 CFLAGS += -I$(OUTPUT)arch/arm64/include/generated 80 LIBUNWIND_LIBS = -lunwind -lunwind-aarch64 81endif 82 83ifeq ($(SRCARCH),loongarch) 84 NO_PERF_REGS := 0 85 CFLAGS += -I$(OUTPUT)arch/loongarch/include/generated 86 LIBUNWIND_LIBS = -lunwind -lunwind-loongarch64 87endif 88 89ifeq ($(SRCARCH),riscv) 90 NO_PERF_REGS := 0 91endif 92 93ifeq ($(SRCARCH),csky) 94 NO_PERF_REGS := 0 95endif 96 97ifeq ($(ARCH),s390) 98 NO_PERF_REGS := 0 99 CFLAGS += -fPIC -I$(OUTPUT)arch/s390/include/generated 100endif 101 102ifeq ($(ARCH),mips) 103 NO_PERF_REGS := 0 104 CFLAGS += -I$(OUTPUT)arch/mips/include/generated 105 LIBUNWIND_LIBS = -lunwind -lunwind-mips 106endif 107 108ifeq ($(NO_PERF_REGS),0) 109 $(call detected,CONFIG_PERF_REGS) 110endif 111 112# So far there's only x86 and arm libdw unwind support merged in perf. 113# Disable it on all other architectures in case libdw unwind 114# support is detected in system. Add supported architectures 115# to the check. 116ifneq ($(SRCARCH),$(filter $(SRCARCH),x86 arm arm64 powerpc s390 csky riscv loongarch)) 117 NO_LIBDW_DWARF_UNWIND := 1 118endif 119 120ifeq ($(LIBUNWIND_LIBS),) 121 NO_LIBUNWIND := 1 122endif 123# 124# For linking with debug library, run like: 125# 126# make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/ 127# 128 129libunwind_arch_set_flags = $(eval $(libunwind_arch_set_flags_code)) 130define libunwind_arch_set_flags_code 131 FEATURE_CHECK_CFLAGS-libunwind-$(1) = -I$(LIBUNWIND_DIR)/include 132 FEATURE_CHECK_LDFLAGS-libunwind-$(1) = -L$(LIBUNWIND_DIR)/lib 133endef 134 135ifdef LIBUNWIND_DIR 136 LIBUNWIND_CFLAGS = -I$(LIBUNWIND_DIR)/include 137 LIBUNWIND_LDFLAGS = -L$(LIBUNWIND_DIR)/lib 138 LIBUNWIND_ARCHS = x86 x86_64 arm aarch64 debug-frame-arm debug-frame-aarch64 loongarch 139 $(foreach libunwind_arch,$(LIBUNWIND_ARCHS),$(call libunwind_arch_set_flags,$(libunwind_arch))) 140endif 141 142# Set per-feature check compilation flags 143FEATURE_CHECK_CFLAGS-libunwind = $(LIBUNWIND_CFLAGS) 144FEATURE_CHECK_LDFLAGS-libunwind = $(LIBUNWIND_LDFLAGS) $(LIBUNWIND_LIBS) 145FEATURE_CHECK_CFLAGS-libunwind-debug-frame = $(LIBUNWIND_CFLAGS) 146FEATURE_CHECK_LDFLAGS-libunwind-debug-frame = $(LIBUNWIND_LDFLAGS) $(LIBUNWIND_LIBS) 147 148FEATURE_CHECK_LDFLAGS-libunwind-arm += -lunwind -lunwind-arm 149FEATURE_CHECK_LDFLAGS-libunwind-aarch64 += -lunwind -lunwind-aarch64 150FEATURE_CHECK_LDFLAGS-libunwind-x86 += -lunwind -llzma -lunwind-x86 151FEATURE_CHECK_LDFLAGS-libunwind-x86_64 += -lunwind -llzma -lunwind-x86_64 152 153FEATURE_CHECK_LDFLAGS-libcrypto = -lcrypto 154 155ifdef CSINCLUDES 156 LIBOPENCSD_CFLAGS := -I$(CSINCLUDES) 157endif 158OPENCSDLIBS := -lopencsd_c_api -lopencsd 159ifeq ($(findstring -static,${LDFLAGS}),-static) 160 OPENCSDLIBS += -lstdc++ 161endif 162ifdef CSLIBS 163 LIBOPENCSD_LDFLAGS := -L$(CSLIBS) 164endif 165FEATURE_CHECK_CFLAGS-libopencsd := $(LIBOPENCSD_CFLAGS) 166FEATURE_CHECK_LDFLAGS-libopencsd := $(LIBOPENCSD_LDFLAGS) $(OPENCSDLIBS) 167 168ifeq ($(NO_PERF_REGS),0) 169 CFLAGS += -DHAVE_PERF_REGS_SUPPORT 170endif 171 172# for linking with debug library, run like: 173# make DEBUG=1 LIBDW_DIR=/opt/libdw/ 174ifdef LIBDW_DIR 175 LIBDW_CFLAGS := -I$(LIBDW_DIR)/include 176 LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib 177endif 178DWARFLIBS := -ldw 179ifeq ($(findstring -static,${LDFLAGS}),-static) 180 DWARFLIBS += -lelf -lebl -ldl -lz -llzma -lbz2 181endif 182FEATURE_CHECK_CFLAGS-libdw-dwarf-unwind := $(LIBDW_CFLAGS) 183FEATURE_CHECK_LDFLAGS-libdw-dwarf-unwind := $(LIBDW_LDFLAGS) $(DWARFLIBS) 184 185# for linking with debug library, run like: 186# make DEBUG=1 LIBBABELTRACE_DIR=/opt/libbabeltrace/ 187ifdef LIBBABELTRACE_DIR 188 LIBBABELTRACE_CFLAGS := -I$(LIBBABELTRACE_DIR)/include 189 LIBBABELTRACE_LDFLAGS := -L$(LIBBABELTRACE_DIR)/lib 190endif 191FEATURE_CHECK_CFLAGS-libbabeltrace := $(LIBBABELTRACE_CFLAGS) 192FEATURE_CHECK_LDFLAGS-libbabeltrace := $(LIBBABELTRACE_LDFLAGS) -lbabeltrace-ctf 193 194ifdef LIBZSTD_DIR 195 LIBZSTD_CFLAGS := -I$(LIBZSTD_DIR)/lib 196 LIBZSTD_LDFLAGS := -L$(LIBZSTD_DIR)/lib 197endif 198FEATURE_CHECK_CFLAGS-libzstd := $(LIBZSTD_CFLAGS) 199FEATURE_CHECK_LDFLAGS-libzstd := $(LIBZSTD_LDFLAGS) 200 201FEATURE_CHECK_CFLAGS-bpf = -I. -I$(srctree)/tools/include -I$(srctree)/tools/arch/$(SRCARCH)/include/uapi -I$(srctree)/tools/include/uapi 202# include ARCH specific config 203-include $(src-perf)/arch/$(SRCARCH)/Makefile 204 205ifdef PERF_HAVE_ARCH_REGS_QUERY_REGISTER_OFFSET 206 CFLAGS += -DHAVE_ARCH_REGS_QUERY_REGISTER_OFFSET 207endif 208 209include $(srctree)/tools/scripts/utilities.mak 210 211ifeq ($(call get-executable,$(FLEX)),) 212 dummy := $(error Error: $(FLEX) is missing on this system, please install it) 213endif 214 215ifeq ($(call get-executable,$(BISON)),) 216 dummy := $(error Error: $(BISON) is missing on this system, please install it) 217endif 218 219ifneq ($(OUTPUT),) 220 ifeq ($(shell expr $(shell $(BISON) --version | grep bison | sed -e 's/.\+ \([0-9]\+\).\([0-9]\+\).\([0-9]\+\)/\1\2\3/g') \>\= 371), 1) 221 BISON_FILE_PREFIX_MAP := --file-prefix-map=$(OUTPUT)= 222 endif 223endif 224 225# Treat warnings as errors unless directed not to 226ifneq ($(WERROR),0) 227 CORE_CFLAGS += -Werror 228 CXXFLAGS += -Werror 229 HOSTCFLAGS += -Werror 230endif 231 232ifndef DEBUG 233 DEBUG := 0 234endif 235 236ifeq ($(DEBUG),0) 237CORE_CFLAGS += -DNDEBUG=1 238ifeq ($(CC_NO_CLANG), 0) 239 CORE_CFLAGS += -O3 240else 241 CORE_CFLAGS += -O6 242endif 243else 244 CORE_CFLAGS += -g 245 CXXFLAGS += -g 246endif 247 248ifdef PARSER_DEBUG 249 PARSER_DEBUG_BISON := -t 250 PARSER_DEBUG_FLEX := -d 251 CFLAGS += -DPARSER_DEBUG 252 $(call detected_var,PARSER_DEBUG_BISON) 253 $(call detected_var,PARSER_DEBUG_FLEX) 254endif 255 256ifdef LTO 257 CORE_CFLAGS += -flto 258 CXXFLAGS += -flto 259endif 260 261# Try different combinations to accommodate systems that only have 262# python[2][3]-config in weird combinations in the following order of 263# priority from lowest to highest: 264# * python2-config as per pep-0394. 265# * python-config 266# * python3-config 267# * $(PYTHON)-config (If PYTHON is user supplied but PYTHON_CONFIG isn't) 268# 269PYTHON_AUTO := python-config 270PYTHON_AUTO := $(if $(call get-executable,python2-config),python2-config,$(PYTHON_AUTO)) 271PYTHON_AUTO := $(if $(call get-executable,python-config),python-config,$(PYTHON_AUTO)) 272PYTHON_AUTO := $(if $(call get-executable,python3-config),python3-config,$(PYTHON_AUTO)) 273 274# If PYTHON is defined but PYTHON_CONFIG isn't, then take $(PYTHON)-config as if it was the user 275# supplied value for PYTHON_CONFIG. Because it's "user supplied", error out if it doesn't exist. 276ifdef PYTHON 277 ifndef PYTHON_CONFIG 278 PYTHON_CONFIG_AUTO := $(call get-executable,$(PYTHON)-config) 279 PYTHON_CONFIG := $(if $(PYTHON_CONFIG_AUTO),$(PYTHON_CONFIG_AUTO),\ 280 $(call $(error $(PYTHON)-config not found))) 281 endif 282endif 283 284# Select either auto detected python and python-config or use user supplied values if they are 285# defined. get-executable-or-default fails with an error if the first argument is supplied but 286# doesn't exist. 287override PYTHON_CONFIG := $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON_AUTO)) 288override PYTHON := $(call get-executable-or-default,PYTHON,$(subst -config,,$(PYTHON_CONFIG))) 289 290grep-libs = $(filter -l%,$(1)) 291strip-libs = $(filter-out -l%,$(1)) 292 293PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG)) 294 295# Python 3.8 changed the output of `python-config --ldflags` to not include the 296# '-lpythonX.Y' flag unless '--embed' is also passed. The feature check for 297# libpython fails if that flag is not included in LDFLAGS 298ifeq ($(shell $(PYTHON_CONFIG_SQ) --ldflags --embed 2>&1 1>/dev/null; echo $$?), 0) 299 PYTHON_CONFIG_LDFLAGS := --ldflags --embed 300else 301 PYTHON_CONFIG_LDFLAGS := --ldflags 302endif 303 304ifdef PYTHON_CONFIG 305 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) $(PYTHON_CONFIG_LDFLAGS) 2>/dev/null) 306 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS)) 307 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS)) -lutil 308 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --includes 2>/dev/null) 309 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS) 310 ifeq ($(CC_NO_CLANG), 0) 311 PYTHON_EMBED_CCOPTS := $(filter-out -ffat-lto-objects, $(PYTHON_EMBED_CCOPTS)) 312 endif 313endif 314 315FEATURE_CHECK_CFLAGS-libpython := $(PYTHON_EMBED_CCOPTS) 316FEATURE_CHECK_LDFLAGS-libpython := $(PYTHON_EMBED_LDOPTS) 317 318FEATURE_CHECK_LDFLAGS-libaio = -lrt 319 320FEATURE_CHECK_LDFLAGS-disassembler-four-args = -lbfd -lopcodes -ldl 321FEATURE_CHECK_LDFLAGS-disassembler-init-styled = -lbfd -lopcodes -ldl 322 323CORE_CFLAGS += -fno-omit-frame-pointer 324CORE_CFLAGS += -Wall 325CORE_CFLAGS += -Wextra 326CORE_CFLAGS += -std=gnu11 327 328CXXFLAGS += -std=gnu++17 -fno-exceptions -fno-rtti 329CXXFLAGS += -Wall 330CXXFLAGS += -Wextra 331CXXFLAGS += -fno-omit-frame-pointer 332 333HOSTCFLAGS += -Wall 334HOSTCFLAGS += -Wextra 335 336# Enforce a non-executable stack, as we may regress (again) in the future by 337# adding assembler files missing the .GNU-stack linker note. 338LDFLAGS += -Wl,-z,noexecstack 339 340EXTLIBS = -lpthread -lrt -lm -ldl 341 342ifneq ($(TCMALLOC),) 343 CFLAGS += -fno-builtin-malloc -fno-builtin-calloc -fno-builtin-realloc -fno-builtin-free 344 EXTLIBS += -ltcmalloc 345endif 346 347ifeq ($(FEATURES_DUMP),) 348# We will display at the end of this Makefile.config, using $(call feature_display_entries) 349# As we may retry some feature detection here, see the disassembler-four-args case, for instance 350 FEATURE_DISPLAY_DEFERRED := 1 351include $(srctree)/tools/build/Makefile.feature 352else 353include $(FEATURES_DUMP) 354endif 355 356ifeq ($(feature-stackprotector-all), 1) 357 CORE_CFLAGS += -fstack-protector-all 358endif 359 360ifeq ($(DEBUG),0) 361 ifeq ($(feature-fortify-source), 1) 362 CORE_CFLAGS += -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 363 endif 364endif 365 366INC_FLAGS += -I$(src-perf)/util/include 367INC_FLAGS += -I$(src-perf)/arch/$(SRCARCH)/include 368INC_FLAGS += -I$(srctree)/tools/include/ 369INC_FLAGS += -I$(srctree)/tools/arch/$(SRCARCH)/include/uapi 370INC_FLAGS += -I$(srctree)/tools/include/uapi 371INC_FLAGS += -I$(srctree)/tools/arch/$(SRCARCH)/include/ 372INC_FLAGS += -I$(srctree)/tools/arch/$(SRCARCH)/ 373 374# $(obj-perf) for generated common-cmds.h 375# $(obj-perf)/util for generated bison/flex headers 376ifneq ($(OUTPUT),) 377INC_FLAGS += -I$(obj-perf)/util 378INC_FLAGS += -I$(obj-perf) 379endif 380 381INC_FLAGS += -I$(src-perf)/util 382INC_FLAGS += -I$(src-perf) 383 384CORE_CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE 385 386CFLAGS += $(CORE_CFLAGS) $(INC_FLAGS) 387CXXFLAGS += $(INC_FLAGS) 388 389LIBPERF_CFLAGS := $(CORE_CFLAGS) $(EXTRA_CFLAGS) 390 391ifeq ($(feature-pthread-attr-setaffinity-np), 1) 392 CFLAGS += -DHAVE_PTHREAD_ATTR_SETAFFINITY_NP 393endif 394 395ifeq ($(feature-pthread-barrier), 1) 396 CFLAGS += -DHAVE_PTHREAD_BARRIER 397endif 398 399ifndef NO_BIONIC 400 $(call feature_check,bionic) 401 ifeq ($(feature-bionic), 1) 402 BIONIC := 1 403 CFLAGS += -DLACKS_SIGQUEUE_PROTOTYPE 404 CFLAGS += -DLACKS_OPEN_MEMSTREAM_PROTOTYPE 405 EXTLIBS := $(filter-out -lrt,$(EXTLIBS)) 406 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS)) 407 endif 408endif 409 410ifeq ($(feature-eventfd), 1) 411 CFLAGS += -DHAVE_EVENTFD_SUPPORT 412endif 413 414ifeq ($(feature-get_current_dir_name), 1) 415 CFLAGS += -DHAVE_GET_CURRENT_DIR_NAME 416endif 417 418ifeq ($(feature-gettid), 1) 419 CFLAGS += -DHAVE_GETTID 420endif 421 422ifeq ($(feature-file-handle), 1) 423 CFLAGS += -DHAVE_FILE_HANDLE 424endif 425 426ifdef NO_LIBELF 427 NO_DWARF := 1 428 NO_LIBUNWIND := 1 429 NO_LIBDW_DWARF_UNWIND := 1 430 NO_LIBBPF := 1 431 NO_JVMTI := 1 432else 433 ifeq ($(feature-libelf), 0) 434 ifeq ($(feature-glibc), 1) 435 LIBC_SUPPORT := 1 436 endif 437 ifeq ($(BIONIC),1) 438 LIBC_SUPPORT := 1 439 endif 440 ifeq ($(LIBC_SUPPORT),1) 441 msg := $(error ERROR: No libelf found. Disables 'probe' tool, jvmti and BPF support. Please install libelf-dev, libelf-devel, elfutils-libelf-devel or build with NO_LIBELF=1.) 442 else 443 ifneq ($(filter s% -fsanitize=address%,$(EXTRA_CFLAGS),),) 444 ifneq ($(shell ldconfig -p | grep libasan >/dev/null 2>&1; echo $$?), 0) 445 msg := $(error No libasan found, please install libasan); 446 endif 447 endif 448 449 ifneq ($(filter s% -fsanitize=undefined%,$(EXTRA_CFLAGS),),) 450 ifneq ($(shell ldconfig -p | grep libubsan >/dev/null 2>&1; echo $$?), 0) 451 msg := $(error No libubsan found, please install libubsan); 452 endif 453 endif 454 455 ifneq ($(filter s% -static%,$(LDFLAGS),),) 456 msg := $(error No static glibc found, please install glibc-static); 457 else 458 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]); 459 endif 460 endif 461 else 462 ifndef NO_LIBDW_DWARF_UNWIND 463 ifneq ($(feature-libdw-dwarf-unwind),1) 464 NO_LIBDW_DWARF_UNWIND := 1 465 msg := $(warning No libdw DWARF unwind found, Please install elfutils-devel/libdw-dev >= 0.158 and/or set LIBDW_DIR); 466 endif 467 endif 468 ifneq ($(feature-dwarf), 1) 469 ifndef NO_DWARF 470 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); 471 NO_DWARF := 1 472 endif 473 else 474 ifneq ($(feature-dwarf_getlocations), 1) 475 msg := $(warning Old libdw.h, finding variables at given 'perf probe' point will not work, install elfutils-devel/libdw-dev >= 0.157); 476 else 477 CFLAGS += -DHAVE_DWARF_GETLOCATIONS_SUPPORT 478 endif # dwarf_getlocations 479 endif # Dwarf support 480 endif # libelf support 481endif # NO_LIBELF 482 483ifeq ($(feature-libaio), 1) 484 ifndef NO_AIO 485 CFLAGS += -DHAVE_AIO_SUPPORT 486 endif 487endif 488 489ifdef NO_DWARF 490 NO_LIBDW_DWARF_UNWIND := 1 491endif 492 493ifeq ($(feature-scandirat), 1) 494 CFLAGS += -DHAVE_SCANDIRAT_SUPPORT 495endif 496 497ifeq ($(feature-sched_getcpu), 1) 498 CFLAGS += -DHAVE_SCHED_GETCPU_SUPPORT 499endif 500 501ifeq ($(feature-setns), 1) 502 CFLAGS += -DHAVE_SETNS_SUPPORT 503 $(call detected,CONFIG_SETNS) 504endif 505 506ifdef CORESIGHT 507 $(call feature_check,libopencsd) 508 ifeq ($(feature-libopencsd), 1) 509 CFLAGS += -DHAVE_CSTRACE_SUPPORT $(LIBOPENCSD_CFLAGS) 510 ifeq ($(feature-reallocarray), 0) 511 CFLAGS += -DCOMPAT_NEED_REALLOCARRAY 512 endif 513 LDFLAGS += $(LIBOPENCSD_LDFLAGS) 514 EXTLIBS += $(OPENCSDLIBS) 515 $(call detected,CONFIG_LIBOPENCSD) 516 ifdef CSTRACE_RAW 517 CFLAGS += -DCS_DEBUG_RAW 518 ifeq (${CSTRACE_RAW}, packed) 519 CFLAGS += -DCS_RAW_PACKED 520 endif 521 endif 522 else 523 dummy := $(error Error: No libopencsd library found or the version is not up-to-date. Please install recent libopencsd to build with CORESIGHT=1) 524 endif 525endif 526 527ifndef NO_ZLIB 528 ifeq ($(feature-zlib), 1) 529 CFLAGS += -DHAVE_ZLIB_SUPPORT 530 EXTLIBS += -lz 531 $(call detected,CONFIG_ZLIB) 532 else 533 NO_ZLIB := 1 534 endif 535endif 536 537ifndef NO_LIBELF 538 CFLAGS += -DHAVE_LIBELF_SUPPORT 539 EXTLIBS += -lelf 540 $(call detected,CONFIG_LIBELF) 541 542 ifeq ($(feature-libelf-getphdrnum), 1) 543 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT 544 endif 545 546 ifeq ($(feature-libelf-gelf_getnote), 1) 547 CFLAGS += -DHAVE_GELF_GETNOTE_SUPPORT 548 else 549 msg := $(warning gelf_getnote() not found on libelf, SDT support disabled); 550 endif 551 552 ifeq ($(feature-libelf-getshdrstrndx), 1) 553 CFLAGS += -DHAVE_ELF_GETSHDRSTRNDX_SUPPORT 554 endif 555 556 ifndef NO_LIBDEBUGINFOD 557 $(call feature_check,libdebuginfod) 558 ifeq ($(feature-libdebuginfod), 1) 559 CFLAGS += -DHAVE_DEBUGINFOD_SUPPORT 560 EXTLIBS += -ldebuginfod 561 endif 562 endif 563 564 ifndef NO_DWARF 565 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined) 566 msg := $(warning DWARF register mappings have not been defined for architecture $(SRCARCH), DWARF support disabled); 567 NO_DWARF := 1 568 else 569 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS) 570 LDFLAGS += $(LIBDW_LDFLAGS) 571 EXTLIBS += ${DWARFLIBS} 572 $(call detected,CONFIG_DWARF) 573 endif # PERF_HAVE_DWARF_REGS 574 endif # NO_DWARF 575 576 ifndef NO_LIBBPF 577 ifeq ($(feature-bpf), 1) 578 # detecting libbpf without LIBBPF_DYNAMIC, so make VF=1 shows libbpf detection status 579 $(call feature_check,libbpf) 580 581 ifdef LIBBPF_DYNAMIC 582 ifeq ($(feature-libbpf), 1) 583 EXTLIBS += -lbpf 584 CFLAGS += -DHAVE_LIBBPF_SUPPORT 585 $(call detected,CONFIG_LIBBPF) 586 $(call detected,CONFIG_LIBBPF_DYNAMIC) 587 else 588 dummy := $(error Error: No libbpf devel library found or older than v1.0, please install/update libbpf-devel); 589 endif 590 else 591 ifeq ($(NO_ZLIB), 1) 592 dummy := $(warning Warning: Statically building libbpf not possible as zlib is missing) 593 NO_LIBBPF := 1 594 else 595 # Libbpf will be built as a static library from tools/lib/bpf. 596 LIBBPF_STATIC := 1 597 $(call detected,CONFIG_LIBBPF) 598 CFLAGS += -DHAVE_LIBBPF_SUPPORT 599 endif 600 endif 601 endif 602 endif # NO_LIBBPF 603endif # NO_LIBELF 604 605ifndef NO_SDT 606 ifneq ($(feature-sdt), 1) 607 msg := $(warning No sys/sdt.h found, no SDT events are defined, please install systemtap-sdt-devel or systemtap-sdt-dev); 608 NO_SDT := 1; 609 else 610 CFLAGS += -DHAVE_SDT_EVENT 611 $(call detected,CONFIG_SDT_EVENT) 612 endif 613endif 614 615ifdef PERF_HAVE_JITDUMP 616 ifndef NO_LIBELF 617 $(call detected,CONFIG_JITDUMP) 618 CFLAGS += -DHAVE_JITDUMP 619 endif 620endif 621 622ifeq ($(SRCARCH),powerpc) 623 ifndef NO_DWARF 624 CFLAGS += -DHAVE_SKIP_CALLCHAIN_IDX 625 endif 626endif 627 628ifndef NO_LIBUNWIND 629 have_libunwind := 630 631 $(call feature_check,libunwind-x86) 632 ifeq ($(feature-libunwind-x86), 1) 633 $(call detected,CONFIG_LIBUNWIND_X86) 634 CFLAGS += -DHAVE_LIBUNWIND_X86_SUPPORT 635 LDFLAGS += -lunwind-x86 636 EXTLIBS_LIBUNWIND += -lunwind-x86 637 have_libunwind = 1 638 endif 639 640 $(call feature_check,libunwind-aarch64) 641 ifeq ($(feature-libunwind-aarch64), 1) 642 $(call detected,CONFIG_LIBUNWIND_AARCH64) 643 CFLAGS += -DHAVE_LIBUNWIND_AARCH64_SUPPORT 644 LDFLAGS += -lunwind-aarch64 645 EXTLIBS_LIBUNWIND += -lunwind-aarch64 646 have_libunwind = 1 647 $(call feature_check,libunwind-debug-frame-aarch64) 648 ifneq ($(feature-libunwind-debug-frame-aarch64), 1) 649 msg := $(warning No debug_frame support found in libunwind-aarch64); 650 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME_AARCH64 651 endif 652 endif 653 654 ifneq ($(feature-libunwind), 1) 655 msg := $(warning No libunwind found. Please install libunwind-dev[el] >= 1.1 and/or set LIBUNWIND_DIR); 656 NO_LOCAL_LIBUNWIND := 1 657 else 658 have_libunwind := 1 659 $(call detected,CONFIG_LOCAL_LIBUNWIND) 660 endif 661 662 ifneq ($(have_libunwind), 1) 663 NO_LIBUNWIND := 1 664 endif 665else 666 NO_LOCAL_LIBUNWIND := 1 667endif 668 669ifndef NO_LIBBPF 670 ifneq ($(feature-bpf), 1) 671 msg := $(warning BPF API too old. Please install recent kernel headers. BPF support in 'perf record' is disabled.) 672 NO_LIBBPF := 1 673 endif 674endif 675 676ifndef BUILD_BPF_SKEL 677 # BPF skeletons control a large number of perf features, by default 678 # they are enabled. 679 BUILD_BPF_SKEL := 1 680endif 681 682ifeq ($(BUILD_BPF_SKEL),1) 683 ifeq ($(filter -DHAVE_LIBBPF_SUPPORT, $(CFLAGS)),) 684 dummy := $(warning Warning: Disabled BPF skeletons as libbpf is required) 685 BUILD_BPF_SKEL := 0 686 else ifeq ($(filter -DHAVE_LIBELF_SUPPORT, $(CFLAGS)),) 687 dummy := $(warning Warning: Disabled BPF skeletons as libelf is required by bpftool) 688 BUILD_BPF_SKEL := 0 689 else ifeq ($(filter -DHAVE_ZLIB_SUPPORT, $(CFLAGS)),) 690 dummy := $(warning Warning: Disabled BPF skeletons as zlib is required by bpftool) 691 BUILD_BPF_SKEL := 0 692 else ifeq ($(call get-executable,$(CLANG)),) 693 dummy := $(warning Warning: Disabled BPF skeletons as clang ($(CLANG)) is missing) 694 BUILD_BPF_SKEL := 0 695 else 696 $(call feature_check,clang-bpf-co-re) 697 ifeq ($(feature-clang-bpf-co-re), 0) 698 dummy := $(warning Warning: Disabled BPF skeletons as clang is too old) 699 BUILD_BPF_SKEL := 0 700 endif 701 endif 702 ifeq ($(BUILD_BPF_SKEL),1) 703 $(call detected,CONFIG_PERF_BPF_SKEL) 704 CFLAGS += -DHAVE_BPF_SKEL 705 endif 706endif 707 708ifndef GEN_VMLINUX_H 709 VMLINUX_H=$(src-perf)/util/bpf_skel/vmlinux/vmlinux.h 710endif 711 712dwarf-post-unwind := 1 713dwarf-post-unwind-text := BUG 714 715# setup DWARF post unwinder 716ifdef NO_LIBUNWIND 717 ifdef NO_LIBDW_DWARF_UNWIND 718 msg := $(warning Disabling post unwind, no support found.); 719 dwarf-post-unwind := 0 720 else 721 dwarf-post-unwind-text := libdw 722 $(call detected,CONFIG_LIBDW_DWARF_UNWIND) 723 endif 724else 725 dwarf-post-unwind-text := libunwind 726 $(call detected,CONFIG_LIBUNWIND) 727 # Enable libunwind support by default. 728 ifndef NO_LIBDW_DWARF_UNWIND 729 NO_LIBDW_DWARF_UNWIND := 1 730 endif 731endif 732 733ifeq ($(dwarf-post-unwind),1) 734 CFLAGS += -DHAVE_DWARF_UNWIND_SUPPORT 735 $(call detected,CONFIG_DWARF_UNWIND) 736else 737 NO_DWARF_UNWIND := 1 738endif 739 740ifndef NO_LOCAL_LIBUNWIND 741 ifeq ($(SRCARCH),$(filter $(SRCARCH),arm arm64)) 742 $(call feature_check,libunwind-debug-frame) 743 ifneq ($(feature-libunwind-debug-frame), 1) 744 msg := $(warning No debug_frame support found in libunwind); 745 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME 746 endif 747 else 748 # non-ARM has no dwarf_find_debug_frame() function: 749 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME 750 endif 751 EXTLIBS += $(LIBUNWIND_LIBS) 752 LDFLAGS += $(LIBUNWIND_LIBS) 753endif 754ifeq ($(findstring -static,${LDFLAGS}),-static) 755 # gcc -static links libgcc_eh which contans piece of libunwind 756 LIBUNWIND_LDFLAGS += -Wl,--allow-multiple-definition 757endif 758 759ifndef NO_LIBUNWIND 760 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT 761 CFLAGS += $(LIBUNWIND_CFLAGS) 762 LDFLAGS += $(LIBUNWIND_LDFLAGS) 763 EXTLIBS += $(EXTLIBS_LIBUNWIND) 764endif 765 766ifneq ($(NO_LIBTRACEEVENT),1) 767 ifeq ($(NO_SYSCALL_TABLE),0) 768 $(call detected,CONFIG_TRACE) 769 else 770 ifndef NO_LIBAUDIT 771 $(call feature_check,libaudit) 772 ifneq ($(feature-libaudit), 1) 773 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev); 774 NO_LIBAUDIT := 1 775 else 776 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT 777 EXTLIBS += -laudit 778 $(call detected,CONFIG_TRACE) 779 endif 780 endif 781 endif 782endif 783 784ifndef NO_LIBCRYPTO 785 ifneq ($(feature-libcrypto), 1) 786 msg := $(warning No libcrypto.h found, disables jitted code injection, please install openssl-devel or libssl-dev); 787 NO_LIBCRYPTO := 1 788 else 789 CFLAGS += -DHAVE_LIBCRYPTO_SUPPORT 790 EXTLIBS += -lcrypto 791 $(call detected,CONFIG_CRYPTO) 792 endif 793endif 794 795ifndef NO_SLANG 796 ifneq ($(feature-libslang), 1) 797 ifneq ($(feature-libslang-include-subdir), 1) 798 msg := $(warning slang not found, disables TUI support. Please install slang-devel, libslang-dev or libslang2-dev); 799 NO_SLANG := 1 800 else 801 CFLAGS += -DHAVE_SLANG_INCLUDE_SUBDIR 802 endif 803 endif 804 ifndef NO_SLANG 805 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h 806 CFLAGS += -DHAVE_SLANG_SUPPORT 807 EXTLIBS += -lslang 808 $(call detected,CONFIG_SLANG) 809 endif 810endif 811 812ifdef GTK2 813 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null) 814 $(call feature_check,gtk2) 815 ifneq ($(feature-gtk2), 1) 816 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev); 817 NO_GTK2 := 1 818 else 819 $(call feature_check,gtk2-infobar) 820 ifeq ($(feature-gtk2-infobar), 1) 821 GTK_CFLAGS := -DHAVE_GTK_INFO_BAR_SUPPORT 822 endif 823 CFLAGS += -DHAVE_GTK2_SUPPORT 824 GTK_CFLAGS += $(shell $(PKG_CONFIG) --cflags gtk+-2.0 2>/dev/null) 825 GTK_LIBS := $(shell $(PKG_CONFIG) --libs gtk+-2.0 2>/dev/null) 826 EXTLIBS += -ldl 827 endif 828endif 829 830ifdef NO_LIBPERL 831 CFLAGS += -DNO_LIBPERL 832else 833 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null) 834 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS)) 835 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS)) 836 PERL_EMBED_CCOPTS = $(shell perl -MExtUtils::Embed -e ccopts 2>/dev/null) 837 PERL_EMBED_CCOPTS := $(filter-out -specs=%,$(PERL_EMBED_CCOPTS)) 838 PERL_EMBED_CCOPTS := $(filter-out -flto=auto -ffat-lto-objects, $(PERL_EMBED_CCOPTS)) 839 PERL_EMBED_LDOPTS := $(filter-out -specs=%,$(PERL_EMBED_LDOPTS)) 840 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS) 841 842 ifneq ($(feature-libperl), 1) 843 CFLAGS += -DNO_LIBPERL 844 NO_LIBPERL := 1 845 msg := $(warning Missing perl devel files. Disabling perl scripting support, please install perl-ExtUtils-Embed/libperl-dev); 846 else 847 LDFLAGS += $(PERL_EMBED_LDFLAGS) 848 EXTLIBS += $(PERL_EMBED_LIBADD) 849 CFLAGS += -DHAVE_LIBPERL_SUPPORT 850 ifeq ($(CC_NO_CLANG), 0) 851 CFLAGS += -Wno-compound-token-split-by-macro 852 endif 853 $(call detected,CONFIG_LIBPERL) 854 endif 855endif 856 857ifeq ($(feature-timerfd), 1) 858 CFLAGS += -DHAVE_TIMERFD_SUPPORT 859else 860 msg := $(warning No timerfd support. Disables 'perf kvm stat live'); 861endif 862 863disable-python = $(eval $(disable-python_code)) 864define disable-python_code 865 CFLAGS += -DNO_LIBPYTHON 866 $(warning $1) 867 NO_LIBPYTHON := 1 868endef 869 870PYTHON_EXTENSION_SUFFIX := '.so' 871ifdef NO_LIBPYTHON 872 $(call disable-python,Python support disabled by user) 873else 874 875 ifndef PYTHON 876 $(call disable-python,No python interpreter was found: disables Python support - please install python-devel/python-dev) 877 else 878 PYTHON_WORD := $(call shell-wordify,$(PYTHON)) 879 880 ifndef PYTHON_CONFIG 881 $(call disable-python,No 'python-config' tool was found: disables Python support - please install python-devel/python-dev) 882 else 883 884 ifneq ($(feature-libpython), 1) 885 $(call disable-python,No 'Python.h' was found: disables Python support - please install python-devel/python-dev) 886 else 887 LDFLAGS += $(PYTHON_EMBED_LDFLAGS) 888 EXTLIBS += $(PYTHON_EMBED_LIBADD) 889 PYTHON_SETUPTOOLS_INSTALLED := $(shell $(PYTHON) -c 'import setuptools;' 2> /dev/null && echo "yes" || echo "no") 890 ifeq ($(PYTHON_SETUPTOOLS_INSTALLED), yes) 891 PYTHON_EXTENSION_SUFFIX := $(shell $(PYTHON) -c 'from importlib import machinery; print(machinery.EXTENSION_SUFFIXES[0])') 892 LANG_BINDINGS += $(obj-perf)python/perf$(PYTHON_EXTENSION_SUFFIX) 893 else 894 msg := $(warning Missing python setuptools, the python binding won't be built, please install python3-setuptools or equivalent); 895 endif 896 CFLAGS += -DHAVE_LIBPYTHON_SUPPORT 897 $(call detected,CONFIG_LIBPYTHON) 898 endif 899 endif 900 endif 901endif 902 903ifneq ($(NO_JEVENTS),1) 904 ifeq ($(wildcard pmu-events/arch/$(SRCARCH)/mapfile.csv),) 905 NO_JEVENTS := 1 906 endif 907endif 908ifneq ($(NO_JEVENTS),1) 909 NO_JEVENTS := 0 910 ifndef PYTHON 911 $(error ERROR: No python interpreter needed for jevents generation. Install python or build with NO_JEVENTS=1.) 912 else 913 # jevents.py uses f-strings present in Python 3.6 released in Dec. 2016. 914 JEVENTS_PYTHON_GOOD := $(shell $(PYTHON) -c 'import sys;print("1" if(sys.version_info.major >= 3 and sys.version_info.minor >= 6) else "0")' 2> /dev/null) 915 ifneq ($(JEVENTS_PYTHON_GOOD), 1) 916 $(error ERROR: Python interpreter needed for jevents generation too old (older than 3.6). Install a newer python or build with NO_JEVENTS=1.) 917 endif 918 endif 919endif 920 921ifdef BUILD_NONDISTRO 922 ifeq ($(feature-libbfd), 1) 923 EXTLIBS += -lbfd -lopcodes 924 else 925 # we are on a system that requires -liberty and (maybe) -lz 926 # to link against -lbfd; test each case individually here 927 928 # call all detections now so we get correct 929 # status in VF output 930 $(call feature_check,libbfd-liberty) 931 $(call feature_check,libbfd-liberty-z) 932 933 ifeq ($(feature-libbfd-liberty), 1) 934 EXTLIBS += -lbfd -lopcodes -liberty 935 FEATURE_CHECK_LDFLAGS-disassembler-four-args += -liberty -ldl 936 FEATURE_CHECK_LDFLAGS-disassembler-init-styled += -liberty -ldl 937 else 938 ifeq ($(feature-libbfd-liberty-z), 1) 939 EXTLIBS += -lbfd -lopcodes -liberty -lz 940 FEATURE_CHECK_LDFLAGS-disassembler-four-args += -liberty -lz -ldl 941 FEATURE_CHECK_LDFLAGS-disassembler-init-styled += -liberty -lz -ldl 942 endif 943 endif 944 $(call feature_check,disassembler-four-args) 945 $(call feature_check,disassembler-init-styled) 946 endif 947 948 CFLAGS += -DHAVE_LIBBFD_SUPPORT 949 CXXFLAGS += -DHAVE_LIBBFD_SUPPORT 950 ifeq ($(feature-libbfd-buildid), 1) 951 CFLAGS += -DHAVE_LIBBFD_BUILDID_SUPPORT 952 else 953 msg := $(warning Old version of libbfd/binutils things like PE executable profiling will not be available); 954 endif 955endif 956 957ifndef NO_DEMANGLE 958 $(call feature_check,cxa-demangle) 959 ifeq ($(feature-cxa-demangle), 1) 960 EXTLIBS += -lstdc++ 961 CFLAGS += -DHAVE_CXA_DEMANGLE_SUPPORT 962 CXXFLAGS += -DHAVE_CXA_DEMANGLE_SUPPORT 963 $(call detected,CONFIG_CXX_DEMANGLE) 964 endif 965 ifdef BUILD_NONDISTRO 966 ifeq ($(filter -liberty,$(EXTLIBS)),) 967 $(call feature_check,cplus-demangle) 968 ifeq ($(feature-cplus-demangle), 1) 969 EXTLIBS += -liberty 970 endif 971 endif 972 ifneq ($(filter -liberty,$(EXTLIBS)),) 973 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT 974 CXXFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT 975 endif 976 endif 977endif 978 979ifndef NO_LZMA 980 ifeq ($(feature-lzma), 1) 981 CFLAGS += -DHAVE_LZMA_SUPPORT 982 EXTLIBS += -llzma 983 $(call detected,CONFIG_LZMA) 984 else 985 msg := $(warning No liblzma found, disables xz kernel module decompression, please install xz-devel/liblzma-dev); 986 NO_LZMA := 1 987 endif 988endif 989 990ifndef NO_LIBZSTD 991 ifeq ($(feature-libzstd), 1) 992 CFLAGS += -DHAVE_ZSTD_SUPPORT 993 CFLAGS += $(LIBZSTD_CFLAGS) 994 LDFLAGS += $(LIBZSTD_LDFLAGS) 995 EXTLIBS += -lzstd 996 $(call detected,CONFIG_ZSTD) 997 else 998 msg := $(warning No libzstd found, disables trace compression, please install libzstd-dev[el] and/or set LIBZSTD_DIR); 999 NO_LIBZSTD := 1 1000 endif 1001endif 1002 1003ifndef NO_LIBCAP 1004 ifeq ($(feature-libcap), 1) 1005 CFLAGS += -DHAVE_LIBCAP_SUPPORT 1006 EXTLIBS += -lcap 1007 $(call detected,CONFIG_LIBCAP) 1008 else 1009 msg := $(warning No libcap found, disables capability support, please install libcap-devel/libcap-dev); 1010 NO_LIBCAP := 1 1011 endif 1012endif 1013 1014ifndef NO_BACKTRACE 1015 ifeq ($(feature-backtrace), 1) 1016 CFLAGS += -DHAVE_BACKTRACE_SUPPORT 1017 endif 1018endif 1019 1020ifndef NO_LIBNUMA 1021 ifeq ($(feature-libnuma), 0) 1022 msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numactl-devel/libnuma-devel/libnuma-dev); 1023 NO_LIBNUMA := 1 1024 else 1025 ifeq ($(feature-numa_num_possible_cpus), 0) 1026 msg := $(warning Old numa library found, disables 'perf bench numa mem' benchmark, please install numactl-devel/libnuma-devel/libnuma-dev >= 2.0.8); 1027 NO_LIBNUMA := 1 1028 else 1029 CFLAGS += -DHAVE_LIBNUMA_SUPPORT 1030 EXTLIBS += -lnuma 1031 $(call detected,CONFIG_NUMA) 1032 endif 1033 endif 1034endif 1035 1036ifdef HAVE_KVM_STAT_SUPPORT 1037 CFLAGS += -DHAVE_KVM_STAT_SUPPORT 1038endif 1039 1040ifeq ($(feature-disassembler-four-args), 1) 1041 CFLAGS += -DDISASM_FOUR_ARGS_SIGNATURE 1042endif 1043 1044ifeq ($(feature-disassembler-init-styled), 1) 1045 CFLAGS += -DDISASM_INIT_STYLED 1046endif 1047 1048ifeq (${IS_64_BIT}, 1) 1049 ifndef NO_PERF_READ_VDSO32 1050 $(call feature_check,compile-32) 1051 ifeq ($(feature-compile-32), 1) 1052 CFLAGS += -DHAVE_PERF_READ_VDSO32 1053 else 1054 NO_PERF_READ_VDSO32 := 1 1055 endif 1056 endif 1057 ifneq ($(SRCARCH), x86) 1058 NO_PERF_READ_VDSOX32 := 1 1059 endif 1060 ifndef NO_PERF_READ_VDSOX32 1061 $(call feature_check,compile-x32) 1062 ifeq ($(feature-compile-x32), 1) 1063 CFLAGS += -DHAVE_PERF_READ_VDSOX32 1064 else 1065 NO_PERF_READ_VDSOX32 := 1 1066 endif 1067 endif 1068else 1069 NO_PERF_READ_VDSO32 := 1 1070 NO_PERF_READ_VDSOX32 := 1 1071endif 1072 1073ifndef NO_LIBBABELTRACE 1074 $(call feature_check,libbabeltrace) 1075 ifeq ($(feature-libbabeltrace), 1) 1076 CFLAGS += -DHAVE_LIBBABELTRACE_SUPPORT $(LIBBABELTRACE_CFLAGS) 1077 LDFLAGS += $(LIBBABELTRACE_LDFLAGS) 1078 EXTLIBS += -lbabeltrace-ctf 1079 $(call detected,CONFIG_LIBBABELTRACE) 1080 else 1081 msg := $(warning No libbabeltrace found, disables 'perf data' CTF format support, please install libbabeltrace-dev[el]/libbabeltrace-ctf-dev); 1082 endif 1083endif 1084 1085ifndef NO_AUXTRACE 1086 ifeq ($(SRCARCH),x86) 1087 ifeq ($(feature-get_cpuid), 0) 1088 msg := $(warning Your gcc lacks the __get_cpuid() builtin, disables support for auxtrace/Intel PT, please install a newer gcc); 1089 NO_AUXTRACE := 1 1090 endif 1091 endif 1092 ifndef NO_AUXTRACE 1093 $(call detected,CONFIG_AUXTRACE) 1094 CFLAGS += -DHAVE_AUXTRACE_SUPPORT 1095 ifeq ($(feature-reallocarray), 0) 1096 CFLAGS += -DCOMPAT_NEED_REALLOCARRAY 1097 endif 1098 endif 1099endif 1100 1101ifdef EXTRA_TESTS 1102 $(call detected,CONFIG_EXTRA_TESTS) 1103 CFLAGS += -DHAVE_EXTRA_TESTS 1104endif 1105 1106ifndef NO_JVMTI 1107 ifneq (,$(wildcard /usr/sbin/update-java-alternatives)) 1108 JDIR=$(shell /usr/sbin/update-java-alternatives -l | head -1 | awk '{print $$3}') 1109 else 1110 ifneq (,$(wildcard /usr/sbin/alternatives)) 1111 JDIR=$(shell /usr/sbin/alternatives --display java | tail -1 | cut -d' ' -f 5 | sed -e 's%/jre/bin/java.%%g' -e 's%/bin/java.%%g') 1112 endif 1113 endif 1114 ifndef JDIR 1115 $(warning No alternatives command found, you need to set JDIR= to point to the root of your Java directory) 1116 NO_JVMTI := 1 1117 endif 1118endif 1119 1120ifndef NO_JVMTI 1121 FEATURE_CHECK_CFLAGS-jvmti := -I$(JDIR)/include -I$(JDIR)/include/linux 1122 $(call feature_check,jvmti) 1123 ifeq ($(feature-jvmti), 1) 1124 $(call detected_var,JDIR) 1125 ifndef NO_JVMTI_CMLR 1126 FEATURE_CHECK_CFLAGS-jvmti-cmlr := $(FEATURE_CHECK_CFLAGS-jvmti) 1127 $(call feature_check,jvmti-cmlr) 1128 ifeq ($(feature-jvmti-cmlr), 1) 1129 CFLAGS += -DHAVE_JVMTI_CMLR 1130 endif 1131 endif # NO_JVMTI_CMLR 1132 else 1133 $(warning No openjdk development package found, please install JDK package, e.g. openjdk-8-jdk, java-1.8.0-openjdk-devel) 1134 NO_JVMTI := 1 1135 endif 1136endif 1137 1138ifndef NO_LIBPFM4 1139 $(call feature_check,libpfm4) 1140 ifeq ($(feature-libpfm4), 1) 1141 CFLAGS += -DHAVE_LIBPFM 1142 EXTLIBS += -lpfm 1143 ASCIIDOC_EXTRA = -aHAVE_LIBPFM=1 1144 $(call detected,CONFIG_LIBPFM4) 1145 else 1146 msg := $(warning libpfm4 not found, disables libpfm4 support. Please install libpfm4-dev); 1147 endif 1148endif 1149 1150# libtraceevent is a recommended dependency picked up from the system. 1151ifneq ($(NO_LIBTRACEEVENT),1) 1152 $(call feature_check,libtraceevent) 1153 ifeq ($(feature-libtraceevent), 1) 1154 CFLAGS += -DHAVE_LIBTRACEEVENT 1155 EXTLIBS += -ltraceevent 1156 LIBTRACEEVENT_VERSION := $(shell $(PKG_CONFIG) --modversion libtraceevent) 1157 LIBTRACEEVENT_VERSION_1 := $(word 1, $(subst ., ,$(LIBTRACEEVENT_VERSION))) 1158 LIBTRACEEVENT_VERSION_2 := $(word 2, $(subst ., ,$(LIBTRACEEVENT_VERSION))) 1159 LIBTRACEEVENT_VERSION_3 := $(word 3, $(subst ., ,$(LIBTRACEEVENT_VERSION))) 1160 LIBTRACEEVENT_VERSION_CPP := $(shell expr $(LIBTRACEEVENT_VERSION_1) \* 255 \* 255 + $(LIBTRACEEVENT_VERSION_2) \* 255 + $(LIBTRACEEVENT_VERSION_3)) 1161 CFLAGS += -DLIBTRACEEVENT_VERSION=$(LIBTRACEEVENT_VERSION_CPP) 1162 $(call detected,CONFIG_LIBTRACEEVENT) 1163 else 1164 dummy := $(error ERROR: libtraceevent is missing. Please install libtraceevent-dev/libtraceevent-devel or build with NO_LIBTRACEEVENT=1) 1165 endif 1166 1167 $(call feature_check,libtracefs) 1168 ifeq ($(feature-libtracefs), 1) 1169 EXTLIBS += -ltracefs 1170 LIBTRACEFS_VERSION := $(shell $(PKG_CONFIG) --modversion libtracefs) 1171 LIBTRACEFS_VERSION_1 := $(word 1, $(subst ., ,$(LIBTRACEFS_VERSION))) 1172 LIBTRACEFS_VERSION_2 := $(word 2, $(subst ., ,$(LIBTRACEFS_VERSION))) 1173 LIBTRACEFS_VERSION_3 := $(word 3, $(subst ., ,$(LIBTRACEFS_VERSION))) 1174 LIBTRACEFS_VERSION_CPP := $(shell expr $(LIBTRACEFS_VERSION_1) \* 255 \* 255 + $(LIBTRACEFS_VERSION_2) \* 255 + $(LIBTRACEFS_VERSION_3)) 1175 CFLAGS += -DLIBTRACEFS_VERSION=$(LIBTRACEFS_VERSION_CPP) 1176 endif 1177endif 1178 1179# Among the variables below, these: 1180# perfexecdir 1181# libbpf_include_dir 1182# perf_examples_dir 1183# template_dir 1184# mandir 1185# infodir 1186# htmldir 1187# ETC_PERFCONFIG (but not sysconfdir) 1188# can be specified as a relative path some/where/else; 1189# this is interpreted as relative to $(prefix) and "perf" at 1190# runtime figures out where they are based on the path to the executable. 1191# This can help installing the suite in a relocatable way. 1192 1193# Make the path relative to DESTDIR, not to prefix 1194ifndef DESTDIR 1195prefix ?= $(HOME) 1196endif 1197bindir_relative = bin 1198bindir = $(abspath $(prefix)/$(bindir_relative)) 1199includedir_relative = include 1200includedir = $(abspath $(prefix)/$(includedir_relative)) 1201mandir = share/man 1202infodir = share/info 1203perfexecdir = libexec/perf-core 1204# FIXME: system's libbpf header directory, where we expect to find bpf/bpf_helpers.h, for instance 1205libbpf_include_dir = /usr/include 1206perf_examples_dir = lib/perf/examples 1207sharedir = $(prefix)/share 1208template_dir = share/perf-core/templates 1209STRACE_GROUPS_DIR = share/perf-core/strace/groups 1210htmldir = share/doc/perf-doc 1211tipdir = share/doc/perf-tip 1212srcdir = $(srctree)/tools/perf 1213ifeq ($(prefix),/usr) 1214sysconfdir = /etc 1215ETC_PERFCONFIG = $(sysconfdir)/perfconfig 1216else 1217sysconfdir = $(prefix)/etc 1218ETC_PERFCONFIG = etc/perfconfig 1219endif 1220ifndef lib 1221ifeq ($(SRCARCH)$(IS_64_BIT), x861) 1222lib = lib64 1223else 1224lib = lib 1225endif 1226endif # lib 1227libdir = $(prefix)/$(lib) 1228 1229# Shell quote (do not use $(call) to accommodate ancient setups); 1230ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG)) 1231STRACE_GROUPS_DIR_SQ = $(subst ','\'',$(STRACE_GROUPS_DIR)) 1232DESTDIR_SQ = $(subst ','\'',$(DESTDIR)) 1233bindir_SQ = $(subst ','\'',$(bindir)) 1234includedir_SQ = $(subst ','\'',$(includedir)) 1235mandir_SQ = $(subst ','\'',$(mandir)) 1236infodir_SQ = $(subst ','\'',$(infodir)) 1237perfexecdir_SQ = $(subst ','\'',$(perfexecdir)) 1238libbpf_include_dir_SQ = $(subst ','\'',$(libbpf_include_dir)) 1239perf_examples_dir_SQ = $(subst ','\'',$(perf_examples_dir)) 1240template_dir_SQ = $(subst ','\'',$(template_dir)) 1241htmldir_SQ = $(subst ','\'',$(htmldir)) 1242tipdir_SQ = $(subst ','\'',$(tipdir)) 1243prefix_SQ = $(subst ','\'',$(prefix)) 1244sysconfdir_SQ = $(subst ','\'',$(sysconfdir)) 1245libdir_SQ = $(subst ','\'',$(libdir)) 1246srcdir_SQ = $(subst ','\'',$(srcdir)) 1247 1248ifneq ($(filter /%,$(firstword $(perfexecdir))),) 1249perfexec_instdir = $(perfexecdir) 1250perf_include_instdir = $(libbpf_include_dir) 1251perf_examples_instdir = $(perf_examples_dir) 1252STRACE_GROUPS_INSTDIR = $(STRACE_GROUPS_DIR) 1253tip_instdir = $(tipdir) 1254else 1255perfexec_instdir = $(prefix)/$(perfexecdir) 1256perf_include_instdir = $(prefix)/$(libbpf_include_dir) 1257perf_examples_instdir = $(prefix)/$(perf_examples_dir) 1258STRACE_GROUPS_INSTDIR = $(prefix)/$(STRACE_GROUPS_DIR) 1259tip_instdir = $(prefix)/$(tipdir) 1260endif 1261perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir)) 1262perf_include_instdir_SQ = $(subst ','\'',$(perf_include_instdir)) 1263perf_examples_instdir_SQ = $(subst ','\'',$(perf_examples_instdir)) 1264STRACE_GROUPS_INSTDIR_SQ = $(subst ','\'',$(STRACE_GROUPS_INSTDIR)) 1265tip_instdir_SQ = $(subst ','\'',$(tip_instdir)) 1266 1267export perfexec_instdir_SQ 1268 1269print_var = $(eval $(print_var_code)) $(info $(MSG)) 1270define print_var_code 1271 MSG = $(shell printf '...%40s: %s' $(1) $($(1))) 1272endef 1273 1274ifeq ($(feature_display),1) 1275 $(call feature_display_entries) 1276endif 1277 1278ifeq ($(VF),1) 1279 # Display EXTRA features which are detected manualy 1280 # from here with feature_check call and thus cannot 1281 # be partof global state output. 1282 $(foreach feat,$(FEATURE_TESTS_EXTRA),$(call feature_print_status,$(feat),) $(info $(MSG))) 1283 $(call print_var,prefix) 1284 $(call print_var,bindir) 1285 $(call print_var,libdir) 1286 $(call print_var,sysconfdir) 1287 $(call print_var,LIBUNWIND_DIR) 1288 $(call print_var,LIBDW_DIR) 1289 $(call print_var,JDIR) 1290 1291 ifeq ($(dwarf-post-unwind),1) 1292 $(call feature_print_text,"DWARF post unwind library", $(dwarf-post-unwind-text)) $(info $(MSG)) 1293 endif 1294endif 1295 1296$(info ) 1297 1298$(call detected_var,bindir_SQ) 1299$(call detected_var,PYTHON_WORD) 1300ifneq ($(OUTPUT),) 1301$(call detected_var,OUTPUT) 1302endif 1303$(call detected_var,htmldir_SQ) 1304$(call detected_var,infodir_SQ) 1305$(call detected_var,mandir_SQ) 1306$(call detected_var,ETC_PERFCONFIG_SQ) 1307$(call detected_var,STRACE_GROUPS_DIR_SQ) 1308$(call detected_var,prefix_SQ) 1309$(call detected_var,perfexecdir_SQ) 1310$(call detected_var,libbpf_include_dir_SQ) 1311$(call detected_var,perf_examples_dir_SQ) 1312$(call detected_var,tipdir_SQ) 1313$(call detected_var,srcdir_SQ) 1314$(call detected_var,LIBDIR) 1315$(call detected_var,GTK_CFLAGS) 1316$(call detected_var,PERL_EMBED_CCOPTS) 1317$(call detected_var,PYTHON_EMBED_CCOPTS) 1318ifneq ($(BISON_FILE_PREFIX_MAP),) 1319$(call detected_var,BISON_FILE_PREFIX_MAP) 1320endif 1321 1322# re-generate FEATURE-DUMP as we may have called feature_check, found out 1323# extra libraries to add to LDFLAGS of some other test and then redo those 1324# tests, see the block about libbfd, disassembler-four-args, for instance. 1325$(shell rm -f $(FEATURE_DUMP_FILENAME)) 1326$(foreach feat,$(FEATURE_TESTS),$(shell echo "$(call feature_assign,$(feat))" >> $(FEATURE_DUMP_FILENAME))) 1327