diff options
author | Ian Lance Taylor <ian@airs.com> | 1998-07-03 18:25:46 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1998-07-03 18:25:46 +0000 |
commit | b2529df1becf15546fd9ac60192c93042ed36e7b (patch) | |
tree | ac5f5bd097fc3da1d8d37358f98f376058844475 /ld/NEWS | |
parent | 369ee5df3ed0c3afc51287625dbf13cd38e3be3a (diff) | |
download | gdb-b2529df1becf15546fd9ac60192c93042ed36e7b.zip gdb-b2529df1becf15546fd9ac60192c93042ed36e7b.tar.gz gdb-b2529df1becf15546fd9ac60192c93042ed36e7b.tar.bz2 |
* ldgram.y (extern_name_list): Do not require symbols to be
separated by commas.
(ifile_p1): Add EXTERN.
* ldlex.l: Accept EXTERN in BOTH and SCRIPT mode as well as MRI
mode.
* ld.texinfo (Options): Mention that EXTERN is equivalent to -u.
(Miscellaneous Commands): Document EXTERN.
Diffstat (limited to 'ld/NEWS')
-rw-r--r-- | ld/NEWS | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -2,14 +2,17 @@ Changes in version 2.10: +* Added garbage collection of unused sections, enabled by --gc-sections. + It does require a bit of backend support; currently implemented are + ppc-elf, mips-elf, and mn10300-elf. Others will ignore the option. + * Added SORT to the linker script language to permit sorting sections by file name or section name. -* The -e option now accepts a number as well as a symbol name. +* Added EXTERN to the linker script language as an equivalent to the -u + command-line option. -* Added garbage collection of unused sections, enabled by --gc-sections. - It does require a bit of backend support; currently implemented are - ppc-elf, mips-elf, and mn10300-elf. Others will ignore the option. +* The -e option now accepts a number as well as a symbol name. Changes in version 2.9: |