diff options
author | Alan Modra <amodra@gmail.com> | 2006-06-14 02:43:58 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2006-06-14 02:43:58 +0000 |
commit | 5fa222e4424d1e940baaff61d73b704588ff970e (patch) | |
tree | f19714ce2419f4379a9fa22ebf801264b973c03c /ld/ld.texinfo | |
parent | c340f34c59e8d4eaab2a013599f53fbe40d9005d (diff) | |
download | gdb-5fa222e4424d1e940baaff61d73b704588ff970e.zip gdb-5fa222e4424d1e940baaff61d73b704588ff970e.tar.gz gdb-5fa222e4424d1e940baaff61d73b704588ff970e.tar.bz2 |
* ld.texinfo: Document new -z lazy option.
* emultempl/elf32.em (gld${EMULATION_NAME}_handle_option): Handle
new option.
(gld${EMULATION_NAME}_list_options): Update help text.
Diffstat (limited to 'ld/ld.texinfo')
-rw-r--r-- | ld/ld.texinfo | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ld/ld.texinfo b/ld/ld.texinfo index 182f060..cfbe26e 100644 --- a/ld/ld.texinfo +++ b/ld/ld.texinfo @@ -962,6 +962,12 @@ objects. Marks the object that its symbol table interposes before all symbols but the primary executable. +@item lazy +When generating an executable or shared library, mark it to tell the +dynamic linker to defer function call resolution to the point when +the function is called (lazy binding), rather than at load time. +Lazy binding is the default. + @item loadfltr Marks the object that its filters be processed immediately at runtime. |