blob: 44affb5477c5e36958742bf40e20d3fc0d3c7d06 [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 Molnar95d061c2013-09-30 15:40:04 +0200123 libpython-version \
Ingo Molnard0707c92013-10-08 10:10:45 +0200124 strlcpy \
Ingo Molnar3b7646e2013-09-30 15:53:31 +0200125 libbfd \
Ingo Molnar34ef2162013-09-30 16:46:49 +0200126 on-exit \
Ingo Molnar3ae069c2013-09-30 13:37:10 +0200127 libnuma
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200128
129$(foreach test,$(FEATURE_TESTS),$(call feature_check,$(test),$(test)))
130
Ingo Molnar90ac5422013-09-30 13:48:44 +0200131ifeq ($(feature-stackprotector-all), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200132 CFLAGS += -fstack-protector-all
Jiri Olsa362493f2013-03-25 00:40:48 +0100133endif
134
Ingo Molnar430be5a2013-10-07 09:47:00 +0200135ifeq ($(feature-stackprotector), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200136 CFLAGS += -Wstack-protector
Jiri Olsa362493f2013-03-25 00:40:48 +0100137endif
138
Ingo Molnarc2510442013-09-30 13:58:12 +0200139ifeq ($(feature-volatile-register-var), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200140 CFLAGS += -Wvolatile-register-var
Jiri Olsa362493f2013-03-25 00:40:48 +0100141endif
142
143ifndef PERF_DEBUG
Ingo Molnar1ea6f992013-10-07 09:38:28 +0200144 ifeq ($(feature-fortify-source), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200145 CFLAGS += -D_FORTIFY_SOURCE=2
146 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100147endif
148
Jiri Olsa2fe73742013-04-15 04:32:28 +0200149CFLAGS += -I$(src-perf)/util/include
150CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
151CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
152CFLAGS += -I$(srctree)/arch/$(ARCH)/include
153CFLAGS += -I$(srctree)/include/uapi
154CFLAGS += -I$(srctree)/include
Jiri Olsa7c537462013-05-24 14:35:23 +0200155
156# $(obj-perf) for generated common-cmds.h
157# $(obj-perf)/util for generated bison/flex headers
158ifneq ($(OUTPUT),)
Jiri Olsa2fe73742013-04-15 04:32:28 +0200159CFLAGS += -I$(obj-perf)/util
160CFLAGS += -I$(obj-perf)
Jiri Olsa7c537462013-05-24 14:35:23 +0200161endif
162
Jiri Olsa2fe73742013-04-15 04:32:28 +0200163CFLAGS += -I$(src-perf)/util
164CFLAGS += -I$(src-perf)
Robert Richter4e319022013-06-11 17:29:18 +0200165CFLAGS += -I$(LIB_INCLUDE)
Jiri Olsa7c537462013-05-24 14:35:23 +0200166
Jiri Olsa2fe73742013-04-15 04:32:28 +0200167CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
Jiri Olsa362493f2013-03-25 00:40:48 +0100168
Jiri Olsa4e22db42013-05-24 14:35:24 +0200169ifndef NO_BIONIC
Ingo Molnar78e9d652013-09-30 14:11:46 +0200170 $(feature_check,bionic)
171 ifeq ($(feature-bionic), 1)
172 BIONIC := 1
173 EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
174 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
175 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100176endif
Jiri Olsacf4cca12013-03-25 00:45:08 +0100177
178ifdef NO_LIBELF
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200179 NO_DWARF := 1
180 NO_DEMANGLE := 1
181 NO_LIBUNWIND := 1
Jiri Olsacf4cca12013-03-25 00:45:08 +0100182else
Ingo Molnar8f7f8002013-09-30 14:20:25 +0200183 ifeq ($(feature-libelf), 0)
Ingo Molnare12762c2013-10-07 10:34:20 +0200184 ifeq ($(feature-glibc), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200185 LIBC_SUPPORT := 1
186 endif
187 ifeq ($(BIONIC),1)
188 LIBC_SUPPORT := 1
189 endif
190 ifeq ($(LIBC_SUPPORT),1)
191 msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libelf-dev);
Jiri Olsacf4cca12013-03-25 00:45:08 +0100192
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200193 NO_LIBELF := 1
194 NO_DWARF := 1
195 NO_DEMANGLE := 1
196 else
197 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]/glibc-static);
198 endif
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200199 else
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200200 # for linking with debug library, run like:
201 # make DEBUG=1 LIBDW_DIR=/opt/libdw/
202 ifdef LIBDW_DIR
203 LIBDW_CFLAGS := -I$(LIBDW_DIR)/include
204 LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib
205 endif
Jiri Olsacf4cca12013-03-25 00:45:08 +0100206
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200207 ifneq ($(feature-dwarf), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200208 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);
209 NO_DWARF := 1
210 endif # Dwarf support
211 endif # SOURCE_LIBELF
Jiri Olsacf4cca12013-03-25 00:45:08 +0100212endif # NO_LIBELF
213
214ifndef NO_LIBELF
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200215 CFLAGS += -DHAVE_LIBELF_SUPPORT
216 FLAGS_LIBELF=$(CFLAGS) $(LDFLAGS) $(EXTLIBS)
Jiri Olsa779724f2013-03-25 00:48:14 +0100217
Ingo Molnar8869b172013-09-30 15:02:28 +0200218 ifeq ($(feature-libelf-mmap), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200219 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
220 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100221
Ingo Molnarb7bcef62013-09-30 14:35:27 +0200222 ifeq ($(feature-libelf-getphdrnum), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200223 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
224 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100225
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200226 # include ARCH specific config
227 -include $(src-perf)/arch/$(ARCH)/Makefile
228
229 ifndef NO_DWARF
230 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
231 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
232 NO_DWARF := 1
233 else
234 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
235 LDFLAGS += $(LIBDW_LDFLAGS)
236 EXTLIBS += -lelf -ldw
237 endif # PERF_HAVE_DWARF_REGS
238 endif # NO_DWARF
Jiri Olsacf4cca12013-03-25 00:45:08 +0100239endif # NO_LIBELF
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100240
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100241ifndef NO_LIBELF
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200242 CFLAGS += -DHAVE_LIBELF_SUPPORT
Ingo Molnar8869b172013-09-30 15:02:28 +0200243 ifeq ($(feature-libelf-mmap), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200244 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
Ingo Molnarb7bcef62013-09-30 14:35:27 +0200245 endif
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100246endif # NO_LIBELF
247
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100248# There's only x86 (both 32 and 64) support for CFI unwind so far
249ifneq ($(ARCH),x86)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200250 NO_LIBUNWIND := 1
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100251endif
252
253ifndef NO_LIBUNWIND
Ingo Molnar058f9522013-09-30 14:45:44 +0200254 #
255 # For linking with debug library, run like:
256 #
257 # make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
258 #
Ingo Molnar308e1e72013-10-07 10:30:47 +0200259 ifdef LIBUNWIND_DIR
260 LIBUNWIND_CFLAGS := -I$(LIBUNWIND_DIR)/include
261 LIBUNWIND_LDFLAGS := -L$(LIBUNWIND_DIR)/lib
262 endif
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100263
Ingo Molnar058f9522013-09-30 14:45:44 +0200264 ifneq ($(feature-libunwind), 1)
Ingo Molnar308e1e72013-10-07 10:30:47 +0200265 msg := $(warning No libunwind found, disabling post unwind support. Please install libunwind-dev[el] >= 0.99);
266 NO_LIBUNWIND := 1
267 endif
268endif
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100269
270ifndef NO_LIBUNWIND
Ingo Molnar89fe8082013-09-30 12:07:11 +0200271 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200272 EXTLIBS += $(LIBUNWIND_LIBS)
273 CFLAGS += $(LIBUNWIND_CFLAGS)
274 LDFLAGS += $(LIBUNWIND_LDFLAGS)
Ingo Molnar058f9522013-09-30 14:45:44 +0200275endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100276
277ifndef NO_LIBAUDIT
Ingo Molnard795a652013-09-30 14:55:31 +0200278 ifneq ($(feature-libaudit), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200279 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
280 NO_LIBAUDIT := 1
281 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200282 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200283 EXTLIBS += -laudit
284 endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100285endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100286
287ifdef NO_NEWT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200288 NO_SLANG=1
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100289endif
290
291ifndef NO_SLANG
Ingo Molnarb9498b52013-09-30 14:57:54 +0200292 ifneq ($(feature-libslang), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200293 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
294 NO_SLANG := 1
295 else
296 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
297 CFLAGS += -I/usr/include/slang
Ingo Molnar89fe8082013-09-30 12:07:11 +0200298 CFLAGS += -DHAVE_SLANG_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200299 EXTLIBS += -lslang
300 endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100301endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100302
303ifndef NO_GTK2
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200304 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell pkg-config --libs --cflags gtk+-2.0 2>/dev/null)
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200305 ifneq ($(feature-gtk2), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200306 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
307 NO_GTK2 := 1
308 else
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200309 ifeq ($(feature-gtk2-infobar), 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200310 CFLAGS += -DHAVE_GTK_INFO_BAR_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200311 endif
Ingo Molnar89fe8082013-09-30 12:07:11 +0200312 CFLAGS += -DHAVE_GTK2_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200313 CFLAGS += $(shell pkg-config --cflags gtk+-2.0 2>/dev/null)
314 EXTLIBS += $(shell pkg-config --libs gtk+-2.0 2>/dev/null)
315 endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100316endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100317
318grep-libs = $(filter -l%,$(1))
319strip-libs = $(filter-out -l%,$(1))
320
321ifdef NO_LIBPERL
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200322 CFLAGS += -DNO_LIBPERL
Jiri Olsa3082cb32013-03-18 00:19:44 +0100323else
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200324 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
325 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
326 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
327 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
328 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
Jiri Olsa3082cb32013-03-18 00:19:44 +0100329
Ingo Molnar7181a672013-09-30 15:15:36 +0200330 ifneq ($(feature-libperl), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200331 CFLAGS += -DNO_LIBPERL
332 NO_LIBPERL := 1
333 else
334 LDFLAGS += $(PERL_EMBED_LDFLAGS)
335 EXTLIBS += $(PERL_EMBED_LIBADD)
336 endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100337endif
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100338
339disable-python = $(eval $(disable-python_code))
340define disable-python_code
Jiri Olsa9c12cf92013-03-21 11:30:54 +0100341 CFLAGS += -DNO_LIBPYTHON
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100342 $(if $(1),$(warning No $(1) was found))
343 $(warning Python support will not be built)
344 NO_LIBPYTHON := 1
345endef
346
347override PYTHON := \
348 $(call get-executable-or-default,PYTHON,python)
349
350ifndef PYTHON
351 $(call disable-python,python interpreter)
352else
353
354 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
355
356 ifdef NO_LIBPYTHON
357 $(call disable-python)
358 else
359
360 override PYTHON_CONFIG := \
361 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON)-config)
362
363 ifndef PYTHON_CONFIG
364 $(call disable-python,python-config tool)
365 else
366
367 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
368
369 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
370 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
371 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
372 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
373 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
374
Ingo Molnar97341632013-09-30 15:18:37 +0200375 ifneq ($(feature-libpython), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100376 $(call disable-python,Python.h (for Python 2.x))
377 else
378
Ingo Molnar95d061c2013-09-30 15:40:04 +0200379 ifneq ($(feature-libpython-version), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100380 $(warning Python 3 is not yet supported; please set)
381 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
382 $(warning If you also have Python 2 installed, then)
383 $(warning try something like:)
384 $(warning $(and ,))
385 $(warning $(and ,) make PYTHON=python2)
386 $(warning $(and ,))
387 $(warning Otherwise, disable Python support entirely:)
388 $(warning $(and ,))
389 $(warning $(and ,) make NO_LIBPYTHON=1)
390 $(warning $(and ,))
391 $(error $(and ,))
392 else
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100393 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100394 EXTLIBS += $(PYTHON_EMBED_LIBADD)
Jiri Olsa7c537462013-05-24 14:35:23 +0200395 LANG_BINDINGS += $(obj-perf)python/perf.so
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100396 endif
397 endif
398 endif
399 endif
400endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100401
402ifdef NO_DEMANGLE
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200403 CFLAGS += -DNO_DEMANGLE
Jiri Olsac3cf8362013-03-18 00:38:16 +0100404else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200405 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200406 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200407 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200408 else
409 FLAGS_BFD=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -DPACKAGE='perf' -lbfd
Ingo Molnar3b7646e2013-09-30 15:53:31 +0200410 ifeq ($(feature-libbfd), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200411 EXTLIBS += -lbfd
412 else
413 FLAGS_BFD_IBERTY=$(FLAGS_BFD) -liberty
414 has_bfd_iberty := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD_IBERTY),liberty)
415 ifeq ($(has_bfd_iberty),y)
416 EXTLIBS += -lbfd -liberty
417 else
418 FLAGS_BFD_IBERTY_Z=$(FLAGS_BFD_IBERTY) -lz
419 has_bfd_iberty_z := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD_IBERTY_Z),libz)
420 ifeq ($(has_bfd_iberty_z),y)
421 EXTLIBS += -lbfd -liberty -lz
422 else
423 FLAGS_CPLUS_DEMANGLE=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -liberty
424 has_cplus_demangle := $(call try-cc,$(SOURCE_CPLUS_DEMANGLE),$(FLAGS_CPLUS_DEMANGLE),demangle)
425 ifeq ($(has_cplus_demangle),y)
426 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200427 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200428 else
429 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
430 CFLAGS += -DNO_DEMANGLE
431 endif
432 endif
433 endif
434 endif
435 endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100436endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100437
438ifndef NO_STRLCPY
Ingo Molnard0707c92013-10-08 10:10:45 +0200439 ifeq ($(feature-strlcpy), 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200440 CFLAGS += -DHAVE_STRLCPY_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200441 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100442endif
443
444ifndef NO_ON_EXIT
Ingo Molnar34ef2162013-09-30 16:46:49 +0200445 ifeq ($(feature-on-exit), 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200446 CFLAGS += -DHAVE_ON_EXIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200447 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100448endif
449
450ifndef NO_BACKTRACE
Ingo Molnar89fe8082013-09-30 12:07:11 +0200451 ifeq ($(call try-cc,$(SOURCE_BACKTRACE),,-DHAVE_BACKTRACE_SUPPORT),y)
452 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200453 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100454endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100455
456ifndef NO_LIBNUMA
Ingo Molnar3ae069c2013-09-30 13:37:10 +0200457 ifeq ($(feature-libnuma), 0)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200458 msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numa-libs-devel or libnuma-dev);
459 NO_LIBNUMA := 1
460 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200461 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200462 EXTLIBS += -lnuma
463 endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100464endif
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100465
466# Among the variables below, these:
467# perfexecdir
468# template_dir
469# mandir
470# infodir
471# htmldir
472# ETC_PERFCONFIG (but not sysconfdir)
473# can be specified as a relative path some/where/else;
474# this is interpreted as relative to $(prefix) and "perf" at
475# runtime figures out where they are based on the path to the executable.
476# This can help installing the suite in a relocatable way.
477
478# Make the path relative to DESTDIR, not to prefix
479ifndef DESTDIR
480prefix = $(HOME)
481endif
482bindir_relative = bin
483bindir = $(prefix)/$(bindir_relative)
484mandir = share/man
485infodir = share/info
486perfexecdir = libexec/perf-core
487sharedir = $(prefix)/share
488template_dir = share/perf-core/templates
489htmldir = share/doc/perf-doc
490ifeq ($(prefix),/usr)
491sysconfdir = /etc
492ETC_PERFCONFIG = $(sysconfdir)/perfconfig
493else
494sysconfdir = $(prefix)/etc
495ETC_PERFCONFIG = etc/perfconfig
496endif
497lib = lib
498
499# Shell quote (do not use $(call) to accommodate ancient setups);
500ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
501DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
502bindir_SQ = $(subst ','\'',$(bindir))
503mandir_SQ = $(subst ','\'',$(mandir))
504infodir_SQ = $(subst ','\'',$(infodir))
505perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
506template_dir_SQ = $(subst ','\'',$(template_dir))
507htmldir_SQ = $(subst ','\'',$(htmldir))
508prefix_SQ = $(subst ','\'',$(prefix))
509sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
510
511ifneq ($(filter /%,$(firstword $(perfexecdir))),)
512perfexec_instdir = $(perfexecdir)
513else
514perfexec_instdir = $(prefix)/$(perfexecdir)
515endif
516perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))