blob: 595c0e0dd139368f678913a1b325ba61551159d5 [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
54include $(src-perf)/config/feature-tests.mak
55include $(src-perf)/config/utilities.mak
Jiri Olsaa32f4932013-03-25 00:32:01 +010056
57ifeq ($(call get-executable,$(FLEX)),)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020058 dummy := $(error Error: $(FLEX) is missing on this system, please install it)
Jiri Olsaa32f4932013-03-25 00:32:01 +010059endif
60
61ifeq ($(call get-executable,$(BISON)),)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020062 dummy := $(error Error: $(BISON) is missing on this system, please install it)
Jiri Olsaa32f4932013-03-25 00:32:01 +010063endif
Jiri Olsa362493f2013-03-25 00:40:48 +010064
65# Treat warnings as errors unless directed not to
66ifneq ($(WERROR),0)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020067 CFLAGS += -Werror
Jiri Olsa362493f2013-03-25 00:40:48 +010068endif
69
70ifeq ("$(origin DEBUG)", "command line")
Jiri Olsa8e1b3f62013-04-15 04:06:58 +020071 PERF_DEBUG = $(DEBUG)
Jiri Olsa362493f2013-03-25 00:40:48 +010072endif
73ifndef PERF_DEBUG
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 Molnarb6aa9972013-09-30 10:08:24 +020092feature_check = $(eval $(feature_check_code)); $(info CHK: config/feature-checks/test-$(1))
93define feature_check_code
94 feature-$(2) := $(shell make -C config/feature-checks test-$1 >/dev/null 2>/dev/null && echo 1 || echo 0)
95endef
96
97#
98# Build the feature check binaries in parallel, ignore errors, ignore return value and suppress output:
99#
100$(info Testing features:)
101$(shell make -i -j -C config/feature-checks >/dev/null 2>&1)
102$(info done)
103
Ingo Molnar3ae069c2013-09-30 13:37:10 +0200104FEATURE_TESTS = \
105 hello \
Ingo Molnar90ac5422013-09-30 13:48:44 +0200106 stackprotector-all \
Ingo Molnar430be5a2013-10-07 09:47:00 +0200107 stackprotector \
Ingo Molnarc2510442013-09-30 13:58:12 +0200108 volatile-register-var \
Ingo Molnar1ea6f992013-10-07 09:38:28 +0200109 fortify-source \
Ingo Molnar78e9d652013-09-30 14:11:46 +0200110 bionic \
Ingo Molnar8f7f8002013-09-30 14:20:25 +0200111 libelf \
Ingo Molnare12762c2013-10-07 10:34:20 +0200112 glibc \
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200113 dwarf \
Ingo Molnar8869b172013-09-30 15:02:28 +0200114 libelf-mmap \
Ingo Molnarb7bcef62013-09-30 14:35:27 +0200115 libelf-getphdrnum \
Ingo Molnar058f9522013-09-30 14:45:44 +0200116 libunwind \
Ingo Molnard795a652013-09-30 14:55:31 +0200117 libaudit \
Ingo Molnarb9498b52013-09-30 14:57:54 +0200118 libslang \
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200119 gtk2 \
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200120 gtk2-infobar \
Ingo Molnar7181a672013-09-30 15:15:36 +0200121 libperl \
Ingo Molnar97341632013-09-30 15:18:37 +0200122 libpython \
Ingo Molnar3ae069c2013-09-30 13:37:10 +0200123 libnuma
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200124
125$(foreach test,$(FEATURE_TESTS),$(call feature_check,$(test),$(test)))
126
Ingo Molnar90ac5422013-09-30 13:48:44 +0200127ifeq ($(feature-stackprotector-all), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200128 CFLAGS += -fstack-protector-all
Jiri Olsa362493f2013-03-25 00:40:48 +0100129endif
130
Ingo Molnar430be5a2013-10-07 09:47:00 +0200131ifeq ($(feature-stackprotector), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200132 CFLAGS += -Wstack-protector
Jiri Olsa362493f2013-03-25 00:40:48 +0100133endif
134
Ingo Molnarc2510442013-09-30 13:58:12 +0200135ifeq ($(feature-volatile-register-var), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200136 CFLAGS += -Wvolatile-register-var
Jiri Olsa362493f2013-03-25 00:40:48 +0100137endif
138
139ifndef PERF_DEBUG
Ingo Molnar1ea6f992013-10-07 09:38:28 +0200140 ifeq ($(feature-fortify-source), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200141 CFLAGS += -D_FORTIFY_SOURCE=2
142 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100143endif
144
Jiri Olsa2fe73742013-04-15 04:32:28 +0200145CFLAGS += -I$(src-perf)/util/include
146CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
147CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
148CFLAGS += -I$(srctree)/arch/$(ARCH)/include
149CFLAGS += -I$(srctree)/include/uapi
150CFLAGS += -I$(srctree)/include
Jiri Olsa7c537462013-05-24 14:35:23 +0200151
152# $(obj-perf) for generated common-cmds.h
153# $(obj-perf)/util for generated bison/flex headers
154ifneq ($(OUTPUT),)
Jiri Olsa2fe73742013-04-15 04:32:28 +0200155CFLAGS += -I$(obj-perf)/util
156CFLAGS += -I$(obj-perf)
Jiri Olsa7c537462013-05-24 14:35:23 +0200157endif
158
Jiri Olsa2fe73742013-04-15 04:32:28 +0200159CFLAGS += -I$(src-perf)/util
160CFLAGS += -I$(src-perf)
Robert Richter4e319022013-06-11 17:29:18 +0200161CFLAGS += -I$(LIB_INCLUDE)
Jiri Olsa7c537462013-05-24 14:35:23 +0200162
Jiri Olsa2fe73742013-04-15 04:32:28 +0200163CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
Jiri Olsa362493f2013-03-25 00:40:48 +0100164
Jiri Olsa4e22db42013-05-24 14:35:24 +0200165ifndef NO_BIONIC
Ingo Molnar78e9d652013-09-30 14:11:46 +0200166 $(feature_check,bionic)
167 ifeq ($(feature-bionic), 1)
168 BIONIC := 1
169 EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
170 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
171 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100172endif
Jiri Olsacf4cca12013-03-25 00:45:08 +0100173
174ifdef NO_LIBELF
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200175 NO_DWARF := 1
176 NO_DEMANGLE := 1
177 NO_LIBUNWIND := 1
Jiri Olsacf4cca12013-03-25 00:45:08 +0100178else
Ingo Molnar8f7f8002013-09-30 14:20:25 +0200179 ifeq ($(feature-libelf), 0)
Ingo Molnare12762c2013-10-07 10:34:20 +0200180 ifeq ($(feature-glibc), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200181 LIBC_SUPPORT := 1
182 endif
183 ifeq ($(BIONIC),1)
184 LIBC_SUPPORT := 1
185 endif
186 ifeq ($(LIBC_SUPPORT),1)
187 msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libelf-dev);
Jiri Olsacf4cca12013-03-25 00:45:08 +0100188
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200189 NO_LIBELF := 1
190 NO_DWARF := 1
191 NO_DEMANGLE := 1
192 else
193 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]/glibc-static);
194 endif
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200195 else
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200196 # for linking with debug library, run like:
197 # make DEBUG=1 LIBDW_DIR=/opt/libdw/
198 ifdef LIBDW_DIR
199 LIBDW_CFLAGS := -I$(LIBDW_DIR)/include
200 LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib
201 endif
Jiri Olsacf4cca12013-03-25 00:45:08 +0100202
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200203 ifneq ($(feature-dwarf), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200204 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);
205 NO_DWARF := 1
206 endif # Dwarf support
207 endif # SOURCE_LIBELF
Jiri Olsacf4cca12013-03-25 00:45:08 +0100208endif # NO_LIBELF
209
210ifndef NO_LIBELF
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200211 CFLAGS += -DHAVE_LIBELF_SUPPORT
212 FLAGS_LIBELF=$(CFLAGS) $(LDFLAGS) $(EXTLIBS)
Jiri Olsa779724f2013-03-25 00:48:14 +0100213
Ingo Molnar8869b172013-09-30 15:02:28 +0200214 ifeq ($(feature-libelf-mmap), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200215 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
216 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100217
Ingo Molnarb7bcef62013-09-30 14:35:27 +0200218 ifeq ($(feature-libelf-getphdrnum), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200219 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
220 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100221
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200222 # include ARCH specific config
223 -include $(src-perf)/arch/$(ARCH)/Makefile
224
225 ifndef NO_DWARF
226 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
227 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
228 NO_DWARF := 1
229 else
230 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
231 LDFLAGS += $(LIBDW_LDFLAGS)
232 EXTLIBS += -lelf -ldw
233 endif # PERF_HAVE_DWARF_REGS
234 endif # NO_DWARF
Jiri Olsacf4cca12013-03-25 00:45:08 +0100235endif # NO_LIBELF
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100236
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100237ifndef NO_LIBELF
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200238 CFLAGS += -DHAVE_LIBELF_SUPPORT
Ingo Molnar8869b172013-09-30 15:02:28 +0200239 ifeq ($(feature-libelf-mmap), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200240 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
Ingo Molnarb7bcef62013-09-30 14:35:27 +0200241 endif
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100242endif # NO_LIBELF
243
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100244# There's only x86 (both 32 and 64) support for CFI unwind so far
245ifneq ($(ARCH),x86)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200246 NO_LIBUNWIND := 1
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100247endif
248
249ifndef NO_LIBUNWIND
Ingo Molnar058f9522013-09-30 14:45:44 +0200250 #
251 # For linking with debug library, run like:
252 #
253 # make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
254 #
Ingo Molnar308e1e72013-10-07 10:30:47 +0200255 ifdef LIBUNWIND_DIR
256 LIBUNWIND_CFLAGS := -I$(LIBUNWIND_DIR)/include
257 LIBUNWIND_LDFLAGS := -L$(LIBUNWIND_DIR)/lib
258 endif
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100259
Ingo Molnar058f9522013-09-30 14:45:44 +0200260 ifneq ($(feature-libunwind), 1)
Ingo Molnar308e1e72013-10-07 10:30:47 +0200261 msg := $(warning No libunwind found, disabling post unwind support. Please install libunwind-dev[el] >= 0.99);
262 NO_LIBUNWIND := 1
263 endif
264endif
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100265
266ifndef NO_LIBUNWIND
Ingo Molnar89fe8082013-09-30 12:07:11 +0200267 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200268 EXTLIBS += $(LIBUNWIND_LIBS)
269 CFLAGS += $(LIBUNWIND_CFLAGS)
270 LDFLAGS += $(LIBUNWIND_LDFLAGS)
Ingo Molnar058f9522013-09-30 14:45:44 +0200271endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100272
273ifndef NO_LIBAUDIT
Ingo Molnard795a652013-09-30 14:55:31 +0200274 ifneq ($(feature-libaudit), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200275 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
276 NO_LIBAUDIT := 1
277 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200278 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200279 EXTLIBS += -laudit
280 endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100281endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100282
283ifdef NO_NEWT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200284 NO_SLANG=1
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100285endif
286
287ifndef NO_SLANG
Ingo Molnarb9498b52013-09-30 14:57:54 +0200288 ifneq ($(feature-libslang), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200289 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
290 NO_SLANG := 1
291 else
292 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
293 CFLAGS += -I/usr/include/slang
Ingo Molnar89fe8082013-09-30 12:07:11 +0200294 CFLAGS += -DHAVE_SLANG_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200295 EXTLIBS += -lslang
296 endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100297endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100298
299ifndef NO_GTK2
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200300 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell pkg-config --libs --cflags gtk+-2.0 2>/dev/null)
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200301 ifneq ($(feature-gtk2), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200302 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
303 NO_GTK2 := 1
304 else
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200305 ifeq ($(feature-gtk2-infobar), 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200306 CFLAGS += -DHAVE_GTK_INFO_BAR_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200307 endif
Ingo Molnar89fe8082013-09-30 12:07:11 +0200308 CFLAGS += -DHAVE_GTK2_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200309 CFLAGS += $(shell pkg-config --cflags gtk+-2.0 2>/dev/null)
310 EXTLIBS += $(shell pkg-config --libs gtk+-2.0 2>/dev/null)
311 endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100312endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100313
314grep-libs = $(filter -l%,$(1))
315strip-libs = $(filter-out -l%,$(1))
316
317ifdef NO_LIBPERL
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200318 CFLAGS += -DNO_LIBPERL
Jiri Olsa3082cb32013-03-18 00:19:44 +0100319else
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200320 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
321 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
322 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
323 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
324 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
Jiri Olsa3082cb32013-03-18 00:19:44 +0100325
Ingo Molnar7181a672013-09-30 15:15:36 +0200326 ifneq ($(feature-libperl), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200327 CFLAGS += -DNO_LIBPERL
328 NO_LIBPERL := 1
329 else
330 LDFLAGS += $(PERL_EMBED_LDFLAGS)
331 EXTLIBS += $(PERL_EMBED_LIBADD)
332 endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100333endif
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100334
335disable-python = $(eval $(disable-python_code))
336define disable-python_code
Jiri Olsa9c12cf92013-03-21 11:30:54 +0100337 CFLAGS += -DNO_LIBPYTHON
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100338 $(if $(1),$(warning No $(1) was found))
339 $(warning Python support will not be built)
340 NO_LIBPYTHON := 1
341endef
342
343override PYTHON := \
344 $(call get-executable-or-default,PYTHON,python)
345
346ifndef PYTHON
347 $(call disable-python,python interpreter)
348else
349
350 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
351
352 ifdef NO_LIBPYTHON
353 $(call disable-python)
354 else
355
356 override PYTHON_CONFIG := \
357 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON)-config)
358
359 ifndef PYTHON_CONFIG
360 $(call disable-python,python-config tool)
361 else
362
363 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
364
365 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
366 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
367 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
368 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
369 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
370
Ingo Molnar97341632013-09-30 15:18:37 +0200371 ifneq ($(feature-libpython), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100372 $(call disable-python,Python.h (for Python 2.x))
373 else
374
375 ifneq ($(call try-cc,$(SOURCE_PYTHON_VERSION),$(FLAGS_PYTHON_EMBED),python version),y)
376 $(warning Python 3 is not yet supported; please set)
377 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
378 $(warning If you also have Python 2 installed, then)
379 $(warning try something like:)
380 $(warning $(and ,))
381 $(warning $(and ,) make PYTHON=python2)
382 $(warning $(and ,))
383 $(warning Otherwise, disable Python support entirely:)
384 $(warning $(and ,))
385 $(warning $(and ,) make NO_LIBPYTHON=1)
386 $(warning $(and ,))
387 $(error $(and ,))
388 else
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100389 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100390 EXTLIBS += $(PYTHON_EMBED_LIBADD)
Jiri Olsa7c537462013-05-24 14:35:23 +0200391 LANG_BINDINGS += $(obj-perf)python/perf.so
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100392 endif
393 endif
394 endif
395 endif
396endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100397
398ifdef NO_DEMANGLE
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200399 CFLAGS += -DNO_DEMANGLE
Jiri Olsac3cf8362013-03-18 00:38:16 +0100400else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200401 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200402 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200403 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200404 else
405 FLAGS_BFD=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -DPACKAGE='perf' -lbfd
406 has_bfd := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD),libbfd)
407 ifeq ($(has_bfd),y)
408 EXTLIBS += -lbfd
409 else
410 FLAGS_BFD_IBERTY=$(FLAGS_BFD) -liberty
411 has_bfd_iberty := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD_IBERTY),liberty)
412 ifeq ($(has_bfd_iberty),y)
413 EXTLIBS += -lbfd -liberty
414 else
415 FLAGS_BFD_IBERTY_Z=$(FLAGS_BFD_IBERTY) -lz
416 has_bfd_iberty_z := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD_IBERTY_Z),libz)
417 ifeq ($(has_bfd_iberty_z),y)
418 EXTLIBS += -lbfd -liberty -lz
419 else
420 FLAGS_CPLUS_DEMANGLE=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -liberty
421 has_cplus_demangle := $(call try-cc,$(SOURCE_CPLUS_DEMANGLE),$(FLAGS_CPLUS_DEMANGLE),demangle)
422 ifeq ($(has_cplus_demangle),y)
423 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200424 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200425 else
426 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
427 CFLAGS += -DNO_DEMANGLE
428 endif
429 endif
430 endif
431 endif
432 endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100433endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100434
435ifndef NO_STRLCPY
Ingo Molnar89fe8082013-09-30 12:07:11 +0200436 ifeq ($(call try-cc,$(SOURCE_STRLCPY),,-DHAVE_STRLCPY_SUPPORT),y)
437 CFLAGS += -DHAVE_STRLCPY_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200438 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100439endif
440
441ifndef NO_ON_EXIT
Ingo Molnar89fe8082013-09-30 12:07:11 +0200442 ifeq ($(call try-cc,$(SOURCE_ON_EXIT),,-DHAVE_ON_EXIT_SUPPORT),y)
443 CFLAGS += -DHAVE_ON_EXIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200444 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100445endif
446
447ifndef NO_BACKTRACE
Ingo Molnar89fe8082013-09-30 12:07:11 +0200448 ifeq ($(call try-cc,$(SOURCE_BACKTRACE),,-DHAVE_BACKTRACE_SUPPORT),y)
449 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200450 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100451endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100452
453ifndef NO_LIBNUMA
Ingo Molnar3ae069c2013-09-30 13:37:10 +0200454 ifeq ($(feature-libnuma), 0)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200455 msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numa-libs-devel or libnuma-dev);
456 NO_LIBNUMA := 1
457 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200458 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200459 EXTLIBS += -lnuma
460 endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100461endif
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100462
463# Among the variables below, these:
464# perfexecdir
465# template_dir
466# mandir
467# infodir
468# htmldir
469# ETC_PERFCONFIG (but not sysconfdir)
470# can be specified as a relative path some/where/else;
471# this is interpreted as relative to $(prefix) and "perf" at
472# runtime figures out where they are based on the path to the executable.
473# This can help installing the suite in a relocatable way.
474
475# Make the path relative to DESTDIR, not to prefix
476ifndef DESTDIR
477prefix = $(HOME)
478endif
479bindir_relative = bin
480bindir = $(prefix)/$(bindir_relative)
481mandir = share/man
482infodir = share/info
483perfexecdir = libexec/perf-core
484sharedir = $(prefix)/share
485template_dir = share/perf-core/templates
486htmldir = share/doc/perf-doc
487ifeq ($(prefix),/usr)
488sysconfdir = /etc
489ETC_PERFCONFIG = $(sysconfdir)/perfconfig
490else
491sysconfdir = $(prefix)/etc
492ETC_PERFCONFIG = etc/perfconfig
493endif
494lib = lib
495
496# Shell quote (do not use $(call) to accommodate ancient setups);
497ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
498DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
499bindir_SQ = $(subst ','\'',$(bindir))
500mandir_SQ = $(subst ','\'',$(mandir))
501infodir_SQ = $(subst ','\'',$(infodir))
502perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
503template_dir_SQ = $(subst ','\'',$(template_dir))
504htmldir_SQ = $(subst ','\'',$(htmldir))
505prefix_SQ = $(subst ','\'',$(prefix))
506sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
507
508ifneq ($(filter /%,$(firstword $(perfexecdir))),)
509perfexec_instdir = $(perfexecdir)
510else
511perfexec_instdir = $(prefix)/$(perfexecdir)
512endif
513perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))