20 Oct
2010
20 Oct
'10
7:37 a.m.
I'm using Windows 7 (64 bit) and I'm trying to compile and link my code against the regex libraries. It compiles fine, but at link time, it can't find any of the methods in the regex library. But the methods it's looking for are prefixed by "__cdecl". I've tried compiling my code with the /Gd and /Gz options, and neither seemed to work.
Are you letting the auto-linking code select the correct regex .lib file to link against, or are you linking manually? I ask because those are the kinds of errors you may get if you select the wrong .lib to link to. HTH, John.