Add markers for binutils 2.35 branch
[deliverable/binutils-gdb.git] / ld / NEWS
CommitLineData
252b5132 1-*- text -*-
97a232d7 2
b115b9fd
NC
3Changes in 2.35:
4
bbd19b19
L
5* X86 NaCl target support is removed.
6
37a141bf
FS
7* Add ELF linker command-line options, --export-dynamic-symbol and
8 --export-dynamic-symbol-list, to make symbols dynamic.
9
b32632c4
L
10* Add a configure option, --enable-textrel-check=[no|yes|warning|error],
11 to decide what ELF linker should do by default with DT_TEXTREL in an
6f028f3c 12 executable or shared library. Default to yes for Linux/x86 targets.
b32632c4 13
198204a7 14* The -Map=<filename> command line option has been extended so that if
72a3b182
NC
15 <filename> is a directory then <filename>/<output-filename>.map will be
16 created.
198204a7 17
a6dbf402
L
18* Add a command-line option for ELF linker, --warn-textrel, to warn that
19 DT_TEXTREL is set in a position-independent executable or shared object.
20
abf874aa
CL
21* Add command-line options --enable-non-contiguous-regions and
22 --enable-non-contiguous-regions-warnings.
23
fa1477dc
SC
24* Add command-line option --imagic for the pdp11-aout target to output format
25 IMAGIC (0411) for separate instruction and data spaces, and change the
26 default format option for pdp11-aout to be --omagic.
27
16171946
FS
28* Relative pathnames in INPUT() and GROUP() directives in linker scripts are
29 searched relative to the directory of the linker script before other search
30 paths.
31
cae64165
RM
32* Add ELF linker command-line option `-z start-stop-visibility=...' to control
33 the visibility of synthetic `__start_SECNAME` and `__stop_SECNAME` symbols.
34
f37b21b4
RM
35* Add command-line option --dependency-file to write a Make-style dependency
36 file listing the input files consulted by the linker, like the files written
37 by the compiler's -M -MP options.
38
ae774686
NC
39Changes in 2.34:
40
7b3c2715
AM
41* The ld check for "PHDR segment not covered by LOAD segment" is more
42 effective, catching cases that were wrongly allowed by previous versions of
43 ld. If you see this error it is likely you are linking with a bad linker
44 script or the binary you are building is not intended to be loaded by a
45 dynamic loader. In the latter case --no-dynamic-linker is appropriate.
46
595d3787
AM
47* cr16c support removed.
48
6655dba2
SB
49* Add support for z80-elf.
50
51* Add support for relocation of each byte or word of multibyte value to Z80
52 targets.
53
54* Add support for Zilog eZ80 (both ADL and Z80 mode) and Zilog Z180 CPUs.
55
60391a25
PB
56Changes in 2.33:
57
035801ce
FS
58* Add command-line option --no-print-map-discarded.
59
739b5c9c
TC
60* The Cortex-A53 Erratum 843419 workaround now supports a choice of which
61 workaround to use. The option --fix-cortex-a53-843419 now takes an
62 optional argument --fix-cortex-a53-843419[=full|adr|adrp] which can be
63 used to force a particular workaround to be used. See --help for AArch64
64 for more details.
65
cd702818
SD
66* Add target handlers for AArch64 for ELF GNU program properties.
67
68* Add support for GNU_PROPERTY_AARCH64_FEATURE_1_BTI in ELF GNU program
69 properties in the AArch64 ELF linker.
70
71* Add support for GNU_PROPERTY_AARCH64_FEATURE_1_PAC in ELF GNU program
72 properties in the AArch64 ELF linker.
73
8bf6d176 74* Add -z force-bti for AArch64 to enable GNU_PROPERTY_AARCH64_FEATURE_1_BTI
37c18eed
SD
75 on output while warning about missing GNU_PROPERTY_AARCH64_FEATURE_1_BTI
76 on inputs and use PLTs protected with BTI.
77
8bf6d176 78* Add -z pac-plt for AArch64 to pick PAC enabled PLTs.
1dbade74 79
f48dfe41
NC
80Changes in 2.32:
81
d2ef37eb
L
82* Report property change in linker map file when merging GNU properties.
83
b8891f8d
AJ
84* Add support for the C-SKY processor series.
85
4f4690cd
AM
86* -t now doesn't report members within archives, unless -t is given twice.
87 A single -t is now more useful when generating a list of files that should be
88 packaged for a linker bug report. For example:
89 gcc hello.c -save-temps -Wl,-t | xargs realpath | sort | uniq > files
90 tar cJf test.tar.xz `cat files`
91
719d8288
NC
92Changes in 2.31:
93
142b7a14
EB
94* Speed up direct linking with DLLs for Cygwin and Mingw targets.
95
f6aec96d
L
96* Add a configure option --enable-separate-code to decide whether
97 -z separate-code should be enabled in ELF linker by default. Default
98 to yes for Linux/x86 targets. Note that -z separate-code can increase
99 disk and memory size.
100
9176ac5b
NC
101Changes in 2.30:
102
47acac12
L
103* Add -z separate-code to generate separate code PT_LOAD segment.
104
a05a5b64 105* Add "-z undefs" command-line option as the inverse of the "-z defs" option.
97a232d7 106
a05a5b64 107* Add -z globalaudit command-line option to force audit libraries to be run
93ab9c0d 108 for every dynamic object loaded by an executable - provided that the loader
6c19b93b 109 supports this functionality.
7feec526 110
2b94abd4
AB
111* Tighten linker script grammar around file name specifiers to prevent the use
112 of SORT_BY_ALIGNMENT and SORT_BY_INIT_PRIORITY on filenames. These would
113 previously be accepted but had no effect.
114
115* The EXCLUDE_FILE directive can now be placed within any SORT_* directive
116 within input section lists.
117
55a09eb6
TG
118Changes in 2.29:
119
48580982
L
120* Support for -z shstk in the x86 ELF linker to generate
121 GNU_PROPERTY_X86_FEATURE_1_SHSTK in ELF GNU program properties.
122
123* Add support for GNU_PROPERTY_X86_FEATURE_1_SHSTK in ELF GNU program
124 properties in the x86 ELF linker.
125
ee2fdd6f 126* Add support for GNU_PROPERTY_X86_FEATURE_1_IBT in ELF GNU program
48580982 127 properties in the x86 ELF linker.
ee2fdd6f
L
128
129* Support for -z ibtplt in the x86 ELF linker to generate IBT-enabled
130 PLT.
131
132* Support for -z ibt in the x86 ELF linker to generate IBT-enabled
133 PLT as well as GNU_PROPERTY_X86_FEATURE_1_IBT in ELF GNU program
134 properties.
135
a91e1603
L
136* Add support for ELF SHF_GNU_MBIND and PT_GNU_MBIND_XXX.
137
46bed679
L
138* Add support for ELF GNU program properties.
139
0220170b
DD
140* Add support for the Texas Instruments PRU processor.
141
d7488716
AB
142* When configuring for arc*-*-linux* targets the default linker emulation will
143 change if --with-cpu=nps400 is used at configure time.
144
77f5e65e
AB
145* Improve assignment of LMAs to orphan sections in some edge cases where a
146 mixture of both AT>LMA_REGION and AT(LMA) are used.
147
14ea2c1b
AB
148* Orphan sections placed after an empty section that has an AT(LMA) will now
149 take an load memory address starting from LMA.
150
7bdf4127
AB
151* Section groups can now be resolved (the group deleted and the group members
152 placed like normal sections) at partial link time either using the new linker
153 option --force-group-allocation or by placing FORCE_GROUP_ALLOCATION into the
154 linker script.
155
9703a4ef
TG
156Changes in 2.28:
157
8f1732fc
AB
158* The EXCLUDE_FILE linker script construct can now be applied outside of the
159 section list in order for the exclusions to apply over all input sections in
160 the list.
161
e23eba97 162* Add support for the RISC-V architecture.
76359541 163
a05a5b64 164* The command-line option --no-eh-frame-hdr can now be used in ELF based
29063f8b
NC
165 linkers to disable the automatic generation of .eh_frame_hdr sections.
166
0955507f
TP
167* Add --in-implib=<infile> to the ARM linker to enable specifying a set of
168 Secure Gateway veneers that must exist in the output import library specified
169 by --out-implib=<outfile> and the address they must have. As such,
170 --in-implib is only supported in combination with --cmse-implib.
171
76359541
TP
172* Extended the --out-implib=<file> option, previously restricted to x86 PE
173 targets, to any ELF based target. This allows the generation of an import
174 library for an ELF executable, which can then be used by another application
175 to link against the executable.
176
96a84ea3
TG
177Changes in 2.27:
178
647e4d46
L
179* Add a configure option --enable-relro to decide whether -z relro should
180 be enabled in ELF linker by default. Default to yes for all Linux
9194f82d
AM
181 targets except FRV, HPPA, IA64 and MIPS. Note that -z relro can increase
182 disk and memory size.
647e4d46 183
4c10bbaa
L
184* Support for -z noreloc-overflow in the x86-64 ELF linker to disable
185 relocation overflow check.
186
b8871f35
L
187* Add -z common/-z nocommon options for ELF targets to control whether to
188 convert common symbols to the STT_COMMON type during a relocatable link.
189
aec6b87e
L
190* Support for -z nodynamic-undefined-weak in the x86 ELF linker, which
191 avoids dynamic relocations against undefined weak symbols in executable.
192
cdf96953
MF
193* The NOCROSSREFSTO command was added to the linker script language.
194
1f56df9d
JW
195* Add --no-apply-dynamic-relocs to the AArch64 linker to do not apply link-time
196 values for dynamic relocations.
197
7feec526
TG
198Changes in 2.26:
199
a504d23a
LA
200* Add --fix-stm32l4xx-629360 to the ARM linker to enable a link-time
201 workaround for a bug in the bus matrix / memory controller for some of
202 the STM32 Cortex-M4 based products (STM32L4xx)
81c23f82 203
6c3bc0f8
NC
204* Add a configure option --enable-compressed-debug-sections={all,ld} to
205 decide whether DWARF debug sections should be compressed by default.
206
886a2506
NC
207* Add support for the ARC EM/HS, and ARC600/700 architectures.
208
0f088b2a
KT
209* Experimental support for linker garbage collection (--gc-sections)
210 has been enabled for COFF and PE based targets.
211
a05a5b64 212* New command-line option for ELF targets to compress DWARF debug
ea556d25
L
213 sections, --compress-debug-sections=[none|zlib|zlib-gnu|zlib-gabi].
214
a05a5b64 215* New command-line option, --orphan-handling=[place|warn|error|discard], to
c005eb9e
AB
216 adjust how orphan sections are handled. The default is 'place' which gives
217 the current behaviour, 'warn' and 'error' issue a warning or error
218 respectively when orphan sections are found, and 'discard' will discard all
219 orphan sections.
3ea60775 220
b0619670
L
221* Add support for LLVM plugin.
222
3604cb1f
TG
223* Add --print-memory-usage option to report memory blocks usage.
224
0a618243
AB
225* Add --require-defined option, it's like --undefined except the new symbol
226 must be defined by the end of the link.
227
c50415e2
TG
228Changes in 2.25:
229
eeb14e5a
LZ
230* PE binaries now once again contain real timestamps by default. To disable
231 the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp
a05a5b64 232 command-line option.
eeb14e5a 233
73589c9d
CS
234* Replace support for openrisc and or32 with support for or1k.
235
a05a5b64 236* Add support for the --build-id command-line option to COFF based targets.
61e2488c
JT
237
238* x86/x86_64 pe-coff now supports the --build-id option.
239
35c08157
KLC
240* Add support for the Andes NDS32.
241
58ca03a2
TG
242Changes in 2.24:
243
2e53f7d6
NC
244* Add LOG2CEIL() builtin function to the linker script language
245
13761a11
NC
246* Add support for the Texas Instruments MSP430X processor.
247
36591ba1
SL
248* Add support for Altera Nios II.
249
78c8d46c
NC
250* Add support for the V850E3V5 architecture.
251
a3c62988
NC
252* Add support for the Imagination Technologies Meta processor.
253
b1b00fcc
MF
254* --enable-new-dtags no longer generates old dtags in addition to new dtags.
255
e8044f35
RS
256* Remove linker support for MIPS ECOFF targets.
257
1eec346e
NC
258* Add ALIGN_WITH_INPUT to the linker script language to force the alignment of
259 an output section to use the maximum alignment of all its input sections.
260
af18cb59
TG
261Changes in 2.23:
262
8d55a8a0
KT
263* Enable compressed debug section feature for x86/x86_64 pe-coff.
264
da2bb560
NC
265* Add support for the 64-bit ARM architecture: AArch64.
266
eda680f8
L
267* Added SORT_NONE to the linker script language to disable section sorting.
268
62655c7b
RM
269* Add a linker-provided symbol when producing ELF output, '__ehdr_start'
270 to point to the ELF file header (and nearby program headers) in the
271 program's memory image.
272
6927f982
NC
273* Add support for S12X processor.
274
b9c361e0
JL
275* Add support for the VLE extension to the PowerPC architecture.
276
f6c1a2d5
NC
277* Add support for the Freescale XGATE architecture.
278
a72173de
TG
279* Add option -f FILE on AIX (for response file).
280
99c513f6
DD
281* Add support for the Renesas RL78 architecture.
282
cfb8c092
NC
283* Add support for the Adapteva EPIPHANY architecture.
284
a7142d94
TG
285Changes in 2.22:
286
d064f206
NC
287* --copy-dt-needed-entries is no longer enabled by default. Instead
288 --no-copy-dt-needed-entries is the default.
289
ae17ab41 290* INPUT_SECTION_FLAGS has been added to the linker script language
cfb8c092 291 to allow selection of input sections by section header section flags.
ae17ab41 292
69f56ae1 293* Add support for the Tilera TILEPro and TILE-Gx architectures.
90b3661c 294
02ecc8e9 295* Added SORT_BY_INIT_PRIORITY to the linker script language to permit
cfb8c092
NC
296 sorting sections by numerical value of the GCC init_priority attribute
297 encoded in the section name.
02ecc8e9 298
44f45767
TG
299Changes in 2.21:
300
5fec8599
L
301* Linker script expression evaluation is somewhat more sane. This may
302 break scripts that depend on quirks of the old expression evaluation.
303
17f73277
KT
304* Turn off underscoring for x86_64 PE+-COFF targets. For old behavior the
305 option --enable-leading-mingw64-underscores can be used on configure of
306 bfd.
307
40b36596
JM
308* Add support for the TMS320C6000 (TI C6X) processor family.
309
ddbb8a31
NC
310* --add-needed renamed to --copy-dt-needed-entries in order to avoid confusion
311 with --as-needed option.
312
7fcab871
KT
313* Extend .def file syntax by '== <ID>' for imports and exports. This allows
314 to alias the import/export table name written in PE image.
315
a72173de 316* Add --exclude-all-symbols option to PE based linkers. This prevents all
2927aaca
NC
317 symbols from automatically being exported.
318
c7927a3c
NC
319* Add support for the Renesas RX processor.
320
75875724
TG
321* Add support for alpha-vms target.
322
81c23f82
TG
323Changes in 2.20:
324
3e7a7d11
NC
325* GNU/Linux targets now support the STB_GNU_UNIQUE symbol binding. This is a
326 GNU extension to the standard set of ELF symbol bindings. The binding will
327 be passed on to the dynamic linker which will make sure that in the entire
328 process there is just one symbol with the given name and type in use.
ce11ba6c 329
c1711530
DK
330* PE targets now support a GNU extension to allow the alignment of common
331 common symbols to be specified. This support uses custom options in
332 the .drectve section, which will be disregarded by the native tools.
333
09e2aba4
DK
334* PE targets now add primitive support for ELF version scripts; symbols
335 are not versioned, but the local and global symbol visibility directives
336 are respected when filtering symbols in auto-export mode.
337
267e2722
CD
338* New option --no-export-dynamic to undo the effect of the -E and
339 --export-dynamic options.
340
a0c402a5
L
341* ELF: --warn-alternate-em option to warn if an object has alternate
342 ELF machine code.
343
4a93e180
NC
344* New script function REGION_ALIAS to add alias names to memory regions.
345
88183869
DK
346* PE targets no longer make use of the long section names PE extension to
347 the COFF format when generating executable images, by default. The old
348 (slightly non-conformant) behaviour can still be invoked by using the
3efd345c
DK
349 new '--enable-long-section-names' command-line option. It is also enabled
350 automatically in the presence of un-stripped debug information, as GDB
351 needs to be able to find the debug info sections by their full names.
88183869 352
d8045f23
NC
353* For GNU/Linux systems the linker will now avoid processing any relocations
354 made against symbols of the STT_GNU_IFUNC type and instead emit them into
355 the resulting binary for processing by the loader.
356
28024d9d
L
357* --as-needed now links in a dynamic library if it satisfies undefined
358 symbols in regular objects, or in other dynamic libraries. In the
359 latter case the library is not linked if it is found in a DT_NEEDED
360 entry of one of the libraries already linked.
361
a05a5b64 362* Add a new command-line option, -Ttext-segment ADDR, for ELF targets
258795f5
L
363 to set the address of the first byte of the text segment.
364
c3b7224a
NC
365* Add support for Sunplus score architecture.
366
ce11ba6c
KT
367* Add new option --use-nul-prefixed-import-tables to ld for PE targets to
368 allow fallback to old import table generation with null element prefix.
369
e1c37eb5
DK
370* Windows PE systems now support a new --exclude-modules-for-implib option,
371 allowing users to partition object files and archive members between a DLL
372 and its associated import library as they are generated during linking.
373
84e94c90
NC
374* Add support for Lattice Mico32 (lm32) architecture.
375
62655c7b 376* Add CR16 ELF --embedded-relocs (used to embedded relocations into binaries
7251ccbf
SR
377 for Embedded-PIC code) option.
378
6cb442d3
KT
379* Add to the PE/PE+ targets the support of two different kinds of
380 pseudo-relocations. They can be selected by the switches
381 --enable-runtime-pseudo-reloc-v1 and --enable-runtime-pseudo-reloc-v2.
382 For the switch --enable-runtime-pseudo-reloc it uses for 32-bit
383 runtime pseudo relocation version one, for 64-bit the version two.
384
6e33da12
TG
385Changes in 2.19:
386
66c103b7
AM
387* Linker scripts support a new INSERT command that makes it easier to
388 augment the default script.
389
967928e9 390* Linker script input section filespecs may now specify a file within an
66c103b7 391 archive by writing "archive:file".
967928e9 392
de7dd2bd
NC
393* The --sort-common switch now has an optional argument which specifies the
394 direction of sorting.
395
7fb9f789 396* The M68K linker now supports multiple GOT generation schemes controlled via
a05a5b64 397 the --got=<type> command-line option.
7fb9f789 398
66c103b7
AM
399* The ARM EABI linker will now generate stubs for function calls to symbols
400 that are too far away. The placement of the stubs is controlled by a new
a05a5b64 401 linker command-line option: --stub-group-size=N.
726150b7 402
7c3d153f
NC
403Changes in 2.18:
404
f96b4a7b
NC
405* Linker sources now released under version 3 of the GNU General Public
406 License.
407
c0065db7
RM
408* ELF: New --build-id option to generate a unique per-binary identifier
409 embedded in a note section.
410
3d3d428f 411* Added support for National Semicondutor CompactRISC (ie CR16) target.
a19bcec6 412
bcb674cf
RS
413* -l:foo now searches the library path for a filename called foo,
414 without converting it to libfoo.a or libfoo.so.
415
a05a5b64 416* Add a new command-line option '--default-script=FILE' or '-dT FILE'
14be8564
L
417 which specifies a replacement for the built in, default linker
418 script.
419
40b36307
L
420* ELF: Add -Bsymbolic-functions, --dynamic-list-cpp-new, which puts C++
421 operator new and delete on the dynamic list, and --dynamic-list-data,
422 builtin list for --dynamic-list, which puts global data symbols on the
423 dynamic list.
424
99ad8390
NC
425* Add support for x86_64 PE+ target.
426
1c0d3aa6
NC
427* Add support for Score target.
428
55255dae
L
429* ELF: Add --dynamic-list option to specify a list of global symbols
430 whose references shouldn't be bound to the definition within the
431 shared library, or a list of symbols which should be added to the
432 symbol table in the executable.
433
dc0b6aa0
AM
434* The default output section LMA has changed for allocatable sections from
435 being equal to VMA, to keeping the difference between LMA and VMA the same as
436 the previous output section in the same region. This is a more useful
437 default when using overlays and other cases where you specify an LMA
438 differing from the VMA for some sections.
439
c17d87de
NC
440* New switch: --print-gc-sections to list any sections removed by garabge
441 collection.
442
c6dd86c6 443* ARM: Added --vfp11-denorm-fix option to work around an erratum in current
f96b4a7b 444 VFP11 coprocessors.
c6dd86c6 445
c17d87de 446Changes in 2.17:
cf88bb9f 447
d70c5fc7
NC
448* Support for the Infineon XC16X has been added by KPIT Cummins Infosystems.
449
dfcffada
AM
450* Modify the Linux linker search order to better match ld.so search order.
451 Look for DT_NEEDED libraries in paths specified by ld.so.conf before
452 searching the default directories, rather than vice versa.
453 Use $prefix/etc/ld.so.conf if it exists, otherwise /etc/ld.so.conf.
c1446dba 454
4b5bd4e7
DS
455* PE-COFF: Forward exports from DLL's can now be specified in .def files
456 passed directly to ld.
457
3c9b82ba
NC
458* Support for the Z80 processor family has been added.
459
3e8a519c
MM
460* Add support for the "@<file>" syntax to the command line, so that extra
461 switches can be read from <file>.
462
957d91c1
NC
463Changes in 2.16:
464
319850b4
JB
465* Support for the R_ARM_V4BX relocation as defined in the ARM AAELF
466 specification has been added via the --fix-v4bx command-line option.
467
b717d30e
JJ
468* New linker script construct AS_NEEDED(), which sets the --as-needed flag
469 for input files listed inside of it.
470
e2243057
RS
471* A new command-line option, --sysroot, can be used to override the
472 default sysroot location. It only applies to toolchains that were
473 configured using --with-sysroot.
474
3ec57632
NC
475* New linker script functions: ORIGIN() and LENGTH() which return information
476 about a specified memory region.
477
7499d566
NC
478* Port to MAXQ processor contributed by HCL Tech.
479
ba916c8a
MM
480* Added SEGMENT_START to the linker script language to permit the user to
481 override the base address for a segment from the command-line.
482
8fdd7217
NC
483* ELF: --warn-shared-textrel option to warn if adding a DT_TEXTREL to a shared
484 object.
485
bcaa7b3e
L
486* Added SORT_BY_NAME and SORT_BY_ALIGNMENT to the linker script
487 language to permit sorting sections by section name or section
488 maximum alignment.
489
a05a5b64 490* Added a new linker command-line switch, --sort-section name|alignment,
bcaa7b3e
L
491 to sort sections by section name or maximum alignment.
492
8fdd7217
NC
493* ELF: --add-needed/--no-add-needed options to control if a DT_NEEDED tag
494 should be added when a shared library comes from DT_NEEDED tags.
14b3c463 495
1fe1f39c
NC
496* Support for the crx-elf target added.
497
1a320fbb 498* Support for the sh-symbianelf target added.
1fe1f39c 499
a05a5b64 500* A new linker command-line switch has been added which allows the hash table
2d643429
NC
501 size to be set to a suitable prime value near to its argument. This switch
502 is --hash-size=<NUMBER>. Also if the switch --reduce-memory-overheads is
503 used, and --hash-size has not been used, then the default value will be set
504 to 1021.
505
35835446
JR
506* Linker map files are now generated with an O(N) algorithm for finding symbols
507 that are defined in each section. This uses about 40% more memory for
508 symbols than the old O(N^2) algorithm. You can use the new
509 --reduce-memory-overheads option to select the old algorithm; this option
510 might also be used in the future to select similar tradeoffs.
511
2d643429 512Changes in 2.15:
14b3c463 513
8fdd7217
NC
514* ELF: --as-needed/--no-as-needed options to control if a DT_NEEDED tag should
515 be added only when a shared library is referenced.
c0065db7 516
8fdd7217 517* PE: --large-address-aware option to indicate executables support virtual
26d2d8a2
BF
518 addresses greater than 2 gigabytes.
519
1b169501
BF
520* DWARF 2 support for i386pe added.
521
c894ddfb
HPN
522* The linker script operator DEFINED() will now yield 1 only for a symbol that
523 is defined before the statement where DEFINED is used.
524
7a7f4e42
CD
525* The MIPS --embedded-relocs (used to embed relocations into binaries for
526 Embedded-PIC code) is deprecated and will be removed in a future release.
527
0949843d
NC
528* cr16c support added by NSC.
529
6edf0760
NC
530* m32r Linux (ELF) support added by Renesas.
531
560e09e9
NC
532* Improved linker's handling of unresolved symbols. The switch
533 --unresolved-symbols=<method> has been added to tell the linker when it
534 should report them and the switch --warn-unresolved-symbols has been added to
535 make reports be issued as warning messages rather than errors.
536
43c58ae6
CD
537Changes in 2.14:
538
e8fd7476
NC
539* Added support for Xtensa architecture.
540
9c8ebd6a
DJ
541* Added --with-sysroot configure switch to specify a target system root, for
542 linking against a target filesystem image.
543
312b768e
NC
544* Added --accept-unknown-linker-format to restore old linker behaviour (pre
545 2.14) of silently accepting and linking in any files in an unknown binary
546 file format.
547
63fd3b82
NC
548* Added --no-omagic to undo the effects of the -N option.
549
004d9caf
NC
550* Support for Texas Instruments TMS320C4x and TMS320C3x series of
551 DSP's contributed by Michael Hayes and Svein E. Seldal.
c0065db7 552
8e523c23
NC
553* Added --with-lib-path configure switch to specify default value for
554 LIB_PATH.
555
7e392df6
NC
556* ARM port to QNX operating system added by Graeme Peterson.
557
cf88bb9f
NC
558* IP2K support added by Denis Chertykov.
559
2cbb2eef
NC
560Changes in 2.13:
561
562* Support for the Fujitsu FRV architecture added by Red Hat. Models for FR400
563 and FR500 included.
7d553a40 564
37020578
JT
565Changes in version 2.13:
566
567* DEC VAX ELF support, by Matt Thomas.
568
9a66911f
NC
569Changes in version 2.12:
570
49fda6c8
HPN
571* Support for Don Knuth's MMIX, by Hans-Peter Nilsson.
572
3b16e843
NC
573* Support for the OpenRISC 32-bit embedded processor by OpenCores.
574
8bd621d8
AM
575* Support for -z nocopyreloc in the x86 ELF linker, which disables
576 production of copy relocs. Warning: using this option may result in
577 non-sharable applications.
5b343f5a 578
db6751f2
JJ
579* Support for -z combreloc in the ELF linker, which puts dynamic
580 relocations against the same symbol together, so that dynamic linker
581 can use an one-entry symbol lookup cache.
582
583* Support for ELF SHF_MERGE section merging, by Jakub Jelinek.
584
9a66911f
NC
585Changes in version 2.11:
586
b8355149
JH
587* Support for AMD x86-64 architecture, by Jan Hubicka, SuSE Labs.
588
18e03609
NC
589* Support added for eliminating duplicate DWARF2 debug information by
590 having the compiler generate the information in sections called
591 .gnu.linkonce.wi.XXXX where XXXX is a checksum for the contents. The
592 linker then merges these sections together into the normal .debug_info
593 section.
252b5132 594
ec4eb78a
L
595* The native ELF linker now searches the directories in DT_RUNPATH or
596 DT_RPATH of a shared library for shared libraries needed by it.
597
2d30b3da
TW
598* TI C54x support, by Timothy Wall.
599
a05a5b64 600* Added command-line switch --section-start to set the start address of any
c0065db7 601 specified section.
176355da 602
a712da20
NC
603* Added ability to emit full relocation information in linked executables,
604 enabled by --emit-relocs. Some post-linkage optimization tools need
605 this information in order to be able to correctly identify and perform
606 symbol relative addressing in the event of changes in section contents
607 (instructions being added or deleted, extending data sections, etc.)
608
22b36938
JE
609* Support for i860, by Jason Eckhardt (preliminary, alpha quality).
610
5bcac8a4
HPN
611* Support for CRIS (Axis Communications ETRAX series).
612
500800ca
NC
613* Support for PDP-11 and 2.11BSD a.out format, by Lars Brinkhoff.
614
919e4093
AM
615Changes in version 2.10:
616
c0065db7 617* Added AT> to the linker script language to allow load-time allocation of
5948916f
TW
618 sections into regions.
619
c0065db7 620* Added garbage collection of unused sections, enabled by --gc-sections.
252b5132 621 It does require a bit of backend support; currently implemented are
4667035e
AM
622 arm-elf, avr-elf, d10v-elf, fr30-elf, i386-elf, m32r-elf, m68k-elf,
623 mcore-elf, mips-elf, mn10300-elf, ppc-elf, sh-elf, sparc-elf, and v850-elf.
987fd5b4 624 Others will ignore the option.
252b5132
RH
625
626* Added SORT to the linker script language to permit sorting sections by file
627 name or section name.
628
629* Added EXTERN to the linker script language as an equivalent to the -u
630 command-line option.
631
632* Added ASSERT to the linker script language.
633
277c9afe
ILT
634* Added EXCLUDE_FILE to the linker script language for further control over
635 wildcard file names.
636
252b5132 637* Added -O option to optimize linker output (as of this writing, this only
500800ca 638 affects ELF shared library generation).
252b5132
RH
639
640* The -e option now accepts a number as well as a symbol name.
641
2575273d
ILT
642* Added --no-undefined option to disallow undefined symbols when creating a
643 shared library.
644
9b1d3b78
ILT
645* The linker now issues a warning, not an error, for an undefined symbol when
646 using -Bsymbolic; use the new --no-undefined option to get the old
647 behaviour.
648
252b5132
RH
649* Added --demangle and --no-demangle options.
650
651Changes in version 2.9:
652
653* Added SQUAD to the linker script language.
654
655* New option --no-warn-mismatch.
656
657* The MEMORY command now parses the attributes to determine where sections that
658 are not placed in a specific memory region are placed.
659
660Changes in version 2.8:
661
662* Linker scripts may now contain shell wildcard characters for file and section
663 names.
664
665* The linker now supports symbol versions in ELF.
666
667* The NOCROSSREFS command was added to the linker script language.
668
669* The LOADADDR expression was added to the linker script language.
670
671* MAX and MIN functions were added to the linker script language.
672
673* The OVERLAY construct was added to the linker script language.
674
675* New option --warn-section-align to warn when the address of an output section
676 changes due to alignment of an input section.
677
678* New options --filter/-F and --auxiliary/-f.
679
680Changes in version 2.7:
681
682* New option --cref to print out a cross reference table.
683
684* New option --wrap SYMBOL.
685
686* New option --no-whole-archive, to turn off the effect of --whole-archive.
687
688* Input sections assigned to the output section /DISCARD/ in the linker script
689 are not included in the output file.
690
691* The SunOS and ELF linkers now merge stabs debugging information which uses
692 the N_BINCL and N_EINCL stab types. This reduces the amount of debugging
693 information generated.
694
695Changes in version 2.6:
696
697* When an ELF section name is representable as a C identifier (this is not true
45f111cc
NC
698of most ELF section names), the linker will automatically define symbols
699__start_SECNAME and __stop_SECNAME, where SECNAME is the section name, at the
700beginning and the end of the section. This is used by glibc.
701
702 Addendum: Current versions of the linker (at least for version 2.18 onwards
703and possibly much earlier as well) place two restrictions on this feature: The
704symbols are only implemented for orphaned sections, not for explicitly placed
705sections and they are PROVIDEd rather than being defined.
252b5132
RH
706
707* When an ELF section named .gnu.warning is encountered in an input file, the
708contents of the section are displayed as an error message, and the section is
709not copied into the output file. This is used by glibc.
710
711* When an ELF section named .gnu.warning.SYMBOL is encountered in an input
712file, and the symbol SYMBOL is referenced by some object file, the contents of
713the section are displayed as an error message. The section is not copied into
1049f94e 714the output file, unless doing a relocatable or shared link. This is used by
252b5132
RH
715glibc.
716
717* New options -split-by-reloc and -split-by-file.
718
719* The linker now supports linking PIC compiled code on SPARC SunOS. It can
720also create SPARC SunOS shared libraries, and, like the native SunOS linker,
721will do so whenever there is an undefined symbol in the link and neither the -e
722nor the -r option was used.
723
724* The -rpath option may be used on SunOS to set the list of directories to be
725searched at run time. This overrides the default of building the list from the
726-L options.
727
728* The COFF linker now combines debugging information for structs, unions, and
729enums, so that even if the same type is defined in multiple input files it will
730only be defined once in the output file. The --traditional-format switch will
731prevent this optimization.
732
733Changes in version 2.5:
734
735* The linker now supports linking against SunOS shared libraries. It still can
736not link SunOS PIC (Position Independent Code) files, so it can not be used to
07f3b6ad 737generate shared libraries.
252b5132
RH
738
739* The linker now supports linking against ELF shared libraries for the i386
740(UnixWare) and SPARC (Solaris). It can also link ELF PIC files, and can be
741used to generate shared libraries. Shared library generation is not well
742tested; please report any problems encountered. The linker is now enabled for
743Solaris again.
744
745* Eric Youngdale has contributed Linux support code, including linking against
746Linux a.out shared libraries. The linker produces Linux QMAGIC binaries.
747
748* The ELF backend has been converted to the new linker code. To use the new
749ELF linker, each particular target requires a relocation function. So far,
750this function has been written for i386 (UnixWare), SPARC (Solaris) MIPS (Irix
7515), and HPPA ELF targets.
752
753* The -( (--start-group) and -) (--end-group) options have been added to
754support searching a group of archives as though they were a single archive.
755This can also be used in a linker script, as GROUP ( files ).
756
757* When a file is named on the command line, and the linker does not recognize
758it as an object file, the linker will now treat the file as a linker script
759file. A linker script named in this way augments, but does not replace, the
760default linker script.
761
762* The -warn-once option was added. It causes the linker to only warn once per
763undefined symbol, rather than once per reference.
764
765* The COFF backend has been converted to the new linker code. As with ELF, to
766use the new linker, each particular target requires a relocation function. So
767far, this function has been written for the i386, m68k, a29k and SH targets.
768
769* The -V flag was made a synonym for -v, for SVR4 compatibility. The old -V
770behaviour is available via --verbose.
771
772Changes in version 2.4:
773
774* New linker code, by Steve Chamberlain and Ian Taylor. For a.out and ecoff
775 formats (so far), this should result in considerable savings in time
776 and memory used while linking; slightly poorer performance than
777 before for formats not converted yet.
778
779* Command-line parsing is no longer done with flex. This means
780 oddball characters in filenames won't get treated as argument
781 separators.
782
783* HP-PA ELF support, by Jeff Law. (No SOM support yet.)
784
785* Mach i386 support, by David Mackenzie.
786
787* Irix 4 shared libraries are now supported (Irix 5 uses ELF, and ELF shared
788 libraries are not yet supported).
789
790* COFF shared libraries (as on SCO) should work as well.
791
792* The linker is disabled for Solaris. (Actually, it was in 2.3 also, I just
793 forgot to note it.) Some of their C library routines don't work when
794 statically linked, and the GNU linker doesn't support dynamic linking yet.
795
796Changes in version 2.3:
797
798* Weak symbols are now supported.
799
800* ELF support has been added. The linker has been bootstrapped on
801 UnixWare and Solaris.
802
803* Alpha OSF/1 support has been added (non dynamic linking only).
804
805Changes in version 2.2:
806
807* The `bfd' library has been updated to reduce a.out-format string
808 table size. The effect of this is that files linked from many input
809 files with duplicate symbols (`-g' debugging records, or identical
810 static symbols) should be much smaller.
811
812Changes in version 2.1:
813
814* The ld -ySYMBOL flag (to trace references to SYMBOL) is now implemented.
815
816* There is now support for writing ECOFF files, so ld and the
817 other utilities should work on Risc/Ultrix and Irix.
818
819\f
b3adc24a 820Copyright (C) 2012-2020 Free Software Foundation, Inc.
5bf135a7
NC
821
822Copying and distribution of this file, with or without modification,
823are permitted in any medium without royalty provided the copyright
824notice and this notice are preserved.
825
252b5132
RH
826Local variables:
827fill-column: 79
828End:
This page took 0.885403 seconds and 4 git commands to generate.