2014-02-07 18:38:14 +00:00
|
|
|
Index: gdb-7.6.90.20140127/gdb/gdb_bfd.c
|
2011-07-22 22:41:56 +00:00
|
|
|
===================================================================
|
2014-02-07 18:38:14 +00:00
|
|
|
--- gdb-7.6.90.20140127.orig/gdb/gdb_bfd.c 2014-02-06 17:39:46.370096290 +0100
|
|
|
|
+++ gdb-7.6.90.20140127/gdb/gdb_bfd.c 2014-02-06 17:40:14.996127247 +0100
|
|
|
|
@@ -29,12 +29,14 @@
|
2011-03-30 12:08:36 +00:00
|
|
|
#ifdef HAVE_ZLIB_H
|
|
|
|
#include <zlib.h>
|
|
|
|
#endif
|
|
|
|
+#ifndef __sparc__
|
|
|
|
#ifdef HAVE_MMAP
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#ifndef MAP_FAILED
|
|
|
|
#define MAP_FAILED ((void *) -1)
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
+#endif
|
|
|
|
|
2014-02-07 18:38:14 +00:00
|
|
|
typedef bfd *bfdp;
|
|
|
|
DEF_VEC_P (bfdp);
|
|
|
|
@@ -210,6 +212,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)
|
|
|
|
{
|
2014-02-07 18:38:14 +00:00
|
|
|
@@ -220,6 +223,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);
|
|
|
|
}
|
|
|
|
}
|
2014-02-07 18:38:14 +00:00
|
|
|
@@ -371,6 +375,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))
|
|
|
|
{
|
2014-02-07 18:38:14 +00:00
|
|
|
@@ -405,6 +410,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. */
|