SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG
DONATE


YUM REPOSITORY

 
 

MAN page from Mandriva 2009 glibc-2.9-0.20081113.5.3mnb2.i586.rpm

ld.so

Section: Maintenance Commands (8)
Updated: 14 March 1998
Index 

NAME

ld.so/ld-linux.so - dynamic linker/loader 

DESCRIPTION

ld.soloads the shared libraries needed by a program, prepares the programto run, and then runs it.Unless explicitly specified via the-staticoption toldduring compilation, all Linux programs are incomplete and require further linking at run time.

The necessary shared libraries needed by the program are searched for in the following order

o
Using the environment variableLD_LIBRARY_PATH(LD_AOUT_LIBRARY_PATHfor a.out programs).Except if the executable is a setuid/setgid binary, in which case itis ignored.
o
From the cache file/etc/ld.so.cachewhich contains a compiled list of candidate libraries previously foundin the augmented library path.
o
In the default path/usr/lib,and then/lib.
 

ENVIRONMENT

LD_LIBRARY_PATH
A colon-separated list of directories in which to search forELF libraries at execution-time.Similar to the PATHenvironment variable.
LD_PRELOAD
A whitespace-separated list of additional, user-specified, ELF shared libraries to be loaded before all others.This can be used to selectively override functions in other shared libraries.For setuid/setgid ELF binaries, only libraries in the standard searchdirectories that are also setgid will be loaded.
LD_TRACE_LOADED_OBJECTS
If present, causes the program to list its dynamic library dependencies,as if run by ldd, instead of running normally.
LD_BIND_NOW
If present, causes the dynamic linker to resolve all symbols at programstartup instead of when they are first referenced.
LD_AOUT_LIBRARY_PATH
A colon-separated list of directories in which to search fora.out libraries at execution-time.Similar to the PATHenvironment variable.
LD_AOUT_PRELOAD
The name of an additional, user-specified, a.out shared library to be loaded after all others.This can be used to selectively override functions in other shared libraries.
LD_NOWARN
Suppress warnings about a.out libraries with incompatible minor version numbers.
LD_KEEPDIR
Don't ignore the directory in the names of a.out libraries to be loaded.Use of this option is strongly discouraged.
 

FILES

/lib/ld.so
a.out dynamic linker/loader
/lib/ld-linux.so.*
ELF dynamic linker/loader
/etc/ld.so.cache
File containing a compiled list of directories in which to search forlibraries and an ordered list of candidate libraries.
/etc/ld.so.preload
File containing a whitespace separated list of ELF shared libraries tobe loaded before the program.libraries and an ordered list of candidate libraries.
lib*.so*
shared libraries
 

SEE ALSO

ldd(1),ldconfig(8). 

BUGS

Currentlyld.sohas no means of unloading and searching for compatible or newer version oflibraries.

ld.sofunctionality is only available for executables compiled using libc version4.4.3 or greater. 

AUTHORS

David Engel, Eric Youngdale, Peter MacDonald, Hongjiu Lu, LinusTorvalds, Lars Wirzenius and Mitch D'Souza (not necessarily in that order).


 

Index

NAME
DESCRIPTION
ENVIRONMENT
FILES
SEE ALSO
BUGS
AUTHORS

This document was created byman2html,using the manual pages.