PR25243, static linking with exceptions and iostream is broken on ARM
[deliverable/binutils-gdb.git] / ld / emulparams / elf32_tic6x_le.sh
CommitLineData
40b36596 1SCRIPT_NAME=elf
075a2b89 2TEMPLATE_NAME=elf
40b36596 3OUTPUT_FORMAT="elf32-tic6x-le"
ac145307
BS
4BIG_OUTPUT_FORMAT="elf32-tic6x-be"
5EXTRA_EM_FILE=tic6xdsbt
6GENERATE_SHLIB_SCRIPT=yes
40b36596
JM
7# This address is an arbitrary value expected to be suitable for
8# semihosting simulator use, but not on hardware where it is expected
9# to be overridden.
ac145307
BS
10case ${target} in
11 *-elf)
12 TEXT_START_ADDR=0x8000
13 ;;
14 *-uclinux)
15 TEXT_START_ADDR=0x0
16 GOT="
17.got ${RELOCATING-0} : {
2bf2bf23
AM
18 ${RELOCATING+*(.dsbt)
19 *(.got.plt) *(.igot.plt) }*(.got)${RELOCATING+ *(.igot)}
ac145307
BS
20}"
21 ;;
22esac
40b36596
JM
23MAXPAGESIZE="CONSTANT (MAXPAGESIZE)"
24ARCH=tic6x
ac145307 25OTHER_GOT_SYMBOLS="PROVIDE_HIDDEN (__c6xabi_DSBT_BASE = .);"
40b36596
JM
26# ".bss" is near (small) BSS, ".far" is far (normal) BSS, ".const" is
27# far read-only data, ".rodata" is near read-only data. ".neardata"
28# is near (small) data, ".fardata" is (along with .data) far data.
29RODATA_NAME="const"
30SDATA_NAME="neardata"
31SBSS_NAME="bss"
32BSS_NAME="far"
6970a028
PB
33OTHER_READONLY_SECTIONS="
34 .c6xabi.extab ${RELOCATING-0} : { *(.c6xabi.extab${RELOCATING+* .gnu.linkonce.c6xabiextab.*}) }
6e9ed997
AM
35 .c6xabi.exidx ${RELOCATING-0} :
36 {
37 ${RELOCATING+PROVIDE_HIDDEN (__exidx_start = .);}
38 *(.c6xabi.exidx${RELOCATING+* .gnu.linkonce.c6xabiexidx.*})
39 ${RELOCATING+PROVIDE_HIDDEN (__exidx_end = .);}
40 }"
40b36596
JM
41OTHER_SDATA_SECTIONS=".rodata ${RELOCATING-0} : { *(.rodata${RELOCATING+ .rodata.*}) }"
42OTHER_READONLY_RELOC_SECTIONS="
43 .rel.rodata ${RELOCATING-0} : { *(.rel.rodata${RELOCATING+ .rel.rodata.*}) }
44 .rela.rodata ${RELOCATING-0} : { *(.rela.rodata${RELOCATING+ .rela.rodata.*}) }"
45OTHER_READWRITE_SECTIONS=".fardata ${RELOCATING-0} : { *(.fardata${RELOCATING+ .fardata.*}) }"
46OTHER_READWRITE_RELOC_SECTIONS="
47 .rel.fardata ${RELOCATING-0} : { *(.rel.fardata${RELOCATING+ .rel.fardata.*}) }
48 .rela.fardata ${RELOCATING-0} : { *(.rela.fardata${RELOCATING+ .rela.fardata.*}) }"
16c1c9d6
CG
49# For relocating operation, skip OTHER_BSS_SECTIONS, or will cause multiple definition.
50if [ ${RELOCATING-0} ]; then
51 OTHER_BSS_SECTIONS="";
52else
53 case ${target} in
54
ac145307
BS
55 *-elf)
56 OTHER_BSS_SECTIONS="
e4492aa0
L
57 .heap :
58 {
59 . = ALIGN(4);
60 _HEAP_START = .;
61 . += 0x2000000;
62 _HEAP_MAX = .;
11dd4e37
BS
63 }
64 .stack :
65 {
66 . += 0x100000;
67 _STACK_START = .;
68 }"
ac145307 69 ;;
16c1c9d6
CG
70 esac
71fi
75fa6dc1 72ATTRS_SECTIONS='.c6xabi.attributes 0 : { KEEP (*(.c6xabi.attributes)) KEEP (*(.gnu.attributes)) }'
This page took 0.454057 seconds and 4 git commands to generate.