2012-07-19 20 views
8

Linux acemi (Windows arkaplanından geliyor). Paylaşılan nesnelerin (.so dosyaları) çalışma zamanında nasıl yüklendiğinin ayrıntılarını öğrenmek isterim. http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html'a göre /etc/ld.so.conf dosyası, çalışma zamanında .so dosyalarını aramak için dizinleri yapılandırır. Ancak aşağıda gösterilen bir deney, durumun böyle olmadığını gösteriyor./usr/local/lib, /etc/ld.so.conf.d dosyasındaki .conf dosyalarından biridir, ancak .so/usr/local/lib dizininde çalışma zamanında bulunmaz. Tersine/usr/lib, /etc/ld.so.conf tarafından yapılandırılmış değil değil, ancak .so/usr/lib içinde olduğunda , çalışma zamanında bulunur..so arama yolları

Neyi eksik?

sayesinde Dave

[email protected]:/$ # Display the .so search path configured in /etc/ld.so.conf 
[email protected]:/$ cat /etc/ld.so.conf 
include /etc/ld.so.conf.d/*.conf 
[email protected]:/$ cat /etc/ld.so.conf.d/*.conf 
/usr/lib/mesa 
/usr/lib32/mesa 
/usr/lib32/alsa-lib 
/usr/lib/alsa-lib 
# libc default configuration 
/usr/local/lib 
# Multiarch support 
/lib/x86_64-linux-gnu 
/usr/lib/x86_64-linux-gnu 

[email protected]:/$ # libsotest.so.1 is in /usr/local/lib 
[email protected]:/$ ls -la /usr/local/lib/libsotest* 
lrwxrwxrwx 1 root root  14 2012-07-19 08:24 /usr/local/lib/libsotest.so -> libsotest.so.1 
lrwxrwxrwx 1 root root  18 2012-07-19 08:24 /usr/local/lib/libsotest.so.1 ->  libsotest.so.1.0.1 
-rwxr-xr-x 1 davids davids 7952 2012-07-19 08:13 /usr/local/lib/libsotest.so.1.0.1 

[email protected]:/$ # But when I run an executable that refrs to libsotest.so.1, the loader  doesn't find it. 
[email protected]:/$ /projects/sotest/exe/sotestexe 
/projects/sotest/exe/sotestexe: error while loading shared libraries: libsotest.so.1: cannot  open shared object file: No such file or directory 

[email protected]:/$ # Configure loader to display the paths it's searching...it's  searching /usr/lib but not /usr/local/lib 
[email protected]:/$ export LD_DEBUG=lib 
[email protected]:/$ /projects/sotest/exe/sotestexe 
warning: debug option `lib' unknown; try LD_DEBUG=help 
/projects/sotest/exe/sotestexe: error while loading shared libraries: libsotest.so.1: cannot  open shared object file: No such file or directory 
[email protected]:/$ export LD_DEBUG=libs 
[email protected]:/$ /projects/sotest/exe/sotestexe 
     6691: find library=libsotest.so.1 [0]; searching 
     6691: search cache=/etc/ld.so.cache 
     6691: search  path=/lib/tls/x86_64:/lib/tls:/lib/x86_64:/lib:/usr/lib/tls/x86_64:/usr/lib/tls:/usr/lib/x86_64:/usr/ lib:/lib/x86_64-linux-gnu/tls/x86_64:/lib/x86_64-linux-gnu/tls:/lib/x86_64-linux- gnu/x86_64:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu/tls/x86_64:/usr/lib/x86_64-linux- gnu/tls:/usr/lib/x86_64-linux-gnu/x86_64:/usr/lib/x86_64-linux-gnu  (system search path) 
     6691: trying file=/lib/tls/x86_64/libsotest.so.1 
     6691: trying file=/lib/tls/libsotest.so.1 
     6691: trying file=/lib/x86_64/libsotest.so.1 
     6691: trying file=/lib/libsotest.so.1 
     6691: trying file=/usr/lib/tls/x86_64/libsotest.so.1 
     6691: trying file=/usr/lib/tls/libsotest.so.1 
     6691: trying file=/usr/lib/x86_64/libsotest.so.1 
     6691: trying file=/usr/lib/libsotest.so.1 
     6691: trying file=/lib/x86_64-linux-gnu/tls/x86_64/libsotest.so.1 
     6691: trying file=/lib/x86_64-linux-gnu/tls/libsotest.so.1 
     6691: trying file=/lib/x86_64-linux-gnu/x86_64/libsotest.so.1 
     6691: trying file=/lib/x86_64-linux-gnu/libsotest.so.1 
     6691: trying file=/usr/lib/x86_64-linux-gnu/tls/x86_64/libsotest.so.1 
     6691: trying file=/usr/lib/x86_64-linux-gnu/tls/libsotest.so.1 
     6691: trying file=/usr/lib/x86_64-linux-gnu/x86_64/libsotest.so.1 
     6691: trying file=/usr/lib/x86_64-linux-gnu/libsotest.so.1 
     6691: 
/projects/sotest/exe/sotestexe: error while loading shared libraries: libsotest.so.1: cannot  open shared object file: No such file or directory 
[email protected]:/$ 

cevap

10

/usr/lib ve/lib önceden kodlanmıştır IIRC.

Ve ld.conf.so bir PATH ekleyerek enougth değil, ldconfig kullanarak, önbellek ve bağlantıları yeniden zorunda (8)

Sen Ldconfig -p ile önbelleğe hangi kütüphane kontrol edebilirsiniz

.