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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.17.0/] [libgloss/] [sparc/] [tsc701.ld] - Diff between revs 148 and 158

Only display areas with differences | Details | Blame | View Log

Rev 148 Rev 158
/* must compile with -nostdlib option */
/* must compile with -nostdlib option */
OUTPUT_FORMAT("a.out-sunos-big", "a.out-sunos-big",
OUTPUT_FORMAT("a.out-sunos-big", "a.out-sunos-big",
              "a.out-sparc-little")
              "a.out-sparc-little")
OUTPUT_ARCH(sparc)
OUTPUT_ARCH(sparc)
SEARCH_DIR(/usr/local/sparclet-aout/lib)
SEARCH_DIR(/usr/local/sparclet-aout/lib)
PROVIDE (__stack = 0);
PROVIDE (__stack = 0);
ENTRY (start)
ENTRY (start)
STARTUP (crt0-701.o)
STARTUP (crt0-701.o)
GROUP (libsplet701.a libc.a libgcc.a)
GROUP (libsplet701.a libc.a libgcc.a)
SECTIONS
SECTIONS
{
{
  /* Sparcmon likes to load programs starting at this address. */
  /* Sparcmon likes to load programs starting at this address. */
  . = 0x12010000;
  . = 0x12010000;
  .text :
  .text :
  {
  {
    CREATE_OBJECT_SYMBOLS
    CREATE_OBJECT_SYMBOLS
    *(.text)
    *(.text)
    /* The next six sections are for SunOS dynamic linking.  The order
    /* The next six sections are for SunOS dynamic linking.  The order
       is important.  */
       is important.  */
    *(.dynrel)
    *(.dynrel)
    *(.hash)
    *(.hash)
    *(.dynsym)
    *(.dynsym)
    *(.dynstr)
    *(.dynstr)
    *(.rules)
    *(.rules)
    *(.need)
    *(.need)
    _etext = .;
    _etext = .;
    __etext = .;
    __etext = .;
  }
  }
  .data :
  .data :
  {
  {
    /* The first three sections are for SunOS dynamic linking.  */
    /* The first three sections are for SunOS dynamic linking.  */
    *(.dynamic)
    *(.dynamic)
    *(.got)
    *(.got)
    *(.plt)
    *(.plt)
    *(.data)
    *(.data)
    *(.linux-dynamic) /* For Linux dynamic linking.  */
    *(.linux-dynamic) /* For Linux dynamic linking.  */
    CONSTRUCTORS
    CONSTRUCTORS
    _edata  =  .;
    _edata  =  .;
    __edata  =  .;
    __edata  =  .;
  }
  }
  .bss :
  .bss :
  {
  {
    __bss_start = .;
    __bss_start = .;
   *(.bss)
   *(.bss)
   *(COMMON)
   *(COMMON)
   _end = ALIGN(4) ;
   _end = ALIGN(4) ;
   __end = ALIGN(4) ;
   __end = ALIGN(4) ;
  }
  }
  /* This is the value that Sparcmon assigns to the SP at reset, minus 4K. */
  /* This is the value that Sparcmon assigns to the SP at reset, minus 4K. */
  PROVIDE(___stack = 0x123ef000);
  PROVIDE(___stack = 0x123ef000);
  PROVIDE(__stack = 0x123ef000);
  PROVIDE(__stack = 0x123ef000);
  /* Provide 4K area for copying the trap vectors from ROM to RAM.  */
  /* Provide 4K area for copying the trap vectors from ROM to RAM.  */
  PROVIDE(___trap_vectors = 0x123f0000);
  PROVIDE(___trap_vectors = 0x123f0000);
  PROVIDE(__trap_vectors = 0x123f0000);
  PROVIDE(__trap_vectors = 0x123f0000);
}
}
 
 

powered by: WebSVN 2.1.0

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