ld: add support for eBPF
[external/binutils.git] / ld / scripttempl / elf32xc16x.sc
1 # Copyright (C) 2014-2019 Free Software Foundation, Inc.
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
7 cat <<EOF
8 /* Copyright (C) 2014-2019 Free Software Foundation, Inc.
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
14 OUTPUT_FORMAT("${OUTPUT_FORMAT}")
15 OUTPUT_ARCH(${ARCH})
16 EOF
17
18 test -n "${RELOCATING}" && cat <<EOF
19 ENTRY ("_start")
20 MEMORY
21 {
22
23         vectarea : o =0x00000, l = 0x0300
24
25         introm    : o = 0x00400, l = 0x16000
26         /* The stack starts at the top of main ram.  */
27
28         dram   : o = 0x8000 , l = 0xffff
29         /* At the very top of the address space is the 8-bit area.  */
30
31         ldata  : o =0x4000 ,l = 0x0200
32 }
33
34 EOF
35
36 cat <<EOF
37 SECTIONS
38 {
39 .init :
40         {
41           KEEP (*(SORT_NONE(.init)))
42           ${RELOCATING+KEEP (*(SORT_NONE(.fini)))}
43         } ${RELOCATING+ >introm}
44
45 .text :
46         {
47           ${RELOCATING+*(.rodata)}
48           ${RELOCATING+*(.text.*)}
49           *(.text)
50           ${RELOCATING+ _etext = . ; }
51         } ${RELOCATING+ > introm}
52 .data :
53         {
54           *(.data)
55           ${RELOCATING+*(.data.*)}
56
57           ${RELOCATING+ _edata = . ; }
58         } ${RELOCATING+ > dram}
59
60 .bss :
61         {
62           ${RELOCATING+ _bss_start = . ;}
63           *(.bss)
64           ${RELOCATING+*(COMMON)}
65           ${RELOCATING+ _end = . ;  }
66         } ${RELOCATING+ > dram}
67
68 .ldata :
69         {
70           *(.ldata)
71         } ${RELOCATING+ > ldata}
72
73
74 .vects :
75         {
76           *(.vects)
77         } ${RELOCATING+ > vectarea}
78
79 }
80 EOF