2013-01-19 22:41:55 +00:00
|
|
|
Index: gdb-7.5.50.20130118/gdb/gdb_bfd.c
|
2011-07-22 22:41:56 +00:00
|
|
|
===================================================================
|
2013-01-19 22:41:55 +00:00
|
|
|
--- gdb-7.5.50.20130118.orig/gdb/gdb_bfd.c 2013-01-18 23:11:18.158718709 +0100
|
|
|
|
+++ gdb-7.5.50.20130118/gdb/gdb_bfd.c 2013-01-18 23:12:06.841787893 +0100
|
|
|
|
@@ -27,12 +27,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
|
|
|
|
|
2012-07-03 18:54:05 +00:00
|
|
|
/* An object of this type is stored in the section's user data when
|
|
|
|
mapping a section. */
|
2013-01-19 22:41:55 +00:00
|
|
|
@@ -205,6 +207,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)
|
|
|
|
{
|
2013-01-19 22:41:55 +00:00
|
|
|
@@ -215,6 +218,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);
|
|
|
|
}
|
|
|
|
}
|
2013-01-19 22:41:55 +00:00
|
|
|
@@ -360,6 +364,7 @@ gdb_bfd_map_section (asection *sectp, bf
|
|
|
|
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))
|
|
|
|
{
|
|
|
|
@@ -394,6 +399,7 @@ gdb_bfd_map_section (asection *sectp, bf
|
|
|
|
}
|
|
|
|
}
|
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. */
|