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