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