Fix Cygwin build after fcab5839
authorJon Turney <jon.turney@dronecode.org.uk>
Fri, 20 May 2022 13:35:57 +0000 (14:35 +0100)
committerJon Turney <jon.turney@dronecode.org.uk>
Thu, 2 Jun 2022 09:39:44 +0000 (10:39 +0100)
Fix Cygwin build after fcab5839 ("Implement pid_to_exec_file for Windows
in gdbserver"). That change moves code from gdb/windows-nat.c to
gdb/nat/windows-nat.c, but doesn't add the required typedefs and
includes for parts of that code under ifdef __CYGWIN__.

gdb/nat/windows-nat.c
gdb/windows-nat.c

index 71a18a0efa9186038d0cecf7cd1926e44f8cfc50..f6818015c5351f25cc424b459f9474dd6ff8cf2c 100644 (file)
 #include "gdbsupport/common-debug.h"
 #include "target/target.h"
 
-#ifdef __CYGWIN__
+#undef GetModuleFileNameEx
+
+#ifndef __CYGWIN__
+#define GetModuleFileNameEx GetModuleFileNameExA
+#else
+#include <sys/cygwin.h>
 #define __USEWIDE
+typedef wchar_t cygwin_buf_t;
+#define GetModuleFileNameEx GetModuleFileNameExW
 #endif
 
 namespace windows_nat
index 11f54302b11625da6aaef88ee72e3abdd353d755..6c6dea84bfa9f7b0e1c0b2e6edb9ad0e9903cc3f 100644 (file)
@@ -79,11 +79,9 @@ static windows_process_info windows_process;
 
 #undef STARTUPINFO
 #undef CreateProcess
-#undef GetModuleFileNameEx
 
 #ifndef __CYGWIN__
 # define __PMAX        (MAX_PATH + 1)
-# define GetModuleFileNameEx GetModuleFileNameExA
 # define STARTUPINFO STARTUPINFOA
 # define CreateProcess CreateProcessA
 #else
@@ -93,7 +91,6 @@ static windows_process_info windows_process;
   static CORE_ADDR cygwin_load_end;
 #   define __USEWIDE
     typedef wchar_t cygwin_buf_t;
-#   define GetModuleFileNameEx GetModuleFileNameExW
 #   define STARTUPINFO STARTUPINFOW
 #   define CreateProcess CreateProcessW
 #endif