# ./aapt dump bading ./tmp/app_xxxx.apk
./appt:error while loading shared libraries: libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
#发现却少一个共享库

 查找这个库是由那个包产生的:

# yum whatprovides libstdc++.so.6
...
...
libstdc++-4.8.5-16.el7.ib86:GUN Standard C++ library
Repo    : base
Matched from:
Provides     : LIBSTDC++.so.6
#可以查到是由libstdc++-4.8.5-16.el7.ib86这个包生成的这个库
所以可以把这个包装上,问题解决!
# yum install libstdc++-4.8.5-16.el7.i686

 

相关文章:

  • 2021-06-16
  • 2021-11-14
  • 2022-12-23
  • 2022-01-29
  • 2022-12-23
  • 2022-01-15
  • 2022-12-23
  • 2021-11-19
猜你喜欢
  • 2021-10-15
  • 2021-09-17
  • 2022-12-23
  • 2022-12-23
  • 2021-09-21
  • 2022-01-11
相关资源
相似解决方案