7 Mar
2004
7 Mar
'04
1:46 p.m.
On Mar 7, 2004, at 1:51 AM, Aleksey Gurtovoy wrote:
Here's the part of our gcc config which causes it:
#ifndef __EXCEPTIONS # define BOOST_NO_EXCEPTIONS #endif
__EXCEPTIONS is a built-in gcc macro that is defined by default unless you disable exceptions with "-fno-exceptions".
What's the solution now?
Check your command line for "-fno-exceptions".
I did have -fno-exceptions defined on the command-line, and I found this last night, and removed it but it still wouldn't compile. However, this morning, after a clean and a rebuild it works now. I appreciate all your help. Thanks! ahp