mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
88bba78dc4
* genscripts.sh: Delete all references to NONPAGED_TEXT_START_ADDR. * ldint.texinfo: Likewise. * emulparams/armaoutb.sh (NONPAGED_TEXT_START_ADDRESS): Delete. * emulparams/armaoutl.sh: Likewise. * emulparams/arcelf.sh (NONPAGED_TEXT_START_ADDR): Delete. * emulparams/bfin.sh: Likewise * emulparams/crisaout.sh: Likewise * emulparams/elf32_sparc.sh: Likewise * emulparams/elf32am33lin.sh: Likewise * emulparams/elf32b4300.sh: Likewise * emulparams/elf32bmip.sh: Likewise * emulparams/elf32mcore.sh: Likewise * emulparams/elf32xtensa.sh: Likewise * emulparams/elf64_s390.sh: Likewise * emulparams/elf64_sparc.sh: Likewise * emulparams/elf64alpha.sh: Likewise * emulparams/elf_i386.sh: Likewise * emulparams/elf_i386_be.sh: Likewise * emulparams/elf_i386_chaos.sh: Likewise * emulparams/elf_i386_ldso.sh: Likewise * emulparams/elf_i386_vxworks.sh: Likewise * emulparams/elf_s390.sh: Likewise * emulparams/elf_x86_64.sh: Likewise * emulparams/i386aout.sh: Likewise * emulparams/i386moss.sh: Likewise * emulparams/i386msdos.sh: Likewise * emulparams/i386nto.sh: Likewise * emulparams/i386nw.sh: Likewise * emulparams/m68kaout.sh: Likewise * emulparams/m68kelf.sh: Likewise * emulparams/ppcnw.sh: Likewise * emulparams/sun4.sh: Likewise * emulparams/tic80coff.sh: Likewise * emulparams/vaxnbsd.sh: Likewise * emulparams/armnbsd.sh (NONPAGED_TEXT_START_ADDR): Delete. (TEXT_START_ADDR): Set for -n, -N. * emulparams/coff_sparc.sh: Likewise * emulparams/elf32vax.sh: Likewise * emulparams/i386bsd.sh: Likewise * emulparams/i386go32.sh: Likewise * emulparams/i386linux.sh: Likewise * emulparams/i386lynx.sh: Likewise * emulparams/i386mach.sh: Likewise * emulparams/m68k4knbsd.sh: Likewise * emulparams/m68klinux.sh: Likewise * emulparams/m68knbsd.sh: Likewise * emulparams/ns32knbsd.sh: Likewise * emulparams/pc532macha.sh: Likewise * emulparams/ppclynx.sh: Likewise * emulparams/scoreelf.sh: Likewise * emulparams/sparcaout.sh: Likewise * emulparams/sparclinux.sh: Likewise * emulparams/sun3.sh: Likewise * emulparams/vsta.sh: Likewise
51 lines
1.5 KiB
Bash
51 lines
1.5 KiB
Bash
# This file is sourced by the genscripts.sh script.
|
|
# These are shell variables that are used later by either genscripts
|
|
# or on of the scripts that it sources.
|
|
|
|
# The name of the scripttempl script to use. In this case, genscripts
|
|
# uses scripttempl/tic80coff.sc
|
|
#
|
|
SCRIPT_NAME=tic80coff
|
|
|
|
# The name of the emultempl script to use. If set to "template" then
|
|
# genscripts.sh will use the script emultempl/template.em. If not set,
|
|
# then the default value is "generic".
|
|
#
|
|
# TEMPLATE_NAME=
|
|
|
|
# If this is set to an nonempty string, genscripts.sh will invoke the
|
|
# scripttempl script an extra time to create a shared library script.
|
|
#
|
|
# GENERATE_SHLIB_SCRIPT=
|
|
|
|
# The BFD output format to use. The scripttempl script will use it in
|
|
# an OUTPUT_FORMAT expression in the linker script.
|
|
#
|
|
OUTPUT_FORMAT="coff-tic80"
|
|
|
|
# This is normally set to indicate the architecture to use, such as
|
|
# "sparc". The scripttempl script will normally use it in an OUTPUT_ARCH
|
|
# expression in the linker script.
|
|
#
|
|
ARCH=tic80
|
|
|
|
# Some scripttempl scripts use this to set the entry address in an ENTRY
|
|
# expression in the linker script.
|
|
#
|
|
# ENTRY=
|
|
|
|
# The scripttempl script uses this to set the start address of the
|
|
# ".text" section.
|
|
#
|
|
TEXT_START_ADDR=0x2000000
|
|
|
|
# The genscripts.sh script uses this to set the default value of
|
|
# DATA_ALIGNMENT when running the scripttempl script.
|
|
#
|
|
# SEGMENT_SIZE=
|
|
|
|
# If SEGMENT_SIZE is not defined, the genscripts.sh script uses this
|
|
# to define it.
|
|
#
|
|
TARGET_PAGE_SIZE=0x1000
|