From: Ian Campbell <Ian.Campbell@citrix.com>
To: Olaf Hering <olaf@aepfle.de>
Cc: Wei Liu <wei.liu2@citrix.com>, Keir Fraser <keir@xen.org>,
David Scott <dave.scott@eu.citrix.com>, Tim Deegan <tim@xen.org>,
Stefano Stabellini <stefano.stabellini@eu.citrix.com>,
Ian Jackson <ian.jackson@eu.citrix.com>,
xen-devel@lists.xen.org, Jan Beulich <jbeulich@suse.com>,
Samuel Thibault <samuel.thibault@ens-lyon.org>
Subject: Re: [PATCH 28/28] Separate runtime debug output from debug symbols
Date: Thu, 2 Oct 2014 15:15:41 +0100 [thread overview]
Message-ID: <1412259341.17146.18.camel@citrix.com> (raw)
In-Reply-To: <1412181690-19609-29-git-send-email-olaf@aepfle.de>
On Wed, 2014-10-01 at 18:41 +0200, Olaf Hering wrote:
> With this change debug and debug_symbols is used consistently.
> With 'make debug=yn debug_symbols=yn'
What does this "yn" syntax do?
It's not clear to me what "this change" actually is, perhaps I'm just
lacking the context, but could you explain in the commit message what it
is you are actually changing. (You could assume I'd never heard of
debug_symbols before today, because I hadn't...)
> my rebuild time and diskspace
> usage goes down:
> 105275K clean xen.git checkout.
> y 1247041K build time: 5:57
> n 812112K build time: 5:34
>
> No change in behaviour is expected by that patch for tools and xen.
> For stubdom CFLAGS change from -O1 to O2 with debug=n.
>
> Signed-off-by: Olaf Hering <olaf@aepfle.de>
> Release-Acked-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
> Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
> Cc: David Scott <dave.scott@eu.citrix.com>
> Cc: Ian Campbell <ian.campbell@citrix.com>
> Cc: Ian Jackson <ian.jackson@eu.citrix.com>
> Cc: Jan Beulich <jbeulich@suse.com>
> Cc: Keir Fraser <keir@xen.org>
> Cc: Samuel Thibault <samuel.thibault@ens-lyon.org>
> Cc: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
> Cc: Tim Deegan <tim@xen.org>
> Cc: Wei Liu <wei.liu2@citrix.com>
> ---
> stubdom/Makefile | 3 +--
> tools/Makefile | 7 +++++++
> tools/ocaml/common.make | 5 ++++-
> xen/Rules.mk | 3 ++-
> 4 files changed, 14 insertions(+), 4 deletions(-)
>
> diff --git a/stubdom/Makefile b/stubdom/Makefile
> index 9dac103..60dc0b8 100644
> --- a/stubdom/Makefile
> +++ b/stubdom/Makefile
> @@ -4,9 +4,8 @@ MINI_OS = $(XEN_ROOT)/extras/mini-os
> export XEN_OS=MiniOS
>
> export stubdom=y
> -export debug=y
> -include $(XEN_ROOT)/Config.mk
> -include $(XEN_ROOT)/config/Stubdom.mk
> +include $(XEN_ROOT)/Config.mk
>
> GNU_TARGET_ARCH:=$(XEN_TARGET_ARCH)
> ifeq ($(XEN_TARGET_ARCH),x86_32)
> diff --git a/tools/Makefile b/tools/Makefile
> index 543cd29..884dc91 100644
> --- a/tools/Makefile
> +++ b/tools/Makefile
> @@ -197,6 +197,12 @@ else
> QEMU_XEN_ENABLE_DEBUG :=
> endif
>
> +ifeq ($(debug_symbols),y)
> +QEMU_XEN_ENABLE_DEBUG_SYMBOLS := --enable-debug-info --disable-strip
> +else
> +QEMU_XEN_ENABLE_DEBUG_SYMBOLS := --disable-debug-info
> +endif
> +
> subdir-all-qemu-xen-dir: qemu-xen-dir-find
> if test -d $(QEMU_UPSTREAM_LOC) ; then \
> source=$(QEMU_UPSTREAM_LOC); \
> @@ -206,6 +212,7 @@ subdir-all-qemu-xen-dir: qemu-xen-dir-find
> cd qemu-xen-dir; \
> $$source/configure --enable-xen --target-list=i386-softmmu \
> $(QEMU_XEN_ENABLE_DEBUG) \
> + $(QEMU_XEN_ENABLE_DEBUG_SYMBOLS) \
> --prefix=$(LIBEXEC) \
> --libdir=$(LIBEXEC_LIB) \
> --includedir=$(LIBEXEC_INC) \
> diff --git a/tools/ocaml/common.make b/tools/ocaml/common.make
> index d5478f6..33b3142 100644
> --- a/tools/ocaml/common.make
> +++ b/tools/ocaml/common.make
> @@ -13,7 +13,10 @@ CFLAGS += -fPIC -Werror -I$(shell ocamlc -where)
>
> OCAMLOPTFLAG_G := $(shell $(OCAMLOPT) -h 2>&1 | sed -n 's/^ *\(-g\) .*/\1/p')
> OCAMLOPTFLAGS = $(OCAMLOPTFLAG_G) -ccopt "$(LDFLAGS)" -dtypes $(OCAMLINCLUDE) -cc $(CC) -w F -warn-error F
> -OCAMLCFLAGS += -g $(OCAMLINCLUDE) -w F -warn-error F
> +ifeq ($(debug_symbols),y)
> +OCAMLCFLAGS += -g
> +endif
> +OCAMLCFLAGS += $(OCAMLINCLUDE) -w F -warn-error F
>
> VERSION := 4.1
>
> diff --git a/xen/Rules.mk b/xen/Rules.mk
> index a97405c..2d414ab 100644
> --- a/xen/Rules.mk
> +++ b/xen/Rules.mk
> @@ -43,7 +43,8 @@ ALL_OBJS-$(x86) += $(BASEDIR)/crypto/built_in.o
>
> CFLAGS += -fno-builtin -fno-common
> CFLAGS += -Werror -Wredundant-decls -Wno-pointer-arith
> -CFLAGS += -pipe -g -D__XEN__ -include $(BASEDIR)/include/xen/config.h
> +CFLAGS-$(debug_symbols) += -g
> +CFLAGS += -pipe -D__XEN__ -include $(BASEDIR)/include/xen/config.h
> CFLAGS += -nostdinc
>
> CFLAGS-$(XSM_ENABLE) += -DXSM_ENABLE
next prev parent reply other threads:[~2014-10-02 14:15 UTC|newest]
Thread overview: 63+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-01 16:41 [PATCH 00/28 v5 for-xen-4.5] tool changes to honor configure --prefix=DIR Olaf Hering
2014-10-01 16:41 ` [PATCH 01/28] tools: fix make uninstall Olaf Hering
2014-10-02 14:11 ` Ian Campbell
2014-10-01 16:41 ` [PATCH 02/28] tools/hotplug: fix race during xen.conf creation Olaf Hering
2014-10-06 13:48 ` Konrad Rzeszutek Wilk
2014-10-01 16:41 ` [PATCH 03/28] tools/python: use also LDFLAGS for build Olaf Hering
2014-10-01 16:41 ` [PATCH 04/28] Add configure --with-initddir=DIR Olaf Hering
2014-10-01 16:41 ` [PATCH 05/28] tools/hotplug: use XEN_SCRIPT_DIR instead of hardcoded path Olaf Hering
2014-10-01 16:41 ` [PATCH 06/28] tools/configure.ac: sort AC_CONFIG_FILES Olaf Hering
2014-10-01 16:41 ` [PATCH 07/28] tools/hotplug: use INITD_DIR instead of CONFIG_DIR/init.d|rc.d Olaf Hering
2014-10-01 16:41 ` [PATCH 08/28] tools/hotplug: substitute XEN_SCRIPT_DIR on FreeBSD Olaf Hering
2014-10-01 16:41 ` [PATCH 09/28] remove duplicate variables from config Olaf Hering
2014-10-01 16:41 ` [PATCH 10/28] Substitue configure variables in Paths.mk.in Olaf Hering
2014-10-01 16:41 ` [PATCH 11/28] tools: substitute bindir instead of BINDIR Olaf Hering
2014-10-01 16:41 ` [PATCH 12/28] Use configure --mandir=DIR to set MANDIR Olaf Hering
2014-10-01 16:41 ` [PATCH 13/28] Use configure --docdir=DIR to set DOCDIR Olaf Hering
2014-10-01 16:41 ` [PATCH 14/28] Use configure --includedir=DIR to set INCLUDEDIR Olaf Hering
2014-10-01 16:41 ` [PATCH 15/28] Use configure --libexecdir=BASEDIR to set LIBEXEC Olaf Hering
2014-10-06 15:40 ` Ian Campbell
2014-10-06 15:53 ` [PATCH] QEMU_TAG update FOR FOLDING INTO LIBEXEC PATCH Ian Jackson
2014-10-07 6:52 ` [PATCH 15/28] Use configure --libexecdir=BASEDIR to set LIBEXEC Olaf Hering
2014-10-01 16:41 ` [PATCH 16/28] Use configure --prefix=DIR to set PREFIX Olaf Hering
2014-10-01 16:41 ` [PATCH 17/28] Use configure --localstatedir=BASEDIR to set path to /var Olaf Hering
2014-10-01 16:41 ` [PATCH 18/28] Add configure --enable-rpath Olaf Hering
2014-10-01 16:41 ` [PATCH 19/28] Add configure --with-linux-backend-modules="mod1 mod2" Olaf Hering
2014-10-01 16:41 ` [PATCH 20/28] Move variable to set bash_completion.d to Paths.mk Olaf Hering
2014-10-01 16:41 ` [PATCH 21/28] Add configure --with-sysconfig-leaf-dir=SUBDIR to set CONFIG_LEAF_DIR Olaf Hering
2014-10-01 16:41 ` [PATCH 22/28] Make XENFIRMWAREDIR a subdir of libexecdir Olaf Hering
2014-10-01 16:41 ` [PATCH 23/28] tools: remove private copies of includedir and libdir from libxenstat Olaf Hering
2014-10-01 16:41 ` [PATCH 24/28] Use Paths.mk for docs, stubdom and tools build Olaf Hering
2014-10-01 16:41 ` [PATCH 25/28] tools: use XEN_LIB_STORED instead of /var/lib/xenstored Olaf Hering
2014-10-01 16:41 ` [PATCH 26/28] tools/hotplug: Use XEN_RUN_DIR instead of /var/run/xen Olaf Hering
2014-10-01 16:41 ` [PATCH 27/28] move vtpmmgr helpers from tools to stubdom Olaf Hering
2014-10-01 21:51 ` Daniel De Graaf
2014-10-01 16:41 ` [PATCH 28/28] Separate runtime debug output from debug symbols Olaf Hering
2014-10-02 7:26 ` Jan Beulich
2014-10-02 8:00 ` Olaf Hering
2014-10-02 8:06 ` Jan Beulich
2014-10-02 9:52 ` Tim Deegan
2014-10-02 10:27 ` Jan Beulich
2014-10-02 16:52 ` Andrew Cooper
2014-10-06 7:31 ` Jan Beulich
2014-10-06 7:40 ` Olaf Hering
2014-10-02 10:45 ` Olaf Hering
2014-10-02 14:15 ` Ian Campbell [this message]
2014-10-06 8:55 ` [PATCH v2] " Olaf Hering
2014-10-06 9:03 ` Jan Beulich
2014-10-08 12:45 ` Ian Campbell
2014-10-08 12:55 ` Olaf Hering
2014-10-08 13:18 ` Olaf Hering
2014-10-06 14:05 ` [PATCH 00/28 v5 for-xen-4.5] tool changes to honor configure --prefix=DIR Konrad Rzeszutek Wilk
2014-10-06 16:32 ` Ian Campbell
-- strict thread matches above, loose matches on Subject: below --
2014-09-25 15:19 [PATCH 00/28 v4] " Olaf Hering
2014-09-25 15:20 ` [PATCH 28/28] Separate runtime debug output from debug symbols Olaf Hering
2014-09-25 15:41 ` Andrew Cooper
2014-09-25 15:57 ` Jan Beulich
2014-09-26 6:07 ` Olaf Hering
2014-09-25 16:01 ` Jan Beulich
2014-09-26 8:17 ` Olaf Hering
2014-09-26 8:54 ` Olaf Hering
2014-09-26 9:06 ` Jan Beulich
2014-09-26 9:22 ` Olaf Hering
2014-09-26 9:37 ` Jan Beulich
2014-09-26 8:56 ` Jan Beulich
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=1412259341.17146.18.camel@citrix.com \
--to=ian.campbell@citrix.com \
--cc=dave.scott@eu.citrix.com \
--cc=ian.jackson@eu.citrix.com \
--cc=jbeulich@suse.com \
--cc=keir@xen.org \
--cc=olaf@aepfle.de \
--cc=samuel.thibault@ens-lyon.org \
--cc=stefano.stabellini@eu.citrix.com \
--cc=tim@xen.org \
--cc=wei.liu2@citrix.com \
--cc=xen-devel@lists.xen.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).