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