Is there any Android ndk based compiler gcc 4.7, support to_string, stofand other string conversion functions?
In NDK, I use the function found in ext/vstring.h. But the function is wrapped in
#if (defined(__GXX_EXPERIMENTAL_CXX0X__) && defined(_GLIBCXX_USE_C99))
I turn on the flag -std=c++11.
How to enable GXX_EXPERIMENTAL_CXX0X?
source
share