From 60c5c0213ab9c33902c8f483c4bf0447736415a4 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Tue, 9 Mar 2010 19:10:39 +0000 Subject: * windows-nat.c (cygwin_conv_path): Redefine to properly convert from/to posix/win32. (windows_make_so): Use non-Cygwin 1.7 specific function. (windows_create_inferior): Make sure that cygallargs points to original args in non Cygwin 1.7. case. --- gdb/ChangeLog | 9 +++++++++ gdb/windows-nat.c | 11 ++++++++++- 2 files changed, 19 insertions(+), 1 deletion(-) (limited to 'gdb') diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e917cd4..d41f036 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,12 @@ +2010-03-09 Christopher Faylor + Pierre Muller + + * windows-nat.c (cygwin_conv_path): Redefine to properly convert + from/to posix/win32. + (windows_make_so): Use non-Cygwin 1.7 specific function. + (windows_create_inferior): Make sure that cygallargs points to + original args in non Cygwin 1.7. case. + 2010-03-09 Michael Snyder * i386-tdep.c (i386_record_lea_modrm_addr): Use extract_signed_int diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c index 87f9c43..01d5f03 100644 --- a/gdb/windows-nat.c +++ b/gdb/windows-nat.c @@ -115,6 +115,12 @@ static struct target_ops windows_ops; # define GetModuleFileNameEx_name "GetModuleFileNameExW" # define bad_GetModuleFileNameEx bad_GetModuleFileNameExW # else +# define CCP_POSIX_TO_WIN_W 1 +# define CCP_WIN_W_TO_POSIX 3 +# define cygwin_conv_path(op, from, to, size) \ + (op == CCP_WIN_W_TO_POSIX) ? \ + cygwin_conv_to_full_posix_path (from, to) : \ + cygwin_conv_to_win32_path (from, to) # define cygwin_conv_path(op, from, to, size) cygwin_conv_to_full_posix_path (from, to) typedef char cygwin_buf_t; static DWORD WINAPI (*GetModuleFileNameEx) (HANDLE, HMODULE, LPSTR, DWORD); @@ -122,6 +128,7 @@ static struct target_ops windows_ops; # define CreateProcess CreateProcessA # define GetModuleFileNameEx_name "GetModuleFileNameExA" # define bad_GetModuleFileNameEx bad_GetModuleFileNameExA +# define CW_SET_DOS_FILE_WARNING -1 /* no-op this for older Cygwin */ # endif #endif @@ -706,7 +713,7 @@ windows_make_so (const char *name, LPVOID load_addr) SO_NAME_MAX_PATH_SIZE); else { - char *rname = canonicalize_file_name (name); + char *rname = realpath (name, NULL); if (rname && strlen (rname) < SO_NAME_MAX_PATH_SIZE) { strcpy (so->so_name, rname); @@ -1945,6 +1952,8 @@ windows_create_inferior (struct target_ops *ops, char *exec_file, error (_("Error starting executable: %d"), errno); cygallargs = (wchar_t *) alloca (len * sizeof (wchar_t)); mbstowcs (cygallargs, allargs, len); +#else + cygallargs = allargs; #endif } else -- cgit v1.1