diff options
author | Andrew Stubbs <andrew.stubbs@st.com> | 2006-02-21 18:22:27 +0000 |
---|---|---|
committer | Andrew Stubbs <andrew.stubbs@st.com> | 2006-02-21 18:22:27 +0000 |
commit | 1986bccdb576b7758273dfa5ec8274c6be55f268 (patch) | |
tree | 588b071c964fe48831999229b1b9a279cd59c581 /gdb/Makefile.in | |
parent | a6b0a3f3145cd0f1d7d5314e9698c542e4e7b888 (diff) | |
download | gdb-1986bccdb576b7758273dfa5ec8274c6be55f268.zip gdb-1986bccdb576b7758273dfa5ec8274c6be55f268.tar.gz gdb-1986bccdb576b7758273dfa5ec8274c6be55f268.tar.bz2 |
2006-02-21 Andrew Stubbs <andrew.stubbs@st.com>
* symfile.c (generic_load): Use buildargv() and tilde_expand()
to parse file names with quoting, spaces and tildes properly.
(load_command): Quote all special characters before calling
target_load() such that buildargv() doesn't break file names.
(_initialize_symfile): Mention the load offset in the help for
the load command.
* remote-sim.c: Include readline.h.
(gdbsim_load): Use buildargv and tilde_expand() to parse file
names with quoting, spaces and tildes properly.
* target.h (target_load): Comment the parameters better.
* Makefile.in (remote_sim.o): Add readline.h dependency.
testsuite/
* gdb.base/help.exp (help load): Update expected results.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 779c9d0..acba593 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2477,7 +2477,8 @@ remote-sds.o: remote-sds.c $(defs_h) $(gdb_string_h) $(frame_h) \ remote-sim.o: remote-sim.c $(defs_h) $(inferior_h) $(value_h) \ $(gdb_string_h) $(terminal_h) $(target_h) $(gdbcore_h) \ $(gdb_callback_h) $(gdb_remote_sim_h) $(remote_utils_h) $(command_h) \ - $(regcache_h) $(gdb_assert_h) $(sim_regno_h) $(arch_utils_h) + $(regcache_h) $(gdb_assert_h) $(sim_regno_h) $(arch_utils_h) \ + $(readline_h) remote-st.o: remote-st.c $(defs_h) $(gdbcore_h) $(target_h) $(gdb_string_h) \ $(serial_h) $(regcache_h) remote-utils.o: remote-utils.c $(defs_h) $(gdb_string_h) $(gdbcmd_h) \ |