]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - tools/perf/config/Makefile
Merge branch 'sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[karo-tx-linux.git] / tools / perf / config / Makefile
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 $(src-perf)/config/Makefile.arch
21
22 $(call detected_var,ARCH)
23
24 NO_PERF_REGS := 1
25
26 # Additional ARCH settings for x86
27 ifeq ($(ARCH),x86)
28   $(call detected,CONFIG_X86)
29   ifeq (${IS_64_BIT}, 1)
30     CFLAGS += -DHAVE_ARCH_X86_64_SUPPORT
31     ARCH_INCLUDE = ../../arch/x86/lib/memcpy_64.S ../../arch/x86/lib/memset_64.S
32     LIBUNWIND_LIBS = -lunwind -lunwind-x86_64
33     $(call detected,CONFIG_X86_64)
34   else
35     LIBUNWIND_LIBS = -lunwind-x86 -llzma -lunwind
36   endif
37   NO_PERF_REGS := 0
38 endif
39
40 ifeq ($(ARCH),arm)
41   NO_PERF_REGS := 0
42   LIBUNWIND_LIBS = -lunwind -lunwind-arm
43 endif
44
45 ifeq ($(ARCH),arm64)
46   NO_PERF_REGS := 0
47   LIBUNWIND_LIBS = -lunwind -lunwind-aarch64
48 endif
49
50 ifeq ($(NO_PERF_REGS),0)
51   $(call detected,CONFIG_PERF_REGS)
52 endif
53
54 # So far there's only x86 and arm libdw unwind support merged in perf.
55 # Disable it on all other architectures in case libdw unwind
56 # support is detected in system. Add supported architectures
57 # to the check.
58 ifneq ($(ARCH),$(filter $(ARCH),x86 arm))
59   NO_LIBDW_DWARF_UNWIND := 1
60 endif
61
62 ifeq ($(LIBUNWIND_LIBS),)
63   NO_LIBUNWIND := 1
64 else
65   #
66   # For linking with debug library, run like:
67   #
68   #   make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
69   #
70   ifdef LIBUNWIND_DIR
71     LIBUNWIND_CFLAGS  = -I$(LIBUNWIND_DIR)/include
72     LIBUNWIND_LDFLAGS = -L$(LIBUNWIND_DIR)/lib
73   endif
74   LIBUNWIND_LDFLAGS += $(LIBUNWIND_LIBS)
75
76   # Set per-feature check compilation flags
77   FEATURE_CHECK_CFLAGS-libunwind = $(LIBUNWIND_CFLAGS)
78   FEATURE_CHECK_LDFLAGS-libunwind = $(LIBUNWIND_LDFLAGS)
79   FEATURE_CHECK_CFLAGS-libunwind-debug-frame = $(LIBUNWIND_CFLAGS)
80   FEATURE_CHECK_LDFLAGS-libunwind-debug-frame = $(LIBUNWIND_LDFLAGS)
81 endif
82
83 ifeq ($(NO_PERF_REGS),0)
84   CFLAGS += -DHAVE_PERF_REGS_SUPPORT
85 endif
86
87 ifndef NO_LIBELF
88   # for linking with debug library, run like:
89   # make DEBUG=1 LIBDW_DIR=/opt/libdw/
90   ifdef LIBDW_DIR
91     LIBDW_CFLAGS  := -I$(LIBDW_DIR)/include
92     LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib
93   endif
94   FEATURE_CHECK_CFLAGS-libdw-dwarf-unwind := $(LIBDW_CFLAGS)
95   FEATURE_CHECK_LDFLAGS-libdw-dwarf-unwind := $(LIBDW_LDFLAGS) -ldw
96 endif
97
98 ifdef LIBBABELTRACE
99   # for linking with debug library, run like:
100   # make DEBUG=1 LIBBABELTRACE_DIR=/opt/libbabeltrace/
101   ifdef LIBBABELTRACE_DIR
102     LIBBABELTRACE_CFLAGS  := -I$(LIBBABELTRACE_DIR)/include
103     LIBBABELTRACE_LDFLAGS := -L$(LIBBABELTRACE_DIR)/lib
104   endif
105   FEATURE_CHECK_CFLAGS-libbabeltrace := $(LIBBABELTRACE_CFLAGS)
106   FEATURE_CHECK_LDFLAGS-libbabeltrace := $(LIBBABELTRACE_LDFLAGS) -lbabeltrace-ctf
107 endif
108
109 FEATURE_CHECK_CFLAGS-bpf = -I. -I$(srctree)/tools/include -I$(srctree)/arch/$(ARCH)/include/uapi -I$(srctree)/include/uapi
110 # include ARCH specific config
111 -include $(src-perf)/arch/$(ARCH)/Makefile
112
113 ifdef PERF_HAVE_ARCH_REGS_QUERY_REGISTER_OFFSET
114   CFLAGS += -DHAVE_ARCH_REGS_QUERY_REGISTER_OFFSET
115 endif
116
117 include $(src-perf)/config/utilities.mak
118
119 ifeq ($(call get-executable,$(FLEX)),)
120   dummy := $(error Error: $(FLEX) is missing on this system, please install it)
121 endif
122
123 ifeq ($(call get-executable,$(BISON)),)
124   dummy := $(error Error: $(BISON) is missing on this system, please install it)
125 endif
126
127 # Treat warnings as errors unless directed not to
128 ifneq ($(WERROR),0)
129   CFLAGS += -Werror
130 endif
131
132 ifndef DEBUG
133   DEBUG := 0
134 endif
135
136 ifeq ($(DEBUG),0)
137   CFLAGS += -O6
138 else
139   CFLAGS += $(call cc-option,-Og,-O0)
140 endif
141
142 ifdef PARSER_DEBUG
143   PARSER_DEBUG_BISON := -t
144   PARSER_DEBUG_FLEX  := -d
145   CFLAGS             += -DPARSER_DEBUG
146   $(call detected_var,PARSER_DEBUG_BISON)
147   $(call detected_var,PARSER_DEBUG_FLEX)
148 endif
149
150 ifndef NO_LIBPYTHON
151   # Try different combinations to accommodate systems that only have
152   # python[2][-config] in weird combinations but always preferring
153   # python2 and python2-config as per pep-0394. If we catch a
154   # python[-config] in version 3, the version check will kill it.
155   PYTHON2 := $(if $(call get-executable,python2),python2,python)
156   override PYTHON := $(call get-executable-or-default,PYTHON,$(PYTHON2))
157   PYTHON2_CONFIG := \
158     $(if $(call get-executable,$(PYTHON)-config),$(PYTHON)-config,python-config)
159   override PYTHON_CONFIG := \
160     $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON2_CONFIG))
161
162   PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
163
164   PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
165   PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
166
167   FEATURE_CHECK_CFLAGS-libpython := $(PYTHON_EMBED_CCOPTS)
168   FEATURE_CHECK_LDFLAGS-libpython := $(PYTHON_EMBED_LDOPTS)
169   FEATURE_CHECK_CFLAGS-libpython-version := $(PYTHON_EMBED_CCOPTS)
170   FEATURE_CHECK_LDFLAGS-libpython-version := $(PYTHON_EMBED_LDOPTS)
171 endif
172
173 CFLAGS += -fno-omit-frame-pointer
174 CFLAGS += -ggdb3
175 CFLAGS += -funwind-tables
176 CFLAGS += -Wall
177 CFLAGS += -Wextra
178 CFLAGS += -std=gnu99
179
180 # Enforce a non-executable stack, as we may regress (again) in the future by
181 # adding assembler files missing the .GNU-stack linker note.
182 LDFLAGS += -Wl,-z,noexecstack
183
184 EXTLIBS = -lpthread -lrt -lm -ldl
185
186 include $(srctree)/tools/build/Makefile.feature
187
188 ifeq ($(feature-stackprotector-all), 1)
189   CFLAGS += -fstack-protector-all
190 endif
191
192 ifeq ($(DEBUG),0)
193   ifeq ($(feature-fortify-source), 1)
194     CFLAGS += -D_FORTIFY_SOURCE=2
195   endif
196 endif
197
198 CFLAGS += -I$(src-perf)/util/include
199 CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
200 CFLAGS += -I$(srctree)/tools/include/
201 CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
202 CFLAGS += -I$(srctree)/arch/$(ARCH)/include
203 CFLAGS += -I$(srctree)/include/uapi
204 CFLAGS += -I$(srctree)/include
205
206 # $(obj-perf)      for generated common-cmds.h
207 # $(obj-perf)/util for generated bison/flex headers
208 ifneq ($(OUTPUT),)
209 CFLAGS += -I$(obj-perf)/util
210 CFLAGS += -I$(obj-perf)
211 endif
212
213 CFLAGS += -I$(src-perf)/util
214 CFLAGS += -I$(src-perf)
215 CFLAGS += -I$(srctree)/tools/lib/
216
217 CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
218
219 ifeq ($(feature-sync-compare-and-swap), 1)
220   CFLAGS += -DHAVE_SYNC_COMPARE_AND_SWAP_SUPPORT
221 endif
222
223 ifeq ($(feature-pthread-attr-setaffinity-np), 1)
224   CFLAGS += -DHAVE_PTHREAD_ATTR_SETAFFINITY_NP
225 endif
226
227 ifndef NO_BIONIC
228   $(call feature_check,bionic)
229   ifeq ($(feature-bionic), 1)
230     BIONIC := 1
231     EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
232     EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
233   endif
234 endif
235
236 ifdef NO_LIBELF
237   NO_DWARF := 1
238   NO_DEMANGLE := 1
239   NO_LIBUNWIND := 1
240   NO_LIBDW_DWARF_UNWIND := 1
241   NO_LIBBPF := 1
242 else
243   ifeq ($(feature-libelf), 0)
244     ifeq ($(feature-glibc), 1)
245       LIBC_SUPPORT := 1
246     endif
247     ifeq ($(BIONIC),1)
248       LIBC_SUPPORT := 1
249     endif
250     ifeq ($(LIBC_SUPPORT),1)
251       msg := $(warning No libelf found, disables 'probe' tool and BPF support in 'perf record', please install elfutils-libelf-devel/libelf-dev);
252
253       NO_LIBELF := 1
254       NO_DWARF := 1
255       NO_DEMANGLE := 1
256       NO_LIBUNWIND := 1
257       NO_LIBDW_DWARF_UNWIND := 1
258       NO_LIBBPF := 1
259     else
260       ifneq ($(filter s% -static%,$(LDFLAGS),),)
261         msg := $(error No static glibc found, please install glibc-static);
262       else
263         msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]);
264       endif
265     endif
266   else
267     ifndef NO_LIBDW_DWARF_UNWIND
268       ifneq ($(feature-libdw-dwarf-unwind),1)
269         NO_LIBDW_DWARF_UNWIND := 1
270         msg := $(warning No libdw DWARF unwind found, Please install elfutils-devel/libdw-dev >= 0.158 and/or set LIBDW_DIR);
271       endif
272     endif
273     ifneq ($(feature-dwarf), 1)
274       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);
275       NO_DWARF := 1
276     endif # Dwarf support
277   endif # libelf support
278 endif # NO_LIBELF
279
280 ifdef NO_DWARF
281   NO_LIBDW_DWARF_UNWIND := 1
282 endif
283
284 ifndef NO_LIBELF
285   CFLAGS += -DHAVE_LIBELF_SUPPORT
286   EXTLIBS += -lelf
287   $(call detected,CONFIG_LIBELF)
288
289   ifeq ($(feature-libelf-mmap), 1)
290     CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
291   endif
292
293   ifeq ($(feature-libelf-getphdrnum), 1)
294     CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
295   endif
296
297   # include ARCH specific config
298   -include $(src-perf)/arch/$(ARCH)/Makefile
299
300   ifndef NO_DWARF
301     ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
302       msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
303       NO_DWARF := 1
304     else
305       CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
306       LDFLAGS += $(LIBDW_LDFLAGS)
307       DWARFLIBS := -ldw
308       ifeq ($(findstring -static,${LDFLAGS}),-static)
309         DWARFLIBS += -lelf -lebl -lz -llzma -lbz2
310       endif
311       EXTLIBS += ${DWARFLIBS}
312       $(call detected,CONFIG_DWARF)
313     endif # PERF_HAVE_DWARF_REGS
314   endif # NO_DWARF
315
316   ifndef NO_LIBBPF
317     ifeq ($(feature-bpf), 1)
318       CFLAGS += -DHAVE_LIBBPF_SUPPORT
319       $(call detected,CONFIG_LIBBPF)
320     endif
321   endif # NO_LIBBPF
322 endif # NO_LIBELF
323
324 ifeq ($(ARCH),powerpc)
325   ifndef NO_DWARF
326     CFLAGS += -DHAVE_SKIP_CALLCHAIN_IDX
327   endif
328 endif
329
330 ifndef NO_LIBUNWIND
331   ifneq ($(feature-libunwind), 1)
332     msg := $(warning No libunwind found. Please install libunwind-dev[el] >= 1.1 and/or set LIBUNWIND_DIR);
333     NO_LIBUNWIND := 1
334   endif
335 endif
336
337 ifndef NO_LIBBPF
338   ifneq ($(feature-bpf), 1)
339     msg := $(warning BPF API too old. Please install recent kernel headers. BPF support in 'perf record' is disabled.)
340     NO_LIBBPF := 1
341   endif
342 endif
343
344 dwarf-post-unwind := 1
345 dwarf-post-unwind-text := BUG
346
347 # setup DWARF post unwinder
348 ifdef NO_LIBUNWIND
349   ifdef NO_LIBDW_DWARF_UNWIND
350     msg := $(warning Disabling post unwind, no support found.);
351     dwarf-post-unwind := 0
352   else
353     dwarf-post-unwind-text := libdw
354     $(call detected,CONFIG_LIBDW_DWARF_UNWIND)
355   endif
356 else
357   dwarf-post-unwind-text := libunwind
358   $(call detected,CONFIG_LIBUNWIND)
359   # Enable libunwind support by default.
360   ifndef NO_LIBDW_DWARF_UNWIND
361     NO_LIBDW_DWARF_UNWIND := 1
362   endif
363 endif
364
365 ifeq ($(dwarf-post-unwind),1)
366   CFLAGS += -DHAVE_DWARF_UNWIND_SUPPORT
367   $(call detected,CONFIG_DWARF_UNWIND)
368 else
369   NO_DWARF_UNWIND := 1
370 endif
371
372 ifndef NO_LIBUNWIND
373   ifeq ($(ARCH),$(filter $(ARCH),arm arm64))
374     $(call feature_check,libunwind-debug-frame)
375     ifneq ($(feature-libunwind-debug-frame), 1)
376       msg := $(warning No debug_frame support found in libunwind);
377       CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
378     endif
379   else
380     # non-ARM has no dwarf_find_debug_frame() function:
381     CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
382   endif
383   CFLAGS  += -DHAVE_LIBUNWIND_SUPPORT
384   EXTLIBS += $(LIBUNWIND_LIBS)
385   CFLAGS  += $(LIBUNWIND_CFLAGS)
386   LDFLAGS += $(LIBUNWIND_LDFLAGS)
387 endif
388
389 ifndef NO_LIBAUDIT
390   ifneq ($(feature-libaudit), 1)
391     msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
392     NO_LIBAUDIT := 1
393   else
394     CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
395     EXTLIBS += -laudit
396     $(call detected,CONFIG_AUDIT)
397   endif
398 endif
399
400 ifdef NO_NEWT
401   NO_SLANG=1
402 endif
403
404 ifndef NO_SLANG
405   ifneq ($(feature-libslang), 1)
406     msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
407     NO_SLANG := 1
408   else
409     # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
410     CFLAGS += -I/usr/include/slang
411     CFLAGS += -DHAVE_SLANG_SUPPORT
412     EXTLIBS += -lslang
413     $(call detected,CONFIG_SLANG)
414   endif
415 endif
416
417 ifndef NO_GTK2
418   FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null)
419   ifneq ($(feature-gtk2), 1)
420     msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
421     NO_GTK2 := 1
422   else
423     ifeq ($(feature-gtk2-infobar), 1)
424       GTK_CFLAGS := -DHAVE_GTK_INFO_BAR_SUPPORT
425     endif
426     CFLAGS += -DHAVE_GTK2_SUPPORT
427     GTK_CFLAGS += $(shell $(PKG_CONFIG) --cflags gtk+-2.0 2>/dev/null)
428     GTK_LIBS := $(shell $(PKG_CONFIG) --libs gtk+-2.0 2>/dev/null)
429     EXTLIBS += -ldl
430   endif
431 endif
432
433 grep-libs  = $(filter -l%,$(1))
434 strip-libs = $(filter-out -l%,$(1))
435
436 ifdef NO_LIBPERL
437   CFLAGS += -DNO_LIBPERL
438 else
439   PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
440   PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
441   PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
442   PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
443   FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
444
445   ifneq ($(feature-libperl), 1)
446     CFLAGS += -DNO_LIBPERL
447     NO_LIBPERL := 1
448     msg := $(warning Missing perl devel files. Disabling perl scripting support, please install perl-ExtUtils-Embed/libperl-dev);
449   else
450     LDFLAGS += $(PERL_EMBED_LDFLAGS)
451     EXTLIBS += $(PERL_EMBED_LIBADD)
452     $(call detected,CONFIG_LIBPERL)
453   endif
454 endif
455
456 ifeq ($(feature-timerfd), 1)
457   CFLAGS += -DHAVE_TIMERFD_SUPPORT
458 else
459   msg := $(warning No timerfd support. Disables 'perf kvm stat live');
460 endif
461
462 disable-python = $(eval $(disable-python_code))
463 define disable-python_code
464   CFLAGS += -DNO_LIBPYTHON
465   $(warning $1)
466   NO_LIBPYTHON := 1
467 endef
468
469 ifdef NO_LIBPYTHON
470   $(call disable-python,Python support disabled by user)
471 else
472
473   ifndef PYTHON
474     $(call disable-python,No python interpreter was found: disables Python support - please install python-devel/python-dev)
475   else
476     PYTHON_WORD := $(call shell-wordify,$(PYTHON))
477
478     ifndef PYTHON_CONFIG
479       $(call disable-python,No 'python-config' tool was found: disables Python support - please install python-devel/python-dev)
480     else
481
482       PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
483
484       PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
485       PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
486       PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
487       PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
488       FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
489
490       ifneq ($(feature-libpython), 1)
491         $(call disable-python,No 'Python.h' (for Python 2.x support) was found: disables Python support - please install python-devel/python-dev)
492       else
493
494         ifneq ($(feature-libpython-version), 1)
495           $(warning Python 3 is not yet supported; please set)
496           $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
497           $(warning If you also have Python 2 installed, then)
498           $(warning try something like:)
499           $(warning $(and ,))
500           $(warning $(and ,)  make PYTHON=python2)
501           $(warning $(and ,))
502           $(warning Otherwise, disable Python support entirely:)
503           $(warning $(and ,))
504           $(warning $(and ,)  make NO_LIBPYTHON=1)
505           $(warning $(and ,))
506           $(error   $(and ,))
507         else
508           LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
509           EXTLIBS += $(PYTHON_EMBED_LIBADD)
510           LANG_BINDINGS += $(obj-perf)python/perf.so
511           $(call detected,CONFIG_LIBPYTHON)
512         endif
513       endif
514     endif
515   endif
516 endif
517
518 ifeq ($(feature-libbfd), 1)
519   EXTLIBS += -lbfd
520
521   # call all detections now so we get correct
522   # status in VF output
523   $(call feature_check,liberty)
524   $(call feature_check,liberty-z)
525   $(call feature_check,cplus-demangle)
526
527   ifeq ($(feature-liberty), 1)
528     EXTLIBS += -liberty
529   else
530     ifeq ($(feature-liberty-z), 1)
531       EXTLIBS += -liberty -lz
532     endif
533   endif
534 endif
535
536 ifdef NO_DEMANGLE
537   CFLAGS += -DNO_DEMANGLE
538 else
539   ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
540     EXTLIBS += -liberty
541     CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
542   else
543     ifneq ($(feature-libbfd), 1)
544       ifneq ($(feature-liberty), 1)
545         ifneq ($(feature-liberty-z), 1)
546           # we dont have neither HAVE_CPLUS_DEMANGLE_SUPPORT
547           # or any of 'bfd iberty z' trinity
548           ifeq ($(feature-cplus-demangle), 1)
549             EXTLIBS += -liberty
550             CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
551           else
552             msg := $(warning No bfd.h/libbfd found, please install binutils-dev[el]/zlib-static/libiberty-dev to gain symbol demangling)
553             CFLAGS += -DNO_DEMANGLE
554           endif
555         endif
556       endif
557     endif
558   endif
559 endif
560
561 ifneq ($(filter -lbfd,$(EXTLIBS)),)
562   CFLAGS += -DHAVE_LIBBFD_SUPPORT
563 endif
564
565 ifndef NO_ZLIB
566   ifeq ($(feature-zlib), 1)
567     CFLAGS += -DHAVE_ZLIB_SUPPORT
568     EXTLIBS += -lz
569     $(call detected,CONFIG_ZLIB)
570   else
571     NO_ZLIB := 1
572   endif
573 endif
574
575 ifndef NO_LZMA
576   ifeq ($(feature-lzma), 1)
577     CFLAGS += -DHAVE_LZMA_SUPPORT
578     EXTLIBS += -llzma
579     $(call detected,CONFIG_LZMA)
580   else
581     msg := $(warning No liblzma found, disables xz kernel module decompression, please install xz-devel/liblzma-dev);
582     NO_LZMA := 1
583   endif
584 endif
585
586 ifndef NO_BACKTRACE
587   ifeq ($(feature-backtrace), 1)
588     CFLAGS += -DHAVE_BACKTRACE_SUPPORT
589   endif
590 endif
591
592 ifndef NO_LIBNUMA
593   ifeq ($(feature-libnuma), 0)
594     msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numactl-devel/libnuma-devel/libnuma-dev);
595     NO_LIBNUMA := 1
596   else
597     ifeq ($(feature-numa_num_possible_cpus), 0)
598       msg := $(warning Old numa library found, disables 'perf bench numa mem' benchmark, please install numactl-devel/libnuma-devel/libnuma-dev >= 2.0.8);
599       NO_LIBNUMA := 1
600     else
601       CFLAGS += -DHAVE_LIBNUMA_SUPPORT
602       EXTLIBS += -lnuma
603       $(call detected,CONFIG_NUMA)
604     endif
605   endif
606 endif
607
608 ifdef HAVE_KVM_STAT_SUPPORT
609     CFLAGS += -DHAVE_KVM_STAT_SUPPORT
610 endif
611
612 ifeq (${IS_64_BIT}, 1)
613   ifndef NO_PERF_READ_VDSO32
614     $(call feature_check,compile-32)
615     ifeq ($(feature-compile-32), 1)
616       CFLAGS += -DHAVE_PERF_READ_VDSO32
617     else
618       NO_PERF_READ_VDSO32 := 1
619     endif
620   endif
621   ifneq ($(ARCH), x86)
622     NO_PERF_READ_VDSOX32 := 1
623   endif
624   ifndef NO_PERF_READ_VDSOX32
625     $(call feature_check,compile-x32)
626     ifeq ($(feature-compile-x32), 1)
627       CFLAGS += -DHAVE_PERF_READ_VDSOX32
628     else
629       NO_PERF_READ_VDSOX32 := 1
630     endif
631   endif
632 else
633   NO_PERF_READ_VDSO32 := 1
634   NO_PERF_READ_VDSOX32 := 1
635 endif
636
637 ifdef LIBBABELTRACE
638   $(call feature_check,libbabeltrace)
639   ifeq ($(feature-libbabeltrace), 1)
640     CFLAGS += -DHAVE_LIBBABELTRACE_SUPPORT $(LIBBABELTRACE_CFLAGS)
641     LDFLAGS += $(LIBBABELTRACE_LDFLAGS)
642     EXTLIBS += -lbabeltrace-ctf
643     $(call detected,CONFIG_LIBBABELTRACE)
644   else
645     msg := $(warning No libbabeltrace found, disables 'perf data' CTF format support, please install libbabeltrace-dev[el]/libbabeltrace-ctf-dev);
646   endif
647 endif
648
649 ifndef NO_AUXTRACE
650   ifeq ($(feature-get_cpuid), 0)
651     msg := $(warning Your gcc lacks the __get_cpuid() builtin, disables support for auxtrace/Intel PT, please install a newer gcc);
652     NO_AUXTRACE := 1
653   else
654     $(call detected,CONFIG_AUXTRACE)
655     CFLAGS += -DHAVE_AUXTRACE_SUPPORT
656   endif
657 endif
658
659 # Among the variables below, these:
660 #   perfexecdir
661 #   template_dir
662 #   mandir
663 #   infodir
664 #   htmldir
665 #   ETC_PERFCONFIG (but not sysconfdir)
666 # can be specified as a relative path some/where/else;
667 # this is interpreted as relative to $(prefix) and "perf" at
668 # runtime figures out where they are based on the path to the executable.
669 # This can help installing the suite in a relocatable way.
670
671 # Make the path relative to DESTDIR, not to prefix
672 ifndef DESTDIR
673 prefix ?= $(HOME)
674 endif
675 bindir_relative = bin
676 bindir = $(abspath $(prefix)/$(bindir_relative))
677 mandir = share/man
678 infodir = share/info
679 perfexecdir = libexec/perf-core
680 sharedir = $(prefix)/share
681 template_dir = share/perf-core/templates
682 STRACE_GROUPS_DIR = share/perf-core/strace/groups
683 htmldir = share/doc/perf-doc
684 ifeq ($(prefix),/usr)
685 sysconfdir = /etc
686 ETC_PERFCONFIG = $(sysconfdir)/perfconfig
687 else
688 sysconfdir = $(prefix)/etc
689 ETC_PERFCONFIG = etc/perfconfig
690 endif
691 ifndef lib
692 ifeq ($(ARCH)$(IS_64_BIT), x861)
693 lib = lib64
694 else
695 lib = lib
696 endif
697 endif # lib
698 libdir = $(prefix)/$(lib)
699
700 # Shell quote (do not use $(call) to accommodate ancient setups);
701 ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
702 STRACE_GROUPS_DIR_SQ = $(subst ','\'',$(STRACE_GROUPS_DIR))
703 DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
704 bindir_SQ = $(subst ','\'',$(bindir))
705 mandir_SQ = $(subst ','\'',$(mandir))
706 infodir_SQ = $(subst ','\'',$(infodir))
707 perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
708 template_dir_SQ = $(subst ','\'',$(template_dir))
709 htmldir_SQ = $(subst ','\'',$(htmldir))
710 prefix_SQ = $(subst ','\'',$(prefix))
711 sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
712 libdir_SQ = $(subst ','\'',$(libdir))
713
714 ifneq ($(filter /%,$(firstword $(perfexecdir))),)
715 perfexec_instdir = $(perfexecdir)
716 STRACE_GROUPS_INSTDIR = $(STRACE_GROUPS_DIR)
717 else
718 perfexec_instdir = $(prefix)/$(perfexecdir)
719 STRACE_GROUPS_INSTDIR = $(prefix)/$(STRACE_GROUPS_DIR)
720 endif
721 perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))
722 STRACE_GROUPS_INSTDIR_SQ = $(subst ','\'',$(STRACE_GROUPS_INSTDIR))
723
724 # If we install to $(HOME) we keep the traceevent default:
725 # $(HOME)/.traceevent/plugins
726 # Otherwise we install plugins into the global $(libdir).
727 ifdef DESTDIR
728 plugindir=$(libdir)/traceevent/plugins
729 plugindir_SQ= $(subst ','\'',$(plugindir))
730 endif
731
732 print_var = $(eval $(print_var_code)) $(info $(MSG))
733 define print_var_code
734     MSG = $(shell printf '...%30s: %s' $(1) $($(1)))
735 endef
736
737 ifeq ($(VF),1)
738   $(call print_var,prefix)
739   $(call print_var,bindir)
740   $(call print_var,libdir)
741   $(call print_var,sysconfdir)
742   $(call print_var,LIBUNWIND_DIR)
743   $(call print_var,LIBDW_DIR)
744   $(info )
745 endif
746
747 $(call detected_var,bindir_SQ)
748 $(call detected_var,PYTHON_WORD)
749 ifneq ($(OUTPUT),)
750 $(call detected_var,OUTPUT)
751 endif
752 $(call detected_var,htmldir_SQ)
753 $(call detected_var,infodir_SQ)
754 $(call detected_var,mandir_SQ)
755 $(call detected_var,ETC_PERFCONFIG_SQ)
756 $(call detected_var,STRACE_GROUPS_DIR_SQ)
757 $(call detected_var,prefix_SQ)
758 $(call detected_var,perfexecdir_SQ)
759 $(call detected_var,LIBDIR)
760 $(call detected_var,GTK_CFLAGS)
761 $(call detected_var,PERL_EMBED_CCOPTS)
762 $(call detected_var,PYTHON_EMBED_CCOPTS)