2015-05-31 18:47:21 +00:00
|
|
|
Index: gdb-7.9.50.20150520/gdb/gdb_bfd.c
|
2011-07-22 22:41:56 +00:00
|
|
|
===================================================================
|
2015-05-31 18:47:21 +00:00
|
|
|
--- gdb-7.9.50.20150520.orig/gdb/gdb_bfd.c 2015-05-31 17:02:57.742303086 +0200
|
|
|
|
+++ gdb-7.9.50.20150520/gdb/gdb_bfd.c 2015-05-31 17:03:20.145444480 +0200
|
|
|
|
@@ -24,12 +24,14 @@
|
|
|
|
#include "hashtab.h"
|
|
|
|
#include "filestuff.h"
|
|
|
|
#include "vec.h"
|
2011-03-30 12:08:36 +00:00
|
|
|
+#ifndef __sparc__
|
|
|
|
#ifdef HAVE_MMAP
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#ifndef MAP_FAILED
|
|
|
|
#define MAP_FAILED ((void *) -1)
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
+#endif
|
2015-05-31 18:47:21 +00:00
|
|
|
#include "target.h"
|
|
|
|
#include "gdb/fileio.h"
|
2011-03-30 12:08:36 +00:00
|
|
|
|
2015-05-31 18:47:21 +00:00
|
|
|
@@ -408,6 +410,7 @@ free_one_bfd_section (bfd *abfd, asectio
|
2011-03-30 12:08:36 +00:00
|
|
|
|
2012-07-03 18:54:05 +00:00
|
|
|
if (sect != NULL && sect->data != NULL)
|
|
|
|
{
|
2011-03-30 12:08:36 +00:00
|
|
|
+#ifndef __sparc__
|
|
|
|
#ifdef HAVE_MMAP
|
2012-07-03 18:54:05 +00:00
|
|
|
if (sect->map_addr != NULL)
|
|
|
|
{
|
2015-05-31 18:47:21 +00:00
|
|
|
@@ -418,6 +421,7 @@ free_one_bfd_section (bfd *abfd, asectio
|
2011-03-30 12:08:36 +00:00
|
|
|
}
|
2012-07-03 18:54:05 +00:00
|
|
|
else
|
2011-03-30 12:08:36 +00:00
|
|
|
#endif
|
|
|
|
+#endif
|
2012-07-03 18:54:05 +00:00
|
|
|
xfree (sect->data);
|
|
|
|
}
|
|
|
|
}
|
2015-05-31 18:47:21 +00:00
|
|
|
@@ -569,6 +573,7 @@ gdb_bfd_map_section (asection *sectp, bf
|
2013-01-19 22:41:55 +00:00
|
|
|
if (descriptor->data != NULL)
|
|
|
|
goto done;
|
2011-03-30 12:08:36 +00:00
|
|
|
|
|
|
|
+#ifndef __sparc__
|
|
|
|
#ifdef HAVE_MMAP
|
2013-01-19 22:41:55 +00:00
|
|
|
if (!bfd_is_section_compressed (abfd, sectp))
|
|
|
|
{
|
2015-05-31 18:47:21 +00:00
|
|
|
@@ -603,6 +608,7 @@ gdb_bfd_map_section (asection *sectp, bf
|
2013-01-19 22:41:55 +00:00
|
|
|
}
|
|
|
|
}
|
2012-07-03 18:54:05 +00:00
|
|
|
#endif /* HAVE_MMAP */
|
2011-03-30 12:08:36 +00:00
|
|
|
+#endif
|
2012-07-03 18:54:05 +00:00
|
|
|
|
2013-01-19 22:41:55 +00:00
|
|
|
/* Handle compressed sections, or ordinary uncompressed sections in
|
|
|
|
the no-mmap case. */
|