]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - tools/perf/config/Makefile
perf evlist: Validate that mmap_pages is not too big
[mirror_ubuntu-artful-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
fcf92585 69ifeq ($(DEBUG),0)
8e1b3f68 70 CFLAGS += -O6
362493f0
JO
71endif
72
73ifdef PARSER_DEBUG
8e1b3f68
JO
74 PARSER_DEBUG_BISON := -t
75 PARSER_DEBUG_FLEX := -d
76 CFLAGS += -DPARSER_DEBUG
362493f0
JO
77endif
78
2fe73746
JO
79CFLAGS += -fno-omit-frame-pointer
80CFLAGS += -ggdb3
81CFLAGS += -funwind-tables
82CFLAGS += -Wall
83CFLAGS += -Wextra
84CFLAGS += -std=gnu99
9c12cf95 85
6d19912c 86EXTLIBS = -lelf -lpthread -lrt -lm -ldl
362493f0 87
1c2d1d8c
IM
88ifneq ($(OUTPUT),)
89 OUTPUT_FEATURES = $(OUTPUT)config/feature-checks/
90 $(shell mkdir -p $(OUTPUT_FEATURES))
91endif
92
baa9c30e 93feature_check = $(eval $(feature_check_code))
b6aa9979 94define feature_check_code
aa4acf6c 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)
baa9c30e
IM
96endef
97
98feature_set = $(eval $(feature_set_code))
99define feature_set_code
100 feature-$(1) := 1
b6aa9979
IM
101endef
102
103#
104# Build the feature check binaries in parallel, ignore errors, ignore return value and suppress output:
105#
b6aa9979 106
f1138ec6
IM
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#
115CORE_FEATURE_TESTS = \
116 backtrace \
117 dwarf \
1ea6f99e 118 fortify-source \
e12762cf 119 glibc \
7ef9e055 120 gtk2 \
c7a79e96 121 gtk2-infobar \
f1138ec6
IM
122 libaudit \
123 libbfd \
124 libelf \
125 libelf-getphdrnum \
126 libelf-mmap \
127 libnuma \
7181a671 128 libperl \
9734163b 129 libpython \
95d061c8 130 libpython-version \
f1138ec6
IM
131 libslang \
132 libunwind \
34ef2162 133 on-exit \
f1138ec6 134 stackprotector \
01287e2c 135 stackprotector-all
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#
1c2d1d8c 142ifeq ($(wildcard $(OUTPUT)config/feature-checks/test-all),)
b3b64a12
IM
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
aa4acf6c 172 $(shell $(MAKE) OUTPUT=$(OUTPUT_FEATURES) LDFLAGS=$(LDFLAGS) -i -j -C config/feature-checks $(CORE_FEATURE_TESTS) >/dev/null 2>&1)
f1138ec6 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#
165108a9
JO
179feature_print = $(eval $(feature_print_code)) $(info $(MSG))
180
baa9c30e
IM
181define feature_print_code
182 ifeq ($(feature-$(1)), 1)
73a725f0 183 MSG = $(shell printf '...%30s: [ \033[32mon\033[m ]' $(1))
baa9c30e 184 else
73a725f0 185 MSG = $(shell printf '...%30s: [ \033[31mOFF\033[m ]' $(1))
baa9c30e 186 endif
baa9c30e
IM
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)
165108a9 193 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_print,$(feat)))
b3b64a12
IM
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
fcf92585 205ifeq ($(DEBUG),0)
1ea6f99e 206 ifeq ($(feature-fortify-source), 1)
8e1b3f68
JO
207 CFLAGS += -D_FORTIFY_SOURCE=2
208 endif
362493f0
JO
209endif
210
2fe73746
JO
211CFLAGS += -I$(src-perf)/util/include
212CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
213CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
214CFLAGS += -I$(srctree)/arch/$(ARCH)/include
215CFLAGS += -I$(srctree)/include/uapi
216CFLAGS += -I$(srctree)/include
7c53746e
JO
217
218# $(obj-perf) for generated common-cmds.h
219# $(obj-perf)/util for generated bison/flex headers
220ifneq ($(OUTPUT),)
2fe73746
JO
221CFLAGS += -I$(obj-perf)/util
222CFLAGS += -I$(obj-perf)
7c53746e
JO
223endif
224
2fe73746
JO
225CFLAGS += -I$(src-perf)/util
226CFLAGS += -I$(src-perf)
4e319027 227CFLAGS += -I$(LIB_INCLUDE)
7c53746e 228
2fe73746 229CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
362493f0 230
4e22db46 231ifndef NO_BIONIC
78e9d655
IM
232 $(feature_check,bionic)
233 ifeq ($(feature-bionic), 1)
234 BIONIC := 1
235 EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
236 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
237 endif
362493f0 238endif
cf4cca10
JO
239
240ifdef NO_LIBELF
8e1b3f68
JO
241 NO_DWARF := 1
242 NO_DEMANGLE := 1
243 NO_LIBUNWIND := 1
cf4cca10 244else
8f7f8005 245 ifeq ($(feature-libelf), 0)
e12762cf 246 ifeq ($(feature-glibc), 1)
50eed7a7
IM
247 LIBC_SUPPORT := 1
248 endif
249 ifeq ($(BIONIC),1)
250 LIBC_SUPPORT := 1
251 endif
252 ifeq ($(LIBC_SUPPORT),1)
253 msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libelf-dev);
254
255 NO_LIBELF := 1
256 NO_DWARF := 1
257 NO_DEMANGLE := 1
258 else
259 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]/glibc-static);
260 endif
8e1b3f68 261 else
50eed7a7
IM
262 # for linking with debug library, run like:
263 # make DEBUG=1 LIBDW_DIR=/opt/libdw/
264 ifdef LIBDW_DIR
265 LIBDW_CFLAGS := -I$(LIBDW_DIR)/include
266 LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib
267 endif
268
8295d4e2 269 ifneq ($(feature-dwarf), 1)
50eed7a7
IM
270 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);
271 NO_DWARF := 1
272 endif # Dwarf support
0648f839 273 endif # libelf support
cf4cca10
JO
274endif # NO_LIBELF
275
276ifndef NO_LIBELF
fb3d333b 277 CFLAGS += -DHAVE_LIBELF_SUPPORT
779724fd 278
8869b17e 279 ifeq ($(feature-libelf-mmap), 1)
fb3d333b
IM
280 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
281 endif
779724fd 282
b7bcef6f 283 ifeq ($(feature-libelf-getphdrnum), 1)
fb3d333b
IM
284 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
285 endif
286
287 # include ARCH specific config
288 -include $(src-perf)/arch/$(ARCH)/Makefile
779724fd 289
fb3d333b
IM
290 ifndef NO_DWARF
291 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
292 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
293 NO_DWARF := 1
294 else
295 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
296 LDFLAGS += $(LIBDW_LDFLAGS)
297 EXTLIBS += -lelf -ldw
298 endif # PERF_HAVE_DWARF_REGS
299 endif # NO_DWARF
cf4cca10 300endif # NO_LIBELF
0e433feb
JO
301
302# There's only x86 (both 32 and 64) support for CFI unwind so far
303ifneq ($(ARCH),x86)
8e1b3f68 304 NO_LIBUNWIND := 1
0e433feb
JO
305endif
306
307ifndef NO_LIBUNWIND
058f952d
IM
308 #
309 # For linking with debug library, run like:
310 #
311 # make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
312 #
308e1e70
IM
313 ifdef LIBUNWIND_DIR
314 LIBUNWIND_CFLAGS := -I$(LIBUNWIND_DIR)/include
315 LIBUNWIND_LDFLAGS := -L$(LIBUNWIND_DIR)/lib
316 endif
0e433feb 317
058f952d 318 ifneq ($(feature-libunwind), 1)
308e1e70
IM
319 msg := $(warning No libunwind found, disabling post unwind support. Please install libunwind-dev[el] >= 0.99);
320 NO_LIBUNWIND := 1
321 endif
322endif
0e433feb
JO
323
324ifndef NO_LIBUNWIND
89fe808a 325 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
8e1b3f68
JO
326 EXTLIBS += $(LIBUNWIND_LIBS)
327 CFLAGS += $(LIBUNWIND_CFLAGS)
328 LDFLAGS += $(LIBUNWIND_LDFLAGS)
058f952d 329endif
a8279525
JO
330
331ifndef NO_LIBAUDIT
d795a658 332 ifneq ($(feature-libaudit), 1)
8e1b3f68
JO
333 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
334 NO_LIBAUDIT := 1
335 else
89fe808a 336 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
8e1b3f68
JO
337 EXTLIBS += -laudit
338 endif
a8279525 339endif
4a8f888a
JO
340
341ifdef NO_NEWT
8e1b3f68 342 NO_SLANG=1
4a8f888a
JO
343endif
344
345ifndef NO_SLANG
b9498b50 346 ifneq ($(feature-libslang), 1)
8e1b3f68
JO
347 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
348 NO_SLANG := 1
349 else
350 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
351 CFLAGS += -I/usr/include/slang
89fe808a 352 CFLAGS += -DHAVE_SLANG_SUPPORT
8e1b3f68
JO
353 EXTLIBS += -lslang
354 endif
4a8f888a 355endif
58cabf6a
JO
356
357ifndef NO_GTK2
8e1b3f68 358 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell pkg-config --libs --cflags gtk+-2.0 2>/dev/null)
7ef9e055 359 ifneq ($(feature-gtk2), 1)
8e1b3f68
JO
360 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
361 NO_GTK2 := 1
362 else
c7a79e96 363 ifeq ($(feature-gtk2-infobar), 1)
fc67297b 364 GTK_CFLAGS := -DHAVE_GTK_INFO_BAR_SUPPORT
8e1b3f68 365 endif
89fe808a 366 CFLAGS += -DHAVE_GTK2_SUPPORT
fc67297b
NK
367 GTK_CFLAGS += $(shell pkg-config --cflags gtk+-2.0 2>/dev/null)
368 GTK_LIBS := $(shell pkg-config --libs gtk+-2.0 2>/dev/null)
e2137086 369 EXTLIBS += -ldl
8e1b3f68 370 endif
58cabf6a 371endif
3082cb33
JO
372
373grep-libs = $(filter -l%,$(1))
374strip-libs = $(filter-out -l%,$(1))
375
376ifdef NO_LIBPERL
8e1b3f68 377 CFLAGS += -DNO_LIBPERL
3082cb33 378else
8e1b3f68
JO
379 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
380 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
381 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
382 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
383 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
384
7181a671 385 ifneq ($(feature-libperl), 1)
8e1b3f68
JO
386 CFLAGS += -DNO_LIBPERL
387 NO_LIBPERL := 1
388 else
389 LDFLAGS += $(PERL_EMBED_LDFLAGS)
390 EXTLIBS += $(PERL_EMBED_LIBADD)
391 endif
3082cb33 392endif
6e533cf1
JO
393
394disable-python = $(eval $(disable-python_code))
395define disable-python_code
9c12cf95 396 CFLAGS += -DNO_LIBPYTHON
6e533cf1
JO
397 $(if $(1),$(warning No $(1) was found))
398 $(warning Python support will not be built)
399 NO_LIBPYTHON := 1
400endef
401
402override PYTHON := \
403 $(call get-executable-or-default,PYTHON,python)
404
405ifndef PYTHON
406 $(call disable-python,python interpreter)
407else
408
409 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
410
411 ifdef NO_LIBPYTHON
412 $(call disable-python)
413 else
414
415 override PYTHON_CONFIG := \
416 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON)-config)
417
418 ifndef PYTHON_CONFIG
419 $(call disable-python,python-config tool)
420 else
421
422 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
423
424 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
425 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
426 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
427 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
428 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
429
9734163b 430 ifneq ($(feature-libpython), 1)
6e533cf1
JO
431 $(call disable-python,Python.h (for Python 2.x))
432 else
433
95d061c8 434 ifneq ($(feature-libpython-version), 1)
6e533cf1
JO
435 $(warning Python 3 is not yet supported; please set)
436 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
437 $(warning If you also have Python 2 installed, then)
438 $(warning try something like:)
439 $(warning $(and ,))
440 $(warning $(and ,) make PYTHON=python2)
441 $(warning $(and ,))
442 $(warning Otherwise, disable Python support entirely:)
443 $(warning $(and ,))
444 $(warning $(and ,) make NO_LIBPYTHON=1)
445 $(warning $(and ,))
446 $(error $(and ,))
447 else
1e9f7aad 448 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
6e533cf1 449 EXTLIBS += $(PYTHON_EMBED_LIBADD)
7c53746e 450 LANG_BINDINGS += $(obj-perf)python/perf.so
6e533cf1
JO
451 endif
452 endif
453 endif
454 endif
455endif
c3cf8368 456
3e6a147d
JO
457ifeq ($(feature-libbfd), 1)
458 EXTLIBS += -lbfd
459endif
460
c3cf8368 461ifdef NO_DEMANGLE
8e1b3f68 462 CFLAGS += -DNO_DEMANGLE
c3cf8368 463else
89fe808a 464 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
8e1b3f68 465 EXTLIBS += -liberty
89fe808a 466 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
8e1b3f68 467 else
3e6a147d 468 ifneq ($(feature-libbfd), 1)
1c47661a
IM
469 $(feature_check,liberty)
470 ifeq ($(feature-liberty), 1)
8e1b3f68
JO
471 EXTLIBS += -lbfd -liberty
472 else
1c47661a
IM
473 $(feature_check,liberty-z)
474 ifeq ($(feature-liberty-z), 1)
8e1b3f68
JO
475 EXTLIBS += -lbfd -liberty -lz
476 else
1c47661a
IM
477 $(feature_check,cplus-demangle)
478 ifeq ($(feature-cplus-demangle), 1)
8e1b3f68 479 EXTLIBS += -liberty
89fe808a 480 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
8e1b3f68
JO
481 else
482 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
483 CFLAGS += -DNO_DEMANGLE
484 endif
485 endif
486 endif
487 endif
488 endif
c3cf8368 489endif
a1c7c9e7 490
3e6a147d
JO
491ifneq ($(filter -lbfd,$(EXTLIBS)),)
492 CFLAGS += -DHAVE_LIBBFD_SUPPORT
493endif
494
a1c7c9e7 495ifndef NO_ON_EXIT
34ef2162 496 ifeq ($(feature-on-exit), 1)
89fe808a 497 CFLAGS += -DHAVE_ON_EXIT_SUPPORT
8e1b3f68 498 endif
a1c7c9e7
JO
499endif
500
501ifndef NO_BACKTRACE
4cc9117a 502 ifeq ($(feature-backtrace), 1)
89fe808a 503 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
8e1b3f68 504 endif
a1c7c9e7 505endif
58a0abd7
JO
506
507ifndef NO_LIBNUMA
3ae069cf 508 ifeq ($(feature-libnuma), 0)
8e1b3f68
JO
509 msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numa-libs-devel or libnuma-dev);
510 NO_LIBNUMA := 1
511 else
89fe808a 512 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
8e1b3f68
JO
513 EXTLIBS += -lnuma
514 endif
58a0abd7 515endif
cd1c39f2
JO
516
517# Among the variables below, these:
518# perfexecdir
519# template_dir
520# mandir
521# infodir
522# htmldir
523# ETC_PERFCONFIG (but not sysconfdir)
524# can be specified as a relative path some/where/else;
525# this is interpreted as relative to $(prefix) and "perf" at
526# runtime figures out where they are based on the path to the executable.
527# This can help installing the suite in a relocatable way.
528
529# Make the path relative to DESTDIR, not to prefix
530ifndef DESTDIR
531prefix = $(HOME)
532endif
533bindir_relative = bin
534bindir = $(prefix)/$(bindir_relative)
535mandir = share/man
536infodir = share/info
537perfexecdir = libexec/perf-core
538sharedir = $(prefix)/share
539template_dir = share/perf-core/templates
540htmldir = share/doc/perf-doc
541ifeq ($(prefix),/usr)
542sysconfdir = /etc
543ETC_PERFCONFIG = $(sysconfdir)/perfconfig
544else
545sysconfdir = $(prefix)/etc
546ETC_PERFCONFIG = etc/perfconfig
547endif
fc67297b
NK
548ifeq ($(IS_X86_64),1)
549lib = lib64
550else
cd1c39f2 551lib = lib
fc67297b
NK
552endif
553libdir = $(prefix)/$(lib)
cd1c39f2
JO
554
555# Shell quote (do not use $(call) to accommodate ancient setups);
556ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
557DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
558bindir_SQ = $(subst ','\'',$(bindir))
559mandir_SQ = $(subst ','\'',$(mandir))
560infodir_SQ = $(subst ','\'',$(infodir))
561perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
562template_dir_SQ = $(subst ','\'',$(template_dir))
563htmldir_SQ = $(subst ','\'',$(htmldir))
564prefix_SQ = $(subst ','\'',$(prefix))
565sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
fc67297b 566libdir_SQ = $(subst ','\'',$(libdir))
cd1c39f2
JO
567
568ifneq ($(filter /%,$(firstword $(perfexecdir))),)
569perfexec_instdir = $(perfexecdir)
570else
571perfexec_instdir = $(prefix)/$(perfexecdir)
572endif
573perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))