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