找不到共享库的解决办法 March 12, 2024 Content # Linux下用ldd查看程序的共享库依赖时,输出中有not found,原因是共享库在当前目录下,该如何处理? export LD_LIBRARY_PATH=./ ldd test From # Links #