Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Unresolved Symbol / core dump

Status
Not open for further replies.

glwong

Programmer
Jul 13, 2001
15
US
I am compiling a large program using
third party libraries (Tibco, Rogue Wave).
I get my progrm to compile, but when
I try to run the executable I get the following
error and it dumps core.

/usr/lib/dld.sl: Unresolved symbol: cout (data)
from /usr/tibco/sdk/lib/libmaverick32.sl
/usr/lib/dld.sl: Unresolved symbol: cout (data)
from /usr/tibco/sdk/lib/librepo32.sl
/usr/lib/dld.sl: Unresolved symbol: openprot__7filebuf (data)
from /usr/tibco/sdk/lib/librepo32.sl
/usr/lib/dld.sl: Unresolved symbol: cerr (data)
from /usr/tibco/sdk/lib/libmaverick32.sl
/usr/lib/dld.sl: Unresolved symbol: basefield__3ios (data)
from /usr/tibco/sdk/lib/libmaverick32.sl
Abort(coredump)

I have a feeling that somehow there
the libraries are conflicting. Any
suggestions would greatly be appreciated.

Thanks,
Greg
 
I think the thrid party libraries are using some of the standard C++ Objects but while building their library they missed out to include standared libraries. Try to build your application by giving all the standard libraries (using the -l option).

Maniraja S

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top