$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: John Maddock (john_at_[hidden])
Date: 2008-02-10 11:41:47
Srinivas Chamarthi wrote:
>> Hi,
>>
>> I am using boost reg ex library with STLport. But I am getting the
>> following error. Can any one tell me whats wrong ?
>>
>> Error 1 fatal error C1189: #error : "Build options aren't
>> compatible with pre-built libraries"
>> e:\boost_1_34_1\boost_1_34_1\boost\config\auto_link.hpp 181
It means what it says: bjam doesn't build binaries compatible with the build
options you are using, most likely you will need to define __STL_DEBUG in
your *debug* application builds to get things to link.
HTH, John.