I've got a very simplistic application:

#include <vector>

void android_main(struct android_app* state)
{

}

When I build it, I get the following error:

test/jni/main.c:14:18: error: vector: No such file or directory

How the hell do I include STL header files? I've found stlport, and I can see the header files exist in it's directory, but how do include them?

Edit: My Application.mk file has the following line:

APP_STL := stlport_static
link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

test/jni/main.c:14:18: error: vector: No such file or directory

You're compiling with a C compiler, probably. Change the extension to *.cpp and check that a C++ compiler is invoked in the tool-chain.

link|improve this answer
That shouldn't make a difference as the error is file not found. – Mark Ingram Dec 16 '10 at 20:59
@Mark: of course it can. The include paths of C and C++ compilers may be different. – ybungalobill Dec 17 '10 at 9:07
@Mark: Note: verified: gcc rejects <vector> when compiled as C. – ybungalobill Dec 17 '10 at 9:17
You're exactly right, tried it this morning when I got in. Thanks very much :) – Mark Ingram Dec 17 '10 at 10:36
feedback

Read the documentation in $NDKROOT/docs. Specifically CPLUSPLUSSUPPORT.html.

The default C++ library supports only a very limited set of features. The c++ library can be changed with the APP_STL variable in your Application.mk.

link|improve this answer
1  
Hi, I've read that file, and I forgot to mention originally that I do have APP_STL set in Application.mk. – Mark Ingram Dec 16 '10 at 20:58
feedback

Your Answer

 
or
required, but never shown

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