Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* conflicting types in jv-lang.{c,h} (AIX 4.3.2 and gdb-4.17.87)
@ 1999-03-26 19:58 Johanna Svenningsson
  1999-03-31 16:09 ` Stan Shebs
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Johanna Svenningsson @ 1999-03-26 19:58 UTC (permalink / raw)
  To: gdb-patches

IBM xlc refuses to compile jv-lang.c unless something similar to this
is done...

Regards,
/Johanna

1999-03-27	Johanna Svenningsson	<mea@nada.kth.se>

	* jv-lang.h: changed type of dynamics_objfile to static




*** gdb/jv-lang.h~      Thu Mar 25 04:37:22 1999
--- gdb/jv-lang.h       Sat Mar 27 04:44:38 1999
***************
*** 39,45 ****
  /* This objfile contains symtabs that have been dynamically created
     to record dynamically loaded Java classes and dynamically
     compiled java methods. */
! extern struct objfile *dynamics_objfile;
  
  extern int
  java_val_print PARAMS ((struct type *, char *, int, CORE_ADDR, GDB_FILE *, int, int,
--- 39,45 ----
  /* This objfile contains symtabs that have been dynamically created
     to record dynamically loaded Java classes and dynamically
     compiled java methods. */
! static struct objfile *dynamics_objfile;
  
  extern int
  java_val_print PARAMS ((struct type *, char *, int, CORE_ADDR, GDB_FILE *, int, int,


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

* Re: conflicting types in jv-lang.{c,h} (AIX 4.3.2 and gdb-4.17.87)
  1999-04-01  0:00 ` Per Bothner
@ 1999-03-27  9:04   ` Per Bothner
  0 siblings, 0 replies; 6+ messages in thread
From: Per Bothner @ 1999-03-27  9:04 UTC (permalink / raw)
  To: gdb-patches

Thanks.  Actually, I think it is better to just remove the declaration
of dynamics_objfile in jv-lang.h.

	--Per Bothner
Cygnus Solutions     bothner@cygnus.com     http://www.cygnus.com/~bothner



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

* Re: conflicting types in jv-lang.{c,h} (AIX 4.3.2 and gdb-4.17.87)
  1999-03-26 19:58 conflicting types in jv-lang.{c,h} (AIX 4.3.2 and gdb-4.17.87) Johanna Svenningsson
@ 1999-03-31 16:09 ` Stan Shebs
  1999-04-01  0:00   ` Stan Shebs
  1999-04-01  0:00 ` Per Bothner
  1999-04-01  0:00 ` Johanna Svenningsson
  2 siblings, 1 reply; 6+ messages in thread
From: Stan Shebs @ 1999-03-31 16:09 UTC (permalink / raw)
  To: mea; +Cc: gdb-patches, grossman

   From: Johanna Svenningsson <mea@nada.kth.se>
   Date: 27 Mar 1999 05:58:41 +0200

   IBM xlc refuses to compile jv-lang.c unless something similar to this
   is done...

Thanks for the note - I've taken Per's suggestion and whacked the whole
decl, since it's unneeded. -s


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

* Re: conflicting types in jv-lang.{c,h} (AIX 4.3.2 and gdb-4.17.87)
  1999-03-31 16:09 ` Stan Shebs
@ 1999-04-01  0:00   ` Stan Shebs
  0 siblings, 0 replies; 6+ messages in thread
From: Stan Shebs @ 1999-04-01  0:00 UTC (permalink / raw)
  To: mea; +Cc: gdb-patches, grossman

   From: Johanna Svenningsson <mea@nada.kth.se>
   Date: 27 Mar 1999 05:58:41 +0200

   IBM xlc refuses to compile jv-lang.c unless something similar to this
   is done...

Thanks for the note - I've taken Per's suggestion and whacked the whole
decl, since it's unneeded. -s


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

* Re: conflicting types in jv-lang.{c,h} (AIX 4.3.2 and gdb-4.17.87)
  1999-03-26 19:58 conflicting types in jv-lang.{c,h} (AIX 4.3.2 and gdb-4.17.87) Johanna Svenningsson
  1999-03-31 16:09 ` Stan Shebs
@ 1999-04-01  0:00 ` Per Bothner
  1999-03-27  9:04   ` Per Bothner
  1999-04-01  0:00 ` Johanna Svenningsson
  2 siblings, 1 reply; 6+ messages in thread
From: Per Bothner @ 1999-04-01  0:00 UTC (permalink / raw)
  To: gdb-patches

Thanks.  Actually, I think it is better to just remove the declaration
of dynamics_objfile in jv-lang.h.

	--Per Bothner
Cygnus Solutions     bothner@cygnus.com     http://www.cygnus.com/~bothner



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

* conflicting types in jv-lang.{c,h} (AIX 4.3.2 and gdb-4.17.87)
  1999-03-26 19:58 conflicting types in jv-lang.{c,h} (AIX 4.3.2 and gdb-4.17.87) Johanna Svenningsson
  1999-03-31 16:09 ` Stan Shebs
  1999-04-01  0:00 ` Per Bothner
@ 1999-04-01  0:00 ` Johanna Svenningsson
  2 siblings, 0 replies; 6+ messages in thread
From: Johanna Svenningsson @ 1999-04-01  0:00 UTC (permalink / raw)
  To: gdb-patches

IBM xlc refuses to compile jv-lang.c unless something similar to this
is done...

Regards,
/Johanna

1999-03-27	Johanna Svenningsson	<mea@nada.kth.se>

	* jv-lang.h: changed type of dynamics_objfile to static




*** gdb/jv-lang.h~      Thu Mar 25 04:37:22 1999
--- gdb/jv-lang.h       Sat Mar 27 04:44:38 1999
***************
*** 39,45 ****
  /* This objfile contains symtabs that have been dynamically created
     to record dynamically loaded Java classes and dynamically
     compiled java methods. */
! extern struct objfile *dynamics_objfile;
  
  extern int
  java_val_print PARAMS ((struct type *, char *, int, CORE_ADDR, GDB_FILE *, int, int,
--- 39,45 ----
  /* This objfile contains symtabs that have been dynamically created
     to record dynamically loaded Java classes and dynamically
     compiled java methods. */
! static struct objfile *dynamics_objfile;
  
  extern int
  java_val_print PARAMS ((struct type *, char *, int, CORE_ADDR, GDB_FILE *, int, int,


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

end of thread, other threads:[~1999-04-01  0:00 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-03-26 19:58 conflicting types in jv-lang.{c,h} (AIX 4.3.2 and gdb-4.17.87) Johanna Svenningsson
1999-03-31 16:09 ` Stan Shebs
1999-04-01  0:00   ` Stan Shebs
1999-04-01  0:00 ` Per Bothner
1999-03-27  9:04   ` Per Bothner
1999-04-01  0:00 ` Johanna Svenningsson

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