From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30057 invoked by alias); 12 Mar 2002 11:14:55 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 29987 invoked from network); 12 Mar 2002 11:14:51 -0000 Received: from unknown (HELO fw-cam.cambridge.arm.com) (193.131.176.3) by sources.redhat.com with SMTP; 12 Mar 2002 11:14:51 -0000 Received: by fw-cam.cambridge.arm.com; id LAA07842; Tue, 12 Mar 2002 11:14:50 GMT Received: from unknown(172.16.1.2) by fw-cam.cambridge.arm.com via smap (V5.5) id xmaa06961; Tue, 12 Mar 02 11:13:57 GMT Received: from cam-mail2.cambridge.arm.com (localhost [127.0.0.1]) by cam-admin0.cambridge.arm.com (8.9.3/8.9.3) with ESMTP id LAA24096 for ; Tue, 12 Mar 2002 11:13:57 GMT Received: from sun18.cambridge.arm.com (sun18.cambridge.arm.com [172.16.2.18]) by cam-mail2.cambridge.arm.com (8.9.3/8.9.3) with ESMTP id LAA09004; Tue, 12 Mar 2002 11:13:56 GMT Message-Id: <200203121113.LAA09004@cam-mail2.cambridge.arm.com> X-Mailer: exmh version 2.0.2 2/24/98 To: gdb@sources.redhat.com cc: Richard.Earnshaw@arm.com Reply-To: Richard.Earnshaw@arm.com Organization: ARM Ltd. X-Telephone: +44 1223 400569 (direct+voicemail), +44 1223 400400 (switchbd) X-Fax: +44 1223 400410 X-Address: ARM Ltd., 110 Fulbourn Road, Cherry Hinton, Cambridge CB1 9NJ. X-Url: http://www.arm.com/ Subject: Re: Results of a multi-build (not good) In-reply-to: Your message of "Mon, 11 Mar 2002 18:52:05 GMT." <200203111852.SAA25970@cam-mail2.cambridge.arm.com> Mime-Version: 1.0 Content-Type: multipart/mixed ; boundary="==_Exmh_11541520400" Date: Tue, 12 Mar 2002 03:14:00 -0000 From: Richard Earnshaw X-SW-Source: 2002-03/txt/msg00105.txt.bz2 This is a multipart MIME message. --==_Exmh_11541520400 Content-Type: text/plain; charset=us-ascii Content-length: 496 I've been asked if I could release the multi-build script. It's attached below. Note that it only builds the debuggers, it doesn't run any tests on them. To do that I would need to build and install about 36 sets of complete tool chains, which I just don't have space for. Further, most of them wouldn't be much use without either a simulator or a real piece of hardware to test them on. You will need to tweak the variables at the top of the script to your local configuration. R. --==_Exmh_11541520400 Content-Type: text/x-script ; name="build_gdb_all"; charset=us-ascii Content-Description: build_gdb_all Content-Disposition: attachment; filename="build_gdb_all" Content-length: 2994 #! /bin/sh # Copyright (C) 2002 Free Software Foundation. # # This file is part of GDB. # # GDB is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # GDB is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GDB; see the file COPYING. If not, write to # the Free Software Foundation, 59 Temple Place - Suite 330, # Boston, MA 02111-1307, USA. # ######################################################################## # # VARIOUS OPTIONS YOU WILL NEED TO CONFIGURE FOR LOCAL USE # Where builds will live builddir=/home/rearnsha/gnu/gdb-allcross # Where the sources live srcdir=/home/rearnsha/gnusrc/utils/src # Where logs will go. NB. Must not be a sub-dir of builddir or you # will loose them. logdir=/home/rearnsha/gnu/gdb-logdir # Must be GNU awk awk=awk # Where to look for the list of targets to test maintainers=${srcdir}/gdb/MAINTAINERS # Version of make to use; must be GNU make for parallel makes make=gnumake # Number of parallel make jobs par="10" # END OF CONFIGURATION OPTIONS # ######################################################################## # Get the list of targets and the build options alltarg=`${awk} < "${maintainers}" ' $2 ~ /--target=.*/ { targets = gensub (/^.*--target=/, "", 1, $2) warnings = gensub (/[)]*$/, "", 1, $3) split (targets, targ, /,/) for (i in targ) { print targ[i], warnings } }'` # Back up the log files cd ${logdir} if [ -f build.out ] then mv build.out build.old fi if [ -f config.out ] then mv config.out config.old fi if [ -f fail.sum ] then mv fail.sum fail.old fi if [ ! -d ${builddir} ] then echo ${builddir} does not exist exit 1 fi cd ${builddir} MAKE=${make} export MAKE jobs=1 # For each target, configure and build it. while read targ opts do if [ ${opts} != "broken" ] then trap 'echo cleaning up ...; rm -rf ${builddir}/*; exit 1' 1 2 15 echo ${targ} mkdir ${targ} cd ${targ} ${srcdir}/configure --target=$targ \ --enable-gdb-build-warnings=$opts \ >> ${logdir}/config.tout.$targ 2>&1 & cd .. jobs=`expr ${jobs} + 1` if [ ${jobs} -gt ${par} ] then wait jobs=1 fi fi done << EOF $alltarg EOF wait cat ${logdir}/config.tout.* > ${logdir}/config.out rm -f ${logdir}/config.tout.* for targ in * do cd $targ if ${make} -j ${par} all-gdb >> ${logdir}/build.out 2>&1 then true else echo ">>>>>>>>>>>>>" >> ${logdir}/fail.sum echo "$targ (${opts})" >> ${logdir}/fail.sum tail -20 ${logdir}/build.out >> ${logdir}/fail.sum echo >> ${logdir}/fail.sum echo $targ build failed fi rm -rf * cd .. done --==_Exmh_11541520400--