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