OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rtems-20020807/] [c/] [src/] [lib/] [libbsp/] [a29k/] [portsw/] [startup/] [linkcmds] - Rev 1765

Compare with Previous | Blame | View Log

OUTPUT_FORMAT("coff-a29k-big")
 SEARCH_DIR(/opt/a29k-rtems/a29k-rtems/lib);
SECTIONS
{
  .text : {
    *(.text)
     __etext  =  .;
     __CTOR_LIST__ = .;
     LONG((__CTOR_END__ - __CTOR_LIST__) / 4 - 2)
     *(.ctors)
     LONG(0)
     __CTOR_END__ = .;
     __DTOR_LIST__ = .;
     LONG((__DTOR_END__ - __DTOR_LIST__) / 4 - 2)
     *(.dtors)
     LONG(0)
     __DTOR_END__ = .;
    *(.lit)
    *(.shdata)
  }
  .shbss SIZEOF(.text) + ADDR(.text) :  {
    *(.shbss)
  } 
  .data  : {
    *(.data)
     __edata  =  .;
  }
  .bss   SIZEOF(.data) + ADDR(.data) :
  {                                     
   *(.bss)
   *(COMMON)
      __end = ALIGN(0x8);
  }
}

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.