Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've built libcurl static lib in /MT mode in visual studio. Both, debug and release. However, when I try to use them I get bunch of this from compiler:

MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _calloc already defined in libcmt.lib(calloc.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _realloc already defined in libcmt.lib(realloc.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _free already defined in libcmt.lib(free.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _malloc already defined in libcmt.lib(malloc.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: __time64 already defined in libcmt.lib(time64.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: __errno already defined in libcmt.lib(dosmap.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _tolower already defined in libcmt.lib(tolower.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _fwrite already defined in libcmt.lib(fwrite.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: ___iob_func already defined in libcmt.lib(_file.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _strtoul already defined in libcmt.lib(strtol.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _memmove already defined in libcmt.lib(memmove.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _strtol already defined in libcmt.lib(strtol.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _isxdigit already defined in libcmt.lib(_ctype.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _strrchr already defined in libcmt.lib(strrchr.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: __strtoi64 already defined in libcmt.lib(strtoq.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _strncmp already defined in libcmt.lib(strncmp.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _fclose already defined in libcmt.lib(fclose.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _sprintf already defined in libcmt.lib(sprintf.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _isdigit already defined in libcmt.lib(_ctype.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _fputc already defined in libcmt.lib(fputc.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _isalnum already defined in libcmt.lib(_ctype.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _isspace already defined in libcmt.lib(_ctype.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _memchr already defined in libcmt.lib(memchr.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: __lseeki64 already defined in libcmt.lib(lseeki64.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _atoi already defined in libcmt.lib(atox.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _fflush already defined in libcmt.lib(fflush.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _isalpha already defined in libcmt.lib(_ctype.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _isgraph already defined in libcmt.lib(_ctype.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _islower already defined in libcmt.lib(_ctype.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _isupper already defined in libcmt.lib(_ctype.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: _isprint already defined in libcmt.lib(_ctype.obj)
MSVCRTD.lib(ti_inst.obj) : error LNK2005: "private: __thiscall type_info::type_info(class type_info const &)" (??0type_info@@AAE@ABV0@@Z) already defined in libcmt.lib(typinfo.obj)
MSVCRTD.lib(ti_inst.obj) : error LNK2005: "private: class type_info & __thiscall type_info::operator=(class type_info const &)" (??4type_info@@AAEAAV0@ABV0@@Z) already defined in libcmt.lib(typinfo.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: __close already defined in libcmt.lib(close.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: __read already defined in libcmt.lib(read.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: __fileno already defined in libcmt.lib(fileno.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: __stricmp already defined in libcmt.lib(stricmp.obj)
MSVCRTD.lib(MSVCR100D.dll) : error LNK2005: __strnicmp already defined in libcmt.lib(strnicmp.obj)
LINK : warning LNK4098: defaultlib 'MSVCRTD' conflicts with use of other libs; use /NODEFAULTLIB:library
C:\Project\libcurl\VisualStudio\sockets\Release\sockets.exe : fatal error LNK1169: one or more multiply defined symbols found

It appears that a lot of functions are being defined twice from the default library and the static /MT libcurl build. However, if I remove default libraray with /NODEFAULTLIB:MSVCRTD switch, I face another problem:

libcurl.lib(socks.obj) : error LNK2001: unresolved external symbol __imp__sscanf
libcurl.lib(http_proxy.obj) : error LNK2001: unresolved external symbol __imp__sscanf
libcurl.lib(parsedate.obj) : error LNK2001: unresolved external symbol __imp__sscanf
libcurl.lib(rtsp.obj) : error LNK2001: unresolved external symbol __imp__sscanf
libcurl.lib(telnet.obj) : error LNK2001: unresolved external symbol __imp__sscanf
libcurl.lib(ftp.obj) : error LNK2001: unresolved external symbol __imp__sscanf
libcurl.lib(http.obj) : error LNK2001: unresolved external symbol __imp__sscanf
libcurl.lib(hostip.obj) : error LNK2001: unresolved external symbol __imp__sscanf
libcurl.lib(url.obj) : error LNK2001: unresolved external symbol __imp__sscanf
libcurl.lib(transfer.obj) : error LNK2001: unresolved external symbol __imp__sscanf
libcurl.lib(cookie.obj) : error LNK2001: unresolved external symbol __imp__sscanf
libcurl.lib(url.obj) : error LNK2001: unresolved external symbol __imp__fread
libcurl.lib(transfer.obj) : error LNK2001: unresolved external symbol __imp__fread
libcurl.lib(formdata.obj) : error LNK2001: unresolved external symbol __imp__fread
libcurl.lib(ftplistparser.obj) : error LNK2001: unresolved external symbol __imp__strchr
libcurl.lib(http.obj) : error LNK2001: unresolved external symbol __imp__strchr
libcurl.lib(http_digest.obj) : error LNK2001: unresolved external symbol __imp__strchr
libcurl.lib(strtok.obj) : error LNK2001: unresolved external symbol __imp__strchr
libcurl.lib(curl_gethostname.obj) : error LNK2001: unresolved external symbol __imp__strchr
libcurl.lib(file.obj) : error LNK2001: unresolved external symbol __imp__strchr
libcurl.lib(ldap.obj) : error LNK2001: unresolved external symbol __imp__strchr
libcurl.lib(dict.obj) : error LNK2001: unresolved external symbol __imp__strchr
libcurl.lib(ftp.obj) : error LNK2001: unresolved external symbol __imp__strchr
libcurl.lib(url.obj) : error LNK2001: unresolved external symbol __imp__strchr
libcurl.lib(transfer.obj) : error LNK2001: unresolved external symbol __imp__strchr
libcurl.lib(cookie.obj) : error LNK2001: unresolved external symbol __imp__strchr
libcurl.lib(inet_pton.obj) : error LNK2001: unresolved external symbol __imp__strchr
libcurl.lib(http.obj) : error LNK2001: unresolved external symbol __imp__strstr
libcurl.lib(curl_sasl.obj) : error LNK2001: unresolved external symbol __imp__strstr
libcurl.lib(ftplistparser.obj) : error LNK2001: unresolved external symbol __imp__strstr
libcurl.lib(url.obj) : error LNK2001: unresolved external symbol __imp__strstr
libcurl.lib(transfer.obj) : error LNK2001: unresolved external symbol __imp__strstr
libcurl.lib(tftp.obj) : error LNK2001: unresolved external symbol __imp__strstr
libcurl.lib(ftp.obj) : error LNK2001: unresolved external symbol __imp__strstr
libcurl.lib(netrc.obj) : error LNK2001: unresolved external symbol __imp__strncpy
libcurl.lib(url.obj) : error LNK2001: unresolved external symbol __imp__strncpy
libcurl.lib(strerror.obj) : error LNK2001: unresolved external symbol __imp__strncpy
libcurl.lib(telnet.obj) : error LNK2001: unresolved external symbol __imp__strncpy
libcurl.lib(ftp.obj) : error LNK2001: unresolved external symbol __imp__strncpy
libcurl.lib(cookie.obj) : error LNK2001: unresolved external symbol __imp__fgets
libcurl.lib(netrc.obj) : error LNK2001: unresolved external symbol __imp__fgets
libcurl.lib(cookie.obj) : error LNK2001: unresolved external symbol __imp__qsort
libcurl.lib(cookie.obj) : error LNK2001: unresolved external symbol __imp__fputs
libcurl.lib(file.obj) : error LNK2001: unresolved external symbol __imp___fstat64
libcurl.lib(getenv.obj) : error LNK2001: unresolved external symbol __imp__getenv
libcurl.lib(formdata.obj) : error LNK2001: unresolved external symbol __imp___stat64
C:\Project\libcurl\VisualStudio\sockets\Release\sockets.exe : fatal error LNK1120: 11 unresolved externals

Now I'm actually lacking of compiled functions without the default library! How can I fix this?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.