can't find the head file when compile rapidxml in ndk

918 Views Asked by At

i want to parse xml by rapidxml(on android devices, NDK). but when i include the rapidxml.hpp in my cpp file, and compile it. the compilor shows me that "jni/rapidxml.hpp:11:47: fatal error: cstdlib: No such file or directory". what's wrong with it?

the code and compile result followed.

source code:

#include "rapidxml_utils.hpp"

void test(){}

compile result:

jni/rapidxml.hpp:11:47: fatal error: cstdlib: No such file or directory compilation terminated. make: * [obj/local/armeabi/objs/rapidxml/RapidXml.cpp,rapidxml.o] Error 1

1

There are 1 best solutions below

4
On

You should also include the header file in your Android.mk using LOCAL_C_INCLUDES in your module.