error while loading shared libraries: lib*.so: cannot open shared object file: No such file or directory

时间:2021-09-17 02:30:49

 动态库的搜索路径搜索的先后顺序是:

  1.编译目标代码时指定的动态库搜索路径;

  2.环境变量LD_LIBRARY_PATH指定的动态库搜索路径; 比如export LD_LIBRARY_PATH=/usr/local/lib(这样就可以加进来了)

  3.配置文件/etc/ld.so.conf中指定的动态库搜索路径;

  4.默认的动态库搜索路径/lib    /usr/lib。

参考文献:https://www.cnblogs.com/Recan/p/6012305.html