[BACK]Return to armaout.sc CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / external / gpl3 / binutils.old / dist / ld / scripttempl

File: [cvs.NetBSD.org] / src / external / gpl3 / binutils.old / dist / ld / scripttempl / Attic / armaout.sc (download)

Revision 1.1.1.2 (vendor branch), Wed Oct 26 17:03:24 2016 UTC (7 years, 5 months ago) by christos
Branch: NetBSD2, NetBSD1, NetBSD
CVS Tags: src-external-gpl3-binutils-20161026-1301
Changes since 1.1.1.1: +12 -0 lines

Import current binutils

# Copyright (C) 2014-2015 Free Software Foundation, Inc.
# 
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved.
#
cat <<EOF
/* Copyright (C) 2014-2015 Free Software Foundation, Inc.

   Copying and distribution of this script, with or without modification,
   are permitted in any medium without royalty provided the copyright
   notice and this notice are preserved.  */

OUTPUT_FORMAT("${OUTPUT_FORMAT}")
OUTPUT_ARCH(${ARCH})

${RELOCATING+${LIB_SEARCH_DIRS}}
${STACKZERO+${RELOCATING+${STACKZERO}}}
SECTIONS
{
  .text   ${RELOCATING+${TEXT_START_ADDR}} :
  {
    CREATE_OBJECT_SYMBOLS
    ${RELOCATING+__stext_ = .;}
    *(.text)
    ${PAD_TEXT+${RELOCATING+. = ${DATA_ALIGNMENT};}}
    ${RELOCATING+_etext = ${DATA_ALIGNMENT};}
    ${RELOCATING+__etext = ${DATA_ALIGNMENT};}
  }
  .data ${RELOCATING+${DATA_ALIGNMENT}} :
  {
    ${RELOCATING+__sdata_ = .;}
    *(.data)
    ${CONSTRUCTING+CONSTRUCTORS}
    ${RELOCATING+_edata  =  ${DATA_ALIGNMENT};}
    ${RELOCATING+__edata  =  ${DATA_ALIGNMENT};}
  }
  .bss ${RELOCATING+${DATA_ALIGNMENT}} :
  {
   ${RELOCATING+ __bss_start = .};
   *(.bss)
   *(COMMON)
   ${RELOCATING+_end = ALIGN(4) };
   ${RELOCATING+__end = ALIGN(4) };
  }
}
EOF