mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
1c9c9b9b55
This makes it possible to build ld without any compiled-in scripts, by setting COMPILE_IN=no in the environment. pe, beos and pdp11 targets didn't support scripts from the file system, with pdp11 nastily editing the ld/ldscripts file so that the built-in script didn't match. PR 27226 * emulparams/alphavms.sh: Don't set COMPILE_IN. * emulparams/elf64_ia64_vms.sh: Likewise. * emulparams/elf64mmix.sh: Likewise. * emulparams/elf_iamcu.sh: Likewise. * emulparams/elf_k1om.sh: Likewise. * emulparams/elf_l1om.sh: Likewise. * emulparams/mmo.sh: Likewise. * emulparams/pdp11.sh: Set DATA_SEG_ADDR. * scripttempl/pdp11.sc: Use it. * emultempl/pdp11.em: Don't edit .xn script for separate_code, instead use .xe script. Support scripts from file system. * emultempl/beos.em: Support scripts from file system. * emultempl/pe.em: Likewise. * emultempl/pep.em: Likewise. * testsuite/ld-bootstrap/bootstrap.exp: Make tmpdir/ldscripts link.
37 lines
953 B
Bash
37 lines
953 B
Bash
source_sh ${srcdir}/emulparams/plt_unwind.sh
|
|
source_sh ${srcdir}/emulparams/extern_protected_data.sh
|
|
source_sh ${srcdir}/emulparams/dynamic_undefined_weak.sh
|
|
source_sh ${srcdir}/emulparams/call_nop.sh
|
|
SCRIPT_NAME=elf
|
|
OUTPUT_FORMAT="elf32-iamcu"
|
|
NO_RELA_RELOCS=yes
|
|
TEXT_START_ADDR=0x08048000
|
|
MAXPAGESIZE="CONSTANT (MAXPAGESIZE)"
|
|
COMMONPAGESIZE="CONSTANT (COMMONPAGESIZE)"
|
|
ARCH=iamcu
|
|
MACHINE=
|
|
TEMPLATE_NAME=elf
|
|
EXTRA_EM_FILE="elf-x86"
|
|
GENERATE_SHLIB_SCRIPT=yes
|
|
GENERATE_PIE_SCRIPT=yes
|
|
NO_SMALL_DATA=yes
|
|
SEPARATE_GOTPLT="SIZEOF (.got.plt) >= 12 ? 12 : 0"
|
|
IREL_IN_PLT=
|
|
# These sections are placed right after .plt section.
|
|
OTHER_PLT_SECTIONS="
|
|
.plt.got ${RELOCATING-0} : { *(.plt.got) }
|
|
"
|
|
|
|
# Linux modify the default library search path to first include
|
|
# a 32-bit specific directory.
|
|
case "$target" in
|
|
x86_64*-linux* | i[3-7]86*-linux*)
|
|
case "$EMULATION_NAME" in
|
|
*i386*)
|
|
LIBPATH_SUFFIX=32
|
|
LIBPATH_SUFFIX_SKIP=64
|
|
;;
|
|
esac
|
|
;;
|
|
esac
|