cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X

Unresolved externals

Sekar1
12-Amethyst

Unresolved externals

Hi,

 

I have a creo parametric toolkit application. I am trying to add some headers like string.h or iostream.h etc. On compiling I get Unresolved externals error. 

 

May i know what could be the reason or where  i am going wrong.

 

Thanks

1 REPLY 1
Eike_Hauptmann
13-Aquamarine
(To:Sekar1)

some linker errors ...

 

But it sounds like you build with .c files and use the C-Compiler. 

The functions in iostream are part of the C++ standard library, which you usually don't need to link explicitly. If you need to link it explicit something in you project definition goes totaly wrong or overload something or link against some strange other libs.

 

Unresolved External means mostly that your linker can't resolve them. So there is no lilbrary inside your linking definition.

 

Br,

Eike

Top Tags