blob: 3d3d435b41fa3b0d104b929cd70f6d6d985b7eb0 [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 Molnar3ae069c2013-09-30 13:37:10 +0200121 libnuma
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200122
123$(foreach test,$(FEATURE_TESTS),$(call feature_check,$(test),$(test)))
124
Ingo Molnar90ac5422013-09-30 13:48:44 +0200125ifeq ($(feature-stackprotector-all), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200126 CFLAGS += -fstack-protector-all
Jiri Olsa362493f2013-03-25 00:40:48 +0100127endif
128
Ingo Molnar430be5a2013-10-07 09:47:00 +0200129ifeq ($(feature-stackprotector), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200130 CFLAGS += -Wstack-protector
Jiri Olsa362493f2013-03-25 00:40:48 +0100131endif
132
Ingo Molnarc2510442013-09-30 13:58:12 +0200133ifeq ($(feature-volatile-register-var), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200134 CFLAGS += -Wvolatile-register-var
Jiri Olsa362493f2013-03-25 00:40:48 +0100135endif
136
137ifndef PERF_DEBUG
Ingo Molnar1ea6f992013-10-07 09:38:28 +0200138 ifeq ($(feature-fortify-source), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200139 CFLAGS += -D_FORTIFY_SOURCE=2
140 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100141endif
142
Jiri Olsa2fe73742013-04-15 04:32:28 +0200143CFLAGS += -I$(src-perf)/util/include
144CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
145CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
146CFLAGS += -I$(srctree)/arch/$(ARCH)/include
147CFLAGS += -I$(srctree)/include/uapi
148CFLAGS += -I$(srctree)/include
Jiri Olsa7c537462013-05-24 14:35:23 +0200149
150# $(obj-perf) for generated common-cmds.h
151# $(obj-perf)/util for generated bison/flex headers
152ifneq ($(OUTPUT),)
Jiri Olsa2fe73742013-04-15 04:32:28 +0200153CFLAGS += -I$(obj-perf)/util
154CFLAGS += -I$(obj-perf)
Jiri Olsa7c537462013-05-24 14:35:23 +0200155endif
156
Jiri Olsa2fe73742013-04-15 04:32:28 +0200157CFLAGS += -I$(src-perf)/util
158CFLAGS += -I$(src-perf)
Robert Richter4e319022013-06-11 17:29:18 +0200159CFLAGS += -I$(LIB_INCLUDE)
Jiri Olsa7c537462013-05-24 14:35:23 +0200160
Jiri Olsa2fe73742013-04-15 04:32:28 +0200161CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
Jiri Olsa362493f2013-03-25 00:40:48 +0100162
Jiri Olsa4e22db42013-05-24 14:35:24 +0200163ifndef NO_BIONIC
Ingo Molnar78e9d652013-09-30 14:11:46 +0200164 $(feature_check,bionic)
165 ifeq ($(feature-bionic), 1)
166 BIONIC := 1
167 EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
168 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
169 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100170endif
Jiri Olsacf4cca12013-03-25 00:45:08 +0100171
172ifdef NO_LIBELF
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200173 NO_DWARF := 1
174 NO_DEMANGLE := 1
175 NO_LIBUNWIND := 1
Jiri Olsacf4cca12013-03-25 00:45:08 +0100176else
Ingo Molnar8f7f8002013-09-30 14:20:25 +0200177 ifeq ($(feature-libelf), 0)
Ingo Molnare12762c2013-10-07 10:34:20 +0200178 ifeq ($(feature-glibc), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200179 LIBC_SUPPORT := 1
180 endif
181 ifeq ($(BIONIC),1)
182 LIBC_SUPPORT := 1
183 endif
184 ifeq ($(LIBC_SUPPORT),1)
185 msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libelf-dev);
Jiri Olsacf4cca12013-03-25 00:45:08 +0100186
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200187 NO_LIBELF := 1
188 NO_DWARF := 1
189 NO_DEMANGLE := 1
190 else
191 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]/glibc-static);
192 endif
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200193 else
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200194 # for linking with debug library, run like:
195 # make DEBUG=1 LIBDW_DIR=/opt/libdw/
196 ifdef LIBDW_DIR
197 LIBDW_CFLAGS := -I$(LIBDW_DIR)/include
198 LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib
199 endif
Jiri Olsacf4cca12013-03-25 00:45:08 +0100200
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200201 ifneq ($(feature-dwarf), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200202 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);
203 NO_DWARF := 1
204 endif # Dwarf support
205 endif # SOURCE_LIBELF
Jiri Olsacf4cca12013-03-25 00:45:08 +0100206endif # NO_LIBELF
207
208ifndef NO_LIBELF
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200209 CFLAGS += -DHAVE_LIBELF_SUPPORT
210 FLAGS_LIBELF=$(CFLAGS) $(LDFLAGS) $(EXTLIBS)
Jiri Olsa779724f2013-03-25 00:48:14 +0100211
Ingo Molnar8869b172013-09-30 15:02:28 +0200212 ifeq ($(feature-libelf-mmap), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200213 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
214 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100215
Ingo Molnarb7bcef62013-09-30 14:35:27 +0200216 ifeq ($(feature-libelf-getphdrnum), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200217 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
218 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100219
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200220 # include ARCH specific config
221 -include $(src-perf)/arch/$(ARCH)/Makefile
222
223 ifndef NO_DWARF
224 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
225 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
226 NO_DWARF := 1
227 else
228 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
229 LDFLAGS += $(LIBDW_LDFLAGS)
230 EXTLIBS += -lelf -ldw
231 endif # PERF_HAVE_DWARF_REGS
232 endif # NO_DWARF
Jiri Olsacf4cca12013-03-25 00:45:08 +0100233endif # NO_LIBELF
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100234
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100235ifndef NO_LIBELF
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200236 CFLAGS += -DHAVE_LIBELF_SUPPORT
Ingo Molnar8869b172013-09-30 15:02:28 +0200237 ifeq ($(feature-libelf-mmap), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200238 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
Ingo Molnarb7bcef62013-09-30 14:35:27 +0200239 endif
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100240endif # NO_LIBELF
241
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100242# There's only x86 (both 32 and 64) support for CFI unwind so far
243ifneq ($(ARCH),x86)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200244 NO_LIBUNWIND := 1
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100245endif
246
247ifndef NO_LIBUNWIND
Ingo Molnar058f9522013-09-30 14:45:44 +0200248 #
249 # For linking with debug library, run like:
250 #
251 # make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
252 #
Ingo Molnar308e1e72013-10-07 10:30:47 +0200253 ifdef LIBUNWIND_DIR
254 LIBUNWIND_CFLAGS := -I$(LIBUNWIND_DIR)/include
255 LIBUNWIND_LDFLAGS := -L$(LIBUNWIND_DIR)/lib
256 endif
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100257
Ingo Molnar058f9522013-09-30 14:45:44 +0200258 ifneq ($(feature-libunwind), 1)
Ingo Molnar308e1e72013-10-07 10:30:47 +0200259 msg := $(warning No libunwind found, disabling post unwind support. Please install libunwind-dev[el] >= 0.99);
260 NO_LIBUNWIND := 1
261 endif
262endif
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100263
264ifndef NO_LIBUNWIND
Ingo Molnar89fe8082013-09-30 12:07:11 +0200265 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200266 EXTLIBS += $(LIBUNWIND_LIBS)
267 CFLAGS += $(LIBUNWIND_CFLAGS)
268 LDFLAGS += $(LIBUNWIND_LDFLAGS)
Ingo Molnar058f9522013-09-30 14:45:44 +0200269endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100270
271ifndef NO_LIBAUDIT
Ingo Molnard795a652013-09-30 14:55:31 +0200272 ifneq ($(feature-libaudit), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200273 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
274 NO_LIBAUDIT := 1
275 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200276 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200277 EXTLIBS += -laudit
278 endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100279endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100280
281ifdef NO_NEWT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200282 NO_SLANG=1
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100283endif
284
285ifndef NO_SLANG
Ingo Molnarb9498b52013-09-30 14:57:54 +0200286 ifneq ($(feature-libslang), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200287 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
288 NO_SLANG := 1
289 else
290 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
291 CFLAGS += -I/usr/include/slang
Ingo Molnar89fe8082013-09-30 12:07:11 +0200292 CFLAGS += -DHAVE_SLANG_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200293 EXTLIBS += -lslang
294 endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100295endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100296
297ifndef NO_GTK2
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200298 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell pkg-config --libs --cflags gtk+-2.0 2>/dev/null)
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200299 ifneq ($(feature-gtk2), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200300 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
301 NO_GTK2 := 1
302 else
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200303 ifeq ($(feature-gtk2-infobar), 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200304 CFLAGS += -DHAVE_GTK_INFO_BAR_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200305 endif
Ingo Molnar89fe8082013-09-30 12:07:11 +0200306 CFLAGS += -DHAVE_GTK2_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200307 CFLAGS += $(shell pkg-config --cflags gtk+-2.0 2>/dev/null)
308 EXTLIBS += $(shell pkg-config --libs gtk+-2.0 2>/dev/null)
309 endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100310endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100311
312grep-libs = $(filter -l%,$(1))
313strip-libs = $(filter-out -l%,$(1))
314
315ifdef NO_LIBPERL
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200316 CFLAGS += -DNO_LIBPERL
Jiri Olsa3082cb32013-03-18 00:19:44 +0100317else
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200318 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
319 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
320 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
321 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
322 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
Jiri Olsa3082cb32013-03-18 00:19:44 +0100323
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200324 ifneq ($(call try-cc,$(SOURCE_PERL_EMBED),$(FLAGS_PERL_EMBED),perl),y)
325 CFLAGS += -DNO_LIBPERL
326 NO_LIBPERL := 1
327 else
328 LDFLAGS += $(PERL_EMBED_LDFLAGS)
329 EXTLIBS += $(PERL_EMBED_LIBADD)
330 endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100331endif
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100332
333disable-python = $(eval $(disable-python_code))
334define disable-python_code
Jiri Olsa9c12cf92013-03-21 11:30:54 +0100335 CFLAGS += -DNO_LIBPYTHON
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100336 $(if $(1),$(warning No $(1) was found))
337 $(warning Python support will not be built)
338 NO_LIBPYTHON := 1
339endef
340
341override PYTHON := \
342 $(call get-executable-or-default,PYTHON,python)
343
344ifndef PYTHON
345 $(call disable-python,python interpreter)
346else
347
348 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
349
350 ifdef NO_LIBPYTHON
351 $(call disable-python)
352 else
353
354 override PYTHON_CONFIG := \
355 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON)-config)
356
357 ifndef PYTHON_CONFIG
358 $(call disable-python,python-config tool)
359 else
360
361 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
362
363 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
364 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
365 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
366 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
367 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
368
369 ifneq ($(call try-cc,$(SOURCE_PYTHON_EMBED),$(FLAGS_PYTHON_EMBED),python),y)
370 $(call disable-python,Python.h (for Python 2.x))
371 else
372
373 ifneq ($(call try-cc,$(SOURCE_PYTHON_VERSION),$(FLAGS_PYTHON_EMBED),python version),y)
374 $(warning Python 3 is not yet supported; please set)
375 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
376 $(warning If you also have Python 2 installed, then)
377 $(warning try something like:)
378 $(warning $(and ,))
379 $(warning $(and ,) make PYTHON=python2)
380 $(warning $(and ,))
381 $(warning Otherwise, disable Python support entirely:)
382 $(warning $(and ,))
383 $(warning $(and ,) make NO_LIBPYTHON=1)
384 $(warning $(and ,))
385 $(error $(and ,))
386 else
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100387 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100388 EXTLIBS += $(PYTHON_EMBED_LIBADD)
Jiri Olsa7c537462013-05-24 14:35:23 +0200389 LANG_BINDINGS += $(obj-perf)python/perf.so
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100390 endif
391 endif
392 endif
393 endif
394endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100395
396ifdef NO_DEMANGLE
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200397 CFLAGS += -DNO_DEMANGLE
Jiri Olsac3cf8362013-03-18 00:38:16 +0100398else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200399 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200400 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200401 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200402 else
403 FLAGS_BFD=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -DPACKAGE='perf' -lbfd
404 has_bfd := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD),libbfd)
405 ifeq ($(has_bfd),y)
406 EXTLIBS += -lbfd
407 else
408 FLAGS_BFD_IBERTY=$(FLAGS_BFD) -liberty
409 has_bfd_iberty := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD_IBERTY),liberty)
410 ifeq ($(has_bfd_iberty),y)
411 EXTLIBS += -lbfd -liberty
412 else
413 FLAGS_BFD_IBERTY_Z=$(FLAGS_BFD_IBERTY) -lz
414 has_bfd_iberty_z := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD_IBERTY_Z),libz)
415 ifeq ($(has_bfd_iberty_z),y)
416 EXTLIBS += -lbfd -liberty -lz
417 else
418 FLAGS_CPLUS_DEMANGLE=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -liberty
419 has_cplus_demangle := $(call try-cc,$(SOURCE_CPLUS_DEMANGLE),$(FLAGS_CPLUS_DEMANGLE),demangle)
420 ifeq ($(has_cplus_demangle),y)
421 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200422 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200423 else
424 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
425 CFLAGS += -DNO_DEMANGLE
426 endif
427 endif
428 endif
429 endif
430 endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100431endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100432
433ifndef NO_STRLCPY
Ingo Molnar89fe8082013-09-30 12:07:11 +0200434 ifeq ($(call try-cc,$(SOURCE_STRLCPY),,-DHAVE_STRLCPY_SUPPORT),y)
435 CFLAGS += -DHAVE_STRLCPY_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200436 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100437endif
438
439ifndef NO_ON_EXIT
Ingo Molnar89fe8082013-09-30 12:07:11 +0200440 ifeq ($(call try-cc,$(SOURCE_ON_EXIT),,-DHAVE_ON_EXIT_SUPPORT),y)
441 CFLAGS += -DHAVE_ON_EXIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200442 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100443endif
444
445ifndef NO_BACKTRACE
Ingo Molnar89fe8082013-09-30 12:07:11 +0200446 ifeq ($(call try-cc,$(SOURCE_BACKTRACE),,-DHAVE_BACKTRACE_SUPPORT),y)
447 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200448 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100449endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100450
451ifndef NO_LIBNUMA
Ingo Molnar3ae069c2013-09-30 13:37:10 +0200452 ifeq ($(feature-libnuma), 0)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200453 msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numa-libs-devel or libnuma-dev);
454 NO_LIBNUMA := 1
455 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200456 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200457 EXTLIBS += -lnuma
458 endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100459endif
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100460
461# Among the variables below, these:
462# perfexecdir
463# template_dir
464# mandir
465# infodir
466# htmldir
467# ETC_PERFCONFIG (but not sysconfdir)
468# can be specified as a relative path some/where/else;
469# this is interpreted as relative to $(prefix) and "perf" at
470# runtime figures out where they are based on the path to the executable.
471# This can help installing the suite in a relocatable way.
472
473# Make the path relative to DESTDIR, not to prefix
474ifndef DESTDIR
475prefix = $(HOME)
476endif
477bindir_relative = bin
478bindir = $(prefix)/$(bindir_relative)
479mandir = share/man
480infodir = share/info
481perfexecdir = libexec/perf-core
482sharedir = $(prefix)/share
483template_dir = share/perf-core/templates
484htmldir = share/doc/perf-doc
485ifeq ($(prefix),/usr)
486sysconfdir = /etc
487ETC_PERFCONFIG = $(sysconfdir)/perfconfig
488else
489sysconfdir = $(prefix)/etc
490ETC_PERFCONFIG = etc/perfconfig
491endif
492lib = lib
493
494# Shell quote (do not use $(call) to accommodate ancient setups);
495ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
496DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
497bindir_SQ = $(subst ','\'',$(bindir))
498mandir_SQ = $(subst ','\'',$(mandir))
499infodir_SQ = $(subst ','\'',$(infodir))
500perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
501template_dir_SQ = $(subst ','\'',$(template_dir))
502htmldir_SQ = $(subst ','\'',$(htmldir))
503prefix_SQ = $(subst ','\'',$(prefix))
504sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
505
506ifneq ($(filter /%,$(firstword $(perfexecdir))),)
507perfexec_instdir = $(perfexecdir)
508else
509perfexec_instdir = $(prefix)/$(perfexecdir)
510endif
511perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))