views:

120

answers:

1

In the man page I only found 8, 16 and 32 bits.

+4  A: 

Use the -falign-* options: -falign-functions, -falign-labels, -falign-jumps.

Or, on i386/x86_64, if it's the stack boundary you want to keep aligned, use -mpreferred-stack-boundary=6 (2^6 = 64).

FX
I need allign field in all structs. other is not interested
vitaly.v.ch