Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> Linux共享庫位置配置

Linux共享庫位置配置

日期:2017/2/7 14:36:35      編輯:Linux教程
 

1. export

設置環境變量

缺點:只對當前shell有效,每次重新登錄都要重新配置一次

export LD_LIBRARY_PATH=/usr/lib/64

2. /etc/ld.so.conf + ldconfig

告訴系統去哪裡尋找非標准路徑的共享庫,一次更改配置,後面都可以再用了。

echo /usr/lib/64 >> /etc/ld.so.conf

ldconfig

3. -Wl,-rpath

運行時去指定路徑尋找共享庫,編譯的時候寫到程序裡面

-Wl,-rpath = /usr/lib64

Copyright © Windows教程網 All Rights Reserved