* exec.c (exec_file_attach): Add .exe extension when __CYGWIN__.
authorChristopher Faylor <me+cygwin@cgf.cx>
Sun, 11 Jun 2000 16:07:51 +0000 (16:07 +0000)
committerChristopher Faylor <me+cygwin@cgf.cx>
Sun, 11 Jun 2000 16:07:51 +0000 (16:07 +0000)
gdb/ChangeLog
gdb/exec.c

index 9609c3e2281e84a5767196624681f0a856bd91fa..c027035f58e181b791b438923df49f8ae4a6eae8 100644 (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
index 76d492866474664bc7b37e44164f694ad8a0bee0..f99cad97b50654e0fc256951ea98be03bd5a3e65 100644 (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);