blob: 543aa953bab179a6e3baf34272ecf322260e1053 [file] [log] [blame]
Jiri Olsa8bd407b2013-03-15 16:28:49 +01001uname_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/ \
Jiri Olsa8e1b3f62013-04-15 04:06:58 +02004 -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/ )
Jiri Olsa8bd407b2013-03-15 16:28:49 +01008NO_PERF_REGS := 1
Jiri Olsa9c12cf92013-03-21 11:30:54 +01009CFLAGS := $(EXTRA_CFLAGS) $(EXTRA_WARNINGS)
Jiri Olsa8bd407b2013-03-15 16:28:49 +010010
11# Additional ARCH settings for x86
12ifeq ($(ARCH),i386)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020013 override ARCH := x86
14 NO_PERF_REGS := 0
15 LIBUNWIND_LIBS = -lunwind -lunwind-x86
Jiri Olsa8bd407b2013-03-15 16:28:49 +010016endif
17
18ifeq ($(ARCH),x86_64)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020019 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
Ingo Molnar89fe8082013-09-30 12:07:11 +020026 CFLAGS += -DHAVE_ARCH_X86_64_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020027 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
Jiri Olsa8bd407b2013-03-15 16:28:49 +010031endif
32
33ifeq ($(NO_PERF_REGS),0)
Ingo Molnar89fe8082013-09-30 12:07:11 +020034 CFLAGS += -DHAVE_PERF_REGS_SUPPORT
Jiri Olsa8bd407b2013-03-15 16:28:49 +010035endif
Jiri Olsaa32f4932013-03-25 00:32:01 +010036
Jiri Olsa7c537462013-05-24 14:35:23 +020037ifeq ($(src-perf),)
38src-perf := $(srctree)/tools/perf
39endif
40
41ifeq ($(obj-perf),)
Robert Richter107de372013-06-11 17:22:38 +020042obj-perf := $(OUTPUT)
Jiri Olsa7c537462013-05-24 14:35:23 +020043endif
44
45ifneq ($(obj-perf),)
46obj-perf := $(abspath $(obj-perf))/
47endif
48
Robert Richter4e319022013-06-11 17:29:18 +020049LIB_INCLUDE := $(srctree)/tools/lib/
50
Jiri Olsa7c537462013-05-24 14:35:23 +020051# include ARCH specific config
52-include $(src-perf)/arch/$(ARCH)/Makefile
53
Jiri Olsa7c537462013-05-24 14:35:23 +020054include $(src-perf)/config/utilities.mak
Jiri Olsaa32f4932013-03-25 00:32:01 +010055
56ifeq ($(call get-executable,$(FLEX)),)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020057 dummy := $(error Error: $(FLEX) is missing on this system, please install it)
Jiri Olsaa32f4932013-03-25 00:32:01 +010058endif
59
60ifeq ($(call get-executable,$(BISON)),)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020061 dummy := $(error Error: $(BISON) is missing on this system, please install it)
Jiri Olsaa32f4932013-03-25 00:32:01 +010062endif
Jiri Olsa362493f2013-03-25 00:40:48 +010063
64# Treat warnings as errors unless directed not to
65ifneq ($(WERROR),0)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020066 CFLAGS += -Werror
Jiri Olsa362493f2013-03-25 00:40:48 +010067endif
68
Adrian Hunter74af3772013-10-22 10:34:05 +030069ifndef DEBUG
70 DEBUG := 0
71endif
72
Ingo Molnarfcf92582013-10-10 08:05:25 +020073ifeq ($(DEBUG),0)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020074 CFLAGS += -O6
Jiri Olsa362493f2013-03-25 00:40:48 +010075endif
76
77ifdef PARSER_DEBUG
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020078 PARSER_DEBUG_BISON := -t
79 PARSER_DEBUG_FLEX := -d
80 CFLAGS += -DPARSER_DEBUG
Jiri Olsa362493f2013-03-25 00:40:48 +010081endif
82
Jiri Olsa2fe73742013-04-15 04:32:28 +020083CFLAGS += -fno-omit-frame-pointer
84CFLAGS += -ggdb3
85CFLAGS += -funwind-tables
86CFLAGS += -Wall
87CFLAGS += -Wextra
88CFLAGS += -std=gnu99
Jiri Olsa9c12cf92013-03-21 11:30:54 +010089
David Ahern6d199122013-09-22 19:44:57 -060090EXTLIBS = -lelf -lpthread -lrt -lm -ldl
Jiri Olsa362493f2013-03-25 00:40:48 +010091
Ingo Molnar1c2d1d82013-10-03 15:05:56 +020092ifneq ($(OUTPUT),)
93 OUTPUT_FEATURES = $(OUTPUT)config/feature-checks/
94 $(shell mkdir -p $(OUTPUT_FEATURES))
95endif
96
Ingo Molnarbaa9c302013-10-01 14:14:31 +020097feature_check = $(eval $(feature_check_code))
Ingo Molnarb6aa9972013-09-30 10:08:24 +020098define feature_check_code
Ingo Molnaraa4acf62013-10-07 17:51:29 +020099 feature-$(1) := $(shell $(MAKE) OUTPUT=$(OUTPUT_FEATURES) LDFLAGS=$(LDFLAGS) -C config/feature-checks test-$1 >/dev/null 2>/dev/null && echo 1 || echo 0)
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200100endef
101
102feature_set = $(eval $(feature_set_code))
103define feature_set_code
104 feature-$(1) := 1
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200105endef
106
107#
108# Build the feature check binaries in parallel, ignore errors, ignore return value and suppress output:
109#
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200110
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200111#
112# Note that this is not a complete list of all feature tests, just
113# those that are typically built on a fully configured system.
114#
115# [ Feature tests not mentioned here have to be built explicitly in
116# the rule that uses them - an example for that is the 'bionic'
117# feature check. ]
118#
119CORE_FEATURE_TESTS = \
120 backtrace \
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200121 dwarf \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200122 fortify-source \
123 glibc \
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200124 gtk2 \
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200125 gtk2-infobar \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200126 libaudit \
127 libbfd \
128 libelf \
129 libelf-getphdrnum \
130 libelf-mmap \
131 libnuma \
Ingo Molnar7181a672013-09-30 15:15:36 +0200132 libperl \
Ingo Molnar97341632013-09-30 15:18:37 +0200133 libpython \
Ingo Molnar95d061c2013-09-30 15:40:04 +0200134 libpython-version \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200135 libslang \
136 libunwind \
Ingo Molnar34ef2162013-09-30 16:46:49 +0200137 on-exit \
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200138 stackprotector \
Ingo Molnar01287e22013-10-10 08:58:57 +0200139 stackprotector-all
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200140
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200141#
Ingo Molnarb3b64a12013-10-02 10:01:42 +0200142# 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#
Ingo Molnar1c2d1d82013-10-03 15:05:56 +0200146ifeq ($(wildcard $(OUTPUT)config/feature-checks/test-all),)
Ingo Molnarb3b64a12013-10-02 10:01:42 +0200147 test-all-failed := 1
148else
149 test-all-failed := 0
150endif
151
152#
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200153# Special fast-path for the 'all features are available' case:
154#
Ingo Molnarb3b64a12013-10-02 10:01:42 +0200155$(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
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200169
170ifeq ($(feature-all), 1)
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200171 #
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)))
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200175else
Ingo Molnaraa4acf62013-10-07 17:51:29 +0200176 $(shell $(MAKE) OUTPUT=$(OUTPUT_FEATURES) LDFLAGS=$(LDFLAGS) -i -j -C config/feature-checks $(CORE_FEATURE_TESTS) >/dev/null 2>&1)
Ingo Molnarf1138ec2013-10-02 09:54:43 +0200177 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_check,$(feat)))
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200178endif
179
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200180#
181# Print the result of the feature test:
182#
Jiri Olsa165108a2013-10-08 17:51:10 +0200183feature_print = $(eval $(feature_print_code)) $(info $(MSG))
184
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200185define feature_print_code
186 ifeq ($(feature-$(1)), 1)
Ingo Molnar73a725f2013-10-02 11:58:30 +0200187 MSG = $(shell printf '...%30s: [ \033[32mon\033[m ]' $(1))
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200188 else
Ingo Molnar73a725f2013-10-02 11:58:30 +0200189 MSG = $(shell printf '...%30s: [ \033[31mOFF\033[m ]' $(1))
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200190 endif
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200191endef
192
Ingo Molnarb3b64a12013-10-02 10:01:42 +0200193#
194# Only print out our features if we rebuilt the testcases or if a test failed:
195#
196ifeq ($(test-all-failed), 1)
Jiri Olsa165108a2013-10-08 17:51:10 +0200197 $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_print,$(feat)))
Ingo Molnarb3b64a12013-10-02 10:01:42 +0200198 $(info )
199endif
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200200
Ingo Molnar90ac5422013-09-30 13:48:44 +0200201ifeq ($(feature-stackprotector-all), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200202 CFLAGS += -fstack-protector-all
Jiri Olsa362493f2013-03-25 00:40:48 +0100203endif
204
Ingo Molnar430be5a2013-10-07 09:47:00 +0200205ifeq ($(feature-stackprotector), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200206 CFLAGS += -Wstack-protector
Jiri Olsa362493f2013-03-25 00:40:48 +0100207endif
208
Ingo Molnarfcf92582013-10-10 08:05:25 +0200209ifeq ($(DEBUG),0)
Ingo Molnar1ea6f992013-10-07 09:38:28 +0200210 ifeq ($(feature-fortify-source), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200211 CFLAGS += -D_FORTIFY_SOURCE=2
212 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100213endif
214
Jiri Olsa2fe73742013-04-15 04:32:28 +0200215CFLAGS += -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
Jiri Olsa7c537462013-05-24 14:35:23 +0200221
222# $(obj-perf) for generated common-cmds.h
223# $(obj-perf)/util for generated bison/flex headers
224ifneq ($(OUTPUT),)
Jiri Olsa2fe73742013-04-15 04:32:28 +0200225CFLAGS += -I$(obj-perf)/util
226CFLAGS += -I$(obj-perf)
Jiri Olsa7c537462013-05-24 14:35:23 +0200227endif
228
Jiri Olsa2fe73742013-04-15 04:32:28 +0200229CFLAGS += -I$(src-perf)/util
230CFLAGS += -I$(src-perf)
Robert Richter4e319022013-06-11 17:29:18 +0200231CFLAGS += -I$(LIB_INCLUDE)
Jiri Olsa7c537462013-05-24 14:35:23 +0200232
Jiri Olsa2fe73742013-04-15 04:32:28 +0200233CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
Jiri Olsa362493f2013-03-25 00:40:48 +0100234
Jiri Olsa4e22db42013-05-24 14:35:24 +0200235ifndef NO_BIONIC
Ingo Molnar78e9d652013-09-30 14:11:46 +0200236 $(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
Jiri Olsa362493f2013-03-25 00:40:48 +0100242endif
Jiri Olsacf4cca12013-03-25 00:45:08 +0100243
244ifdef NO_LIBELF
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200245 NO_DWARF := 1
246 NO_DEMANGLE := 1
247 NO_LIBUNWIND := 1
Jiri Olsacf4cca12013-03-25 00:45:08 +0100248else
Ingo Molnar8f7f8002013-09-30 14:20:25 +0200249 ifeq ($(feature-libelf), 0)
Ingo Molnare12762c2013-10-07 10:34:20 +0200250 ifeq ($(feature-glibc), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200251 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);
Jiri Olsacf4cca12013-03-25 00:45:08 +0100258
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200259 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
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200265 else
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200266 # 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
Jiri Olsacf4cca12013-03-25 00:45:08 +0100272
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200273 ifneq ($(feature-dwarf), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200274 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
Ingo Molnar0648f832013-10-02 15:30:35 +0200277 endif # libelf support
Jiri Olsacf4cca12013-03-25 00:45:08 +0100278endif # NO_LIBELF
279
280ifndef NO_LIBELF
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200281 CFLAGS += -DHAVE_LIBELF_SUPPORT
Jiri Olsa779724f2013-03-25 00:48:14 +0100282
Ingo Molnar8869b172013-09-30 15:02:28 +0200283 ifeq ($(feature-libelf-mmap), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200284 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
285 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100286
Ingo Molnarb7bcef62013-09-30 14:35:27 +0200287 ifeq ($(feature-libelf-getphdrnum), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200288 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
289 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100290
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200291 # include ARCH specific config
292 -include $(src-perf)/arch/$(ARCH)/Makefile
293
294 ifndef NO_DWARF
295 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
296 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
297 NO_DWARF := 1
298 else
299 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
300 LDFLAGS += $(LIBDW_LDFLAGS)
301 EXTLIBS += -lelf -ldw
302 endif # PERF_HAVE_DWARF_REGS
303 endif # NO_DWARF
Jiri Olsacf4cca12013-03-25 00:45:08 +0100304endif # NO_LIBELF
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100305
306# There's only x86 (both 32 and 64) support for CFI unwind so far
307ifneq ($(ARCH),x86)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200308 NO_LIBUNWIND := 1
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100309endif
310
311ifndef NO_LIBUNWIND
Ingo Molnar058f9522013-09-30 14:45:44 +0200312 #
313 # For linking with debug library, run like:
314 #
315 # make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
316 #
Ingo Molnar308e1e72013-10-07 10:30:47 +0200317 ifdef LIBUNWIND_DIR
318 LIBUNWIND_CFLAGS := -I$(LIBUNWIND_DIR)/include
319 LIBUNWIND_LDFLAGS := -L$(LIBUNWIND_DIR)/lib
320 endif
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100321
Ingo Molnar058f9522013-09-30 14:45:44 +0200322 ifneq ($(feature-libunwind), 1)
Ingo Molnar308e1e72013-10-07 10:30:47 +0200323 msg := $(warning No libunwind found, disabling post unwind support. Please install libunwind-dev[el] >= 0.99);
324 NO_LIBUNWIND := 1
325 endif
326endif
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100327
328ifndef NO_LIBUNWIND
Ingo Molnar89fe8082013-09-30 12:07:11 +0200329 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200330 EXTLIBS += $(LIBUNWIND_LIBS)
331 CFLAGS += $(LIBUNWIND_CFLAGS)
332 LDFLAGS += $(LIBUNWIND_LDFLAGS)
Ingo Molnar058f9522013-09-30 14:45:44 +0200333endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100334
335ifndef NO_LIBAUDIT
Ingo Molnard795a652013-09-30 14:55:31 +0200336 ifneq ($(feature-libaudit), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200337 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
338 NO_LIBAUDIT := 1
339 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200340 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200341 EXTLIBS += -laudit
342 endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100343endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100344
345ifdef NO_NEWT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200346 NO_SLANG=1
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100347endif
348
349ifndef NO_SLANG
Ingo Molnarb9498b52013-09-30 14:57:54 +0200350 ifneq ($(feature-libslang), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200351 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
352 NO_SLANG := 1
353 else
354 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
355 CFLAGS += -I/usr/include/slang
Ingo Molnar89fe8082013-09-30 12:07:11 +0200356 CFLAGS += -DHAVE_SLANG_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200357 EXTLIBS += -lslang
358 endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100359endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100360
361ifndef NO_GTK2
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200362 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell pkg-config --libs --cflags gtk+-2.0 2>/dev/null)
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200363 ifneq ($(feature-gtk2), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200364 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
365 NO_GTK2 := 1
366 else
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200367 ifeq ($(feature-gtk2-infobar), 1)
Namhyung Kimfc672972013-09-13 15:27:43 +0900368 GTK_CFLAGS := -DHAVE_GTK_INFO_BAR_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200369 endif
Ingo Molnar89fe8082013-09-30 12:07:11 +0200370 CFLAGS += -DHAVE_GTK2_SUPPORT
Namhyung Kimfc672972013-09-13 15:27:43 +0900371 GTK_CFLAGS += $(shell pkg-config --cflags gtk+-2.0 2>/dev/null)
372 GTK_LIBS := $(shell pkg-config --libs gtk+-2.0 2>/dev/null)
Jiri Olsae2137082013-09-26 20:55:54 +0200373 EXTLIBS += -ldl
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200374 endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100375endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100376
377grep-libs = $(filter -l%,$(1))
378strip-libs = $(filter-out -l%,$(1))
379
380ifdef NO_LIBPERL
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200381 CFLAGS += -DNO_LIBPERL
Jiri Olsa3082cb32013-03-18 00:19:44 +0100382else
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200383 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
384 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
385 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
386 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
387 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
Jiri Olsa3082cb32013-03-18 00:19:44 +0100388
Ingo Molnar7181a672013-09-30 15:15:36 +0200389 ifneq ($(feature-libperl), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200390 CFLAGS += -DNO_LIBPERL
391 NO_LIBPERL := 1
392 else
393 LDFLAGS += $(PERL_EMBED_LDFLAGS)
394 EXTLIBS += $(PERL_EMBED_LIBADD)
395 endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100396endif
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100397
398disable-python = $(eval $(disable-python_code))
399define disable-python_code
Jiri Olsa9c12cf92013-03-21 11:30:54 +0100400 CFLAGS += -DNO_LIBPYTHON
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100401 $(if $(1),$(warning No $(1) was found))
402 $(warning Python support will not be built)
403 NO_LIBPYTHON := 1
404endef
405
406override PYTHON := \
407 $(call get-executable-or-default,PYTHON,python)
408
409ifndef PYTHON
410 $(call disable-python,python interpreter)
411else
412
413 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
414
415 ifdef NO_LIBPYTHON
416 $(call disable-python)
417 else
418
419 override PYTHON_CONFIG := \
420 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON)-config)
421
422 ifndef PYTHON_CONFIG
423 $(call disable-python,python-config tool)
424 else
425
426 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
427
428 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
429 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
430 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
431 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
432 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
433
Ingo Molnar97341632013-09-30 15:18:37 +0200434 ifneq ($(feature-libpython), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100435 $(call disable-python,Python.h (for Python 2.x))
436 else
437
Ingo Molnar95d061c2013-09-30 15:40:04 +0200438 ifneq ($(feature-libpython-version), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100439 $(warning Python 3 is not yet supported; please set)
440 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
441 $(warning If you also have Python 2 installed, then)
442 $(warning try something like:)
443 $(warning $(and ,))
444 $(warning $(and ,) make PYTHON=python2)
445 $(warning $(and ,))
446 $(warning Otherwise, disable Python support entirely:)
447 $(warning $(and ,))
448 $(warning $(and ,) make NO_LIBPYTHON=1)
449 $(warning $(and ,))
450 $(error $(and ,))
451 else
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100452 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100453 EXTLIBS += $(PYTHON_EMBED_LIBADD)
Jiri Olsa7c537462013-05-24 14:35:23 +0200454 LANG_BINDINGS += $(obj-perf)python/perf.so
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100455 endif
456 endif
457 endif
458 endif
459endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100460
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200461ifeq ($(feature-libbfd), 1)
462 EXTLIBS += -lbfd
463endif
464
Jiri Olsac3cf8362013-03-18 00:38:16 +0100465ifdef NO_DEMANGLE
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200466 CFLAGS += -DNO_DEMANGLE
Jiri Olsac3cf8362013-03-18 00:38:16 +0100467else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200468 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200469 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200470 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200471 else
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200472 ifneq ($(feature-libbfd), 1)
Ingo Molnar1c476612013-10-02 15:15:09 +0200473 $(feature_check,liberty)
474 ifeq ($(feature-liberty), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200475 EXTLIBS += -lbfd -liberty
476 else
Ingo Molnar1c476612013-10-02 15:15:09 +0200477 $(feature_check,liberty-z)
478 ifeq ($(feature-liberty-z), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200479 EXTLIBS += -lbfd -liberty -lz
480 else
Ingo Molnar1c476612013-10-02 15:15:09 +0200481 $(feature_check,cplus-demangle)
482 ifeq ($(feature-cplus-demangle), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200483 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200484 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200485 else
486 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
487 CFLAGS += -DNO_DEMANGLE
488 endif
489 endif
490 endif
491 endif
492 endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100493endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100494
Jiri Olsa3e6a1472013-10-10 22:24:00 +0200495ifneq ($(filter -lbfd,$(EXTLIBS)),)
496 CFLAGS += -DHAVE_LIBBFD_SUPPORT
497endif
498
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100499ifndef NO_ON_EXIT
Ingo Molnar34ef2162013-09-30 16:46:49 +0200500 ifeq ($(feature-on-exit), 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200501 CFLAGS += -DHAVE_ON_EXIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200502 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100503endif
504
505ifndef NO_BACKTRACE
Ingo Molnar4cc91172013-09-30 16:49:38 +0200506 ifeq ($(feature-backtrace), 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200507 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200508 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100509endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100510
511ifndef NO_LIBNUMA
Ingo Molnar3ae069c2013-09-30 13:37:10 +0200512 ifeq ($(feature-libnuma), 0)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200513 msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numa-libs-devel or libnuma-dev);
514 NO_LIBNUMA := 1
515 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200516 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200517 EXTLIBS += -lnuma
518 endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100519endif
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100520
521# Among the variables below, these:
522# perfexecdir
523# template_dir
524# mandir
525# infodir
526# htmldir
527# ETC_PERFCONFIG (but not sysconfdir)
528# can be specified as a relative path some/where/else;
529# this is interpreted as relative to $(prefix) and "perf" at
530# runtime figures out where they are based on the path to the executable.
531# This can help installing the suite in a relocatable way.
532
533# Make the path relative to DESTDIR, not to prefix
534ifndef DESTDIR
535prefix = $(HOME)
536endif
537bindir_relative = bin
538bindir = $(prefix)/$(bindir_relative)
539mandir = share/man
540infodir = share/info
541perfexecdir = libexec/perf-core
542sharedir = $(prefix)/share
543template_dir = share/perf-core/templates
544htmldir = share/doc/perf-doc
545ifeq ($(prefix),/usr)
546sysconfdir = /etc
547ETC_PERFCONFIG = $(sysconfdir)/perfconfig
548else
549sysconfdir = $(prefix)/etc
550ETC_PERFCONFIG = etc/perfconfig
551endif
Namhyung Kimfc672972013-09-13 15:27:43 +0900552ifeq ($(IS_X86_64),1)
553lib = lib64
554else
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100555lib = lib
Namhyung Kimfc672972013-09-13 15:27:43 +0900556endif
557libdir = $(prefix)/$(lib)
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100558
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))
Namhyung Kimfc672972013-09-13 15:27:43 +0900570libdir_SQ = $(subst ','\'',$(libdir))
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100571
572ifneq ($(filter /%,$(firstword $(perfexecdir))),)
573perfexec_instdir = $(perfexecdir)
574else
575perfexec_instdir = $(prefix)/$(perfexecdir)
576endif
577perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))