This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
gcc 3.2 for AIX 4.3: C++ Exceptions
- From: Daniel dot Weidner at saf-ag dot com
- To: gcc-help at gcc dot gnu dot org
- Date: Wed, 4 Sep 2002 14:17:00 +0200
- Subject: gcc 3.2 for AIX 4.3: C++ Exceptions
Hi,
Does anyone know how to make C++ exceptions work with gcc 3.2 on AIX.
I downloaded the binary distribution of gcc 3.2 for AIX 4.3 at
http://aixpdslib.seas.ucla.edu/packages/gcc.html
and it seems to call the abort() function as soon as an exception is thrown.
Example: the following program should be running without "IOTAbort..."
int main()
{
try
{
throw 0;
}
catch (...)
{
}
}
I think that the problem could be specific to my local AIX installation, but
as I'm neither gcc- nor AIX-guru I don't know how to tweak it right :-(
So if You are a gcc or AIX expert, I need Your advice, please!
Cheers, Daniel.