7 Mar
2004
7 Mar
'04
5:50 a.m.
On Mar 6, 2004, at 11:03 PM, Aleksey Gurtovoy wrote:
It won't link only if BOOST_NO_EXCEPTIONS is defined, and it _might be_ getting defined implicitly somewhere in config headers (e.g. line 47 in "boost/config/compiler/gcc.hpp"). I'd check if that's the case:
#include
#if defined(BOOST_NO_EXCEPTIONS) # error here! #endif
Needless to say, this code caused the #error to fire. What's the solution now? I tried to #undef BOOST_NO_EXCEPTIONS but that's didn't seem to do anything. Do I need to re-build the libraries? ahp