This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [patch] coff: fix alignment issues when building on ARM


On Tue, Dec 05, 2006 at 03:52:19PM +0000, Nick Clifton wrote:
> Hi Michael,
> 
> >The issue is the alignment/padding added on ARM, such that the effective 
> >size
> >(as reported by sizeof) is 2 bytes larger than the #define'd sizes.
> 
> Is it possible to provide a test case that demonstrates this please ?
> 
> >This causes
> >invalid coff files to be generated by gas. The attached patch fixed all 
> >problems
> >while building gcc packages for the h8300-hitachi-coff target.
> 
> Built by what compiler ?  On what host machine ?
> 
> >--- binutils-h8300-hms-2.16.1.orig/include/coff/external.h
> >+++ binutils-h8300-hms-2.16.1/include/coff/external.h
> >@@ -50,7 +50,7 @@
> >     char entry[4];	/* entry pt.				*/
> >     char text_start[4];	/* base of text used for this file 	*/
> >     char data_start[4];	/* base of data used for this file 	*/
> >-  }
> >+  } __attribute__((packed))
> > AOUTHDR;
> 

All fields are char []. Why is __attribute__((packed)) needed?


H.J.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]