# phpman > man > ld-linux(8)

[LD.SO(8)](https://www.chedong.com/phpMan.php/man/LD.SO/8/markdown)                              Linux Programmer's Manual                             [LD.SO(8)](https://www.chedong.com/phpMan.php/man/LD.SO/8/markdown)



## NAME
       ld.so, ld-linux.so - dynamic linker/loader

## SYNOPSIS
       The dynamic linker can be run either indirectly by running some dynamically linked program or
       shared object (in which case no command-line options to the dynamic linker can be passed and,
       in  the ELF case, the dynamic linker which is stored in the **.interp** section of the program is
       executed) or directly by running:

       _/lib/ld-linux.so.*_  [OPTIONS] [PROGRAM [ARGUMENTS]]

## DESCRIPTION
       The programs **ld.so** and **ld-linux.so*** find and  load  the  shared  objects  (shared  libraries)
       needed by a program, prepare the program to run, and then run it.

       Linux  binaries  require  dynamic linking (linking at run time) unless the **-static** option was
       given to [**ld**(1)](https://www.chedong.com/phpMan.php/man/ld/1/markdown) during compilation.

       The program **ld.so** handles a.out binaries,  a  binary  format  used  long  ago.   The  program
       **ld-linux.so***  (_/lib/ld-linux.so.1_  for libc5, _/lib/ld-linux.so.2_ for glibc2) handles binaries
       that are in the more modern ELF format.  Both programs have the same behavior,  and  use  the
       same support files and programs ([**ldd**(1)](https://www.chedong.com/phpMan.php/man/ldd/1/markdown), [**ldconfig**(8)](https://www.chedong.com/phpMan.php/man/ldconfig/8/markdown), and _/etc/ld.so.conf_).

       When  resolving shared object dependencies, the dynamic linker first inspects each dependency
       string to see if it contains a slash (this can occur if a shared object  pathname  containing
       slashes  was specified at link time).  If a slash is found, then the dependency string is in‐
       terpreted as a (relative or absolute) pathname, and the shared object is  loaded  using  that
       pathname.

       If  a  shared object dependency does not contain a slash, then it is searched for in the fol‐
       lowing order:

       o  Using the directories specified in the DT_RPATH dynamic section attribute of the binary if
          present and DT_RUNPATH attribute does not exist.  Use of DT_RPATH is deprecated.

       o  Using  the environment variable **LD**___**LIBRARY**___**PATH**, unless the executable is being run in se‐
          cure-execution mode (see below), in which case this variable is ignored.

       o  Using the directories specified in the DT_RUNPATH dynamic section attribute of the  binary
          if  present.   Such  directories  are  searched  only  to  find  those objects required by
          DT_NEEDED (direct dependencies) entries and do not apply to those objects' children, which
          must  themselves have their own DT_RUNPATH entries.  This is unlike DT_RPATH, which is ap‐
          plied to searches for all children in the dependency tree.

       o  From the cache file _/etc/ld.so.cache_, which contains a compiled list of  candidate  shared
          objects  previously  found  in  the  augmented  library path.  If, however, the binary was
          linked with the **-z** **nodeflib** linker  option,  shared  objects  in  the  default  paths  are
          skipped.  Shared objects installed in hardware capability directories (see below) are pre‐
          ferred to other shared objects.

       o  In the default path _/lib_, and then _/usr/lib_.  (On some 64-bit architectures,  the  default
          paths  for  64-bit  shared  objects  are  _/lib64_, and then _/usr/lib64_.)  If the binary was
          linked with the **-z** **nodeflib** linker option, this step is skipped.

### Dynamic string tokens
       In several places, the dynamic linker expands dynamic string tokens:

       o  In the environment variables **LD**___**LIBRARY**___**PATH**, **LD**___**PRELOAD**, and **LD**___**AUDIT**,

       o  inside the values of the dynamic section tags **DT**___**NEEDED**, **DT**___**RPATH**,  **DT**___**RUNPATH**,  **DT**___**AUDIT**,
          and **DT**___**DEPAUDIT** of ELF binaries,

       o  in  the arguments to the **ld.so** command line options **--audit**, **--library-path**, and **--preload**
          (see below), and

       o  in the filename arguments to the [**dlopen**(3)](https://www.chedong.com/phpMan.php/man/dlopen/3/markdown) and [**dlmopen**(3)](https://www.chedong.com/phpMan.php/man/dlmopen/3/markdown) functions.

       The substituted tokens are as follows:

       _$ORIGIN_ (or equivalently _${ORIGIN}_)
              This expands to the directory containing the program or shared object.  Thus,  an  ap‐
              plication located in _somedir/app_ could be compiled with

                  gcc -Wl,-rpath,'$ORIGIN/../lib'

              so that it finds an associated shared object in _somedir/lib_ no matter where _somedir_ is
              located in the directory hierarchy.  This facilitates the creation of  "turn-key"  ap‐
              plications  that do not need to be installed into special directories, but can instead
              be unpacked into any directory and still find their own shared objects.

       _$LIB_ (or equivalently _${LIB}_)
              This expands to _lib_ or _lib64_ depending on the architecture (e.g., on  x86-64,  it  ex‐
              pands to _lib64_ and on x86-32, it expands to _lib_).

       _$PLATFORM_ (or equivalently _${PLATFORM}_)
              This expands to a string corresponding to the processor type of the host system (e.g.,
              "x86_64").  On some architectures, the Linux kernel doesn't provide a platform  string
              to  the  dynamic linker.  The value of this string is taken from the **AT**___**PLATFORM** value
              in the auxiliary vector (see [**getauxval**(3)](https://www.chedong.com/phpMan.php/man/getauxval/3/markdown)).

       Note that the dynamic string tokens have to be quoted properly when set from a shell, to pre‐
       vent their expansion as shell or environment variables.

## OPTIONS
       **--audit** _list_
              Use objects named in _list_ as auditors.  The objects in _list_ are delimited by colons.

### --inhibit-cache
              Do not use _/etc/ld.so.cache_.

       **--library-path** _path_
              Use  _path_  instead  of  **LD**___**LIBRARY**___**PATH** environment variable setting (see below).  The
              names _ORIGIN_, _LIB_, and _PLATFORM_ are interpreted as for the **LD**___**LIBRARY**___**PATH** environment
              variable.

       **--inhibit-rpath** _list_
              Ignore  RPATH and RUNPATH information in object names in _list_.  This option is ignored
              when running in secure-execution mode (see below).  The objects in _list_ are  delimited
              by colons or spaces.

       **--list** List all dependencies and how they are resolved.

       **--preload** _list_ (since glibc 2.30)
              Preload the objects specified in _list_.  The objects in _list_ are delimited by colons or
              spaces.  The objects are preloaded as explained in the description of  the  **LD**___**PRELOAD**
              environment variable below.

              By contrast with **LD**___**PRELOAD**, the **--preload** option provides a way to perform preloading
              for a single executable without affecting preloading performed in  any  child  process
              that executes a new program.

### --verify
              Verify that program is dynamically linked and this dynamic linker can handle it.

## ENVIRONMENT
       Various environment variables influence the operation of the dynamic linker.

### Secure-execution mode
       For security reasons, if the dynamic linker determines that a binary should be run in secure-
       execution mode, the effects of some environment variables are voided or  modified,  and  fur‐
       thermore  those  environment variables are stripped from the environment, so that the program
       does not even see the definitions.  Some of these environment variables affect the  operation
       of  the  dynamic linker itself, and are described below.  Other environment variables treated
       in this  way  include:  **GCONV**___**PATH**,  **GETCONF**___**DIR**,  **HOSTALIASES**,  **LOCALDOMAIN**,  **LOCPATH**,  **MAL**‐‐
       **LOC**___**TRACE**, **NIS**___**PATH**, **NLSPATH**, **RESOLV**___**HOST**___**CONF**, **RES**___**OPTIONS**, **TMPDIR**, and **TZDIR**.

       A  binary is executed in secure-execution mode if the **AT**___**SECURE** entry in the auxiliary vector
       (see [**getauxval**(3)](https://www.chedong.com/phpMan.php/man/getauxval/3/markdown)) has a nonzero value.  This entry may have a nonzero value for various rea‐
       sons, including:

       *  The process's real and effective user IDs differ, or the real and effective group IDs dif‐
          fer.  This typically occurs as a result of executing a set-user-ID  or  set-group-ID  pro‐
          gram.

       *  A  process  with  a  non-root user ID executed a binary that conferred capabilities to the
          process.

       *  A nonzero value may have been set by a Linux Security Module.

### Environment variables
       Among the more important environment variables are the following:

       **LD**___**ASSUME**___**KERNEL** (since glibc 2.2.3)
              Each shared object can inform the dynamic linker of the  minimum  kernel  ABI  version
              that  it  requires.  (This requirement is encoded in an ELF note section that is view‐
              able via _readelf_ _-n_ as a section labeled **NT**___**GNU**___**ABI**___**TAG**.)  At run  time,  the  dynamic
              linker determines the ABI version of the running kernel and will reject loading shared
              objects that specify minimum ABI versions that exceed that ABI version.

              **LD**___**ASSUME**___**KERNEL** can be used to cause the dynamic linker to assume that it is  running
              on  a  system with a different kernel ABI version.  For example, the following command
              line causes the dynamic linker to assume it is running on Linux 2.2.5 when loading the
              shared objects required by _myprog_:

                  $ **LD**___**ASSUME**___**KERNEL=2.2.5** **./myprog**

              On systems that provide multiple versions of a shared object (in different directories
              in the search path) that have  different  minimum  kernel  ABI  version  requirements,
              **LD**___**ASSUME**___**KERNEL**  can be used to select the version of the object that is used (depen‐
              dent on the directory search order).

              Historically, the most common use of the **LD**___**ASSUME**___**KERNEL** feature was to manually  se‐
              lect the older LinuxThreads POSIX threads implementation on systems that provided both
              LinuxThreads and NPTL (which latter was typically the default on  such  systems);  see
              [**pthreads**(7)](https://www.chedong.com/phpMan.php/man/pthreads/7/markdown).

       **LD**___**BIND**___**NOW** (since glibc 2.1.1)
              If  set to a nonempty string, causes the dynamic linker to resolve all symbols at pro‐
              gram startup instead of deferring function call resolution to the point when they  are
              first referenced.  This is useful when using a debugger.

       **LD**___**LIBRARY**___**PATH**
              A  list  of  directories  in which to search for ELF libraries at execution time.  The
              items in the list are separated by either colons or semicolons, and there is  no  sup‐
              port  for  escaping either separator.  A zero-length directory name indicates the cur‐
              rent working directory.

              This variable is ignored in secure-execution mode.

              Within the pathnames specified in **LD**___**LIBRARY**___**PATH**, the dynamic linker expands the  to‐
              kens  _$ORIGIN_,  _$LIB_,  and  _$PLATFORM_  (or  the versions using curly braces around the
              names) as described above in _Dynamic_ _string_ _tokens_.  Thus, for example, the  following
              would cause a library to be searched for in either the _lib_ or _lib64_ subdirectory below
              the directory containing the program to be executed:

                  $ **LD**___**LIBRARY**___**PATH='$ORIGIN/$LIB'** **prog**

              (Note the use of single quotes, which prevent expansion of _$ORIGIN_ and _$LIB_  as  shell
              variables!)

       **LD**___**PRELOAD**
              A  list of additional, user-specified, ELF shared objects to be loaded before all oth‐
              ers.  This feature can be used to selectively override functions in other  shared  ob‐
              jects.

              The  items  of  the list can be separated by spaces or colons, and there is no support
              for escaping either separator.  The objects are searched for using the rules given un‐
              der  DESCRIPTION.   Objects are searched for and added to the link map in the left-to-
              right order specified in the list.

              In secure-execution mode, preload pathnames containing slashes are ignored.   Further‐
              more,  shared objects are preloaded only from the standard search directories and only
              if they have set-user-ID mode bit enabled (which is not typical).

              Within the names specified in the **LD**___**PRELOAD** list, the dynamic linker understands  the
              tokens  _$ORIGIN_,  _$LIB_,  and  _$PLATFORM_ (or the versions using curly braces around the
              names) as described above in _Dynamic_ _string_ _tokens_.  (See also the discussion of quot‐
              ing under the description of **LD**___**LIBRARY**___**PATH**.)

              There  are various methods of specifying libraries to be preloaded, and these are han‐
              dled in the following order:

              (1) The **LD**___**PRELOAD** environment variable.

              (2) The **--preload** command-line option when invoking the dynamic linker directly.

              (3) The _/etc/ld.so.preload_ file (described below).

       **LD**___**TRACE**___**LOADED**___**OBJECTS**
              If set (to any value), causes the program to list its dynamic dependencies, as if  run
              by [**ldd**(1)](https://www.chedong.com/phpMan.php/man/ldd/1/markdown), instead of running normally.

       Then  there  are  lots  of more or less obscure variables, many obsolete or only for internal
       use.

       **LD**___**AUDIT** (since glibc 2.4)
              A list of user-specified, ELF shared objects to be loaded before all others in a sepa‐
              rate linker namespace (i.e., one that does not intrude upon the normal symbol bindings
              that would occur in the process) These objects can be used to audit the  operation  of
              the  dynamic  linker.  The items in the list are colon-separated, and there is no sup‐
              port for escaping the separator.

              **LD**___**AUDIT** is ignored in secure-execution mode.

              The dynamic linker will notify the audit shared objects at so-called  auditing  check‐
              points—for example, loading a new shared object, resolving a symbol, or calling a sym‐
              bol from another shared object—by calling an appropriate  function  within  the  audit
              shared  object.   For  details,  see [**rtld-audit**(7)](https://www.chedong.com/phpMan.php/man/rtld-audit/7/markdown).  The auditing interface is largely
              compatible with that provided on Solaris, as described in  its  _Linker_  _and_  _Libraries_
              _Guide_, in the chapter _Runtime_ _Linker_ _Auditing_ _Interface_.

              Within  the  names  specified in the **LD**___**AUDIT** list, the dynamic linker understands the
              tokens _$ORIGIN_, _$LIB_, and _$PLATFORM_ (or the versions using  curly  braces  around  the
              names) as described above in _Dynamic_ _string_ _tokens_.  (See also the discussion of quot‐
              ing under the description of **LD**___**LIBRARY**___**PATH**.)

              Since glibc 2.13, in secure-execution mode, names  in  the  audit  list  that  contain
              slashes  are  ignored, and only shared objects in the standard search directories that
              have the set-user-ID mode bit enabled are loaded.

       **LD**___**BIND**___**NOT** (since glibc 2.1.95)
              If this environment variable is set to a  nonempty  string,  do  not  update  the  GOT
              (global  offset  table)  and  PLT (procedure linkage table) after resolving a function
              symbol.  By combining the use of this variable  with  **LD**___**DEBUG**  (with  the  categories
              _bindings_ and _symbols_), one can observe all run-time function bindings.

       **LD**___**DEBUG** (since glibc 2.1)
              Output  verbose debugging information about operation of the dynamic linker.  The con‐
              tent of this variable is one of more of the following categories, separated by colons,
              commas, or (if the value is quoted) spaces:

              _help_        Specifying  _help_  in the value of this variable does not run the specified
                          program, and displays a help message about which categories can be  speci‐
                          fied in this environment variable.

              _all_         Print all debugging information (except _statistics_ and _unused_; see below).

              _bindings_    Display information about which definition each symbol is bound to.

              _files_       Display progress for input file.

              _libs_        Display library search paths.

              _reloc_       Display relocation processing.

              _scopes_      Display scope information.

              _statistics_  Display relocation statistics.

              _symbols_     Display search paths for each symbol look-up.

              _unused_      Determine unused DSOs.

              _versions_    Display version dependencies.

              Since  glibc  2.3.4,  **LD**___**DEBUG**  is  ignored  in secure-execution mode, unless the file
              _/etc/suid-debug_ exists (the content of the file is irrelevant).

       **LD**___**DEBUG**___**OUTPUT** (since glibc 2.1)
              By default, **LD**___**DEBUG** output is written to standard error.  If **LD**___**DEBUG**___**OUTPUT**  is  de‐
              fined,  then output is written to the pathname specified by its value, with the suffix
              "." (dot) followed by the process ID appended to the pathname.

              **LD**___**DEBUG**___**OUTPUT** is ignored in secure-execution mode.

       **LD**___**DYNAMIC**___**WEAK** (since glibc 2.1.91)
              By default, when searching shared libraries to resolve a symbol reference, the dynamic
              linker will resolve to the first definition it finds.

              Old  glibc versions (before 2.2), provided a different behavior: if the linker found a
              symbol that was weak, it would remember that symbol and keep searching in the  remain‐
              ing  shared  libraries.  If it subsequently found a strong definition of the same sym‐
              bol, then it would instead use that definition.  (If no further symbol was found, then
              the dynamic linker would use the weak symbol that it initially found.)

              The  old  glibc  behavior was nonstandard.  (Standard practice is that the distinction
              between weak and strong symbols should have effect only  at  static  link  time.)   In
              glibc  2.2, the dynamic linker was modified to provide the current behavior (which was
              the behavior that was provided by most other implementations at that time).

              Defining the **LD**___**DYNAMIC**___**WEAK** environment variable (with any value)  provides  the  old
              (nonstandard) glibc behavior, whereby a weak symbol in one shared library may be over‐
              ridden by a strong symbol subsequently discovered in another  shared  library.   (Note
              that  even  when  this  variable  is set, a strong symbol in a shared library will not
              override a weak definition of the same symbol in the main program.)

              Since glibc 2.3.4, **LD**___**DYNAMIC**___**WEAK** is ignored in secure-execution mode.

       **LD**___**HWCAP**___**MASK** (since glibc 2.1)
              Mask for hardware capabilities.

       **LD**___**ORIGIN**___**PATH** (since glibc 2.1)
              Path where the binary is found.

              Since glibc 2.4, **LD**___**ORIGIN**___**PATH** is ignored in secure-execution mode.

       **LD**___**POINTER**___**GUARD** (glibc from 2.4 to 2.22)
              Set to 0 to disable pointer guarding.  Any other value enables pointer guarding, which
              is  also  the default.  Pointer guarding is a security mechanism whereby some pointers
              to code stored in writable program memory (return  addresses  saved  by  [**setjmp**(3)](https://www.chedong.com/phpMan.php/man/setjmp/3/markdown)  or
              function  pointers  used by various glibc internals) are mangled semi-randomly to make
              it more difficult for an attacker to hijack the pointers for use in  the  event  of  a
              buffer  overrun  or  stack-smashing attack.  Since glibc 2.23, **LD**___**POINTER**___**GUARD** can no
              longer be used to disable pointer guarding, which is now always enabled.

       **LD**___**PROFILE** (since glibc 2.1)
              The name of a (single) shared object to be profiled, specified either as a pathname or
              a  soname.   Profiling output is appended to the file whose name is: "_$LD_PROFILE_OUT__‐
              _PUT_/_$LD_PROFILE_.profile".

              Since glibc 2.2.5, **LD**___**PROFILE** is ignored in secure-execution mode.

       **LD**___**PROFILE**___**OUTPUT** (since glibc 2.1)
              Directory where **LD**___**PROFILE** output should be written.  If this variable is not defined,
              or is defined as an empty string, then the default is _/var/tmp_.

              **LD**___**PROFILE**___**OUTPUT**  is ignored in secure-execution mode; instead _/var/profile_ is always
              used.  (This detail is relevant only before glibc 2.2.5, since  in  later  glibc  ver‐
              sions, **LD**___**PROFILE** is also ignored in secure-execution mode.)

       **LD**___**SHOW**___**AUXV** (since glibc 2.1)
              If  this  environment  variable  is defined (with any value), show the auxiliary array
              passed up from the kernel (see also [**getauxval**(3)](https://www.chedong.com/phpMan.php/man/getauxval/3/markdown)).

              Since glibc 2.3.4, **LD**___**SHOW**___**AUXV** is ignored in secure-execution mode.

       **LD**___**TRACE**___**PRELINKING** (since glibc 2.4)
              If this environment variable is defined, trace prelinking of the object whose name  is
              assigned  to this environment variable.  (Use [**ldd**(1)](https://www.chedong.com/phpMan.php/man/ldd/1/markdown) to get a list of the objects that
              might be traced.)  If the object name is not recognized, then all prelinking  activity
              is traced.

       **LD**___**USE**___**LOAD**___**BIAS** (since glibc 2.3.3)
              By  default  (i.e., if this variable is not defined), executables and prelinked shared
              objects will honor base addresses of their dependent shared objects and (nonprelinked)
              position-independent  executables (PIEs) and other shared objects will not honor them.
              If **LD**___**USE**___**LOAD**___**BIAS** is defined with the value 1, both executables and PIEs will  honor
              the base addresses.  If **LD**___**USE**___**LOAD**___**BIAS** is defined with the value 0, neither executa‐
              bles nor PIEs will honor the base addresses.

              Since glibc 2.3.3, this variable is ignored in secure-execution mode.

       **LD**___**VERBOSE** (since glibc 2.1)
              If set to a nonempty string, output symbol versioning information about the program if
              the **LD**___**TRACE**___**LOADED**___**OBJECTS** environment variable has been set.

       **LD**___**WARN** (since glibc 2.1.3)
              If set to a nonempty string, warn about unresolved symbols.

       **LD**___**PREFER**___**MAP**___**32BIT**___**EXEC** (x86-64 only; since glibc 2.23)
              According  to  the  Intel  Silvermont software optimization guide, for 64-bit applica‐
              tions, branch prediction performance can be negatively impacted when the target  of  a
              branch  is  more  than 4 GB away from the branch.  If this environment variable is set
              (to any value), the dynamic linker will first try to map executable  pages  using  the
              [**mmap**(2)](https://www.chedong.com/phpMan.php/man/mmap/2/markdown)  **MAP**___**32BIT**  flag,  and  fall back to mapping without that flag if that attempt
              fails.  NB: MAP_32BIT will map to the low 2 GB (not 4 GB) of the address space.

              Because **MAP**___**32BIT** reduces the address range available for address space layout random‐
              ization (ASLR), **LD**___**PREFER**___**MAP**___**32BIT**___**EXEC** is always disabled in secure-execution mode.

## FILES
       _/lib/ld.so_
              a.out dynamic linker/loader

       _/lib/ld-linux.so._{_1_,_2_}
              ELF dynamic linker/loader

       _/etc/ld.so.cache_
              File  containing  a compiled list of directories in which to search for shared objects
              and an ordered list of candidate shared objects.  See [**ldconfig**(8)](https://www.chedong.com/phpMan.php/man/ldconfig/8/markdown).

       _/etc/ld.so.preload_
              File containing a whitespace-separated list of ELF shared objects to be loaded  before
              the  program.   See  the  discussion  of  **LD**___**PRELOAD**  above.   If  both **LD**___**PRELOAD** and
              _/etc/ld.so.preload_ are employed, the libraries specified by **LD**___**PRELOAD**  are  preloaded
              first.   _/etc/ld.so.preload_  has a system-wide effect, causing the specified libraries
              to be preloaded for all programs that are executed on the system.   (This  is  usually
              undesirable,  and is typically employed only as an emergency remedy, for example, as a
              temporary workaround to a library misconfiguration issue.)

       _lib*.so*_
              shared objects

## NOTES
### Hardware capabilities
       Some shared objects are compiled using hardware-specific instructions which do not  exist  on
       every  CPU.   Such objects should be installed in directories whose names define the required
       hardware capabilities, such as _/usr/lib/sse2/_.  The dynamic linker checks  these  directories
       against  the  hardware of the machine and selects the most suitable version of a given shared
       object.  Hardware capability directories can be cascaded to combine CPU features.   The  list
       of supported hardware capability names depends on the CPU.  The following names are currently
       recognized:

       **Alpha**  ev4, ev5, ev56, ev6, ev67

       **MIPS**   loongson2e, loongson2f, octeon, octeon2

### PowerPC
              4xxmac, altivec, arch_2_05, arch_2_06, booke, cellbe, dfp, efpdouble, efpsingle,  fpu,
              ic_snoop,  mmu,  notb,  pa6t,  power4, power5, power5+, power6x, ppc32, ppc601, ppc64,
              smt, spe, ucache, vsx

       **SPARC**  flush, muldiv, stbar, swap, ultra3, v9, v9v, v9v2

       **s390**   dfp, eimm, esan3, etf3enh, g5, highgprs, hpage, ldisp, msa, stfle, z900, z990, z9-109,
              z10, zarch

### x86 (32-bit only)
              acpi, apic, clflush, cmov, cx8, dts, fxsr, ht, i386, i486, i586, i686, mca, mmx, mtrr,
              pat, pbe, pge, pn, pse36, sep, ss, sse, sse2, tm

## SEE ALSO
       [**ld**(1)](https://www.chedong.com/phpMan.php/man/ld/1/markdown), [**ldd**(1)](https://www.chedong.com/phpMan.php/man/ldd/1/markdown), [**pldd**(1)](https://www.chedong.com/phpMan.php/man/pldd/1/markdown), [**sprof**(1)](https://www.chedong.com/phpMan.php/man/sprof/1/markdown), [**dlopen**(3)](https://www.chedong.com/phpMan.php/man/dlopen/3/markdown), [**getauxval**(3)](https://www.chedong.com/phpMan.php/man/getauxval/3/markdown), [**elf**(5)](https://www.chedong.com/phpMan.php/man/elf/5/markdown), [**capabilities**(7)](https://www.chedong.com/phpMan.php/man/capabilities/7/markdown),  **rtld-au**‐‐
       [**dit**(7)](https://www.chedong.com/phpMan.php/man/dit/7/markdown), [**ldconfig**(8)](https://www.chedong.com/phpMan.php/man/ldconfig/8/markdown), [**sln**(8)](https://www.chedong.com/phpMan.php/man/sln/8/markdown)

## COLOPHON
       This  page  is  part  of  release  5.10 of the Linux _man-pages_ project.  A description of the
       project, information about reporting bugs, and the latest version of this page, can be  found
       at <https://www.kernel.org/doc/man-pages/>.



GNU                                          2020-08-13                                     [LD.SO(8)](https://www.chedong.com/phpMan.php/man/LD.SO/8/markdown)
