]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
perf tools: Fix build against newer glibc
authorJosh Boyer <jwboyer@redhat.com>
Thu, 18 Aug 2011 11:37:21 +0000 (07:37 -0400)
committerLothar Waßmann <LW@KARO-electronics.de>
Fri, 24 May 2013 06:35:25 +0000 (08:35 +0200)
commit0a5a7ae4e3ad4da17468b8ad445dd5d43a0f5fc3
tree6afca710e6e860d5897c19a275a389ffad367821
parent969d72b2139c9c615ee1cbd3787cb2d9d5e6ca8b
perf tools: Fix build against newer glibc

Upstream glibc commit 295e904 added a definition for __attribute_const__
to cdefs.h.  This causes the following error when building perf:

util/include/linux/compiler.h:8:0: error: "__attribute_const__"
redefined [-Werror] /usr/include/sys/cdefs.h:226:0: note: this is the
location of the previous definition

Wrap __attribute_const__ in #ifndef as we do for __always_inline.

Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/20110818113720.GL2227@zod.bos.redhat.com
Signed-off-by: Josh Boyer <jwboyer@redhat.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/include/linux/compiler.h