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