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