/* * @(#) $Id: armelf.ld,v 1.6 2003/07/01 15:59:15 honda Exp $ */ OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm","elf32-littlearm") OUTPUT_ARCH(arm) PROVIDE(hardware_init_hook = 0); PROVIDE(software_init_hook = 0); PROVIDE(software_term_hook = 0); SECTIONS { . = 0x00 ; .vector : { *(.vector) } .text : { __text = . ; *(.text) } _etext = . ; PROVIDE (etext = .) ; .rodata : { *(.rodata) } . = ALIGN(4); __idata_start = . ; .data : AT(__idata_start) { __data_start = . ; *(.data) } .eh_frame : {KEEP(*(.eh_frame))} .gcc_except_table : { *(.gcc_except_table) } .ctors : { PROVIDE(__CTOR_BEGIN__ = .); KEEP (*(SORT(.ctors.*))) KEEP (*(.ctors)) PROVIDE(__CTOR_END__ = .); } . = ALIGN(4); .dtors : { PROVIDE(__DTOR_BEGIN__ = .); KEEP (*(SORT(.dtors.*))) KEEP (*(.dtors)) PROVIDE(__DTOR_END__ = .); } __idata_end = __idata_start + SIZEOF(.data); _edata = . ; PROVIDE (edata = .); . = ALIGN(4); __bss_start = . ; .bss : { *(.bss) *(COMMON) } _end = . ; __bss_end = .; PROVIDE (end = .) ; .comment 0 : { *(.comment) } .debug 0 : { *(.debug) } .line 0 : { *(.line) } .debug_srcinfo 0 : { *(.debug_srcinfo) } .debug_sfnames 0 : { *(.debug_sfnames) } .debug_aranges 0 : { *(.debug_aranges) } .debug_pubnames 0 : { *(.debug_pubnames) } }