From stdcxx-dev-return-2904-apmail-incubator-stdcxx-dev-archive=incubator.apache.org@incubator.apache.org Fri Mar 16 09:35:46 2007 Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 69829 invoked from network); 16 Mar 2007 09:35:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 Mar 2007 09:35:45 -0000 Received: (qmail 35454 invoked by uid 500); 16 Mar 2007 09:35:54 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 35439 invoked by uid 500); 16 Mar 2007 09:35: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 35376 invoked by uid 99); 16 Mar 2007 09:35:53 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Mar 2007 02:35: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 (herse.apache.org: domain of Farid_Zaripov@epam.com designates 217.21.63.3 as permitted sender) Received: from [217.21.63.3] (HELO EPMSA009.epam.com) (217.21.63.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Mar 2007 02:35:42 -0700 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: Configure failure with MSVC 8.0 Date: Fri, 16 Mar 2007 11:35:20 +0200 Message-ID: <7BDB2168BEAEF14C98F1901FD2DE64384E25DD@epmsa009.minsk.epam.com> In-Reply-To: <45F9D0A1.4080909@roguewave.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Configure failure with MSVC 8.0 Thread-Index: AcdnVjbWJY+vNebcTZ2TY7IoTDLxywAV4okw From: "Farid Zaripov" To: X-Virus-Checked: Checked by ClamAV on apache.org > -----Original Message----- > From: Andrew Black [mailto:ablack@roguewave.com]=20 > Sent: Friday, March 16, 2007 1:03 AM > To: stdcxx-dev@incubator.apache.org > Subject: Configure failure with MSVC 8.0 >=20 > Within the result export script used to produce the=20 > http://people.apache.org/~sebor/stdcxx/results/ page, a bug=20 > exists such that runs without a build log, a config.h file,=20 > and a config.log file won't be included in the generated=20 > index page. This bug needs to be resolved at some point, but=20 > may not be the highest priority. At the moment, this results=20 > in a number of windows runs being excluded from the results=20 > page. One of these failures occurs when creating static=20 > builds with the MSVC 8.0 compiler. Attached is a copy of the=20 > config.log form one such run. This failure appears to be=20 > operating system and bitwidth independent. Farid, might you=20 > have any insight? The problem is in /D"" in command line: Compiling with command "cl /c /EHsc /GS /D_CRT_SECURE_NO_DEPRECATE /GR /MTd /Zi /Gm /I"D:\bman5\builds\94716\source-buildspace\build\msvc-8.0\15s\include\te sts" /I"d:\bman5\builds\94716\source-buildspace\include" /D"" /Fo"D:\bman5\builds\94716\source-buildspace\build\msvc-8.0\15s\include\t ests\\" /Fd"D:\bman5\builds\94716\source-buildspace\build\msvc-8.0\15s\include\t ests\sanity.pdb" "D:\bman5\builds\94716\source-buildspace\build\msvc-8.0\15s\include\test s\sanity.cpp"" The compiler skipped the next parameter (directory for the object file) and created the sanity.obj file in the current directory. Fixed: http://svn.apache.org/viewvc?view=3Drev&rev=3D518899 Farid.