From patchwork Fri Feb 1 14:02:23 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [buildbot,4/6] use --disable-debug-info Date: Fri, 01 Feb 2013 04:02:23 -0000 From: Gerd Hoffmann X-Patchwork-Id: 217496 Message-Id: <1359727345-10477-5-git-send-email-kraxel@redhat.com> To: berendt@b1-systems.de Cc: qemu-devel@nongnu.org, Gerd Hoffmann Signed-off-by: Gerd Hoffmann --- qemu-master.cfg | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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))