Reply 420 of 2419, by TheGreatCodeholio
- Rank
- Oldbie
wrote:For anyone who is trying to compile the code through Visual Studio 2013 (possibly Visual Studio 2012), you will or have gotten t […]
For anyone who is trying to compile the code through Visual Studio 2013 (possibly Visual Studio 2012), you will or have gotten the following (or similar) error:
Error 11 error LNK2005: _strtoull already defined in LIBCMTD.lib(strtoq.obj) E:\DOSBox Source\dosbox-x\vs2008\* CIL library *(* CIL module *) dosbox-x
There is a way to correct it and get it to compile. Make sure to comment out the entire custom strtoull function found in 'dosbox.cpp' (that includes commenting out the #ifdef preprocessor along with the #endif preprocessor). For some reason, it does not recognize that later versions now have their own strtoull function.
This should help any one of y'all out in getting it to compile under Visual Studio 2013 and maybe Visual Studio 2012 (works even on Express Editions, though make sure to comment out any 'afxres.h' presence). Another word is to make sure to use the Windows XP Toolset to make it use Windows SDK 7.1a unless you want to remove compatibility with Windows XP systems.
Edit: I have now confirmed that the issue only exists so far in Visual Studio 2013 (which may also affect future versions). Strtoull was added finally to Visual Studio 2013. Here's some updated code to implement support for compilation on Visual Studio 2013:
/* TODO: move to utility header */
#if _MSC_VER < 1800 /* Microsoft C++ does not have strtoull */
unsigned long long strtoull(const char *s,char **endptr,int base) {
return _strtoui64(s,endptr,base); /* pfff... whatever Microsoft */
}
#endif
Anything earlier than the compiler supplied with Visual Studio 2013 will use that code.
Thanks. In the 10 years I've been using strtoull I'm shocked that Microsoft actually got around to implementing it, just as surprised as when you could finally use "long long" instead of "__int64" like you had to in the Visual Studio 6.0 days. 😀
I took your example and added it to the source tree like this:
#ifdef _MSC_VER /* Microsoft C++ does not have strtoull */
# if _MSC_VER < 1800 /* But Visual Studio 2013 apparently does (http://www.vogons.org/viewtopic.php?f=41&t=31881&sid=49ff69ebc0459ed6523f5a250daa4d8c&start=400#p355770) */
unsigned long long strtoull(const char *s,char **endptr,int base) {
return _strtoui64(s,endptr,base); /* pfff... whatever Microsoft */
}
# endif
#endif
_MSC_VER doesn't exist on Linux systems and I'd rather avoid complaints from GCC about #if comparisons on a #define that doesn't exist 😀