GENERATE_SHLIB_SCRIPT vs. EMBEDDED.
[deliverable/binutils-gdb.git] / ld / emulparams / shelf.sh
1 # If you change this file, please also look at files which source this one:
2 # shlelf.sh, shelf_nbsd.sh
3
4 SCRIPT_NAME=elf
5 OUTPUT_FORMAT="elf32-sh"
6 NO_REL_RELOCS=yes
7 TEXT_START_ADDR=0x1000
8 MAXPAGESIZE=128
9 ARCH=sh
10 MACHINE=
11 TEMPLATE_NAME=elf
12 EMBEDDED=yes
13 # These are for compatibility with the COFF toolchain.
14 ENTRY=start
15 CTOR_START='___ctors = .;'
16 CTOR_END='___ctors_end = .;'
17 DTOR_START='___dtors = .;'
18 DTOR_END='___dtors_end = .;'
19 STACK_ADDR="(DEFINED(_stack) ? _stack : 0x3FFFFF00)"
20 STACK_SENTINEL="LONG(0xdeaddead)"
21 # We do not need .stack for shared library.
22 test -n "$CREATE_SHLIB" && unset STACK_ADDR
This page took 0.048708 seconds and 4 git commands to generate.