From: Alistair Francis <alistair.francis@xilinx.com>
To: xen-devel@lists.xenproject.org
Cc: wei.liu2@citrix.com, cardoe@cardoe.com,
ian.jackson@eu.citrix.com,
Alistair Francis <alistair.francis@xilinx.com>,
imhy.yang@gmail.com, rshriram@cs.ubc.ca, alistair23@gmail.com
Subject: [PATCH v2 1/5] Remove hardcoded strict -Werror checking
Date: Tue, 20 Dec 2016 11:46:56 -0800 [thread overview]
Message-ID: <1482263220-3233-2-git-send-email-alistair.francis@xilinx.com> (raw)
In-Reply-To: <1482263220-3233-1-git-send-email-alistair.francis@xilinx.com>
Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
---
Config.mk | 2 +-
tools/blktap2/drivers/Makefile | 1 -
tools/libxl/Makefile | 2 +-
tools/xentrace/Makefile | 2 --
4 files changed, 2 insertions(+), 5 deletions(-)
diff --git a/Config.mk b/Config.mk
index 3ec7367..e3cda81 100644
--- a/Config.mk
+++ b/Config.mk
@@ -34,7 +34,7 @@ CONFIG_$(XEN_OS) := y
SHELL ?= /bin/sh
# Tools to run on system hosting the build
-HOSTCFLAGS = -Wall -Werror -Wstrict-prototypes -O2 -fomit-frame-pointer
+HOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
HOSTCFLAGS += -fno-strict-aliasing
DISTDIR ?= $(XEN_ROOT)/dist
diff --git a/tools/blktap2/drivers/Makefile b/tools/blktap2/drivers/Makefile
index 5328c40..7a62a3f 100644
--- a/tools/blktap2/drivers/Makefile
+++ b/tools/blktap2/drivers/Makefile
@@ -9,7 +9,6 @@ QCOW_UTIL = img2qcow qcow-create qcow2raw
LOCK_UTIL = lock-util
INST_DIR = $(sbindir)
-CFLAGS += -Werror
CFLAGS += -Wno-unused
CFLAGS += -fno-strict-aliasing
CFLAGS += -I$(BLKTAP_ROOT)/include -I$(BLKTAP_ROOT)/drivers
diff --git a/tools/libxl/Makefile b/tools/libxl/Makefile
index 91e2f97..e8a37ef 100644
--- a/tools/libxl/Makefile
+++ b/tools/libxl/Makefile
@@ -11,7 +11,7 @@ MINOR = 0
XLUMAJOR = 4.9
XLUMINOR = 0
-CFLAGS += -Werror -Wno-format-zero-length -Wmissing-declarations \
+CFLAGS += -Wno-format-zero-length -Wmissing-declarations \
-Wno-declaration-after-statement -Wformat-nonliteral
CFLAGS += -I. -fPIC
diff --git a/tools/xentrace/Makefile b/tools/xentrace/Makefile
index c8c36a8..ac5c534 100644
--- a/tools/xentrace/Makefile
+++ b/tools/xentrace/Makefile
@@ -1,8 +1,6 @@
XEN_ROOT=$(CURDIR)/../..
include $(XEN_ROOT)/tools/Rules.mk
-CFLAGS += -Werror
-
CFLAGS += $(CFLAGS_libxenevtchn)
CFLAGS += $(CFLAGS_libxenctrl)
LDLIBS += $(LDLIBS_libxenevtchn)
--
2.7.4
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
next prev parent reply other threads:[~2016-12-20 19:49 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-12-20 19:46 [PATCH v2 0/5] General Build Fixes Alistair Francis
2016-12-20 19:46 ` Alistair Francis [this message]
2016-12-20 20:06 ` [PATCH v2 1/5] Remove hardcoded strict -Werror checking Doug Goldstein
2016-12-20 20:16 ` Andrew Cooper
2016-12-21 0:03 ` Alistair Francis
2016-12-21 3:15 ` Doug Goldstein
2016-12-21 11:56 ` Ian Jackson
2016-12-22 8:41 ` Jan Beulich
2016-12-22 19:12 ` Alistair Francis
2016-12-22 19:22 ` Ian Jackson
2016-12-22 21:12 ` Alistair Francis
2016-12-22 21:15 ` Alistair Francis
2016-12-22 21:41 ` Alistair Francis
2016-12-22 21:47 ` Andrew Cooper
2016-12-22 22:00 ` Doug Goldstein
2016-12-22 22:11 ` Alistair Francis
2016-12-22 22:16 ` Alistair Francis
2016-12-27 15:40 ` Jan Beulich
2016-12-27 15:53 ` Jan Beulich
2016-12-27 15:55 ` Doug Goldstein
2016-12-27 17:07 ` Andrew Cooper
2016-12-29 17:10 ` George Dunlap
2016-12-29 17:30 ` Andrew Cooper
2017-01-03 7:39 ` Jan Beulich
2017-01-03 14:38 ` Ian Jackson
2017-01-03 14:52 ` Jan Beulich
2016-12-20 19:46 ` [PATCH v2 2/5] config/StdGNU.mk: Allows users to pass in EXTRA_CFLAGS Alistair Francis
2016-12-20 19:51 ` Doug Goldstein
2016-12-21 12:05 ` Wei Liu
2016-12-22 8:43 ` Jan Beulich
2016-12-20 19:46 ` [PATCH v2 3/5] tools/blktap2/vhd: Remove unused struct stat stats Alistair Francis
2016-12-20 19:51 ` Doug Goldstein
2016-12-20 19:46 ` [PATCH v2 4/5] tools/blktap2: Fix missing header file Alistair Francis
2016-12-20 19:52 ` Konrad Rzeszutek Wilk
2016-12-20 19:53 ` Doug Goldstein
2016-12-20 19:47 ` [PATCH v2 5/5] tools/blktap2/drivers: Remove non-existent sys/sysctl.h include Alistair Francis
2016-12-22 10:54 ` Wei Liu
2016-12-22 15:44 ` Alistair Francis
2016-12-23 11:10 ` Wei Liu
2016-12-23 22:09 ` [PATCH v2 5/5] tools/blktap2/drivers: Removenon-existent " alistair23
2016-12-25 15:57 ` Wei Liu
2016-12-22 15:46 ` [PATCH v2 5/5] tools/blktap2/drivers: Remove non-existent " Doug Goldstein
2016-12-20 19:53 ` [PATCH v2 0/5] General Build Fixes Konrad Rzeszutek Wilk
2016-12-20 19:58 ` Alistair Francis
2016-12-22 11:12 ` Wei Liu
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=1482263220-3233-2-git-send-email-alistair.francis@xilinx.com \
--to=alistair.francis@xilinx.com \
--cc=alistair23@gmail.com \
--cc=cardoe@cardoe.com \
--cc=ian.jackson@eu.citrix.com \
--cc=imhy.yang@gmail.com \
--cc=rshriram@cs.ubc.ca \
--cc=wei.liu2@citrix.com \
--cc=xen-devel@lists.xenproject.org \
/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
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).