c++ for Android ----- ndk 编译链接 pthread 报错

按正常的对c++的库文件引用,Android.mk文件应该这么写:

.......................
LOCAL_LDLIBS += -lpthread
LOCAL_LDLIBS += -llog
.......................

但是好端端的却报错误:

*****non-system libraries in linker flags: -lpthread 
********************
*********error: cannot find -lpthread
使用find命令也能找到pthread,奇怪,,,在一遍文章的帮助下,让对lib的引用改掉,如下:

.......................
LOCAL_LDLIBS += -pthread
LOCAL_LDLIBS += -llog
.......................

真的连接过了,奇葩,奇葩。。。。。

跨界编程伤不起,满地都是坑。。。。




ref blog: http://www.eoeandroid.com/thread-312864-1-1.html

你可能感兴趣的:(C++,android,NDK)