Detected problems with app native libraries (please consult log for detail): lib.so: text relocation

错误内容:

Detected problems with app nativelibraries
(please consult log for detail):
libxxx.so: text relocations
  • 解决办法一

修改targetSdkVersion<23。可是已经小于23了。

  • 解决办法二:配置Android.mk

    LOCAL_LDFLAGS += -fPIC

  • 解决办法三:configure

configure CFLAGS=-fPIC

  • 检查so办法

readelf -a path/to/yourlib.so | grep TEXTREL

如果上边的shell命令输出类似下面的内容,则说明这该so文件不是PIC,是有text relocations问题的。

0x00000016 (TEXTREL)                    0x0

发布了2572 篇原创文章 · 获赞 321 · 访问量 192万+

猜你喜欢

转载自blog.csdn.net/quantum7/article/details/104910168