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