blob: cbd7cdca3e56d53877d7d7ee1a46246ca4fa869f [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 Molnarbaa9c302013-10-01 14:14:31 +020092feature_check = $(eval $(feature_check_code))
Ingo Molnarb6aa9972013-09-30 10:08:24 +020093define feature_check_code
Ingo Molnarbaa9c302013-10-01 14:14:31 +020094 feature-$(1) := $(shell $(MAKE) -C config/feature-checks test-$1 >/dev/null 2>/dev/null && echo 1 || echo 0)
95endef
96
97feature_set = $(eval $(feature_set_code))
98define feature_set_code
99 feature-$(1) := 1
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200100endef
101
102#
103# Build the feature check binaries in parallel, ignore errors, ignore return value and suppress output:
104#
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200105$(info )
106$(info Auto-detecting system features:)
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200107
Ingo Molnar3ae069c2013-09-30 13:37:10 +0200108FEATURE_TESTS = \
109 hello \
Ingo Molnar90ac5422013-09-30 13:48:44 +0200110 stackprotector-all \
Ingo Molnar430be5a2013-10-07 09:47:00 +0200111 stackprotector \
Ingo Molnarc2510442013-09-30 13:58:12 +0200112 volatile-register-var \
Ingo Molnar1ea6f992013-10-07 09:38:28 +0200113 fortify-source \
Ingo Molnar78e9d652013-09-30 14:11:46 +0200114 bionic \
Ingo Molnar8f7f8002013-09-30 14:20:25 +0200115 libelf \
Ingo Molnare12762c2013-10-07 10:34:20 +0200116 glibc \
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200117 dwarf \
Ingo Molnar8869b172013-09-30 15:02:28 +0200118 libelf-mmap \
Ingo Molnarb7bcef62013-09-30 14:35:27 +0200119 libelf-getphdrnum \
Ingo Molnar058f9522013-09-30 14:45:44 +0200120 libunwind \
Ingo Molnard795a652013-09-30 14:55:31 +0200121 libaudit \
Ingo Molnarb9498b52013-09-30 14:57:54 +0200122 libslang \
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200123 gtk2 \
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200124 gtk2-infobar \
Ingo Molnar7181a672013-09-30 15:15:36 +0200125 libperl \
Ingo Molnar97341632013-09-30 15:18:37 +0200126 libpython \
Ingo Molnar95d061c2013-09-30 15:40:04 +0200127 libpython-version \
Ingo Molnar3b7646e2013-09-30 15:53:31 +0200128 libbfd \
Ingo Molnar34ef2162013-09-30 16:46:49 +0200129 on-exit \
Ingo Molnar4cc91172013-09-30 16:49:38 +0200130 backtrace \
Ingo Molnar3ae069c2013-09-30 13:37:10 +0200131 libnuma
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200132
Ingo Molnarbaa9c302013-10-01 14:14:31 +0200133#
134# Special fast-path for the 'all features are available' case:
135#
136$(call feature_check,all)
137
138ifeq ($(feature-all), 1)
139 $(foreach feat,$(FEATURE_TESTS),$(call feature_set,$(feat)))
140else
141 $(shell $(MAKE) -i -j -C config/feature-checks >/dev/null 2>&1)
142 $(foreach feat,$(FEATURE_TESTS),$(call feature_check,$(feat)))
143endif
144
145feature_print = $(eval $(feature_print_code))
146
147#
148# Print the result of the feature test:
149#
150define feature_print_code
151 ifeq ($(feature-$(1)), 1)
152 MSG := $(shell printf '...%30s: [ \033[32mon\033[m ]' $(1))
153 else
154 MSG := $(shell printf '...%30s: [ \033[31mOFF\033[m ]' $(1))
155 endif
156 $(info $(MSG))
157endef
158
159$(foreach feat,$(FEATURE_TESTS) DUMMY,$(call feature_print,$(feat)))
160
161# newline at the end of the feature printouts:
162$(info )
Ingo Molnarb6aa9972013-09-30 10:08:24 +0200163
Ingo Molnar90ac5422013-09-30 13:48:44 +0200164ifeq ($(feature-stackprotector-all), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200165 CFLAGS += -fstack-protector-all
Jiri Olsa362493f2013-03-25 00:40:48 +0100166endif
167
Ingo Molnar430be5a2013-10-07 09:47:00 +0200168ifeq ($(feature-stackprotector), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200169 CFLAGS += -Wstack-protector
Jiri Olsa362493f2013-03-25 00:40:48 +0100170endif
171
Ingo Molnarc2510442013-09-30 13:58:12 +0200172ifeq ($(feature-volatile-register-var), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200173 CFLAGS += -Wvolatile-register-var
Jiri Olsa362493f2013-03-25 00:40:48 +0100174endif
175
176ifndef PERF_DEBUG
Ingo Molnar1ea6f992013-10-07 09:38:28 +0200177 ifeq ($(feature-fortify-source), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200178 CFLAGS += -D_FORTIFY_SOURCE=2
179 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100180endif
181
Jiri Olsa2fe73742013-04-15 04:32:28 +0200182CFLAGS += -I$(src-perf)/util/include
183CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
184CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
185CFLAGS += -I$(srctree)/arch/$(ARCH)/include
186CFLAGS += -I$(srctree)/include/uapi
187CFLAGS += -I$(srctree)/include
Jiri Olsa7c537462013-05-24 14:35:23 +0200188
189# $(obj-perf) for generated common-cmds.h
190# $(obj-perf)/util for generated bison/flex headers
191ifneq ($(OUTPUT),)
Jiri Olsa2fe73742013-04-15 04:32:28 +0200192CFLAGS += -I$(obj-perf)/util
193CFLAGS += -I$(obj-perf)
Jiri Olsa7c537462013-05-24 14:35:23 +0200194endif
195
Jiri Olsa2fe73742013-04-15 04:32:28 +0200196CFLAGS += -I$(src-perf)/util
197CFLAGS += -I$(src-perf)
Robert Richter4e319022013-06-11 17:29:18 +0200198CFLAGS += -I$(LIB_INCLUDE)
Jiri Olsa7c537462013-05-24 14:35:23 +0200199
Jiri Olsa2fe73742013-04-15 04:32:28 +0200200CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
Jiri Olsa362493f2013-03-25 00:40:48 +0100201
Jiri Olsa4e22db42013-05-24 14:35:24 +0200202ifndef NO_BIONIC
Ingo Molnar78e9d652013-09-30 14:11:46 +0200203 $(feature_check,bionic)
204 ifeq ($(feature-bionic), 1)
205 BIONIC := 1
206 EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
207 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
208 endif
Jiri Olsa362493f2013-03-25 00:40:48 +0100209endif
Jiri Olsacf4cca12013-03-25 00:45:08 +0100210
211ifdef NO_LIBELF
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200212 NO_DWARF := 1
213 NO_DEMANGLE := 1
214 NO_LIBUNWIND := 1
Jiri Olsacf4cca12013-03-25 00:45:08 +0100215else
Ingo Molnar8f7f8002013-09-30 14:20:25 +0200216 ifeq ($(feature-libelf), 0)
Ingo Molnare12762c2013-10-07 10:34:20 +0200217 ifeq ($(feature-glibc), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200218 LIBC_SUPPORT := 1
219 endif
220 ifeq ($(BIONIC),1)
221 LIBC_SUPPORT := 1
222 endif
223 ifeq ($(LIBC_SUPPORT),1)
224 msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libelf-dev);
Jiri Olsacf4cca12013-03-25 00:45:08 +0100225
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200226 NO_LIBELF := 1
227 NO_DWARF := 1
228 NO_DEMANGLE := 1
229 else
230 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]/glibc-static);
231 endif
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200232 else
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200233 # for linking with debug library, run like:
234 # make DEBUG=1 LIBDW_DIR=/opt/libdw/
235 ifdef LIBDW_DIR
236 LIBDW_CFLAGS := -I$(LIBDW_DIR)/include
237 LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib
238 endif
Jiri Olsacf4cca12013-03-25 00:45:08 +0100239
Ingo Molnar8295d4e2013-10-07 10:35:39 +0200240 ifneq ($(feature-dwarf), 1)
Ingo Molnar50eed7a2013-09-30 14:11:16 +0200241 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);
242 NO_DWARF := 1
243 endif # Dwarf support
244 endif # SOURCE_LIBELF
Jiri Olsacf4cca12013-03-25 00:45:08 +0100245endif # NO_LIBELF
246
247ifndef NO_LIBELF
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200248 CFLAGS += -DHAVE_LIBELF_SUPPORT
249 FLAGS_LIBELF=$(CFLAGS) $(LDFLAGS) $(EXTLIBS)
Jiri Olsa779724f2013-03-25 00:48:14 +0100250
Ingo Molnar8869b172013-09-30 15:02:28 +0200251 ifeq ($(feature-libelf-mmap), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200252 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
253 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100254
Ingo Molnarb7bcef62013-09-30 14:35:27 +0200255 ifeq ($(feature-libelf-getphdrnum), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200256 CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT
257 endif
Jiri Olsa779724f2013-03-25 00:48:14 +0100258
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200259 # include ARCH specific config
260 -include $(src-perf)/arch/$(ARCH)/Makefile
261
262 ifndef NO_DWARF
263 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
264 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
265 NO_DWARF := 1
266 else
267 CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS)
268 LDFLAGS += $(LIBDW_LDFLAGS)
269 EXTLIBS += -lelf -ldw
270 endif # PERF_HAVE_DWARF_REGS
271 endif # NO_DWARF
Jiri Olsacf4cca12013-03-25 00:45:08 +0100272endif # NO_LIBELF
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100273
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100274ifndef NO_LIBELF
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200275 CFLAGS += -DHAVE_LIBELF_SUPPORT
Ingo Molnar8869b172013-09-30 15:02:28 +0200276 ifeq ($(feature-libelf-mmap), 1)
Ingo Molnarfb3d3332013-10-07 10:05:51 +0200277 CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
Ingo Molnarb7bcef62013-09-30 14:35:27 +0200278 endif
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100279endif # NO_LIBELF
280
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100281# There's only x86 (both 32 and 64) support for CFI unwind so far
282ifneq ($(ARCH),x86)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200283 NO_LIBUNWIND := 1
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100284endif
285
286ifndef NO_LIBUNWIND
Ingo Molnar058f9522013-09-30 14:45:44 +0200287 #
288 # For linking with debug library, run like:
289 #
290 # make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
291 #
Ingo Molnar308e1e72013-10-07 10:30:47 +0200292 ifdef LIBUNWIND_DIR
293 LIBUNWIND_CFLAGS := -I$(LIBUNWIND_DIR)/include
294 LIBUNWIND_LDFLAGS := -L$(LIBUNWIND_DIR)/lib
295 endif
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100296
Ingo Molnar058f9522013-09-30 14:45:44 +0200297 ifneq ($(feature-libunwind), 1)
Ingo Molnar308e1e72013-10-07 10:30:47 +0200298 msg := $(warning No libunwind found, disabling post unwind support. Please install libunwind-dev[el] >= 0.99);
299 NO_LIBUNWIND := 1
300 endif
301endif
Jiri Olsa0e433fe2013-03-25 00:53:03 +0100302
303ifndef NO_LIBUNWIND
Ingo Molnar89fe8082013-09-30 12:07:11 +0200304 CFLAGS += -DHAVE_LIBUNWIND_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200305 EXTLIBS += $(LIBUNWIND_LIBS)
306 CFLAGS += $(LIBUNWIND_CFLAGS)
307 LDFLAGS += $(LIBUNWIND_LDFLAGS)
Ingo Molnar058f9522013-09-30 14:45:44 +0200308endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100309
310ifndef NO_LIBAUDIT
Ingo Molnard795a652013-09-30 14:55:31 +0200311 ifneq ($(feature-libaudit), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200312 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
313 NO_LIBAUDIT := 1
314 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200315 CFLAGS += -DHAVE_LIBAUDIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200316 EXTLIBS += -laudit
317 endif
Jiri Olsaa8279522013-03-25 00:54:36 +0100318endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100319
320ifdef NO_NEWT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200321 NO_SLANG=1
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100322endif
323
324ifndef NO_SLANG
Ingo Molnarb9498b52013-09-30 14:57:54 +0200325 ifneq ($(feature-libslang), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200326 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
327 NO_SLANG := 1
328 else
329 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
330 CFLAGS += -I/usr/include/slang
Ingo Molnar89fe8082013-09-30 12:07:11 +0200331 CFLAGS += -DHAVE_SLANG_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200332 EXTLIBS += -lslang
333 endif
Jiri Olsa4a8f8882013-03-25 00:56:08 +0100334endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100335
336ifndef NO_GTK2
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200337 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell pkg-config --libs --cflags gtk+-2.0 2>/dev/null)
Ingo Molnar7ef9e052013-09-30 15:01:56 +0200338 ifneq ($(feature-gtk2), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200339 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
340 NO_GTK2 := 1
341 else
Ingo Molnarc7a79e92013-09-30 15:08:30 +0200342 ifeq ($(feature-gtk2-infobar), 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200343 CFLAGS += -DHAVE_GTK_INFO_BAR_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200344 endif
Ingo Molnar89fe8082013-09-30 12:07:11 +0200345 CFLAGS += -DHAVE_GTK2_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200346 CFLAGS += $(shell pkg-config --cflags gtk+-2.0 2>/dev/null)
347 EXTLIBS += $(shell pkg-config --libs gtk+-2.0 2>/dev/null)
348 endif
Jiri Olsa58cabf62013-03-18 00:09:24 +0100349endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100350
351grep-libs = $(filter -l%,$(1))
352strip-libs = $(filter-out -l%,$(1))
353
354ifdef NO_LIBPERL
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200355 CFLAGS += -DNO_LIBPERL
Jiri Olsa3082cb32013-03-18 00:19:44 +0100356else
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200357 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
358 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
359 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
360 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
361 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
Jiri Olsa3082cb32013-03-18 00:19:44 +0100362
Ingo Molnar7181a672013-09-30 15:15:36 +0200363 ifneq ($(feature-libperl), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200364 CFLAGS += -DNO_LIBPERL
365 NO_LIBPERL := 1
366 else
367 LDFLAGS += $(PERL_EMBED_LDFLAGS)
368 EXTLIBS += $(PERL_EMBED_LIBADD)
369 endif
Jiri Olsa3082cb32013-03-18 00:19:44 +0100370endif
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100371
372disable-python = $(eval $(disable-python_code))
373define disable-python_code
Jiri Olsa9c12cf92013-03-21 11:30:54 +0100374 CFLAGS += -DNO_LIBPYTHON
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100375 $(if $(1),$(warning No $(1) was found))
376 $(warning Python support will not be built)
377 NO_LIBPYTHON := 1
378endef
379
380override PYTHON := \
381 $(call get-executable-or-default,PYTHON,python)
382
383ifndef PYTHON
384 $(call disable-python,python interpreter)
385else
386
387 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
388
389 ifdef NO_LIBPYTHON
390 $(call disable-python)
391 else
392
393 override PYTHON_CONFIG := \
394 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON)-config)
395
396 ifndef PYTHON_CONFIG
397 $(call disable-python,python-config tool)
398 else
399
400 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
401
402 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
403 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
404 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
405 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
406 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
407
Ingo Molnar97341632013-09-30 15:18:37 +0200408 ifneq ($(feature-libpython), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100409 $(call disable-python,Python.h (for Python 2.x))
410 else
411
Ingo Molnar95d061c2013-09-30 15:40:04 +0200412 ifneq ($(feature-libpython-version), 1)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100413 $(warning Python 3 is not yet supported; please set)
414 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
415 $(warning If you also have Python 2 installed, then)
416 $(warning try something like:)
417 $(warning $(and ,))
418 $(warning $(and ,) make PYTHON=python2)
419 $(warning $(and ,))
420 $(warning Otherwise, disable Python support entirely:)
421 $(warning $(and ,))
422 $(warning $(and ,) make NO_LIBPYTHON=1)
423 $(warning $(and ,))
424 $(error $(and ,))
425 else
Jiri Olsa1e9f7aa2013-03-21 11:41:05 +0100426 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100427 EXTLIBS += $(PYTHON_EMBED_LIBADD)
Jiri Olsa7c537462013-05-24 14:35:23 +0200428 LANG_BINDINGS += $(obj-perf)python/perf.so
Jiri Olsa6e533cf2013-03-18 00:35:32 +0100429 endif
430 endif
431 endif
432 endif
433endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100434
435ifdef NO_DEMANGLE
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200436 CFLAGS += -DNO_DEMANGLE
Jiri Olsac3cf8362013-03-18 00:38:16 +0100437else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200438 ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200439 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200440 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200441 else
442 FLAGS_BFD=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -DPACKAGE='perf' -lbfd
Ingo Molnar3b7646e2013-09-30 15:53:31 +0200443 ifeq ($(feature-libbfd), 1)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200444 EXTLIBS += -lbfd
445 else
446 FLAGS_BFD_IBERTY=$(FLAGS_BFD) -liberty
447 has_bfd_iberty := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD_IBERTY),liberty)
448 ifeq ($(has_bfd_iberty),y)
449 EXTLIBS += -lbfd -liberty
450 else
451 FLAGS_BFD_IBERTY_Z=$(FLAGS_BFD_IBERTY) -lz
452 has_bfd_iberty_z := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD_IBERTY_Z),libz)
453 ifeq ($(has_bfd_iberty_z),y)
454 EXTLIBS += -lbfd -liberty -lz
455 else
456 FLAGS_CPLUS_DEMANGLE=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -liberty
457 has_cplus_demangle := $(call try-cc,$(SOURCE_CPLUS_DEMANGLE),$(FLAGS_CPLUS_DEMANGLE),demangle)
458 ifeq ($(has_cplus_demangle),y)
459 EXTLIBS += -liberty
Ingo Molnar89fe8082013-09-30 12:07:11 +0200460 CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200461 else
462 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
463 CFLAGS += -DNO_DEMANGLE
464 endif
465 endif
466 endif
467 endif
468 endif
Jiri Olsac3cf8362013-03-18 00:38:16 +0100469endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100470
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100471ifndef NO_ON_EXIT
Ingo Molnar34ef2162013-09-30 16:46:49 +0200472 ifeq ($(feature-on-exit), 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200473 CFLAGS += -DHAVE_ON_EXIT_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200474 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100475endif
476
477ifndef NO_BACKTRACE
Ingo Molnar4cc91172013-09-30 16:49:38 +0200478 ifeq ($(feature-backtrace), 1)
Ingo Molnar89fe8082013-09-30 12:07:11 +0200479 CFLAGS += -DHAVE_BACKTRACE_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200480 endif
Jiri Olsaa1c7c9e2013-03-18 00:41:04 +0100481endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100482
483ifndef NO_LIBNUMA
Ingo Molnar3ae069c2013-09-30 13:37:10 +0200484 ifeq ($(feature-libnuma), 0)
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200485 msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numa-libs-devel or libnuma-dev);
486 NO_LIBNUMA := 1
487 else
Ingo Molnar89fe8082013-09-30 12:07:11 +0200488 CFLAGS += -DHAVE_LIBNUMA_SUPPORT
Jiri Olsa8e1b3f62013-04-15 04:06:58 +0200489 EXTLIBS += -lnuma
490 endif
Jiri Olsa58a0abd2013-03-18 00:45:27 +0100491endif
Jiri Olsacd1c39f2013-03-18 00:56:01 +0100492
493# Among the variables below, these:
494# perfexecdir
495# template_dir
496# mandir
497# infodir
498# htmldir
499# ETC_PERFCONFIG (but not sysconfdir)
500# can be specified as a relative path some/where/else;
501# this is interpreted as relative to $(prefix) and "perf" at
502# runtime figures out where they are based on the path to the executable.
503# This can help installing the suite in a relocatable way.
504
505# Make the path relative to DESTDIR, not to prefix
506ifndef DESTDIR
507prefix = $(HOME)
508endif
509bindir_relative = bin
510bindir = $(prefix)/$(bindir_relative)
511mandir = share/man
512infodir = share/info
513perfexecdir = libexec/perf-core
514sharedir = $(prefix)/share
515template_dir = share/perf-core/templates
516htmldir = share/doc/perf-doc
517ifeq ($(prefix),/usr)
518sysconfdir = /etc
519ETC_PERFCONFIG = $(sysconfdir)/perfconfig
520else
521sysconfdir = $(prefix)/etc
522ETC_PERFCONFIG = etc/perfconfig
523endif
524lib = lib
525
526# Shell quote (do not use $(call) to accommodate ancient setups);
527ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
528DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
529bindir_SQ = $(subst ','\'',$(bindir))
530mandir_SQ = $(subst ','\'',$(mandir))
531infodir_SQ = $(subst ','\'',$(infodir))
532perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
533template_dir_SQ = $(subst ','\'',$(template_dir))
534htmldir_SQ = $(subst ','\'',$(htmldir))
535prefix_SQ = $(subst ','\'',$(prefix))
536sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
537
538ifneq ($(filter /%,$(firstword $(perfexecdir))),)
539perfexec_instdir = $(perfexecdir)
540else
541perfexec_instdir = $(prefix)/$(perfexecdir)
542endif
543perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))