diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2000-07-20 03:25:10 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2000-07-20 03:25:10 +0000 |
commit | e0ee487bb566f047bbc43dee18e81bab14cba096 (patch) | |
tree | 9d48cd80dcbe6c6a26c5b72750605cbd0c5893d8 /ld/ld.texinfo | |
parent | 9bfcb6d6894b9224f4b8f55c4f6f14dea93e28ad (diff) | |
download | gdb-e0ee487bb566f047bbc43dee18e81bab14cba096.zip gdb-e0ee487bb566f047bbc43dee18e81bab14cba096.tar.gz gdb-e0ee487bb566f047bbc43dee18e81bab14cba096.tar.bz2 |
2000-07-19 H.J. Lu <hjl@gnu.org>
* emulparams/elf32mcore.sh (PARSE_AND_LIST_ARGS): Removed.
(PARSE_AND_LIST_PROLOGUE): New.
(PARSE_AND_LIST_LONGOPTS): Likewise.
(PARSE_AND_LIST_OPTIONS): Likewise.
(PARSE_AND_LIST_ARGS_CASES): Likewise.
* ldmain.c (main): Clear link_info.flags and link_info.flags_1.
* lexsup.c (ld_options): Comment out 'z'.
(parse_args): Likewise.
* emultempl/elf32.em: Include "elf/common.h".
(gld_${EMULATION_NAME}_parse_args): Defined. Handle some -z
options.
(gld_${EMULATION_NAME}_list_options): Likewise.
* ld.texinfo: Add documentation for the recognized -z options.
Diffstat (limited to 'ld/ld.texinfo')
-rw-r--r-- | ld/ld.texinfo | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/ld/ld.texinfo b/ld/ld.texinfo index 016914d..2bc54e4 100644 --- a/ld/ld.texinfo +++ b/ld/ld.texinfo @@ -737,7 +737,21 @@ for Solaris compatibility. @kindex -z @var{keyword} @item -z @var{keyword} -This option is ignored for Solaris compatibility. +The recognized keywords are @code{initfirst}, @code{interpose}, +@code{loadfltr}, @code{nodefaultlib}, @code{nodelete}, @code{nodlopen}, +@code{nodump}, @code{now} and @code{origin}. The other keywords are +ignored for Solaris compatibility. @code{initfirst} marks the object +to be initialized first at runtime before any other objects. +@code{interpose} marks the object that its symbol table interposes +before all symbols but the primary executable. @code{loadfltr} marks +the object that its filtees be processed immediately at runtime. +@code{nodefaultlib} marks the object that the search for dependencies +of this object will ignore any default library search paths. +@code{nodelete} marks the object shouldn't be unloaded at runtime. +@code{nodlopen} marks the object not available to @code{dlopen}. +@code{nodump} marks the object can not be dumped by @code{dldump}. +@code{now} marks the object with the non-lazy runtime binding. +@code{origin} marks the object may contain $ORIGIN. @kindex -( @cindex groups of archives |