OSDN Git Service

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