This is the mail archive of the gdb@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: [windows mingw]gdb cvs head build error in windows-nat.c



> -----Message d'origine-----
> De : gdb-owner@sourceware.org [mailto:gdb-owner@sourceware.org] De la part
> de Pierre Muller
> Envoyà : vendredi 16 dÃcembre 2011 16:17
> Ã : 'asmwarrior'; gdb@sourceware.org
> Cc : 'gdb-patches'
> Objet : RE: [windows mingw]gdb cvs head build error in windows-nat.c
> 
> 
> 
> > -----Message d'origine-----
> > De : gdb-owner@sourceware.org [mailto:gdb-owner@sourceware.org] De la part
> > de asmwarrior
> > Envoyà : vendredi 16 dÃcembre 2011 15:34
> > Ã : gdb@sourceware.org
> > Objet : Re: [windows mingw]gdb cvs head build error in windows-nat.c
> >
> > On 2011-12-16 22:21, asmwarrior wrote:
> > > I build under MSYS+mingw
> > > Here is the build error:
> I confirm that this build failure also exists for cygwin native build.
> > This patch should fix the build error.
> >
> >   gdb/windows-nat.c |    2 ++
> >   1 files changed, 2 insertions(+), 0 deletions(-)
> 
>   Any small patch that resolves a build failure
> (especially for a native target) should be considered
> as obvious and can thus be applied without
> the need to wait for approval by a global maintainers.
> 
>    But the patch should probably be sent to
> gdb-patches mailing list together with the used ChangeLog entry.

  I realized that I was assuming that you had write access to gdb cvs directory...
If this is not the case, I can commit the change for you,
just tell me under which name you would like to be acknowledged in the ChangeLog
or if the below is OK for you.

Pierre Muller


ChangeLog entry:

2011-12-16  Pierre Muller  <muller@ics.u-strasbg.fr>  (obvious fix)

	From asmwarrior  <asmwarrior@gmail.com>	
	* windows-nat.c (cygwin_get_dr, cygwin_get_dr7): Add missing prototypes.


Index: windows-nat.c
===================================================================
RCS file: /cvs/src/src/gdb/windows-nat.c,v
retrieving revision 1.221
diff -u -p -r1.221 windows-nat.c
--- windows-nat.c       14 Dec 2011 17:20:31 -0000      1.221
+++ windows-nat.c       16 Dec 2011 17:12:25 -0000
@@ -173,7 +173,9 @@ static void windows_kill_inferior (struc

 static void cygwin_set_dr (int i, CORE_ADDR addr);
 static void cygwin_set_dr7 (unsigned long val);
+static CORE_ADDR cygwin_get_dr (int i);
 static unsigned long cygwin_get_dr6 (void);
+static unsigned long cygwin_get_dr7 (void);

 static enum target_signal last_sig = TARGET_SIGNAL_0;
 /* Set if a signal was received from the debugged process.  */


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]