perf tools: Factor features display code
[linux-2.6-block.git] / tools / perf / config / Makefile
CommitLineData
8bd407b9 1
a6cf5f39
JO
2ifeq ($(src-perf),)
3src-perf := $(srctree)/tools/perf
4endif
8bd407b9 5
a6cf5f39
JO
6ifeq ($(obj-perf),)
7obj-perf := $(OUTPUT)
8bd407b9
JO
8endif
9
a6cf5f39
JO
10ifneq ($(obj-perf),)
11obj-perf := $(abspath $(obj-perf))/
12endif
13
14LIB_INCLUDE := $(srctree)/tools/lib/
15CFLAGS := $(EXTRA_CFLAGS) $(EXTRA_WARNINGS)
16
17include $(src-perf)/config/Makefile.arch
18
19NO_PERF_REGS := 1
20
21# Additional ARCH settings for x86
22ifeq ($(ARCH),x86)
8e1b3f68 23 ifeq (${IS_X86_64}, 1)
89fe808a 24 CFLAGS += -DHAVE_ARCH_X86_64_SUPPORT
8e1b3f68 25 ARCH_INCLUDE = ../../arch/x86/lib/memcpy_64.S ../../arch/x86/lib/memset_64.S
8a0c4c28
AH
26 LIBUNWIND_LIBS = -lunwind -lunwind-x86_64
27 else
28 LIBUNWIND_LIBS = -lunwind -lunwind-x86
8e1b3f68
JO
29 endif
30 NO_PERF_REGS := 0
8bd407b9 31endif
7495f374
WD
32ifeq ($(ARCH),arm)
33 NO_PERF_REGS := 0
34 LIBUNWIND_LIBS = -lunwind -lunwind-arm
35endif
8bd407b9 36
1448fef4
JP
37ifeq ($(LIBUNWIND_LIBS),)
38 NO_LIBUNWIND := 1
39else
40 #
41 # For linking with debug library, run like:
42 #
43 # make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
44 #
45 ifdef LIBUNWIND_DIR
46 LIBUNWIND_CFLAGS = -I$(LIBUNWIND_DIR)/include
47 LIBUNWIND_LDFLAGS = -L$(LIBUNWIND_DIR)/lib
48 endif
49 LIBUNWIND_LDFLAGS += $(LIBUNWIND_LIBS)
50
51 # Set per-feature check compilation flags
52 FEATURE_CHECK_CFLAGS-libunwind = $(LIBUNWIND_CFLAGS)
53 FEATURE_CHECK_LDFLAGS-libunwind = $(LIBUNWIND_LDFLAGS)
54 FEATURE_CHECK_CFLAGS-libunwind-debug-frame = $(LIBUNWIND_CFLAGS)
55 FEATURE_CHECK_LDFLAGS-libunwind-debug-frame = $(LIBUNWIND_LDFLAGS)
1448fef4
JP
56endif
57
8bd407b9 58ifeq ($(NO_PERF_REGS),0)
89fe808a 59 CFLAGS += -DHAVE_PERF_REGS_SUPPORT
8bd407b9 60endif
a32f4936 61
7c53746e
JO
62# include ARCH specific config
63-include $(src-perf)/arch/$(ARCH)/Makefile
64
7c53746e 65include $(src-perf)/config/utilities.mak
a32f4936
JO
66
67ifeq ($(call get-executable,$(FLEX)),)
8e1b3f68 68 dummy := $(error Error: $(FLEX) is missing on this system, please install it)
a32f4936
JO
69endif
70
71ifeq ($(call get-executable,$(BISON)),)
8e1b3f68 72 dummy := $(error Error: $(BISON) is missing on this system, please install it)
a32f4936 73endif
362493f0
JO
74
75# Treat warnings as errors unless directed not to
76ifneq ($(WERROR),0)
8e1b3f68 77 CFLAGS += -Werror
362493f0
JO
78endif
79
74af377b
AH
80ifndef DEBUG
81 DEBUG := 0
82endif
83
fcf92585 84ifeq ($(DEBUG),0)
8e1b3f68 85 CFLAGS += -O6
362493f0
JO
86endif
87
88ifdef PARSER_DEBUG
8e1b3f68
JO
89 PARSER_DEBUG_BISON := -t
90 PARSER_DEBUG_FLEX := -d
91 CFLAGS += -DPARSER_DEBUG
362493f0
JO
92endif
93
2fe73746
JO
94CFLAGS += -fno-omit-frame-pointer
95CFLAGS += -ggdb3
96CFLAGS += -funwind-tables
97CFLAGS += -Wall
98CFLAGS += -Wextra
99CFLAGS += -std=gnu99
9c12cf95 100
6d19912c 101EXTLIBS = -lelf -lpthread -lrt -lm -ldl
362493f0 102
1c2d1d8c
IM
103ifneq ($(OUTPUT),)
104 OUTPUT_FEATURES = $(OUTPUT)config/feature-checks/
105 $(shell mkdir -p $(OUTPUT_FEATURES))
106endif
107
baa9c30e 108feature_check = $(eval $(feature_check_code))
b6aa9979 109define feature_check_code
56560ec6 110 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)
baa9c30e
IM
111endef
112
113feature_set = $(eval $(feature_set_code))
114define feature_set_code
115 feature-$(1) := 1
b6aa9979
IM
116endef
117
118#
119# Build the feature check binaries in parallel, ignore errors, ignore return value and suppress output:
120#
b6aa9979 121
f1138ec6
IM
122#
123# Note that this is not a complete list of all feature tests, just
124# those that are typically built on a fully configured system.
125#
126# [ Feature tests not mentioned here have to be built explicitly in
127# the rule that uses them - an example for that is the 'bionic'
128# feature check. ]
129#
130CORE_FEATURE_TESTS = \
131 backtrace \
132 dwarf \
1ea6f99e 133 fortify-source \
e12762cf 134 glibc \
7ef9e055 135 gtk2 \
c7a79e96 136 gtk2-infobar \
f1138ec6
IM
137 libaudit \
138 libbfd \
139 libelf \
140 libelf-getphdrnum \
141 libelf-mmap \
142 libnuma \
7181a671 143 libperl \
9734163b 144 libpython \
95d061c8 145 libpython-version \
f1138ec6
IM
146 libslang \
147 libunwind \
34ef2162 148 on-exit \
bb4c5500
IM
149 stackprotector-all \
150 timerfd
b6aa9979 151
0695e57b
JO
152LIB_FEATURE_TESTS = \
153 dwarf \
154 glibc \
155 gtk2 \
156 libaudit \
157 libbfd \
158 libelf \
159 libnuma \
160 libperl \
161 libpython \
162 libslang \
163 libunwind
164
165VF_FEATURE_TESTS = \
166 backtrace \
167 fortify-source \
168 gtk2-infobar \
169 libelf-getphdrnum \
170 libelf-mmap \
171 libpython-version \
172 on-exit \
173 stackprotector-all \
174 timerfd \
175 libunwind-debug-frame \
176 bionic
177
c4eb6c0e
JO
178# Set FEATURE_CHECK_(C|LD)FLAGS-all for all CORE_FEATURE_TESTS features.
179# If in the future we need per-feature checks/flags for features not
180# mentioned in this list we need to refactor this ;-).
181set_test_all_flags = $(eval $(set_test_all_flags_code))
182define set_test_all_flags_code
183 FEATURE_CHECK_CFLAGS-all += $(FEATURE_CHECK_CFLAGS-$(1))
184 FEATURE_CHECK_LDFLAGS-all += $(FEATURE_CHECK_LDFLAGS-$(1))
185endef
186
187$(foreach feat,$(CORE_FEATURE_TESTS),$(call set_test_all_flags,$(feat)))
188
baa9c30e
IM
189#
190# Special fast-path for the 'all features are available' case:
191#
b3b64a12
IM
192$(call feature_check,all,$(MSG))
193
194#
195# Just in case the build freshly failed, make sure we print the
196# feature matrix:
197#
baa9c30e 198ifeq ($(feature-all), 1)
f1138ec6
IM
199 #
200 # test-all.c passed - just set all the core feature flags to 1:
201 #
202 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_set,$(feat)))
baa9c30e 203else
56560ec6 204 $(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)
f1138ec6 205 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_check,$(feat)))
baa9c30e
IM
206endif
207
90ac5422 208ifeq ($(feature-stackprotector-all), 1)
8e1b3f68 209 CFLAGS += -fstack-protector-all
362493f0
JO
210endif
211
fcf92585 212ifeq ($(DEBUG),0)
1ea6f99e 213 ifeq ($(feature-fortify-source), 1)
8e1b3f68
JO
214 CFLAGS += -D_FORTIFY_SOURCE=2
215 endif
362493f0
JO
216endif
217
2fe73746
JO
218CFLAGS += -I$(src-perf)/util/include
219CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
8a625c1f 220CFLAGS += -I$(srctree)/tools/include/
2fe73746
JO
221CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
222CFLAGS += -I$(srctree)/arch/$(ARCH)/include
223CFLAGS += -I$(srctree)/include/uapi
224CFLAGS += -I$(srctree)/include
7c53746e
JO
225
226# $(obj-perf) for generated common-cmds.h
227# $(obj-perf)/util for generated bison/flex headers
228ifneq ($(OUTPUT),)
2fe73746
JO
229CFLAGS += -I$(obj-perf)/util
230CFLAGS += -I$(obj-perf)
7c53746e
JO
231endif
232
2fe73746
JO
233CFLAGS += -I$(src-perf)/util
234CFLAGS += -I$(src-perf)
4e319027 235CFLAGS += -I$(LIB_INCLUDE)
7c53746e 236
2fe73746 237CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
362493f0 238
4e22db46 239ifndef NO_BIONIC
5febff00 240 $(call feature_check,bionic)
78e9d655
IM
241 ifeq ($(feature-bionic), 1)
242 BIONIC := 1
243 EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
244 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
245 endif
362493f0 246endif
cf4cca10
JO
247
248ifdef NO_LIBELF
8e1b3f68
JO
249 NO_DWARF := 1
250 NO_DEMANGLE := 1
251 NO_LIBUNWIND := 1
cf4cca10 252else
8f7f8005 253 ifeq ($(feature-libelf), 0)
e12762cf 254 ifeq ($(feature-glibc), 1)
50eed7a7
IM
255 LIBC_SUPPORT := 1
256 endif
257 ifeq ($(BIONIC),1)
258 LIBC_SUPPORT := 1
259 endif
260 ifeq ($(LIBC_SUPPORT),1)
261 msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libelf-dev);
262
263 NO_LIBELF := 1
264 NO_DWARF := 1
265 NO_DEMANGLE := 1
266 else
267 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]/glibc-static);
268 endif
8e1b3f68 269 else
50eed7a7
IM
270 # for linking with debug library, run like:
271 # make DEBUG=1 LIBDW_DIR=/opt/libdw/
272 ifdef LIBDW_DIR
273 LIBDW_CFLAGS := -I$(LIBDW_DIR)/include
274 LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib
275 endif
276
8295d4e2 277 ifneq ($(feature-dwarf), 1)
50eed7a7
IM
278 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);
279 NO_DWARF := 1
280 endif # Dwarf support
0648f839 281 endif # libelf support
cf4cca10
JO
282endif # NO_LIBELF
283
284ifndef NO_LIBELF
fb3d333b 285 CFLAGS += -DHAVE_LIBELF_SUPPORT
779724fd 286
8869b17e 287 ifeq ($(feature-libelf-mmap), 1)
fb3d333b
IM
288 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
289 endif
779724fd 290
b7bcef6f 291 ifeq ($(feature-libelf-getphdrnum), 1)
fb3d333b
IM
292 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
293 endif
294
295 # include ARCH specific config
296 -include $(src-perf)/arch/$(ARCH)/Makefile
779724fd 297
fb3d333b
IM
298 ifndef NO_DWARF
299 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
300 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
301 NO_DWARF := 1
302 else
303 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
304 LDFLAGS += $(LIBDW_LDFLAGS)
305 EXTLIBS += -lelf -ldw
306 endif # PERF_HAVE_DWARF_REGS
307 endif # NO_DWARF
cf4cca10 308endif # NO_LIBELF
0e433feb 309
0e433feb 310ifndef NO_LIBUNWIND
058f952d 311 ifneq ($(feature-libunwind), 1)
f47671e2 312 msg := $(warning No libunwind found, disabling post unwind support. Please install libunwind-dev[el] >= 1.1);
308e1e70 313 NO_LIBUNWIND := 1
f47671e2 314 else
e310718d
IM
315 ifeq ($(ARCH),arm)
316 $(call feature_check,libunwind-debug-frame)
317 ifneq ($(feature-libunwind-debug-frame), 1)
318 msg := $(warning No debug_frame support found in libunwind);
319 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
320 endif
321 else
322 # non-ARM has no dwarf_find_debug_frame() function:
f47671e2
LT
323 CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME
324 endif
0e433feb 325
9ff125d1 326 CFLAGS += -DHAVE_DWARF_UNWIND_SUPPORT -DHAVE_LIBUNWIND_SUPPORT
1448fef4
JP
327 EXTLIBS += $(LIBUNWIND_LIBS)
328 CFLAGS += $(LIBUNWIND_CFLAGS)
329 LDFLAGS += $(LIBUNWIND_LDFLAGS)
330 endif # ifneq ($(feature-libunwind), 1)
058f952d 331endif
a8279525
JO
332
333ifndef NO_LIBAUDIT
d795a658 334 ifneq ($(feature-libaudit), 1)
8e1b3f68
JO
335 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
336 NO_LIBAUDIT := 1
337 else
89fe808a 338 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
8e1b3f68
JO
339 EXTLIBS += -laudit
340 endif
a8279525 341endif
4a8f888a
JO
342
343ifdef NO_NEWT
8e1b3f68 344 NO_SLANG=1
4a8f888a
JO
345endif
346
347ifndef NO_SLANG
b9498b50 348 ifneq ($(feature-libslang), 1)
8e1b3f68
JO
349 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
350 NO_SLANG := 1
351 else
352 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
353 CFLAGS += -I/usr/include/slang
89fe808a 354 CFLAGS += -DHAVE_SLANG_SUPPORT
8e1b3f68
JO
355 EXTLIBS += -lslang
356 endif
4a8f888a 357endif
58cabf6a
JO
358
359ifndef NO_GTK2
a8a5cd8b 360 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null)
7ef9e055 361 ifneq ($(feature-gtk2), 1)
8e1b3f68
JO
362 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
363 NO_GTK2 := 1
364 else
c7a79e96 365 ifeq ($(feature-gtk2-infobar), 1)
fc67297b 366 GTK_CFLAGS := -DHAVE_GTK_INFO_BAR_SUPPORT
8e1b3f68 367 endif
89fe808a 368 CFLAGS += -DHAVE_GTK2_SUPPORT
a8a5cd8b
MR
369 GTK_CFLAGS += $(shell $(PKG_CONFIG) --cflags gtk+-2.0 2>/dev/null)
370 GTK_LIBS := $(shell $(PKG_CONFIG) --libs gtk+-2.0 2>/dev/null)
e2137086 371 EXTLIBS += -ldl
8e1b3f68 372 endif
58cabf6a 373endif
3082cb33
JO
374
375grep-libs = $(filter -l%,$(1))
376strip-libs = $(filter-out -l%,$(1))
377
378ifdef NO_LIBPERL
8e1b3f68 379 CFLAGS += -DNO_LIBPERL
3082cb33 380else
8e1b3f68
JO
381 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
382 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
383 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
384 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
385 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
386
7181a671 387 ifneq ($(feature-libperl), 1)
8e1b3f68
JO
388 CFLAGS += -DNO_LIBPERL
389 NO_LIBPERL := 1
390 else
391 LDFLAGS += $(PERL_EMBED_LDFLAGS)
392 EXTLIBS += $(PERL_EMBED_LIBADD)
393 endif
3082cb33 394endif
6e533cf1 395
87419c9a
DA
396ifeq ($(feature-timerfd), 1)
397 CFLAGS += -DHAVE_TIMERFD_SUPPORT
398else
399 msg := $(warning No timerfd support. Disables 'perf kvm stat live');
400endif
401
6e533cf1
JO
402disable-python = $(eval $(disable-python_code))
403define disable-python_code
9c12cf95 404 CFLAGS += -DNO_LIBPYTHON
6e533cf1
JO
405 $(if $(1),$(warning No $(1) was found))
406 $(warning Python support will not be built)
407 NO_LIBPYTHON := 1
408endef
409
410override PYTHON := \
411 $(call get-executable-or-default,PYTHON,python)
412
413ifndef PYTHON
414 $(call disable-python,python interpreter)
415else
416
417 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
418
419 ifdef NO_LIBPYTHON
420 $(call disable-python)
421 else
422
423 override PYTHON_CONFIG := \
424 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON)-config)
425
426 ifndef PYTHON_CONFIG
427 $(call disable-python,python-config tool)
428 else
429
430 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
431
432 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
433 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
434 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
435 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
436 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
437
9734163b 438 ifneq ($(feature-libpython), 1)
6e533cf1
JO
439 $(call disable-python,Python.h (for Python 2.x))
440 else
441
95d061c8 442 ifneq ($(feature-libpython-version), 1)
6e533cf1
JO
443 $(warning Python 3 is not yet supported; please set)
444 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
445 $(warning If you also have Python 2 installed, then)
446 $(warning try something like:)
447 $(warning $(and ,))
448 $(warning $(and ,) make PYTHON=python2)
449 $(warning $(and ,))
450 $(warning Otherwise, disable Python support entirely:)
451 $(warning $(and ,))
452 $(warning $(and ,) make NO_LIBPYTHON=1)
453 $(warning $(and ,))
454 $(error $(and ,))
455 else
1e9f7aad 456 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
6e533cf1 457 EXTLIBS += $(PYTHON_EMBED_LIBADD)
7c53746e 458 LANG_BINDINGS += $(obj-perf)python/perf.so
6e533cf1
JO
459 endif
460 endif
461 endif
462 endif
463endif
c3cf8368 464
3e6a147d
JO
465ifeq ($(feature-libbfd), 1)
466 EXTLIBS += -lbfd
467endif
468
c3cf8368 469ifdef NO_DEMANGLE
8e1b3f68 470 CFLAGS += -DNO_DEMANGLE
c3cf8368 471else
89fe808a 472 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
8e1b3f68 473 EXTLIBS += -liberty
89fe808a 474 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
8e1b3f68 475 else
3e6a147d 476 ifneq ($(feature-libbfd), 1)
5febff00 477 $(call feature_check,liberty)
1c47661a 478 ifeq ($(feature-liberty), 1)
8e1b3f68
JO
479 EXTLIBS += -lbfd -liberty
480 else
5febff00 481 $(call feature_check,liberty-z)
1c47661a 482 ifeq ($(feature-liberty-z), 1)
8e1b3f68
JO
483 EXTLIBS += -lbfd -liberty -lz
484 else
5febff00 485 $(call feature_check,cplus-demangle)
1c47661a 486 ifeq ($(feature-cplus-demangle), 1)
8e1b3f68 487 EXTLIBS += -liberty
89fe808a 488 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
8e1b3f68
JO
489 else
490 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
491 CFLAGS += -DNO_DEMANGLE
492 endif
493 endif
494 endif
495 endif
496 endif
c3cf8368 497endif
a1c7c9e7 498
3e6a147d
JO
499ifneq ($(filter -lbfd,$(EXTLIBS)),)
500 CFLAGS += -DHAVE_LIBBFD_SUPPORT
501endif
502
a1c7c9e7 503ifndef NO_ON_EXIT
34ef2162 504 ifeq ($(feature-on-exit), 1)
89fe808a 505 CFLAGS += -DHAVE_ON_EXIT_SUPPORT
8e1b3f68 506 endif
a1c7c9e7
JO
507endif
508
509ifndef NO_BACKTRACE
4cc9117a 510 ifeq ($(feature-backtrace), 1)
89fe808a 511 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
8e1b3f68 512 endif
a1c7c9e7 513endif
58a0abd7
JO
514
515ifndef NO_LIBNUMA
3ae069cf 516 ifeq ($(feature-libnuma), 0)
6305edfc 517 msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numactl-devel/libnuma-devel/libnuma-dev);
8e1b3f68
JO
518 NO_LIBNUMA := 1
519 else
89fe808a 520 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
8e1b3f68
JO
521 EXTLIBS += -lnuma
522 endif
58a0abd7 523endif
cd1c39f2
JO
524
525# Among the variables below, these:
526# perfexecdir
527# template_dir
528# mandir
529# infodir
530# htmldir
531# ETC_PERFCONFIG (but not sysconfdir)
532# can be specified as a relative path some/where/else;
533# this is interpreted as relative to $(prefix) and "perf" at
534# runtime figures out where they are based on the path to the executable.
535# This can help installing the suite in a relocatable way.
536
537# Make the path relative to DESTDIR, not to prefix
538ifndef DESTDIR
539prefix = $(HOME)
540endif
541bindir_relative = bin
542bindir = $(prefix)/$(bindir_relative)
543mandir = share/man
544infodir = share/info
545perfexecdir = libexec/perf-core
546sharedir = $(prefix)/share
547template_dir = share/perf-core/templates
548htmldir = share/doc/perf-doc
549ifeq ($(prefix),/usr)
550sysconfdir = /etc
551ETC_PERFCONFIG = $(sysconfdir)/perfconfig
552else
553sysconfdir = $(prefix)/etc
554ETC_PERFCONFIG = etc/perfconfig
555endif
fc67297b
NK
556ifeq ($(IS_X86_64),1)
557lib = lib64
558else
cd1c39f2 559lib = lib
fc67297b
NK
560endif
561libdir = $(prefix)/$(lib)
cd1c39f2
JO
562
563# Shell quote (do not use $(call) to accommodate ancient setups);
564ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
565DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
566bindir_SQ = $(subst ','\'',$(bindir))
567mandir_SQ = $(subst ','\'',$(mandir))
568infodir_SQ = $(subst ','\'',$(infodir))
569perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
570template_dir_SQ = $(subst ','\'',$(template_dir))
571htmldir_SQ = $(subst ','\'',$(htmldir))
572prefix_SQ = $(subst ','\'',$(prefix))
573sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
fc67297b 574libdir_SQ = $(subst ','\'',$(libdir))
cd1c39f2
JO
575
576ifneq ($(filter /%,$(firstword $(perfexecdir))),)
577perfexec_instdir = $(perfexecdir)
578else
579perfexec_instdir = $(prefix)/$(perfexecdir)
580endif
581perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))
3d7c0144
JO
582
583# If we install to $(HOME) we keep the traceevent default:
584# $(HOME)/.traceevent/plugins
585# Otherwise we install plugins into the global $(libdir).
586ifdef DESTDIR
587plugindir=$(libdir)/traceevent/plugins
b935a58d 588plugindir_SQ= $(subst ','\'',$(plugindir))
3d7c0144 589endif
0695e57b
JO
590
591#
592# Print the result of the feature test:
593#
594feature_print = $(eval $(feature_print_code)) $(info $(MSG))
595
596define feature_print_code
597 ifeq ($(feature-$(1)), 1)
598 MSG = $(shell printf '...%30s: [ \033[32mon\033[m ]' $(1))
599 else
600 MSG = $(shell printf '...%30s: [ \033[31mOFF\033[m ]' $(1))
601 endif
602endef
603
604PERF_FEATURES := $(foreach feat,$(LIB_FEATURE_TESTS),feature-$(feat)($(feature-$(feat))))
605PERF_FEATURES_FILE := $(shell touch $(OUTPUT)PERF-FEATURES; cat $(OUTPUT)PERF-FEATURES)
606
607# The $(display_lib) controls the default detection message
608# output. It's set if:
609# - detected features differes from stored features from
610# last build (in PERF-FEATURES file)
611# - one of the $(LIB_FEATURE_TESTS) is not detected
612# - VF is enabled
613
614ifneq ("$(PERF_FEATURES)","$(PERF_FEATURES_FILE)")
615 $(shell echo "$(PERF_FEATURES)" > $(OUTPUT)PERF-FEATURES)
616 display_lib := 1
617endif
618
619feature_check = $(eval $(feature_check_code))
620define feature_check_code
621 ifneq ($(feature-$(1)), 1)
622 display_lib := 1
623 endif
624endef
625
626$(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_check,$(feat)))
627
628ifeq ($(VF),1)
629 display_lib := 1
630 display_vf := 1
631endif
632
633ifeq ($(display_lib),1)
634 $(info )
635 $(info Auto-detecting system features:)
636 $(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_print,$(feat),))
637endif
638
639ifeq ($(display_vf),1)
640 $(foreach feat,$(VF_FEATURE_TESTS),$(call feature_print,$(feat),))
641endif
642
643ifeq ($(display_lib),1)
644 $(info )
645endif