Retro68/binutils/ld/emulparams/elf64_s390.sh

41 lines
921 B
Bash
Raw Normal View History

2012-03-26 21:18:29 +02:00
SCRIPT_NAME=elf
ELFSIZE=64
OUTPUT_FORMAT="elf64-s390"
NO_REL_RELOCS=yes
2017-04-10 13:32:00 +02:00
TEXT_START_ADDR=0x1000000
2012-03-26 21:18:29 +02:00
MAXPAGESIZE="CONSTANT (MAXPAGESIZE)"
COMMONPAGESIZE="CONSTANT (COMMONPAGESIZE)"
ARCH="s390:64-bit"
MACHINE=
NOP=0x07070707
2022-10-27 20:45:45 +02:00
TEMPLATE_NAME=elf
GENERATE_SHLIB_SCRIPT=yes
2012-03-26 21:18:29 +02:00
GENERATE_PIE_SCRIPT=yes
2022-10-27 20:45:45 +02:00
GENERATE_RELRO_SCRIPT=yes
2012-03-26 21:18:29 +02:00
NO_SMALL_DATA=yes
EXTRA_EM_FILE=s390
IREL_IN_PLT=
2022-10-27 20:45:45 +02:00
SEPARATE_GOTPLT=0
test -z "$RELRO" && unset SEPARATE_GOTPLT
2012-03-26 21:18:29 +02:00
# Treat a host that matches the target with the possible exception of "x"
# in the name as if it were native.
if test `echo "$host" | sed -e s/390x/390/` \
= `echo "$target" | sed -e s/390x/390/`; then
case " $EMULATION_LIBPATH " in
*" ${EMULATION_NAME} "*)
NATIVE=yes
esac
fi
# Look for 64 bit target libraries in /lib64, /usr/lib64 etc., first
# on Linux.
case "$target" in
s390*-linux*)
case "$EMULATION_NAME" in
*64*)
LIBPATH_SUFFIX=64 ;;
esac
;;
esac