[include/elf]
[deliverable/binutils-gdb.git] / ld / emulparams / shelf.sh
CommitLineData
465bc359 1# If you change this file, please also look at files which source this one:
8d05742f 2# shlelf.sh, shelf_nbsd.sh
465bc359 3
252b5132
RH
4SCRIPT_NAME=elf
5OUTPUT_FORMAT="elf32-sh"
6TEXT_START_ADDR=0x1000
7MAXPAGESIZE=128
8ARCH=sh
9MACHINE=
10TEMPLATE_NAME=elf32
11GENERATE_SHLIB_SCRIPT=yes
12EMBEDDED=yes
13
14# These are for compatibility with the COFF toolchain.
15ENTRY=start
16CTOR_START='___ctors = .;'
17CTOR_END='___ctors_end = .;'
18DTOR_START='___dtors = .;'
19DTOR_END='___dtors_end = .;'
c38f024c 20# This is like setting STACK_ADDR to 0x300000, except that the setting can
164c4054
JR
21# be overridden, e.g. --defsym _stack=0x0f00, and that we put an extra
22# sentinal value at the bottom.
23# N.B. We can't use PROVIDE to set the default value in a symbol because
24# the address is needed to place the .stack section, which in turn is needed
25# to hold the sentinel value(s).
c38f024c 26test -z "$CREATE_SHLIB" && OTHER_SECTIONS=" .stack ${RELOCATING-0}${RELOCATING+(DEFINED(_stack) ? _stack : 0x300000)} :
164c4054
JR
27 {
28 ${RELOCATING+_stack = .;}
29 *(.stack)
30 LONG(0xdeaddead)
31 }"
8a1cb159
KK
32# We do not need .stack for shared library.
33test -n "$CREATE_SHLIB" && OTHER_SECTIONS=""
This page took 0.26627 seconds and 4 git commands to generate.