android jni 提示 undefined reference to 'wctomb'


cpp文件:

   
  #include <jni.h>
  
#include <stdlib.h>
#include <string>

using namespace std;

void test(std::wstring& source) {
string str("asd");
wchar_t t;
for (std::wstring::const_iterator i = source.begin(); i != source.end();
i++) {
int length = wctomb(&(*str.begin()), *i);
if (length < 1)
break;
}
}

application.mk

   
  APP_ABI := armeabi
  
APP_STL := gnustl_static #GNU STL
APP_PLATFORM = android-8

编译提示: error: undefined reference to 'wctomb'

ndk版本是r9b (64-bit)

Android jni

窗边奈奈美 10 years, 11 months ago

在 C++ 中, wctomb 函数是在 cstdlib.h 头文件中,把你的头文件修改下就可以了
wctomb 函数

哈雷让我来的 answered 10 years, 11 months ago

Your Answer