misc: mic: depend on X86 for both host and card drivers.
[deliverable/linux.git] / tools / perf / config / Makefile
1 uname_M := $(shell uname -m 2>/dev/null || echo not)
2
3 ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ \
4 -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/ )
8 NO_PERF_REGS := 1
9 CFLAGS := $(EXTRA_CFLAGS) $(EXTRA_WARNINGS)
10
11 # Additional ARCH settings for x86
12 ifeq ($(ARCH),i386)
13 override ARCH := x86
14 NO_PERF_REGS := 0
15 LIBUNWIND_LIBS = -lunwind -lunwind-x86
16 endif
17
18 ifeq ($(ARCH),x86_64)
19 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
26 CFLAGS += -DARCH_X86_64
27 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
31 endif
32
33 ifeq ($(NO_PERF_REGS),0)
34 CFLAGS += -DHAVE_PERF_REGS
35 endif
36
37 ifeq ($(src-perf),)
38 src-perf := $(srctree)/tools/perf
39 endif
40
41 ifeq ($(obj-perf),)
42 obj-perf := $(OUTPUT)
43 endif
44
45 ifneq ($(obj-perf),)
46 obj-perf := $(abspath $(obj-perf))/
47 endif
48
49 LIB_INCLUDE := $(srctree)/tools/lib/
50
51 # include ARCH specific config
52 -include $(src-perf)/arch/$(ARCH)/Makefile
53
54 include $(src-perf)/config/feature-tests.mak
55 include $(src-perf)/config/utilities.mak
56
57 ifeq ($(call get-executable,$(FLEX)),)
58 dummy := $(error Error: $(FLEX) is missing on this system, please install it)
59 endif
60
61 ifeq ($(call get-executable,$(BISON)),)
62 dummy := $(error Error: $(BISON) is missing on this system, please install it)
63 endif
64
65 # Treat warnings as errors unless directed not to
66 ifneq ($(WERROR),0)
67 CFLAGS += -Werror
68 endif
69
70 ifeq ("$(origin DEBUG)", "command line")
71 PERF_DEBUG = $(DEBUG)
72 endif
73 ifndef PERF_DEBUG
74 CFLAGS += -O6
75 endif
76
77 ifdef PARSER_DEBUG
78 PARSER_DEBUG_BISON := -t
79 PARSER_DEBUG_FLEX := -d
80 CFLAGS += -DPARSER_DEBUG
81 endif
82
83 CFLAGS += -fno-omit-frame-pointer
84 CFLAGS += -ggdb3
85 CFLAGS += -funwind-tables
86 CFLAGS += -Wall
87 CFLAGS += -Wextra
88 CFLAGS += -std=gnu99
89
90 EXTLIBS = -lelf -lpthread -lrt -lm
91
92 ifeq ($(call try-cc,$(SOURCE_HELLO),$(CFLAGS) -Werror -fstack-protector-all,-fstack-protector-all),y)
93 CFLAGS += -fstack-protector-all
94 endif
95
96 ifeq ($(call try-cc,$(SOURCE_HELLO),$(CFLAGS) -Werror -Wstack-protector,-Wstack-protector),y)
97 CFLAGS += -Wstack-protector
98 endif
99
100 ifeq ($(call try-cc,$(SOURCE_HELLO),$(CFLAGS) -Werror -Wvolatile-register-var,-Wvolatile-register-var),y)
101 CFLAGS += -Wvolatile-register-var
102 endif
103
104 ifndef PERF_DEBUG
105 ifeq ($(call try-cc,$(SOURCE_HELLO),$(CFLAGS) -D_FORTIFY_SOURCE=2,-D_FORTIFY_SOURCE=2),y)
106 CFLAGS += -D_FORTIFY_SOURCE=2
107 endif
108 endif
109
110 CFLAGS += -I$(src-perf)/util/include
111 CFLAGS += -I$(src-perf)/arch/$(ARCH)/include
112 CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi
113 CFLAGS += -I$(srctree)/arch/$(ARCH)/include
114 CFLAGS += -I$(srctree)/include/uapi
115 CFLAGS += -I$(srctree)/include
116
117 # $(obj-perf) for generated common-cmds.h
118 # $(obj-perf)/util for generated bison/flex headers
119 ifneq ($(OUTPUT),)
120 CFLAGS += -I$(obj-perf)/util
121 CFLAGS += -I$(obj-perf)
122 endif
123
124 CFLAGS += -I$(src-perf)/util
125 CFLAGS += -I$(src-perf)
126 CFLAGS += -I$(LIB_INCLUDE)
127
128 CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
129
130 ifndef NO_BIONIC
131 ifeq ($(call try-cc,$(SOURCE_BIONIC),$(CFLAGS),bionic),y)
132 BIONIC := 1
133 EXTLIBS := $(filter-out -lrt,$(EXTLIBS))
134 EXTLIBS := $(filter-out -lpthread,$(EXTLIBS))
135 endif
136 endif # NO_BIONIC
137
138 ifdef NO_LIBELF
139 NO_DWARF := 1
140 NO_DEMANGLE := 1
141 NO_LIBUNWIND := 1
142 else
143 FLAGS_LIBELF=$(CFLAGS) $(LDFLAGS) $(EXTLIBS)
144 ifneq ($(call try-cc,$(SOURCE_LIBELF),$(FLAGS_LIBELF),libelf),y)
145 FLAGS_GLIBC=$(CFLAGS) $(LDFLAGS)
146 ifeq ($(call try-cc,$(SOURCE_GLIBC),$(FLAGS_GLIBC),glibc),y)
147 LIBC_SUPPORT := 1
148 endif
149 ifeq ($(BIONIC),1)
150 LIBC_SUPPORT := 1
151 endif
152 ifeq ($(LIBC_SUPPORT),1)
153 msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libelf-dev);
154
155 NO_LIBELF := 1
156 NO_DWARF := 1
157 NO_DEMANGLE := 1
158 else
159 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]/glibc-static);
160 endif
161 else
162 # for linking with debug library, run like:
163 # make DEBUG=1 LIBDW_DIR=/opt/libdw/
164 ifdef LIBDW_DIR
165 LIBDW_CFLAGS := -I$(LIBDW_DIR)/include
166 LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib
167 endif
168
169 FLAGS_DWARF=$(CFLAGS) $(LIBDW_CFLAGS) -ldw -lz -lelf $(LIBDW_LDFLAGS) $(LDFLAGS) $(EXTLIBS)
170 ifneq ($(call try-cc,$(SOURCE_DWARF),$(FLAGS_DWARF),libdw),y)
171 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);
172 NO_DWARF := 1
173 endif # Dwarf support
174 endif # SOURCE_LIBELF
175 endif # NO_LIBELF
176
177 ifndef NO_LIBELF
178 CFLAGS += -DLIBELF_SUPPORT
179 FLAGS_LIBELF=$(CFLAGS) $(LDFLAGS) $(EXTLIBS)
180 ifeq ($(call try-cc,$(SOURCE_ELF_MMAP),$(FLAGS_LIBELF),-DLIBELF_MMAP),y)
181 CFLAGS += -DLIBELF_MMAP
182 endif
183
184 # include ARCH specific config
185 -include $(src-perf)/arch/$(ARCH)/Makefile
186
187 ifndef NO_DWARF
188 ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined)
189 msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled);
190 NO_DWARF := 1
191 else
192 CFLAGS += -DDWARF_SUPPORT $(LIBDW_CFLAGS)
193 LDFLAGS += $(LIBDW_LDFLAGS)
194 EXTLIBS += -lelf -ldw
195 endif # PERF_HAVE_DWARF_REGS
196 endif # NO_DWARF
197
198 endif # NO_LIBELF
199
200 ifndef NO_LIBELF
201 CFLAGS += -DLIBELF_SUPPORT
202 FLAGS_LIBELF=$(CFLAGS) $(LDFLAGS) $(EXTLIBS)
203 ifeq ($(call try-cc,$(SOURCE_ELF_MMAP),$(FLAGS_LIBELF),-DLIBELF_MMAP),y)
204 CFLAGS += -DLIBELF_MMAP
205 endif # try-cc
206 endif # NO_LIBELF
207
208 # There's only x86 (both 32 and 64) support for CFI unwind so far
209 ifneq ($(ARCH),x86)
210 NO_LIBUNWIND := 1
211 endif
212
213 ifndef NO_LIBUNWIND
214 # for linking with debug library, run like:
215 # make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/
216 ifdef LIBUNWIND_DIR
217 LIBUNWIND_CFLAGS := -I$(LIBUNWIND_DIR)/include
218 LIBUNWIND_LDFLAGS := -L$(LIBUNWIND_DIR)/lib
219 endif
220
221 FLAGS_UNWIND=$(LIBUNWIND_CFLAGS) $(CFLAGS) $(LIBUNWIND_LDFLAGS) $(LDFLAGS) $(EXTLIBS) $(LIBUNWIND_LIBS)
222 ifneq ($(call try-cc,$(SOURCE_LIBUNWIND),$(FLAGS_UNWIND),libunwind),y)
223 msg := $(warning No libunwind found, disabling post unwind support. Please install libunwind-dev[el] >= 0.99);
224 NO_LIBUNWIND := 1
225 endif # Libunwind support
226 endif # NO_LIBUNWIND
227
228 ifndef NO_LIBUNWIND
229 CFLAGS += -DLIBUNWIND_SUPPORT
230 EXTLIBS += $(LIBUNWIND_LIBS)
231 CFLAGS += $(LIBUNWIND_CFLAGS)
232 LDFLAGS += $(LIBUNWIND_LDFLAGS)
233 endif # NO_LIBUNWIND
234
235 ifndef NO_LIBAUDIT
236 FLAGS_LIBAUDIT = $(CFLAGS) $(LDFLAGS) -laudit
237 ifneq ($(call try-cc,$(SOURCE_LIBAUDIT),$(FLAGS_LIBAUDIT),libaudit),y)
238 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
239 NO_LIBAUDIT := 1
240 else
241 CFLAGS += -DLIBAUDIT_SUPPORT
242 EXTLIBS += -laudit
243 endif
244 endif
245
246 ifdef NO_NEWT
247 NO_SLANG=1
248 endif
249
250 ifndef NO_SLANG
251 FLAGS_SLANG=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -I/usr/include/slang -lslang
252 ifneq ($(call try-cc,$(SOURCE_SLANG),$(FLAGS_SLANG),libslang),y)
253 msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev);
254 NO_SLANG := 1
255 else
256 # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h
257 CFLAGS += -I/usr/include/slang
258 CFLAGS += -DSLANG_SUPPORT
259 EXTLIBS += -lslang
260 endif
261 endif
262
263 ifndef NO_GTK2
264 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell pkg-config --libs --cflags gtk+-2.0 2>/dev/null)
265 ifneq ($(call try-cc,$(SOURCE_GTK2),$(FLAGS_GTK2),gtk2),y)
266 msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev);
267 NO_GTK2 := 1
268 else
269 ifeq ($(call try-cc,$(SOURCE_GTK2_INFOBAR),$(FLAGS_GTK2),-DHAVE_GTK_INFO_BAR),y)
270 CFLAGS += -DHAVE_GTK_INFO_BAR
271 endif
272 CFLAGS += -DGTK2_SUPPORT
273 CFLAGS += $(shell pkg-config --cflags gtk+-2.0 2>/dev/null)
274 EXTLIBS += $(shell pkg-config --libs gtk+-2.0 2>/dev/null)
275 endif
276 endif
277
278 grep-libs = $(filter -l%,$(1))
279 strip-libs = $(filter-out -l%,$(1))
280
281 ifdef NO_LIBPERL
282 CFLAGS += -DNO_LIBPERL
283 else
284 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
285 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
286 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
287 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
288 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
289
290 ifneq ($(call try-cc,$(SOURCE_PERL_EMBED),$(FLAGS_PERL_EMBED),perl),y)
291 CFLAGS += -DNO_LIBPERL
292 NO_LIBPERL := 1
293 else
294 LDFLAGS += $(PERL_EMBED_LDFLAGS)
295 EXTLIBS += $(PERL_EMBED_LIBADD)
296 endif
297 endif
298
299 disable-python = $(eval $(disable-python_code))
300 define disable-python_code
301 CFLAGS += -DNO_LIBPYTHON
302 $(if $(1),$(warning No $(1) was found))
303 $(warning Python support will not be built)
304 NO_LIBPYTHON := 1
305 endef
306
307 override PYTHON := \
308 $(call get-executable-or-default,PYTHON,python)
309
310 ifndef PYTHON
311 $(call disable-python,python interpreter)
312 else
313
314 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
315
316 ifdef NO_LIBPYTHON
317 $(call disable-python)
318 else
319
320 override PYTHON_CONFIG := \
321 $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON)-config)
322
323 ifndef PYTHON_CONFIG
324 $(call disable-python,python-config tool)
325 else
326
327 PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG))
328
329 PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
330 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
331 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
332 PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
333 FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
334
335 ifneq ($(call try-cc,$(SOURCE_PYTHON_EMBED),$(FLAGS_PYTHON_EMBED),python),y)
336 $(call disable-python,Python.h (for Python 2.x))
337 else
338
339 ifneq ($(call try-cc,$(SOURCE_PYTHON_VERSION),$(FLAGS_PYTHON_EMBED),python version),y)
340 $(warning Python 3 is not yet supported; please set)
341 $(warning PYTHON and/or PYTHON_CONFIG appropriately.)
342 $(warning If you also have Python 2 installed, then)
343 $(warning try something like:)
344 $(warning $(and ,))
345 $(warning $(and ,) make PYTHON=python2)
346 $(warning $(and ,))
347 $(warning Otherwise, disable Python support entirely:)
348 $(warning $(and ,))
349 $(warning $(and ,) make NO_LIBPYTHON=1)
350 $(warning $(and ,))
351 $(error $(and ,))
352 else
353 LDFLAGS += $(PYTHON_EMBED_LDFLAGS)
354 EXTLIBS += $(PYTHON_EMBED_LIBADD)
355 LANG_BINDINGS += $(obj-perf)python/perf.so
356 endif
357 endif
358 endif
359 endif
360 endif
361
362 ifdef NO_DEMANGLE
363 CFLAGS += -DNO_DEMANGLE
364 else
365 ifdef HAVE_CPLUS_DEMANGLE
366 EXTLIBS += -liberty
367 CFLAGS += -DHAVE_CPLUS_DEMANGLE
368 else
369 FLAGS_BFD=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -DPACKAGE='perf' -lbfd
370 has_bfd := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD),libbfd)
371 ifeq ($(has_bfd),y)
372 EXTLIBS += -lbfd
373 else
374 FLAGS_BFD_IBERTY=$(FLAGS_BFD) -liberty
375 has_bfd_iberty := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD_IBERTY),liberty)
376 ifeq ($(has_bfd_iberty),y)
377 EXTLIBS += -lbfd -liberty
378 else
379 FLAGS_BFD_IBERTY_Z=$(FLAGS_BFD_IBERTY) -lz
380 has_bfd_iberty_z := $(call try-cc,$(SOURCE_BFD),$(FLAGS_BFD_IBERTY_Z),libz)
381 ifeq ($(has_bfd_iberty_z),y)
382 EXTLIBS += -lbfd -liberty -lz
383 else
384 FLAGS_CPLUS_DEMANGLE=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) -liberty
385 has_cplus_demangle := $(call try-cc,$(SOURCE_CPLUS_DEMANGLE),$(FLAGS_CPLUS_DEMANGLE),demangle)
386 ifeq ($(has_cplus_demangle),y)
387 EXTLIBS += -liberty
388 CFLAGS += -DHAVE_CPLUS_DEMANGLE
389 else
390 msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling)
391 CFLAGS += -DNO_DEMANGLE
392 endif
393 endif
394 endif
395 endif
396 endif
397 endif
398
399 ifndef NO_STRLCPY
400 ifeq ($(call try-cc,$(SOURCE_STRLCPY),,-DHAVE_STRLCPY),y)
401 CFLAGS += -DHAVE_STRLCPY
402 endif
403 endif
404
405 ifndef NO_ON_EXIT
406 ifeq ($(call try-cc,$(SOURCE_ON_EXIT),,-DHAVE_ON_EXIT),y)
407 CFLAGS += -DHAVE_ON_EXIT
408 endif
409 endif
410
411 ifndef NO_BACKTRACE
412 ifeq ($(call try-cc,$(SOURCE_BACKTRACE),,-DBACKTRACE_SUPPORT),y)
413 CFLAGS += -DBACKTRACE_SUPPORT
414 endif
415 endif
416
417 ifndef NO_LIBNUMA
418 FLAGS_LIBNUMA = $(CFLAGS) $(LDFLAGS) -lnuma
419 ifneq ($(call try-cc,$(SOURCE_LIBNUMA),$(FLAGS_LIBNUMA),libnuma),y)
420 msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numa-libs-devel or libnuma-dev);
421 NO_LIBNUMA := 1
422 else
423 CFLAGS += -DLIBNUMA_SUPPORT
424 EXTLIBS += -lnuma
425 endif
426 endif
427
428 # Among the variables below, these:
429 # perfexecdir
430 # template_dir
431 # mandir
432 # infodir
433 # htmldir
434 # ETC_PERFCONFIG (but not sysconfdir)
435 # can be specified as a relative path some/where/else;
436 # this is interpreted as relative to $(prefix) and "perf" at
437 # runtime figures out where they are based on the path to the executable.
438 # This can help installing the suite in a relocatable way.
439
440 # Make the path relative to DESTDIR, not to prefix
441 ifndef DESTDIR
442 prefix = $(HOME)
443 endif
444 bindir_relative = bin
445 bindir = $(prefix)/$(bindir_relative)
446 mandir = share/man
447 infodir = share/info
448 perfexecdir = libexec/perf-core
449 sharedir = $(prefix)/share
450 template_dir = share/perf-core/templates
451 htmldir = share/doc/perf-doc
452 ifeq ($(prefix),/usr)
453 sysconfdir = /etc
454 ETC_PERFCONFIG = $(sysconfdir)/perfconfig
455 else
456 sysconfdir = $(prefix)/etc
457 ETC_PERFCONFIG = etc/perfconfig
458 endif
459 lib = lib
460
461 # Shell quote (do not use $(call) to accommodate ancient setups);
462 ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG))
463 DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
464 bindir_SQ = $(subst ','\'',$(bindir))
465 mandir_SQ = $(subst ','\'',$(mandir))
466 infodir_SQ = $(subst ','\'',$(infodir))
467 perfexecdir_SQ = $(subst ','\'',$(perfexecdir))
468 template_dir_SQ = $(subst ','\'',$(template_dir))
469 htmldir_SQ = $(subst ','\'',$(htmldir))
470 prefix_SQ = $(subst ','\'',$(prefix))
471 sysconfdir_SQ = $(subst ','\'',$(sysconfdir))
472
473 ifneq ($(filter /%,$(firstword $(perfexecdir))),)
474 perfexec_instdir = $(perfexecdir)
475 else
476 perfexec_instdir = $(prefix)/$(perfexecdir)
477 endif
478 perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))
This page took 0.039283 seconds and 5 git commands to generate.