]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - tools/perf/config/Makefile
perf machine: Use snprintf instead of sprintf
[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
7c53746e 54include $(src-perf)/config/utilities.mak
a32f4936
JO
55
56ifeq ($(call get-executable,$(FLEX)),)
8e1b3f68 57 dummy := $(error Error: $(FLEX) is missing on this system, please install it)
a32f4936
JO
58endif
59
60ifeq ($(call get-executable,$(BISON)),)
8e1b3f68 61 dummy := $(error Error: $(BISON) is missing on this system, please install it)
a32f4936 62endif
362493f0
JO
63
64# Treat warnings as errors unless directed not to
65ifneq ($(WERROR),0)
8e1b3f68 66 CFLAGS += -Werror
362493f0
JO
67endif
68
69ifeq ("$(origin DEBUG)", "command line")
8e1b3f68 70 PERF_DEBUG = $(DEBUG)
362493f0
JO
71endif
72ifndef PERF_DEBUG
8e1b3f68 73 CFLAGS += -O6
362493f0
JO
74endif
75
76ifdef PARSER_DEBUG
8e1b3f68
JO
77 PARSER_DEBUG_BISON := -t
78 PARSER_DEBUG_FLEX := -d
79 CFLAGS += -DPARSER_DEBUG
362493f0
JO
80endif
81
2fe73746
JO
82CFLAGS += -fno-omit-frame-pointer
83CFLAGS += -ggdb3
84CFLAGS += -funwind-tables
85CFLAGS += -Wall
86CFLAGS += -Wextra
87CFLAGS += -std=gnu99
9c12cf95 88
6d19912c 89EXTLIBS = -lelf -lpthread -lrt -lm -ldl
362493f0 90
1c2d1d8c
IM
91ifneq ($(OUTPUT),)
92 OUTPUT_FEATURES = $(OUTPUT)config/feature-checks/
93 $(shell mkdir -p $(OUTPUT_FEATURES))
94endif
95
baa9c30e 96feature_check = $(eval $(feature_check_code))
b6aa9979 97define feature_check_code
aa4acf6c 98 feature-$(1) := $(shell $(MAKE) OUTPUT=$(OUTPUT_FEATURES) LDFLAGS=$(LDFLAGS) -C config/feature-checks test-$1 >/dev/null 2>/dev/null && echo 1 || echo 0)
baa9c30e
IM
99endef
100
101feature_set = $(eval $(feature_set_code))
102define feature_set_code
103 feature-$(1) := 1
b6aa9979
IM
104endef
105
106#
107# Build the feature check binaries in parallel, ignore errors, ignore return value and suppress output:
108#
b6aa9979 109
f1138ec6
IM
110#
111# Note that this is not a complete list of all feature tests, just
112# those that are typically built on a fully configured system.
113#
114# [ Feature tests not mentioned here have to be built explicitly in
115# the rule that uses them - an example for that is the 'bionic'
116# feature check. ]
117#
118CORE_FEATURE_TESTS = \
119 backtrace \
120 dwarf \
1ea6f99e 121 fortify-source \
e12762cf 122 glibc \
7ef9e055 123 gtk2 \
c7a79e96 124 gtk2-infobar \
f1138ec6
IM
125 libaudit \
126 libbfd \
127 libelf \
128 libelf-getphdrnum \
129 libelf-mmap \
130 libnuma \
7181a671 131 libperl \
9734163b 132 libpython \
95d061c8 133 libpython-version \
f1138ec6
IM
134 libslang \
135 libunwind \
34ef2162 136 on-exit \
f1138ec6
IM
137 stackprotector \
138 stackprotector-all \
139 volatile-register-var
b6aa9979 140
b3b64a12
IM
141#
142# So here we detect whether test-all was rebuilt, to be able
143# to skip the print-out of the long features list if the file
144# existed before and after it was built:
145#
1c2d1d8c 146ifeq ($(wildcard $(OUTPUT)config/feature-checks/test-all),)
b3b64a12
IM
147 test-all-failed := 1
148else
149 test-all-failed := 0
150endif
151
baa9c30e
IM
152#
153# Special fast-path for the 'all features are available' case:
154#
b3b64a12
IM
155$(call feature_check,all,$(MSG))
156
157#
158# Just in case the build freshly failed, make sure we print the
159# feature matrix:
160#
161ifeq ($(feature-all), 0)
162 test-all-failed := 1
163endif
164
165ifeq ($(test-all-failed),1)
166 $(info )
167 $(info Auto-detecting system features:)
168endif
baa9c30e
IM
169
170ifeq ($(feature-all), 1)
f1138ec6
IM
171 #
172 # test-all.c passed - just set all the core feature flags to 1:
173 #
174 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_set,$(feat)))
baa9c30e 175else
aa4acf6c 176 $(shell $(MAKE) OUTPUT=$(OUTPUT_FEATURES) LDFLAGS=$(LDFLAGS) -i -j -C config/feature-checks $(CORE_FEATURE_TESTS) >/dev/null 2>&1)
f1138ec6 177 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_check,$(feat)))
baa9c30e
IM
178endif
179
baa9c30e
IM
180#
181# Print the result of the feature test:
182#
165108a9
JO
183feature_print = $(eval $(feature_print_code)) $(info $(MSG))
184
baa9c30e
IM
185define feature_print_code
186 ifeq ($(feature-$(1)), 1)
73a725f0 187 MSG = $(shell printf '...%30s: [ \033[32mon\033[m ]' $(1))
baa9c30e 188 else
73a725f0 189 MSG = $(shell printf '...%30s: [ \033[31mOFF\033[m ]' $(1))
baa9c30e 190 endif
baa9c30e
IM
191endef
192
b3b64a12
IM
193#
194# Only print out our features if we rebuilt the testcases or if a test failed:
195#
196ifeq ($(test-all-failed), 1)
165108a9 197 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_print,$(feat)))
b3b64a12
IM
198 $(info )
199endif
b6aa9979 200
90ac5422 201ifeq ($(feature-stackprotector-all), 1)
8e1b3f68 202 CFLAGS += -fstack-protector-all
362493f0
JO
203endif
204
430be5ab 205ifeq ($(feature-stackprotector), 1)
8e1b3f68 206 CFLAGS += -Wstack-protector
362493f0
JO
207endif
208
c2510445 209ifeq ($(feature-volatile-register-var), 1)
8e1b3f68 210 CFLAGS += -Wvolatile-register-var
362493f0
JO
211endif
212
213ifndef PERF_DEBUG
1ea6f99e 214 ifeq ($(feature-fortify-source), 1)
8e1b3f68
JO
215 CFLAGS += -D_FORTIFY_SOURCE=2
216 endif
362493f0
JO
217endif
218
2fe73746
JO
219CFLAGS += -I$(src-perf)/util/include
220CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
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
78e9d655
IM
240 $(feature_check,bionic)
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
IM
285 CFLAGS += -DHAVE_LIBELF_SUPPORT
286 FLAGS_LIBELF=$(CFLAGS) $(LDFLAGS) $(EXTLIBS)
779724fd 287
8869b17e 288 ifeq ($(feature-libelf-mmap), 1)
fb3d333b
IM
289 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
290 endif
779724fd 291
b7bcef6f 292 ifeq ($(feature-libelf-getphdrnum), 1)
fb3d333b
IM
293 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
294 endif
295
296 # include ARCH specific config
297 -include $(src-perf)/arch/$(ARCH)/Makefile
779724fd 298
fb3d333b
IM
299 ifndef NO_DWARF
300 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
301 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
302 NO_DWARF := 1
303 else
304 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
305 LDFLAGS += $(LIBDW_LDFLAGS)
306 EXTLIBS += -lelf -ldw
307 endif # PERF_HAVE_DWARF_REGS
308 endif # NO_DWARF
cf4cca10 309endif # NO_LIBELF
0e433feb 310
1e9f7aad 311ifndef NO_LIBELF
fb3d333b 312 CFLAGS += -DHAVE_LIBELF_SUPPORT
8869b17e 313 ifeq ($(feature-libelf-mmap), 1)
fb3d333b 314 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
b7bcef6f 315 endif
1e9f7aad
JO
316endif # NO_LIBELF
317
0e433feb
JO
318# There's only x86 (both 32 and 64) support for CFI unwind so far
319ifneq ($(ARCH),x86)
8e1b3f68 320 NO_LIBUNWIND := 1
0e433feb
JO
321endif
322
323ifndef NO_LIBUNWIND
058f952d
IM
324 #
325 # For linking with debug library, run like:
326 #
327 # make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
328 #
308e1e70
IM
329 ifdef LIBUNWIND_DIR
330 LIBUNWIND_CFLAGS := -I$(LIBUNWIND_DIR)/include
331 LIBUNWIND_LDFLAGS := -L$(LIBUNWIND_DIR)/lib
332 endif
0e433feb 333
058f952d 334 ifneq ($(feature-libunwind), 1)
308e1e70
IM
335 msg := $(warning No libunwind found, disabling post unwind support. Please install libunwind-dev[el] >= 0.99);
336 NO_LIBUNWIND := 1
337 endif
338endif
0e433feb
JO
339
340ifndef NO_LIBUNWIND
89fe808a 341 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
8e1b3f68
JO
342 EXTLIBS += $(LIBUNWIND_LIBS)
343 CFLAGS += $(LIBUNWIND_CFLAGS)
344 LDFLAGS += $(LIBUNWIND_LDFLAGS)
058f952d 345endif
a8279525
JO
346
347ifndef NO_LIBAUDIT
d795a658 348 ifneq ($(feature-libaudit), 1)
8e1b3f68
JO
349 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
350 NO_LIBAUDIT := 1
351 else
89fe808a 352 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
8e1b3f68
JO
353 EXTLIBS += -laudit
354 endif
a8279525 355endif
4a8f888a
JO
356
357ifdef NO_NEWT
8e1b3f68 358 NO_SLANG=1
4a8f888a
JO
359endif
360
361ifndef NO_SLANG
b9498b50 362 ifneq ($(feature-libslang), 1)
8e1b3f68
JO
363 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
364 NO_SLANG := 1
365 else
366 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
367 CFLAGS += -I/usr/include/slang
89fe808a 368 CFLAGS += -DHAVE_SLANG_SUPPORT
8e1b3f68
JO
369 EXTLIBS += -lslang
370 endif
4a8f888a 371endif
58cabf6a
JO
372
373ifndef NO_GTK2
8e1b3f68 374 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell pkg-config --libs --cflags gtk+-2.0 2>/dev/null)
7ef9e055 375 ifneq ($(feature-gtk2), 1)
8e1b3f68
JO
376 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
377 NO_GTK2 := 1
378 else
c7a79e96 379 ifeq ($(feature-gtk2-infobar), 1)
fc67297b 380 GTK_CFLAGS := -DHAVE_GTK_INFO_BAR_SUPPORT
8e1b3f68 381 endif
89fe808a 382 CFLAGS += -DHAVE_GTK2_SUPPORT
fc67297b
NK
383 GTK_CFLAGS += $(shell pkg-config --cflags gtk+-2.0 2>/dev/null)
384 GTK_LIBS := $(shell pkg-config --libs gtk+-2.0 2>/dev/null)
8e1b3f68 385 endif
58cabf6a 386endif
3082cb33
JO
387
388grep-libs = $(filter -l%,$(1))
389strip-libs = $(filter-out -l%,$(1))
390
391ifdef NO_LIBPERL
8e1b3f68 392 CFLAGS += -DNO_LIBPERL
3082cb33 393else
8e1b3f68
JO
394 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
395 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
396 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
397 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
398 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
399
7181a671 400 ifneq ($(feature-libperl), 1)
8e1b3f68
JO
401 CFLAGS += -DNO_LIBPERL
402 NO_LIBPERL := 1
403 else
404 LDFLAGS += $(PERL_EMBED_LDFLAGS)
405 EXTLIBS += $(PERL_EMBED_LIBADD)
406 endif
3082cb33 407endif
6e533cf1
JO
408
409disable-python = $(eval $(disable-python_code))
410define disable-python_code
9c12cf95 411 CFLAGS += -DNO_LIBPYTHON
6e533cf1
JO
412 $(if $(1),$(warning No $(1) was found))
413 $(warning Python support will not be built)
414 NO_LIBPYTHON := 1
415endef
416
417override PYTHON := \
418 $(call get-executable-or-default,PYTHON,python)
419
420ifndef PYTHON
421 $(call disable-python,python interpreter)
422else
423
424 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
425
426 ifdef NO_LIBPYTHON
427 $(call disable-python)
428 else
429
430 override PYTHON_CONFIG := \
431 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON)-config)
432
433 ifndef PYTHON_CONFIG
434 $(call disable-python,python-config tool)
435 else
436
437 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
438
439 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
440 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
441 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
442 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
443 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
444
9734163b 445 ifneq ($(feature-libpython), 1)
6e533cf1
JO
446 $(call disable-python,Python.h (for Python 2.x))
447 else
448
95d061c8 449 ifneq ($(feature-libpython-version), 1)
6e533cf1
JO
450 $(warning Python 3 is not yet supported; please set)
451 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
452 $(warning If you also have Python 2 installed, then)
453 $(warning try something like:)
454 $(warning $(and ,))
455 $(warning $(and ,) make PYTHON=python2)
456 $(warning $(and ,))
457 $(warning Otherwise, disable Python support entirely:)
458 $(warning $(and ,))
459 $(warning $(and ,) make NO_LIBPYTHON=1)
460 $(warning $(and ,))
461 $(error $(and ,))
462 else
1e9f7aad 463 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
6e533cf1 464 EXTLIBS += $(PYTHON_EMBED_LIBADD)
7c53746e 465 LANG_BINDINGS += $(obj-perf)python/perf.so
6e533cf1
JO
466 endif
467 endif
468 endif
469 endif
470endif
c3cf8368
JO
471
472ifdef NO_DEMANGLE
8e1b3f68 473 CFLAGS += -DNO_DEMANGLE
c3cf8368 474else
89fe808a 475 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
8e1b3f68 476 EXTLIBS += -liberty
89fe808a 477 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
8e1b3f68 478 else
3b7646e4 479 ifeq ($(feature-libbfd), 1)
8e1b3f68
JO
480 EXTLIBS += -lbfd
481 else
1c47661a
IM
482 $(feature_check,liberty)
483 ifeq ($(feature-liberty), 1)
8e1b3f68
JO
484 EXTLIBS += -lbfd -liberty
485 else
1c47661a
IM
486 $(feature_check,liberty-z)
487 ifeq ($(feature-liberty-z), 1)
8e1b3f68
JO
488 EXTLIBS += -lbfd -liberty -lz
489 else
1c47661a
IM
490 $(feature_check,cplus-demangle)
491 ifeq ($(feature-cplus-demangle), 1)
8e1b3f68 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 525
2f48fcd8
RV
526ifndef ($(filter -lbfd,$(EXTLIBS)),)
527 CFLAGS += -DHAVE_LIBBFD_SUPPORT
528endif
529
cd1c39f2
JO
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
543ifndef DESTDIR
544prefix = $(HOME)
545endif
546bindir_relative = bin
547bindir = $(prefix)/$(bindir_relative)
548mandir = share/man
549infodir = share/info
550perfexecdir = libexec/perf-core
551sharedir = $(prefix)/share
552template_dir = share/perf-core/templates
553htmldir = share/doc/perf-doc
554ifeq ($(prefix),/usr)
555sysconfdir = /etc
556ETC_PERFCONFIG = $(sysconfdir)/perfconfig
557else
558sysconfdir = $(prefix)/etc
559ETC_PERFCONFIG = etc/perfconfig
560endif
fc67297b
NK
561ifeq ($(IS_X86_64),1)
562lib = lib64
563else
cd1c39f2 564lib = lib
fc67297b
NK
565endif
566libdir = $(prefix)/$(lib)
cd1c39f2
JO
567
568# Shell quote (do not use $(call) to accommodate ancient setups);
569ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
570DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
571bindir_SQ = $(subst ','\'',$(bindir))
572mandir_SQ = $(subst ','\'',$(mandir))
573infodir_SQ = $(subst ','\'',$(infodir))
574perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
575template_dir_SQ = $(subst ','\'',$(template_dir))
576htmldir_SQ = $(subst ','\'',$(htmldir))
577prefix_SQ = $(subst ','\'',$(prefix))
578sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
fc67297b 579libdir_SQ = $(subst ','\'',$(libdir))
cd1c39f2
JO
580
581ifneq ($(filter /%,$(firstword $(perfexecdir))),)
582perfexec_instdir = $(perfexecdir)
583else
584perfexec_instdir = $(prefix)/$(perfexecdir)
585endif
586perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))