aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/exec.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 9609c3e..c027035 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -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
diff --git a/gdb/exec.c b/gdb/exec.c
index 76d4928..f99cad9 100644
--- a/gdb/exec.c
+++ b/gdb/exec.c
@@ -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);