Is it possible to port a C++ application which uses the STL extensively to Android? I understand that currently the NDK does not support this, but is there any effort (open source or otherwise) underway to achieve this?

If not is there a way to cross compile libstdc++ for Android?

UPDATE: Ndk Revision 5 promises a default STL implementation based on STLport. http://android-developers.blogspot.com/2011/01/gingerbread-ndk-awesomeness.html Read this official NDK blog post, and the revision notes.

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

You may want to start with Dmitry Moskalchuk's modified version of the NDK (includes support for exceptions, RTTI, and the standard c++ library). Keep in mind that if you go down this path your application's size will be larger as you will be statically linking a c++ library into it. Also, this thread from the andriod-ndk group may give better direction on how to incorporate the STL.

link|improve this answer
That is a trade off which I am willing to make for this particular use case. This looks quite promising. – vivekian2 Apr 28 '10 at 0:39
Let me know how you get on :) – Donal Rafferty Apr 28 '10 at 16:18
Donal: It does not look too good. Seeing seg faults while doing push_back on vector elements. Have you tried this yet? – vivekian2 May 3 '10 at 17:13
feedback

You could always implement what you need yourself. The STL is only written using the CRT, OS headers and standard C++. It would depend on what you need done.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.