2001-08-27 10:45:55 +00:00
|
|
|
TEMPLATE_NAME=elf32
|
2002-01-16 05:52:38 +00:00
|
|
|
EXTRA_EM_FILE=ppc64elf
|
2001-08-27 10:45:55 +00:00
|
|
|
ELFSIZE=64
|
|
|
|
GENERATE_SHLIB_SCRIPT=yes
|
2003-05-30 15:50:12 +00:00
|
|
|
GENERATE_PIE_SCRIPT=yes
|
2001-08-27 10:45:55 +00:00
|
|
|
SCRIPT_NAME=elf
|
|
|
|
OUTPUT_FORMAT="elf64-powerpc"
|
|
|
|
TEXT_START_ADDR=0x10000000
|
2002-11-20 01:02:44 +00:00
|
|
|
#SEGMENT_SIZE=0x10000000
|
2006-05-30 16:45:32 +00:00
|
|
|
MAXPAGESIZE="CONSTANT (MAXPAGESIZE)"
|
|
|
|
COMMONPAGESIZE="CONSTANT (COMMONPAGESIZE)"
|
2002-07-12 06:48:54 +00:00
|
|
|
ARCH=powerpc:common64
|
2001-08-27 10:45:55 +00:00
|
|
|
MACHINE=
|
|
|
|
NOP=0x60000000
|
2002-02-18 12:40:28 +00:00
|
|
|
OTHER_TEXT_SECTIONS="*(.sfpr .glink)"
|
2001-08-27 10:45:55 +00:00
|
|
|
BSS_PLT=
|
|
|
|
OTHER_BSS_SYMBOLS="
|
2005-11-18 04:26:29 +00:00
|
|
|
.tocbss ${RELOCATING-0} :${RELOCATING+ ALIGN(8)} { *(.tocbss)}"
|
2001-08-27 10:45:55 +00:00
|
|
|
OTHER_PLT_RELOC_SECTIONS="
|
|
|
|
.rela.tocbss ${RELOCATING-0} : { *(.rela.tocbss) }"
|
2003-07-28 03:33:48 +00:00
|
|
|
|
|
|
|
if test x${RELOCATING+set} = xset; then
|
|
|
|
GOT="
|
2005-11-18 04:26:29 +00:00
|
|
|
.got : ALIGN(8) { *(.got .toc) }"
|
2003-07-28 03:33:48 +00:00
|
|
|
else
|
|
|
|
GOT="
|
|
|
|
.got 0 : { *(.got) }
|
|
|
|
.toc 0 : { *(.toc) }"
|
|
|
|
fi
|
2001-08-27 10:45:55 +00:00
|
|
|
OTHER_GOT_RELOC_SECTIONS="
|
|
|
|
.rela.toc ${RELOCATING-0} : { *(.rela.toc) }"
|
|
|
|
OTHER_READWRITE_SECTIONS="
|
2005-11-18 04:26:29 +00:00
|
|
|
.toc1 ${RELOCATING-0} :${RELOCATING+ ALIGN(8)} { *(.toc1) }
|
2007-02-13 01:53:03 +00:00
|
|
|
.opd ${RELOCATING-0} :${RELOCATING+ ALIGN(8)} { KEEP (*(.opd)) }
|
|
|
|
.branch_lt ${RELOCATING-0} :${RELOCATING+ ALIGN(8)} { *(.branch_lt) }"
|
2002-05-22 08:44:53 +00:00
|
|
|
|
|
|
|
# Treat a host that matches the target with the possible exception of "64"
|
|
|
|
# in the name as if it were native.
|
|
|
|
if test `echo "$host" | sed -e s/64//` = `echo "$target" | sed -e s/64//`; then
|
2003-01-06 16:14:01 +00:00
|
|
|
case " $EMULATION_LIBPATH " in
|
|
|
|
*" ${EMULATION_NAME} "*)
|
|
|
|
NATIVE=yes
|
|
|
|
;;
|
|
|
|
esac
|
2002-05-22 08:44:53 +00:00
|
|
|
fi
|
2003-01-06 16:14:01 +00:00
|
|
|
|
|
|
|
# Look for 64 bit target libraries in /lib64, /usr/lib64 etc., first.
|
|
|
|
case "$EMULATION_NAME" in
|
|
|
|
*64*) LIBPATH_SUFFIX=64 ;;
|
|
|
|
esac
|