diff options
author | Jakub Jelinek <jakub@redhat.com> | 2001-10-05 16:36:55 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2001-10-05 16:36:55 +0000 |
commit | ec38dd05480823afb15108d1bfcf875e91723392 (patch) | |
tree | 92bf08ba052bc9a12250e4b5ab53bed2ff490030 /ld | |
parent | 7e766c3b49355d460f8d4540c008cae645ecd12b (diff) | |
download | binutils-gdb-ec38dd05480823afb15108d1bfcf875e91723392.tar.gz |
* doc/as.texinfo: Document M and S ELF section flags.
* emultempl/elf32.em (gld_*_list_options): Include -z combreloc and
-z nocombreloc in usage.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/emultempl/elf32.em | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index c638abc5d6c..64e4b542240 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2001-10-05 Jakub Jelinek <jakub@redhat.com> + + * emultempl/elf32.em (gld_*_list_options): Include -z combreloc and + -z nocombreloc in usage. + 2001-10-03 Jim Blandy <jimb@redhat.com> * genscripts.sh: Include a comment at the top of each generated diff --git a/ld/emultempl/elf32.em b/ld/emultempl/elf32.em index c9cf50d914c..105795549a6 100644 --- a/ld/emultempl/elf32.em +++ b/ld/emultempl/elf32.em @@ -1555,10 +1555,12 @@ cat >>e${EMULATION_NAME}.c <<EOF fprintf (file, _(" -Bgroup\t\tSelects group name lookup rules for DSO\n")); fprintf (file, _(" --disable-new-dtags\tDisable new dynamic tags\n")); fprintf (file, _(" --enable-new-dtags\tEnable new dynamic tags\n")); + fprintf (file, _(" -z combreloc\t\tMerge dynamic relocs into one section and sort\n")); fprintf (file, _(" -z defs\t\tDisallows undefined symbols\n")); fprintf (file, _(" -z initfirst\t\tMark DSO to be initialized first at runtime\n")); fprintf (file, _(" -z interpose\t\tMark object to interpose all DSOs but executable\n")); fprintf (file, _(" -z loadfltr\t\tMark object requiring immediate process\n")); + fprintf (file, _(" -z nocombreloc\t\tDon't merge dynamic relocs into one section\n")); fprintf (file, _(" -z nodefaultlib\tMark object not to use default search paths\n")); fprintf (file, _(" -z nodelete\t\tMark DSO non-deletable at runtime\n")); fprintf (file, _(" -z nodlopen\t\tMark DSO not available to dlopen\n")); |