今天在编译android时碰到个问题,错误log如下:
“out/target/product/xxxx/obj/lib/xxxxxx.so: undefined reference to `xxxxxxxx'”
“collect2: ld returned 1 exit status”,这个错误时因为在使用xxxxxx.so库时,库中的xxxxxxxx函数需要其他库文件或者没有实现。所以只需要将相应的库文件加到编译的路徑中.
今天在编译android时碰到个问题,错误log如下:
“out/target/product/xxxx/obj/lib/xxxxxx.so: undefined reference to `xxxxxxxx'”
“collect2: ld returned 1 exit status”,这个错误时因为在使用xxxxxx.so库时,库中的xxxxxxxx函数需要其他库文件或者没有实现。所以只需要将相应的库文件加到编译的路徑中.
转载于:https://www.cnblogs.com/IamEasy_Man/archive/2011/01/26/1945609.html