ChangeLog rotatation and copyright year update
[deliverable/binutils-gdb.git] / ld / scripttempl / st2000.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
252b5132 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
252b5132
RH
14OUTPUT_FORMAT("${OUTPUT_FORMAT}")
15OUTPUT_ARCH(${ARCH})
16
252b5132
RH
17SECTIONS
18{
19.text :
20 {
21 *(.text)
22 *(.strings)
23 _etext = .;
24 *(.data)
25 _edata = .;
26 *(.bss)
27 *(COMMON)
28 _end = .;
985743c7 29 }
252b5132
RH
30}
31EOF
32
33
34
35
This page took 0.687704 seconds and 4 git commands to generate.