boost+stlport+Xcode

Has anyone had any luck linking boost into an XCode application that
is also using STLport ?
I am using STLport 5.0.0 and boost 1.33.1
Boost links in fine unless I also link in STLport then I have one
undefined symbol...
boost::signals::detail::signal_base::signal_base
(boost::function2

Don Agro wrote:
Has anyone had any luck linking boost into an XCode application that is also using STLport ? I am using STLport 5.0.0 and boost 1.33.1 Boost links in fine unless I also link in STLport then I have one undefined symbol...
boost::signals::detail::signal_base::signal_base (boost::function2
boost::function_base > const&, boost::any const&) bjam build (with STLport at "/STLport-5.0.0" bjam -sSTLPORT_PATH="/" -sSTLPORT_VERSION="5.0.0" -sTOOLS="darwin"
Any ideas ?
Just one: building Boost+STLport with bjam resuls in the debug versions of the lib's being built with __STL_DEBUG defined. You might need to define the same when building your app. But if that's not it, I'm stumped :-/ HTH, John.

On 22-Sep-06, at 4:54 AM, John Maddock wrote:
Just one: building Boost+STLport with bjam resuls in the debug versions of the lib's being built with __STL_DEBUG defined. You might need to define the same when building your app. But if that's not it, I'm stumped :-/
HTH, John.
Thanks John, I was using "-sTOOLS=darwin" instead of "-sTOOLS=gcc- stlport" Don
participants (2)
-
Don Agro
-
John Maddock