We have a C++ framework built with XCode.
We have a C++ application built with Codewarrior that includes and uses
that framework.
I can instanstaniate classes from the framework in the application and
make calls to members etc. with no problems.
But when a string or other type is passed to a member in the the
framework class I crash.
The runtime libraries seem to be the issue, and so I'm searching for
some way to have both sides use the same c++ runtime. Moving either
project to the other enviroment is not possible.
All attempts to use system C++ headers/libs instead of MSL have made a
horrible mess so far.
Does anyone know how to make this work, or know of a fairly
straightforward C++ library that could replace MSL on one side and
glibc++ etc. on the other?
Any advice or ideas would be greatly appreciated.
--David
Sean McBride - 04 Mar 2006 17:43 GMT
> The runtime libraries seem to be the issue
Exactly.
>, and so I'm searching for
> some way to have both sides use the same c++ runtime. Moving either
> project to the other enviroment is not possible.
I'm afraid that's your only choice.