$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] boost regex no debug info and std::bad_cast
From: John Maddock (boost.regex_at_[hidden])
Date: 2010-11-06 05:39:49
> I'm trying to use boost/regex.hpp on OS X 10.6.4 10F569.
>
I notice that you're building the regex library with _GLIBCXX_DEBUG defined,
but that you're not defining that in your application build - that will
almost certainly result in binary compatibility issues that will break the
executable. Can you try building everything *without* _GLIBCXX_DEBUG, and
then if that's working, try *everything* with _GLIBCXX_DEBUG if that's what
you want.
As for why you're program has no debug issue - I've no idea - it's a GCC
issue really I guess?
HTH, John.