vote up 4 vote down star
1

I'm working with the Android NDK, and since it does not currently support the STL, I was wondering if there are any brilliant people out there who have had success with this, or know which is better suited for the Android platform: uSTL or STLPort.

Thanks!

flag

73% accept rate
1  
Thanks for the pointer to uSTL (ustl.sourceforge.net) - I hadn't heard of it before. – Michael Burr Oct 30 at 17:22
Also didn't know about uSTL. Thanks! – ltcmelo Oct 30 at 19:08

2 Answers

vote up 2 vote down check

I recently came across some helper scripts and a port of STLport for Android, by John Ripley.

There is also a related blog post with instructions of how to set it up.

I suppose that might make it easier to go with STLport.

link|flag
this is great! can't wait to try it tonight. damn tricker treaters keep interrupting me though.... – Andrew Garrison Oct 30 at 23:34
vote up 3 vote down

Just note that uSTL deviates from the standard quite a bit. For instance, it assumes UTF-8 encoding for std::string. Still looks interesting, though...

link|flag
Now that's not really a deviation; the encoding of char (and even wchar_t) is implementation defined. Choosing UTF-8 on a platform where cHAR_BIT==8 is not just allowed, it's reasonable. – MSalters Nov 2 at 10:57
1  
Take a look at the actual library code (or even documentation) and you'll see what I mean. – Nemanja Trifunovic Nov 2 at 15:24
1  
The uSTL does deviate in significant ways from the standard. It's really not a stdlib implementation, but an entire reimagining; check out how deque is "implemented": #define deque list. – Roger Pate Nov 23 at 3:25

Your Answer

Get an OpenID
or

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