From: Christopher Faylor <cgf-use-the-mailinglist-please@sourceware.org>
To: gdb-patches@sourceware.org,
Pierre Muller <pierre.muller@ics-cnrs.unistra.fr>
Subject: Re: [RFA] Re: [RFC-v2] Reenable compilation with cygwin 1.5 versions
Date: Mon, 08 Mar 2010 22:11:00 -0000 [thread overview]
Message-ID: <20100308221127.GB18247@ednor.casa.cgf.cx> (raw)
In-Reply-To: <000601cabed8$be2c0610$3a841230$@muller@ics-cnrs.unistra.fr>
On Mon, Mar 08, 2010 at 05:02:24PM +0100, Pierre Muller wrote:
>Are these patches OK?
Although I didn't really succed in windows_create_inferior, the goal
here is to reduce the amount of ifdef clutter in the code. So, I'd
propose the below as a slightly less alternative to your version.
cgf
Index: windows-nat.c
===================================================================
RCS file: /cvs/src/src/gdb/windows-nat.c,v
retrieving revision 1.205
diff -d -u -p -r1.205 windows-nat.c
--- windows-nat.c 6 Mar 2010 19:27:09 -0000 1.205
+++ windows-nat.c 8 Mar 2010 22:08:07 -0000
@@ -122,6 +122,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 +707,7 @@ windows_make_so (const char *name, LPVOI
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 +1946,8 @@ windows_create_inferior (struct target_o
error (_("Error starting executable: %d"), errno);
cygallargs = (wchar_t *) alloca (len * sizeof (wchar_t));
mbstowcs (cygallargs, allargs, len);
+#else
+ cygallargs = allargs;
#endif
}
else
next prev parent reply other threads:[~2010-03-08 22:11 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-03-03 16:54 [RFC] " Pierre Muller
2010-03-03 17:14 ` Corinna Vinschen
2010-03-03 20:30 ` Christopher Faylor
2010-03-04 15:32 ` [RFC-v2] " Pierre Muller
2010-03-04 16:38 ` Christopher Faylor
2010-03-06 19:27 ` Christopher Faylor
2010-03-08 16:02 ` [RFA] " Pierre Muller
2010-03-08 22:11 ` Christopher Faylor [this message]
2010-03-08 23:15 ` Pierre Muller
2010-03-09 19:12 ` Christopher Faylor
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20100308221127.GB18247@ednor.casa.cgf.cx \
--to=cgf-use-the-mailinglist-please@sourceware.org \
--cc=gdb-patches@sourceware.org \
--cc=pierre.muller@ics-cnrs.unistra.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox