Weston Fryatt wrote: > It says it can't find libc.lib.. when looking into the lib directory > there is no libc.lib anymore for VS 2005.
Hmm, it looks like they've done away with the single-threaded runtimes. I hadn't noticed. I would think you'd just have to go to the project properties, C++, Code Generation and pick a different runtime library. However, vc8 doesn't accept the old '/ML' switch to link with libc.lib so I'm not sure what's going on. But I guess that's worth looking at to start with: I'd normally go for the multi-threaded DLL/Debug DLL versions but libc.lib was the single-threaded static so you might want to stick to the statically linked multi-thread versions. Otherwise you might have to open up the .vcproj in notepad and dig in manually :-/ Rup. _______________________________________________ msvc mailing list [email protected] See http://beginthread.com/mailman/listinfo/msvc_beginthread.com for subscription changes, and list archive.
