blob: 8cd0fd82967c60c37db26a9664ed64a80ae229e6 [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 Molnar3ae069c2013-09-30 13:37:10 +0200113 libnuma
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200114
115$(foreach test,$(FEATURE_TESTS),$(call feature_check,$(test),$(test)))
116
Ingo Molnar90ac5422013-09-30 13:48:44 +0200117ifeq ($(feature-stackprotector-all), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200118 CFLAGS += -fstack-protector-all
Jiri Olsa362493f2013-03-25 00:40:48 +0100119endif
120
Ingo Molnar430be5a2013-10-07 09:47:00 +0200121ifeq ($(feature-stackprotector), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200122 CFLAGS += -Wstack-protector
Jiri Olsa362493f2013-03-25 00:40:48 +0100123endif
124
Ingo Molnarc2510442013-09-30 13:58:12 +0200125ifeq ($(feature-volatile-register-var), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200126 CFLAGS += -Wvolatile-register-var
Jiri Olsa362493f2013-03-25 00:40:48 +0100127endif
128
129ifndef PERF_DEBUG
Ingo Molnar1ea6f992013-10-07 09:38:28 +0200130 ifeq ($(feature-fortify-source), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200131 CFLAGS += -D_FORTIFY_SOURCE=2
132 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100133endif
134
Jiri Olsa2fe73742013-04-15 04:32:28 +0200135CFLAGS += -I$(src-perf)/util/include
136CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
137CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
138CFLAGS += -I$(srctree)/arch/$(ARCH)/include
139CFLAGS += -I$(srctree)/include/uapi
140CFLAGS += -I$(srctree)/include
Jiri Olsa7c537462013-05-24 14:35:23 +0200141
142# $(obj-perf) for generated common-cmds.h
143# $(obj-perf)/util for generated bison/flex headers
144ifneq ($(OUTPUT),)
Jiri Olsa2fe73742013-04-15 04:32:28 +0200145CFLAGS += -I$(obj-perf)/util
146CFLAGS += -I$(obj-perf)
Jiri Olsa7c537462013-05-24 14:35:23 +0200147endif
148
Jiri Olsa2fe73742013-04-15 04:32:28 +0200149CFLAGS += -I$(src-perf)/util
150CFLAGS += -I$(src-perf)
Robert Richter4e319022013-06-11 17:29:18 +0200151CFLAGS += -I$(LIB_INCLUDE)
Jiri Olsa7c537462013-05-24 14:35:23 +0200152
Jiri Olsa2fe73742013-04-15 04:32:28 +0200153CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
Jiri Olsa362493f2013-03-25 00:40:48 +0100154
Jiri Olsa4e22db42013-05-24 14:35:24 +0200155ifndef NO_BIONIC
Ingo Molnar78e9d652013-09-30 14:11:46 +0200156 $(feature_check,bionic)
157 ifeq ($(feature-bionic), 1)
158 BIONIC := 1
159 EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
160 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
161 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100162endif
Jiri Olsacf4cca12013-03-25 00:45:08 +0100163
164ifdef NO_LIBELF
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200165 NO_DWARF := 1
166 NO_DEMANGLE := 1
167 NO_LIBUNWIND := 1
Jiri Olsacf4cca12013-03-25 00:45:08 +0100168else
Ingo Molnar8f7f8002013-09-30 14:20:25 +0200169 ifeq ($(feature-libelf), 0)
Ingo Molnare12762c2013-10-07 10:34:20 +0200170 ifeq ($(feature-glibc), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200171 LIBC_SUPPORT := 1
172 endif
173 ifeq ($(BIONIC),1)
174 LIBC_SUPPORT := 1
175 endif
176 ifeq ($(LIBC_SUPPORT),1)
177 msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libelf-dev);
Jiri Olsacf4cca12013-03-25 00:45:08 +0100178
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200179 NO_LIBELF := 1
180 NO_DWARF := 1
181 NO_DEMANGLE := 1
182 else
183 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]/glibc-static);
184 endif
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200185 else
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200186 # for linking with debug library, run like:
187 # make DEBUG=1 LIBDW_DIR=/opt/libdw/
188 ifdef LIBDW_DIR
189 LIBDW_CFLAGS := -I$(LIBDW_DIR)/include
190 LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib
191 endif
Jiri Olsacf4cca12013-03-25 00:45:08 +0100192
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200193 FLAGS_DWARF=$(CFLAGS) $(LIBDW_CFLAGS) -ldw -lz -lelf $(LIBDW_LDFLAGS) $(LDFLAGS) $(EXTLIBS)
194 ifneq ($(call try-cc,$(SOURCE_DWARF),$(FLAGS_DWARF),libdw),y)
195 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);
196 NO_DWARF := 1
197 endif # Dwarf support
198 endif # SOURCE_LIBELF
Jiri Olsacf4cca12013-03-25 00:45:08 +0100199endif # NO_LIBELF
200
201ifndef NO_LIBELF
Ingo Molnar89fe8082013-09-30 12:07:11 +0200202CFLAGS += -DHAVE_LIBELF_SUPPORT
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100203FLAGS_LIBELF=$(CFLAGS) $(LDFLAGS) $(EXTLIBS)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200204ifeq ($(call try-cc,$(SOURCE_ELF_MMAP),$(FLAGS_LIBELF),-DHAVE_LIBELF_MMAP_SUPPORT),y)
205 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
Jiri Olsacf4cca12013-03-25 00:45:08 +0100206endif
Ingo Molnar89fe8082013-09-30 12:07:11 +0200207ifeq ($(call try-cc,$(SOURCE_ELF_GETPHDRNUM),$(FLAGS_LIBELF),-DHAVE_ELF_GETPHDRNUM_SUPPORT),y)
208 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
Adrian Huntere955d5c2013-09-13 16:49:30 +0300209endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100210
211# include ARCH specific config
Jiri Olsa7c537462013-05-24 14:35:23 +0200212-include $(src-perf)/arch/$(ARCH)/Makefile
Jiri Olsa779724f2013-03-25 00:48:14 +0100213
214ifndef NO_DWARF
215ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200216 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
217 NO_DWARF := 1
Jiri Olsa779724f2013-03-25 00:48:14 +0100218else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200219 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200220 LDFLAGS += $(LIBDW_LDFLAGS)
221 EXTLIBS += -lelf -ldw
Jiri Olsa779724f2013-03-25 00:48:14 +0100222endif # PERF_HAVE_DWARF_REGS
223endif # NO_DWARF
224
Jiri Olsacf4cca12013-03-25 00:45:08 +0100225endif # NO_LIBELF
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100226
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100227ifndef NO_LIBELF
Ingo Molnar89fe8082013-09-30 12:07:11 +0200228CFLAGS += -DHAVE_LIBELF_SUPPORT
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100229FLAGS_LIBELF=$(CFLAGS) $(LDFLAGS) $(EXTLIBS)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200230ifeq ($(call try-cc,$(SOURCE_ELF_MMAP),$(FLAGS_LIBELF),-DHAVE_LIBELF_MMAP_SUPPORT),y)
231 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100232endif # try-cc
233endif # NO_LIBELF
234
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100235# There's only x86 (both 32 and 64) support for CFI unwind so far
236ifneq ($(ARCH),x86)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200237 NO_LIBUNWIND := 1
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100238endif
239
240ifndef NO_LIBUNWIND
241# for linking with debug library, run like:
242# make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
243ifdef LIBUNWIND_DIR
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200244 LIBUNWIND_CFLAGS := -I$(LIBUNWIND_DIR)/include
245 LIBUNWIND_LDFLAGS := -L$(LIBUNWIND_DIR)/lib
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100246endif
247
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100248FLAGS_UNWIND=$(LIBUNWIND_CFLAGS) $(CFLAGS) $(LIBUNWIND_LDFLAGS) $(LDFLAGS) $(EXTLIBS) $(LIBUNWIND_LIBS)
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100249ifneq ($(call try-cc,$(SOURCE_LIBUNWIND),$(FLAGS_UNWIND),libunwind),y)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200250 msg := $(warning No libunwind found, disabling post unwind support. Please install libunwind-dev[el] >= 0.99);
251 NO_LIBUNWIND := 1
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100252endif # Libunwind support
253endif # NO_LIBUNWIND
254
255ifndef NO_LIBUNWIND
Ingo Molnar89fe8082013-09-30 12:07:11 +0200256 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200257 EXTLIBS += $(LIBUNWIND_LIBS)
258 CFLAGS += $(LIBUNWIND_CFLAGS)
259 LDFLAGS += $(LIBUNWIND_LDFLAGS)
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100260endif # NO_LIBUNWIND
Jiri Olsaa8279522013-03-25 00:54:36 +0100261
262ifndef NO_LIBAUDIT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200263 FLAGS_LIBAUDIT = $(CFLAGS) $(LDFLAGS) -laudit
264 ifneq ($(call try-cc,$(SOURCE_LIBAUDIT),$(FLAGS_LIBAUDIT),libaudit),y)
265 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
266 NO_LIBAUDIT := 1
267 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200268 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200269 EXTLIBS += -laudit
270 endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100271endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100272
273ifdef NO_NEWT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200274 NO_SLANG=1
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100275endif
276
277ifndef NO_SLANG
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200278 FLAGS_SLANG=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -I/usr/include/slang -lslang
279 ifneq ($(call try-cc,$(SOURCE_SLANG),$(FLAGS_SLANG),libslang),y)
280 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
281 NO_SLANG := 1
282 else
283 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
284 CFLAGS += -I/usr/include/slang
Ingo Molnar89fe8082013-09-30 12:07:11 +0200285 CFLAGS += -DHAVE_SLANG_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200286 EXTLIBS += -lslang
287 endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100288endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100289
290ifndef NO_GTK2
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200291 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell pkg-config --libs --cflags gtk+-2.0 2>/dev/null)
292 ifneq ($(call try-cc,$(SOURCE_GTK2),$(FLAGS_GTK2),gtk2),y)
293 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
294 NO_GTK2 := 1
295 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200296 ifeq ($(call try-cc,$(SOURCE_GTK2_INFOBAR),$(FLAGS_GTK2),-DHAVE_GTK_INFO_BAR_SUPPORT),y)
297 CFLAGS += -DHAVE_GTK_INFO_BAR_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200298 endif
Ingo Molnar89fe8082013-09-30 12:07:11 +0200299 CFLAGS += -DHAVE_GTK2_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200300 CFLAGS += $(shell pkg-config --cflags gtk+-2.0 2>/dev/null)
301 EXTLIBS += $(shell pkg-config --libs gtk+-2.0 2>/dev/null)
302 endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100303endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100304
305grep-libs = $(filter -l%,$(1))
306strip-libs = $(filter-out -l%,$(1))
307
308ifdef NO_LIBPERL
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200309 CFLAGS += -DNO_LIBPERL
Jiri Olsa3082cb32013-03-18 00:19:44 +0100310else
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200311 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
312 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
313 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
314 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
315 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
Jiri Olsa3082cb32013-03-18 00:19:44 +0100316
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200317 ifneq ($(call try-cc,$(SOURCE_PERL_EMBED),$(FLAGS_PERL_EMBED),perl),y)
318 CFLAGS += -DNO_LIBPERL
319 NO_LIBPERL := 1
320 else
321 LDFLAGS += $(PERL_EMBED_LDFLAGS)
322 EXTLIBS += $(PERL_EMBED_LIBADD)
323 endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100324endif
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100325
326disable-python = $(eval $(disable-python_code))
327define disable-python_code
Jiri Olsa9c12cf92013-03-21 11:30:54 +0100328 CFLAGS += -DNO_LIBPYTHON
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100329 $(if $(1),$(warning No $(1) was found))
330 $(warning Python support will not be built)
331 NO_LIBPYTHON := 1
332endef
333
334override PYTHON := \
335 $(call get-executable-or-default,PYTHON,python)
336
337ifndef PYTHON
338 $(call disable-python,python interpreter)
339else
340
341 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
342
343 ifdef NO_LIBPYTHON
344 $(call disable-python)
345 else
346
347 override PYTHON_CONFIG := \
348 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON)-config)
349
350 ifndef PYTHON_CONFIG
351 $(call disable-python,python-config tool)
352 else
353
354 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
355
356 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
357 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
358 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
359 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
360 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
361
362 ifneq ($(call try-cc,$(SOURCE_PYTHON_EMBED),$(FLAGS_PYTHON_EMBED),python),y)
363 $(call disable-python,Python.h (for Python 2.x))
364 else
365
366 ifneq ($(call try-cc,$(SOURCE_PYTHON_VERSION),$(FLAGS_PYTHON_EMBED),python version),y)
367 $(warning Python 3 is not yet supported; please set)
368 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
369 $(warning If you also have Python 2 installed, then)
370 $(warning try something like:)
371 $(warning $(and ,))
372 $(warning $(and ,) make PYTHON=python2)
373 $(warning $(and ,))
374 $(warning Otherwise, disable Python support entirely:)
375 $(warning $(and ,))
376 $(warning $(and ,) make NO_LIBPYTHON=1)
377 $(warning $(and ,))
378 $(error $(and ,))
379 else
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100380 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100381 EXTLIBS += $(PYTHON_EMBED_LIBADD)
Jiri Olsa7c537462013-05-24 14:35:23 +0200382 LANG_BINDINGS += $(obj-perf)python/perf.so
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100383 endif
384 endif
385 endif
386 endif
387endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100388
389ifdef NO_DEMANGLE
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200390 CFLAGS += -DNO_DEMANGLE
Jiri Olsac3cf8362013-03-18 00:38:16 +0100391else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200392 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200393 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200394 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200395 else
396 FLAGS_BFD=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -DPACKAGE='perf' -lbfd
397 has_bfd := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD),libbfd)
398 ifeq ($(has_bfd),y)
399 EXTLIBS += -lbfd
400 else
401 FLAGS_BFD_IBERTY=$(FLAGS_BFD) -liberty
402 has_bfd_iberty := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD_IBERTY),liberty)
403 ifeq ($(has_bfd_iberty),y)
404 EXTLIBS += -lbfd -liberty
405 else
406 FLAGS_BFD_IBERTY_Z=$(FLAGS_BFD_IBERTY) -lz
407 has_bfd_iberty_z := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD_IBERTY_Z),libz)
408 ifeq ($(has_bfd_iberty_z),y)
409 EXTLIBS += -lbfd -liberty -lz
410 else
411 FLAGS_CPLUS_DEMANGLE=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -liberty
412 has_cplus_demangle := $(call try-cc,$(SOURCE_CPLUS_DEMANGLE),$(FLAGS_CPLUS_DEMANGLE),demangle)
413 ifeq ($(has_cplus_demangle),y)
414 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200415 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200416 else
417 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
418 CFLAGS += -DNO_DEMANGLE
419 endif
420 endif
421 endif
422 endif
423 endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100424endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100425
426ifndef NO_STRLCPY
Ingo Molnar89fe8082013-09-30 12:07:11 +0200427 ifeq ($(call try-cc,$(SOURCE_STRLCPY),,-DHAVE_STRLCPY_SUPPORT),y)
428 CFLAGS += -DHAVE_STRLCPY_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200429 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100430endif
431
432ifndef NO_ON_EXIT
Ingo Molnar89fe8082013-09-30 12:07:11 +0200433 ifeq ($(call try-cc,$(SOURCE_ON_EXIT),,-DHAVE_ON_EXIT_SUPPORT),y)
434 CFLAGS += -DHAVE_ON_EXIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200435 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100436endif
437
438ifndef NO_BACKTRACE
Ingo Molnar89fe8082013-09-30 12:07:11 +0200439 ifeq ($(call try-cc,$(SOURCE_BACKTRACE),,-DHAVE_BACKTRACE_SUPPORT),y)
440 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200441 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100442endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100443
444ifndef NO_LIBNUMA
Ingo Molnar3ae069c2013-09-30 13:37:10 +0200445 ifeq ($(feature-libnuma), 0)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200446 msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numa-libs-devel or libnuma-dev);
447 NO_LIBNUMA := 1
448 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200449 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200450 EXTLIBS += -lnuma
451 endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100452endif
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100453
454# Among the variables below, these:
455# perfexecdir
456# template_dir
457# mandir
458# infodir
459# htmldir
460# ETC_PERFCONFIG (but not sysconfdir)
461# can be specified as a relative path some/where/else;
462# this is interpreted as relative to $(prefix) and "perf" at
463# runtime figures out where they are based on the path to the executable.
464# This can help installing the suite in a relocatable way.
465
466# Make the path relative to DESTDIR, not to prefix
467ifndef DESTDIR
468prefix = $(HOME)
469endif
470bindir_relative = bin
471bindir = $(prefix)/$(bindir_relative)
472mandir = share/man
473infodir = share/info
474perfexecdir = libexec/perf-core
475sharedir = $(prefix)/share
476template_dir = share/perf-core/templates
477htmldir = share/doc/perf-doc
478ifeq ($(prefix),/usr)
479sysconfdir = /etc
480ETC_PERFCONFIG = $(sysconfdir)/perfconfig
481else
482sysconfdir = $(prefix)/etc
483ETC_PERFCONFIG = etc/perfconfig
484endif
485lib = lib
486
487# Shell quote (do not use $(call) to accommodate ancient setups);
488ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
489DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
490bindir_SQ = $(subst ','\'',$(bindir))
491mandir_SQ = $(subst ','\'',$(mandir))
492infodir_SQ = $(subst ','\'',$(infodir))
493perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
494template_dir_SQ = $(subst ','\'',$(template_dir))
495htmldir_SQ = $(subst ','\'',$(htmldir))
496prefix_SQ = $(subst ','\'',$(prefix))
497sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
498
499ifneq ($(filter /%,$(firstword $(perfexecdir))),)
500perfexec_instdir = $(perfexecdir)
501else
502perfexec_instdir = $(prefix)/$(perfexecdir)
503endif
504perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))