97d40d3d4a
us up to version 2.17.50.20070703, at the last GPLv2 commit. Amongst others, this added upstream support for some FreeBSD-specific things that we previously had to manually hack in, such as the OSABI label support, and so on. There are also quite a number of new files, some for cpu's (e.g. SPU) that we may or may not be interested in, but those can be cleaned up later on, if needed.
28 lines
733 B
Bash
28 lines
733 B
Bash
ENTRY=_start
|
|
SCRIPT_NAME=elf
|
|
ELFSIZE=64
|
|
TEMPLATE_NAME=elf32
|
|
EXTRA_EM_FILE=alphaelf
|
|
OUTPUT_FORMAT="elf64-alpha"
|
|
TEXT_START_ADDR="0x120000000"
|
|
MAXPAGESIZE="CONSTANT (MAXPAGESIZE)"
|
|
COMMONPAGESIZE="CONSTANT (COMMONPAGESIZE)"
|
|
NONPAGED_TEXT_START_ADDR="0x120000000"
|
|
ARCH=alpha
|
|
MACHINE=
|
|
GENERATE_SHLIB_SCRIPT=yes
|
|
GENERATE_PIE_SCRIPT=yes
|
|
|
|
# Yes, we want duplicate .plt sections. The linker chooses the
|
|
# appropriate one magically in alpha_after_open.
|
|
PLT=".plt ${RELOCATING-0} : SPECIAL { *(.plt) }"
|
|
DATA_PLT=yes
|
|
TEXT_PLT=yes
|
|
|
|
# Note that the number is always big-endian, thus we have to
|
|
# reverse the digit string.
|
|
NOP=0x0000fe2f1f04ff47 # unop; nop
|
|
|
|
OTHER_READONLY_SECTIONS="
|
|
.reginfo ${RELOCATING-0} : { *(.reginfo) }"
|