Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 89537 invoked from network); 6 Apr 2007 18:25:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 6 Apr 2007 18:25:10 -0000 Received: (qmail 74555 invoked by uid 500); 6 Apr 2007 18:25:14 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 74516 invoked by uid 500); 6 Apr 2007 18:25:14 -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 74479 invoked by uid 99); 6 Apr 2007 18:25:13 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Apr 2007 11:25:13 -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, 06 Apr 2007 11:25:05 -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: svn commit: r525939 - in /incubator/stdcxx/trunk/etc/config/windows: build.wsf generate.wsf summary.js Date: Fri, 6 Apr 2007 21:24:42 +0300 Message-ID: <7BDB2168BEAEF14C98F1901FD2DE64386579D6@epmsa009.minsk.epam.com> In-Reply-To: <46157969.4010207@roguewave.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: svn commit: r525939 - in /incubator/stdcxx/trunk/etc/config/windows: build.wsf generate.wsf summary.js Thread-Index: Acd30qRRN3cp2AksT8O8p9UJ/YY0bwApGdUQ References: <20070405192852.B63331A9838@eris.apache.org> <46157969.4010207@roguewave.com> From: "Farid Zaripov" To: X-Virus-Checked: Checked by ClamAV on apache.org > -----Original Message----- > From: Martin Sebor [mailto:sebor@roguewave.com]=20 > Sent: Friday, April 06, 2007 1:34 AM > To: stdcxx-dev@incubator.apache.org > Subject: Re: svn commit: r525939 - in=20 > /incubator/stdcxx/trunk/etc/config/windows: build.wsf=20 > generate.wsf summary.js >=20 > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > =3D=3D=3D=3D=3D=3D=3D=3D > > --- incubator/stdcxx/trunk/etc/config/windows/build.wsf (original) > > +++ incubator/stdcxx/trunk/etc/config/windows/build.wsf Thu Apr 5=20 > > +++ 12:28:50 2007 > [...] > > @@ -197,7 +212,7 @@ > > } =20 > > =20 > > WScript.Echo("Compiling stdlib library...\n"); > > - res =3D BuildProject(solutionBuild,=20 > "Projects\\stdlib.vcproj"); > > + res =3D BuildProject(solutionBuild, ".stdlib"); >=20 > We should rename stdlib to stdcxx everywhere for consistency. Done: http://svn.apache.org/viewvc?view=3Drev&rev=3D526240 Also I've renamed the output library name from stdlib.[lib|dll] to libstd.[lib|dll] for consistency with unix names. What about the adding the compiler name to the output library name? For example: libstd_msvc-8.0_11s.lib for MSVC8.1, libstd_msvc-7.1_11s.lib for MSVC7.1, libstd_gcc_11s.lib for gcc (or maybe add gcc version too: libstd_gcc-4.1.3_11s.lib) and so on. That would be useful for working with more that one compiler on the same workstation. I've been working with four of them: MSVC7.1, MSVC8.0, ICC9.1, gcc/cygwin. And not so often I'm using the MSVC7.0 and ICC9.0. Farid.