]>
Commit | Line | Data |
---|---|---|
a85d7ed0 NC |
1 | SCRIPT_NAME=elf |
2 | ELFSIZE=64 | |
3 | OUTPUT_FORMAT="elf64-s390" | |
4 | TEXT_START_ADDR=0x80000000 | |
24718e3b L |
5 | MAXPAGESIZE="CONSTANT (MAXPAGESIZE)" |
6 | COMMONPAGESIZE="CONSTANT (COMMONPAGESIZE)" | |
d86bcc10 | 7 | ARCH="s390:64-bit" |
a85d7ed0 | 8 | MACHINE= |
563e308f | 9 | NOP=0x07070707 |
a85d7ed0 NC |
10 | TEMPLATE_NAME=elf32 |
11 | GENERATE_SHLIB_SCRIPT=yes | |
36af4a4e | 12 | GENERATE_PIE_SCRIPT=yes |
060feee5 | 13 | NO_SMALL_DATA=yes |
f52d1d64 JJ |
14 | |
15 | # Treat a host that matches the target with the possible exception of "x" | |
16 | # in the name as if it were native. | |
17 | if 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} "*) | |
9c8ebd6a | 21 | NATIVE=yes |
f52d1d64 JJ |
22 | esac |
23 | fi | |
9c8ebd6a DJ |
24 | |
25 | # Look for 64 bit target libraries in /lib64, /usr/lib64 etc., first | |
26 | # on Linux. | |
27 | case "$target" in | |
28 | s390*-linux*) | |
29 | case "$EMULATION_NAME" in | |
30 | *64*) | |
cad91d28 | 31 | LIBPATH_SUFFIX=64 ;; |
9c8ebd6a DJ |
32 | esac |
33 | ;; | |
34 | esac |