I use std::local() to MBS to WCS in Android NDK.
But...
std::locale::global(std::locale("kor"))
std::locale::global(std::locale("ko"))
std::locale::global(std::locale("ko_KR"))
std::locale::global(std::locale("ko_KR.eucKr"))
std::locale::global(std::locale("ko_KR.euckr"))
std::locale::global(std::locale("ko_KR.EUCKR"))
All lead to crashes.
and...
std::locale::global(std::locale("en_US.UTF-8"))
also crashes.
Is std::locale()
not supported in Android NDK?
My STL library is