Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* remote-sim.h
@ 2011-10-31 23:24 Mike Stump
  2011-11-01  3:55 ` remote-sim.h Mike Frysinger
  2011-11-06 17:35 ` remote-sim.h Mike Frysinger
  0 siblings, 2 replies; 8+ messages in thread
From: Mike Stump @ 2011-10-31 23:24 UTC (permalink / raw)
  To: gdb-patches

So, gdb includes remote-sim.h, but CORE_ADDR_TYPE isn't defined by the time the header is included.  On my platform, CORE_ADDR_TYPE is defined in sim-main.h.  I checked and the BFD bits are defined, so, I just use them as a fallback, works for my purposes.  I don't think this is the cleanest solution, so I don't think this is the right patch for the tree.  So, I kinda want to include sim-basics.h before this point, as that file, the sim people decided, would ensure that CORE_ADDR_TYPE is defined.  So, we can include that file here?  The problem is, there is no -I for any of the sim things, and that header will want to include things like cconfig.h...  Ick.  I kinda want the api to just use a fixed type that is big enough for any of the bfd targets and be done with it.  Thoughts?

Index: include/gdb/remote-sim.h
===================================================================
--- include/gdb/remote-sim.h    (revision 1866)
+++ include/gdb/remote-sim.h    (working copy)
@@ -32,8 +32,12 @@ extern "C" {
    gdb does (unsigned int - from defs.h).  */
 
 #ifndef CORE_ADDR_TYPE
+#if BFD_ARCH_SIZE <= 32
 typedef unsigned int SIM_ADDR;
 #else
+typedef unsigned long SIM_ADDR;
+#endif
+#else
 typedef CORE_ADDR_TYPE SIM_ADDR;
 #endif
 


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

end of thread, other threads:[~2011-11-06 18:31 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-10-31 23:24 remote-sim.h Mike Stump
2011-11-01  3:55 ` remote-sim.h Mike Frysinger
2011-11-01  5:38   ` remote-sim.h Mike Stump
2011-11-01 18:55     ` remote-sim.h Tom Tromey
2011-11-01 19:50       ` remote-sim.h Mike Stump
2011-11-02 17:02         ` remote-sim.h Tom Tromey
2011-11-06 17:35 ` remote-sim.h Mike Frysinger
2011-11-06 18:31   ` remote-sim.h Mike Stump

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