1999-05-03 07:29:11 +00:00
|
|
|
SCRIPT_NAME=elf
|
|
|
|
ELFSIZE=64
|
|
|
|
TEMPLATE_NAME=elf32
|
|
|
|
OUTPUT_FORMAT="elf64-sparc"
|
|
|
|
MAXPAGESIZE=0x100000
|
2002-02-12 14:50:08 +00:00
|
|
|
COMMONPAGESIZE=0x2000
|
1999-05-03 07:29:11 +00:00
|
|
|
ARCH="sparc:v9"
|
|
|
|
MACHINE=
|
|
|
|
DATA_PLT=
|
|
|
|
GENERATE_SHLIB_SCRIPT=yes
|
2003-05-30 15:50:12 +00:00
|
|
|
GENERATE_PIE_SCRIPT=yes
|
1999-05-03 07:29:11 +00:00
|
|
|
NOP=0x01000000
|
2001-11-27 19:06:07 +00:00
|
|
|
NO_SMALL_DATA=yes
|
1999-07-16 21:43:43 +00:00
|
|
|
|
2000-10-20 10:58:32 +00:00
|
|
|
case "$target" in
|
|
|
|
sparc*-solaris*)
|
|
|
|
TEXT_START_ADDR=0x100000000
|
|
|
|
NONPAGED_TEXT_START_ADDR=0x100000000
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
TEXT_START_ADDR=0x100000
|
|
|
|
NONPAGED_TEXT_START_ADDR=0x100000
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2002-10-16 19:54:54 +00:00
|
|
|
# Treat a host that matches the target with the possible exception of "64"
|
|
|
|
# and "v7", "v8", "v9" in the name as if it were native.
|
|
|
|
if test `echo "$host" | sed -e 's/64//;s/v[789]//'` \
|
|
|
|
= `echo "$target" | sed -e 's/64//;s/v[789]//'`; then
|
1999-07-16 21:43:43 +00:00
|
|
|
case " $EMULATION_LIBPATH " in
|
|
|
|
*" ${EMULATION_NAME} "*)
|
2003-01-06 16:14:01 +00:00
|
|
|
NATIVE=yes
|
|
|
|
;;
|
1999-07-16 21:43:43 +00:00
|
|
|
esac
|
|
|
|
fi
|
2003-01-06 16:14:01 +00:00
|
|
|
|
|
|
|
# Linux and Solaris modify the default library search path
|
|
|
|
# to first include a 64-bit specific directory. It's put
|
|
|
|
# in slightly different places on the two systems.
|
|
|
|
# Look for 64 bit target libraries in /lib64, /usr/lib64 etc., first
|
|
|
|
# on Linux and /lib/sparcv9, /usr/lib/sparcv9 etc. on Solaris.
|
|
|
|
case "$EMULATION_NAME" in
|
|
|
|
*64*)
|
|
|
|
case "$target" in
|
|
|
|
sparc*-linux*)
|
2003-02-06 14:45:04 +00:00
|
|
|
LIBPATH_SUFFIX=64 ;;
|
2003-01-06 16:14:01 +00:00
|
|
|
sparc*-solaris*)
|
2003-02-06 14:45:04 +00:00
|
|
|
LIBPATH_SUFFIX=/sparcv9 ;;
|
2003-01-06 16:14:01 +00:00
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|