1OUTPUT_FORMAT(elf32-i386)
2ENTRY(start)
3SECTIONS
4{
5  .text : { *(.text*) }
6  .data : { *(.data.*) }
7  .bss : { *(.bss.*) }
8}
9