Problem building STLport NDK r5/ Android

Posted by user558299 on Stack Overflow See other posts from Stack Overflow or by user558299
Published on 2010-12-30T13:19:06Z Indexed on 2011/01/08 12:53 UTC
Read the original article Hit count: 400

Filed under:
|
|

Hi all,

I'm trying to build STLport for Android. I got the following steps, but they are not working:

1 - Clone STLport repository using:

git clone git://stlport.git.sourceforge.net/gitroot/stlport/stlport

2 - Configure environment using :

./configure --target=arm-eabi --with-extra-cxxflags="-fshort-enums" 
            --with-extra-cflags="-fshort-enums" 

3 - From src directory build it using

make SYSROOT"{MY NDK path}/platforms/android-5/arch-arm/" release-static

But I got the following errors:

In file included from ../stlport/stl/_alloc.h:45,
                 from ../stlport/memory:29,
                 from dll_main.cpp:41:
../stlport/stl/_new.h:45:24: error: new: No such file or directory
In file included from ../stlport/stl/_limits.h:36,
                 from ../stlport/limits:29,
                 from dll_main.cpp:48:
../stlport/stl/_cwchar.h:26:30: error: cstddef: No such file or directory
In file included from ../stlport/stl/_utility.h:35,
                 from ../stlport/utility:35,
                 from dll_main.cpp:40:
../stlport/type_traits:889: error: 'declval' was not declared in this scope
../stlport/type_traits:889: error: expected primary-expression before '>' token
../stlport/type_traits:889: error: expected primary-expression before ')' token
../stlport/type_traits:889: error: 'declval' was not declared in this scope
../stlport/type_traits:889: error: expected primary-expression before '>' token
../stlport/type_traits:889: error: expected primary-expression before ')' token
../stlport/type_traits:889: error: ISO C++ forbids declaration of 'decltype' with no type
../stlport/type_traits:889: error: ISO C++ forbids in-class initialization of non-const static member 'decltype'
../stlport/type_traits:889: error: template declaration of 'int std::tr1::detail::decltype'
../stlport/type_traits:942: error: ISO C++ forbids declaration of 'decltype' with no type
../stlport/type_traits:942: error: ISO C++ forbids in-class initialization of non-const static member 'decltype'
../stlport/type_traits:942: error: template declaration of 'int std::tr1::detail::decltype'
make: *** [obj/arm-eabi-gcc/so/dll_main.o] Error 1

Is there any include dir or configuration I´m missing?

Thanks,

Sergio

© Stack Overflow or respective owner

Related posts about android

Related posts about android-ndk