From: Jason Molenda Date: Wed, 11 May 1994 01:28:18 +0000 (+0000) Subject: Tue May 10 18:22:06 1994 Jason Molenda (crash@sendai.cygnus.com) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6f9077cdc11936918c8a6b7be2e0bfba3d42b11d;p=binutils-gdb.git Tue May 10 18:22:06 1994 Jason Molenda (crash@sendai.cygnus.com) * objcopy.c (copy_section): Set section size correctly if using interleave. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index f932e4de278..ce0677f1b5b 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,27 @@ +Tue May 10 18:22:06 1994 Jason Molenda (crash@sendai.cygnus.com) + + * objcopy.c (copy_section): Set section size correctly if using + interleave. + +Sat May 7 16:49:36 1994 Steve Chamberlain (sac@cygnus.com) + + * Makefile.in: Add rule for sysinfo.h + +Fri May 6 12:18:33 1994 Steve Chamberlain (sac@cygnus.com) + + * Makefile.in (SRCONV_PROG): Define. + (PROGS): Use $(SRCONV_PROG) too. + +Thu May 5 19:41:43 1994 Ken Raeburn (raeburn@cujo.cygnus.com) + + * Makefile.in (DISTSTUFF): Add sysinfo.c, syslex.c, in case + someone configures with `targets=all'. + (distclean): Remove y.*. + (syslex.o): Depend on sysinfo.h. + (sysinfo.c): Rename y.tab.h to sysinfo.h. + (install-info): Don't try to install into $(infodir)/$(srcdir). + * syslex.l: Include sysinfo.h, not y.tab.h. + Thu May 5 11:50:55 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com) * syslex.l (yywrap): Define as function if not defined as a macro. diff --git a/binutils/objcopy.c b/binutils/objcopy.c index 4572626f3a0..2700207f92f 100644 --- a/binutils/objcopy.c +++ b/binutils/objcopy.c @@ -267,17 +267,6 @@ copy_object (ibfd, obfd) if (osympp != isympp) free (osympp); - /* Allow the BFD backend to copy any private data it understands - from the input BFD to the output BFD. */ - if (!bfd_copy_private_bfd_data (ibfd, obfd)) - { - fprintf (stderr, "%s: %s: error copying private BFD data: %s\n", - program_name, bfd_get_filename (obfd), - bfd_errmsg (bfd_get_error ())); - status = 1; - return; - } - /* bfd mandates that all output sections be created and sizes set before any output is done. Thus, we traverse all sections multiple times. */ bfd_map_over_sections (ibfd, setup_section, (void *) obfd); @@ -328,6 +317,19 @@ copy_object (ibfd, obfd) /* This has to happen after the symbol table has been set. */ bfd_map_over_sections (ibfd, copy_section, (void *) obfd); + + /* Allow the BFD backend to copy any private data it understands + from the input BFD to the output BFD. This is done last to + permit the routine to look at the filtered symbol table, which is + important for the ECOFF code at least. */ + if (!bfd_copy_private_bfd_data (ibfd, obfd)) + { + fprintf (stderr, "%s: %s: error copying private BFD data: %s\n", + program_name, bfd_get_filename (obfd), + bfd_errmsg (bfd_get_error ())); + status = 1; + return; + } } static char * @@ -629,8 +631,13 @@ copy_section (ibfd, isection, obfd) nonfatal (bfd_get_filename (ibfd)); } - if (copy_byte >= 0) - filter_bytes (memhunk, &size); + if (copy_byte >= 0) + { + filter_bytes (memhunk, &size); + /* The section has gotten smaller. */ + if (!bfd_set_section_size (obfd, osection, size)) + nonfatal (bfd_get_filename (obfd)); + } if (!bfd_set_section_contents (obfd, osection, memhunk, (file_ptr) 0, size))