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