Mirror of the gdb mailing list
 help / color / mirror / Atom feed
* GDB CVS won't build on Solaris/x86
@ 2002-01-29 22:59 Alexandre Oliva
  2002-01-30  0:12 ` Peter.Schauer
  2002-02-14  0:18 ` Peter.Schauer
  0 siblings, 2 replies; 5+ messages in thread
From: Alexandre Oliva @ 2002-01-29 22:59 UTC (permalink / raw)
  To: gdb

/home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c: In function `supply_fpregset': 
/home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:184: `LAST_FPU_CTRL_REGNUM' undeclared (first use in this function)
/home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:184: (Each undeclared identifier is reported only once
/home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:184: for each function it appears in.)
/home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:190: `FCS_REGNUM' undeclared (first use in this function)
/home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:196: `FOP_REGNUM' undeclared (first use in this function)
/home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c: In function `fill_fpregset':
/home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:219: `LAST_FPU_CTRL_REGNUM' undeclared (first use in this function)
/home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:228: `FCS_REGNUM' undeclared (first use in this function)
/home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:235: `FOP_REGNUM' undeclared (first use in this function)
make[2]: *** [i386v4-nat.o] Error 1

It's been like that for the past few weeks, but I still haven't had a
chance to investigate, so I wouldn't mind if someone beat me to it :-)

-- 
Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat GCC Developer                  aoliva@{cygnus.com, redhat.com}
CS PhD student at IC-Unicamp        oliva@{lsd.ic.unicamp.br, gnu.org}
Free Software Evangelist    *Please* write to mailing lists, not to me


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: GDB CVS won't build on Solaris/x86
  2002-01-29 22:59 GDB CVS won't build on Solaris/x86 Alexandre Oliva
@ 2002-01-30  0:12 ` Peter.Schauer
  2002-01-30 14:43   ` Mark Kettenis
  2002-02-14  0:18 ` Peter.Schauer
  1 sibling, 1 reply; 5+ messages in thread
From: Peter.Schauer @ 2002-01-30  0:12 UTC (permalink / raw)
  To: Alexandre Oliva; +Cc: rbrown64, gdb, kettenis

When this approved patch will be in:

http://sources.redhat.com/ml/gdb-patches/2002-01/msg00738.html

I will commit a small change to gdb/config/i386/i386sol2.mh to include
i387-nat.o in NATDEPFILES and then it should work again...

> /home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c: In function `supply_fpregset': 
> /home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:184: `LAST_FPU_CTRL_REGNUM' undeclared (first use in this function)
> /home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:184: (Each undeclared identifier is reported only once
> /home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:184: for each function it appears in.)
> /home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:190: `FCS_REGNUM' undeclared (first use in this function)
> /home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:196: `FOP_REGNUM' undeclared (first use in this function)
> /home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c: In function `fill_fpregset':
> /home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:219: `LAST_FPU_CTRL_REGNUM' undeclared (first use in this function)
> /home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:228: `FCS_REGNUM' undeclared (first use in this function)
> /home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:235: `FOP_REGNUM' undeclared (first use in this function)
> make[2]: *** [i386v4-nat.o] Error 1
> 
> It's been like that for the past few weeks, but I still haven't had a
> chance to investigate, so I wouldn't mind if someone beat me to it :-)
> 
> -- 
> Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
> Red Hat GCC Developer                  aoliva@{cygnus.com, redhat.com}
> CS PhD student at IC-Unicamp        oliva@{lsd.ic.unicamp.br, gnu.org}
> Free Software Evangelist    *Please* write to mailing lists, not to me
> 
> 


-- 
Peter Schauer			pes@regent.e-technik.tu-muenchen.de


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: GDB CVS won't build on Solaris/x86
  2002-01-30  0:12 ` Peter.Schauer
@ 2002-01-30 14:43   ` Mark Kettenis
  0 siblings, 0 replies; 5+ messages in thread
From: Mark Kettenis @ 2002-01-30 14:43 UTC (permalink / raw)
  To: Peter.Schauer; +Cc: aoliva, rbrown64, gdb

   From: "Peter.Schauer" <Peter.Schauer@regent.e-technik.tu-muenchen.de>
   Date: Wed, 30 Jan 2002 9:12:04 MET

   When this approved patch will be in:

   http://sources.redhat.com/ml/gdb-patches/2002-01/msg00738.html

That one's checked in now.

Mark


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: GDB CVS won't build on Solaris/x86
  2002-01-29 22:59 GDB CVS won't build on Solaris/x86 Alexandre Oliva
  2002-01-30  0:12 ` Peter.Schauer
@ 2002-02-14  0:18 ` Peter.Schauer
  2002-03-06 13:17   ` Alexandre Oliva
  1 sibling, 1 reply; 5+ messages in thread
From: Peter.Schauer @ 2002-02-14  0:18 UTC (permalink / raw)
  To: Alexandre Oliva; +Cc: gdb

Should be fixed now, with the recent changes to i386v4-nat.c and:

2002-02-14  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>

	* config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
	i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.

--- ./config/i386/i386sol2.mh.orig	Fri Jan 18 05:50:59 2002
+++ ./config/i386/i386sol2.mh	Sat Feb  2 11:36:22 2002
@@ -4,5 +4,5 @@ XM_FILE= xm-i386v4.h
 XM_CLIBS= -lsocket -lnsl
 
 NAT_FILE= nm-i386sol2.h
-NATDEPFILES= core-regset.o fork-child.o i386v4-nat.o corelow.o procfs.o \
-	proc-api.o proc-events.o proc-flags.o proc-why.o
+NATDEPFILES= core-regset.o fork-child.o i386v4-nat.o i387-nat.o corelow.o \
+	procfs.o proc-api.o proc-events.o proc-flags.o proc-why.o gcore.o


> /home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c: In function `supply_fpregset': 
> /home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:184: `LAST_FPU_CTRL_REGNUM' undeclared (first use in this function)
> /home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:184: (Each undeclared identifier is reported only once
> /home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:184: for each function it appears in.)
> /home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:190: `FCS_REGNUM' undeclared (first use in this function)
> /home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:196: `FOP_REGNUM' undeclared (first use in this function)
> /home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c: In function `fill_fpregset':
> /home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:219: `LAST_FPU_CTRL_REGNUM' undeclared (first use in this function)
> /home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:228: `FCS_REGNUM' undeclared (first use in this function)
> /home/phd/oliva/src/tool/egcs/gdb/i386v4-nat.c:235: `FOP_REGNUM' undeclared (first use in this function)
> make[2]: *** [i386v4-nat.o] Error 1
> 
> It's been like that for the past few weeks, but I still haven't had a
> chance to investigate, so I wouldn't mind if someone beat me to it :-)
> 
> -- 
> Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
> Red Hat GCC Developer                  aoliva@{cygnus.com, redhat.com}
> CS PhD student at IC-Unicamp        oliva@{lsd.ic.unicamp.br, gnu.org}
> Free Software Evangelist    *Please* write to mailing lists, not to me
> 
> 


-- 
Peter Schauer			pes@regent.e-technik.tu-muenchen.de


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: GDB CVS won't build on Solaris/x86
  2002-02-14  0:18 ` Peter.Schauer
@ 2002-03-06 13:17   ` Alexandre Oliva
  0 siblings, 0 replies; 5+ messages in thread
From: Alexandre Oliva @ 2002-03-06 13:17 UTC (permalink / raw)
  To: Peter.Schauer; +Cc: gdb

On Feb 14, 2002, "Peter.Schauer" <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE> wrote:

> Should be fixed now

Confirmed, I was able to build GDB successfully with a random snapshot
taken from CVS mainline some time on Monday.  Thanks!

-- 
Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat GCC Developer                  aoliva@{cygnus.com, redhat.com}
CS PhD student at IC-Unicamp        oliva@{lsd.ic.unicamp.br, gnu.org}
Free Software Evangelist                Professional serial bug killer


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2002-03-06 21:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-01-29 22:59 GDB CVS won't build on Solaris/x86 Alexandre Oliva
2002-01-30  0:12 ` Peter.Schauer
2002-01-30 14:43   ` Mark Kettenis
2002-02-14  0:18 ` Peter.Schauer
2002-03-06 13:17   ` Alexandre Oliva

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox