RE: [GD-Windows] Linker hell
Brought to you by:
vexxed72
From: Brian H. <bri...@py...> - 2001-11-07 20:00:52
|
Thanks to everyone for their suggestions. I did a DUMPBIN /ALL on some of the problematic OBJ files to find out that they were STILL linking to MSVCRTD.LIB (!). Grrr. As it turns out, you can specify the linkage PER FILE (not just per project). So even if all your projects are set to, say, Multithreaded Debug, a file within a project might be set to Multithreaded Debug DLL (which is what happened in this case). Once that was found and I fixed the two files that were set this way (no idea how they got that way), all problems went away. *sigh* Thanks, Brian |