> -----Original Message----- > From: Martin Sebor [mailto:[EMAIL PROTECTED] > Sent: Friday, April 06, 2007 1:34 AM > To: [email protected] > Subject: Re: svn commit: r525939 - in > /incubator/stdcxx/trunk/etc/config/windows: build.wsf > generate.wsf summary.js > > ====================================================================== > > ======== > > --- incubator/stdcxx/trunk/etc/config/windows/build.wsf (original) > > +++ incubator/stdcxx/trunk/etc/config/windows/build.wsf Thu Apr 5 > > +++ 12:28:50 2007 > [...] > > @@ -197,7 +212,7 @@ > > } > > > > WScript.Echo("Compiling stdlib library...\n"); > > - res = BuildProject(solutionBuild, > "Projects\\stdlib.vcproj"); > > + res = BuildProject(solutionBuild, ".stdlib"); > > We should rename stdlib to stdcxx everywhere for consistency.
Done: http://svn.apache.org/viewvc?view=rev&rev=526240 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.
