diff options
author | Eli Zaretskii <eliz@gnu.org> | 2016-10-29 18:10:23 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2016-10-29 18:10:23 +0300 |
commit | 8ba42bc5da8015fd0bd9e7f021af9cb0ef252005 (patch) | |
tree | 62b801a6ee50908e3ef8a014a747f4261f4d0dbc /gdb/NEWS | |
parent | 39402e6c64121bdae146e82f6c48f0c0e0d9d26b (diff) | |
download | gdb-8ba42bc5da8015fd0bd9e7f021af9cb0ef252005.zip gdb-8ba42bc5da8015fd0bd9e7f021af9cb0ef252005.tar.gz gdb-8ba42bc5da8015fd0bd9e7f021af9cb0ef252005.tar.bz2 |
Support command-line redirection in native MS-Windows debugging
gdb/ChangeLog
2016-10-29 Eli Zaretskii <eliz@gnu.org>
* NEWS: Mention support for redirection on MS-Windows.
* windows-nat.c (redir_open, redir_set_redirection)
(redirect_inferior_handles) [!__CYGWIN__]: New functions.
(windows_create_inferior) [!__CYGWIN__]: Use
'redirect_inferior_handles' to redirect standard handles of the
debuggee if the command line requests that.
Diffstat (limited to 'gdb/NEWS')
-rw-r--r-- | gdb/NEWS | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -9,6 +9,14 @@ compiler. The --disable-build-with-cxx configure option has been removed. +* Native debugging on MS-Windows supports command-line redirection + + Command-line arguments used for starting programs on MS-Windows can + now include redirection symbols supported by native Windows shells, + such as '<', '>', '>>', '2>&1', etc. This affects GDB commands such + as "run", "start", and "set args", as well as the corresponding MI + features. + * Support for thread names on MS-Windows. GDB now catches and handles the special exception that programs |