ChangeLog rotatation and copyright year update
[deliverable/binutils-gdb.git] / ld / scripttempl / dlx.sc
CommitLineData
b90efa5b 1# Copyright (C) 2014-2015 Free Software Foundation, Inc.
985743c7
NC
2#
3# Copying and distribution of this file, with or without modification,
4# are permitted in any medium without royalty provided the copyright
5# notice and this notice are preserved.
6
d172d4ba 7cat <<EOF
b90efa5b 8/* Copyright (C) 2014-2015 Free Software Foundation, Inc.
985743c7
NC
9
10 Copying and distribution of this script, with or without modification,
11 are permitted in any medium without royalty provided the copyright
12 notice and this notice are preserved. */
13
d172d4ba
NC
14OUTPUT_FORMAT("${OUTPUT_FORMAT}", "${BIG_OUTPUT_FORMAT}",
15 "${LITTLE_OUTPUT_FORMAT}")
16OUTPUT_ARCH(${ARCH})
17
18${RELOCATING+${LIB_SEARCH_DIRS}}
19SECTIONS
20{
21 ${RELOCATING+. = ${TEXT_START_ADDR};}
22 .text :
23 {
24 CREATE_OBJECT_SYMBOLS
25 *(.text)
26 ${RELOCATING+etext = ${DATA_ALIGNMENT};}
27 }
28 ${RELOCATING+. = ${DATA_ALIGNMENT};}
29 .data :
30 {
31 *(.data)
32 ${CONSTRUCTING+CONSTRUCTORS}
33 ${RELOCATING+edata = .;}
34 }
35 .bss :
36 {
37 *(.bss)
38 *(COMMON)
39 ${RELOCATING+end = . };
40 }
41}
42EOF
This page took 0.594701 seconds and 4 git commands to generate.