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