summaryrefslogtreecommitdiff
path: root/src/unexmacosx.c
diff options
context:
space:
mode:
authorSamuel Bronson <naesten@gmail.com>2014-09-17 12:58:31 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2014-09-17 12:58:31 -0700
commit5db525e40007b1f0e7f8f6cee070c515c7f6ff11 (patch)
tree9d2ec01b4cfc83fda6605719099c8f60d9af11de /src/unexmacosx.c
parent9356a87288edd2380ce27cd9775046675cd26f8c (diff)
downloademacs-5db525e40007b1f0e7f8f6cee070c515c7f6ff11.tar.gz
* unexmacosx.c (copy_data_segment): Port to GCC 4.6+.
Fixes: debbugs:9927
Diffstat (limited to 'src/unexmacosx.c')
-rw-r--r--src/unexmacosx.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/unexmacosx.c b/src/unexmacosx.c
index ae34237a66b..940cbfacb10 100644
--- a/src/unexmacosx.c
+++ b/src/unexmacosx.c
@@ -879,6 +879,27 @@ copy_data_segment (struct load_command *lc)
if (!unexec_write (header_offset, sectp, sizeof (struct section)))
unexec_error ("cannot write section %.16s's header", sectp->sectname);
}
+ else if (strncmp (sectp->sectname, "__bss", 5) == 0
+ || strncmp (sectp->sectname, "__pu_bss", 8) == 0)
+ {
+ sectp->flags = S_REGULAR;
+
+ /* These sections are produced by GCC 4.6+.
+
+ FIXME: We possibly ought to clear uninitialized local
+ variables in statically linked libraries like for
+ SECT_BSS (__bss) above, but setting up the markers we
+ need in lastfile.c would be rather messy. See
+ darwin_output_aligned_bss () in gcc/config/darwin.c for
+ the root of the problem, keeping in mind that the
+ sections are numbered by their alignment in GCC 4.6, but
+ by log2(alignment) in GCC 4.7. */
+
+ if (!unexec_write (sectp->offset, (void *) sectp->addr, sectp->size))
+ unexec_error ("cannot copy section %.16s", sectp->sectname);
+ if (!unexec_write (header_offset, sectp, sizeof (struct section)))
+ unexec_error ("cannot write section %.16s's header", sectp->sectname);
+ }
else if (strncmp (sectp->sectname, "__la_symbol_ptr", 16) == 0
|| strncmp (sectp->sectname, "__nl_symbol_ptr", 16) == 0
|| strncmp (sectp->sectname, "__got", 16) == 0
@@ -890,6 +911,7 @@ copy_data_segment (struct load_command *lc)
|| strncmp (sectp->sectname, "__program_vars", 16) == 0
|| strncmp (sectp->sectname, "__mod_init_func", 16) == 0
|| strncmp (sectp->sectname, "__mod_term_func", 16) == 0
+ || strncmp (sectp->sectname, "__static_data", 16) == 0
|| strncmp (sectp->sectname, "__objc_", 7) == 0)
{
if (!unexec_copy (sectp->offset, old_file_offset, sectp->size))