From: Namhyung Kim <namhyung@kernel.org> To: "Kirill A. Shutemov" <kirill@shutemov.name> Cc: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>, Peter Zijlstra <a.p.zijlstra@chello.nl>, Paul Mackerras <paulus@samba.org>, Ingo Molnar <mingo@redhat.com>, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/2] perf: fix build error Date: Tue, 24 Jul 2012 09:38:24 +0900 [thread overview] Message-ID: <874noy6lj3.fsf@sejong.aot.lge.com> (raw) In-Reply-To: <20120723210407.GA25186@shutemov.name> (Kirill A. Shutemov's message of "Tue, 24 Jul 2012 00:04:07 +0300") Hi, Kirill On Tue, 24 Jul 2012 00:04:07 +0300, Kirill A. Shutemov wrote: > From 14f476dddcb36bca93a50ef1a3341e2c60836e0a Mon Sep 17 00:00:00 2001 > From: "Kirill A. Shutemov" <kirill@shutemov.name> > Date: Mon, 23 Jul 2012 17:39:11 +0300 > Subject: [PATCH 1/2] perf: fix build error > MIME-Version: 1.0 > Content-Type: text/plain; charset=UTF-8 > Content-Transfer-Encoding: 8bit > > Bison 2.6 started to generate parse_events_parse() declaration in > header. In this case we have redundant redeclaration: > > util/parse-events.c:29:5: error: redundant redeclaration of ‘parse_events_parse’ [-Werror=redundant-decls] > In file included from util/parse-events.c:14:0: > util/parse-events-bison.h:99:5: note: previous declaration of ‘parse_events_parse’ was here > cc1: all warnings being treated as errors > > Let's disable -Wredundant-decls for util/parse-events.c since it > includes header we can't control. > It'd be better if the subject line is more descriptive. Like: "perf tools: fix a build error with bison 2.6" Other than that, looks good to me. Thanks, Namhyung > Signed-off-by: Kirill A. Shutemov <kirill@shutemov.name> > --- > tools/perf/Makefile | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/tools/perf/Makefile b/tools/perf/Makefile > index 75d74e5..1091192 100644 > --- a/tools/perf/Makefile > +++ b/tools/perf/Makefile > @@ -803,6 +803,9 @@ $(OUTPUT)ui/browsers/map.o: ui/browsers/map.c $(OUTPUT)PERF-CFLAGS > $(OUTPUT)util/rbtree.o: ../../lib/rbtree.c $(OUTPUT)PERF-CFLAGS > $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DETC_PERFCONFIG='"$(ETC_PERFCONFIG_SQ)"' $< > > +$(OUTPUT)util/parse-events.o: util/parse-events.c $(OUTPUT)PERF-CFLAGS > + $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -Wno-redundant-decls $< > + > $(OUTPUT)util/scripting-engines/trace-event-perl.o: util/scripting-engines/trace-event-perl.c $(OUTPUT)PERF-CFLAGS > $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $(PERL_EMBED_CCOPTS) -Wno-redundant-decls -Wno-strict-prototypes -Wno-unused-parameter -Wno-shadow $<
next prev parent reply other threads:[~2012-07-24 0:43 UTC|newest] Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top 2012-07-23 15:00 Kirill A. Shutemov 2012-07-23 15:00 ` [PATCH 2/2] perf: use XSI-complaint version of strerror_r() instead of GNU-specific Kirill A. Shutemov 2012-07-23 18:00 ` Ulrich Drepper 2012-07-23 20:31 ` Kirill A. Shutemov 2012-07-23 20:48 ` Ulrich Drepper 2012-07-23 21:06 ` Kirill A. Shutemov 2012-07-23 22:03 ` Ulrich Drepper 2012-07-24 0:56 ` Namhyung Kim 2012-07-25 19:30 ` [tip:perf/core] perf tools: " tip-bot for Kirill A. Shutemov 2012-07-23 18:02 ` [PATCH 1/2] perf: fix build error Arnaldo Carvalho de Melo 2012-07-23 18:16 ` Kirill A. Shutemov 2012-07-23 18:18 ` Arnaldo Carvalho de Melo 2012-07-23 19:51 ` Kirill A. Shutemov 2012-07-23 21:04 ` Kirill A. Shutemov 2012-07-24 0:38 ` Namhyung Kim [this message] 2012-07-25 19:30 ` [tip:perf/core] perf tools: Fix build error with bison 2.6 tip-bot for Kirill A. Shutemov
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=874noy6lj3.fsf@sejong.aot.lge.com \ --to=namhyung@kernel.org \ --cc=a.p.zijlstra@chello.nl \ --cc=acme@ghostprotocols.net \ --cc=kirill@shutemov.name \ --cc=linux-kernel@vger.kernel.org \ --cc=mingo@redhat.com \ --cc=paulus@samba.org \ --subject='Re: [PATCH 1/2] perf: fix build error' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.