]> Pileus Git - ~andy/linux/blob - tools/perf/config/Makefile
tools/perf/build: Pass through DEBUG parameter
[~andy/linux] / tools / perf / config / Makefile
1 uname_M := $(shell uname -m 2>/dev/null || echo not)
2
3 ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ \
4                                   -e s/arm.*/arm/ -e s/sa110/arm/ \
5                                   -e s/s390x/s390/ -e s/parisc64/parisc/ \
6                                   -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
7                                   -e s/sh[234].*/sh/ -e s/aarch64.*/arm64/ )
8 NO_PERF_REGS := 1
9 CFLAGS := $(EXTRA_CFLAGS) $(EXTRA_WARNINGS)
10
11 # Additional ARCH settings for x86
12 ifeq ($(ARCH),i386)
13   override ARCH := x86
14   NO_PERF_REGS := 0
15   LIBUNWIND_LIBS = -lunwind -lunwind-x86
16 endif
17
18 ifeq ($(ARCH),x86_64)
19   override ARCH := x86
20   IS_X86_64 := 0
21   ifeq (, $(findstring m32,$(CFLAGS)))
22     IS_X86_64 := $(shell echo __x86_64__ | ${CC} -E -x c - | tail -n 1)
23   endif
24   ifeq (${IS_X86_64}, 1)
25     RAW_ARCH := x86_64
26     CFLAGS += -DHAVE_ARCH_X86_64_SUPPORT
27     ARCH_INCLUDE = ../../arch/x86/lib/memcpy_64.S ../../arch/x86/lib/memset_64.S
28   endif
29   NO_PERF_REGS := 0
30   LIBUNWIND_LIBS = -lunwind -lunwind-x86_64
31 endif
32
33 ifeq ($(NO_PERF_REGS),0)
34   CFLAGS += -DHAVE_PERF_REGS_SUPPORT
35 endif
36
37 ifeq ($(src-perf),)
38 src-perf := $(srctree)/tools/perf
39 endif
40
41 ifeq ($(obj-perf),)
42 obj-perf := $(OUTPUT)
43 endif
44
45 ifneq ($(obj-perf),)
46 obj-perf := $(abspath $(obj-perf))/
47 endif
48
49 LIB_INCLUDE := $(srctree)/tools/lib/
50
51 # include ARCH specific config
52 -include $(src-perf)/arch/$(ARCH)/Makefile
53
54 include $(src-perf)/config/utilities.mak
55
56 ifeq ($(call get-executable,$(FLEX)),)
57   dummy := $(error Error: $(FLEX) is missing on this system, please install it)
58 endif
59
60 ifeq ($(call get-executable,$(BISON)),)
61   dummy := $(error Error: $(BISON) is missing on this system, please install it)
62 endif
63
64 # Treat warnings as errors unless directed not to
65 ifneq ($(WERROR),0)
66   CFLAGS += -Werror
67 endif
68
69 ifeq ($(DEBUG),0)
70   CFLAGS += -O6
71 endif
72
73 ifdef PARSER_DEBUG
74   PARSER_DEBUG_BISON := -t
75   PARSER_DEBUG_FLEX  := -d
76   CFLAGS             += -DPARSER_DEBUG
77 endif
78
79 CFLAGS += -fno-omit-frame-pointer
80 CFLAGS += -ggdb3
81 CFLAGS += -funwind-tables
82 CFLAGS += -Wall
83 CFLAGS += -Wextra
84 CFLAGS += -std=gnu99
85
86 EXTLIBS = -lelf -lpthread -lrt -lm -ldl
87
88 ifneq ($(OUTPUT),)
89   OUTPUT_FEATURES = $(OUTPUT)config/feature-checks/
90   $(shell mkdir -p $(OUTPUT_FEATURES))
91 endif
92
93 feature_check = $(eval $(feature_check_code))
94 define feature_check_code
95   feature-$(1) := $(shell $(MAKE) OUTPUT=$(OUTPUT_FEATURES) LDFLAGS=$(LDFLAGS) -C config/feature-checks test-$1 >/dev/null 2>/dev/null && echo 1 || echo 0)
96 endef
97
98 feature_set = $(eval $(feature_set_code))
99 define feature_set_code
100   feature-$(1) := 1
101 endef
102
103 #
104 # Build the feature check binaries in parallel, ignore errors, ignore return value and suppress output:
105 #
106
107 #
108 # Note that this is not a complete list of all feature tests, just
109 # those that are typically built on a fully configured system.
110 #
111 # [ Feature tests not mentioned here have to be built explicitly in
112 #   the rule that uses them - an example for that is the 'bionic'
113 #   feature check. ]
114 #
115 CORE_FEATURE_TESTS =                    \
116         backtrace                       \
117         dwarf                           \
118         fortify-source                  \
119         glibc                           \
120         gtk2                            \
121         gtk2-infobar                    \
122         libaudit                        \
123         libbfd                          \
124         libelf                          \
125         libelf-getphdrnum               \
126         libelf-mmap                     \
127         libnuma                         \
128         libperl                         \
129         libpython                       \
130         libpython-version               \
131         libslang                        \
132         libunwind                       \
133         on-exit                         \
134         stackprotector                  \
135         stackprotector-all              \
136         volatile-register-var
137
138 #
139 # So here we detect whether test-all was rebuilt, to be able
140 # to skip the print-out of the long features list if the file
141 # existed before and after it was built:
142 #
143 ifeq ($(wildcard $(OUTPUT)config/feature-checks/test-all),)
144   test-all-failed := 1
145 else
146   test-all-failed := 0
147 endif
148
149 #
150 # Special fast-path for the 'all features are available' case:
151 #
152 $(call feature_check,all,$(MSG))
153
154 #
155 # Just in case the build freshly failed, make sure we print the
156 # feature matrix:
157 #
158 ifeq ($(feature-all), 0)
159   test-all-failed := 1
160 endif
161
162 ifeq ($(test-all-failed),1)
163   $(info )
164   $(info Auto-detecting system features:)
165 endif
166
167 ifeq ($(feature-all), 1)
168   #
169   # test-all.c passed - just set all the core feature flags to 1:
170   #
171   $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_set,$(feat)))
172 else
173   $(shell $(MAKE) OUTPUT=$(OUTPUT_FEATURES) LDFLAGS=$(LDFLAGS) -i -j -C config/feature-checks $(CORE_FEATURE_TESTS) >/dev/null 2>&1)
174   $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_check,$(feat)))
175 endif
176
177 #
178 # Print the result of the feature test:
179 #
180 feature_print = $(eval $(feature_print_code)) $(info $(MSG))
181
182 define feature_print_code
183   ifeq ($(feature-$(1)), 1)
184     MSG = $(shell printf '...%30s: [ \033[32mon\033[m  ]' $(1))
185   else
186     MSG = $(shell printf '...%30s: [ \033[31mOFF\033[m ]' $(1))
187   endif
188 endef
189
190 #
191 # Only print out our features if we rebuilt the testcases or if a test failed:
192 #
193 ifeq ($(test-all-failed), 1)
194   $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_print,$(feat)))
195   $(info )
196 endif
197
198 ifeq ($(feature-stackprotector-all), 1)
199   CFLAGS += -fstack-protector-all
200 endif
201
202 ifeq ($(feature-stackprotector), 1)
203   CFLAGS += -Wstack-protector
204 endif
205
206 ifeq ($(feature-volatile-register-var), 1)
207   CFLAGS += -Wvolatile-register-var
208 endif
209
210 ifeq ($(DEBUG),0)
211   ifeq ($(feature-fortify-source), 1)
212     CFLAGS += -D_FORTIFY_SOURCE=2
213   endif
214 endif
215
216 CFLAGS += -I$(src-perf)/util/include
217 CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
218 CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
219 CFLAGS += -I$(srctree)/arch/$(ARCH)/include
220 CFLAGS += -I$(srctree)/include/uapi
221 CFLAGS += -I$(srctree)/include
222
223 # $(obj-perf)      for generated common-cmds.h
224 # $(obj-perf)/util for generated bison/flex headers
225 ifneq ($(OUTPUT),)
226 CFLAGS += -I$(obj-perf)/util
227 CFLAGS += -I$(obj-perf)
228 endif
229
230 CFLAGS += -I$(src-perf)/util
231 CFLAGS += -I$(src-perf)
232 CFLAGS += -I$(LIB_INCLUDE)
233
234 CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
235
236 ifndef NO_BIONIC
237   $(feature_check,bionic)
238   ifeq ($(feature-bionic), 1)
239     BIONIC := 1
240     EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
241     EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
242   endif
243 endif
244
245 ifdef NO_LIBELF
246   NO_DWARF := 1
247   NO_DEMANGLE := 1
248   NO_LIBUNWIND := 1
249 else
250   ifeq ($(feature-libelf), 0)
251     ifeq ($(feature-glibc), 1)
252       LIBC_SUPPORT := 1
253     endif
254     ifeq ($(BIONIC),1)
255       LIBC_SUPPORT := 1
256     endif
257     ifeq ($(LIBC_SUPPORT),1)
258       msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libelf-dev);
259
260       NO_LIBELF := 1
261       NO_DWARF := 1
262       NO_DEMANGLE := 1
263     else
264       msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]/glibc-static);
265     endif
266   else
267     # for linking with debug library, run like:
268     # make DEBUG=1 LIBDW_DIR=/opt/libdw/
269     ifdef LIBDW_DIR
270       LIBDW_CFLAGS  := -I$(LIBDW_DIR)/include
271       LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib
272     endif
273
274     ifneq ($(feature-dwarf), 1)
275       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);
276       NO_DWARF := 1
277     endif # Dwarf support
278   endif # libelf support
279 endif # NO_LIBELF
280
281 ifndef NO_LIBELF
282   CFLAGS += -DHAVE_LIBELF_SUPPORT
283   FLAGS_LIBELF=$(CFLAGS) $(LDFLAGS) $(EXTLIBS)
284
285   ifeq ($(feature-libelf-mmap), 1)
286     CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
287   endif
288
289   ifeq ($(feature-libelf-getphdrnum), 1)
290     CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
291   endif
292
293   # include ARCH specific config
294   -include $(src-perf)/arch/$(ARCH)/Makefile
295
296   ifndef NO_DWARF
297     ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
298       msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
299       NO_DWARF := 1
300     else
301       CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
302       LDFLAGS += $(LIBDW_LDFLAGS)
303       EXTLIBS += -lelf -ldw
304     endif # PERF_HAVE_DWARF_REGS
305   endif # NO_DWARF
306 endif # NO_LIBELF
307
308 ifndef NO_LIBELF
309   CFLAGS += -DHAVE_LIBELF_SUPPORT
310   ifeq ($(feature-libelf-mmap), 1)
311     CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
312   endif
313 endif # NO_LIBELF
314
315 # There's only x86 (both 32 and 64) support for CFI unwind so far
316 ifneq ($(ARCH),x86)
317   NO_LIBUNWIND := 1
318 endif
319
320 ifndef NO_LIBUNWIND
321   #
322   # For linking with debug library, run like:
323   #
324   #   make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
325   #
326   ifdef LIBUNWIND_DIR
327     LIBUNWIND_CFLAGS  := -I$(LIBUNWIND_DIR)/include
328     LIBUNWIND_LDFLAGS := -L$(LIBUNWIND_DIR)/lib
329   endif
330
331   ifneq ($(feature-libunwind), 1)
332     msg := $(warning No libunwind found, disabling post unwind support. Please install libunwind-dev[el] >= 0.99);
333     NO_LIBUNWIND := 1
334   endif
335 endif
336
337 ifndef NO_LIBUNWIND
338   CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
339   EXTLIBS += $(LIBUNWIND_LIBS)
340   CFLAGS += $(LIBUNWIND_CFLAGS)
341   LDFLAGS += $(LIBUNWIND_LDFLAGS)
342 endif
343
344 ifndef NO_LIBAUDIT
345   ifneq ($(feature-libaudit), 1)
346     msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
347     NO_LIBAUDIT := 1
348   else
349     CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
350     EXTLIBS += -laudit
351   endif
352 endif
353
354 ifdef NO_NEWT
355   NO_SLANG=1
356 endif
357
358 ifndef NO_SLANG
359   ifneq ($(feature-libslang), 1)
360     msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
361     NO_SLANG := 1
362   else
363     # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
364     CFLAGS += -I/usr/include/slang
365     CFLAGS += -DHAVE_SLANG_SUPPORT
366     EXTLIBS += -lslang
367   endif
368 endif
369
370 ifndef NO_GTK2
371   FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell pkg-config --libs --cflags gtk+-2.0 2>/dev/null)
372   ifneq ($(feature-gtk2), 1)
373     msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
374     NO_GTK2 := 1
375   else
376     ifeq ($(feature-gtk2-infobar), 1)
377       GTK_CFLAGS := -DHAVE_GTK_INFO_BAR_SUPPORT
378     endif
379     CFLAGS += -DHAVE_GTK2_SUPPORT
380     GTK_CFLAGS += $(shell pkg-config --cflags gtk+-2.0 2>/dev/null)
381     GTK_LIBS := $(shell pkg-config --libs gtk+-2.0 2>/dev/null)
382     EXTLIBS += -ldl
383   endif
384 endif
385
386 grep-libs  = $(filter -l%,$(1))
387 strip-libs = $(filter-out -l%,$(1))
388
389 ifdef NO_LIBPERL
390   CFLAGS += -DNO_LIBPERL
391 else
392   PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
393   PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
394   PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
395   PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
396   FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
397
398   ifneq ($(feature-libperl), 1)
399     CFLAGS += -DNO_LIBPERL
400     NO_LIBPERL := 1
401   else
402     LDFLAGS += $(PERL_EMBED_LDFLAGS)
403     EXTLIBS += $(PERL_EMBED_LIBADD)
404   endif
405 endif
406
407 disable-python = $(eval $(disable-python_code))
408 define disable-python_code
409   CFLAGS += -DNO_LIBPYTHON
410   $(if $(1),$(warning No $(1) was found))
411   $(warning Python support will not be built)
412   NO_LIBPYTHON := 1
413 endef
414
415 override PYTHON := \
416   $(call get-executable-or-default,PYTHON,python)
417
418 ifndef PYTHON
419   $(call disable-python,python interpreter)
420 else
421
422   PYTHON_WORD := $(call shell-wordify,$(PYTHON))
423
424   ifdef NO_LIBPYTHON
425     $(call disable-python)
426   else
427
428     override PYTHON_CONFIG := \
429       $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON)-config)
430
431     ifndef PYTHON_CONFIG
432       $(call disable-python,python-config tool)
433     else
434
435       PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
436
437       PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
438       PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
439       PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
440       PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
441       FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
442
443       ifneq ($(feature-libpython), 1)
444         $(call disable-python,Python.h (for Python 2.x))
445       else
446
447         ifneq ($(feature-libpython-version), 1)
448           $(warning Python 3 is not yet supported; please set)
449           $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
450           $(warning If you also have Python 2 installed, then)
451           $(warning try something like:)
452           $(warning $(and ,))
453           $(warning $(and ,)  make PYTHON=python2)
454           $(warning $(and ,))
455           $(warning Otherwise, disable Python support entirely:)
456           $(warning $(and ,))
457           $(warning $(and ,)  make NO_LIBPYTHON=1)
458           $(warning $(and ,))
459           $(error   $(and ,))
460         else
461           LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
462           EXTLIBS += $(PYTHON_EMBED_LIBADD)
463           LANG_BINDINGS += $(obj-perf)python/perf.so
464         endif
465       endif
466     endif
467   endif
468 endif
469
470 ifeq ($(feature-libbfd), 1)
471   EXTLIBS += -lbfd
472 endif
473
474 ifdef NO_DEMANGLE
475   CFLAGS += -DNO_DEMANGLE
476 else
477   ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
478     EXTLIBS += -liberty
479     CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
480   else
481     ifneq ($(feature-libbfd), 1)
482       $(feature_check,liberty)
483       ifeq ($(feature-liberty), 1)
484         EXTLIBS += -lbfd -liberty
485       else
486         $(feature_check,liberty-z)
487         ifeq ($(feature-liberty-z), 1)
488           EXTLIBS += -lbfd -liberty -lz
489         else
490           $(feature_check,cplus-demangle)
491           ifeq ($(feature-cplus-demangle), 1)
492             EXTLIBS += -liberty
493             CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
494           else
495             msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
496             CFLAGS += -DNO_DEMANGLE
497           endif
498         endif
499       endif
500     endif
501   endif
502 endif
503
504 ifneq ($(filter -lbfd,$(EXTLIBS)),)
505   CFLAGS += -DHAVE_LIBBFD_SUPPORT
506 endif
507
508 ifndef NO_ON_EXIT
509   ifeq ($(feature-on-exit), 1)
510     CFLAGS += -DHAVE_ON_EXIT_SUPPORT
511   endif
512 endif
513
514 ifndef NO_BACKTRACE
515   ifeq ($(feature-backtrace), 1)
516     CFLAGS += -DHAVE_BACKTRACE_SUPPORT
517   endif
518 endif
519
520 ifndef NO_LIBNUMA
521   ifeq ($(feature-libnuma), 0)
522     msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numa-libs-devel or libnuma-dev);
523     NO_LIBNUMA := 1
524   else
525     CFLAGS += -DHAVE_LIBNUMA_SUPPORT
526     EXTLIBS += -lnuma
527   endif
528 endif
529
530 # Among the variables below, these:
531 #   perfexecdir
532 #   template_dir
533 #   mandir
534 #   infodir
535 #   htmldir
536 #   ETC_PERFCONFIG (but not sysconfdir)
537 # can be specified as a relative path some/where/else;
538 # this is interpreted as relative to $(prefix) and "perf" at
539 # runtime figures out where they are based on the path to the executable.
540 # This can help installing the suite in a relocatable way.
541
542 # Make the path relative to DESTDIR, not to prefix
543 ifndef DESTDIR
544 prefix = $(HOME)
545 endif
546 bindir_relative = bin
547 bindir = $(prefix)/$(bindir_relative)
548 mandir = share/man
549 infodir = share/info
550 perfexecdir = libexec/perf-core
551 sharedir = $(prefix)/share
552 template_dir = share/perf-core/templates
553 htmldir = share/doc/perf-doc
554 ifeq ($(prefix),/usr)
555 sysconfdir = /etc
556 ETC_PERFCONFIG = $(sysconfdir)/perfconfig
557 else
558 sysconfdir = $(prefix)/etc
559 ETC_PERFCONFIG = etc/perfconfig
560 endif
561 ifeq ($(IS_X86_64),1)
562 lib = lib64
563 else
564 lib = lib
565 endif
566 libdir = $(prefix)/$(lib)
567
568 # Shell quote (do not use $(call) to accommodate ancient setups);
569 ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
570 DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
571 bindir_SQ = $(subst ','\'',$(bindir))
572 mandir_SQ = $(subst ','\'',$(mandir))
573 infodir_SQ = $(subst ','\'',$(infodir))
574 perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
575 template_dir_SQ = $(subst ','\'',$(template_dir))
576 htmldir_SQ = $(subst ','\'',$(htmldir))
577 prefix_SQ = $(subst ','\'',$(prefix))
578 sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
579 libdir_SQ = $(subst ','\'',$(libdir))
580
581 ifneq ($(filter /%,$(firstword $(perfexecdir))),)
582 perfexec_instdir = $(perfexecdir)
583 else
584 perfexec_instdir = $(prefix)/$(perfexecdir)
585 endif
586 perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))