/* Script for keeping GOT in armlet  */
OUTPUT_FORMAT ("elf32-littlearm")
OUTPUT_ARCH ("arm")
ENTRY(vdArmIntelDispatch)

SEARCH_DIR("/usr/arm-palmos/lib");

/* This is a pathetically simple linker script that is only of use for
   building Palm OS 5 armlets. */

SECTIONS
{
    .text 0x00000000 :
    {
        *(.text) *(.rodata) *(.rodata.str1.4)
        *(.glue_7t) *(.glue_7)
    }
    .got : 
    {
        *(.got) 
    }
    .got.plt : 
    {
        *(.got.plt) 
    }
    .data :
    {
        *(.data) *(.bss)
    }
    _end = . ;
}

