[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [buildbot patch 4/6] use --disable-debug-info
From: |
Stefan Hajnoczi |
Subject: |
Re: [Qemu-devel] [buildbot patch 4/6] use --disable-debug-info |
Date: |
Mon, 4 Feb 2013 10:26:24 +0100 |
User-agent: |
Mutt/1.5.21 (2010-09-15) |
On Fri, Feb 01, 2013 at 03:02:23PM +0100, Gerd Hoffmann wrote:
> Signed-off-by: Gerd Hoffmann <address@hidden>
> ---
> qemu-master.cfg | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
What is the rationale for these changes:
--disable-debug-info to save buildslave disk space?
Remove CFLAGS=-O2?
> diff --git a/qemu-master.cfg b/qemu-master.cfg
> index dc5a7a8..2502ced 100644
> --- a/qemu-master.cfg
> +++ b/qemu-master.cfg
> @@ -696,9 +696,11 @@ def create_build_factory(repourl, branch="HEAD",
> env={'LANG': 'C'}))
> workdir = os.path.join(workdir, 'outoftree')
> configure = "../configure"
> - f.addStep(Configure(command=[configure] + list(configure_args),
> + f.addStep(Configure(command=[configure,
> + "--disable-debug-info"] +
> + list(configure_args),
> env={'LANG': 'C'}, workdir=workdir))
> - f.addStep(Compile(command=[make, "CFLAGS=-O2"],
> + f.addStep(Compile(command=[make],
> env={'LANG': 'C'},
> timeout=2400,
> workdir=workdir))
> --
> 1.7.9.7
>
>