elf64_s390.sh revision 130562
1SCRIPT_NAME=elf
2ELFSIZE=64
3OUTPUT_FORMAT="elf64-s390"
4TEXT_START_ADDR=0x80000000
5MAXPAGESIZE=0x1000
6NONPAGED_TEXT_START_ADDR=0x80000000
7ARCH="s390:64-bit"
8MACHINE=
9NOP=0x07070707
10TEMPLATE_NAME=elf32
11GENERATE_SHLIB_SCRIPT=yes 
12GENERATE_PIE_SCRIPT=yes
13NO_SMALL_DATA=yes
14
15# Treat a host that matches the target with the possible exception of "x"
16# in the name as if it were native.
17if test `echo "$host" | sed -e s/390x/390/` \
18   = `echo "$target" | sed -e s/390x/390/`; then
19  case " $EMULATION_LIBPATH " in
20    *" ${EMULATION_NAME} "*)
21      NATIVE=yes
22  esac
23fi
24
25# Look for 64 bit target libraries in /lib64, /usr/lib64 etc., first
26# on Linux.
27case "$target" in
28  s390*-linux*)
29    case "$EMULATION_NAME" in
30      *64*)
31	LIBPATH_SUFFIX=64 ;;
32    esac
33    ;;
34esac
35