mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-30 17:31:13 +08:00
Document ld -t behaviour
* NEWS: Mention -t change. * ld.texi (--trace/-t): Expand documentation a little.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2019-01-31 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
|
* NEWS: Mention -t change.
|
||||||
|
* ld.texi (--trace/-t): Expand documentation a little.
|
||||||
|
|
||||||
2019-01-29 H.J. Lu <hongjiu.lu@intel.com>
|
2019-01-29 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
PR ld/24008
|
PR ld/24008
|
||||||
|
6
ld/NEWS
6
ld/NEWS
@ -6,6 +6,12 @@ Changes in 2.32:
|
|||||||
|
|
||||||
* Add support for the C-SKY processor series.
|
* Add support for the C-SKY processor series.
|
||||||
|
|
||||||
|
* -t now doesn't report members within archives, unless -t is given twice.
|
||||||
|
A single -t is now more useful when generating a list of files that should be
|
||||||
|
packaged for a linker bug report. For example:
|
||||||
|
gcc hello.c -save-temps -Wl,-t | xargs realpath | sort | uniq > files
|
||||||
|
tar cJf test.tar.xz `cat files`
|
||||||
|
|
||||||
Changes in 2.31:
|
Changes in 2.31:
|
||||||
|
|
||||||
* Speed up direct linking with DLLs for Cygwin and Mingw targets.
|
* Speed up direct linking with DLLs for Cygwin and Mingw targets.
|
||||||
|
@ -961,7 +961,11 @@ Enabled by default.
|
|||||||
@cindex input files, displaying
|
@cindex input files, displaying
|
||||||
@item -t
|
@item -t
|
||||||
@itemx --trace
|
@itemx --trace
|
||||||
Print the names of the input files as @command{ld} processes them.
|
Print the names of the input files as @command{ld} processes them. If
|
||||||
|
@samp{-t} is given twice then members within archives are also printed.
|
||||||
|
@samp{-t} output is useful to generate a list of all the object files
|
||||||
|
and scripts involved in linking, for example, when packaging files for
|
||||||
|
a linker bug report.
|
||||||
|
|
||||||
@kindex -T @var{script}
|
@kindex -T @var{script}
|
||||||
@kindex --script=@var{script}
|
@kindex --script=@var{script}
|
||||||
|
Reference in New Issue
Block a user