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