I m trying to build an app with android-froyo source in which I am using skia and stl templates,

I have included

MY_INCLUDES=external/zlib external/jpeg external/freetype/include \
    frameworks/base/core/jni/android/graphics  external/skia/include/core \
    external/libpng external/expat/lib <b>external/stlport/stlport</b>

libstlport_cflags := -D_GNU_SOURCE
libstlport_cppflags := -fuse-cxa-atexit 

LOCAL_CPPFLAGS := $(libstlport_cppflags)
include $(BUILD_STATIC_LIBRARY)

I get the following error when i try to build the android source with this app, which i kept at packages/apps:

external/stlport/stlport/stl/_new.h:47:50: error: libstdc++/include/new: No such file or directory

Please guide me to rectify this issue.

Thanks

Mohit

link|improve this question

44% accept rate
I tried added LOCAL_STATIC_LIBRARY := libstlport as well, but it doesn't even include stl files – mohit Jul 11 '11 at 13:19
I took the liberty to re-format your post. StackOverflow (SO) uses the awesome Markdown library for post markup. It's really worth looking into :) Oh... and welcome to SO! ;) – exhuma Nov 4 '11 at 9:40
feedback

1 Answer

cpp
#include <stdio.h>
// The code 
// The set of definitions and includes for STLPort 
// They used defined() instead of #ifdef. 
#define _STLP_HAS_INCLUDE_NEXT  1 
#define _STLP_USE_MALLOC   1 
#define _STLP_USE_NO_IOSTREAMS  1 
#include <stl/config/_android.h> 
#include <map>
#include <string> 

int main(void)
{
    std::string a = "abc";
    printf("%s",a.c_str());
    return 0;
}

Android.mk
# A simple test for the minimal standard C++ library
#
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES := test-libstl.cpp
LOCAL_C_INCLUDES += sources/cxx-stl/stlport/stlport
LOCAL_SHARED_LIBRARIES += libstlport 
LOCAL_MODULE := test-libstl
include $(BUILD_EXECUTABLE)
link|improve this answer
Hi friends, I am compiling Android 4.0, during this I got an error : "external/stlport/stlport/stl/_iterator_base.h:116:43: error: libstdc++/include/iterator: No such file or directory ". any one have idea on this. – Shubh Mar 3 at 15:27
feedback

Your Answer

 
or
required, but never shown

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