Mirror of the gdb mailing list
 help / color / mirror / Atom feed
* [5.1] HP/UX 11.0 or 10.20.  Ha!
@ 2001-10-14 16:03 Andrew Cagney
  2001-10-14 22:09 ` Daniel Jacobowitz
  2001-10-15 10:29 ` Andrew Cagney
  0 siblings, 2 replies; 4+ messages in thread
From: Andrew Cagney @ 2001-10-14 16:03 UTC (permalink / raw)
  To: gdb

Put simply I've had no luck.

10.20, configured with 'CC=cc -Ae' ..../configure dies in libiberty:

cc -Ae -c -DHAVE_CONFIG_H -g -I. 
-I/es/scratch/cagney/51/gdb/src/libiberty/../include 
/es/scratch/cagney/51/gdb/src/libiberty/regex.c
cc: "/es/scratch/cagney/51/gdb/src/libiberty/regex.c", line 305: error 
1713: Illegal redeclaration for identifier "uintptr_t".

11.00, configured with ....../configure dies:

finding the maximum length of command line arguments... 
/es/scratch/cagney/51/gdb/src/opcodes/../ltconfig[790]: There is not 
enough memory available now.
configure: error: libtool configure failed
Configure in 
/es/scratch/cagney/51/gdb/behemoth-hppa64-hp-hpux11.00/opcodes failed, 
exiting.

Andrew


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

* Re: [5.1] HP/UX 11.0 or 10.20.  Ha!
  2001-10-14 16:03 [5.1] HP/UX 11.0 or 10.20. Ha! Andrew Cagney
@ 2001-10-14 22:09 ` Daniel Jacobowitz
  2001-10-15 19:36   ` Andrew Cagney
  2001-10-15 10:29 ` Andrew Cagney
  1 sibling, 1 reply; 4+ messages in thread
From: Daniel Jacobowitz @ 2001-10-14 22:09 UTC (permalink / raw)
  To: gdb; +Cc: aoliva

On Sun, Oct 14, 2001 at 07:03:19PM -0400, Andrew Cagney wrote:
> Put simply I've had no luck.
> 
> 10.20, configured with 'CC=cc -Ae' ..../configure dies in libiberty:
> 
> cc -Ae -c -DHAVE_CONFIG_H -g -I. 
> -I/es/scratch/cagney/51/gdb/src/libiberty/../include 
> /es/scratch/cagney/51/gdb/src/libiberty/regex.c
> cc: "/es/scratch/cagney/51/gdb/src/libiberty/regex.c", line 305: error 
> 1713: Illegal redeclaration for identifier "uintptr_t".
> 
> 11.00, configured with ....../configure dies:
> 
> finding the maximum length of command line arguments... 
> /es/scratch/cagney/51/gdb/src/opcodes/../ltconfig[790]: There is not 
> enough memory available now.
> configure: error: libtool configure failed
> Configure in 
> /es/scratch/cagney/51/gdb/behemoth-hppa64-hp-hpux11.00/opcodes failed, 
> exiting.

I'm fairly certain that both of these were fixed recently; at the
least, both look quite familiar to me from the GCC lists :)

I don't immediately see the solutions in the changelog for regex.c, so
maybe it was never fixed, only reported.  The libtool problem is fixed
by:

2001-07-21  Michael Chastain  <chastain@redhat.com>
* ltconfig: Set max_cmd_len to a maximum of 512Kb, as it seems some
HPUX 11.0 systems have trouble with 1MB.  Mark as gcc-local.
* ltmain.sh: Mark as gcc-local.

I'm almost entirely sure that upstream libtool has a different fix for
this now, as I don't think Alexandre Oliva would have let it get
checked in otherwise :).  Alexandre, am I right?

-- 
Daniel Jacobowitz                           Carnegie Mellon University
MontaVista Software                         Debian GNU/Linux Developer


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

* Re: [5.1] HP/UX 11.0 or 10.20.  Ha!
  2001-10-14 16:03 [5.1] HP/UX 11.0 or 10.20. Ha! Andrew Cagney
  2001-10-14 22:09 ` Daniel Jacobowitz
@ 2001-10-15 10:29 ` Andrew Cagney
  1 sibling, 0 replies; 4+ messages in thread
From: Andrew Cagney @ 2001-10-15 10:29 UTC (permalink / raw)
  To: Andrew Cagney; +Cc: gdb

> Put simply I've had no luck.
> 
> 10.20, configured with 'CC=cc -Ae' ..../configure dies in libiberty:
> 
> cc -Ae -c -DHAVE_CONFIG_H -g -I. -I/es/scratch/cagney/51/gdb/src/libiberty/../include /es/scratch/cagney/51/gdb/src/libiberty/regex.c
> cc: "/es/scratch/cagney/51/gdb/src/libiberty/regex.c", line 305: error 1713: Illegal redeclaration for identifier "uintptr_t".
> 
> 11.00, configured with ....../configure dies:
> 
> finding the maximum length of command line arguments... /es/scratch/cagney/51/gdb/src/opcodes/../ltconfig[790]: There is not enough memory available now.
> configure: error: libtool configure failed
> Configure in /es/scratch/cagney/51/gdb/behemoth-hppa64-hp-hpux11.00/opcodes failed, exiting.

On a brighter note (?), it did build using GCC on 10.20 but (consistent 
with  rbrowns report) it didn't work.

Andrew



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

* Re: [5.1] HP/UX 11.0 or 10.20.  Ha!
  2001-10-14 22:09 ` Daniel Jacobowitz
@ 2001-10-15 19:36   ` Andrew Cagney
  0 siblings, 0 replies; 4+ messages in thread
From: Andrew Cagney @ 2001-10-15 19:36 UTC (permalink / raw)
  To: Daniel Jacobowitz; +Cc: gdb, aoliva

> 
> I'm fairly certain that both of these were fixed recently; at the
> least, both look quite familiar to me from the GCC lists  [:)] 
> 
> I don't immediately see the solutions in the changelog for regex.c, so
> maybe it was never fixed, only reported.  The libtool problem is fixed
> by:
> 
> 2001-07-21  Michael Chastain  <chastain@redhat.com>
> * ltconfig: Set max_cmd_len to a maximum of 512Kb, as it seems some
> HPUX 11.0 systems have trouble with 1MB.  Mark as gcc-local.
> * ltmain.sh: Mark as gcc-local.
> 
> I'm almost entirely sure that upstream libtool has a different fix for
> this now, as I don't think Alexandre Oliva would have let it get
> checked in otherwise  [:)] .  Alexandre, am I right?

Thanks for the info.  A quick check of the trunk on 11.00 shows the 
ltconfig problem still occures.

Andrew



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

end of thread, other threads:[~2001-10-15 19:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-10-14 16:03 [5.1] HP/UX 11.0 or 10.20. Ha! Andrew Cagney
2001-10-14 22:09 ` Daniel Jacobowitz
2001-10-15 19:36   ` Andrew Cagney
2001-10-15 10:29 ` Andrew Cagney

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