W
walkerfx
Hi Everyone,
I have been trying resolve this issue for many hours and am not making
any progress. I have a DLL that I'm updating with some new 3rd party
libraries. However, there appears to be a conflict causing the
following link errors:
------------
error LNK2001: unresolved external symbol "void __cdecl operator
delete[](void *)" (??_V@YAXPAX@Z)
error LNK2001: unresolved external symbol __ftol2
error LNK2001: unresolved external symbol "void * __cdecl operator
new[](unsigned int)" (??_U@YAPAXI@Z)
-------------
And that's it, there are no other errors.
Generally it is my understanding that when there is an unresolved
external symbol, it simply means that I'm missing a .lib from my
project settings. In this case, I would think that adding msvcrt.lib
to the project would fix it, but it does not. I tried compiling this
both with and without default libraries with the same result.
To troubleshoot this problem I reduced my project to a very simple
example, which compiled fine. I then began adding back in my source
code one bit at a time until the problem cropped up again, but I still
have not been able to figure out exactly where it is coming from.
Any ideas?
Thanks in advance for any help!
I have been trying resolve this issue for many hours and am not making
any progress. I have a DLL that I'm updating with some new 3rd party
libraries. However, there appears to be a conflict causing the
following link errors:
------------
error LNK2001: unresolved external symbol "void __cdecl operator
delete[](void *)" (??_V@YAXPAX@Z)
error LNK2001: unresolved external symbol __ftol2
error LNK2001: unresolved external symbol "void * __cdecl operator
new[](unsigned int)" (??_U@YAPAXI@Z)
-------------
And that's it, there are no other errors.
Generally it is my understanding that when there is an unresolved
external symbol, it simply means that I'm missing a .lib from my
project settings. In this case, I would think that adding msvcrt.lib
to the project would fix it, but it does not. I tried compiling this
both with and without default libraries with the same result.
To troubleshoot this problem I reduced my project to a very simple
example, which compiled fine. I then began adding back in my source
code one bit at a time until the problem cropped up again, but I still
have not been able to figure out exactly where it is coming from.
Any ideas?
Thanks in advance for any help!