help-gplusplus
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Uncatched exception while using shared libraries


From: klessard
Subject: Uncatched exception while using shared libraries
Date: 14 Feb 2005 13:15:45 -0800
User-agent: G2/0.2

Hello all,

we have problem with exception thrown on a system build for MIPS with
a cross-compile GCC 3.4.3 and uClibc 9.9.27. Currently, the only way
to catch correctly C++ exceptions and to avoid undesirable SIGABRT
signals is to link static with libraries. Using shared libraries
always endup in a 'abort' fashion, even if exception are catched that
way:

main()
try
{
   throw int(1);
}
catch (...)
{
}

Any help?

Thanks,
Karl



reply via email to

[Prev in Thread] Current Thread [Next in Thread]