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