Unresolved externals
Jan 06, 2020
04:23 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Jan 06, 2020
04:23 AM
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
Labels:
- Labels:
-
Toolkit
1 REPLY 1
Jan 06, 2020
06:56 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Jan 06, 2020
06:56 AM
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
- Tags:
- ome link
