LINKER Error in Borland C++

V

Vijay

Hi All,

How to solve the LINKER Error : Un-Resolved symbol in OBJ files.

Thanks in Adv.
 
?

=?ISO-8859-1?Q?Erik_Wikstr=F6m?=

Hi All,

How to solve the LINKER Error : Un-Resolved symbol in OBJ files.

By ensuring that all functions and methods are implemented and all paths
to libraries passed to the linker. You have not posted enough
information to give you any better advice, what symbol was unresolved?
Was it something you wrote or something that was part of a library? If
it's the first you might have to post your code, or parts of it, if it's
the second you should ask in a forum for that library or for you compiler.

See also: http://www.parashift.com/c++-faq-lite/how-to-post.html#faq-5.8
 
J

Jim Langston

Vijay said:
Hi All,

How to solve the LINKER Error : Un-Resolved symbol in OBJ files.

Thanks in Adv.

To explain a little better:

void Foo();

int main()
{
Foo();
}

That would cause that error, becuase Foo() is not defined inside the program
anywhere. Unless it's in some other .CPP file that needs to get linked in.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,743
Messages
2,569,478
Members
44,899
Latest member
RodneyMcAu

Latest Threads

Top