在linux下運行程序時,發現了error while loading shared libraries這種錯誤,一時間不知道解決辦法,在網上搜索,終於解決了:linux
./tests: error while loading shared libraries: xxx.so.0:cannot open shared object file: No such file or directory
出現這類錯誤表示,系統不知道xxx.so放在哪一個目錄下,這時候就要在/etc/ld.so.conf中加入xxx.so所在的目錄。spa
通常而言,有不少的so會存放在/usr/local/lib這個目錄底下,去這個目錄底下找,果真發現本身所須要的.so文件。orm
因此,在/etc/ld.so.conf中加入/usr/local/lib這一行,保存以後,再運行:/sbin/ldconfig –v更新一下配置便可。it