From stdcxx-dev-return-5946-apmail-incubator-stdcxx-dev-archive=incubator.apache.org@incubator.apache.org Fri Nov 02 17:32:05 2007 Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 75606 invoked from network); 2 Nov 2007 17:32:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Nov 2007 17:32:05 -0000 Received: (qmail 94521 invoked by uid 500); 2 Nov 2007 17:31:53 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 94510 invoked by uid 500); 2 Nov 2007 17:31:53 -0000 Mailing-List: contact stdcxx-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-dev@incubator.apache.org Received: (qmail 94499 invoked by uid 99); 2 Nov 2007 17:31:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Nov 2007 10:31:53 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [208.30.140.160] (HELO moroha.quovadx.com) (208.30.140.160) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Nov 2007 17:31:56 +0000 Received: from [10.70.3.58] ([10.70.3.58]) by moroha.quovadx.com (8.13.6/8.13.6) with ESMTP id lA2HVVAB024876 for ; Fri, 2 Nov 2007 17:31:31 GMT Message-ID: <472B5EF5.9010407@roguewave.com> Date: Fri, 02 Nov 2007 11:31:33 -0600 From: Andrew Black User-Agent: Thunderbird 1.5.0.12 (X11/20060911) MIME-Version: 1.0 To: stdcxx-dev@incubator.apache.org Subject: Re: Intel C++ 9.1/Win XP build timeouts References: <472262D4.4010207@gmail.com> <7BDB2168BEAEF14C98F1901FD2DE6438012AC4B7@epmsa009.minsk.epam.com> <472AAD4D.80306@roguewave.com> <13552059.post@talk.nabble.com> In-Reply-To: <13552059.post@talk.nabble.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Travis Vitek wrote: > Martin Sebor wrote: >> Farid Zaripov wrote: >>> Maybe the BATMAN could do this before executing the batch file? >> Sounds like that would be the right place to make the change. Let >> me see if we can get it implemented on the Batman side of things, >> or in the build script. >> >> Travis, do you have enough experience with the Windows Scripting >> Host to modify the stdcxx build script that Batman invokes to do >> this? >> >> Martin >> > > No, I don't have mush experience with WSH. I don't even know the name of the > script that Batman invokes for building stdcxx. I'm sure I could figure it > out though. Batman invokes an internal glue script. That script in turn 'call's the generated build_.bat script. My understanding of the semantics of the call batch command is that it executes the script in question within the current process (like the unix . operator). --Andrew Black > > Unfortunately I'd prefer if we could find a solution outside of Batman. > Occasionally, I want to stop a build that I'm running locally. CTRL+C will > get my command prompt back, but it often leaves some of the other processes > running, or stuck in a bad state [devenv.exe, cscript.exe, exec.exe, ...]. > > Travis