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