blob: 7a614f92ce8c08140079af411d9f676c9bdf19bb [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 Molnar3ae069c2013-09-30 13:37:10 +0200110 libnuma
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200111
112$(foreach test,$(FEATURE_TESTS),$(call feature_check,$(test),$(test)))
113
Ingo Molnar90ac5422013-09-30 13:48:44 +0200114ifeq ($(feature-stackprotector-all), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200115 CFLAGS += -fstack-protector-all
Jiri Olsa362493f2013-03-25 00:40:48 +0100116endif
117
Ingo Molnar430be5a2013-10-07 09:47:00 +0200118ifeq ($(feature-stackprotector), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200119 CFLAGS += -Wstack-protector
Jiri Olsa362493f2013-03-25 00:40:48 +0100120endif
121
Ingo Molnarc2510442013-09-30 13:58:12 +0200122ifeq ($(feature-volatile-register-var), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200123 CFLAGS += -Wvolatile-register-var
Jiri Olsa362493f2013-03-25 00:40:48 +0100124endif
125
126ifndef PERF_DEBUG
Ingo Molnar1ea6f992013-10-07 09:38:28 +0200127 ifeq ($(feature-fortify-source), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200128 CFLAGS += -D_FORTIFY_SOURCE=2
129 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100130endif
131
Jiri Olsa2fe73742013-04-15 04:32:28 +0200132CFLAGS += -I$(src-perf)/util/include
133CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
134CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
135CFLAGS += -I$(srctree)/arch/$(ARCH)/include
136CFLAGS += -I$(srctree)/include/uapi
137CFLAGS += -I$(srctree)/include
Jiri Olsa7c537462013-05-24 14:35:23 +0200138
139# $(obj-perf) for generated common-cmds.h
140# $(obj-perf)/util for generated bison/flex headers
141ifneq ($(OUTPUT),)
Jiri Olsa2fe73742013-04-15 04:32:28 +0200142CFLAGS += -I$(obj-perf)/util
143CFLAGS += -I$(obj-perf)
Jiri Olsa7c537462013-05-24 14:35:23 +0200144endif
145
Jiri Olsa2fe73742013-04-15 04:32:28 +0200146CFLAGS += -I$(src-perf)/util
147CFLAGS += -I$(src-perf)
Robert Richter4e319022013-06-11 17:29:18 +0200148CFLAGS += -I$(LIB_INCLUDE)
Jiri Olsa7c537462013-05-24 14:35:23 +0200149
Jiri Olsa2fe73742013-04-15 04:32:28 +0200150CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
Jiri Olsa362493f2013-03-25 00:40:48 +0100151
Jiri Olsa4e22db42013-05-24 14:35:24 +0200152ifndef NO_BIONIC
Jiri Olsa362493f2013-03-25 00:40:48 +0100153ifeq ($(call try-cc,$(SOURCE_BIONIC),$(CFLAGS),bionic),y)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200154 BIONIC := 1
155 EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
156 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
Jiri Olsa362493f2013-03-25 00:40:48 +0100157endif
Jiri Olsa4e22db42013-05-24 14:35:24 +0200158endif # NO_BIONIC
Jiri Olsacf4cca12013-03-25 00:45:08 +0100159
160ifdef NO_LIBELF
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200161 NO_DWARF := 1
162 NO_DEMANGLE := 1
163 NO_LIBUNWIND := 1
Jiri Olsacf4cca12013-03-25 00:45:08 +0100164else
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100165FLAGS_LIBELF=$(CFLAGS) $(LDFLAGS) $(EXTLIBS)
Jiri Olsacf4cca12013-03-25 00:45:08 +0100166ifneq ($(call try-cc,$(SOURCE_LIBELF),$(FLAGS_LIBELF),libelf),y)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200167 FLAGS_GLIBC=$(CFLAGS) $(LDFLAGS)
168 ifeq ($(call try-cc,$(SOURCE_GLIBC),$(FLAGS_GLIBC),glibc),y)
169 LIBC_SUPPORT := 1
170 endif
171 ifeq ($(BIONIC),1)
172 LIBC_SUPPORT := 1
173 endif
174 ifeq ($(LIBC_SUPPORT),1)
175 msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libelf-dev);
Jiri Olsacf4cca12013-03-25 00:45:08 +0100176
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200177 NO_LIBELF := 1
178 NO_DWARF := 1
179 NO_DEMANGLE := 1
180 else
181 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]/glibc-static);
182 endif
Jiri Olsacf4cca12013-03-25 00:45:08 +0100183else
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200184 # for linking with debug library, run like:
185 # make DEBUG=1 LIBDW_DIR=/opt/libdw/
186 ifdef LIBDW_DIR
187 LIBDW_CFLAGS := -I$(LIBDW_DIR)/include
188 LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib
189 endif
Jiri Olsacf4cca12013-03-25 00:45:08 +0100190
Mike Frysingerd14c4962013-05-09 00:17:44 -0400191 FLAGS_DWARF=$(CFLAGS) $(LIBDW_CFLAGS) -ldw -lz -lelf $(LIBDW_LDFLAGS) $(LDFLAGS) $(EXTLIBS)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200192 ifneq ($(call try-cc,$(SOURCE_DWARF),$(FLAGS_DWARF),libdw),y)
193 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);
194 NO_DWARF := 1
195 endif # Dwarf support
Jiri Olsacf4cca12013-03-25 00:45:08 +0100196endif # SOURCE_LIBELF
197endif # NO_LIBELF
198
199ifndef NO_LIBELF
Ingo Molnar89fe8082013-09-30 12:07:11 +0200200CFLAGS += -DHAVE_LIBELF_SUPPORT
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100201FLAGS_LIBELF=$(CFLAGS) $(LDFLAGS) $(EXTLIBS)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200202ifeq ($(call try-cc,$(SOURCE_ELF_MMAP),$(FLAGS_LIBELF),-DHAVE_LIBELF_MMAP_SUPPORT),y)
203 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
Jiri Olsacf4cca12013-03-25 00:45:08 +0100204endif
Ingo Molnar89fe8082013-09-30 12:07:11 +0200205ifeq ($(call try-cc,$(SOURCE_ELF_GETPHDRNUM),$(FLAGS_LIBELF),-DHAVE_ELF_GETPHDRNUM_SUPPORT),y)
206 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
Adrian Huntere955d5c2013-09-13 16:49:30 +0300207endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100208
209# include ARCH specific config
Jiri Olsa7c537462013-05-24 14:35:23 +0200210-include $(src-perf)/arch/$(ARCH)/Makefile
Jiri Olsa779724f2013-03-25 00:48:14 +0100211
212ifndef NO_DWARF
213ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200214 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
215 NO_DWARF := 1
Jiri Olsa779724f2013-03-25 00:48:14 +0100216else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200217 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200218 LDFLAGS += $(LIBDW_LDFLAGS)
219 EXTLIBS += -lelf -ldw
Jiri Olsa779724f2013-03-25 00:48:14 +0100220endif # PERF_HAVE_DWARF_REGS
221endif # NO_DWARF
222
Jiri Olsacf4cca12013-03-25 00:45:08 +0100223endif # NO_LIBELF
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100224
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100225ifndef NO_LIBELF
Ingo Molnar89fe8082013-09-30 12:07:11 +0200226CFLAGS += -DHAVE_LIBELF_SUPPORT
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100227FLAGS_LIBELF=$(CFLAGS) $(LDFLAGS) $(EXTLIBS)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200228ifeq ($(call try-cc,$(SOURCE_ELF_MMAP),$(FLAGS_LIBELF),-DHAVE_LIBELF_MMAP_SUPPORT),y)
229 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100230endif # try-cc
231endif # NO_LIBELF
232
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100233# There's only x86 (both 32 and 64) support for CFI unwind so far
234ifneq ($(ARCH),x86)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200235 NO_LIBUNWIND := 1
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100236endif
237
238ifndef NO_LIBUNWIND
239# for linking with debug library, run like:
240# make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
241ifdef LIBUNWIND_DIR
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200242 LIBUNWIND_CFLAGS := -I$(LIBUNWIND_DIR)/include
243 LIBUNWIND_LDFLAGS := -L$(LIBUNWIND_DIR)/lib
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100244endif
245
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100246FLAGS_UNWIND=$(LIBUNWIND_CFLAGS) $(CFLAGS) $(LIBUNWIND_LDFLAGS) $(LDFLAGS) $(EXTLIBS) $(LIBUNWIND_LIBS)
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100247ifneq ($(call try-cc,$(SOURCE_LIBUNWIND),$(FLAGS_UNWIND),libunwind),y)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200248 msg := $(warning No libunwind found, disabling post unwind support. Please install libunwind-dev[el] >= 0.99);
249 NO_LIBUNWIND := 1
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100250endif # Libunwind support
251endif # NO_LIBUNWIND
252
253ifndef NO_LIBUNWIND
Ingo Molnar89fe8082013-09-30 12:07:11 +0200254 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200255 EXTLIBS += $(LIBUNWIND_LIBS)
256 CFLAGS += $(LIBUNWIND_CFLAGS)
257 LDFLAGS += $(LIBUNWIND_LDFLAGS)
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100258endif # NO_LIBUNWIND
Jiri Olsaa8279522013-03-25 00:54:36 +0100259
260ifndef NO_LIBAUDIT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200261 FLAGS_LIBAUDIT = $(CFLAGS) $(LDFLAGS) -laudit
262 ifneq ($(call try-cc,$(SOURCE_LIBAUDIT),$(FLAGS_LIBAUDIT),libaudit),y)
263 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
264 NO_LIBAUDIT := 1
265 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200266 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200267 EXTLIBS += -laudit
268 endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100269endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100270
271ifdef NO_NEWT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200272 NO_SLANG=1
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100273endif
274
275ifndef NO_SLANG
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200276 FLAGS_SLANG=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -I/usr/include/slang -lslang
277 ifneq ($(call try-cc,$(SOURCE_SLANG),$(FLAGS_SLANG),libslang),y)
278 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
279 NO_SLANG := 1
280 else
281 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
282 CFLAGS += -I/usr/include/slang
Ingo Molnar89fe8082013-09-30 12:07:11 +0200283 CFLAGS += -DHAVE_SLANG_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200284 EXTLIBS += -lslang
285 endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100286endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100287
288ifndef NO_GTK2
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200289 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell pkg-config --libs --cflags gtk+-2.0 2>/dev/null)
290 ifneq ($(call try-cc,$(SOURCE_GTK2),$(FLAGS_GTK2),gtk2),y)
291 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
292 NO_GTK2 := 1
293 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200294 ifeq ($(call try-cc,$(SOURCE_GTK2_INFOBAR),$(FLAGS_GTK2),-DHAVE_GTK_INFO_BAR_SUPPORT),y)
295 CFLAGS += -DHAVE_GTK_INFO_BAR_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200296 endif
Ingo Molnar89fe8082013-09-30 12:07:11 +0200297 CFLAGS += -DHAVE_GTK2_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200298 CFLAGS += $(shell pkg-config --cflags gtk+-2.0 2>/dev/null)
299 EXTLIBS += $(shell pkg-config --libs gtk+-2.0 2>/dev/null)
300 endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100301endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100302
303grep-libs = $(filter -l%,$(1))
304strip-libs = $(filter-out -l%,$(1))
305
306ifdef NO_LIBPERL
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200307 CFLAGS += -DNO_LIBPERL
Jiri Olsa3082cb32013-03-18 00:19:44 +0100308else
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200309 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
310 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
311 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
312 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
313 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
Jiri Olsa3082cb32013-03-18 00:19:44 +0100314
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200315 ifneq ($(call try-cc,$(SOURCE_PERL_EMBED),$(FLAGS_PERL_EMBED),perl),y)
316 CFLAGS += -DNO_LIBPERL
317 NO_LIBPERL := 1
318 else
319 LDFLAGS += $(PERL_EMBED_LDFLAGS)
320 EXTLIBS += $(PERL_EMBED_LIBADD)
321 endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100322endif
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100323
324disable-python = $(eval $(disable-python_code))
325define disable-python_code
Jiri Olsa9c12cf92013-03-21 11:30:54 +0100326 CFLAGS += -DNO_LIBPYTHON
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100327 $(if $(1),$(warning No $(1) was found))
328 $(warning Python support will not be built)
329 NO_LIBPYTHON := 1
330endef
331
332override PYTHON := \
333 $(call get-executable-or-default,PYTHON,python)
334
335ifndef PYTHON
336 $(call disable-python,python interpreter)
337else
338
339 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
340
341 ifdef NO_LIBPYTHON
342 $(call disable-python)
343 else
344
345 override PYTHON_CONFIG := \
346 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON)-config)
347
348 ifndef PYTHON_CONFIG
349 $(call disable-python,python-config tool)
350 else
351
352 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
353
354 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
355 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
356 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
357 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
358 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
359
360 ifneq ($(call try-cc,$(SOURCE_PYTHON_EMBED),$(FLAGS_PYTHON_EMBED),python),y)
361 $(call disable-python,Python.h (for Python 2.x))
362 else
363
364 ifneq ($(call try-cc,$(SOURCE_PYTHON_VERSION),$(FLAGS_PYTHON_EMBED),python version),y)
365 $(warning Python 3 is not yet supported; please set)
366 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
367 $(warning If you also have Python 2 installed, then)
368 $(warning try something like:)
369 $(warning $(and ,))
370 $(warning $(and ,) make PYTHON=python2)
371 $(warning $(and ,))
372 $(warning Otherwise, disable Python support entirely:)
373 $(warning $(and ,))
374 $(warning $(and ,) make NO_LIBPYTHON=1)
375 $(warning $(and ,))
376 $(error $(and ,))
377 else
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100378 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100379 EXTLIBS += $(PYTHON_EMBED_LIBADD)
Jiri Olsa7c537462013-05-24 14:35:23 +0200380 LANG_BINDINGS += $(obj-perf)python/perf.so
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100381 endif
382 endif
383 endif
384 endif
385endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100386
387ifdef NO_DEMANGLE
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200388 CFLAGS += -DNO_DEMANGLE
Jiri Olsac3cf8362013-03-18 00:38:16 +0100389else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200390 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200391 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200392 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200393 else
394 FLAGS_BFD=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -DPACKAGE='perf' -lbfd
395 has_bfd := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD),libbfd)
396 ifeq ($(has_bfd),y)
397 EXTLIBS += -lbfd
398 else
399 FLAGS_BFD_IBERTY=$(FLAGS_BFD) -liberty
400 has_bfd_iberty := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD_IBERTY),liberty)
401 ifeq ($(has_bfd_iberty),y)
402 EXTLIBS += -lbfd -liberty
403 else
404 FLAGS_BFD_IBERTY_Z=$(FLAGS_BFD_IBERTY) -lz
405 has_bfd_iberty_z := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD_IBERTY_Z),libz)
406 ifeq ($(has_bfd_iberty_z),y)
407 EXTLIBS += -lbfd -liberty -lz
408 else
409 FLAGS_CPLUS_DEMANGLE=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -liberty
410 has_cplus_demangle := $(call try-cc,$(SOURCE_CPLUS_DEMANGLE),$(FLAGS_CPLUS_DEMANGLE),demangle)
411 ifeq ($(has_cplus_demangle),y)
412 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200413 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200414 else
415 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
416 CFLAGS += -DNO_DEMANGLE
417 endif
418 endif
419 endif
420 endif
421 endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100422endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100423
424ifndef NO_STRLCPY
Ingo Molnar89fe8082013-09-30 12:07:11 +0200425 ifeq ($(call try-cc,$(SOURCE_STRLCPY),,-DHAVE_STRLCPY_SUPPORT),y)
426 CFLAGS += -DHAVE_STRLCPY_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200427 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100428endif
429
430ifndef NO_ON_EXIT
Ingo Molnar89fe8082013-09-30 12:07:11 +0200431 ifeq ($(call try-cc,$(SOURCE_ON_EXIT),,-DHAVE_ON_EXIT_SUPPORT),y)
432 CFLAGS += -DHAVE_ON_EXIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200433 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100434endif
435
436ifndef NO_BACKTRACE
Ingo Molnar89fe8082013-09-30 12:07:11 +0200437 ifeq ($(call try-cc,$(SOURCE_BACKTRACE),,-DHAVE_BACKTRACE_SUPPORT),y)
438 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200439 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100440endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100441
442ifndef NO_LIBNUMA
Ingo Molnar3ae069c2013-09-30 13:37:10 +0200443 ifeq ($(feature-libnuma), 0)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200444 msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numa-libs-devel or libnuma-dev);
445 NO_LIBNUMA := 1
446 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200447 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200448 EXTLIBS += -lnuma
449 endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100450endif
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100451
452# Among the variables below, these:
453# perfexecdir
454# template_dir
455# mandir
456# infodir
457# htmldir
458# ETC_PERFCONFIG (but not sysconfdir)
459# can be specified as a relative path some/where/else;
460# this is interpreted as relative to $(prefix) and "perf" at
461# runtime figures out where they are based on the path to the executable.
462# This can help installing the suite in a relocatable way.
463
464# Make the path relative to DESTDIR, not to prefix
465ifndef DESTDIR
466prefix = $(HOME)
467endif
468bindir_relative = bin
469bindir = $(prefix)/$(bindir_relative)
470mandir = share/man
471infodir = share/info
472perfexecdir = libexec/perf-core
473sharedir = $(prefix)/share
474template_dir = share/perf-core/templates
475htmldir = share/doc/perf-doc
476ifeq ($(prefix),/usr)
477sysconfdir = /etc
478ETC_PERFCONFIG = $(sysconfdir)/perfconfig
479else
480sysconfdir = $(prefix)/etc
481ETC_PERFCONFIG = etc/perfconfig
482endif
483lib = lib
484
485# Shell quote (do not use $(call) to accommodate ancient setups);
486ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
487DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
488bindir_SQ = $(subst ','\'',$(bindir))
489mandir_SQ = $(subst ','\'',$(mandir))
490infodir_SQ = $(subst ','\'',$(infodir))
491perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
492template_dir_SQ = $(subst ','\'',$(template_dir))
493htmldir_SQ = $(subst ','\'',$(htmldir))
494prefix_SQ = $(subst ','\'',$(prefix))
495sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
496
497ifneq ($(filter /%,$(firstword $(perfexecdir))),)
498perfexec_instdir = $(perfexecdir)
499else
500perfexec_instdir = $(prefix)/$(perfexecdir)
501endif
502perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))