Mirror of the gdb mailing list
 help / color / mirror / Atom feed
* Reference to old glob directory in gdb 6.5 makefile
@ 2007-01-17 22:48 Ian C White
  2007-01-20  4:37 ` Daniel Jacobowitz
  0 siblings, 1 reply; 6+ messages in thread
From: Ian C White @ 2007-01-17 22:48 UTC (permalink / raw)
  To: gdb

I'm trying to build gdb 6.5 on an ibm Power 5 running AIX 5.3 and get the 
following error: 

config.status: creating glob/Makefile
config.status: error: coannot find input file: glob/Makefile.in
make[2]: *** [stamp-h] Error 1
make[2]: Leaving directory '~/gdb-6.5/gdb'

From the thread referenced in the link below, I understand that I'm not 
the only one to encounter this problem, which seems to relate to version 
control. 

http://sourceware.org/ml/gdb/2006-07/msg00003.html

Many thanks, 

Ian White
Raytheon Integrated Defense Systems 
ian_c_white@raytheon.com



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

* Re: Reference to old glob directory in gdb 6.5 makefile
  2007-01-17 22:48 Reference to old glob directory in gdb 6.5 makefile Ian C White
@ 2007-01-20  4:37 ` Daniel Jacobowitz
  2007-01-22 18:08   ` Ian C White
  0 siblings, 1 reply; 6+ messages in thread
From: Daniel Jacobowitz @ 2007-01-20  4:37 UTC (permalink / raw)
  To: Ian C White; +Cc: gdb

On Wed, Jan 17, 2007 at 05:48:26PM -0500, Ian C White wrote:
> I'm trying to build gdb 6.5 on an ibm Power 5 running AIX 5.3 and get the 
> following error: 
> 
> config.status: creating glob/Makefile
> config.status: error: coannot find input file: glob/Makefile.in
> make[2]: *** [stamp-h] Error 1
> make[2]: Leaving directory '~/gdb-6.5/gdb'
> 
> From the thread referenced in the link below, I understand that I'm not 
> the only one to encounter this problem, which seems to relate to version 
> control. 

No - no one seems to know where it comes from or how.  Can you figure
out what in your configure script causes it to create glob/Makefile?

-- 
Daniel Jacobowitz
CodeSourcery


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

* Re: Reference to old glob directory in gdb 6.5 makefile
  2007-01-20  4:37 ` Daniel Jacobowitz
@ 2007-01-22 18:08   ` Ian C White
  2007-01-22 18:20     ` Daniel Jacobowitz
  0 siblings, 1 reply; 6+ messages in thread
From: Ian C White @ 2007-01-22 18:08 UTC (permalink / raw)
  To: Daniel Jacobowitz; +Cc: gdb

I solved this issue by taking the gdb 6.6 source from sourceware.org. I 
got the other source from 

http://aixpdslib.seas.ucla.edu

Now I've built gdb and, when I run a program in gdb, I get the following 
message:

[tcsetpgrp failed in terminal_inferior: Not owner]
warning: no shared library support for this OS / ABI
Warning:
Cannot insert breakpoint 1.
Error accessing memory address 0x1a968: I/O error. 

osabi is set to "auto", which means "AIX". The tcsetpgrp error is the 
result of attach_flag not being set. 

What is the current state of support for aix5 on powerpc? Is this a gdb 
issue or a bfd issue? 

Many thanks, 

--
Ian White
Raytheon





Daniel Jacobowitz <drow@false.org> 
01/19/2007 11:37 PM

To
Ian C White <Ian_C_White@raytheon.com>
cc
gdb@sourceware.org
Subject
Re: Reference to old glob directory in gdb 6.5 makefile






On Wed, Jan 17, 2007 at 05:48:26PM -0500, Ian C White wrote:
> I'm trying to build gdb 6.5 on an ibm Power 5 running AIX 5.3 and get 
the 
> following error: 
> 
> config.status: creating glob/Makefile
> config.status: error: coannot find input file: glob/Makefile.in
> make[2]: *** [stamp-h] Error 1
> make[2]: Leaving directory '~/gdb-6.5/gdb'
> 
> From the thread referenced in the link below, I understand that I'm not 
> the only one to encounter this problem, which seems to relate to version 

> control. 

No - no one seems to know where it comes from or how.  Can you figure
out what in your configure script causes it to create glob/Makefile?

-- 
Daniel Jacobowitz
CodeSourcery



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

* Re: Reference to old glob directory in gdb 6.5 makefile
  2007-01-22 18:08   ` Ian C White
@ 2007-01-22 18:20     ` Daniel Jacobowitz
  2007-01-22 18:34       ` Support for AIX5 on PowerPC Ian C White
  2007-01-26 14:03       ` Reference to old glob directory in gdb 6.5 makefile Joel Brobecker
  0 siblings, 2 replies; 6+ messages in thread
From: Daniel Jacobowitz @ 2007-01-22 18:20 UTC (permalink / raw)
  To: Ian C White; +Cc: gdb

On Mon, Jan 22, 2007 at 01:08:00PM -0500, Ian C White wrote:
> I solved this issue by taking the gdb 6.6 source from sourceware.org. I 
> got the other source from 
> 
> http://aixpdslib.seas.ucla.edu

Interesting.  I will recommend people take sources directly from
sourceware.org / gnu.org the next time this is reported.

> Now I've built gdb and, when I run a program in gdb, I get the following 
> message:
> 
> [tcsetpgrp failed in terminal_inferior: Not owner]
> warning: no shared library support for this OS / ABI
> Warning:
> Cannot insert breakpoint 1.
> Error accessing memory address 0x1a968: I/O error. 
> 
> osabi is set to "auto", which means "AIX". The tcsetpgrp error is the 
> result of attach_flag not being set. 
> 
> What is the current state of support for aix5 on powerpc? Is this a gdb 
> issue or a bfd issue? 

These I am afraid I don't know.  Joel tests on AIX; last I remember, it
was a bit bad, but not this broken.

-- 
Daniel Jacobowitz
CodeSourcery


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

* Support for AIX5 on PowerPC
  2007-01-22 18:20     ` Daniel Jacobowitz
@ 2007-01-22 18:34       ` Ian C White
  2007-01-26 14:03       ` Reference to old glob directory in gdb 6.5 makefile Joel Brobecker
  1 sibling, 0 replies; 6+ messages in thread
From: Ian C White @ 2007-01-22 18:34 UTC (permalink / raw)
  To: gdb

I'm looking for information regarding the error reported below. 

Many thanks, 

Ian White
Raytheon


> Now I've built gdb and, when I run a program in gdb, I get the following 

> message:
> 
> [tcsetpgrp failed in terminal_inferior: Not owner]
> warning: no shared library support for this OS / ABI
> Warning:
> Cannot insert breakpoint 1.
> Error accessing memory address 0x1a968: I/O error. 
> 
> osabi is set to "auto", which means "AIX". The tcsetpgrp error is the 
> result of attach_flag not being set. 
> 
> What is the current state of support for aix5 on powerpc? Is this a gdb 
> issue or a bfd issue? 
>
> These I am afraid I don't know.  Joel tests on AIX; last I remember, it
> was a bit bad, but not this broken.
> 
> -- 
> Daniel Jacobowitz
> CodeSourcery


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

* Re: Reference to old glob directory in gdb 6.5 makefile
  2007-01-22 18:20     ` Daniel Jacobowitz
  2007-01-22 18:34       ` Support for AIX5 on PowerPC Ian C White
@ 2007-01-26 14:03       ` Joel Brobecker
  1 sibling, 0 replies; 6+ messages in thread
From: Joel Brobecker @ 2007-01-26 14:03 UTC (permalink / raw)
  To: Ian C White, gdb

> > [tcsetpgrp failed in terminal_inferior: Not owner]
> > warning: no shared library support for this OS / ABI
> > Warning:
> > Cannot insert breakpoint 1.
> > Error accessing memory address 0x1a968: I/O error. 
> > 
> > osabi is set to "auto", which means "AIX". The tcsetpgrp error is the 
> > result of attach_flag not being set. 
> > 
> > What is the current state of support for aix5 on powerpc? Is this a gdb 
> > issue or a bfd issue? 
> 
> These I am afraid I don't know.  Joel tests on AIX; last I remember, it
> was a bit bad, but not this broken.

I don't know either. I just reran the testsuite on AIX. The results
are not up to par with the better ones, but it's still OK. I searched
the testsuite output (gdb.log), and found no occurrence of this problem.

-- 
Joel


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

end of thread, other threads:[~2007-01-26 14:03 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-01-17 22:48 Reference to old glob directory in gdb 6.5 makefile Ian C White
2007-01-20  4:37 ` Daniel Jacobowitz
2007-01-22 18:08   ` Ian C White
2007-01-22 18:20     ` Daniel Jacobowitz
2007-01-22 18:34       ` Support for AIX5 on PowerPC Ian C White
2007-01-26 14:03       ` Reference to old glob directory in gdb 6.5 makefile Joel Brobecker

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