* hppaelf.em (group_size): Change default back to 1.
[deliverable/binutils-gdb.git] / ld / emulparams / elf64ppc.sh
CommitLineData
5c67d4bb 1TEMPLATE_NAME=elf32
1f808cd5 2EXTRA_EM_FILE=ppc64elf
5c67d4bb
AM
3ELFSIZE=64
4GENERATE_SHLIB_SCRIPT=yes
5SCRIPT_NAME=elf
6OUTPUT_FORMAT="elf64-powerpc"
7TEXT_START_ADDR=0x10000000
1a3fdaa7 8#SEGMENT_SIZE=0x10000000
a86a09cc 9MAXPAGESIZE=0x10000
120d20f2
AM
10COMMONPAGESIZE=0x1000
11ARCH=powerpc:common64
5c67d4bb
AM
12MACHINE=
13NOP=0x60000000
14EXECUTABLE_SYMBOLS='PROVIDE (__stack = 0); PROVIDE (___stack = 0);'
15OTHER_BSS_END_SYMBOLS='__end = .;'
16CTOR_START='PROVIDE (__CTOR_LIST__ = .); PROVIDE (___CTOR_LIST__ = .);'
17CTOR_END='PROVIDE (__CTOR_END__ = .); PROVIDE (___CTOR_END__ = .);'
18DTOR_START='PROVIDE (__DTOR_LIST__ = .); PROVIDE (___DTOR_LIST__ = .);'
19DTOR_END='PROVIDE (__DTOR_END__ = .); PROVIDE (___DTOR_END__ = .);'
82bd7b59 20OTHER_TEXT_SECTIONS="*(.sfpr .glink)"
5c67d4bb
AM
21BSS_PLT=
22OTHER_BSS_SYMBOLS="
23 .tocbss ${RELOCATING-0}${RELOCATING+ALIGN(8)} : { *(.tocbss)}"
24OTHER_PLT_RELOC_SECTIONS="
25 .rela.tocbss ${RELOCATING-0} : { *(.rela.tocbss) }"
26OTHER_GOT_SECTIONS="
27 .toc ${RELOCATING-0}${RELOCATING+ALIGN(8)} : { *(.toc) }"
28OTHER_GOT_RELOC_SECTIONS="
29 .rela.toc ${RELOCATING-0} : { *(.rela.toc) }"
30OTHER_READWRITE_SECTIONS="
31 .toc1 ${RELOCATING-0}${RELOCATING+ALIGN(8)} : { *(.toc1) }
e3e942e9 32 .opd ${RELOCATING-0}${RELOCATING+ALIGN(8)} : { KEEP (*(.opd)) }"
eb3d6bb8
AM
33
34# Treat a host that matches the target with the possible exception of "64"
35# in the name as if it were native.
36if test `echo "$host" | sed -e s/64//` = `echo "$target" | sed -e s/64//`; then
9c8ebd6a
DJ
37 case " $EMULATION_LIBPATH " in
38 *" ${EMULATION_NAME} "*)
39 NATIVE=yes
40 ;;
41 esac
eb3d6bb8 42fi
9c8ebd6a
DJ
43
44# Look for 64 bit target libraries in /lib64, /usr/lib64 etc., first.
45case "$EMULATION_NAME" in
46 *64*) LIBPATH_SUFFIX=64 ;;
47esac
This page took 0.08911 seconds and 4 git commands to generate.