bd4e40546c
We should never end up executing the inter-function padding, so we are better off faulting than silently carrying on to whatever function happens to be next. Note that LLD will soon do this by default (although it currently pads with zeros). Reviewed by: dim, kib MFC after: 1 month Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D10047
38 lines
833 B
Bash
38 lines
833 B
Bash
SCRIPT_NAME=elf
|
|
ELFSIZE=64
|
|
OUTPUT_FORMAT="elf64-x86-64"
|
|
TEXT_START_ADDR=0x400000
|
|
MAXPAGESIZE="CONSTANT (MAXPAGESIZE)"
|
|
COMMONPAGESIZE="CONSTANT (COMMONPAGESIZE)"
|
|
NONPAGED_TEXT_START_ADDR=0x400000
|
|
ARCH="i386:x86-64"
|
|
MACHINE=
|
|
NOP=0xCCCCCCCC
|
|
TEMPLATE_NAME=elf32
|
|
GENERATE_SHLIB_SCRIPT=yes
|
|
GENERATE_PIE_SCRIPT=yes
|
|
NO_SMALL_DATA=yes
|
|
LARGE_SECTIONS=yes
|
|
SEPARATE_GOTPLT=24
|
|
|
|
if [ "x${host}" = "x${target}" ]; then
|
|
case " $EMULATION_LIBPATH " in
|
|
*" ${EMULATION_NAME} "*)
|
|
NATIVE=yes
|
|
esac
|
|
fi
|
|
|
|
# Linux/Solaris modify the default library search path to first include
|
|
# a 64-bit specific directory.
|
|
case "$target" in
|
|
x86_64*-linux*|i[3-7]86-*-linux-*)
|
|
case "$EMULATION_NAME" in
|
|
*64*) LIBPATH_SUFFIX=64 ;;
|
|
esac
|
|
;;
|
|
*-*-solaris2*)
|
|
LIBPATH_SUFFIX=/amd64
|
|
ELF_INTERPRETER_NAME=\"/lib/amd64/ld.so.1\"
|
|
;;
|
|
esac
|