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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [binutils-2.18.50/] [ld/] [scripttempl/] [elf32cr16.sc] - Diff between revs 38 and 156

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

Rev 38 Rev 156
# Linker Script for National Semiconductor's CR16-ELF32.
# Linker Script for National Semiconductor's CR16-ELF32.
# The next line should be uncommented if it is desired to link
# The next line should be uncommented if it is desired to link
# without libstart.o and directly enter main.
# without libstart.o and directly enter main.
# ENTRY=_main
# ENTRY=_main
test -z "$ENTRY" && ENTRY=_start
test -z "$ENTRY" && ENTRY=_start
cat <
cat <
/* Example Linker Script for linking NS CR16 elf32 files. */
/* Example Linker Script for linking NS CR16 elf32 files. */
/* The next line forces the entry point (${ENTRY} in this script)
/* The next line forces the entry point (${ENTRY} in this script)
   to be entered in the output file as an undefined symbol.
   to be entered in the output file as an undefined symbol.
   It is needed in case the entry point is not called explicitly
   It is needed in case the entry point is not called explicitly
   (which is the usual case) AND is in an archive.  */
   (which is the usual case) AND is in an archive.  */
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
OUTPUT_ARCH(${ARCH})
OUTPUT_ARCH(${ARCH})
${RELOCATING+EXTERN(${ENTRY})}
${RELOCATING+EXTERN(${ENTRY})}
${RELOCATING+ENTRY(${ENTRY})}
${RELOCATING+ENTRY(${ENTRY})}
/* Define memory regions.  */
/* Define memory regions.  */
MEMORY
MEMORY
{
{
        rom         : ORIGIN = 0x2,         LENGTH = 3M
        rom         : ORIGIN = 0x2,         LENGTH = 3M
        ram         : ORIGIN = 4M,          LENGTH = 10M
        ram         : ORIGIN = 4M,          LENGTH = 10M
}
}
/*  Many sections come in three flavours.  There is the 'real' section,
/*  Many sections come in three flavours.  There is the 'real' section,
    like ".data".  Then there are the per-procedure or per-variable
    like ".data".  Then there are the per-procedure or per-variable
    sections, generated by -ffunction-sections and -fdata-sections in GCC,
    sections, generated by -ffunction-sections and -fdata-sections in GCC,
    and useful for --gc-sections, which for a variable "foo" might be
    and useful for --gc-sections, which for a variable "foo" might be
    ".data.foo".  Then there are the linkonce sections, for which the linker
    ".data.foo".  Then there are the linkonce sections, for which the linker
    eliminates duplicates, which are named like ".gnu.linkonce.d.foo".
    eliminates duplicates, which are named like ".gnu.linkonce.d.foo".
    The exact correspondences are:
    The exact correspondences are:
    Section     Linkonce section
    Section     Linkonce section
    .text       .gnu.linkonce.t.foo
    .text       .gnu.linkonce.t.foo
    .rdata      .gnu.linkonce.r.foo
    .rdata      .gnu.linkonce.r.foo
    .data       .gnu.linkonce.d.foo
    .data       .gnu.linkonce.d.foo
    .bss        .gnu.linkonce.b.foo
    .bss        .gnu.linkonce.b.foo
    .debug_info .gnu.linkonce.wi.foo  */
    .debug_info .gnu.linkonce.wi.foo  */
SECTIONS
SECTIONS
{
{
  .init :
  .init :
  {
  {
    __INIT_START = .;
    __INIT_START = .;
    KEEP (*(.init))
    KEEP (*(.init))
    __INIT_END = .;
    __INIT_END = .;
  } > rom
  } > rom
  .fini :
  .fini :
  {
  {
    __FINI_START = .;
    __FINI_START = .;
    KEEP (*(.fini))
    KEEP (*(.fini))
    __FINI_END = .;
    __FINI_END = .;
  } > rom
  } > rom
  .jcr :
  .jcr :
  {
  {
    KEEP (*(.jcr))
    KEEP (*(.jcr))
  } > rom
  } > rom
  .text :
  .text :
  {
  {
    __TEXT_START = .;
    __TEXT_START = .;
    *(.text) *(.text.*) *(.gnu.linkonce.t.*)
    *(.text) *(.text.*) *(.gnu.linkonce.t.*)
    __TEXT_END = .;
    __TEXT_END = .;
  } > rom
  } > rom
  .rdata :
  .rdata :
  {
  {
    __RDATA_START = .;
    __RDATA_START = .;
    *(.rdata_4) *(.rdata_2) *(.rdata_1) *(.rdata.*) *(.gnu.linkonce.r.*) *(.rodata*)
    *(.rdata_4) *(.rdata_2) *(.rdata_1) *(.rdata.*) *(.gnu.linkonce.r.*) *(.rodata*)
    __RDATA_END = .;
    __RDATA_END = .;
  } > rom
  } > rom
  .ctor ALIGN(4) :
  .ctor ALIGN(4) :
  {
  {
    __CTOR_START = .;
    __CTOR_START = .;
    /* The compiler uses crtbegin.o to find the start
    /* The compiler uses crtbegin.o to find the start
       of the constructors, so we make sure it is
       of the constructors, so we make sure it is
       first.  Because this is a wildcard, it
       first.  Because this is a wildcard, it
       doesn't matter if the user does not
       doesn't matter if the user does not
       actually link against crtbegin.o; the
       actually link against crtbegin.o; the
       linker won't look for a file to match a
       linker won't look for a file to match a
       wildcard.  The wildcard also means that it
       wildcard.  The wildcard also means that it
       doesn't matter which directory crtbegin.o
       doesn't matter which directory crtbegin.o
       is in.  */
       is in.  */
    KEEP (*crtbegin*.o(.ctors))
    KEEP (*crtbegin*.o(.ctors))
    /* We don't want to include the .ctor section from
    /* We don't want to include the .ctor section from
       the crtend.o file until after the sorted ctors.
       the crtend.o file until after the sorted ctors.
       The .ctor section from the crtend file contains the
       The .ctor section from the crtend file contains the
       end of ctors marker and it must be last */
       end of ctors marker and it must be last */
    KEEP (*(EXCLUDE_FILE (*crtend*.o) .ctors))
    KEEP (*(EXCLUDE_FILE (*crtend*.o) .ctors))
    KEEP (*(SORT(.ctors.*)))
    KEEP (*(SORT(.ctors.*)))
    KEEP (*(.ctors))
    KEEP (*(.ctors))
    __CTOR_END = .;
    __CTOR_END = .;
  } > rom
  } > rom
  .dtor ALIGN(4) :
  .dtor ALIGN(4) :
  {
  {
    __DTOR_START = .;
    __DTOR_START = .;
    KEEP (*crtbegin*.o(.dtors))
    KEEP (*crtbegin*.o(.dtors))
    KEEP (*(EXCLUDE_FILE (*crtend*.o) .dtors))
    KEEP (*(EXCLUDE_FILE (*crtend*.o) .dtors))
    KEEP (*(SORT(.dtors.*)))
    KEEP (*(SORT(.dtors.*)))
    KEEP (*(.dtors))
    KEEP (*(.dtors))
    __DTOR_END = .;
    __DTOR_END = .;
  } > rom
  } > rom
  .data :
  .data :
  {
  {
    __DATA_START = .;
    __DATA_START = .;
    *(.data_4) *(.data_2) *(.data_1) *(.data) *(.data.*) *(.gnu.linkonce.d.*)
    *(.data_4) *(.data_2) *(.data_1) *(.data) *(.data.*) *(.gnu.linkonce.d.*)
    __DATA_END = .;
    __DATA_END = .;
  } > ram AT > rom
  } > ram AT > rom
  .bss (NOLOAD) :
  .bss (NOLOAD) :
  {
  {
    __BSS_START = .;
    __BSS_START = .;
    *(.bss_4) *(.bss_2) *(.bss_1) *(.bss) *(COMMON) *(.bss.*) *(.gnu.linkonce.b.*)
    *(.bss_4) *(.bss_2) *(.bss_1) *(.bss) *(COMMON) *(.bss.*) *(.gnu.linkonce.b.*)
    __BSS_END = .;
    __BSS_END = .;
  } > ram
  } > ram
/* You may change the sizes of the following sections to fit the actual
/* You may change the sizes of the following sections to fit the actual
   size your program requires.
   size your program requires.
   The heap and stack are aligned to the bus width, as a speed optimization
   The heap and stack are aligned to the bus width, as a speed optimization
   for accessing data located there.  */
   for accessing data located there.  */
  .heap :
  .heap :
  {
  {
    . = ALIGN(4);
    . = ALIGN(4);
    __HEAP_START = .;
    __HEAP_START = .;
    . += 0x2000; __HEAP_MAX = .;
    . += 0x2000; __HEAP_MAX = .;
  } > ram
  } > ram
  .stack :
  .stack :
  {
  {
    . = ALIGN(4);
    . = ALIGN(4);
    . += 0x6000;
    . += 0x6000;
    __STACK_START = .;
    __STACK_START = .;
  } > ram
  } > ram
  .istack :
  .istack :
  {
  {
    . = ALIGN(4);
    . = ALIGN(4);
    . += 0x100;
    . += 0x100;
    __ISTACK_START = .;
    __ISTACK_START = .;
  } > ram
  } > ram
  .comment        0 : { *(.comment) }
  .comment        0 : { *(.comment) }
  /* DWARF debug sections.
  /* DWARF debug sections.
     Symbols in the DWARF debugging sections are relative to the beginning
     Symbols in the DWARF debugging sections are relative to the beginning
     of the section so we begin them at 0.  */
     of the section so we begin them at 0.  */
  .debug_aranges  0 : { *(.debug_aranges) }
  .debug_aranges  0 : { *(.debug_aranges) }
  .debug_pubnames 0 : { *(.debug_pubnames) }
  .debug_pubnames 0 : { *(.debug_pubnames) }
  .debug_info     0 : { *(.debug_info .gnu.linkonce.wi.*) }
  .debug_info     0 : { *(.debug_info .gnu.linkonce.wi.*) }
  .debug_abbrev   0 : { *(.debug_abbrev) }
  .debug_abbrev   0 : { *(.debug_abbrev) }
  .debug_line     0 : { *(.debug_line) }
  .debug_line     0 : { *(.debug_line) }
  .debug_frame    0 : { *(.debug_frame) }
  .debug_frame    0 : { *(.debug_frame) }
  .debug_str      0 : { *(.debug_str) }
  .debug_str      0 : { *(.debug_str) }
  .debug_loc      0 : { *(.debug_loc) }
  .debug_loc      0 : { *(.debug_loc) }
  .debug_macinfo  0 : { *(.debug_macinfo) }
  .debug_macinfo  0 : { *(.debug_macinfo) }
}
}
__DATA_IMAGE_START = LOADADDR(.data);
__DATA_IMAGE_START = LOADADDR(.data);
EOF
EOF
 
 

powered by: WebSVN 2.1.0

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