Hi, I'm using MS Visual Studio 2008 professional edition on windows 7 64bit. I installed the 64 bit compilers along with the standard 32bit ones.
I have used http://argtable.sourceforge.net/ for windows 32bit programs before
I have no problems building my application (Which is just written in plain and simple C89) to use argtable2.lib for a win32 target, though when I set the "Active solution platform" to "x64", I get a bunch of errors during the linking stage regarding unresolved external symbols.
error LNK2019: unresolved external symbol arg_lit0 referenced in function main error LNK2019: unresolved external symbol arg_strn referenced in function main error LNK2019: unresolved external symbol arg_end referenced in function main ...
ending with " fatal error LNK1120: 9 unresolved externals".
I spotted some options such as the linker option "/MACHINE:X64", but I dont know how to use this or whether I should even be touching that option.
I think I need to do something involving building a 64bit capable version of argtable2.lib, but I dont know how to do this. Any ideas?