Factor out int printing code from c_val_print
[deliverable/binutils-gdb.git] / ld / scripttempl / psos.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${RELOCATING+${LIB_SEARCH_DIRS}}
17
18SECTIONS
19{
ec2d9b29 20 .text ${RELOCATING:-0} ${RELOCATING+${TEXT_START_ADDR}} : {
252b5132
RH
21 ${RELOCATING+ start = DEFINED(_START) ? _START : DEFINED(_start) ? _start : .;}
22 ${RELOCATING+ PROVIDE(__text = .);}
23 *(.text);
24 *(code);
25 *(const);
26 *(strings);
27 *(pSOS);
28 *(pROBE);
29 *(pNA);
30 *(pHILE);
31 *(pREPC);
32 *(pRPC);
33 ${CONSTRUCTING+ ___CTOR_LIST__ = .;}
34 ${CONSTRUCTING+ LONG((___CTOR_END__ - ___CTOR_LIST__) / 4 - 2)}
35 ${CONSTRUCTING+ *(.ctors)}
36 ${CONSTRUCTING+ LONG(0);}
37 ${CONSTRUCTING+ ___CTOR_END__ = .;}
38 ${CONSTRUCTING+ ___DTOR_LIST__ = .;}
39 ${CONSTRUCTING+ LONG((___DTOR_END__ - ___DTOR_LIST__) / 4 - 2);}
40 ${CONSTRUCTING+ *(.dtors);}
41 ${CONSTRUCTING+ LONG(0);}
42 ${CONSTRUCTING+ ___DTOR_END__ = .;}
43 ${RELOCATING+ PROVIDE(__etext = .);}
44 ${RELOCATING+ PROVIDE(_etext = .);}
45 }
ec2d9b29 46 .data ${RELOCATING:-0} : ${RELOCATING+ AT(ADDR(.text) + SIZEOF(.text))} {
252b5132
RH
47 ${RELOCATING+ PROVIDE(__data = .);}
48 *(.data);
49 *(vars);
50 ${RELOCATING+ PROVIDE(__edata = .);}
51 ${RELOCATING+ PROVIDE(_edata = .);}
52 }
ec2d9b29 53 .bss ${RELOCATING:-0} :
252b5132
RH
54 {
55 ${RELOCATING+ PROVIDE(__bss = .);}
56 *(.bss);
57 *(zerovars);
58 *(COMMON);
59 ${RELOCATING+ PROVIDE(__ebss = .);}
60 ${RELOCATING+ PROVIDE(__end = .);}
61 ${RELOCATING+ PROVIDE(_end = .);}
62 ${RELOCATING+ PROVIDE(_FreeMemStart = .);}
63 }
64 .stab 0 ${RELOCATING+(NOLOAD)} :
65 {
66 *(.stab);
67 }
68 .stabstr 0 ${RELOCATING+(NOLOAD)} :
69 {
70 *(.stabstr);
71 }
72}
73EOF
This page took 0.737549 seconds and 4 git commands to generate.