Mirror of the gdb mailing list
 help / color / mirror / Atom feed
* problem with building head branch gdb
@ 2003-01-14 19:44 Kris Warkentin
  2003-01-14 20:01 ` Daniel Jacobowitz
  0 siblings, 1 reply; 7+ messages in thread
From: Kris Warkentin @ 2003-01-14 19:44 UTC (permalink / raw)
  To: gdb

When trying to build the head branch of gdb on Cygwin I keep getting this
error in the gdb subdir:

checking for Tcl private headers. dir=unix... checking for tclInt.h... no
configure: error: Can't find Tcl private headers
make: *** [configure-gdb] Error 1

Obviously it wants tcl/tk but the question is, is there any configure option
to make it NOT want tcl/tk?  If not, then shouldn't the gdb module in cvs be
updated to include the tcl/tk subdirs?

cheers,

Kris


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

* Re: problem with building head branch gdb
  2003-01-14 19:44 problem with building head branch gdb Kris Warkentin
@ 2003-01-14 20:01 ` Daniel Jacobowitz
  2003-01-14 20:16   ` Kris Warkentin
  0 siblings, 1 reply; 7+ messages in thread
From: Daniel Jacobowitz @ 2003-01-14 20:01 UTC (permalink / raw)
  To: gdb

On Tue, Jan 14, 2003 at 02:44:24PM -0500, Kris Warkentin wrote:
> When trying to build the head branch of gdb on Cygwin I keep getting this
> error in the gdb subdir:
> 
> checking for Tcl private headers. dir=unix... checking for tclInt.h... no
> configure: error: Can't find Tcl private headers
> make: *** [configure-gdb] Error 1
> 
> Obviously it wants tcl/tk but the question is, is there any configure option
> to make it NOT want tcl/tk?  If not, then shouldn't the gdb module in cvs be
> updated to include the tcl/tk subdirs?

What directory is configuring when you get this?

-- 
Daniel Jacobowitz
MontaVista Software                         Debian GNU/Linux Developer


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

* Re: problem with building head branch gdb
  2003-01-14 20:01 ` Daniel Jacobowitz
@ 2003-01-14 20:16   ` Kris Warkentin
  2003-01-14 20:20     ` Daniel Jacobowitz
  0 siblings, 1 reply; 7+ messages in thread
From: Kris Warkentin @ 2003-01-14 20:16 UTC (permalink / raw)
  To: Daniel Jacobowitz, gdb

> On Tue, Jan 14, 2003 at 02:44:24PM -0500, Kris Warkentin wrote:
> > When trying to build the head branch of gdb on Cygwin I keep getting
this
> > error in the gdb subdir:
> >
> > checking for Tcl private headers. dir=unix... checking for tclInt.h...
no
> > configure: error: Can't find Tcl private headers
> > make: *** [configure-gdb] Error 1
> >
> > Obviously it wants tcl/tk but the question is, is there any configure
option
> > to make it NOT want tcl/tk?  If not, then shouldn't the gdb module in
cvs be
> > updated to include the tcl/tk subdirs?
>
> What directory is configuring when you get this?
>
gdb


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

* Re: problem with building head branch gdb
  2003-01-14 20:16   ` Kris Warkentin
@ 2003-01-14 20:20     ` Daniel Jacobowitz
  2003-01-14 20:27       ` Kris Warkentin
  0 siblings, 1 reply; 7+ messages in thread
From: Daniel Jacobowitz @ 2003-01-14 20:20 UTC (permalink / raw)
  To: gdb

On Tue, Jan 14, 2003 at 03:16:25PM -0500, Kris Warkentin wrote:
> > On Tue, Jan 14, 2003 at 02:44:24PM -0500, Kris Warkentin wrote:
> > > When trying to build the head branch of gdb on Cygwin I keep getting
> this
> > > error in the gdb subdir:
> > >
> > > checking for Tcl private headers. dir=unix... checking for tclInt.h...
> no
> > > configure: error: Can't find Tcl private headers
> > > make: *** [configure-gdb] Error 1
> > >
> > > Obviously it wants tcl/tk but the question is, is there any configure
> option
> > > to make it NOT want tcl/tk?  If not, then shouldn't the gdb module in
> cvs be
> > > updated to include the tcl/tk subdirs?
> >
> > What directory is configuring when you get this?
> >
> gdb

Try --disable-gdbtk.  You probably updated using cvs up -dP, which got
you the gdb/gdbtk/ directory that's ordinarily missing in the GDB CVS
module; that's how I usually hit this problem.

-- 
Daniel Jacobowitz
MontaVista Software                         Debian GNU/Linux Developer


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

* Re: problem with building head branch gdb
  2003-01-14 20:20     ` Daniel Jacobowitz
@ 2003-01-14 20:27       ` Kris Warkentin
  0 siblings, 0 replies; 7+ messages in thread
From: Kris Warkentin @ 2003-01-14 20:27 UTC (permalink / raw)
  To: Daniel Jacobowitz, gdb

> Try --disable-gdbtk.  You probably updated using cvs up -dP, which got
> you the gdb/gdbtk/ directory that's ordinarily missing in the GDB CVS
> module; that's how I usually hit this problem.

That one did the trick.  I don't, however, have the gdbtk directory checked
out.  I'm thinking it might be an error in configure because I only checked
out gdb.  Michael C suggested checking out gdb+dejagnu which is probably
what most people do which might explain why no-one had seen it yet.

Thanks,

Kris


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

* Re: problem with building head branch gdb
  2003-01-14 20:13 Michael Elizabeth Chastain
@ 2003-01-14 20:26 ` Kris Warkentin
  0 siblings, 0 replies; 7+ messages in thread
From: Kris Warkentin @ 2003-01-14 20:26 UTC (permalink / raw)
  To: Michael Elizabeth Chastain, gdb

> I'm not a "configure" guru but a quick browse indicates
> that there is a "--no-tcl" option.
>
> If you check out "gdb+dejagnu" then you will get tcl and tk subdirs
> in dejagnu.
>
> Hope this helps,

Nope.  --no-tcl gives me:

configure: error: --no-tcl: invalid option; use --help to show usage

--disable-tcl doesn't work either: the configure succeeds but I get the same
error.

Kris



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

* Re: problem with building head branch gdb
@ 2003-01-14 20:13 Michael Elizabeth Chastain
  2003-01-14 20:26 ` Kris Warkentin
  0 siblings, 1 reply; 7+ messages in thread
From: Michael Elizabeth Chastain @ 2003-01-14 20:13 UTC (permalink / raw)
  To: gdb, kewarken

I'm not a "configure" guru but a quick browse indicates
that there is a "--no-tcl" option.

If you check out "gdb+dejagnu" then you will get tcl and tk subdirs
in dejagnu.

Hope this helps,

Michael C


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

end of thread, other threads:[~2003-01-14 20:27 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-01-14 19:44 problem with building head branch gdb Kris Warkentin
2003-01-14 20:01 ` Daniel Jacobowitz
2003-01-14 20:16   ` Kris Warkentin
2003-01-14 20:20     ` Daniel Jacobowitz
2003-01-14 20:27       ` Kris Warkentin
2003-01-14 20:13 Michael Elizabeth Chastain
2003-01-14 20:26 ` Kris Warkentin

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