]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man8/ld.so.8
ld.so.8: Minor rewording of LD_PRELOAD description, to ease readability
[thirdparty/man-pages.git] / man8 / ld.so.8
1 .\" %%%LICENSE_START(PUBLIC_DOMAIN)
2 .\" This is in the public domain
3 .\" %%%LICENSE_END
4 .\"
5 .TH LD.SO 8 2018-04-30 "GNU" "Linux Programmer's Manual"
6 .SH NAME
7 ld.so, ld\-linux.so \- dynamic linker/loader
8 .SH SYNOPSIS
9 The dynamic linker can be run either indirectly by running some
10 dynamically linked program or shared object
11 (in which case no command-line options
12 to the dynamic linker can be passed and, in the ELF case, the dynamic linker
13 which is stored in the
14 .B .interp
15 section of the program is executed) or directly by running:
16 .PP
17 .I /lib/ld\-linux.so.*
18 [OPTIONS] [PROGRAM [ARGUMENTS]]
19 .SH DESCRIPTION
20 The programs
21 .B ld.so
22 and
23 .B ld\-linux.so*
24 find and load the shared objects (shared libraries) needed by a program,
25 prepare the program to run, and then run it.
26 .PP
27 Linux binaries require dynamic linking (linking at run time)
28 unless the
29 .B \-static
30 option was given to
31 .BR ld (1)
32 during compilation.
33 .PP
34 The program
35 .B ld.so
36 handles a.out binaries, a format used long ago;
37 .B ld\-linux.so*
38 (\fI/lib/ld\-linux.so.1\fP for libc5, \fI/lib/ld\-linux.so.2\fP for glibc2)
39 handles ELF,
40 which everybody has been using for years now.
41 Otherwise, both have the same behavior, and use the same
42 support files and programs as
43 .BR ldd (1),
44 .BR ldconfig (8),
45 and
46 .IR /etc/ld.so.conf .
47 .PP
48 When resolving shared object dependencies,
49 the dynamic linker first inspects each dependency
50 string to see if it contains a slash (this can occur if
51 a shared object pathname containing slashes was specified at link time).
52 If a slash is found, then the dependency string is interpreted as
53 a (relative or absolute) pathname,
54 and the shared object is loaded using that pathname.
55 .PP
56 If a shared object dependency does not contain a slash,
57 then it is searched for in the following order:
58 .IP o 3
59 Using the directories specified in the
60 DT_RPATH dynamic section attribute
61 of the binary if present and DT_RUNPATH attribute does not exist.
62 Use of DT_RPATH is deprecated.
63 .IP o
64 Using the environment variable
65 .BR LD_LIBRARY_PATH ,
66 unless the executable is being run in secure-execution mode (see below),
67 in which case this variable is ignored.
68 .IP o
69 Using the directories specified in the
70 DT_RUNPATH dynamic section attribute
71 of the binary if present.
72 Such directories are searched only to
73 find those objects required by DT_NEEDED (direct dependencies) entries
74 and do not apply to those objects' children,
75 which must themselves have their own DT_RUNPATH entries.
76 This is unlike DT_RPATH, which is applied
77 to searches for all children in the dependency tree.
78 .IP o
79 From the cache file
80 .IR /etc/ld.so.cache ,
81 which contains a compiled list of candidate shared objects previously found
82 in the augmented library path.
83 If, however, the binary was linked with the
84 .B \-z nodeflib
85 linker option, shared objects in the default paths are skipped.
86 Shared objects installed in hardware capability directories (see below)
87 are preferred to other shared objects.
88 .IP o
89 In the default path
90 .IR /lib ,
91 and then
92 .IR /usr/lib .
93 (On some 64-bit architectures, the default paths for 64-bit shared objects are
94 .IR /lib64 ,
95 and then
96 .IR /usr/lib64 .)
97 If the binary was linked with the
98 .B \-z nodeflib
99 linker option, this step is skipped.
100 .SS Rpath token expansion
101 .PP
102 The dynamic linker
103 understands certain token strings in an rpath specification
104 (DT_RPATH or DT_RUNPATH).
105 Those strings are substituted as follows:
106 .TP
107 .IR $ORIGIN " (or equivalently " ${ORIGIN} )
108 This expands to
109 the directory containing the program or shared object.
110 Thus, an application located in
111 .I somedir/app
112 could be compiled with
113 .IP
114 gcc \-Wl,\-rpath,\(aq$ORIGIN/../lib\(aq
115 .IP
116 so that it finds an associated shared object in
117 .I somedir/lib
118 no matter where
119 .I somedir
120 is located in the directory hierarchy.
121 This facilitates the creation of "turn-key" applications that
122 do not need to be installed into special directories,
123 but can instead be unpacked into any directory
124 and still find their own shared objects.
125 .TP
126 .IR $LIB " (or equivalently " ${LIB} )
127 This expands to
128 .I lib
129 or
130 .I lib64
131 depending on the architecture
132 (e.g., on x86-64, it expands to
133 .IR lib64
134 and
135 on x86-32, it expands to
136 .IR lib ).
137 .TP
138 .IR $PLATFORM " (or equivalently " ${PLATFORM} )
139 This expands to a string corresponding to the processor type
140 of the host system (e.g., "x86_64").
141 On some architectures, the Linux kernel doesn't provide a platform
142 string to the dynamic linker.
143 The value of this string is taken from the
144 .BR AT_PLATFORM
145 value in the auxiliary vector (see
146 .BR getauxval (3)).
147 .\" To get an idea of the places that $PLATFORM would match,
148 .\" look at the output of the following:
149 .\"
150 .\" mkdir /tmp/d
151 .\" LD_LIBRARY_PATH=/tmp/d strace -e open /bin/date 2>&1 | grep /tmp/d
152 .\"
153 .\" ld.so lets names be abbreviated, so $O will work for $ORIGIN;
154 .\" Don't do this!!
155 .SH OPTIONS
156 .TP
157 .B \-\-list
158 List all dependencies and how they are resolved.
159 .TP
160 .B \-\-verify
161 Verify that program is dynamically linked and this dynamic linker can handle
162 it.
163 .TP
164 .B \-\-inhibit\-cache
165 Do not use
166 .IR /etc/ld.so.cache .
167 .TP
168 .BI \-\-library\-path " path"
169 Use
170 .I path
171 instead of
172 .B LD_LIBRARY_PATH
173 environment variable setting (see below).
174 The names
175 .IR ORIGIN ,
176 .IR LIB ,
177 and
178 .IR PLATFORM
179 are interpreted as for the
180 .BR LD_LIBRARY_PATH
181 environment variable.
182 .TP
183 .BI \-\-inhibit\-rpath " list"
184 Ignore RPATH and RUNPATH information in object names in
185 .IR list .
186 This option is ignored when running in secure-execution mode (see below).
187 The objects in
188 .I list
189 are delimited by colons or spaces.
190 .TP
191 .BI \-\-audit " list"
192 Use objects named in
193 .I list
194 as auditors.
195 The objects in
196 .I list
197 are delimited by colons.
198 .SH ENVIRONMENT
199 Various environment variables influence the operation of the dynamic linker.
200 .\"
201 .SS Secure-execution mode
202 For security reasons,
203 the effects of some environment variables are voided or modified if
204 the dynamic linker determines that the binary should be
205 run in secure-execution mode.
206 (For details, see the discussion of individual environment variables below.)
207 A binary is executed in secure-execution mode if the
208 .B AT_SECURE
209 entry in the auxiliary vector (see
210 .BR getauxval (3))
211 has a nonzero value.
212 This entry may have a nonzero value for various reasons, including:
213 .IP * 3
214 The process's real and effective user IDs differ,
215 or the real and effective group IDs differ.
216 This typically occurs as a result of executing
217 a set-user-ID or set-group-ID program.
218 .IP *
219 A process with a non-root user ID executed a binary that
220 conferred capabilities to the process.
221 .IP *
222 A nonzero value may have been set by a Linux Security Module.
223 .\"
224 .SS Environment variables
225 Among the more important environment variables are the following:
226 .TP
227 .BR LD_ASSUME_KERNEL " (since glibc 2.2.3)"
228 Each shared object can inform the dynamic linker of the minimum kernel ABI
229 version that it requires.
230 (This requirement is encoded in an ELF note section that is viewable via
231 .IR "readelf\ \-n"
232 as a section labeled
233 .BR NT_GNU_ABI_TAG .)
234 At run time,
235 the dynamic linker determines the ABI version of the running kernel and
236 will reject loading shared objects that specify minimum ABI versions
237 that exceed that ABI version.
238 .IP
239 .BR LD_ASSUME_KERNEL
240 can be used to
241 cause the dynamic linker to assume that it is running on a system with
242 a different kernel ABI version.
243 For example, the following command line causes the
244 dynamic linker to assume it is running on Linux 2.2.5 when loading
245 the shared objects required by
246 .IR myprog :
247 .IP
248 .in +4n
249 .EX
250 $ \fBLD_ASSUME_KERNEL=2.2.5 ./myprog\fP
251 .EE
252 .in
253 .IP
254 On systems that provide multiple versions of a shared object
255 (in different directories in the search path) that have
256 different minimum kernel ABI version requirements,
257 .BR LD_ASSUME_KERNEL
258 can be used to select the version of the object that is used
259 (dependent on the directory search order).
260 .IP
261 Historically, the most common use of the
262 .BR LD_ASSUME_KERNEL
263 feature was to manually select the older
264 LinuxThreads POSIX threads implementation on systems that provided both
265 LinuxThreads and NPTL
266 (which latter was typically the default on such systems);
267 see
268 .BR pthreads (7).
269 .TP
270 .BR LD_BIND_NOW " (since glibc 2.1.1)"
271 If set to a nonempty string,
272 causes the dynamic linker to resolve all symbols
273 at program startup instead of deferring function call resolution to the point
274 when they are first referenced.
275 This is useful when using a debugger.
276 .TP
277 .B LD_LIBRARY_PATH
278 A list of directories in which to search for
279 ELF libraries at execution time.
280 The items in the list are separated by either colons or semicolons,
281 and there is no support for escaping either separator.
282 .IP
283 This variable is ignored in secure-execution mode.
284 .IP
285 Within the pathnames specified in
286 .BR LD_LIBRARY_PATH ,
287 the dynamic linker expands the tokens
288 .IR $ORIGIN ,
289 .IR $LIB ,
290 and
291 .IR $PLATFORM
292 (or the versions using curly braces around the names)
293 as described above in
294 .IR "Rpath token expansion" .
295 Thus, for example,
296 the following would cause a library to be searched for in either the
297 .I lib
298 or
299 .I lib64
300 subdirectory below the directory containing the program to be executed:
301 .IP
302 .in +4n
303 .EX
304 $ \fBLD_LIBRARY_PATH='$ORIGIN/$LIB' prog\fP
305 .EE
306 .in
307 .IP
308 (Note the use of single quotes, which prevent expansion of
309 .I $ORIGIN
310 and
311 .I $LIB
312 as shell variables!)
313 .TP
314 .B LD_PRELOAD
315 A list of additional, user-specified, ELF shared
316 objects to be loaded before all others.
317 This feature can be used to selectively override functions
318 in other shared objects.
319 .IP
320 The items of the list can be separated by spaces or colons,
321 and there is no support for escaping either separator.
322 The objects are searched for using the rules given under DESCRIPTION.
323 .IP
324 In secure-execution mode,
325 preload pathnames containing slashes are ignored.
326 Furthermore, shared objects are preloaded only
327 from the standard search directories and only
328 if they have set-user-ID mode bit enabled (which is not typical).
329 .IP
330 Within the names specified in the
331 .BR LD_PRELOAD
332 list, the dynamic linker understands the tokens
333 .IR $ORIGIN ,
334 .IR $LIB ,
335 and
336 .IR $PLATFORM
337 (or the versions using curly braces around the names)
338 as described above in
339 .IR "Rpath token expansion" .
340 (See also the discussion of quoting under the description of
341 .BR LD_LIBRARY_PATH .)
342 .\" Tested with the following:
343 .\"
344 .\" LD_PRELOAD='$LIB/libmod.so' LD_LIBRARY_PATH=. ./prog
345 .\"
346 .\" which will preload the libmod.so in 'lib' or 'lib64', using it
347 .\" in preference to the version in '.'.
348 .TP
349 .BR LD_TRACE_LOADED_OBJECTS
350 If set (to any value), causes the program to list its dynamic
351 dependencies, as if run by
352 .BR ldd (1),
353 instead of running normally.
354 .PP
355 Then there are lots of more or less obscure variables,
356 many obsolete or only for internal use.
357 .TP
358 .BR LD_AUDIT " (since glibc 2.4)"
359 A colon-separated list of user-specified, ELF shared objects
360 to be loaded before all others in a separate linker namespace
361 (i.e., one that does not intrude upon the normal symbol bindings that
362 would occur in the process)
363 and there is no support for escaping the separator.
364 These objects can be used to audit the operation of the dynamic linker.
365 .IP
366 .B LD_AUDIT
367 is ignored in secure-execution mode.
368 .IP
369 The dynamic linker will notify the audit
370 shared objects at so-called auditing checkpoints\(emfor example,
371 loading a new shared object, resolving a symbol,
372 or calling a symbol from another shared object\(emby
373 calling an appropriate function within the audit shared object.
374 For details, see
375 .BR rtld-audit (7).
376 The auditing interface is largely compatible with that provided on Solaris,
377 as described in its
378 .IR "Linker and Libraries Guide" ,
379 in the chapter
380 .IR "Runtime Linker Auditing Interface" .
381 .IP
382 Within the names specified in the
383 .BR LD_AUDIT
384 list, the dynamic linker understands the tokens
385 .IR $ORIGIN ,
386 .IR $LIB ,
387 and
388 .IR $PLATFORM
389 (or the versions using curly braces around the names)
390 as described above in
391 .IR "Rpath token expansion" .
392 (See also the discussion of quoting under the description of
393 .BR LD_LIBRARY_PATH .)
394 .IP
395 Since glibc 2.13,
396 .\" commit 8e9f92e9d5d7737afdacf79b76d98c4c42980508
397 in secure-execution mode,
398 names in the audit list that contain slashes are ignored,
399 and only shared objects in the standard search directories that
400 have the set-user-ID mode bit enabled are loaded.
401 .TP
402 .BR LD_BIND_NOT " (since glibc 2.1.95)"
403 If this environment variable is set to a nonempty string,
404 do not update the GOT (global offset table) and PLT (procedure linkage table)
405 after resolving a function symbol.
406 By combining the use of this variable with
407 .BR LD_DEBUG
408 (with the categories
409 .IR bindings
410 and
411 .IR symbols ),
412 one can observe all run-time function bindings.
413 .TP
414 .BR LD_DEBUG " (since glibc 2.1)"
415 Output verbose debugging information about operation of the dynamic linker.
416 The content of this variable is one of more of the following categories,
417 separated by colons, commas, or (if the value is quoted) spaces:
418 .RS
419 .TP 12
420 .I help
421 Specifying
422 .IR help
423 in the value of this variable does not run the specified program,
424 and displays a help message about which categories can be specified in this
425 environment variable.
426 .TP
427 .I all
428 Print all debugging information (except
429 .IR statistics
430 and
431 .IR unused ;
432 see below).
433 .TP
434 .I bindings
435 Display information about which definition each symbol is bound to.
436 .TP
437 .I files
438 Display progress for input file.
439 .TP
440 .I libs
441 Display library search paths.
442 .TP
443 .I reloc
444 Display relocation processing.
445 .TP
446 .I scopes
447 Display scope information.
448 .TP
449 .I statistics
450 Display relocation statistics.
451 .TP
452 .I symbols
453 Display search paths for each symbol look-up.
454 .TP
455 .I unused
456 Determine unused DSOs.
457 .TP
458 .I versions
459 Display version dependencies.
460 .RE
461 .IP
462 Since glibc 2.3.4,
463 .B LD_DEBUG
464 is ignored in secure-execution mode, unless the file
465 .IR /etc/suid\-debug
466 exists (the content of the file is irrelevant).
467 .TP
468 .BR LD_DEBUG_OUTPUT " (since glibc 2.1)"
469 By default,
470 .B LD_DEBUG
471 output is written to standard error.
472 If
473 .B LD_DEBUG_OUTPUT
474 is defined, then output is written to the pathname specified by its value,
475 with the suffix "." (dot) followed by the process ID appended to the pathname.
476 .IP
477 .B LD_DEBUG_OUTPUT
478 is ignored in secure-execution mode.
479 .TP
480 .BR LD_DYNAMIC_WEAK " (since glibc 2.1.91)"
481 By default, when searching shared libraries to resolve a symbol reference,
482 the dynamic linker will resolve to the first definition it finds.
483 .IP
484 Old glibc versions (before 2.2), provided a different behavior:
485 if the linker found a symbol that was weak,
486 it would remember that symbol and
487 keep searching in the remaining shared libraries.
488 If it subsequently found a strong definition of the same symbol,
489 then it would instead use that definition.
490 (If no further symbol was found,
491 then the dynamic linker would use the weak symbol that it initially found.)
492 .IP
493 The old glibc behavior was nonstandard.
494 (Standard practice is that the distinction between
495 weak and strong symbols should have effect only at static link time.)
496 In glibc 2.2,
497 .\" More precisely 2.1.92
498 .\" See weak handling
499 .\" https://www.sourceware.org/ml/libc-hacker/2000-06/msg00029.html
500 .\" To: GNU libc hacker <libc-hacker at sourceware dot cygnus dot com>
501 .\" Subject: weak handling
502 .\" From: Ulrich Drepper <drepper at redhat dot com>
503 .\" Date: 07 Jun 2000 20:08:12 -0700
504 .\" Reply-To: drepper at cygnus dot com (Ulrich Drepper)
505 the dynamic linker was modified to provide the current behavior
506 (which was the behavior that was provided by most other implementations
507 at that time).
508 .IP
509 Defining the
510 .B LD_DYNAMIC_WEAK
511 environment variable (with any value) provides
512 the old (nonstandard) glibc behavior,
513 whereby a weak symbol in one shared library may be overridden by
514 a strong symbol subsequently discovered in another shared library.
515 (Note that even when this variable is set,
516 a strong symbol in a shared library will not override
517 a weak definition of the same symbol in the main program.)
518 .IP
519 Since glibc 2.3.4,
520 .B LD_DYNAMIC_WEAK
521 is ignored in secure-execution mode.
522 .TP
523 .BR LD_HWCAP_MASK " (since glibc 2.1)"
524 Mask for hardware capabilities.
525 .TP
526 .BR LD_ORIGIN_PATH " (since glibc 2.1)"
527 Path where the binary is found.
528 .\" Used only if $ORIGIN can't be determined by normal means
529 .\" (from the origin path saved at load time, or from /proc/self/exe)?
530 .IP
531 Since glibc 2.4,
532 .B LD_ORIGIN_PATH
533 is ignored in secure-execution mode.
534 .TP
535 .BR LD_POINTER_GUARD " (glibc from 2.4 to 2.22)"
536 Set to 0 to disable pointer guarding.
537 Any other value enables pointer guarding, which is also the default.
538 Pointer guarding is a security mechanism whereby some pointers to code
539 stored in writable program memory (return addresses saved by
540 .BR setjmp (3)
541 or function pointers used by various glibc internals) are mangled
542 semi-randomly to make it more difficult for an attacker to hijack
543 the pointers for use in the event of a buffer overrun or
544 stack-smashing attack.
545 Since glibc 2.23,
546 .\" commit a014cecd82b71b70a6a843e250e06b541ad524f7
547 .B LD_POINTER_GUARD
548 can no longer be used to disable pointer guarding,
549 which is now always enabled.
550 .TP
551 .BR LD_PROFILE " (since glibc 2.1)"
552 The name of a (single) shared object to be profiled,
553 specified either as a pathname or a soname.
554 Profiling output is appended to the file whose name is:
555 "\fI$LD_PROFILE_OUTPUT\fP/\fI$LD_PROFILE\fP.profile".
556 .IP
557 Since glibc 2.2.5,
558 .BR LD_PROFILE
559 is ignored in secure-execution mode.
560 .TP
561 .BR LD_PROFILE_OUTPUT " (since glibc 2.1)"
562 Directory where
563 .B LD_PROFILE
564 output should be written.
565 If this variable is not defined, or is defined as an empty string,
566 then the default is
567 .IR /var/tmp .
568 .IP
569 .B LD_PROFILE_OUTPUT
570 is ignored in secure-execution mode; instead
571 .IR /var/profile
572 is always used.
573 (This detail is relevant only before glibc 2.2.5,
574 since in later glibc versions,
575 .B LD_PROFILE
576 is also ignored in secure-execution mode.)
577 .TP
578 .BR LD_SHOW_AUXV " (since glibc 2.1)"
579 If this environment variable is defined (with any value),
580 show the auxiliary array passed up from the kernel (see also
581 .BR getauxval (3)).
582 .IP
583 Since glibc 2.3.4,
584 .B LD_SHOW_AUXV
585 is ignored in secure-execution mode.
586 .TP
587 .BR LD_TRACE_PRELINKING " (since glibc 2.4)"
588 If this environment variable is defined,
589 trace prelinking of the object whose name is assigned to
590 this environment variable.
591 (Use
592 .BR ldd (1)
593 to get a list of the objects that might be traced.)
594 If the object name is not recognized,
595 .\" (This is what seems to happen, from experimenting)
596 then all prelinking activity is traced.
597 .TP
598 .BR LD_USE_LOAD_BIAS " (since glibc 2.3.3)"
599 .\" http://sources.redhat.com/ml/libc-hacker/2003-11/msg00127.html
600 .\" Subject: [PATCH] Support LD_USE_LOAD_BIAS
601 .\" Jakub Jelinek
602 By default (i.e., if this variable is not defined),
603 executables and prelinked
604 shared objects will honor base addresses of their dependent shared objects
605 and (nonprelinked) position-independent executables (PIEs)
606 and other shared objects will not honor them.
607 If
608 .B LD_USE_LOAD_BIAS
609 is defined with the value 1, both executables and PIEs
610 will honor the base addresses.
611 If
612 .B LD_USE_LOAD_BIAS
613 is defined with the value 0,
614 neither executables nor PIEs will honor the base addresses.
615 .IP
616 Since glibc 2.3.3, this variable is ignored in secure-execution mode.
617 .TP
618 .BR LD_VERBOSE " (since glibc 2.1)"
619 If set to a nonempty string,
620 output symbol versioning information about the
621 program if the
622 .B LD_TRACE_LOADED_OBJECTS
623 environment variable has been set.
624 .TP
625 .BR LD_WARN " (since glibc 2.1.3)
626 If set to a nonempty string, warn about unresolved symbols.
627 .TP
628 .BR LD_PREFER_MAP_32BIT_EXEC " (x86-64 only; since glibc 2.23)"
629 According to the Intel Silvermont software optimization guide, for 64-bit
630 applications, branch prediction performance can be negatively impacted
631 when the target of a branch is more than 4\ GB away from the branch.
632 If this environment variable is set (to any value),
633 the dynamic linker
634 will first try to map executable pages using the
635 .BR mmap (2)
636 .BR MAP_32BIT
637 flag, and fall back to mapping without that flag if that attempt fails.
638 NB: MAP_32BIT will map to the low 2\ GB (not 4\ GB) of the address space.
639 .IP
640 Because
641 .B MAP_32BIT
642 reduces the address range available for address space layout
643 randomization (ASLR),
644 .B LD_PREFER_MAP_32BIT_EXEC
645 is always disabled in secure-execution mode.
646 .SH FILES
647 .PD 0
648 .TP
649 .I /lib/ld.so
650 a.out dynamic linker/loader
651 .TP
652 .IR /lib/ld\-linux.so. { 1 , 2 }
653 ELF dynamic linker/loader
654 .TP
655 .I /etc/ld.so.cache
656 File containing a compiled list of directories in which to search for
657 shared objects and an ordered list of candidate shared objects.
658 See
659 .BR ldconfig (8).
660 .TP
661 .I /etc/ld.so.preload
662 File containing a whitespace-separated list of ELF shared objects to
663 be loaded before the program.
664 See the discussion of
665 .BR LD_PRELOAD
666 above.
667 If both
668 .BR LD_PRELOAD
669 and
670 .I /etc/ld.so.preload
671 are employed, the libraries specified by
672 .BR LD_PRELOAD
673 are preloaded first.
674 .I /etc/ld.so.preload
675 has a system-wide effect,
676 causing the specified libraries to be preloaded for
677 all programs that are executed on the system.
678 (This is usually undesirable,
679 and is typically employed only as an emergency remedy, for example,
680 as a temporary workaround to a library misconfiguration issue.)
681 .TP
682 .I lib*.so*
683 shared objects
684 .PD
685 .SH NOTES
686 .SS Hardware capabilities
687 Some shared objects are compiled using hardware-specific instructions which do
688 not exist on every CPU.
689 Such objects should be installed in directories whose names define the
690 required hardware capabilities, such as
691 .IR /usr/lib/sse2/ .
692 The dynamic linker checks these directories against the hardware of the
693 machine and selects the most suitable version of a given shared object.
694 Hardware capability directories can be cascaded to combine CPU features.
695 The list of supported hardware capability names depends on the CPU.
696 The following names are currently recognized:
697 .TP
698 .B Alpha
699 ev4, ev5, ev56, ev6, ev67
700 .TP
701 .B MIPS
702 loongson2e, loongson2f, octeon, octeon2
703 .TP
704 .B PowerPC
705 4xxmac, altivec, arch_2_05, arch_2_06, booke, cellbe, dfp, efpdouble, efpsingle,
706 fpu, ic_snoop, mmu, notb, pa6t, power4, power5, power5+, power6x, ppc32, ppc601,
707 ppc64, smt, spe, ucache, vsx
708 .TP
709 .B SPARC
710 flush, muldiv, stbar, swap, ultra3, v9, v9v, v9v2
711 .TP
712 .B s390
713 dfp, eimm, esan3, etf3enh, g5, highgprs, hpage, ldisp, msa, stfle,
714 z900, z990, z9-109, z10, zarch
715 .TP
716 .B x86 (32-bit only)
717 acpi, apic, clflush, cmov, cx8, dts, fxsr, ht, i386, i486, i586, i686, mca, mmx,
718 mtrr, pat, pbe, pge, pn, pse36, sep, ss, sse, sse2, tm
719 .SH SEE ALSO
720 .BR ld (1),
721 .BR ldd (1),
722 .BR pldd (1),
723 .BR sprof (1),
724 .BR dlopen (3),
725 .BR getauxval (3),
726 .BR elf (5),
727 .BR capabilities (7),
728 .BR rtld-audit (7),
729 .BR ldconfig (8),
730 .BR sln (8)
731 .\" .SH AUTHORS
732 .\" ld.so: David Engel, Eric Youngdale, Peter MacDonald, Hongjiu Lu, Linus
733 .\" Torvalds, Lars Wirzenius and Mitch D'Souza
734 .\" ld\-linux.so: Roland McGrath, Ulrich Drepper and others.
735 .\"
736 .\" In the above, (libc5) stands for David Engel's ld.so/ld\-linux.so.