mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
cbb54a288a
No real changes here, just making it that much easier to find targets that set EMBEDDED to a non-empty string. * emulparams/elf32bfinfd.sh: Unset EMBEDDED rather assigning as empty. * emulparams/elf32frvfd.sh: Likewise. * emulparams/elf32lm32fd.sh: Likewise. * emulparams/i386lynx.sh: Likewise.
22 lines
481 B
Bash
22 lines
481 B
Bash
SCRIPT_NAME=elf
|
|
OUTPUT_FORMAT="elf32-i386"
|
|
NO_RELA_RELOCS=yes
|
|
ENTRY=_main
|
|
TEXT_BASE=0x0
|
|
DYN_TEXT_BASE=0x00400000
|
|
TEXT_START_ADDR="(DEFINED(_DYNAMIC) ? ${DYN_TEXT_BASE} : ${TEXT_BASE})"
|
|
case ${LD_FLAG} in
|
|
n|N) TEXT_START_ADDR=0x1000 ;;
|
|
esac
|
|
MAXPAGESIZE="CONSTANT (MAXPAGESIZE)"
|
|
ARCH=i386
|
|
MACHINE=
|
|
NOP=0x9090
|
|
TEMPLATE_NAME=elf
|
|
EXTRA_EM_FILE="elf-x86"
|
|
GENERATE_SHLIB_SCRIPT=yes
|
|
ELF_INTERPRETER_NAME=\"/usr/lib/ld.so.1\"
|
|
|
|
# Leave room of SIZEOF_HEADERS before text.
|
|
unset EMBEDDED
|