* exec.c (exec_file_attach): Add .exe extension when __CYGWIN__.

This commit is contained in:
Christopher Faylor 2000-06-11 16:07:51 +00:00
parent 7c5c87c02d
commit cfc3008e2f
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Sun Jun 11 12:06:21 2000 Christopher Faylor <cgf@cygnus.com>
* exec.c (exec_file_attach): Add .exe extension when __CYGWIN__.
Sat Jun 10 22:31:46 2000 Christopher Faylor <cgf@cygnus.com>
* win32-nat.c (safe_symbol_file_add_args): Store old gdb_stderr and

View File

@ -206,7 +206,7 @@ exec_file_attach (args, from_tty)
scratch_chan = openp (getenv ("PATH"), 1, filename,
write_files ? O_RDWR | O_BINARY : O_RDONLY | O_BINARY, 0,
&scratch_pathname);
#if defined(__GO32__) || defined(_WIN32)
#if defined(__GO32__) || defined(_WIN32) || defined(__CYGWIN__)
if (scratch_chan < 0)
{
char *exename = alloca (strlen (filename) + 5);