diff options
author | Chris Phlipot <cphlipot0@gmail.com> | 2016-07-01 01:12:33 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2016-07-04 19:27:26 -0400 |
commit | fd01d06ae33be63cff7d133e650cd1eb32f1d548 (patch) | |
tree | ff9988f453f7187d9810cc33ed4768fd12094b53 | |
parent | b983d54473344a9ef524a231943478047a779796 (diff) |
tools lib subcmd: Respect WERROR=0 for build
this enables the workaround for compilers that generate warnings when
compiling libsubcmd.
Signed-off-by: Chris Phlipot <cphlipot0@gmail.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1467349955-1135-3-git-send-email-cphlipot0@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r-- | tools/lib/subcmd/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/lib/subcmd/Makefile b/tools/lib/subcmd/Makefile index a8103700c172..ce4b7e527566 100644 --- a/tools/lib/subcmd/Makefile +++ b/tools/lib/subcmd/Makefile | |||
@@ -19,7 +19,13 @@ MAKEFLAGS += --no-print-directory | |||
19 | LIBFILE = $(OUTPUT)libsubcmd.a | 19 | LIBFILE = $(OUTPUT)libsubcmd.a |
20 | 20 | ||
21 | CFLAGS := $(EXTRA_WARNINGS) $(EXTRA_CFLAGS) | 21 | CFLAGS := $(EXTRA_WARNINGS) $(EXTRA_CFLAGS) |
22 | CFLAGS += -ggdb3 -Wall -Wextra -std=gnu99 -Werror -O6 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fPIC | 22 | CFLAGS += -ggdb3 -Wall -Wextra -std=gnu99 -O6 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fPIC |
23 | |||
24 | # Treat warnings as errors unless directed not to | ||
25 | ifneq ($(WERROR),0) | ||
26 | CFLAGS += -Werror | ||
27 | endif | ||
28 | |||
23 | CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE | 29 | CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE |
24 | 30 | ||
25 | CFLAGS += -I$(srctree)/tools/include/ | 31 | CFLAGS += -I$(srctree)/tools/include/ |