diff options
author | Alan Modra <amodra@gmail.com> | 2018-10-29 18:10:06 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2018-10-29 18:21:05 +1030 |
commit | 727a29badd95a68d08b86fec0b98702ce756c660 (patch) | |
tree | 83df8737f89d9e8cee74c6d1e98db4475a7555fb /ld/lexsup.c | |
parent | 5c87f94bb85e5b8e715aa7f947ecc602960f20ee (diff) | |
download | gdb-727a29badd95a68d08b86fec0b98702ce756c660.zip gdb-727a29badd95a68d08b86fec0b98702ce756c660.tar.gz gdb-727a29badd95a68d08b86fec0b98702ce756c660.tar.bz2 |
Report scripts and libraries searched for ld --trace
The idea of this change is to make -t output useful for users wanting
to package all the object files involved in linking for a bug report.
Something like the following should do the trick.
gcc hello.c -save-temps -Wl,-t | xargs realpath | sort | uniq > files
tar cJf test.tar.xz `cat files`
* ldlang.c (load_symbols): When -t, print file names for script
files and archives.
* ldmain.c (trace_files): Make an int.
(add_archive_element): Print archive elements only with multiple
-t options, or when archive is thin.
* ldmain.h (trace_files): Update.
* ldmisc.c (vfinfo): Don't print both original path and path in
sysroot.
* lexsup.c (parse_args <t>): Increment trace_files.
Diffstat (limited to 'ld/lexsup.c')
-rw-r--r-- | ld/lexsup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/lexsup.c b/ld/lexsup.c index 86a033a..1da6a50 100644 --- a/ld/lexsup.c +++ b/ld/lexsup.c @@ -1233,7 +1233,7 @@ parse_args (unsigned argc, char **argv) command_line.symbolic = symbolic_functions; break; case 't': - trace_files = TRUE; + ++trace_files; break; case 'T': previous_script_handle = saved_script_handle; |