Hi, On Wed, Nov 19, 2008 at 3:31 PM, rd.jones <[EMAIL PROTECTED]> wrote: > > Does bionic's C++ library support RTTI (eg. for dynamic_cast)? I did > not see anything in the CAVEATS file about RTTI. Then again, I didn't > see anything about the lack of STL support either, but found out the > hard way. Thanks!
Currently Android doesn't support RTTI. Also, there are no STL implementation (it doesn't mean it's not "supported", you could use your own). Exceptions are not supported either. Exceptions should be usable as long as they are not thrown across libraries (for instance, it would not be a good idea to throw an exception from qsort()'s callback). Then again, Android is not "supporting" native development at this point. Mathias --~--~---------~--~----~------------~-------~--~----~ unsubscribe: [EMAIL PROTECTED] website: http://groups.google.com/group/android-porting -~----------~----~----~----~------~----~------~--~---
