Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / Languages / Managed C++ / April 2007

Tip: Looking for answers? Try searching our database.

Frustrating LNK2001 issue with VC++ 6.0

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
walkerfx - 16 Apr 2007 00:39 GMT
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!
Tom Widmer [VC++ MVP] - 16 Apr 2007 10:42 GMT
> Hi Everyone,
>
[quoted text clipped - 14 lines]
> external symbol, it simply means that I'm missing a .lib from my
> project settings.

It can mean you have the wrong .lib file (e.g. a different, incompatible
version), rather than a missing one.

 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.
[quoted text clipped - 5 lines]
>
> Any ideas?

Try changing the runtime library setting under
Project->Settings->C/C++->Code Generation (IIRC). The setting must match
that which the lib file was generated against.

Generally, you should not need to use the no default libraries setting.
Instead, you just need to make sure that the library settings match. See
also here:
http://msdn2.microsoft.com/en-us/library/f6xx1b1z(vs.71).aspx

Tom
walkerfx - 16 Apr 2007 12:06 GMT
On Apr 16, 2:42 am, "Tom Widmer [VC++ MVP]" <tom_use...@hotmail.com>
wrote:
> > Hi Everyone,
>
[quoted text clipped - 39 lines]
>
> Tom

Thank you Tom, that is helpful information. I was finally able to
isolate the problem. It comes down to code that calls a static member
method of a class from a 3rd party library. It looks like this:
class::method(&id);

If I comment out the line, the link errors go away. I'm not sure how
to fix it though.

I have looked at my Code Generation settings as you suggested and they
are set the same as the example projects which build fine
(multithreaded DLL). I tried some different settings but they result
in another set of link errors. I have read through the LNK2001 page
you sent but it does not give any insight into static class methods,
only C style static variables and functions.
Masterchief - 16 Apr 2007 13:39 GMT
Have you also linked the third party lib?
What you describe is exactly the error you get when you use a function from
another lib and don´t link it.

Ronny

> On Apr 16, 2:42 am, "Tom Widmer [VC++ MVP]" <tom_use...@hotmail.com>
> wrote:
[quoted text clipped - 56 lines]
> you sent but it does not give any insight into static class methods,
> only C style static variables and functions.
walkerfx - 16 Apr 2007 21:55 GMT
> Have you also linked the third party lib?
> What you describe is exactly the error you get when you use a function from
> another lib and don´t link it.
>
> Ronny

Thanks Ronny. I went and checked again just to make sure. There are
only two 3rd party libraries to use and I have them both. Well there
is also a third MFC-flavored lib, but I am not using MFC and building
with that version doesn't make a difference.

I have never built a lib that exports C++ static methods, so I'm not
sure how they differ from plain C functions. It seems somewhat
arbitrary or at least esoteric that the link error is with __cdecl new
and delete caused by using a class that has nothing but static methods
in it. It's at least showing me an area I have some things to learn
about ;-)
Tom Widmer [VC++ MVP] - 16 Apr 2007 15:36 GMT
> On Apr 16, 2:42 am, "Tom Widmer [VC++ MVP]" <tom_use...@hotmail.com>
> wrote:
>>> error LNK2001: unresolved external symbol __ftol2

I've just noticed, that is a VC7 function, not a VC6 one, I think! You
need to get a version of the 3rd party library for VC6 - you've got the
VC7 version.

If there isn't one, you could try adding this code to a .cpp:

extern "C" long _ftol( double ); //defined by VC6 C libs
extern "C" long _ftol2( double dblSource ) { return _ftol( dblSource );}

That leaves the new[]/delete[] errors. To fix those, you could try
adding a call to new[] and delete[] to your code, if you don't already
have any.

Tom
walkerfx - 16 Apr 2007 21:46 GMT
On Apr 16, 7:36 am, "Tom Widmer [VC++ MVP]" <tom_use...@hotmail.com>
wrote:
> > On Apr 16, 2:42 am, "Tom Widmer [VC++ MVP]" <tom_use...@hotmail.com>
> > wrote:
[quoted text clipped - 14 lines]
>
> Tom

Yes, I believe you are right. I had read a discussion on another list
about the _ftol function with the same conclusion, doing a manual
'reroute' as you suggest.

The documentation for the libraries says that they can be used in
either VC6 or 7, though perhaps this is an oversight or nuance in VC6.
I have contacted the developers to get their help. At this point, I
can omit the code in question and move on and come back to it later.
Hopefully they have some idea of what is wrong.

Thanks for all your help!

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.