Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Message-ID: <403E72B7.9050305@scytek.de> Date: Thu, 26 Feb 2004 17:27:03 -0500 From: Volker Quetschke User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6b) Gecko/20031205 Thunderbird/0.4 MIME-Version: 1.0 To: cygwin AT cygwin DOT com Subject: Re: Snapshot 20040225: make hangs/errors out References: <20040225002457 DOT GA24184 AT redhat DOT com> <20040225193446 DOT GA1214 AT redhat DOT com> <403D09E5 DOT 8020507 AT scytek DOT de> <403D0C6A DOT 4020705 AT scytek DOT de> <403E07A4 DOT 1010309 AT scytek DOT de> <20040226150318 DOT GC23139 AT redhat DOT com> <403E1400 DOT 7010704 AT scytek DOT de> <20040226163404 DOT GA25941 AT redhat DOT com> <403E245F DOT 40101 AT scytek DOT de> In-Reply-To: <403E245F.40101@scytek.de> Content-Type: multipart/mixed; boundary="------------070802010003080808040405" X-IsSubscribed: yes --------------070802010003080808040405 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit >> Can I send you a new version of make with debugging symbols? > > Sure. Does it make sense to use a cygwin dll with debugging > enabled? I bet so, I'll use your debugging make and cygwin1.dll > with debugging enabled for future tests. Trapping this errors is a bit tedious, at the moment I'm using the attached script to catch the errors, but instead of a new stackdump/gdb prompt I got a new record, 2559 iterations until reaching an error. Volker -- PGP/GPG key (ID: 0x9F8A785D) available from wwwkeys.de.pgp.net key-fingerprint 550D F17E B082 A3E9 F913 9E53 3D35 C9BA 9F8A 785D --------------070802010003080808040405 Content-Type: text/plain; name="v_loop.sh" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="v_loop.sh" #!/bin/bash export CYGWIN=error_start:gdb export D=1 while [ $D -le 100 ] ; do echo Loop $D export C=1 logname=freeze.$D logerr=${logname}.err date > $logerr while make -j -f MakefileV > $logname 2>> $logerr ; do C=$(($C+1)) ; done echo Failed after $C runs >> $logerr if [ -f make.exe.stackdump ]; then mv make.exe.stackdump make.exe.stackdump.$D ; fi D=$(($D+1)) done --------------070802010003080808040405 Content-Type: text/plain; charset=us-ascii -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/ --------------070802010003080808040405--