> > gcc will work fine (even though its' officially not supported).
> > If you send Steve a nice note maybe he'll upload the binaries for some
[quoted text clipped - 3 lines]
> Yes, I've downloaded the free C++ Toolkit and the Platform SDK is being
> downloaded/installed right know. I will try to get it compiled.
> > > gcc will work fine (even though its' officially not supported).
> > > If you send Steve a nice note maybe he'll upload the binaries for
[quoted text clipped - 11 lines]
> much space.
> How about gcc, does it also need msvcrt.lib ?
I thought msvcrt.lib would be included in the Platform SDK, but
apparently not (checked my installation and it ain't there). Found this
after a little googling (http://wiki.tcl.tk/11431):
"Missing msvcrt.lib - this is the link library for the C runtime used
by Tcl and most extensions. You can in theory create a link library
from a .dll using link -dump -exports dllname and some processing, but
I have been unable to make this work. Instead you can install the .NET
Framework SDK (free download) and get a copy of msvcrt.lib from this
[http://tinyurl.com/5flob]. (It ends up in "Microsoft Visual Studio
.NET 2003\Vc7\lib")"
As for gcc, I seem to recall that depends on which gcc for Windows
you're using. IIRC, the MinGW gcc, or the Cygwin gcc running in
-mno-cygwin mode can (must?) link against msvcrt.lib, while the Cygwin
gcc running in normal mode (i.e. without -mno-cygwin) must *not* link
against msvcrt.lib (as it'll interfere with Cygwin's libc). However, in
the latter case, any binary produced will depend on cygwin1.dll (i.e.
will depend on the Cygwin environment).
HTH,
Dave.
Gert van der Kooij - 22 Apr 2006 09:56 GMT
> I thought msvcrt.lib would be included in the Platform SDK, but
> apparently not (checked my installation and it ain't there). Found this
[quoted text clipped - 7 lines]
> [http://tinyurl.com/5flob]. (It ends up in "Microsoft Visual Studio
> .NET 2003\Vc7\lib")"
I must have been trying for too long, apparently it was too late in the
night when I was searching and trying (3.00 AM).
After installing the .NET framework the msvcrt.lib was in the mentioned
directory, I just didn't find it.