From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755012AbcGEKWx (ORCPT ); Tue, 5 Jul 2016 06:22:53 -0400 Received: from terminus.zytor.com ([198.137.202.10]:35390 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754530AbcGEKWv (ORCPT ); Tue, 5 Jul 2016 06:22:51 -0400 Date: Tue, 5 Jul 2016 03:22:21 -0700 From: tip-bot for Chris Phlipot Message-ID: Cc: hpa@zytor.com, acme@redhat.com, cphlipot0@gmail.com, mingo@kernel.org, linux-kernel@vger.kernel.org, tglx@linutronix.de, peterz@infradead.org Reply-To: linux-kernel@vger.kernel.org, cphlipot0@gmail.com, hpa@zytor.com, acme@redhat.com, mingo@kernel.org, tglx@linutronix.de, peterz@infradead.org In-Reply-To: <1467349955-1135-2-git-send-email-cphlipot0@gmail.com> References: <1467349955-1135-2-git-send-email-cphlipot0@gmail.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] tools lib api: Respect WERROR=0 for build Git-Commit-ID: b983d54473344a9ef524a231943478047a779796 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: b983d54473344a9ef524a231943478047a779796 Gitweb: http://git.kernel.org/tip/b983d54473344a9ef524a231943478047a779796 Author: Chris Phlipot AuthorDate: Thu, 30 Jun 2016 22:12:32 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 4 Jul 2016 20:27:26 -0300 tools lib api: Respect WERROR=0 for build This enables the workaround for compilers that generate warnings when compiling libapi. Signed-off-by: Chris Phlipot Cc: Peter Zijlstra Link: http://lkml.kernel.org/r/1467349955-1135-2-git-send-email-cphlipot0@gmail.com Signed-off-by: Arnaldo Carvalho de Melo --- tools/lib/api/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tools/lib/api/Makefile b/tools/lib/api/Makefile index 67ff93e..c7ceea6 100644 --- a/tools/lib/api/Makefile +++ b/tools/lib/api/Makefile @@ -17,7 +17,13 @@ MAKEFLAGS += --no-print-directory LIBFILE = $(OUTPUT)libapi.a CFLAGS := $(EXTRA_WARNINGS) $(EXTRA_CFLAGS) -CFLAGS += -ggdb3 -Wall -Wextra -std=gnu99 -Werror -O6 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fPIC +CFLAGS += -ggdb3 -Wall -Wextra -std=gnu99 -O6 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fPIC + +# Treat warnings as errors unless directed not to +ifneq ($(WERROR),0) + CFLAGS += -Werror +endif + CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 CFLAGS += -I$(srctree)/tools/lib/api