1999-05-03 15:29:11 +08:00
|
|
|
## Process this file with automake to generate Makefile.in
|
|
|
|
|
|
|
|
## FIXME: work around apparent automake bug.
|
|
|
|
INTLLIBS = @INTLLIBS@
|
|
|
|
|
|
|
|
AUTOMAKE_OPTIONS = cygnus dejagnu
|
|
|
|
|
|
|
|
SUBDIRS = po
|
|
|
|
|
|
|
|
tooldir = $(exec_prefix)/$(target_alias)
|
|
|
|
|
1999-08-06 00:03:56 +08:00
|
|
|
YACC = `if [ -f ../bison/bison ]; then echo ../bison/bison -y -L$(srcdir)/../bison/; else echo @YACC@; fi`
|
1999-05-03 15:29:11 +08:00
|
|
|
YFLAGS = -d
|
1999-08-06 00:03:56 +08:00
|
|
|
LEX = `if [ -f ../flex/flex ]; then echo ../flex/flex; else echo @LEX@; fi`
|
1999-05-03 15:29:11 +08:00
|
|
|
|
2000-04-09 20:17:43 +08:00
|
|
|
WARN_CFLAGS = @WARN_CFLAGS@
|
2005-04-14 13:26:44 +08:00
|
|
|
NO_WERROR = @NO_WERROR@
|
2000-04-09 20:17:43 +08:00
|
|
|
AM_CFLAGS = $(WARN_CFLAGS)
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
# We put the scripts in the directory $(scriptdir)/ldscripts.
|
|
|
|
# We can't put the scripts in $(datadir) because the SEARCH_DIR
|
|
|
|
# directives need to be different for native and cross linkers.
|
|
|
|
scriptdir = $(tooldir)/lib
|
|
|
|
|
|
|
|
EMUL = @EMUL@
|
|
|
|
EMULATION_OFILES = @EMULATION_OFILES@
|
|
|
|
EMUL_EXTRA_OFILES = @EMUL_EXTRA_OFILES@
|
|
|
|
|
|
|
|
# Search path to override the default search path for -lfoo libraries.
|
|
|
|
# If LIB_PATH is empty, the ones in the script (if any) are left alone.
|
|
|
|
# (The default is usually /lib:/usr/lib:/usr/local/lib, unless building
|
|
|
|
# a cross-linker, in which case the default is empty. See genscripts.sh.)
|
|
|
|
# Otherwise, they are replaced with the ones given in LIB_PATH,
|
2002-08-23 16:03:32 +08:00
|
|
|
# which may have the form: LIB_PATH=/lib:/usr/local/lib. This can be set
|
|
|
|
# when the linker is configured via the --with-lib-path configure switch.
|
|
|
|
LIB_PATH = @LIB_PATH@
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
BASEDIR = $(srcdir)/..
|
|
|
|
BFDDIR = $(BASEDIR)/bfd
|
|
|
|
INCDIR = $(BASEDIR)/include
|
2000-04-04 18:53:56 +08:00
|
|
|
MKDEP = gcc -MM
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
# What version of the manual to build
|
|
|
|
DOCVER = gen
|
|
|
|
|
2001-03-26 04:32:31 +08:00
|
|
|
# Options to extract the man page from ld.texinfo
|
|
|
|
MANCONF = -Dman
|
|
|
|
|
|
|
|
TEXI2POD = perl $(BASEDIR)/etc/texi2pod.pl
|
|
|
|
|
2001-11-10 04:30:40 +08:00
|
|
|
POD2MAN = pod2man --center="GNU Development Tools" \
|
|
|
|
--release="binutils-$(VERSION)" --section=1
|
2001-03-26 04:32:31 +08:00
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
#stuff for self hosting (can be overridden in config file).
|
|
|
|
HOSTING_CRT0 = @HOSTING_CRT0@
|
|
|
|
HOSTING_LIBS = @HOSTING_LIBS@
|
|
|
|
HOSTING_EMU = -m $(EMUL)
|
|
|
|
|
|
|
|
# Setup the testing framework, if you have one
|
2005-06-30 04:30:00 +08:00
|
|
|
EXPECT = expect
|
|
|
|
RUNTEST = runtest
|
1999-05-03 15:29:11 +08:00
|
|
|
RUNTESTFLAGS =
|
|
|
|
|
|
|
|
CC_FOR_TARGET = ` \
|
|
|
|
if [ -f $$r/../gcc/xgcc ] ; then \
|
|
|
|
if [ -f $$r/../newlib/Makefile ] ; then \
|
|
|
|
echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \
|
|
|
|
else \
|
|
|
|
echo $$r/../gcc/xgcc -B$$r/../gcc/; \
|
|
|
|
fi; \
|
|
|
|
else \
|
|
|
|
if [ "@host@" = "@target@" ] ; then \
|
|
|
|
echo $(CC); \
|
|
|
|
else \
|
|
|
|
echo gcc | sed '$(transform)'; \
|
|
|
|
fi; \
|
|
|
|
fi`
|
|
|
|
|
|
|
|
CXX = gcc
|
|
|
|
CXX_FOR_TARGET = ` \
|
|
|
|
if [ -f $$r/../gcc/xgcc ] ; then \
|
|
|
|
if [ -f $$r/../newlib/Makefile ] ; then \
|
|
|
|
echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \
|
|
|
|
else \
|
|
|
|
echo $$r/../gcc/xgcc -B$$r/../gcc/; \
|
|
|
|
fi; \
|
|
|
|
else \
|
|
|
|
if [ "@host@" = "@target@" ] ; then \
|
|
|
|
echo $(CXX); \
|
|
|
|
else \
|
|
|
|
echo gcc | sed '$(transform)'; \
|
|
|
|
fi; \
|
|
|
|
fi`
|
|
|
|
|
|
|
|
noinst_PROGRAMS = ld-new
|
|
|
|
info_TEXINFOS = ld.texinfo
|
|
|
|
noinst_TEXINFOS = ldint.texinfo
|
|
|
|
man_MANS = ld.1
|
|
|
|
|
2005-05-18 03:41:29 +08:00
|
|
|
AM_MAKEINFOFLAGS = -I $(srcdir) -I $(BFDDIR)/doc
|
|
|
|
TEXI2DVI = texi2dvi -I $(srcdir) -I $(BFDDIR)/doc
|
2005-05-16 02:19:45 +08:00
|
|
|
|
2004-12-01 01:20:48 +08:00
|
|
|
INCLUDES = -D_GNU_SOURCE -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR) -I$(top_srcdir)/../intl -I../intl $(HDEFINES) $(CFLAGS) -DLOCALEDIR="\"$(datadir)/locale\""
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
BFDLIB = ../bfd/libbfd.la
|
|
|
|
LIBIBERTY = ../libiberty/libiberty.a
|
|
|
|
|
|
|
|
ALL_EMULATIONS = \
|
|
|
|
ea29k.o \
|
|
|
|
eaixppc.o \
|
|
|
|
eaixrs6.o \
|
|
|
|
ealpha.o \
|
|
|
|
earcelf.o \
|
2000-07-09 16:45:29 +08:00
|
|
|
earm_epoc_pe.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
earmaoutb.o \
|
|
|
|
earmaoutl.o \
|
|
|
|
earmcoff.o \
|
2000-07-09 16:45:29 +08:00
|
|
|
earmelf.o \
|
2003-05-10 04:05:04 +08:00
|
|
|
earmelfb.o \
|
2002-02-20 14:52:34 +08:00
|
|
|
earmelf_fbsd.o \
|
2000-07-09 16:45:29 +08:00
|
|
|
earmelf_linux.o \
|
2004-11-20 03:28:40 +08:00
|
|
|
earmelf_linux_eabi.o \
|
2003-05-10 04:05:04 +08:00
|
|
|
earmelfb_linux.o \
|
2005-01-21 03:37:49 +08:00
|
|
|
earmelfb_linux_eabi.o \
|
2001-12-20 11:19:43 +08:00
|
|
|
earmelf_nbsd.o \
|
2002-05-21 23:11:04 +08:00
|
|
|
earmelfb_nbsd.o \
|
2005-01-07 00:18:25 +08:00
|
|
|
earmelf_vxworks.o \
|
2002-07-31 01:32:30 +08:00
|
|
|
earmnto.o \
|
1999-08-24 23:17:23 +08:00
|
|
|
earmnbsd.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
earmpe.o \
|
2004-09-04 01:15:44 +08:00
|
|
|
earmsymbian.o \
|
2002-05-17 13:55:14 +08:00
|
|
|
eavr2.o \
|
2003-10-20 00:46:14 +08:00
|
|
|
eavr1.o \
|
2002-05-17 13:55:14 +08:00
|
|
|
eavr3.o \
|
|
|
|
eavr4.o \
|
|
|
|
eavr5.o \
|
2003-08-06 10:19:05 +08:00
|
|
|
ecoff_i860.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
ecoff_sparc.o \
|
2000-07-21 01:16:06 +08:00
|
|
|
ecrisaout.o \
|
|
|
|
ecriself.o \
|
|
|
|
ecrislinux.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
ed10velf.o \
|
|
|
|
ed30v_e.o \
|
|
|
|
ed30v_o.o \
|
2000-07-09 16:45:29 +08:00
|
|
|
ed30velf.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
edelta68.o \
|
2002-05-28 22:08:47 +08:00
|
|
|
eelf32_dlx.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
eebmon29k.o \
|
1999-05-28 05:49:21 +08:00
|
|
|
eelf32_i960.o \
|
2000-08-11 04:40:39 +08:00
|
|
|
eelf32_i860.o \
|
2000-07-09 16:45:29 +08:00
|
|
|
eelf32_sparc.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
eelf32b4300.o \
|
2004-03-30 22:04:32 +08:00
|
|
|
eelf32cr16c.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
eelf32bmip.o \
|
1999-07-01 05:00:10 +08:00
|
|
|
eelf32bmipn32.o \
|
2000-07-02 09:15:56 +08:00
|
|
|
eelf32btsmip.o \
|
2004-07-08 01:28:53 +08:00
|
|
|
eelf32crx.o \
|
2002-07-31 07:48:30 +08:00
|
|
|
eelf32btsmipn32.o \
|
2001-04-08 13:13:57 +08:00
|
|
|
eelf32ltsmip.o \
|
2002-07-31 07:48:30 +08:00
|
|
|
eelf32ltsmipn32.o \
|
2000-07-09 16:45:29 +08:00
|
|
|
eelf32ebmip.o \
|
|
|
|
eelf32elmip.o \
|
|
|
|
eelf32fr30.o \
|
2002-06-19 05:17:27 +08:00
|
|
|
eelf32frv.o \
|
2000-02-23 21:52:23 +08:00
|
|
|
eelf32i370.o \
|
2002-07-17 22:15:52 +08:00
|
|
|
eelf32ip2k.o \
|
2003-01-04 10:04:44 +08:00
|
|
|
eelf32iq2000.o \
|
|
|
|
eelf32iq10.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
eelf32l4300.o \
|
|
|
|
eelf32lmip.o \
|
|
|
|
eelf32lppc.o \
|
2002-08-09 23:38:24 +08:00
|
|
|
eelf32lppcnto.o \
|
2000-04-15 05:18:23 +08:00
|
|
|
eelf32lppcsim.o \
|
ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
* configure.in: Add cases for Renesas m32c.
* configure: Regenerated.
bfd/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
Add support for m32c-*-elf (Renesas m32c and m16c).
* Makefile.am (ALL_MACHINES): Add cpu-m32c.lo.
(ALL_MACHINES_CFILES): Add cpu-m32c.c.
(BFD32_BACKENDS): Add elf32-m32c.lo.
(BFD32_BACKENDS_CFILES): Add elf32-m32c.c.
(cpu-m32c.lo, elf32-m32c.lo): New rules, generated by 'make dep-am'.
* Makefile.in: Regenerated.
* archures.c (bfd_arch_m32c, bfd_mach_m16c, bfd_mach_m32c): New
arch and mach codes.
(bfd_m32c_arch): New arch info object.
(bfd_archures_list): List bfd_m32c_arch.
* bfd-in2.h: Regenerated.
* config.bfd: Add case for the m32c.
* configure.in: Add case for the m32c.
* configure: Regenerated.
* cpu-m32c.c, elf32-m32c.c: New files.
* libbfd.h: Regenerated.
* targets.c (bfd_elf32_m32c_vec): Declare.
(_bfd_target_vector): List bfd_elf32_m32c_vec.
binutils/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
* readelf.c: #include "elf/m32c.h"
(guess_is_rela, dump_relocations, get_machine_name): Add cases for
EM_M32C.
* Makefile.am (readelf.o): Update dependencies.
* Makefile.in: Regenerated.
cpu/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
* m32c.cpu, m32c.opc: Machine description for the Renesas M32C.
gas/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
Add support for the Renesas M32C.
* Makefile.am (CPU_TYPES): List m32c.
(TARGET_CPU_CFILES): List config/tc-m32c.c.
(TARGET_CPU_HFILES): List config/tc-m32c.h.
* configure.in: Add case for m32c.
* configure.tgt: Add cases for m32c and m32c-*-elf.
* configure: Regenerated.
* config/tc-m32c.c, config/tc-m32c.h: New files.
* doc/Makefile.am (CPU_DOCS): Add c-m32c.texi.
* doc/Makefile.in: Regenerated.
* doc/all.texi: Set M32C.
* doc/as.texinfo: Add text for the M32C-specific options and line
comment characters, and refer to c-m32c.texi.
* doc/c-m32c.texi: New file.
include/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
* dis-asm.h (print_insn_m32c): New declaration.
include/elf/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
Add support for Renesas M32C and M16C.
* common.h (EM_M32C): New machine number.
* m32c.h: New file.
ld/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
Add support for the Renesas M32C and M16C.
* Makefile.am (ALL_EMULATIONS): Add eelf32m32c.o.
(eelf32m32c.c): New target.
* Makefile.in: Regenerated.
* configure.tgt: Add case for m32c-*-elf.
* emulparams/elf32m32c.sh: New file.
opcodes/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
Add support for the Renesas M32C and M16C.
* m32c-asm.c, m32c-desc.c, m32c-dis.c, m32c-ibld.c, m32c-opc.c: New.
* m32c-desc.h, m32c-opc.h: New.
* Makefile.am (HFILES): List m32c-desc.h and m32c-opc.h.
(CFILES): List m32c-asm.c, m32c-desc.c, m32c-dis.c, m32c-ibld.c,
m32c-opc.c.
(ALL_MACHINES): List m32c-asm.lo, m32c-desc.lo, m32c-dis.lo,
m32c-ibld.lo, m32c-opc.lo.
(CLEANFILES): List stamp-m32c.
(M32C_DEPS): List stamp-m32c, if CGEN_MAINT.
(CGEN_CPUS): Add m32c.
(m32c-asm.c, m32c-desc.c, m32c-dis.c, m32c-ibld.c, m32c-opc.c)
(m32c-desc.h, m32c-opc.h): Depend on M32C_DEPS.
(m32c_opc_h): New variable.
(stamp-m32c, m32c-asm.lo, m32c-desc.lo, m32c-dis.lo, m32c-ibld.lo)
(m32c-opc.lo): New rules.
* Makefile.in: Regenerated.
* configure.in: Add case for bfd_m32c_arch.
* configure: Regenerated.
* disassemble.c (ARCH_m32c): New.
[ARCH_m32c]: #include "m32c-desc.h".
(disassembler) [ARCH_m32c]: Add case for bfd_arch_m32c.
(disassemble_init_for_target) [ARCH_m32c]: Same.
* cgen-ops.h, cgen-types.h: New files.
* Makefile.am (HFILES): List them.
* Makefile.in: Regenerated.
2005-07-15 06:52:28 +08:00
|
|
|
eelf32m32c.o \
|
2000-07-09 16:45:29 +08:00
|
|
|
eelf32mcore.o \
|
2003-10-30 17:47:15 +08:00
|
|
|
eelf32mipswindiss.o \
|
2005-06-08 05:12:16 +08:00
|
|
|
eelf32ms1.o \
|
2001-05-03 02:14:31 +08:00
|
|
|
eelf32openrisc.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
eelf32ppc.o \
|
2002-02-20 14:52:34 +08:00
|
|
|
eelf32ppc_fbsd.o \
|
1999-05-30 23:55:31 +08:00
|
|
|
eelf32ppclinux.o \
|
2002-08-09 23:38:24 +08:00
|
|
|
eelf32ppcnto.o \
|
2000-07-09 16:45:29 +08:00
|
|
|
eelf32ppcsim.o \
|
2002-05-01 01:49:01 +08:00
|
|
|
eelf32ppcwindiss.o \
|
2005-05-07 Paul Brook <paul@codesourcery.com>
bfd/
* config.bfd: Add separate case for ppc-vxworks.
* configure: Regenerate.
* configure.in: Include elf-vxworks.lo on ppc targets.
* elf-vxworks.c (elf_vxworks_final_write_processing): Handle
.rela.plt.unloaded.
* elf32-ppc.c: Add VxWorks target vec. Include elf-vxworks.h.
(PLT_ENTRY_SIZE, PLT_INITIAL_ENTRY_SIZE, PLT_SLOT_SIZE): Remove.
(VXWORKS_PLT_ENTRY_SIZE, ppc_elf_vxworks_plt_entry,
ppc_elf_vxworks_pic_plt_entry, VXWORKS_PLT_INITIAL_ENTRY_SIZE,
ppc_elf_vxworks_plt0_entry, ppc_elf_vxworks_pic_plt0_entry,
VXWORKS_PLT_NON_JMP_SLOT_RELOCS, VXWORKS_PLTRESOLVE_RELOCS,
VXWORKS_PLTRESOLVE_RELOCS_SHLIB): New.
(ppc_elf_link_hash_table): Add srelplt2, sgotplt, hgot, hplt,
is_vxworks, plt_entry_size, plt_slot_size, plt_initial_entry_size.
(ppc_elf_link_hash_table_create): Initialize hadtab plt fields.
(ppc_elf_create_got): Create .got.plt for VxWorks.
(ppc_elf_create_dynamic_sections): Create unloaded plt relocation
section for VxWorks.
(ppc_elf_select_plt_layout): Handle VxWorks plt format.
(allocate_got): VxWorks does not need a got header.
(allocate_dynrelocs): Handle VxWorks plt format.
(ppc_elf_size_dynamic_sections): Save _G_O_T_ and _P_L_T_ symbols for
VxWorks. Handle VxWorks plt/got.
(ppc_elf_finish_dynamic_sections): Fill in VxWorks plt.
(ppc_elf_vxworks_special_sections): New.
(ppc_elf_vxworks_link_hash_table_create,
ppc_elf_vxworks_add_symbol_hook,
elf_i386_vxworks_link_output_symbol_hook,
ppc_elf_vxworks_final_write_processing): New functions.
* targets.c (bfd_elf32_powerpc_vxworks_vec): Declare.
(_bfd_target_vector): Use it.
gas/
* config/tc-ppc.c (ppc_target_format): Add VxWorks.
gas/testsuite/
* gas/ppc/altivec.d: Match all powerpc target vecs.
* gas/ppc/booke.d: Ditto.
* gas/ppc/e500.d: Ditto.
ld/
* Makefile.am (ALL_EMULATIONS): Add eelf32ppcvxworks.o.
(eelf32ppcvxworks.o): Add dependencies.
* Makefile.in: Regenerate.
* configure.tgt: Add entry for powerpc-vxworks.
* emulparams/elf32-ppc.c: Mention elf32ppcvxworks.sh in comment.
* emulparams/elf32ppcvxworks.sh: New file.
* emultempl/ppc32elf.em (bfd_elf32_powerpc_vxworks_vec): Declare.
(is_ppc_elf32_vec): New function.
(ppc_after_open, ppc_before_allocation,
gld${EMULATION_NAME}_after_allocation): Use it.
2005-07-05 21:25:56 +08:00
|
|
|
eelf32ppcvxworks.o \
|
2002-05-30 10:40:03 +08:00
|
|
|
eelf32vax.o \
|
2001-12-08 11:46:03 +08:00
|
|
|
eelf32xstormy16.o \
|
2003-04-01 23:50:31 +08:00
|
|
|
eelf32xtensa.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
eelf_i386.o \
|
|
|
|
eelf_i386_be.o \
|
2000-11-05 14:27:15 +08:00
|
|
|
eelf_i386_chaos.o \
|
2002-02-20 14:52:34 +08:00
|
|
|
eelf_i386_fbsd.o \
|
2001-05-22 22:00:18 +08:00
|
|
|
eelf_i386_ldso.o \
|
2005-05-05 22:37:27 +08:00
|
|
|
eelf_i386_vxworks.o \
|
2001-02-10 08:58:38 +08:00
|
|
|
eelf_s390.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
egld960.o \
|
|
|
|
egld960coff.o \
|
|
|
|
eh8300.o \
|
|
|
|
eh8300h.o \
|
|
|
|
eh8300s.o \
|
2001-08-29 20:51:26 +08:00
|
|
|
eh8300elf.o \
|
2003-04-24 20:36:08 +08:00
|
|
|
eh8300hn.o \
|
|
|
|
eh8300sn.o \
|
2003-06-04 05:43:52 +08:00
|
|
|
eh8300sx.o \
|
2001-08-29 20:51:26 +08:00
|
|
|
eh8300helf.o \
|
|
|
|
eh8300self.o \
|
2003-04-24 20:36:08 +08:00
|
|
|
eh8300hnelf.o \
|
|
|
|
eh8300snelf.o \
|
2003-06-04 05:43:52 +08:00
|
|
|
eh8300sxelf.o \
|
2003-06-10 15:09:31 +08:00
|
|
|
eh8300sxn.o \
|
|
|
|
eh8300sxnelf.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
eh8500.o \
|
|
|
|
eh8500b.o \
|
|
|
|
eh8500c.o \
|
|
|
|
eh8500m.o \
|
|
|
|
eh8500s.o \
|
|
|
|
ehp300bsd.o \
|
|
|
|
ehp3hpux.o \
|
2000-07-09 16:45:29 +08:00
|
|
|
ehppaelf.o \
|
|
|
|
ehppalinux.o \
|
2002-02-03 02:36:04 +08:00
|
|
|
ehppanbsd.o \
|
2002-07-09 10:42:13 +08:00
|
|
|
ehppaobsd.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
ei386aout.o \
|
|
|
|
ei386beos.o \
|
|
|
|
ei386bsd.o \
|
|
|
|
ei386coff.o \
|
|
|
|
ei386go32.o \
|
|
|
|
ei386linux.o \
|
|
|
|
ei386lynx.o \
|
|
|
|
ei386mach.o \
|
|
|
|
ei386moss.o \
|
|
|
|
ei386msdos.o \
|
|
|
|
ei386nbsd.o \
|
2002-05-31 11:02:35 +08:00
|
|
|
ei386nto.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
ei386nw.o \
|
|
|
|
ei386pe.o \
|
1999-08-06 00:03:56 +08:00
|
|
|
ei386pe_posix.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
elnk960.o \
|
2003-06-11 07:29:19 +08:00
|
|
|
em32relf.o \
|
2003-12-19 19:44:01 +08:00
|
|
|
em32rlelf.o \
|
|
|
|
em32relf_linux.o \
|
|
|
|
em32rlelf_linux.o \
|
2000-06-19 09:22:44 +08:00
|
|
|
em68hc11elf.o \
|
|
|
|
em68hc11elfb.o \
|
|
|
|
em68hc12elf.o \
|
|
|
|
em68hc12elfb.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
em68k4knbsd.o \
|
|
|
|
em68kaout.o \
|
|
|
|
em68kaux.o \
|
|
|
|
em68kcoff.o \
|
|
|
|
em68kelf.o \
|
2001-12-18 21:26:26 +08:00
|
|
|
em68kelfnbsd.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
em68klinux.o \
|
|
|
|
em68knbsd.o \
|
|
|
|
em68kpsos.o \
|
|
|
|
em88kbcs.o \
|
2004-11-08 21:17:43 +08:00
|
|
|
emaxqcoff.o \
|
1999-05-07 15:40:05 +08:00
|
|
|
emcorepe.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
emipsbig.o \
|
|
|
|
emipsbsd.o \
|
|
|
|
emipsidt.o \
|
|
|
|
emipsidtl.o \
|
|
|
|
emipslit.o \
|
|
|
|
emipslnews.o \
|
2000-02-25 01:53:12 +08:00
|
|
|
emipspe.o \
|
2003-08-08 18:14:52 +08:00
|
|
|
emsp430x110.o \
|
|
|
|
emsp430x112.o \
|
2002-12-31 03:25:13 +08:00
|
|
|
emsp430x1101.o \
|
|
|
|
emsp430x1111.o \
|
|
|
|
emsp430x1121.o \
|
2003-03-05 01:02:40 +08:00
|
|
|
emsp430x1122.o \
|
|
|
|
emsp430x1132.o \
|
2002-12-31 03:25:13 +08:00
|
|
|
emsp430x122.o \
|
|
|
|
emsp430x123.o \
|
2003-08-08 18:14:52 +08:00
|
|
|
emsp430x1222.o \
|
2002-12-31 03:25:13 +08:00
|
|
|
emsp430x1232.o \
|
2003-08-08 18:14:52 +08:00
|
|
|
emsp430x133.o \
|
|
|
|
emsp430x135.o \
|
|
|
|
emsp430x1331.o \
|
|
|
|
emsp430x1351.o \
|
|
|
|
emsp430x147.o \
|
|
|
|
emsp430x148.o \
|
|
|
|
emsp430x149.o \
|
|
|
|
emsp430x155.o \
|
|
|
|
emsp430x156.o \
|
|
|
|
emsp430x157.o \
|
|
|
|
emsp430x167.o \
|
|
|
|
emsp430x168.o \
|
|
|
|
emsp430x169.o \
|
2004-07-26 20:29:02 +08:00
|
|
|
emsp430x1610.o \
|
|
|
|
emsp430x1611.o \
|
|
|
|
emsp430x1612.o \
|
2002-12-31 03:25:13 +08:00
|
|
|
emsp430x311.o \
|
|
|
|
emsp430x312.o \
|
|
|
|
emsp430x313.o \
|
|
|
|
emsp430x314.o \
|
|
|
|
emsp430x315.o \
|
|
|
|
emsp430x323.o \
|
|
|
|
emsp430x325.o \
|
|
|
|
emsp430x336.o \
|
|
|
|
emsp430x337.o \
|
2003-08-08 18:14:52 +08:00
|
|
|
emsp430x412.o \
|
|
|
|
emsp430x413.o \
|
2004-07-26 20:29:02 +08:00
|
|
|
emsp430x415.o \
|
|
|
|
emsp430x417.o \
|
2003-08-08 18:14:52 +08:00
|
|
|
emsp430xE423.o \
|
|
|
|
emsp430xE425.o \
|
|
|
|
emsp430xE427.o \
|
|
|
|
emsp430xW423.o \
|
|
|
|
emsp430xW425.o \
|
|
|
|
emsp430xW427.o \
|
2004-07-26 20:29:02 +08:00
|
|
|
emsp430xG437.o \
|
|
|
|
emsp430xG438.o \
|
|
|
|
emsp430xG439.o \
|
2002-12-31 03:25:13 +08:00
|
|
|
emsp430x435.o \
|
|
|
|
emsp430x436.o \
|
2003-08-08 18:14:52 +08:00
|
|
|
emsp430x437.o \
|
2002-12-31 03:25:13 +08:00
|
|
|
emsp430x447.o \
|
|
|
|
emsp430x448.o \
|
|
|
|
emsp430x449.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
enews.o \
|
|
|
|
ens32knbsd.o \
|
2002-02-01 01:33:08 +08:00
|
|
|
eor32.o \
|
|
|
|
eor32elf.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
epc532macha.o \
|
2001-02-19 07:33:11 +08:00
|
|
|
epdp11.o \
|
2000-07-09 16:45:29 +08:00
|
|
|
epjelf.o \
|
|
|
|
epjlelf.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
eppcmacos.o \
|
|
|
|
eppcnw.o \
|
|
|
|
eppcpe.o \
|
2004-05-18 03:50:16 +08:00
|
|
|
eppclynx.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
eriscix.o \
|
|
|
|
esa29200.o \
|
|
|
|
esh.o \
|
Contribute sh64-elf.
2002-01-24 Alexandre Oliva <aoliva@redhat.com>
* emulparams/shelf32.sh (STACK_ADDR): Define as formerly defined
in OTHER_RELOCATABLE_SECTIONS.
2002-01-18 Alexandre Oliva <aoliva@redhat.com>
* emulparams/shelf32.sh (STACK_ADDR): Define.
(OTHER_RELOCATABLE_SECTIONS): Renamed to...
(OTHER_SECTIONS): this. Removed stack settings.
* emulparams/shelf64.sh (OTHER_RELOCATABLE_SECTIONS): Do not set.
(OTHER_SECTIONS): Reset after sourcing shelf32.sh.
2001-03-12 DJ Delorie <dj@redhat.com>
* emultempl/sh64elf.em (sh64_elf_$_before_allocation): Disable
relaxing if any shmedia or mixed sections are found.
2001-03-07 DJ Delorie <dj@redhat.com>
* emultempl/sh64elf.em (sh64_elf_before_allocation): Pass f to
einfo. Gracefully decline to output to non-elf formats.
2001-03-06 Hans-Peter Nilsson <hpn@redhat.com>
* emulparams/shelf64.sh (OTHER_RELOCATING_SECTIONS) <.stack>:
Default to _end aligned to next multiple of 0x40000, plus 0x40000.
* emulparams/shelf32.sh: Ditto.
2001-01-14 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf32.sh (OTHER_RELOCATING_SECTIONS): Tweak
comment.
2001-01-10 Ben Elliston <bje@redhat.com>
* emulparams/shelf32.sh (OTHER_RELOCATING_SECTIONS): Avoid
non-portable shell constructs. From Hans-Peter Nilsson.
2001-01-09 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf64.sh (EXTRA_EM_FILE): Define empty.
* Makefile.am (eshelf64.c, eshlelf64.c, eshlelf32.c): Adjust
dependencies to the shell script include chain.
* Makefile.in: Regenerate.
2001-01-06 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em: Update and tweak comments.
(sh64_elf_${EMULATION_NAME}_after_allocation): Always allocate and
make a .cranges section SEC_IN_MEMORY.
2000-12-30 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em
(sh64_elf_${EMULATION_NAME}_before_allocation): Don't stop when
.cranges section found to be necessary; continue and set stored
section contents flags for sections with non-mixed contents.
Use a struct sh64_section_data container and sh64_elf_section_data
to store contents-type flags.
Remove unused update of "isec".
(sh64_elf_${EMULATION_NAME}_after_allocation): Only process
sections marked SHF_SH5_ISA32_MIXED. Use sh64_elf_section_data to
access contents-type flags. Assert that the associated container
is initialized. Use that container, not elf_gp_size, to hold size
of linker-generated cranges contents.
2000-12-18 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em
(sh64_elf_${EMULATION_NAME}_before_allocation): Exit early if
there's already a .cranges section. When section flag difference
is found, don't NULL-check cranges a second time. Tweak comments.
(sh64_elf_${EMULATION_NAME}_after_allocation): Use size after
merging, not max size, as size of ld-generated .cranges contents.
Don't set ELF section flags in output section. When checking for
needed .cranges descriptors, don't use a variable; compare
incoming ELF section flags directly to SHF_SH5_ISA32_MIXED. Tweak
comments.
2000-12-18 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em: New file.
* Makefile.am (eshelf32.c, eshlelf32.c): Adjust dependencies.
* Makefile.in: Regenerate.
* emulparams/shelf32.sh (OUTPUT_FORMAT): Only set if not set.
(OTHER_RELOCATING_SECTIONS): Ditto.
(EXTRA_EM_FILE): New, set to sh64elf if not set.
* emulparams/shlelf32.sh: Stub out all settings except
OUTPUT_FORMAT. Source shelf32.sh.
* emulparams/shelf64.sh: Similar, but also keep ELF_SIZE and
OTHER_RELOCATING_SECTIONS.
(OTHER_RELOCATING_SECTIONS): Remove .cranges.
* emulparams/shlelf64.sh: Stub out all settings except
OUTPUT_FORMAT. Source shelf64.sh.
2000-12-15 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf64.sh (OTHER_RELOCATING_SECTIONS): Include
.cranges section.
(DATA_START_SYMBOLS): Define, provide ___data.
(OTHER_READONLY_SYMBOLS): Define, provide ___rodata and align to 8
for consecutive .data section.
(OTHER_GOT_SECTIONS): Define, align to 8 for consecutive .bss
section after .data section.
* emulparams/shlelf64.sh: Ditto.
* emulparams/shelf32.sh: Ditto.
(ALIGNMENT): Define to 8.
* emulparams/shelf32.sh: Ditto.
2000-12-12 Hans-Peter Nilsson <hpn@cygnus.com>
* configure.tgt (sh64-*-elf*): Assign targ_extra_libpath to get
built-in linker scripts.
2000-11-30 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shlelf64.sh: New.
* emulparams/shelf64.sh: New.
* configure.tgt (sh64-*-elf*): Add shelf64 and shlelf64 to
targ_extra_emuls.
* Makefile.am: Add support for shlelf64 and shelf64.
* Makefile.in: Regenerate.
2000-11-29 Hans-Peter Nilsson <hpn@cygnus.com>
* configure.tgt (sh64-*-elf*): Add shelf as default.
Add shlelf to targ_extra_emuls.
2000-11-24 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf32.sh: New file.
* emulparams/shlelf32.sh: New file.
* Makefile.am: Add support for shlelf32 and shelf32.
* configure.tgt: Map sh64-*-elf* to shlelf32 and shelf32.
* Makefile.in: Regenerate.
2002-02-08 14:39:01 +08:00
|
|
|
eshelf32.o \
|
|
|
|
eshlelf32.o \
|
2002-10-10 03:09:59 +08:00
|
|
|
eshelf32_linux.o \
|
|
|
|
eshlelf32_linux.o \
|
bfd:
* Makefile.am (BFD32_BACKENDS): Add elf32-sh64-nbsd.lo.
(BFD32_BACKENDS_CFILES): Add elf32-sh64-nbsd.c.
(BFD64_BACKENDS): Add elf64-sh64-nbsd.lo.
(BFD64_BACKENDS_CFILES): Add elf64-sh64-nbsd.c.
(elf32-sh64-nbsd.lo, elf64-sh64-nbsd.lo): New rules.
* Makefile.in: Regenerate.
* config.bfd (sh5le-*-netbsd*, sh5-*-netbsd*, sh64le-*-netbsd*)
(sh64-*-netbsd*): New targets.
* configure.in: Add bfd_elf32_sh64nbsd_vec, bfd_elf32_sh64lnbsd_vec,
bfd_elf64_sh64nbsd_vec, and bfd_elf64_sh64lnbsd_vec.
* configure: Regenerate.
* elf32-sh64-nbsd.c: New file.
* elf64-sh64-nbsd.c: New file.
* targets.c: Add extern decls for bfd_elf32_sh64nbsd_vec,
bfd_elf32_sh64lnbsd_vec, bfd_elf64_sh64nbsd_vec, and
bfd_elf64_sh64lnbsd_vec.
gas:
* configure.in (sh5*): Set cpu_type to sh64 and endian to big.
(sh5le*, sh64le*): Set cpu_type to sh64 and endian to little.
(sh5*-*-netbsd*, sh64*-*-netbsd*): New targets.
* configure: Regenerate.
* config/tc-sh64.c (sh64_target_format): Add support for NetBSD
environment.
ld:
* Makefile.am (ALL_EMULATIONS): Add eshelf32_nbsd.o,
eshlelf32_nbsd.o, eshelf64_nbsd.o, and eshlelf64_nbsd.o.
(eshelf32_nbsd.c, eshelf64_nbsd.c, eshlelf32_nbsd.c)
(eshlelf64_nbsd.c): New rules.
* Makefile.in: Regenerate.
* configure.tgt (sh5le-*-netbsd*, sh5-*-netbsd*, sh64le-*-netbsd*)
(sh64-*-netbsd*): New targets.
* emulparams/shelf32_nbsd.sh: New file.
* emulparams/shelf64_nbsd.sh: New file.
* emulparams/shlelf32_nbsd.sh: New file.
* emulparams/shlelf64_nbsd.sh: New file.
opcodes:
* configure.in: Add "sh5*-*" to list of targets which include
sh64 support.
* configure: Regenerate.
2002-06-04 10:57:44 +08:00
|
|
|
eshelf32_nbsd.o \
|
|
|
|
eshlelf32_nbsd.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
eshelf.o \
|
2000-09-07 12:32:05 +08:00
|
|
|
eshelf_linux.o \
|
|
|
|
eshlelf_linux.o \
|
2002-01-08 12:23:02 +08:00
|
|
|
eshelf_nbsd.o \
|
|
|
|
eshlelf_nbsd.o \
|
2002-08-23 01:27:20 +08:00
|
|
|
eshelf_nto.o \
|
|
|
|
eshlelf_nto.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
eshl.o \
|
2000-07-09 16:45:29 +08:00
|
|
|
eshlelf.o \
|
2004-07-07 00:58:43 +08:00
|
|
|
eshlsymbian.o \
|
2000-02-25 01:53:12 +08:00
|
|
|
eshpe.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
esparcaout.o \
|
|
|
|
esparclinux.o \
|
|
|
|
esparcnbsd.o \
|
|
|
|
est2000.o \
|
|
|
|
esun3.o \
|
|
|
|
esun4.o \
|
|
|
|
etic30aout.o \
|
|
|
|
etic30coff.o \
|
2003-01-21 06:34:39 +08:00
|
|
|
etic3xcoff.o \
|
|
|
|
etic3xcoff_onchip.o \
|
2002-08-28 18:38:51 +08:00
|
|
|
etic4xcoff.o \
|
2000-06-20 21:29:07 +08:00
|
|
|
etic54xcoff.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
etic80coff.o \
|
|
|
|
evanilla.o \
|
|
|
|
evax.o \
|
2002-05-30 10:40:03 +08:00
|
|
|
evaxnbsd.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
evsta.o \
|
|
|
|
ew65.o \
|
|
|
|
ez8001.o \
|
ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
* configure.in: Add cases for Renesas m32c.
* configure: Regenerated.
bfd/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
Add support for m32c-*-elf (Renesas m32c and m16c).
* Makefile.am (ALL_MACHINES): Add cpu-m32c.lo.
(ALL_MACHINES_CFILES): Add cpu-m32c.c.
(BFD32_BACKENDS): Add elf32-m32c.lo.
(BFD32_BACKENDS_CFILES): Add elf32-m32c.c.
(cpu-m32c.lo, elf32-m32c.lo): New rules, generated by 'make dep-am'.
* Makefile.in: Regenerated.
* archures.c (bfd_arch_m32c, bfd_mach_m16c, bfd_mach_m32c): New
arch and mach codes.
(bfd_m32c_arch): New arch info object.
(bfd_archures_list): List bfd_m32c_arch.
* bfd-in2.h: Regenerated.
* config.bfd: Add case for the m32c.
* configure.in: Add case for the m32c.
* configure: Regenerated.
* cpu-m32c.c, elf32-m32c.c: New files.
* libbfd.h: Regenerated.
* targets.c (bfd_elf32_m32c_vec): Declare.
(_bfd_target_vector): List bfd_elf32_m32c_vec.
binutils/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
* readelf.c: #include "elf/m32c.h"
(guess_is_rela, dump_relocations, get_machine_name): Add cases for
EM_M32C.
* Makefile.am (readelf.o): Update dependencies.
* Makefile.in: Regenerated.
cpu/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
* m32c.cpu, m32c.opc: Machine description for the Renesas M32C.
gas/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
Add support for the Renesas M32C.
* Makefile.am (CPU_TYPES): List m32c.
(TARGET_CPU_CFILES): List config/tc-m32c.c.
(TARGET_CPU_HFILES): List config/tc-m32c.h.
* configure.in: Add case for m32c.
* configure.tgt: Add cases for m32c and m32c-*-elf.
* configure: Regenerated.
* config/tc-m32c.c, config/tc-m32c.h: New files.
* doc/Makefile.am (CPU_DOCS): Add c-m32c.texi.
* doc/Makefile.in: Regenerated.
* doc/all.texi: Set M32C.
* doc/as.texinfo: Add text for the M32C-specific options and line
comment characters, and refer to c-m32c.texi.
* doc/c-m32c.texi: New file.
include/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
* dis-asm.h (print_insn_m32c): New declaration.
include/elf/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
Add support for Renesas M32C and M16C.
* common.h (EM_M32C): New machine number.
* m32c.h: New file.
ld/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
Add support for the Renesas M32C and M16C.
* Makefile.am (ALL_EMULATIONS): Add eelf32m32c.o.
(eelf32m32c.c): New target.
* Makefile.in: Regenerated.
* configure.tgt: Add case for m32c-*-elf.
* emulparams/elf32m32c.sh: New file.
opcodes/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
Add support for the Renesas M32C and M16C.
* m32c-asm.c, m32c-desc.c, m32c-dis.c, m32c-ibld.c, m32c-opc.c: New.
* m32c-desc.h, m32c-opc.h: New.
* Makefile.am (HFILES): List m32c-desc.h and m32c-opc.h.
(CFILES): List m32c-asm.c, m32c-desc.c, m32c-dis.c, m32c-ibld.c,
m32c-opc.c.
(ALL_MACHINES): List m32c-asm.lo, m32c-desc.lo, m32c-dis.lo,
m32c-ibld.lo, m32c-opc.lo.
(CLEANFILES): List stamp-m32c.
(M32C_DEPS): List stamp-m32c, if CGEN_MAINT.
(CGEN_CPUS): Add m32c.
(m32c-asm.c, m32c-desc.c, m32c-dis.c, m32c-ibld.c, m32c-opc.c)
(m32c-desc.h, m32c-opc.h): Depend on M32C_DEPS.
(m32c_opc_h): New variable.
(stamp-m32c, m32c-asm.lo, m32c-desc.lo, m32c-dis.lo, m32c-ibld.lo)
(m32c-opc.lo): New rules.
* Makefile.in: Regenerated.
* configure.in: Add case for bfd_m32c_arch.
* configure: Regenerated.
* disassemble.c (ARCH_m32c): New.
[ARCH_m32c]: #include "m32c-desc.h".
(disassembler) [ARCH_m32c]: Add case for bfd_arch_m32c.
(disassemble_init_for_target) [ARCH_m32c]: Same.
* cgen-ops.h, cgen-types.h: New files.
* Makefile.am (HFILES): List them.
* Makefile.in: Regenerated.
2005-07-15 06:52:28 +08:00
|
|
|
eelf32frvfd.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
ez8002.o
|
|
|
|
|
|
|
|
ALL_64_EMULATIONS = \
|
2001-02-23 01:24:33 +08:00
|
|
|
eelf64_aix.o \
|
2000-04-22 04:22:24 +08:00
|
|
|
eelf64_ia64.o \
|
2002-02-20 14:52:34 +08:00
|
|
|
eelf64_ia64_fbsd.o \
|
Contribute sh64-elf.
2002-01-24 Alexandre Oliva <aoliva@redhat.com>
* emulparams/shelf32.sh (STACK_ADDR): Define as formerly defined
in OTHER_RELOCATABLE_SECTIONS.
2002-01-18 Alexandre Oliva <aoliva@redhat.com>
* emulparams/shelf32.sh (STACK_ADDR): Define.
(OTHER_RELOCATABLE_SECTIONS): Renamed to...
(OTHER_SECTIONS): this. Removed stack settings.
* emulparams/shelf64.sh (OTHER_RELOCATABLE_SECTIONS): Do not set.
(OTHER_SECTIONS): Reset after sourcing shelf32.sh.
2001-03-12 DJ Delorie <dj@redhat.com>
* emultempl/sh64elf.em (sh64_elf_$_before_allocation): Disable
relaxing if any shmedia or mixed sections are found.
2001-03-07 DJ Delorie <dj@redhat.com>
* emultempl/sh64elf.em (sh64_elf_before_allocation): Pass f to
einfo. Gracefully decline to output to non-elf formats.
2001-03-06 Hans-Peter Nilsson <hpn@redhat.com>
* emulparams/shelf64.sh (OTHER_RELOCATING_SECTIONS) <.stack>:
Default to _end aligned to next multiple of 0x40000, plus 0x40000.
* emulparams/shelf32.sh: Ditto.
2001-01-14 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf32.sh (OTHER_RELOCATING_SECTIONS): Tweak
comment.
2001-01-10 Ben Elliston <bje@redhat.com>
* emulparams/shelf32.sh (OTHER_RELOCATING_SECTIONS): Avoid
non-portable shell constructs. From Hans-Peter Nilsson.
2001-01-09 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf64.sh (EXTRA_EM_FILE): Define empty.
* Makefile.am (eshelf64.c, eshlelf64.c, eshlelf32.c): Adjust
dependencies to the shell script include chain.
* Makefile.in: Regenerate.
2001-01-06 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em: Update and tweak comments.
(sh64_elf_${EMULATION_NAME}_after_allocation): Always allocate and
make a .cranges section SEC_IN_MEMORY.
2000-12-30 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em
(sh64_elf_${EMULATION_NAME}_before_allocation): Don't stop when
.cranges section found to be necessary; continue and set stored
section contents flags for sections with non-mixed contents.
Use a struct sh64_section_data container and sh64_elf_section_data
to store contents-type flags.
Remove unused update of "isec".
(sh64_elf_${EMULATION_NAME}_after_allocation): Only process
sections marked SHF_SH5_ISA32_MIXED. Use sh64_elf_section_data to
access contents-type flags. Assert that the associated container
is initialized. Use that container, not elf_gp_size, to hold size
of linker-generated cranges contents.
2000-12-18 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em
(sh64_elf_${EMULATION_NAME}_before_allocation): Exit early if
there's already a .cranges section. When section flag difference
is found, don't NULL-check cranges a second time. Tweak comments.
(sh64_elf_${EMULATION_NAME}_after_allocation): Use size after
merging, not max size, as size of ld-generated .cranges contents.
Don't set ELF section flags in output section. When checking for
needed .cranges descriptors, don't use a variable; compare
incoming ELF section flags directly to SHF_SH5_ISA32_MIXED. Tweak
comments.
2000-12-18 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em: New file.
* Makefile.am (eshelf32.c, eshlelf32.c): Adjust dependencies.
* Makefile.in: Regenerate.
* emulparams/shelf32.sh (OUTPUT_FORMAT): Only set if not set.
(OTHER_RELOCATING_SECTIONS): Ditto.
(EXTRA_EM_FILE): New, set to sh64elf if not set.
* emulparams/shlelf32.sh: Stub out all settings except
OUTPUT_FORMAT. Source shelf32.sh.
* emulparams/shelf64.sh: Similar, but also keep ELF_SIZE and
OTHER_RELOCATING_SECTIONS.
(OTHER_RELOCATING_SECTIONS): Remove .cranges.
* emulparams/shlelf64.sh: Stub out all settings except
OUTPUT_FORMAT. Source shelf64.sh.
2000-12-15 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf64.sh (OTHER_RELOCATING_SECTIONS): Include
.cranges section.
(DATA_START_SYMBOLS): Define, provide ___data.
(OTHER_READONLY_SYMBOLS): Define, provide ___rodata and align to 8
for consecutive .data section.
(OTHER_GOT_SECTIONS): Define, align to 8 for consecutive .bss
section after .data section.
* emulparams/shlelf64.sh: Ditto.
* emulparams/shelf32.sh: Ditto.
(ALIGNMENT): Define to 8.
* emulparams/shelf32.sh: Ditto.
2000-12-12 Hans-Peter Nilsson <hpn@cygnus.com>
* configure.tgt (sh64-*-elf*): Assign targ_extra_libpath to get
built-in linker scripts.
2000-11-30 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shlelf64.sh: New.
* emulparams/shelf64.sh: New.
* configure.tgt (sh64-*-elf*): Add shelf64 and shlelf64 to
targ_extra_emuls.
* Makefile.am: Add support for shlelf64 and shelf64.
* Makefile.in: Regenerate.
2000-11-29 Hans-Peter Nilsson <hpn@cygnus.com>
* configure.tgt (sh64-*-elf*): Add shelf as default.
Add shlelf to targ_extra_emuls.
2000-11-24 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf32.sh: New file.
* emulparams/shlelf32.sh: New file.
* Makefile.am: Add support for shlelf32 and shelf32.
* configure.tgt: Map sh64-*-elf* to shlelf32 and shelf32.
* Makefile.in: Regenerate.
2002-02-08 14:39:01 +08:00
|
|
|
eshelf64.o \
|
|
|
|
eshlelf64.o \
|
bfd:
* Makefile.am (BFD32_BACKENDS): Add elf32-sh64-nbsd.lo.
(BFD32_BACKENDS_CFILES): Add elf32-sh64-nbsd.c.
(BFD64_BACKENDS): Add elf64-sh64-nbsd.lo.
(BFD64_BACKENDS_CFILES): Add elf64-sh64-nbsd.c.
(elf32-sh64-nbsd.lo, elf64-sh64-nbsd.lo): New rules.
* Makefile.in: Regenerate.
* config.bfd (sh5le-*-netbsd*, sh5-*-netbsd*, sh64le-*-netbsd*)
(sh64-*-netbsd*): New targets.
* configure.in: Add bfd_elf32_sh64nbsd_vec, bfd_elf32_sh64lnbsd_vec,
bfd_elf64_sh64nbsd_vec, and bfd_elf64_sh64lnbsd_vec.
* configure: Regenerate.
* elf32-sh64-nbsd.c: New file.
* elf64-sh64-nbsd.c: New file.
* targets.c: Add extern decls for bfd_elf32_sh64nbsd_vec,
bfd_elf32_sh64lnbsd_vec, bfd_elf64_sh64nbsd_vec, and
bfd_elf64_sh64lnbsd_vec.
gas:
* configure.in (sh5*): Set cpu_type to sh64 and endian to big.
(sh5le*, sh64le*): Set cpu_type to sh64 and endian to little.
(sh5*-*-netbsd*, sh64*-*-netbsd*): New targets.
* configure: Regenerate.
* config/tc-sh64.c (sh64_target_format): Add support for NetBSD
environment.
ld:
* Makefile.am (ALL_EMULATIONS): Add eshelf32_nbsd.o,
eshlelf32_nbsd.o, eshelf64_nbsd.o, and eshlelf64_nbsd.o.
(eshelf32_nbsd.c, eshelf64_nbsd.c, eshlelf32_nbsd.c)
(eshlelf64_nbsd.c): New rules.
* Makefile.in: Regenerate.
* configure.tgt (sh5le-*-netbsd*, sh5-*-netbsd*, sh64le-*-netbsd*)
(sh64-*-netbsd*): New targets.
* emulparams/shelf32_nbsd.sh: New file.
* emulparams/shelf64_nbsd.sh: New file.
* emulparams/shlelf32_nbsd.sh: New file.
* emulparams/shlelf64_nbsd.sh: New file.
opcodes:
* configure.in: Add "sh5*-*" to list of targets which include
sh64 support.
* configure: Regenerate.
2002-06-04 10:57:44 +08:00
|
|
|
eshelf64_nbsd.o \
|
|
|
|
eshlelf64_nbsd.o \
|
2000-12-01 03:30:33 +08:00
|
|
|
eelf_x86_64.o \
|
2002-02-20 14:52:34 +08:00
|
|
|
eelf_x86_64_fbsd.o \
|
2001-02-10 08:58:38 +08:00
|
|
|
eelf64_s390.o \
|
1999-05-03 15:29:11 +08:00
|
|
|
eelf64_sparc.o \
|
2002-02-20 14:52:34 +08:00
|
|
|
eelf64_sparc_fbsd.o \
|
1999-07-08 08:22:51 +08:00
|
|
|
eelf64alpha.o \
|
2002-02-20 14:52:34 +08:00
|
|
|
eelf64alpha_fbsd.o \
|
2001-12-18 07:54:58 +08:00
|
|
|
eelf64alpha_nbsd.o \
|
2000-07-09 16:45:29 +08:00
|
|
|
eelf64bmip.o \
|
2001-04-08 13:13:57 +08:00
|
|
|
eelf64btsmip.o \
|
|
|
|
eelf64ltsmip.o \
|
2001-05-25 04:59:23 +08:00
|
|
|
eelf64hppa.o \
|
2001-10-30 23:20:14 +08:00
|
|
|
eelf64mmix.o \
|
|
|
|
emmo.o \
|
2001-09-13 07:57:21 +08:00
|
|
|
eelf64ppc.o \
|
|
|
|
eelf64lppc.o \
|
2001-06-27 16:42:29 +08:00
|
|
|
ehppa64linux.o
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
ALL_EMUL_EXTRA_OFILES = \
|
2000-07-09 16:45:29 +08:00
|
|
|
deffilep.o \
|
|
|
|
pe-dll.o
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
CFILES = ldctor.c ldemul.c ldexp.c ldfile.c ldlang.c \
|
|
|
|
ldmain.c ldmisc.c ldver.c ldwrite.c lexsup.c \
|
|
|
|
mri.c ldcref.c pe-dll.c
|
|
|
|
|
|
|
|
HFILES = ld.h ldctor.h ldemul.h ldexp.h ldfile.h \
|
|
|
|
ldlang.h ldlex.h ldmain.h ldmisc.h ldver.h \
|
1999-09-12 23:27:48 +08:00
|
|
|
ldwrite.h mri.h deffile.h pe-dll.h
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
GENERATED_CFILES = ldgram.c ldlex.c deffilep.c
|
|
|
|
GENERATED_HFILES = ldgram.h ldemul-list.h deffilep.h
|
|
|
|
|
|
|
|
OFILES = ldgram.o ldlex.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o \
|
|
|
|
ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o \
|
|
|
|
ldfile.o ldcref.o ${EMULATION_OFILES} ${EMUL_EXTRA_OFILES}
|
|
|
|
|
|
|
|
STAGESTUFF = *.o ldscripts/* e*.c
|
|
|
|
|
2005-04-12 10:50:28 +08:00
|
|
|
# Disable -Werror, if it has been enabled, since old versions of bison/
|
|
|
|
# yacc will produce working code which contain compile time warnings.
|
|
|
|
ldgram.o:
|
2005-04-14 13:26:44 +08:00
|
|
|
$(COMPILE) -c $< $(NO_WERROR)
|
2005-04-12 10:50:28 +08:00
|
|
|
ldlex.o:
|
2005-04-14 13:26:44 +08:00
|
|
|
$(COMPILE) -c $< $(NO_WERROR)
|
2005-04-12 10:50:28 +08:00
|
|
|
deffilep.o:
|
2005-04-14 13:26:44 +08:00
|
|
|
$(COMPILE) -c $< $(NO_WERROR)
|
2005-04-12 10:50:28 +08:00
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
# At the moment this is just a list of those emulation template files
|
|
|
|
# that contain internationalised strings.
|
|
|
|
EMULATION_FILES = emultempl/pe.em emultempl/armcoff.em
|
|
|
|
|
|
|
|
POTFILES = $(CFILES) $(HFILES) $(EMULATION_FILES)
|
|
|
|
|
|
|
|
po/POTFILES.in: @MAINT@ Makefile
|
2003-08-14 15:04:57 +08:00
|
|
|
for f in $(POTFILES); do echo $$f; done | LC_COLLATE= sort > tmp \
|
1999-05-03 15:29:11 +08:00
|
|
|
&& mv tmp $(srcdir)/po/POTFILES.in
|
|
|
|
|
|
|
|
ldmain.o: ldmain.c config.status
|
2003-01-07 00:14:01 +08:00
|
|
|
$(COMPILE) -c -DDEFAULT_EMULATION='"$(EMUL)"' \
|
|
|
|
-DSCRIPTDIR='"$(scriptdir)"' -DBINDIR='"$(bindir)"' \
|
2003-02-25 18:32:33 +08:00
|
|
|
-DTOOLBINDIR='"$(tooldir)/bin"' \
|
2003-01-07 00:14:01 +08:00
|
|
|
-DTARGET='"@target@"' @TARGET_SYSTEM_ROOT_DEFINE@ \
|
|
|
|
$(srcdir)/ldmain.c
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
ldemul-list.h: Makefile
|
|
|
|
(echo "/* This file is automatically generated. DO NOT EDIT! */";\
|
|
|
|
for f in `echo " " ${EMULATION_OFILES} "" \
|
|
|
|
| sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
|
|
|
|
echo "extern ld_emulation_xfer_type ld_$${f}_emulation;"; \
|
|
|
|
done;\
|
|
|
|
echo "";\
|
|
|
|
echo "#define EMULATION_LIST \\";\
|
|
|
|
for f in `echo " " ${EMULATION_OFILES} "" \
|
|
|
|
| sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
|
|
|
|
echo " &ld_$${f}_emulation, \\"; \
|
|
|
|
done;\
|
|
|
|
echo " 0") >ldemul-tmp.h
|
|
|
|
mv ldemul-tmp.h ldemul-list.h
|
|
|
|
|
1999-08-07 06:46:03 +08:00
|
|
|
stringify.sed: ${srcdir}/emultempl/$(STRINGIFY)
|
|
|
|
cp ${srcdir}/emultempl/$(STRINGIFY) stringify.sed
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
# These all start with e so 'make clean' can find them.
|
|
|
|
|
2003-01-07 00:14:01 +08:00
|
|
|
GENSCRIPTS = LIB_PATH='${LIB_PATH}' $(SHELL) $(srcdir)/genscripts.sh ${srcdir} ${libdir} "${exec_prefix}" @host@ @target@ @target_alias@ "@EMULATION_LIBPATH@" "@NATIVE_LIB_DIRS@" @use_sysroot@
|
1999-08-07 06:46:03 +08:00
|
|
|
GEN_DEPENDS = $(srcdir)/genscripts.sh stringify.sed
|
2003-08-16 01:04:48 +08:00
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
@TDIRS@
|
|
|
|
|
|
|
|
ea29k.c: $(srcdir)/emulparams/a29k.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/a29k.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} a29k "$(tdir_a29k)"
|
2002-03-18 20:46:27 +08:00
|
|
|
eaix5ppc.c: $(srcdir)/emulparams/aix5ppc.sh \
|
|
|
|
$(srcdir)/emultempl/aix.em $(srcdir)/scripttempl/aix.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} aix5ppc "$(tdir_aixppc)"
|
|
|
|
eaix5rs6.c: $(srcdir)/emulparams/aix5rs6.sh \
|
|
|
|
$(srcdir)/emultempl/aix.em $(srcdir)/scripttempl/aix.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} aix5rs6 "$(tdir_aixrs6)"
|
1999-05-03 15:29:11 +08:00
|
|
|
eaixppc.c: $(srcdir)/emulparams/aixppc.sh \
|
|
|
|
$(srcdir)/emultempl/aix.em $(srcdir)/scripttempl/aix.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} aixppc "$(tdir_aixppc)"
|
|
|
|
eaixrs6.c: $(srcdir)/emulparams/aixrs6.sh \
|
|
|
|
$(srcdir)/emultempl/aix.em $(srcdir)/scripttempl/aix.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} aixrs6 "$(tdir_aixrs6)"
|
|
|
|
ealpha.c: $(srcdir)/emulparams/alpha.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/alpha.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} alpha "$(tdir_alpha)"
|
|
|
|
earcelf.c: $(srcdir)/emulparams/arcelf.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} arcelf "$(tdir_arcelf)"
|
|
|
|
earmelf.c: $(srcdir)/emulparams/armelf.sh \
|
2000-09-05 11:21:16 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/armelf.em \
|
|
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
1999-05-03 15:29:11 +08:00
|
|
|
${GENSCRIPTS} armelf "$(tdir_armelf)"
|
2003-05-10 04:05:04 +08:00
|
|
|
earmelfb.c: $(srcdir)/emulparams/armelfb.sh $(srcdir)/emulparams/armelf.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/armelf.em \
|
|
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} armelfb "$(tdir_armelfb)"
|
2002-02-20 14:52:34 +08:00
|
|
|
earmelf_fbsd.c: $(srcdir)/emulparams/armelf_fbsd.sh \
|
|
|
|
$(srcdir)/emulparams/armelf.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/armelf.em \
|
|
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} armelf_fbsd "$(tdir_armelf_fbsd)"
|
1999-05-03 15:29:11 +08:00
|
|
|
earmelf_linux.c: $(srcdir)/emulparams/armelf_linux.sh \
|
2000-09-05 11:21:16 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/armelf.em \
|
|
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
1999-05-03 15:29:11 +08:00
|
|
|
${GENSCRIPTS} armelf_linux "$(tdir_armelf_linux)"
|
2004-11-20 03:28:40 +08:00
|
|
|
earmelf_linux_eabi.c: $(srcdir)/emulparams/armelf_linux_eabi.sh \
|
|
|
|
$(srcdir)/emulparams/armelf_linux.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/armelf.em \
|
|
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} armelf_linux_eabi "$(tdir_armelf_linux_abi)"
|
2003-05-10 04:05:04 +08:00
|
|
|
earmelfb_linux.c: $(srcdir)/emulparams/armelfb_linux.sh \
|
|
|
|
$(srcdir)/emulparams/armelf_linux.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/armelf.em \
|
|
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} armelfb_linux "$(tdir_armelfb_linux)"
|
2005-01-21 03:37:49 +08:00
|
|
|
earmelfb_linux_eabi.c: $(srcdir)/emulparams/armelfb_linux_eabi.sh \
|
|
|
|
$(srcdir)/emulparams/armelf_linux_eabi.sh \
|
|
|
|
$(srcdir)/emulparams/armelf_linux.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/armelf.em \
|
|
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} armelfb_linux_eabi "$(tdir_armelfb_linux_abi)"
|
2001-12-20 11:19:43 +08:00
|
|
|
earmelf_nbsd.c: $(srcdir)/emulparams/armelf_nbsd.sh \
|
|
|
|
$(srcdir)/emulparams/armelf.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/armelf.em \
|
|
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} armelf_nbsd "$(tdir_armelf_nbsd)"
|
2002-05-21 23:11:04 +08:00
|
|
|
earmelfb_nbsd.c: $(srcdir)/emulparams/armelfb_nbsd.sh \
|
|
|
|
$(srcdir)/emulparams/armelf_nbsd.sh \
|
|
|
|
$(srcdir)/emulparams/armelf.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/armelf.em \
|
|
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} armelfb_nbsd "$(tdir_armelfb_nbsd)"
|
2005-01-07 00:18:25 +08:00
|
|
|
earmelf_vxworks.c: $(srcdir)/emulparams/armelf_vxworks.sh \
|
|
|
|
$(srcdir)/emulparams/armelf.sh $(srcdir)/emultempl/elf32.em \
|
|
|
|
$(srcdir)/emultempl/armelf.em $(srcdir)/scripttempl/elf.sc \
|
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} armelf_vxworks "$(tdir_armelf)"
|
1999-05-03 15:29:11 +08:00
|
|
|
earmaoutb.c: $(srcdir)/emulparams/armaoutb.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/armaout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} armaoutb "$(tdir_armaoutb)"
|
|
|
|
earmaoutl.c: $(srcdir)/emulparams/armaoutl.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/armaout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} armaoutl "$(tdir_armaoutl)"
|
|
|
|
earmcoff.c: $(srcdir)/emulparams/armcoff.sh \
|
|
|
|
$(srcdir)/emultempl/armcoff.em $(srcdir)/scripttempl/armcoff.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} armcoff "$(tdir_armcoff)"
|
1999-08-24 23:17:23 +08:00
|
|
|
earmnbsd.c: $(srcdir)/emulparams/armnbsd.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} armnbsd "$(tdir_armnbsd)"
|
2002-07-31 01:32:30 +08:00
|
|
|
earmnto.c: $(srcdir)/emulparams/armnto.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/armelf.em \
|
|
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} armnto "$(tdir_armnto)"
|
1999-09-22 16:32:06 +08:00
|
|
|
earm_epoc_pe.c: $(srcdir)/emulparams/arm_epoc_pe.sh \
|
1999-12-02 19:49:20 +08:00
|
|
|
$(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/epocpe.sc ${GEN_DEPENDS}
|
1999-09-22 16:32:06 +08:00
|
|
|
${GENSCRIPTS} arm_epoc_pe "$(tdir_armpe)"
|
1999-05-03 15:29:11 +08:00
|
|
|
earmpe.c: $(srcdir)/emulparams/armpe.sh \
|
|
|
|
$(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} armpe "$(tdir_armpe)"
|
2004-09-04 01:15:44 +08:00
|
|
|
earmsymbian.c: $(srcdir)/emulparams/armsymbian.sh \
|
|
|
|
$(srcdir)/emulparams/armelf.sh $(srcdir)/emultempl/elf32.em \
|
2005-01-04 23:16:25 +08:00
|
|
|
$(srcdir)/emultempl/armelf.em $(srcdir)/scripttempl/armbpabi.sc \
|
2004-09-04 01:15:44 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} armsymbian "$(tdir_armelf)"
|
2003-10-20 00:46:14 +08:00
|
|
|
eavr2.c: $(srcdir)/emulparams/avr2.sh \
|
2002-05-17 13:55:14 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \
|
|
|
|
${GEN_DEPENDS}
|
2003-10-20 00:46:14 +08:00
|
|
|
${GENSCRIPTS} avr2 "$(tdir_avr2)"
|
|
|
|
eavr1.c: $(srcdir)/emulparams/avr1.sh \
|
2002-05-17 13:55:14 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \
|
|
|
|
${GEN_DEPENDS}
|
2003-10-20 00:46:14 +08:00
|
|
|
${GENSCRIPTS} avr1 "$(tdir_avr2)"
|
2002-05-17 13:55:14 +08:00
|
|
|
eavr3.c: $(srcdir)/emulparams/avr3.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \
|
|
|
|
${GEN_DEPENDS}
|
2003-10-20 00:46:14 +08:00
|
|
|
${GENSCRIPTS} avr3 "$(tdir_avr2)"
|
2002-05-17 13:55:14 +08:00
|
|
|
eavr4.c: $(srcdir)/emulparams/avr4.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \
|
|
|
|
${GEN_DEPENDS}
|
2003-10-20 00:46:14 +08:00
|
|
|
${GENSCRIPTS} avr4 "$(tdir_avr2)"
|
2002-05-17 13:55:14 +08:00
|
|
|
eavr5.c: $(srcdir)/emulparams/avr5.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \
|
|
|
|
${GEN_DEPENDS}
|
2003-10-20 00:46:14 +08:00
|
|
|
${GENSCRIPTS} avr5 "$(tdir_avr2)"
|
2003-08-06 10:19:05 +08:00
|
|
|
ecoff_i860.c: $(srcdir)/emulparams/coff_i860.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i860coff.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} coff_i860 "$(tdir_coff_i860)"
|
1999-05-03 15:29:11 +08:00
|
|
|
ecoff_sparc.c: $(srcdir)/emulparams/coff_sparc.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sparccoff.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} coff_sparc "$(tdir_coff_sparc)"
|
2000-07-21 01:16:06 +08:00
|
|
|
ecrisaout.c: $(srcdir)/emulparams/crisaout.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/crisaout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} crisaout "$(tdir_cris)"
|
|
|
|
ecriself.c: $(srcdir)/emulparams/criself.sh \
|
2001-06-19 04:19:52 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
2000-07-21 01:16:06 +08:00
|
|
|
${GENSCRIPTS} criself "$(tdir_cris)"
|
|
|
|
ecrislinux.c: $(srcdir)/emulparams/crislinux.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} crislinux "$(tdir_cris)"
|
1999-05-03 15:29:11 +08:00
|
|
|
ed10velf.c: $(srcdir)/emulparams/d10velf.sh \
|
2001-06-19 04:19:52 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elfd10v.sc ${GEN_DEPENDS}
|
1999-05-03 15:29:11 +08:00
|
|
|
${GENSCRIPTS} d10velf "$(tdir_d10v)"
|
|
|
|
ed30velf.c: $(srcdir)/emulparams/d30velf.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elfd30v.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} d30velf "$(tdir_d30v)"
|
|
|
|
ed30v_o.c: $(srcdir)/emulparams/d30v_o.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elfd30v.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} d30v_o "$(tdir_d30v)"
|
|
|
|
ed30v_e.c: $(srcdir)/emulparams/d30v_e.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elfd30v.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} d30v_e "$(tdir_d30v)"
|
|
|
|
edelta68.c: $(srcdir)/emulparams/delta68.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/delta68.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} delta68 "$(tdir_delta68)"
|
2002-05-28 22:08:47 +08:00
|
|
|
eelf32_dlx.c: $(srcdir)/emulparams/elf32_dlx.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/dlx.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32_dlx "$(tdir_elf32_dlx)"
|
1999-05-03 15:29:11 +08:00
|
|
|
eebmon29k.c: $(srcdir)/emulparams/ebmon29k.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/ebmon29k.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} ebmon29k "$(tdir_ebmon29k)"
|
2001-12-08 11:46:03 +08:00
|
|
|
eelf32xstormy16.c: $(srcdir)/emulparams/elf32xstormy16.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/needrelax.em \
|
2004-09-30 00:46:00 +08:00
|
|
|
$(srcdir)/scripttempl/xstormy16.sc ${GEN_DEPENDS}
|
2001-12-08 11:46:03 +08:00
|
|
|
${GENSCRIPTS} elf32xstormy16 "$(tdir_xstormy16)"
|
2003-07-10 12:45:16 +08:00
|
|
|
eelf32am33lin.c: $(srcdir)/emulparams/elf32am33lin.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32am33lin "$(tdir_mn10300)"
|
2002-05-30 10:40:03 +08:00
|
|
|
eelf32vax.c: $(srcdir)/emulparams/elf32vax.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32vax "$(tdir_elf32vax)"
|
2003-04-01 23:50:31 +08:00
|
|
|
eelf32xtensa.c: $(srcdir)/emulparams/elf32xtensa.sh \
|
bfd ChangeLog
* elf32-xtensa.c (elf32xtensa_size_opt): New global variable.
(xtensa_default_isa): Global variable moved here from xtensa-isa.c.
(elf32xtensa_no_literal_movement): New global variable.
(elf_howto_table): Add entries for new relocations.
(elf_xtensa_reloc_type_lookup): Handle new relocations.
(property_table_compare): When addresses are equal, compare sizes and
various property flags.
(property_table_matches): New.
(xtensa_read_table_entries): Extend to read new property tables. Add
output_addr parameter to indicate that output addresses should be used.
Use bfd_get_section_limit.
(elf_xtensa_find_property_entry): New.
(elf_xtensa_in_literal_pool): Use elf_xtensa_find_property_entry.
(elf_xtensa_check_relocs): Handle new relocations.
(elf_xtensa_do_reloc): Use bfd_get_section_limit. Handle new
relocations. Use new xtensa-isa.h functions.
(build_encoding_error_message): Remove encode_result parameter. Add
new target_address parameter used to detect alignment errors.
(elf_xtensa_relocate_section): Use bfd_get_section_limit. Clean up
error handling. Use new is_operand_relocation function.
(elf_xtensa_combine_prop_entries, elf_xtensa_merge_private_bfd_data):
Use underbar macro for error messages. Formatting.
(get_const16_opcode): New.
(get_l32r_opcode): Add a separate flag for initialization.
(get_relocation_opnd): Operand number is no longer explicit in the
relocation. Change to decode the opcode and analyze its operands.
(get_relocation_slot): New.
(get_relocation_opcode): Add bfd parameter. Use bfd_get_section_limit.
Use new xtensa-isa.h functions to handle multislot instructions.
(is_l32r_relocation): Add bfd parameter. Use is_operand_relocation.
(get_asm_simplify_size, is_alt_relocation, is_operand_relocation,
insn_decode_len, insn_decode_opcode, check_branch_target_aligned,
check_loop_aligned, check_branch_target_aligned_address, narrowable,
widenable, narrow_instruction, widen_instruction, op_single_fmt_table,
get_single_format, init_op_single_format_table): New.
(elf_xtensa_do_asm_simplify): Add error_message parameter and use it
instead of calling _bfd_error_handler. Use new xtensa-isa.h functions.
(contract_asm_expansion): Add error_message parameter and pass it to
elf_xtensa_do_asm_simplify. Replace use of R_XTENSA_OP0 relocation
with R_XTENSA_SLOT0_OP.
(get_expanded_call_opcode): Extend to handle either L32R or CONST16
instructions. Use new xtensa-isa.h functions.
(r_reloc struct): Add new virtual_offset field.
(r_reloc_init): Add contents and content_length parameters. Set
virtual_offset field to zero. Add contents to target_offset field for
partial_inplace relocations.
(r_reloc_is_defined): Check for null.
(print_r_reloc): New debug function.
(source_reloc struct): Replace xtensa_operand field with pair of the
opcode and the operand position. Add is_abs_literal field.
(init_source_reloc): Specify operand by opcode/position pair. Set
is_abs_literal field.
(source_reloc_compare): When target_offsets are equal, compare other
fields to make sorting predictable.
(literal_value struct): Add is_abs_literal field.
(value_map_hash_table struct): Add has_last_loc and last_loc fields.
(init_literal_value): New.
(is_same_value): Replace with ...
(literal_value_equal): ... this function. Add comparisons of
virtual_offset and is_abs_literal fields.
(value_map_hash_table_init): Use bfd_zmalloc. Check for allocation
failure. Initialize has_last_loc field.
(value_map_hash_table_delete): New.
(hash_literal_value): Rename to ...
(literal_value_hash): ... this. Include is_abs_literal flag and
virtual_offset field in the hash value.
(get_cached_value): Rename to ...
(value_map_get_cached_value): ... this. Update calls to
literal_value_hash and literal_value_equal.
(add_value_map): Check for allocation failure. Update calls to
value_map_get_cached_value and literal_value_hash.
(text_action, text_action_list, text_action_t): New types.
(find_fill_action, compute_removed_action_diff, adjust_fill_action,
text_action_add, text_action_add_literal, offset_with_removed_text,
offset_with_removed_text_before_fill, find_insn_action,
print_action_list, print_removed_literals): New.
(offset_with_removed_literals): Delete.
(xtensa_relax_info struct): Add is_relaxable_asm_section, action_list,
fix_array, fix_array_count, allocated_relocs, relocs_count, and
allocated_relocs_count fields.
(init_xtensa_relax_info): Initialize new fields.
(reloc_bfd_fix struct): Add new translated field.
(reloc_bfd_fix_init): Add translated parameter and use it to set the
translated field.
(fix_compare, cache_fix_array): New.
(get_bfd_fix): Remove fix_list parameter and get all relax_info for the
section via get_xtensa_relax_info. Use cache_fix_array to set up
sorted fix_array and use bsearch instead of linear search.
(section_cache_t): New struct.
(init_section_cache, section_cache_section, clear_section_cache): New.
(ebb_t, ebb_target_enum, proposed_action, ebb_constraint): New types.
(init_ebb_constraint, free_ebb_constraint, init_ebb, extend_ebb_bounds,
extend_ebb_bounds_forward, extend_ebb_bounds_backward,
insn_block_decodable_len, ebb_propose_action, ebb_add_proposed_action):
New.
(retrieve_contents): Use bfd_get_section_limit.
(elf_xtensa_relax_section): Add relocations_analyzed flag. Update call
to compute_removed_literals. Free value_map_hash_table when no longer
needed.
(analyze_relocations): Check is_relaxable_asm_section flag. Call
compute_text_actions for all sections.
(find_relaxable_sections): Mark sections as relaxable if they contain
ASM_EXPAND relocations that can be optimized. Adjust r_reloc_init
call. Increment relax_info src_count field only for appropriate
relocation types. Remove is_literal_section check.
(collect_source_relocs): Use bfd_get_section_limit. Adjust calls to
r_reloc_init and find_associated_l32r_irel. Check
is_relaxable_asm_section flag. Handle L32R instructions with absolute
literals. Pass is_abs_literal flag to init_source_reloc.
(is_resolvable_asm_expansion): Use bfd_get_section_limit. Check for
CONST16 instructions. Adjust calls to r_reloc_init and
pcrel_reloc_fits. Handle weak symbols conservatively.
(find_associated_l32r_irel): Add bfd parameter and pass it to
is_l32r_relocation.
(compute_text_actions, compute_ebb_proposed_actions,
compute_ebb_actions, check_section_ebb_pcrels_fit,
check_section_ebb_reduces, text_action_add_proposed,
compute_fill_extra_space): New.
(remove_literals): Replace with ...
(compute_removed_literals): ... this function. Call
init_section_cache. Use bfd_get_section_limit. Sort internal_relocs.
Call xtensa_read_table_entries to get the property table. Skip
relocations other than R_XTENSA_32 and R_XTENSA_PLT. Use new
is_removable_literal, remove_dead_literal, and
identify_literal_placement functions.
(get_irel_at_offset): Rewrite to use bsearch on sorted relocations
instead of linear search.
(is_removable_literal, remove_dead_literal,
identify_literal_placement): New.
(relocations_reach): Update check for literal not referenced by any
PC-relative relocations. Adjust call to pcrel_reloc_fits.
(coalesce_shared_literal, move_shared_literal): New.
(relax_section): Use bfd_get_section_limit. Call
translate_section_fixes. Update calls to r_reloc_init and
offset_with_removed_text. Check new is_relaxable_asm_section flag.
Add call to pin_internal_relocs. Add special handling for
R_XTENSA_ASM_SIMPLIFY and R_XTENSA_DIFF* relocs. Use virtual_offset
info to calculate new addend_displacement variable. Replace code for
deleting literals with more general code to perform the actions
determined by the action_list for the section.
(translate_section_fixes, translate_reloc_bfd_fix): New.
(translate_reloc): Check new is_relaxable_asm_section flag. Call
find_removed_literal only if is_operand_relocation. Update call to
offset_with_removed_text. Use new target_offset and removed_bytes
variables.
(move_literal): New.
(relax_property_section): Use bfd_get_section_limit. Set new
is_full_prop_section flag and handle new property tables. Update calls
to r_reloc_init and offset_with_removed_text. Check
is_relaxable_asm_section flag. Handle expansion of zero-sized
unreachable entries, with use of offset_with_removed_text_before_fill.
For relocatable links, combine entries only for literal tables.
(relax_section_symbols): Check is_relaxable_asm_section flag. Update
calls to offset_with_removed_text. Translate st_size field for
function symbols.
(do_fix_for_relocatable_link): Change to return bfd_boolean to indicate
failure. Add contents parameter. Update call to get_bfd_fix. Update
call to r_reloc_init. Call _bfd_error_handler and return FALSE for
R_XTENSA_ASM_EXPAND relocs.
(do_fix_for_final_link): Add input_bfd and contents parameters. Update
call to get_bfd_fix. Include offset from contents for partial_inplace
relocations.
(is_reloc_sym_weak): New.
(pcrel_reloc_fits): Use new xtensa-isa.h functions.
(prop_sec_len): New.
(xtensa_is_property_section): Handle new property sections.
(is_literal_section): Delete.
(internal_reloc_compare): When r_offset matches, compare r_info and
r_addend to make sorting predictable.
(internal_reloc_matches): New.
(xtensa_get_property_section_name): Handle new property sections.
(xtensa_get_property_predef_flags): New.
(xtensa_callback_required_dependence): Use bfd_get_section_limit.
Update calls to xtensa_isa_init, is_l32r_relocation, and r_reloc_init.
* xtensa-isa.c (xtensa_default_isa): Moved to elf32-xtensa.c.
(xtisa_errno, xtisa_error_msg): New variables.
(xtensa_isa_errno, xtensa_isa_error_msg): New.
(xtensa_insnbuf_alloc): Add error handling.
(xtensa_insnbuf_to_chars): Add num_chars parameter. Update to
use xtensa_format_decode. Add error handling.
(xtensa_insnbuf_from_chars): Add num_chars parameter. Decode the
instruction length to find the number of bytes to copy.
(xtensa_isa_init): Add error handling. Replace calls to
xtensa_load_isa and xtensa_extend_isa with code to initialize lookup
tables in the xtensa_modules structure.
(xtensa_check_isa_config, xtensa_add_isa, xtensa_load_isa,
xtensa_extend_isa): Delete.
(xtensa_isa_free): Change to only free lookup tables.
(opname_lookup_compare): Replace with ...
(xtensa_isa_name_compare): ... this function. Use strcasecmp.
(xtensa_insn_maxlength): Rename to ...
(xtensa_isa_maxlength): ... this.
(xtensa_insn_length): Delete.
(xtensa_insn_length_from_first_byte): Replace with ...
(xtensa_isa_length_from_chars): ... this function.
(xtensa_num_opcodes): Rename to ...
(xtensa_isa_num_opcodes): ... this.
(xtensa_isa_num_pipe_stages, xtensa_isa_num_formats,
xtensa_isa_num_regfiles, xtensa_isa_num_stages,
xtensa_isa_num_sysregs, xtensa_isa_num_interfaces,
xtensa_isa_num_funcUnits, xtensa_format_name, xtensa_format_lookup,
xtensa_format_decode, xtensa_format_encode, xtensa_format_length,
xtensa_format_num_slots, xtensa_format_slot_nop_opcode,
xtensa_format_get_slot, xtensa_format_set_slot): New functions.
(xtensa_opcode_lookup): Add error handling.
(xtensa_decode_insn): Replace with ...
(xtensa_opcode_decode): ... this function, with new format and
slot parameters. Add error handling.
(xtensa_encode_insn): Replace with ...
(xtensa_opcode_encode): ... this function, which does the encoding via
one of the entries in the "encode_fns" array. Add error handling.
(xtensa_opcode_name): Add error handling.
(xtensa_opcode_is_branch, xtensa_opcode_is_jump, xtensa_opcode_is_loop,
xtensa_opcode_is_call): New.
(xtensa_num_operands): Replace with ...
(xtensa_opcode_num_operands): ... this function. Add error handling.
(xtensa_opcode_num_stateOperands,
xtensa_opcode_num_interfaceOperands, xtensa_opcode_num_funcUnit_uses,
xtensa_opcode_funcUnit_use, xtensa_operand_name,
xtensa_operand_is_visible): New.
(xtensa_get_operand, xtensa_operand_kind): Delete.
(xtensa_operand_inout): Add error handling and special-case for
"sout" operands.
(xtensa_operand_get_field, xtensa_operand_set_field): Rewritten to
operate on one slot of an instruction. Added error handling.
(xtensa_operand_encode): Handle default operands with no encoding
functions. Check for success by comparing against decoded value.
Add error handling.
(xtensa_operand_decode): Handle default operands. Return decoded value
through argument pointer. Add error handling.
(xtensa_operand_is_register, xtensa_operand_regfile,
xtensa_operand_num_regs, xtensa_operand_is_known_reg): New.
(xtensa_operand_isPCRelative): Rename to ...
(xtensa_operand_is_PCrelative): ... this. Add error handling.
(xtensa_operand_do_reloc, xtensa_operand_undo_reloc): Return value
through argument pointer. Add error handling.
(xtensa_stateOperand_state, xtensa_stateOperand_inout,
xtensa_interfaceOperand_interface, xtensa_regfile_lookup,
xtensa_regfile_lookup_shortname, xtensa_regfile_name,
xtensa_regfile_shortname, xtensa_regfile_view_parent,
xtensa_regfile_num_bits, xtensa_regfile_num_entries,
xtensa_state_lookup, xtensa_state_name, xtensa_state_num_bits,
xtensa_state_is_exported, xtensa_sysreg_lookup,
xtensa_sysreg_lookup_name, xtensa_sysreg_name, xtensa_sysreg_number,
xtensa_sysreg_is_user, xtensa_interface_lookup, xtensa_interface_name,
xtensa_interface_num_bits, xtensa_interface_inout,
xtensa_interface_has_side_effect, xtensa_funcUnit_lookup,
xtensa_funcUnit_name, xtensa_funcUnit_num_copies): New.
* xtensa-modules.c: Rewrite to use new data structures.
* reloc.c (BFD_RELOC_XTENSA_DIFF8, BFD_RELOC_XTENSA_DIFF16,
BFD_RELOC_XTENSA_DIFF32, BFD_RELOC_XTENSA_SLOT0_OP,
BFD_RELOC_XTENSA_SLOT1_OP, BFD_RELOC_XTENSA_SLOT2_OP,
BFD_RELOC_XTENSA_SLOT3_OP, BFD_RELOC_XTENSA_SLOT4_OP,
BFD_RELOC_XTENSA_SLOT5_OP, BFD_RELOC_XTENSA_SLOT6_OP,
BFD_RELOC_XTENSA_SLOT7_OP, BFD_RELOC_XTENSA_SLOT8_OP,
BFD_RELOC_XTENSA_SLOT9_OP, BFD_RELOC_XTENSA_SLOT10_OP,
BFD_RELOC_XTENSA_SLOT11_OP, BFD_RELOC_XTENSA_SLOT12_OP,
BFD_RELOC_XTENSA_SLOT13_OP, BFD_RELOC_XTENSA_SLOT14_OP,
BFD_RELOC_XTENSA_SLOT0_ALT, BFD_RELOC_XTENSA_SLOT1_ALT,
BFD_RELOC_XTENSA_SLOT2_ALT, BFD_RELOC_XTENSA_SLOT3_ALT,
BFD_RELOC_XTENSA_SLOT4_ALT, BFD_RELOC_XTENSA_SLOT5_ALT,
BFD_RELOC_XTENSA_SLOT6_ALT, BFD_RELOC_XTENSA_SLOT7_ALT,
BFD_RELOC_XTENSA_SLOT8_ALT, BFD_RELOC_XTENSA_SLOT9_ALT,
BFD_RELOC_XTENSA_SLOT10_ALT, BFD_RELOC_XTENSA_SLOT11_ALT,
BFD_RELOC_XTENSA_SLOT12_ALT, BFD_RELOC_XTENSA_SLOT13_ALT,
BFD_RELOC_XTENSA_SLOT14_ALT): Add new relocations.
* Makefile.am (xtensa-isa.lo, xtensa-modules.lo): Update dependencies.
* Makefile.in: Regenerate.
* bfd-in2.h: Likewise.
* libbfd.h: Likewise.
gas ChangeLog
* config/tc-xtensa.c (absolute_literals_supported): New global flag.
(UNREACHABLE_MAX_WIDTH): Define.
(XTENSA_FETCH_WIDTH): Delete.
(cur_vinsn, xtensa_fetch_width, xt_saved_debug_type, past_xtensa_end,
prefer_const16, prefer_l32r): New global variables.
(LIT4_SECTION_NAME): Define.
(lit4_state struct): Add lit4_seg_name and lit4_seg fields.
(XTENSA_PROP_*, GET_XTENSA_PROP_*, SET_XTENSA_PROP_*): Define.
(frag_flags struct): New.
(xtensa_block_info struct): Move from tc-xtensa.h. Add flags field.
(subseg_map struct): Add cur_total_freq and cur_target_freq fields.
(bitfield, bit_is_set, set_bit, clear_bit): Define.
(MAX_FORMATS): Define.
(op_placement_info struct, op_placement_table): New.
(O_pltrel, O_hi16, O_lo16): Define.
(directiveE enum): Rename directive_generics to directive_transform.
Delete directive_relax. Add directive_schedule,
directive_absolute_literals, and directive_last_directive.
(directive_info): Rename "generics" to "transform". Delete "relax".
Add "schedule" and "absolute-literals".
(directive_state): Adjust entries to match changes in directive_info.
(xtensa_relax_statesE, RELAX_IMMED_MAXSTEPS): Move to tc-xtensa.h.
(xtensa_const16_opcode, xtensa_movi_opcode, xtensa_movi_n_opcode,
xtensa_l32r_opcode, xtensa_nop_opcode, xtensa_rsr_lcount_opcode): New.
(xtensa_j_opcode, xtensa_rsr_opcode): Delete.
(align_only_targets, software_a0_b_retw_interlock,
software_avoid_b_j_loop_end, maybe_has_b_j_loop_end,
software_avoid_short_loop, software_avoid_close_loop_end,
software_avoid_all_short_loops, specific_opcode): Delete.
(warn_unaligned_branch_targets): New.
(workaround_a0_b_retw, workaround_b_j_loop_end, workaround_short_loop,
workaround_close_loop_end, workaround_all_short_loops): Default FALSE.
(option_[no_]link_relax, option_[no_]transform,
option_[no_]absolute_literals, option_warn_unaligned_targets,
option_prefer_l32r, option_prefer_const16, option_target_hardware):
New enum values.
(option_[no_]align_only_targets, option_literal_section_name,
option_text_section_name, option_data_section_name,
option_bss_section_name, option_eb, option_el): Delete.
(md_longopts): Add entries for: [no-]transform, [no-]absolute-literals,
warn-unaligned-targets, prefer-l32r, prefer-const16, [no-]link-relax,
and target-hardware. Delete entries for [no-]target-align-only,
literal-section-name, text-section-name, data-section-name, and
bss-section-name.
(md_parse_option): Handle new options and remove old ones. Accept but
ignore [no-]density options. Warn for [no-]generics and [no-]relax
and treat them as [no-]transform.
(md_show_usage): Add new options and remove old ones.
(xtensa_setup_hw_workarounds): New.
(md_pseudo_table): Change "word" entry to use xtensa_elf_cons. Add
"long", "short", "loc" and "frequency" entries.
(use_generics): Rename to ...
(use_transform): ... this function. Add past_xtensa_end check.
(use_longcalls): Add past_xtensa_end check.
(code_density_available, can_relax): Delete.
(do_align_targets): New.
(get_directive): Accept dashes in directive names. Warn about
[no-]generics and [no-]relax directives and treat them as
[no-]transform.
(xtensa_begin_directive): Call md_flush_pending_output only for some
directives. Check for directives inside instruction bundles. Warn
about deprecated ".begin literal" usage. Warn and ignore [no-]density
directives. Handle new directives. Check generating_literals flag
for literal_prefix.
(xtensa_end_directive): Check for directives inside instruction
bundles. Warn and ignore [no-]density directives. Handle new
directives. Call xtensa_set_frag_assembly_state.
(xtensa_loc_directive_seen, xtensa_dwarf2_directive_loc,
xtensa_dwarf2_emit_insn): New.
(xtensa_literal_position): Call md_flush_pending_output. Do not check
use_literal_section flag.
(xtensa_literal_pseudo): Call md_flush_pending_output. Handle absolute
literals. Use xtensa_elf_cons to parse the expression.
(xtensa_literal_prefix): Do not check use_literal_section. Support
".lit4" sections for absolute literals. Change prefix convention to
replace ".text" (or ".t" in a linkonce section). No need to call
subseg_set.
(xtensa_frequency_pseudo, xtensa_elf_cons, xtensa_elf_suffix): New.
(expression_end): Handle closing braces and colons.
(PLT_SUFFIX, plt_suffix): Delete.
(expression_maybe_register): Use new xtensa-isa.h functions. Use
xtensa_elf_suffix instead of checking for plt suffix, and handle O_lo16
and O_hi16 expressions as well.
(tokenize_arguments): Handle closing braces and colons.
(parse_arguments): Use new xtensa-isa.h functions. Handle "invisible"
operands and paired register syntax.
(get_invisible_operands): New.
(xg_translate_sysreg_op): Handle new Xtensa LX RSR/WSR/XSR syntax. Use
new xtensa-isa.h functions.
(xtensa_translate_old_userreg_ops, xtensa_translate_zero_immed): New.
(xg_translate_idioms): Check if inside bundle. Use use_transform.
Handle new Xtensa LX RSR/WSR/XSR syntax. Remove code to widen density
instructions. Use xtensa_translate_zero_immed.
(operand_is_immed, operand_is_pcrel_label): Delete.
(get_relaxable_immed): Use new xtensa-isa.h functions.
(get_opcode_from_buf): Add slot parameter. Use new xtensa-isa.h
functions.
(xtensa_print_insn_table, print_vliw_insn): New.
(is_direct_call_opcode): Use new xtensa-isa.h functions.
(is_call_opcode, is_loop_opcode, is_conditional_branch_opcode,
is_branch_or_jump_opcode): Delete.
(is_movi_opcode, decode_reloc, encode_reloc, encode_alt_reloc): New.
(opnum_to_reloc, reloc_to_opnum): Delete.
(xtensa_insnbuf_set_operand, xtensa_insnbuf_get_operand): Use new
xtensa-isa.h functions. Operate on one slot of an instruction.
(xtensa_insnbuf_set_immediate_field, is_negatable_branch,
xg_get_insn_size): Delete.
(xg_get_build_instr_size): Use xg_get_single_size.
(xg_is_narrow_insn, xg_is_single_relaxable_insn): Update calls to
xg_build_widen_table. Use xg_get_single_size.
(xg_get_max_narrow_insn_size): Delete.
(xg_get_max_insn_widen_size, xg_get_max_insn_widen_literal_size,
xg_is_relaxable_insn): Update calls to xg_build_widen_table. Use
xg_get_single_size.
(xg_build_to_insn): Record the loc field. Handle OP_OPERAND_HI16U and
OP_OPERAND_LOW16U. Check xg_valid_literal_expression.
(xg_expand_to_stack, xg_expand_narrow): Update calls to
xg_build_widen_table. Use xg_get_single_size.
(xg_immeds_fit): Use new xtensa-isa.h functions. Update call to
xg_check_operand.
(xg_symbolic_immeds_fit): Likewise. Also handle O_lo16 and O_hi16, and
treat weak symbols conservatively.
(xg_check_operand): Use new xtensa-isa.h functions.
(is_dnrange): Delete.
(xg_assembly_relax): Inline previous calls to tinsn_copy.
(xg_finish_frag): Specify separate relax states for the frag and slot0.
(is_branch_jmp_to_next, xg_add_branch_and_loop_targets): Use new
xtensa-isa.h functions.
(xg_instruction_matches_option_term, xg_instruction_matches_or_options,
xg_instruction_matches_options): New.
(xg_instruction_matches_rule): Handle O_register expressions. Call
xg_instruction_matches_options.
(transition_rule_cmp): New.
(xg_instruction_match): Update call to xg_build_simplify_table.
(xg_build_token_insn): Record loc fields.
(xg_simplify_insn): Check is_specific_opcode field and
density_supported flag.
(xg_expand_assembly_insn): Skip checking code_density_available. Use
new xtensa-isa.h functions. Call use_transform instead of can_relax.
(xg_assemble_literal): Add error handling for O_big. Call
record_alignment. Handle O_pltrel.
(xg_valid_literal_expression): New.
(xg_assemble_literal_space): Add slot parameter. Remove call to
set_expr_symbol_offset. Add call to record_alignment. Update call to
xg_finish_frag.
(xg_emit_insn): Delete.
(xg_emit_insn_to_buf): Add format parameter. Update calls to
xg_add_opcode_fix and xtensa_insnbuf_to_chars.
(xg_add_opcode_fix): Change opcode parameter to tinsn and add format
and slot parameters. Handle new "alternate" relocations for absolute
literals and CONST16 instructions. Check for bad uses of O_lo16 and
O_hi16. Use new xtensa-isa.h functions.
(xg_assemble_tokens): Delete.
(is_register_writer): Use new xtensa-isa.h functions.
(is_bad_loopend_opcode): Check for xtensa_rsr_lcount_opcode instead of
old-style RSR from LCOUNT.
(next_frag_opcode): Delete.
(next_frag_opcode_is_loop, next_frag_format_size, frag_format_size,
update_next_frag_state): New.
(update_next_frag_nop_state): Delete.
(next_frag_pre_opcode_bytes): Use next_frag_opcode_is_loop.
(xtensa_mark_literal_pool_location): Check use_literal_section flag and
the state of the absolute-literals directive. Add calls to
record_alignment and xtensa_set_frag_assembly_state. Call
xtensa_switch_to_non_abs_literal_fragment instead of
xtensa_switch_to_literal_fragment.
(build_nop): New.
(assemble_nop): Use build_nop. Update call to xtensa_insnbuf_to_chars.
(get_expanded_loop_offset): Change check for undefined opcode to an
assertion.
(xtensa_set_frag_assembly_state, relaxable_section,
xtensa_find_unmarked_state_frags, xtensa_find_unaligned_branch_targets,
xtensa_find_unaligned_loops, xg_apply_tentative_value): New.
(md_begin): Update call to xtensa_isa_init. Initialize linkrelax to 1.
Set lit4_seg_name. Call xg_init_vinsn. Initialize new global opcodes.
Call init_op_placement_info_table and xtensa_set_frag_assembly_state.
(xtensa_init_fix_data): New.
(xtensa_frob_label): Reset label symbol to the current frag. Check
do_align_targets and generating_literals flag. Propagate frequency
info to new alignment frag. Call xtensa_set_frag_assembly_state.
(xtensa_unrecognized_line): New.
(xtensa_flush_pending_output): Check if inside a bundle. Add a call
to xtensa_set_frag_assembly_state.
(error_reset_cur_vinsn): New.
(md_assemble): Remove check for literal frag. Remove call to
istack_init. Call use_transform instead of use_generics. Parse
explicit instruction format specifiers. Move code for
a0_b_retw_interlock workaround to xg_assemble_vliw_tokens. Call
error_reset_cur_vinsn on errors. Add call to get_invisible_operands.
Add dwarf2_where call. Remote automatic alignment for ENTRY
instructions. Move call to xtensa_clear_insn_labels to the end.
Rearrange to handle bundles.
(xtensa_cons_fix_new): Delete.
(xtensa_handle_align): New.
(xtensa_frag_init): Call xtensa_set_frag_assembly_state. Remove
assignment to is_no_density field.
(md_pcrel_from): Use new xtensa-isa.h functions. Use decode_reloc
instead of reloc_to_opnum. Handle "alternate" relocations.
(xtensa_force_relocation, xtensa_check_inside_bundle,
xtensa_elf_section_change_hook): New.
(xtensa_symbol_new_hook): Delete.
(xtensa_fix_adjustable): Check for difference of symbols with an
offset. Check for external and weak symbols.
(md_apply_fix3): Remove cases for XTENSA_OP{0,1,2} relocs.
(md_estimate_size_before_relax): Return expansion for the first slot.
(tc_gen_reloc): Handle difference of symbols by producing
XTENSA_DIFF{8,16,32} relocs and by writing the value of the difference
into the output. Handle new XTENSA_SLOT*_OP relocs by storing the
tentative values into the output when linkrelax is set.
(XTENSA_PROP_SEC_NAME): Define.
(xtensa_post_relax_hook): Call xtensa_find_unmarked_state_frags.
Create literal tables only if using literal sections. Create new
property tables instead of old instruction tables. Check for unaligned
branch targets and loops.
(finish_vinsn, find_vinsn_conflicts, check_t1_t2_reads_and_writes,
new_resource_table, clear_resource_table, resize_resource_table,
resources_available, reserve_resources, release_resources,
opcode_funcUnit_use_unit, opcode_funcUnit_use_stage,
resources_conflict, xg_find_narrowest_format, relaxation_requirements,
bundle_single_op, emit_single_op, xg_assemble_vliw_tokens): New.
(xtensa_end): Call xtensa_flush_pending_output. Set past_xtensa_end
flag. Update checks for workaround options. Call
xtensa_mark_narrow_branches and xtensa_mark_zcl_first_insns.
(xtensa_cleanup_align_frags): Add special case for branch targets.
Check for and mark unreachable frags.
(xtensa_fix_target_frags): Remove use of align_only_targets flag.
Use RELAX_LOOP_END_BYTES in special case for negatable branch at the
end of a zero-overhead loop body.
(frag_can_negate_branch): Handle instructions with multiple slots.
Use new xtensa-isa.h functions
(xtensa_mark_narrow_branches, is_narrow_branch_guaranteed_in_range,
xtensa_mark_zcl_first_insns): New.
(xtensa_fix_a0_b_retw_frags, xtensa_fix_b_j_loop_end_frags): Error if
transformations are disabled.
(next_instrs_are_b_retw): Use new xtensa-isa.h functions. Handle
multislot instructions.
(xtensa_fix_close_loop_end_frags, xtensa_fix_short_loop_frags):
Likewise. Also error if transformations are disabled.
(unrelaxed_frag_max_size): New.
(unrelaxed_frag_min_insn_count, unrelax_frag_has_b_j): Use new
xtensa-isa.h functions.
(xtensa_sanity_check, is_empty_loop, is_local_forward_loop): Use
xtensa_opcode_is_loop instead of is_loop_opcode.
(get_text_align_power): Replace as_fatal with assertion.
(get_text_align_fill_size): Iterate instead of using modulus when
use_nops is false.
(get_noop_aligned_address): Assert that this is for a machine-dependent
RELAX_ALIGN_NEXT_OPCODE frag. Use next_frag_opcode_is_loop,
xg_get_single_size, and frag_format_size.
(get_widen_aligned_address): Rename to ...
(get_aligned_diff): ... this function. Add max_diff parameter.
Remove handling of rs_align/rs_align_code frags. Use
next_frag_format_size, get_text_align_power, get_text_align_fill_size,
next_frag_opcode_is_loop, and xg_get_single_size. Compute max_diff
and pass it back to caller.
(xtensa_relax_frag): Use relax_frag_loop_align. Add code for new
RELAX_SLOTS, RELAX_MAYBE_UNREACHABLE, RELAX_MAYBE_DESIRE_ALIGN,
RELAX_FILL_NOP, and RELAX_UNREACHABLE frag types. Check relax_seen.
(relax_frag_text_align): Rename to ...
(relax_frag_loop_align): ... this function. Assume loops can only be
in the first slot of an instruction.
(relax_frag_add_nop): Use assemble_nop instead of constructing an OR
instruction. Remove call to frag_wane.
(relax_frag_narrow): Rename to ...
(relax_frag_for_align): ... this function. Extend to handle
RELAX_FILL_NOP and RELAX_UNREACHABLE, as well as RELAX_SLOTS with
RELAX_NARROW for the first slot.
(find_address_of_next_align_frag, bytes_to_stretch): New.
(future_alignment_required): Use find_address_of_next_align_frag and
bytes_to_stretch. Look ahead to subsequent frags to make smarter
alignment decisions.
(relax_frag_immed): Add format, slot, and estimate_only parameters.
Check if transformations are enabled for b_j_loop_end workaround.
Use new xtensa-isa.h functions and handle multislot instructions.
Update call to xg_assembly_relax.
(md_convert_frag): Handle new RELAX_SLOTS, RELAX_UNREACHABLE,
RELAX_MAYBE_UNREACHABLE, RELAX_MAYBE_DESIRE_ALIGN, and RELAX_FILL_NOP
frag types.
(convert_frag_narrow): Add segP, format and slot parameters. Call
convert_frag_immed for branch instructions. Adjust calls to
tinsn_from_chars, tinsn_immed_from_frag, and xg_emit_insn_to_buf. Use
xg_get_single_size and xg_get_single_format.
(convert_frag_fill_nop): New.
(convert_frag_immed): Add format and slot parameters. Handle multislot
instructions and use new xtensa-isa.h functions. Update calls to
tinsn_immed_from_frag and xg_assembly_relax. Check if transformations
enabled for b_j_loop_end workaround. Use build_nop instead of
assemble_nop. Check is_specific_opcode flag. Check for unreachable
frags. Use xg_get_single_size. Handle O_pltrel.
(fix_new_exp_in_seg): Remove check for old plt flag.
(convert_frag_immed_finish_loop): Update calls to tinsn_from_chars and
xtensa_insnbuf_to_chars. Call tinsn_immed_from_frag. Change check
for loop opcode to an assertion. Mark all frags up to the end of the
loop as not transformable.
(get_last_insn_flags, set_last_insn_flags): Use get_subseg_info.
(get_subseg_info): New.
(xtensa_move_literals): Call xtensa_set_frag_assembly_state. Add null
check for dest_seg.
(xtensa_switch_to_literal_fragment): Rewrite to handle absolute
literals and use xtensa_switch_to_non_abs_literal_fragment otherwise.
(xtensa_switch_to_non_abs_literal_fragment): New.
(cache_literal_section): Add is_code parameter and pass it through to
retrieve_literal_seg.
(retrieve_literal_seg): Add is_code parameter and use it to set the
flags on the literal section. Handle case where head parameter is 0.
(get_frag_is_no_transform, set_frag_is_specific_opcode,
set_frag_is_no_transform): New.
(xtensa_create_property_segments): Add end_property_function parameter
and pass it through to add_xt_block_frags. Call bfd_get_section_flags
and skip SEC_DEBUGGING and !SEC_ALLOC sections.
(xtensa_create_xproperty_segments, section_has_xproperty): New.
(add_xt_block_frags): Add end_property_function parameter and call it
if it is non-zero. Call xtensa_frag_flags_init.
(xtensa_frag_flags_is_empty, xtensa_frag_flags_init,
get_frag_property_flags, frag_flags_to_number,
xtensa_frag_flags_combinable, xt_block_aligned_size,
xtensa_xt_block_combine, add_xt_prop_frags,
init_op_placement_info_table, opcode_fits_format_slot,
xg_get_single_size, xg_get_single_format): New.
(istack_push): Inline call to tinsn_copy.
(tinsn_copy): Delete.
(tinsn_has_invalid_symbolic_operands): Handle O_hi16 and O_lo16 and
CONST16 opcodes. Handle O_big, O_illegal, and O_absent.
(tinsn_has_complex_operands): Handle O_hi16 and O_lo16.
(tinsn_to_insnbuf): Use xg_get_single_format and new xtensa-isa.h
functions. Handle invisible operands.
(tinsn_to_slotbuf): New.
(tinsn_check_arguments): Use new xtensa-isa.h functions.
(tinsn_from_chars): Add slot parameter. Rewrite using xg_init_vinsn,
vinsn_from_chars, and xg_free_vinsn.
(tinsn_from_insnbuf): New.
(tinsn_immed_from_frag): Add slot parameter and handle multislot
instructions. Handle symbol differences.
(get_num_stack_text_bytes): Use xg_get_single_size.
(xg_init_vinsn, xg_clear_vinsn, vinsn_has_specific_opcodes,
xg_free_vinsn, vinsn_to_insnbuf, vinsn_from_chars, expr_is_register,
get_expr_register, set_expr_symbol_offset_diff): New.
* config/tc-xtensa.h (MAX_SLOTS): Define.
(xtensa_relax_statesE): Move from tc-xtensa.c. Add
RELAX_CHECK_ALIGN_NEXT_OPCODE, RELAX_MAYBE_DESIRE_ALIGN, RELAX_SLOTS,
RELAX_FILL_NOP, RELAX_UNREACHABLE, RELAX_MAYBE_UNREACHABLE, and
RELAX_NONE types.
(RELAX_IMMED_MAXSTEPS): Move from tc-xtensa.c.
(xtensa_frag_type struct): Add is_assembly_state_set,
use_absolute_literals, relax_seen, is_unreachable, is_specific_opcode,
is_align, is_text_align, alignment, and is_first_loop_insn fields.
Replace is_generics and is_relax fields by is_no_transform field.
Delete is_text and is_longcalls fields. Change text_expansion and
literal_expansion to arrays of MAX_SLOTS entries. Add arrays of
per-slot information: literal_frags, slot_subtypes, slot_symbols,
slot_sub_symbols, and slot_offsets. Add fr_prev field.
(xtensa_fix_data struct): New.
(xtensa_symfield_type struct): Delete plt field.
(xtensa_block_info struct): Move definition to tc-xtensa.h. Add
forward declaration here.
(xt_section_type enum): Delete xt_insn_sec. Add xt_prop_sec.
(XTENSA_SECTION_RENAME): Undefine.
(TC_FIX_TYPE, TC_INIT_FIX_DATA, TC_FORCE_RELOCATION, NO_PSEUDO_DOT,
tc_unrecognized_line, md_do_align, md_elf_section_change_hook,
HANDLE_ALIGN, TC_LINKRELAX_FIXUP, SUB_SEGMENT_ALIGN): Define.
(TC_CONS_FIX_NEW, tc_symbol_new_hook): Delete.
(unit_num_copies_func, opcode_num_units_func,
opcode_funcUnit_use_unit_func, opcode_funcUnit_use_stage_func): New.
(resource_table struct): New.
* config/xtensa-istack.h (MAX_INSN_ARGS): Increase from 6 to 10.
(TInsn struct): Add keep_wide, loc, fixup, record_fix, subtype,
literal_space, symbol, sub_symbol, offset, and literal_frag fields.
(tinsn_copy): Delete prototype.
(vliw_insn struct): New.
* config/xtensa-relax.c (insn_pattern_struct): Add options field.
(widen_spec_list): Add option conditions for density and boolean
instructions. Add expansions using CONST16 and conditions for using
CONST16 vs. L32R. Use new Xtensa LX RSR/WSR syntax. Add entries for
predicted branches.
(simplify_spec_list): Add option conditions for density instructions.
Add entry for NOP instruction.
(append_transition): Add cmp function pointer parameter and use it to
insert the new entry in order.
(operand_function_LOW16U, operand_function_HI16U): New.
(xg_has_userdef_op_fn, xg_apply_userdef_op_fn): Handle
OP_OPERAND_LOW16U and OP_OPERAND_HI16U.
(enter_opname, split_string): Use xstrdup instead of strdup.
(init_insn_pattern): Initialize new options field.
(clear_req_or_option_list, clear_req_option_list,
clone_req_or_option_list, clone_req_option_list, parse_option_cond):
New.
(parse_insn_pattern): Parse option conditions.
(transition_applies): New.
(build_transition): Use new xtensa-isa.h functions. Fix incorrectly
swapped last arguments in calls to append_constant_value_condition.
Call clone_req_option_list. Add warning about invalid opcode.
Handle LOW16U and HI16U function names.
(build_transition_table): Add cmp parameter and use it in calls to
append_transition. Use new xtensa-isa.h functions. Check
transition_applies before adding entries.
(xg_build_widen_table, xg_build_simplify_table): Add cmp parameter and
pass it through to build_transition_table.
* config/xtensa-relax.h (ReqOrOptionList, ReqOrOption, ReqOptionList,
ReqOption, transition_cmp_fn): New types.
(OpType enum): Add OP_OPERAND_LOW16U and OP_OPERAND_HI16U.
(transition_rule struct): Add options field.
* doc/as.texinfo (Overview): Update Xtensa options.
* doc/c-xtensa.texi (Xtensa Options): Delete --[no-]density,
--[no-]relax, and --[no-]generics options. Update descriptions of
--text-section-literals and --[no-]longcalls. Add
--[no-]absolute-literals and --[no-]transform.
(Xtensa Syntax): Add description of syntax for FLIX instructions.
Remove use of "generic" and "specific" terminology for opcodes.
(Xtensa Registers): Generalize the syntax description to include
user-defined register files.
(Xtensa Automatic Alignment): Update.
(Xtensa Branch Relaxation): Mention limitation of unconditional jumps.
(Xtensa Call Relaxation): Linker can now remove most of the overhead.
(Xtensa Directives): Remove confusing rules about precedence.
(Density Directive, Relax Directive): Delete.
(Schedule Directive): New.
(Generics Directive): Rename to ...
(Transform Directive): ... this node.
(Literal Directive): Update for absolute literals. Missing
literal_position directive is now an error.
(Literal Position Directive): Update for absolute literals.
(Freeregs Directive): Delete.
(Absolute Literals Directive): New.
(Frame Directive): Minor editing.
* Makefile.am (DEPTC_xtensa_elf, DEPOBJ_xtensa_elf, DEP_xtensa_elf):
Update dependencies.
* Makefile.in: Regenerate.
gas/testsuite ChangeLog
* gas/xtensa/all.exp: Adjust expected error message for j_too_far.
Change entry_align test to expect an error.
* gas/xtensa/entry_misalign2.s: Use no-transform instead of
no-generics directives.
include ChangeLog
* xtensa-config.h (XSHAL_USE_ABSOLUTE_LITERALS,
XCHAL_HAVE_PREDICTED_BRANCHES, XCHAL_INST_FETCH_WIDTH): New.
(XCHAL_EXTRA_SA_SIZE, XCHAL_EXTRA_SA_ALIGN): Delete.
* xtensa-isa-internal.h (ISA_INTERFACE_VERSION): Delete.
(config_sturct struct): Delete.
(XTENSA_OPERAND_IS_REGISTER, XTENSA_OPERAND_IS_PCRELATIVE,
XTENSA_OPERAND_IS_INVISIBLE, XTENSA_OPERAND_IS_UNKNOWN,
XTENSA_OPCODE_IS_BRANCH, XTENSA_OPCODE_IS_JUMP,
XTENSA_OPCODE_IS_LOOP, XTENSA_OPCODE_IS_CALL,
XTENSA_STATE_IS_EXPORTED, XTENSA_INTERFACE_HAS_SIDE_EFFECT): Define.
(xtensa_format_encode_fn, xtensa_get_slot_fn, xtensa_set_slot_fn): New.
(xtensa_insn_decode_fn): Rename to ...
(xtensa_opcode_decode_fn): ... this.
(xtensa_immed_decode_fn, xtensa_immed_encode_fn, xtensa_do_reloc_fn,
xtensa_undo_reloc_fn): Update.
(xtensa_encoding_template_fn): Delete.
(xtensa_opcode_encode_fn, xtensa_format_decode_fn,
xtensa_length_decode_fn): New.
(xtensa_format_internal, xtensa_slot_internal): New types.
(xtensa_operand_internal): Delete operand_kind, inout, isPCRelative,
get_field, and set_field fields. Add name, field_id, regfile,
num_regs, and flags fields.
(xtensa_arg_internal): New type.
(xtensa_iclass_internal): Change operands field to array of
xtensa_arg_internal. Add num_stateOperands, stateOperands,
num_interfaceOperands, and interfaceOperands fields.
(xtensa_opcode_internal): Delete length, template, and iclass fields.
Add iclass_id, flags, encode_fns, num_funcUnit_uses, and funcUnit_uses.
(opname_lookup_entry): Delete.
(xtensa_regfile_internal, xtensa_interface_internal,
xtensa_funcUnit_internal, xtensa_state_internal,
xtensa_sysreg_internal, xtensa_lookup_entry): New.
(xtensa_isa_internal): Replace opcode_table field with opcodes field.
Change type of opname_lookup_table. Delete num_modules,
module_opcode_base, module_decode_fn, config, and has_density fields.
Add num_formats, formats, format_decode_fn, length_decode_fn,
num_slots, slots, num_fields, num_operands, operands, num_iclasses,
iclasses, num_regfiles, regfiles, num_states, states,
state_lookup_table, num_sysregs, sysregs, sysreg_lookup_table,
max_sysreg_num, sysreg_table, num_interfaces, interfaces,
interface_lookup_table, num_funcUnits, funcUnits and
funcUnit_lookup_table fields.
(xtensa_isa_module, xtensa_isa_modules): Delete.
(xtensa_isa_name_compare): New prototype.
(xtisa_errno, xtisa_error_msg): New.
* xtensa-isa.h (XTENSA_ISA_VERSION): Define.
(xtensa_isa): Change type.
(xtensa_operand): Delete.
(xtensa_format, xtensa_regfile, xtensa_state, xtensa_sysreg,
xtensa_interface, xtensa_funcUnit, xtensa_isa_status,
xtensa_funcUnit_use): New types.
(libisa_module_specifier): Delete.
(xtensa_isa_errno, xtensa_isa_error_msg): New prototypes.
(xtensa_insnbuf_free, xtensa_insnbuf_to_chars,
xtensa_insnbuf_from_chars): Update prototypes.
(xtensa_load_isa, xtensa_extend_isa, xtensa_default_isa,
xtensa_insn_maxlength, xtensa_num_opcodes, xtensa_decode_insn,
xtensa_encode_insn, xtensa_insn_length,
xtensa_insn_length_from_first_byte, xtensa_num_operands,
xtensa_operand_kind, xtensa_encode_result,
xtensa_operand_isPCRelative): Delete.
(xtensa_isa_init, xtensa_operand_inout, xtensa_operand_get_field,
xtensa_operand_set_field, xtensa_operand_encode,
xtensa_operand_decode, xtensa_operand_do_reloc,
xtensa_operand_undo_reloc): Update prototypes.
(xtensa_isa_maxlength, xtensa_isa_length_from_chars,
xtensa_isa_num_pipe_stages, xtensa_isa_num_formats,
xtensa_isa_num_opcodes, xtensa_isa_num_regfiles, xtensa_isa_num_states,
xtensa_isa_num_sysregs, xtensa_isa_num_interfaces,
xtensa_isa_num_funcUnits, xtensa_format_name, xtensa_format_lookup,
xtensa_format_decode, xtensa_format_encode, xtensa_format_length,
xtensa_format_num_slots, xtensa_format_slot_nop_opcode,
xtensa_format_get_slot, xtensa_format_set_slot, xtensa_opcode_decode,
xtensa_opcode_encode, xtensa_opcode_is_branch, xtensa_opcode_is_jump,
xtensa_opcode_is_loop, xtensa_opcode_is_call,
xtensa_opcode_num_operands, xtensa_opcode_num_stateOperands,
xtensa_opcode_num_interfaceOperands, xtensa_opcode_num_funcUnit_uses,
xtensa_opcode_funcUnit_use, xtensa_operand_name,
xtensa_operand_is_visible, xtensa_operand_is_register,
xtensa_operand_regfile, xtensa_operand_num_regs,
xtensa_operand_is_known_reg, xtensa_operand_is_PCrelative,
xtensa_stateOperand_state, xtensa_stateOperand_inout,
xtensa_interfaceOperand_interface, xtensa_regfile_lookup,
xtensa_regfile_lookup_shortname, xtensa_regfile_name,
xtensa_regfile_shortname, xtensa_regfile_view_parent,
xtensa_regfile_num_bits, xtensa_regfile_num_entries,
xtensa_state_lookup, xtensa_state_name, xtensa_state_num_bits,
xtensa_state_is_exported, xtensa_sysreg_lookup,
xtensa_sysreg_lookup_name, xtensa_sysreg_name, xtensa_sysreg_number,
xtensa_sysreg_is_user, xtensa_interface_lookup, xtensa_interface_name,
xtensa_interface_num_bits, xtensa_interface_inout,
xtensa_interface_has_side_effect, xtensa_funcUnit_lookup,
xtensa_funcUnit_name, xtensa_funcUnit_num_copies): New prototypes.
* elf/xtensa.h (R_XTENSA_DIFF8, R_XTENSA_DIFF16, R_XTENSA_DIFF32,
R_XTENSA_SLOT*_OP, R_XTENSA_SLOT*_ALT): New relocations.
(XTENSA_PROP_SEC_NAME): Define.
(property_table_entry): Add flags field.
(XTENSA_PROP_*, GET_XTENSA_PROP_*, SET_XTENSA_PROP_*): Define.
ld ChangeLog
* ld.texinfo (Xtensa): Describe new linker relaxation to optimize
assembler-generated longcall sequences. Describe new --size-opt
option.
* emulparams/elf32xtensa.sh (OTHER_SECTIONS): Add .xt.prop section.
* emultempl/xtensaelf.em (remove_section,
replace_insn_sec_with_prop_sec, replace_instruction_table_sections,
elf_xtensa_after_open): New.
(OPTION_OPT_SIZEOPT, OPTION_LITERAL_MOVEMENT,
OPTION_NO_LITERAL_MOVEMENT): Define.
(elf32xtensa_size_opt, elf32xtensa_no_literal_movement): New globals.
(PARSE_AND_LIST_LONGOPTS): Add size-opt and [no-]literal-movement.
(PARSE_AND_LIST_OPTIONS): Add --size-opt.
(PARSE_AND_LIST_ARGS_CASES): Handle OPTION_OPT_SIZEOPT,
OPTION_LITERAL_MOVEMENT, and OPTION_NO_LITERAL_MOVEMENT.
(LDEMUL_AFTER_OPEN): Set to elf_xtensa_after_open.
* scripttempl/elfxtensa.sc: Update with changes from elf.sc.
* Makefile.am (eelf32xtensa.c): Update dependencies.
* Makefile.in: Regenerate.
ld/testsuite ChangeLog
* ld-xtensa/lcall1.s: Use .literal directive.
* ld-xtensa/lcall2.s: Align function entry.
* ld-xtensa/coalesce2.s: Likewise.
opcodes ChangeLog
* xtensa-dis.c (state_names): Delete.
(fetch_data): Use xtensa_isa_maxlength.
(print_xtensa_operand): Replace operand parameter with opcode/operand
pair. Remove print_sr_name parameter. Use new xtensa-isa.h functions.
(print_insn_xtensa): Use new xtensa-isa.h functions. Handle multislot
instruction bundles. Use xmalloc instead of malloc.
2004-10-08 08:22:15 +08:00
|
|
|
$(srcdir)/emulparams/xtensa-config.sh $(srcdir)/emultempl/elf32.em \
|
|
|
|
$(srcdir)/emultempl/xtensaelf.em $(INCDIR)/xtensa-config.h \
|
|
|
|
$(BFDDIR)/elf-bfd.h $(BFDDIR)/libbfd.h $(INCDIR)/elf/xtensa.h \
|
2003-04-01 23:50:31 +08:00
|
|
|
$(srcdir)/scripttempl/elfxtensa.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32xtensa "$(tdir_elf32xtensa)"
|
1999-05-03 15:29:11 +08:00
|
|
|
eelf32fr30.c: $(srcdir)/emulparams/elf32fr30.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32fr30 "$(tdir_fr30)"
|
2002-06-19 05:17:27 +08:00
|
|
|
eelf32frv.c: $(srcdir)/emulparams/elf32frv.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32frv "$(tdir_frv)"
|
1999-05-07 15:40:05 +08:00
|
|
|
eelf32mcore.c: $(srcdir)/emulparams/elf32mcore.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32mcore "$(tdir_mcore)"
|
1999-05-03 15:29:11 +08:00
|
|
|
em32relf.c: $(srcdir)/emulparams/m32relf.sh \
|
2001-07-14 23:47:17 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
1999-05-03 15:29:11 +08:00
|
|
|
${GENSCRIPTS} m32relf "$(tdir_m32r)"
|
2003-12-19 19:44:01 +08:00
|
|
|
em32rlelf.c: $(srcdir)/emulparams/m32rlelf.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} m32rlelf "$(tdir_m32rlelf)"
|
|
|
|
em32relf_linux.c: $(srcdir)/emulparams/m32relf_linux.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} m32relf_linux "$(tdir_m32relf_linux)"
|
|
|
|
em32rlelf_linux.c: $(srcdir)/emulparams/m32rlelf_linux.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} m32rlelf_linux "$(tdir_m32rlelf_linux)"
|
1999-05-03 15:29:11 +08:00
|
|
|
eelf32_sparc.c: $(srcdir)/emulparams/elf32_sparc.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32_sparc "$(tdir_elf32_sparc)"
|
2000-08-11 04:40:39 +08:00
|
|
|
eelf32_i860.c: $(srcdir)/emulparams/elf32_i860.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32_i860 "$(tdir_elf32_i860)"
|
1999-05-28 05:49:21 +08:00
|
|
|
eelf32_i960.c: $(srcdir)/emulparams/elf32_i960.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32_i960 "$(tdir_elf32_i960)"
|
1999-05-03 15:29:11 +08:00
|
|
|
eelf32b4300.c: $(srcdir)/emulparams/elf32b4300.sh \
|
2004-04-22 04:52:31 +08:00
|
|
|
$(srcdir)/emulparams/elf32bmip.sh \
|
1999-05-03 15:29:11 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32b4300 "$(tdir_elf32b4300)"
|
2004-03-30 22:04:32 +08:00
|
|
|
eelf32cr16c.c: $(srcdir)/emulparams/elf32cr16c.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em \
|
|
|
|
$(srcdir)/scripttempl/elf32cr16c.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32cr16c "$(tdir_elf32cr16c)"
|
1999-05-03 15:29:11 +08:00
|
|
|
eelf32bmip.c: $(srcdir)/emulparams/elf32bmip.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32bmip "$(tdir_elf32bmip)"
|
|
|
|
eelf32bsmip.c: $(srcdir)/emulparams/elf32bsmip.sh \
|
2004-04-08 22:52:44 +08:00
|
|
|
$(srcdir)/emulparams/elf32bmip.sh $(srcdir)/emultempl/irix.em \
|
1999-05-03 15:29:11 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32bsmip "$(tdir_elf32bsmip)"
|
2000-07-02 09:15:56 +08:00
|
|
|
eelf32btsmip.c: $(srcdir)/emulparams/elf32btsmip.sh \
|
2004-04-22 04:52:31 +08:00
|
|
|
$(srcdir)/emulparams/elf32bmip.sh \
|
2000-07-02 09:15:56 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32btsmip "$(tdir_elf32btsmip)"
|
2004-07-08 01:28:53 +08:00
|
|
|
eelf32crx.c: $(srcdir)/emulparams/elf32crx.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/crxelf.em \
|
|
|
|
$(srcdir)/scripttempl/elf32crx.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32crx "$(tdir_elf32crx)"
|
2002-07-31 07:48:30 +08:00
|
|
|
eelf32btsmipn32.c: $(srcdir)/emulparams/elf32btsmipn32.sh \
|
2004-04-22 04:52:31 +08:00
|
|
|
$(srcdir)/emulparams/elf32bmip.sh \
|
2002-07-31 07:48:30 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32btsmipn32 "$(tdir_elf32btsmipn32)"
|
2001-04-08 13:13:57 +08:00
|
|
|
eelf32ltsmip.c: $(srcdir)/emulparams/elf32ltsmip.sh \
|
* Makefile.am (CONFIG_STATUS_DEPENDENCIES): Define.
(config.status): Delete rule.
Add extra dependencies to cover sourced emulparams files.
* Makefile.in: Regenerate.
* scripttempl/elf.sc: Order <section>, <section>.* and
corresponding linkonce sections as seen in input files.
Formatting fixes. Zero vma of all sections if not relocating.
(STACK): Define and insert if STACK_ADDR defined.
(OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
(OTHER_READONLY_SECTIONS): Always insert, not just when relocating.
(OTHER_READWRITE_SECTIONS): Likewise.
(OTHER_GOT_SECTIONS): Likewise.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_BSS_SECTIONS): Likewise.
* scripttempl/elfi370.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise.
* scripttempl/nw.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise
* emulparams/armelf.sh (OTHER_RELOCATING_SECTIONS): Delete.
(STACK_ADDR): Define.
* emulparams/armelf_oabi.sh: As for armelf.sh.
* emulparams/elf32mcore.sh: As for armelf.sh.
* emulparams/h8300elf.sh: As for armelf.sh.
* emulparams/mn10200.sh: As for armelf.sh.
* emulparams/shelf.sh: As for armelf.sh.
* emulparams/elf32fr30.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
* emulparams/m32relf.sh: As for elf32fr30.sh.
* emulparams/h8300helf.sh: As for elf32fr30.sh.
* emulparams/h8300self.sh: As for elf32fr30.sh.
* emulparams/criself.sh (OTHER_READONLY_SECTIONS): Protect symbol
defines with RELOCATING test.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_END_SYMBOLS): ..this.
* emulparams/crislinux.sh: As for criself.sh.
* emulparams/elf32bmipn32.sh (OTHER_SDATA_SECTIONS): Zero vma
if not relocating.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_SECTIONS): ..this. Zero vma if not relocating. Order
normal and linkonce sections as seen in input files.
* emulparams/elf32bmip.sh (DATA_ADDR): Don't define if EMBEDDED.
(TEXT_DYNAMIC): Likewise.
(INITIAL_READONLY_SECTIONS): Zero vma if not relocating.
(OTHER_SDATA_SECTIONS): Likewise.
* emulparams/elf32ppc.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/shlelf_linux.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/elf64alpha.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/hppalinux.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/elf64_aix.sh (OTHER_GOT_SECTIONS): Likewise.
(OTHER_PLT_RELOC_SECTIONS): Likewise.
(OTHER_READONLY_SECTIONS): Likewise. Order normal and linkonce
sections as seen in input files.
* emulparams/elf64_ia64.sh: As for emulparams/elf64_aix.sh.
* emulparams/hppa64linux.sh (OTHER_READONLY_SECTIONS): Zero vma
if not relocating.
(OTHER_READWRITE_SECTIONS, OTHER_BSS_SECTIONS): Likewise.
(OTHER_BSS_END_SYMBOLS): Merge from elf64hppa.sh.
* emulparams/elf64mmix.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_SECTIONS): Instead, use this..
(OTHER_END_SYMBOLS): ..and this.
* emulparams/elf32b4300.sh: Source elf32bmip.sh, remove duplicates.
* emulparams/elf32bsmip.sh: Likewise.
* emulparams/elf32btsmip.sh: Likewise.
* emulparams/elf32ebmip.sh: Likewise.
* emulparams/elf32lmip.sh: Likewise.
* emulparams/elf32elmip.sh: Source elf32lmip.sh, remove duplicates.
* emulparams/elf32lsmip.sh: Likewise.
* emulparams/elf32ltsmip.sh: Source elf32btsmip.sh, remove duplicates.
* emulparams/elf32l4300.sh: Source elf32b4300.sh, remove duplicates.
* emulparams/elf64bmip.sh: Source elf32bmipn32.sh, remove duplicates.
* emulparams/elf64btsmip.sh: Likewise.
* emulparams/elf64ltsmip.sh: Source elf64btsmip.sh, remove duplicates.
* emulparams/elf32lppc.sh: Source elf32ppc.sh, remove duplicates.
* emulparams/elf32ppclinux.sh: Likewise.
* emulparams/elf32ppcsim.sh: Likewise.
* emulparams/elf32lppcsim.sh: Source elf32lppc.sh, remove duplicates.
* emulparams/elf64hppa.sh: Source hppa64linux.sh, remove duplicates.
* emulparams/h8300helf.sh: Source h8300elf.sh, remove duplicates.
* emulparams/h8300self.sh: Likewise.
* emulparams/mn10300.sh: Source mn10200.sh, remove duplicates.
* emulparams/sh.sh: Comment.
* emulparams/shl.sh: Source sh.sh, remove duplicates.
* emulparams/shlelf.sh: Source shelf.sh, remove duplicates.
* emulparams/shelf_linux.sh: Source shlelf_linux.sh, remove duplicates.
2001-11-22 17:08:05 +08:00
|
|
|
$(srcdir)/emulparams/elf32btsmip.sh $(srcdir)/emulparams/elf32bmip.sh \
|
2001-04-08 13:13:57 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32ltsmip "$(tdir_elf32ltsmip)"
|
2002-07-31 07:48:30 +08:00
|
|
|
eelf32ltsmipn32.c: $(srcdir)/emulparams/elf32ltsmipn32.sh \
|
|
|
|
$(srcdir)/emulparams/elf32btsmip.sh $(srcdir)/emulparams/elf32bmip.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32ltsmipn32 "$(tdir_elf32ltsmipn32)"
|
1999-05-03 15:29:11 +08:00
|
|
|
eelf32ebmip.c: $(srcdir)/emulparams/elf32ebmip.sh \
|
2004-04-22 04:52:31 +08:00
|
|
|
$(srcdir)/emulparams/elf32bmip.sh \
|
1999-05-03 15:29:11 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32ebmip "$(tdir_elf32ebmip)"
|
|
|
|
eelf32elmip.c: $(srcdir)/emulparams/elf32elmip.sh \
|
* Makefile.am (CONFIG_STATUS_DEPENDENCIES): Define.
(config.status): Delete rule.
Add extra dependencies to cover sourced emulparams files.
* Makefile.in: Regenerate.
* scripttempl/elf.sc: Order <section>, <section>.* and
corresponding linkonce sections as seen in input files.
Formatting fixes. Zero vma of all sections if not relocating.
(STACK): Define and insert if STACK_ADDR defined.
(OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
(OTHER_READONLY_SECTIONS): Always insert, not just when relocating.
(OTHER_READWRITE_SECTIONS): Likewise.
(OTHER_GOT_SECTIONS): Likewise.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_BSS_SECTIONS): Likewise.
* scripttempl/elfi370.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise.
* scripttempl/nw.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise
* emulparams/armelf.sh (OTHER_RELOCATING_SECTIONS): Delete.
(STACK_ADDR): Define.
* emulparams/armelf_oabi.sh: As for armelf.sh.
* emulparams/elf32mcore.sh: As for armelf.sh.
* emulparams/h8300elf.sh: As for armelf.sh.
* emulparams/mn10200.sh: As for armelf.sh.
* emulparams/shelf.sh: As for armelf.sh.
* emulparams/elf32fr30.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
* emulparams/m32relf.sh: As for elf32fr30.sh.
* emulparams/h8300helf.sh: As for elf32fr30.sh.
* emulparams/h8300self.sh: As for elf32fr30.sh.
* emulparams/criself.sh (OTHER_READONLY_SECTIONS): Protect symbol
defines with RELOCATING test.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_END_SYMBOLS): ..this.
* emulparams/crislinux.sh: As for criself.sh.
* emulparams/elf32bmipn32.sh (OTHER_SDATA_SECTIONS): Zero vma
if not relocating.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_SECTIONS): ..this. Zero vma if not relocating. Order
normal and linkonce sections as seen in input files.
* emulparams/elf32bmip.sh (DATA_ADDR): Don't define if EMBEDDED.
(TEXT_DYNAMIC): Likewise.
(INITIAL_READONLY_SECTIONS): Zero vma if not relocating.
(OTHER_SDATA_SECTIONS): Likewise.
* emulparams/elf32ppc.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/shlelf_linux.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/elf64alpha.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/hppalinux.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/elf64_aix.sh (OTHER_GOT_SECTIONS): Likewise.
(OTHER_PLT_RELOC_SECTIONS): Likewise.
(OTHER_READONLY_SECTIONS): Likewise. Order normal and linkonce
sections as seen in input files.
* emulparams/elf64_ia64.sh: As for emulparams/elf64_aix.sh.
* emulparams/hppa64linux.sh (OTHER_READONLY_SECTIONS): Zero vma
if not relocating.
(OTHER_READWRITE_SECTIONS, OTHER_BSS_SECTIONS): Likewise.
(OTHER_BSS_END_SYMBOLS): Merge from elf64hppa.sh.
* emulparams/elf64mmix.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_SECTIONS): Instead, use this..
(OTHER_END_SYMBOLS): ..and this.
* emulparams/elf32b4300.sh: Source elf32bmip.sh, remove duplicates.
* emulparams/elf32bsmip.sh: Likewise.
* emulparams/elf32btsmip.sh: Likewise.
* emulparams/elf32ebmip.sh: Likewise.
* emulparams/elf32lmip.sh: Likewise.
* emulparams/elf32elmip.sh: Source elf32lmip.sh, remove duplicates.
* emulparams/elf32lsmip.sh: Likewise.
* emulparams/elf32ltsmip.sh: Source elf32btsmip.sh, remove duplicates.
* emulparams/elf32l4300.sh: Source elf32b4300.sh, remove duplicates.
* emulparams/elf64bmip.sh: Source elf32bmipn32.sh, remove duplicates.
* emulparams/elf64btsmip.sh: Likewise.
* emulparams/elf64ltsmip.sh: Source elf64btsmip.sh, remove duplicates.
* emulparams/elf32lppc.sh: Source elf32ppc.sh, remove duplicates.
* emulparams/elf32ppclinux.sh: Likewise.
* emulparams/elf32ppcsim.sh: Likewise.
* emulparams/elf32lppcsim.sh: Source elf32lppc.sh, remove duplicates.
* emulparams/elf64hppa.sh: Source hppa64linux.sh, remove duplicates.
* emulparams/h8300helf.sh: Source h8300elf.sh, remove duplicates.
* emulparams/h8300self.sh: Likewise.
* emulparams/mn10300.sh: Source mn10200.sh, remove duplicates.
* emulparams/sh.sh: Comment.
* emulparams/shl.sh: Source sh.sh, remove duplicates.
* emulparams/shlelf.sh: Source shelf.sh, remove duplicates.
* emulparams/shelf_linux.sh: Source shlelf_linux.sh, remove duplicates.
2001-11-22 17:08:05 +08:00
|
|
|
$(srcdir)/emulparams/elf32lmip.sh $(srcdir)/emulparams/elf32bmip.sh \
|
1999-05-03 15:29:11 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32elmip "$(tdir_elf32elmip)"
|
1999-07-01 05:00:10 +08:00
|
|
|
eelf32bmipn32.c: $(srcdir)/emulparams/elf32bmipn32.sh \
|
2004-04-08 22:52:44 +08:00
|
|
|
$(srcdir)/emultempl/irix.em \
|
1999-07-01 05:00:10 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32bmipn32 "$(tdir_elf32bmipn32)"
|
1999-05-03 15:29:11 +08:00
|
|
|
eelf32l4300.c: $(srcdir)/emulparams/elf32l4300.sh \
|
* Makefile.am (CONFIG_STATUS_DEPENDENCIES): Define.
(config.status): Delete rule.
Add extra dependencies to cover sourced emulparams files.
* Makefile.in: Regenerate.
* scripttempl/elf.sc: Order <section>, <section>.* and
corresponding linkonce sections as seen in input files.
Formatting fixes. Zero vma of all sections if not relocating.
(STACK): Define and insert if STACK_ADDR defined.
(OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
(OTHER_READONLY_SECTIONS): Always insert, not just when relocating.
(OTHER_READWRITE_SECTIONS): Likewise.
(OTHER_GOT_SECTIONS): Likewise.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_BSS_SECTIONS): Likewise.
* scripttempl/elfi370.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise.
* scripttempl/nw.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise
* emulparams/armelf.sh (OTHER_RELOCATING_SECTIONS): Delete.
(STACK_ADDR): Define.
* emulparams/armelf_oabi.sh: As for armelf.sh.
* emulparams/elf32mcore.sh: As for armelf.sh.
* emulparams/h8300elf.sh: As for armelf.sh.
* emulparams/mn10200.sh: As for armelf.sh.
* emulparams/shelf.sh: As for armelf.sh.
* emulparams/elf32fr30.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
* emulparams/m32relf.sh: As for elf32fr30.sh.
* emulparams/h8300helf.sh: As for elf32fr30.sh.
* emulparams/h8300self.sh: As for elf32fr30.sh.
* emulparams/criself.sh (OTHER_READONLY_SECTIONS): Protect symbol
defines with RELOCATING test.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_END_SYMBOLS): ..this.
* emulparams/crislinux.sh: As for criself.sh.
* emulparams/elf32bmipn32.sh (OTHER_SDATA_SECTIONS): Zero vma
if not relocating.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_SECTIONS): ..this. Zero vma if not relocating. Order
normal and linkonce sections as seen in input files.
* emulparams/elf32bmip.sh (DATA_ADDR): Don't define if EMBEDDED.
(TEXT_DYNAMIC): Likewise.
(INITIAL_READONLY_SECTIONS): Zero vma if not relocating.
(OTHER_SDATA_SECTIONS): Likewise.
* emulparams/elf32ppc.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/shlelf_linux.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/elf64alpha.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/hppalinux.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/elf64_aix.sh (OTHER_GOT_SECTIONS): Likewise.
(OTHER_PLT_RELOC_SECTIONS): Likewise.
(OTHER_READONLY_SECTIONS): Likewise. Order normal and linkonce
sections as seen in input files.
* emulparams/elf64_ia64.sh: As for emulparams/elf64_aix.sh.
* emulparams/hppa64linux.sh (OTHER_READONLY_SECTIONS): Zero vma
if not relocating.
(OTHER_READWRITE_SECTIONS, OTHER_BSS_SECTIONS): Likewise.
(OTHER_BSS_END_SYMBOLS): Merge from elf64hppa.sh.
* emulparams/elf64mmix.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_SECTIONS): Instead, use this..
(OTHER_END_SYMBOLS): ..and this.
* emulparams/elf32b4300.sh: Source elf32bmip.sh, remove duplicates.
* emulparams/elf32bsmip.sh: Likewise.
* emulparams/elf32btsmip.sh: Likewise.
* emulparams/elf32ebmip.sh: Likewise.
* emulparams/elf32lmip.sh: Likewise.
* emulparams/elf32elmip.sh: Source elf32lmip.sh, remove duplicates.
* emulparams/elf32lsmip.sh: Likewise.
* emulparams/elf32ltsmip.sh: Source elf32btsmip.sh, remove duplicates.
* emulparams/elf32l4300.sh: Source elf32b4300.sh, remove duplicates.
* emulparams/elf64bmip.sh: Source elf32bmipn32.sh, remove duplicates.
* emulparams/elf64btsmip.sh: Likewise.
* emulparams/elf64ltsmip.sh: Source elf64btsmip.sh, remove duplicates.
* emulparams/elf32lppc.sh: Source elf32ppc.sh, remove duplicates.
* emulparams/elf32ppclinux.sh: Likewise.
* emulparams/elf32ppcsim.sh: Likewise.
* emulparams/elf32lppcsim.sh: Source elf32lppc.sh, remove duplicates.
* emulparams/elf64hppa.sh: Source hppa64linux.sh, remove duplicates.
* emulparams/h8300helf.sh: Source h8300elf.sh, remove duplicates.
* emulparams/h8300self.sh: Likewise.
* emulparams/mn10300.sh: Source mn10200.sh, remove duplicates.
* emulparams/sh.sh: Comment.
* emulparams/shl.sh: Source sh.sh, remove duplicates.
* emulparams/shlelf.sh: Source shelf.sh, remove duplicates.
* emulparams/shelf_linux.sh: Source shlelf_linux.sh, remove duplicates.
2001-11-22 17:08:05 +08:00
|
|
|
$(srcdir)/emulparams/elf32b4300.sh $(srcdir)/emulparams/elf32bmip.sh \
|
1999-05-03 15:29:11 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32l4300 "$(tdir_elf32l4300)"
|
|
|
|
eelf32lmip.c: $(srcdir)/emulparams/elf32lmip.sh \
|
2004-04-22 04:52:31 +08:00
|
|
|
$(srcdir)/emulparams/elf32bmip.sh \
|
1999-05-03 15:29:11 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32lmip "$(tdir_elf32lmip)"
|
2003-10-30 17:47:15 +08:00
|
|
|
eelf32mipswindiss.c: $(srcdir)/emulparams/elf32mipswindiss.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32mipswindiss "$(tdir_elf32mipswindiss)"
|
1999-05-03 15:29:11 +08:00
|
|
|
eelf32lppc.c: $(srcdir)/emulparams/elf32lppc.sh \
|
2003-02-18 14:05:07 +08:00
|
|
|
$(srcdir)/emulparams/elf32ppc.sh $(srcdir)/emultempl/ppc32elf.em \
|
2000-04-15 05:18:23 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
1999-05-03 15:29:11 +08:00
|
|
|
${GENSCRIPTS} elf32lppc "$(tdir_elf32lppc)"
|
2002-08-09 23:38:24 +08:00
|
|
|
eelf32lppcnto.c: $(srcdir)/emulparams/elf32lppcnto.sh \
|
2003-02-18 14:05:07 +08:00
|
|
|
$(srcdir)/emulparams/elf32ppc.sh $(srcdir)/emultempl/ppc32elf.em \
|
2002-08-09 23:38:24 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32lppcnto "$(tdir_elf32lppcnto)"
|
2000-04-15 05:18:23 +08:00
|
|
|
eelf32lppcsim.c: $(srcdir)/emulparams/elf32lppcsim.sh \
|
* Makefile.am (CONFIG_STATUS_DEPENDENCIES): Define.
(config.status): Delete rule.
Add extra dependencies to cover sourced emulparams files.
* Makefile.in: Regenerate.
* scripttempl/elf.sc: Order <section>, <section>.* and
corresponding linkonce sections as seen in input files.
Formatting fixes. Zero vma of all sections if not relocating.
(STACK): Define and insert if STACK_ADDR defined.
(OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
(OTHER_READONLY_SECTIONS): Always insert, not just when relocating.
(OTHER_READWRITE_SECTIONS): Likewise.
(OTHER_GOT_SECTIONS): Likewise.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_BSS_SECTIONS): Likewise.
* scripttempl/elfi370.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise.
* scripttempl/nw.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise
* emulparams/armelf.sh (OTHER_RELOCATING_SECTIONS): Delete.
(STACK_ADDR): Define.
* emulparams/armelf_oabi.sh: As for armelf.sh.
* emulparams/elf32mcore.sh: As for armelf.sh.
* emulparams/h8300elf.sh: As for armelf.sh.
* emulparams/mn10200.sh: As for armelf.sh.
* emulparams/shelf.sh: As for armelf.sh.
* emulparams/elf32fr30.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
* emulparams/m32relf.sh: As for elf32fr30.sh.
* emulparams/h8300helf.sh: As for elf32fr30.sh.
* emulparams/h8300self.sh: As for elf32fr30.sh.
* emulparams/criself.sh (OTHER_READONLY_SECTIONS): Protect symbol
defines with RELOCATING test.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_END_SYMBOLS): ..this.
* emulparams/crislinux.sh: As for criself.sh.
* emulparams/elf32bmipn32.sh (OTHER_SDATA_SECTIONS): Zero vma
if not relocating.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_SECTIONS): ..this. Zero vma if not relocating. Order
normal and linkonce sections as seen in input files.
* emulparams/elf32bmip.sh (DATA_ADDR): Don't define if EMBEDDED.
(TEXT_DYNAMIC): Likewise.
(INITIAL_READONLY_SECTIONS): Zero vma if not relocating.
(OTHER_SDATA_SECTIONS): Likewise.
* emulparams/elf32ppc.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/shlelf_linux.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/elf64alpha.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/hppalinux.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/elf64_aix.sh (OTHER_GOT_SECTIONS): Likewise.
(OTHER_PLT_RELOC_SECTIONS): Likewise.
(OTHER_READONLY_SECTIONS): Likewise. Order normal and linkonce
sections as seen in input files.
* emulparams/elf64_ia64.sh: As for emulparams/elf64_aix.sh.
* emulparams/hppa64linux.sh (OTHER_READONLY_SECTIONS): Zero vma
if not relocating.
(OTHER_READWRITE_SECTIONS, OTHER_BSS_SECTIONS): Likewise.
(OTHER_BSS_END_SYMBOLS): Merge from elf64hppa.sh.
* emulparams/elf64mmix.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_SECTIONS): Instead, use this..
(OTHER_END_SYMBOLS): ..and this.
* emulparams/elf32b4300.sh: Source elf32bmip.sh, remove duplicates.
* emulparams/elf32bsmip.sh: Likewise.
* emulparams/elf32btsmip.sh: Likewise.
* emulparams/elf32ebmip.sh: Likewise.
* emulparams/elf32lmip.sh: Likewise.
* emulparams/elf32elmip.sh: Source elf32lmip.sh, remove duplicates.
* emulparams/elf32lsmip.sh: Likewise.
* emulparams/elf32ltsmip.sh: Source elf32btsmip.sh, remove duplicates.
* emulparams/elf32l4300.sh: Source elf32b4300.sh, remove duplicates.
* emulparams/elf64bmip.sh: Source elf32bmipn32.sh, remove duplicates.
* emulparams/elf64btsmip.sh: Likewise.
* emulparams/elf64ltsmip.sh: Source elf64btsmip.sh, remove duplicates.
* emulparams/elf32lppc.sh: Source elf32ppc.sh, remove duplicates.
* emulparams/elf32ppclinux.sh: Likewise.
* emulparams/elf32ppcsim.sh: Likewise.
* emulparams/elf32lppcsim.sh: Source elf32lppc.sh, remove duplicates.
* emulparams/elf64hppa.sh: Source hppa64linux.sh, remove duplicates.
* emulparams/h8300helf.sh: Source h8300elf.sh, remove duplicates.
* emulparams/h8300self.sh: Likewise.
* emulparams/mn10300.sh: Source mn10200.sh, remove duplicates.
* emulparams/sh.sh: Comment.
* emulparams/shl.sh: Source sh.sh, remove duplicates.
* emulparams/shlelf.sh: Source shelf.sh, remove duplicates.
* emulparams/shelf_linux.sh: Source shlelf_linux.sh, remove duplicates.
2001-11-22 17:08:05 +08:00
|
|
|
$(srcdir)/emulparams/elf32lppc.sh $(srcdir)/emulparams/elf32ppc.sh \
|
2003-02-18 14:05:07 +08:00
|
|
|
$(srcdir)/emultempl/ppc32elf.em \
|
2000-04-15 05:18:23 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32lppcsim "$(tdir_elf32lppcsim)"
|
2002-08-09 23:38:24 +08:00
|
|
|
eelf32ppcnto.c: $(srcdir)/emulparams/elf32ppcnto.sh \
|
2003-02-18 14:05:07 +08:00
|
|
|
$(srcdir)/emulparams/elf32ppc.sh $(srcdir)/emultempl/ppc32elf.em \
|
2002-08-09 23:38:24 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32ppcnto "$(tdir_elf32ppcnto)"
|
2002-11-30 16:56:22 +08:00
|
|
|
eelf32ppcwindiss.c: $(srcdir)/emulparams/elf32ppcwindiss.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
2002-05-01 01:49:01 +08:00
|
|
|
${GENSCRIPTS} elf32ppcwindiss "$(tdir_elf32ppcwindiss)"
|
2005-05-07 Paul Brook <paul@codesourcery.com>
bfd/
* config.bfd: Add separate case for ppc-vxworks.
* configure: Regenerate.
* configure.in: Include elf-vxworks.lo on ppc targets.
* elf-vxworks.c (elf_vxworks_final_write_processing): Handle
.rela.plt.unloaded.
* elf32-ppc.c: Add VxWorks target vec. Include elf-vxworks.h.
(PLT_ENTRY_SIZE, PLT_INITIAL_ENTRY_SIZE, PLT_SLOT_SIZE): Remove.
(VXWORKS_PLT_ENTRY_SIZE, ppc_elf_vxworks_plt_entry,
ppc_elf_vxworks_pic_plt_entry, VXWORKS_PLT_INITIAL_ENTRY_SIZE,
ppc_elf_vxworks_plt0_entry, ppc_elf_vxworks_pic_plt0_entry,
VXWORKS_PLT_NON_JMP_SLOT_RELOCS, VXWORKS_PLTRESOLVE_RELOCS,
VXWORKS_PLTRESOLVE_RELOCS_SHLIB): New.
(ppc_elf_link_hash_table): Add srelplt2, sgotplt, hgot, hplt,
is_vxworks, plt_entry_size, plt_slot_size, plt_initial_entry_size.
(ppc_elf_link_hash_table_create): Initialize hadtab plt fields.
(ppc_elf_create_got): Create .got.plt for VxWorks.
(ppc_elf_create_dynamic_sections): Create unloaded plt relocation
section for VxWorks.
(ppc_elf_select_plt_layout): Handle VxWorks plt format.
(allocate_got): VxWorks does not need a got header.
(allocate_dynrelocs): Handle VxWorks plt format.
(ppc_elf_size_dynamic_sections): Save _G_O_T_ and _P_L_T_ symbols for
VxWorks. Handle VxWorks plt/got.
(ppc_elf_finish_dynamic_sections): Fill in VxWorks plt.
(ppc_elf_vxworks_special_sections): New.
(ppc_elf_vxworks_link_hash_table_create,
ppc_elf_vxworks_add_symbol_hook,
elf_i386_vxworks_link_output_symbol_hook,
ppc_elf_vxworks_final_write_processing): New functions.
* targets.c (bfd_elf32_powerpc_vxworks_vec): Declare.
(_bfd_target_vector): Use it.
gas/
* config/tc-ppc.c (ppc_target_format): Add VxWorks.
gas/testsuite/
* gas/ppc/altivec.d: Match all powerpc target vecs.
* gas/ppc/booke.d: Ditto.
* gas/ppc/e500.d: Ditto.
ld/
* Makefile.am (ALL_EMULATIONS): Add eelf32ppcvxworks.o.
(eelf32ppcvxworks.o): Add dependencies.
* Makefile.in: Regenerate.
* configure.tgt: Add entry for powerpc-vxworks.
* emulparams/elf32-ppc.c: Mention elf32ppcvxworks.sh in comment.
* emulparams/elf32ppcvxworks.sh: New file.
* emultempl/ppc32elf.em (bfd_elf32_powerpc_vxworks_vec): Declare.
(is_ppc_elf32_vec): New function.
(ppc_after_open, ppc_before_allocation,
gld${EMULATION_NAME}_after_allocation): Use it.
2005-07-05 21:25:56 +08:00
|
|
|
eelf32ppcvxworks.c: $(srcdir)/emulparams/elf32ppcvxworks.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32ppcvxworks "$(tdir_elf32ppcvxworks)"
|
1999-05-03 15:29:11 +08:00
|
|
|
eelf32lsmip.c: $(srcdir)/emulparams/elf32lsmip.sh \
|
* Makefile.am (CONFIG_STATUS_DEPENDENCIES): Define.
(config.status): Delete rule.
Add extra dependencies to cover sourced emulparams files.
* Makefile.in: Regenerate.
* scripttempl/elf.sc: Order <section>, <section>.* and
corresponding linkonce sections as seen in input files.
Formatting fixes. Zero vma of all sections if not relocating.
(STACK): Define and insert if STACK_ADDR defined.
(OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
(OTHER_READONLY_SECTIONS): Always insert, not just when relocating.
(OTHER_READWRITE_SECTIONS): Likewise.
(OTHER_GOT_SECTIONS): Likewise.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_BSS_SECTIONS): Likewise.
* scripttempl/elfi370.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise.
* scripttempl/nw.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise
* emulparams/armelf.sh (OTHER_RELOCATING_SECTIONS): Delete.
(STACK_ADDR): Define.
* emulparams/armelf_oabi.sh: As for armelf.sh.
* emulparams/elf32mcore.sh: As for armelf.sh.
* emulparams/h8300elf.sh: As for armelf.sh.
* emulparams/mn10200.sh: As for armelf.sh.
* emulparams/shelf.sh: As for armelf.sh.
* emulparams/elf32fr30.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
* emulparams/m32relf.sh: As for elf32fr30.sh.
* emulparams/h8300helf.sh: As for elf32fr30.sh.
* emulparams/h8300self.sh: As for elf32fr30.sh.
* emulparams/criself.sh (OTHER_READONLY_SECTIONS): Protect symbol
defines with RELOCATING test.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_END_SYMBOLS): ..this.
* emulparams/crislinux.sh: As for criself.sh.
* emulparams/elf32bmipn32.sh (OTHER_SDATA_SECTIONS): Zero vma
if not relocating.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_SECTIONS): ..this. Zero vma if not relocating. Order
normal and linkonce sections as seen in input files.
* emulparams/elf32bmip.sh (DATA_ADDR): Don't define if EMBEDDED.
(TEXT_DYNAMIC): Likewise.
(INITIAL_READONLY_SECTIONS): Zero vma if not relocating.
(OTHER_SDATA_SECTIONS): Likewise.
* emulparams/elf32ppc.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/shlelf_linux.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/elf64alpha.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/hppalinux.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/elf64_aix.sh (OTHER_GOT_SECTIONS): Likewise.
(OTHER_PLT_RELOC_SECTIONS): Likewise.
(OTHER_READONLY_SECTIONS): Likewise. Order normal and linkonce
sections as seen in input files.
* emulparams/elf64_ia64.sh: As for emulparams/elf64_aix.sh.
* emulparams/hppa64linux.sh (OTHER_READONLY_SECTIONS): Zero vma
if not relocating.
(OTHER_READWRITE_SECTIONS, OTHER_BSS_SECTIONS): Likewise.
(OTHER_BSS_END_SYMBOLS): Merge from elf64hppa.sh.
* emulparams/elf64mmix.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_SECTIONS): Instead, use this..
(OTHER_END_SYMBOLS): ..and this.
* emulparams/elf32b4300.sh: Source elf32bmip.sh, remove duplicates.
* emulparams/elf32bsmip.sh: Likewise.
* emulparams/elf32btsmip.sh: Likewise.
* emulparams/elf32ebmip.sh: Likewise.
* emulparams/elf32lmip.sh: Likewise.
* emulparams/elf32elmip.sh: Source elf32lmip.sh, remove duplicates.
* emulparams/elf32lsmip.sh: Likewise.
* emulparams/elf32ltsmip.sh: Source elf32btsmip.sh, remove duplicates.
* emulparams/elf32l4300.sh: Source elf32b4300.sh, remove duplicates.
* emulparams/elf64bmip.sh: Source elf32bmipn32.sh, remove duplicates.
* emulparams/elf64btsmip.sh: Likewise.
* emulparams/elf64ltsmip.sh: Source elf64btsmip.sh, remove duplicates.
* emulparams/elf32lppc.sh: Source elf32ppc.sh, remove duplicates.
* emulparams/elf32ppclinux.sh: Likewise.
* emulparams/elf32ppcsim.sh: Likewise.
* emulparams/elf32lppcsim.sh: Source elf32lppc.sh, remove duplicates.
* emulparams/elf64hppa.sh: Source hppa64linux.sh, remove duplicates.
* emulparams/h8300helf.sh: Source h8300elf.sh, remove duplicates.
* emulparams/h8300self.sh: Likewise.
* emulparams/mn10300.sh: Source mn10200.sh, remove duplicates.
* emulparams/sh.sh: Comment.
* emulparams/shl.sh: Source sh.sh, remove duplicates.
* emulparams/shlelf.sh: Source shelf.sh, remove duplicates.
* emulparams/shelf_linux.sh: Source shlelf_linux.sh, remove duplicates.
2001-11-22 17:08:05 +08:00
|
|
|
$(srcdir)/emulparams/elf32lmip.sh $(srcdir)/emulparams/elf32bmip.sh \
|
1999-05-03 15:29:11 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32lsmip "$(tdir_elf32lsmip)"
|
2001-05-03 02:14:31 +08:00
|
|
|
eelf32openrisc.c: $(srcdir)/emulparams/elf32openrisc.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32openrisc "$(tdir_openrisc)"
|
2003-02-18 14:05:07 +08:00
|
|
|
eelf32ppc.c: $(srcdir)/emulparams/elf32ppc.sh $(srcdir)/emultempl/ppc32elf.em \
|
2000-04-15 05:18:23 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
1999-05-03 15:29:11 +08:00
|
|
|
${GENSCRIPTS} elf32ppc "$(tdir_elf32ppc)"
|
2002-02-20 14:52:34 +08:00
|
|
|
eelf32ppc_fbsd.c: $(srcdir)/emulparams/elf32ppc_fbsd.sh \
|
2003-02-18 14:05:07 +08:00
|
|
|
$(srcdir)/emulparams/elf32ppc.sh $(srcdir)/emultempl/ppc32elf.em \
|
2002-02-20 14:52:34 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32ppc_fbsd "$(tdir_elf32ppc_fbsd)"
|
2000-04-15 05:18:23 +08:00
|
|
|
eelf32ppcsim.c: $(srcdir)/emulparams/elf32ppcsim.sh \
|
2003-02-18 14:05:07 +08:00
|
|
|
$(srcdir)/emulparams/elf32ppc.sh $(srcdir)/emultempl/ppc32elf.em \
|
2000-04-15 05:18:23 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32ppcsim "$(tdir_elf32ppcsim)"
|
1999-05-30 23:55:31 +08:00
|
|
|
eelf32ppclinux.c: $(srcdir)/emulparams/elf32ppclinux.sh \
|
2003-02-18 14:05:07 +08:00
|
|
|
$(srcdir)/emulparams/elf32ppc.sh $(srcdir)/emultempl/ppc32elf.em \
|
2000-04-15 05:18:23 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
1999-05-30 23:55:31 +08:00
|
|
|
${GENSCRIPTS} elf32ppclinux "$(tdir_elf32ppclinux)"
|
2002-01-16 13:52:38 +08:00
|
|
|
eelf64ppc.c: $(srcdir)/emulparams/elf64ppc.sh $(srcdir)/emultempl/ppc64elf.em \
|
2001-08-27 18:45:55 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf64ppc "$(tdir_elf64ppc)"
|
|
|
|
eelf64lppc.c: $(srcdir)/emulparams/elf64lppc.sh \
|
2002-01-16 13:52:38 +08:00
|
|
|
$(srcdir)/emulparams/elf64ppc.sh $(srcdir)/emultempl/ppc64elf.em \
|
2001-08-27 18:45:55 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf64lppc "$(tdir_elf64lppc)"
|
2000-02-23 21:52:23 +08:00
|
|
|
eelf32i370.c: $(srcdir)/emulparams/elf32i370.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elfi370.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32i370 "$(tdir_elf32i370)"
|
2002-07-17 22:15:52 +08:00
|
|
|
eelf32ip2k.c: $(srcdir)/emulparams/elf32ip2k.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/ip2k.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32ip2k "$(tdir_ip2k)"
|
2003-01-04 10:04:44 +08:00
|
|
|
eelf32iq2000.c: $(srcdir)/emulparams/elf32iq2000.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/iq2000.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32iq2000 "$(tdir_iq2000)"
|
|
|
|
eelf32iq10.c: $(srcdir)/emulparams/elf32iq10.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/iq2000.sc ${GEN_DEPENDS}
|
2003-01-07 00:14:01 +08:00
|
|
|
${GENSCRIPTS} elf32iq10 "$(tdir_iq10)"
|
1999-05-03 15:29:11 +08:00
|
|
|
eelf64alpha.c: $(srcdir)/emulparams/elf64alpha.sh \
|
2004-10-27 23:53:21 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/alphaelf.em \
|
|
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
1999-05-03 15:29:11 +08:00
|
|
|
${GENSCRIPTS} elf64alpha "$(tdir_elf64alpha)"
|
2002-02-20 14:52:34 +08:00
|
|
|
eelf64alpha_fbsd.c: $(srcdir)/emulparams/elf64alpha_fbsd.sh \
|
|
|
|
$(srcdir)/emulparams/elf64alpha.sh \
|
2004-10-27 23:53:21 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/alphaelf.em \
|
|
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
2002-02-20 14:52:34 +08:00
|
|
|
${GENSCRIPTS} elf64alpha_fbsd "$(tdir_elf64alpha_fbsd)"
|
2001-12-18 07:54:58 +08:00
|
|
|
eelf64alpha_nbsd.c: $(srcdir)/emulparams/elf64alpha_nbsd.sh \
|
|
|
|
$(srcdir)/emulparams/elf64alpha.sh \
|
2004-10-27 23:53:21 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/alphaelf.em \
|
|
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
2001-12-18 07:54:58 +08:00
|
|
|
${GENSCRIPTS} elf64alpha_nbsd "$(tdir_elf64alpha_nbsd)"
|
2000-04-26 01:21:28 +08:00
|
|
|
eelf64hppa.c: $(srcdir)/emulparams/elf64hppa.sh \
|
* Makefile.am (CONFIG_STATUS_DEPENDENCIES): Define.
(config.status): Delete rule.
Add extra dependencies to cover sourced emulparams files.
* Makefile.in: Regenerate.
* scripttempl/elf.sc: Order <section>, <section>.* and
corresponding linkonce sections as seen in input files.
Formatting fixes. Zero vma of all sections if not relocating.
(STACK): Define and insert if STACK_ADDR defined.
(OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
(OTHER_READONLY_SECTIONS): Always insert, not just when relocating.
(OTHER_READWRITE_SECTIONS): Likewise.
(OTHER_GOT_SECTIONS): Likewise.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_BSS_SECTIONS): Likewise.
* scripttempl/elfi370.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise.
* scripttempl/nw.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise
* emulparams/armelf.sh (OTHER_RELOCATING_SECTIONS): Delete.
(STACK_ADDR): Define.
* emulparams/armelf_oabi.sh: As for armelf.sh.
* emulparams/elf32mcore.sh: As for armelf.sh.
* emulparams/h8300elf.sh: As for armelf.sh.
* emulparams/mn10200.sh: As for armelf.sh.
* emulparams/shelf.sh: As for armelf.sh.
* emulparams/elf32fr30.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
* emulparams/m32relf.sh: As for elf32fr30.sh.
* emulparams/h8300helf.sh: As for elf32fr30.sh.
* emulparams/h8300self.sh: As for elf32fr30.sh.
* emulparams/criself.sh (OTHER_READONLY_SECTIONS): Protect symbol
defines with RELOCATING test.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_END_SYMBOLS): ..this.
* emulparams/crislinux.sh: As for criself.sh.
* emulparams/elf32bmipn32.sh (OTHER_SDATA_SECTIONS): Zero vma
if not relocating.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_SECTIONS): ..this. Zero vma if not relocating. Order
normal and linkonce sections as seen in input files.
* emulparams/elf32bmip.sh (DATA_ADDR): Don't define if EMBEDDED.
(TEXT_DYNAMIC): Likewise.
(INITIAL_READONLY_SECTIONS): Zero vma if not relocating.
(OTHER_SDATA_SECTIONS): Likewise.
* emulparams/elf32ppc.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/shlelf_linux.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/elf64alpha.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/hppalinux.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/elf64_aix.sh (OTHER_GOT_SECTIONS): Likewise.
(OTHER_PLT_RELOC_SECTIONS): Likewise.
(OTHER_READONLY_SECTIONS): Likewise. Order normal and linkonce
sections as seen in input files.
* emulparams/elf64_ia64.sh: As for emulparams/elf64_aix.sh.
* emulparams/hppa64linux.sh (OTHER_READONLY_SECTIONS): Zero vma
if not relocating.
(OTHER_READWRITE_SECTIONS, OTHER_BSS_SECTIONS): Likewise.
(OTHER_BSS_END_SYMBOLS): Merge from elf64hppa.sh.
* emulparams/elf64mmix.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_SECTIONS): Instead, use this..
(OTHER_END_SYMBOLS): ..and this.
* emulparams/elf32b4300.sh: Source elf32bmip.sh, remove duplicates.
* emulparams/elf32bsmip.sh: Likewise.
* emulparams/elf32btsmip.sh: Likewise.
* emulparams/elf32ebmip.sh: Likewise.
* emulparams/elf32lmip.sh: Likewise.
* emulparams/elf32elmip.sh: Source elf32lmip.sh, remove duplicates.
* emulparams/elf32lsmip.sh: Likewise.
* emulparams/elf32ltsmip.sh: Source elf32btsmip.sh, remove duplicates.
* emulparams/elf32l4300.sh: Source elf32b4300.sh, remove duplicates.
* emulparams/elf64bmip.sh: Source elf32bmipn32.sh, remove duplicates.
* emulparams/elf64btsmip.sh: Likewise.
* emulparams/elf64ltsmip.sh: Source elf64btsmip.sh, remove duplicates.
* emulparams/elf32lppc.sh: Source elf32ppc.sh, remove duplicates.
* emulparams/elf32ppclinux.sh: Likewise.
* emulparams/elf32ppcsim.sh: Likewise.
* emulparams/elf32lppcsim.sh: Source elf32lppc.sh, remove duplicates.
* emulparams/elf64hppa.sh: Source hppa64linux.sh, remove duplicates.
* emulparams/h8300helf.sh: Source h8300elf.sh, remove duplicates.
* emulparams/h8300self.sh: Likewise.
* emulparams/mn10300.sh: Source mn10200.sh, remove duplicates.
* emulparams/sh.sh: Comment.
* emulparams/shl.sh: Source sh.sh, remove duplicates.
* emulparams/shlelf.sh: Source shelf.sh, remove duplicates.
* emulparams/shelf_linux.sh: Source shlelf_linux.sh, remove duplicates.
2001-11-22 17:08:05 +08:00
|
|
|
$(srcdir)/emulparams/hppa64linux.sh \
|
2000-04-26 01:21:28 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf64hppa "$(tdir_elf64hppa)"
|
2001-02-23 01:24:33 +08:00
|
|
|
eelf64_aix.c: $(srcdir)/emulparams/elf64_aix.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf64_aix "$(tdir_elf64_aix)"
|
2000-04-22 04:22:24 +08:00
|
|
|
eelf64_ia64.c: $(srcdir)/emulparams/elf64_ia64.sh \
|
2003-10-13 23:55:51 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/ia64elf.em \
|
|
|
|
$(srcdir)/emultempl/needrelax.em \
|
2001-08-14 04:40:31 +08:00
|
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
2000-04-22 04:22:24 +08:00
|
|
|
${GENSCRIPTS} elf64_ia64 "$(tdir_elf64_ia64)"
|
2002-02-20 14:52:34 +08:00
|
|
|
eelf64_ia64_fbsd.c: $(srcdir)/emulparams/elf64_ia64_fbsd.sh \
|
|
|
|
$(srcdir)/emulparams/elf64_ia64.sh \
|
2003-10-13 23:55:51 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/ia64elf.em \
|
|
|
|
$(srcdir)/emultempl/needrelax.em \
|
2002-02-20 14:52:34 +08:00
|
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf64_ia64_fbsd "$(tdir_elf64_ia64_fbsd)"
|
2001-02-10 08:58:38 +08:00
|
|
|
eelf64_s390.c: $(srcdir)/emulparams/elf64_s390.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf64_s390 "$(tdir_elf64_s390)"
|
1999-05-03 15:29:11 +08:00
|
|
|
eelf64_sparc.c: $(srcdir)/emulparams/elf64_sparc.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf64_sparc "$(tdir_elf64_sparc)"
|
2002-02-20 14:52:34 +08:00
|
|
|
eelf64_sparc_fbsd.c: $(srcdir)/emulparams/elf64_sparc_fbsd.sh \
|
|
|
|
$(srcdir)/emulparams/elf64_sparc.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf64_sparc_fbsd "$(tdir_elf64_sparc_fbsd)"
|
1999-07-08 08:22:51 +08:00
|
|
|
eelf64bmip.c: $(srcdir)/emulparams/elf64bmip.sh \
|
2004-04-08 22:52:44 +08:00
|
|
|
$(srcdir)/emulparams/elf32bmipn32.sh $(srcdir)/emultempl/irix.em \
|
1999-07-08 08:22:51 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf64bmip "$(tdir_elf64bmip)"
|
2001-10-30 23:20:14 +08:00
|
|
|
eelf64mmix.c: $(srcdir)/emulparams/elf64mmix.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/mmix-elfnmmo.em \
|
|
|
|
$(srcdir)/emultempl/mmixelf.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf64mmix "$(tdir_elf64mmix)"
|
|
|
|
emmo.c: $(srcdir)/emulparams/mmo.sh $(srcdir)/emultempl/mmix-elfnmmo.em \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/emultempl/mmo.em \
|
|
|
|
$(srcdir)/scripttempl/mmo.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} mmo "$(tdir_mmo)"
|
2001-04-08 13:13:57 +08:00
|
|
|
eelf64btsmip.c: $(srcdir)/emulparams/elf64btsmip.sh \
|
* Makefile.am (CONFIG_STATUS_DEPENDENCIES): Define.
(config.status): Delete rule.
Add extra dependencies to cover sourced emulparams files.
* Makefile.in: Regenerate.
* scripttempl/elf.sc: Order <section>, <section>.* and
corresponding linkonce sections as seen in input files.
Formatting fixes. Zero vma of all sections if not relocating.
(STACK): Define and insert if STACK_ADDR defined.
(OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
(OTHER_READONLY_SECTIONS): Always insert, not just when relocating.
(OTHER_READWRITE_SECTIONS): Likewise.
(OTHER_GOT_SECTIONS): Likewise.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_BSS_SECTIONS): Likewise.
* scripttempl/elfi370.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise.
* scripttempl/nw.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise
* emulparams/armelf.sh (OTHER_RELOCATING_SECTIONS): Delete.
(STACK_ADDR): Define.
* emulparams/armelf_oabi.sh: As for armelf.sh.
* emulparams/elf32mcore.sh: As for armelf.sh.
* emulparams/h8300elf.sh: As for armelf.sh.
* emulparams/mn10200.sh: As for armelf.sh.
* emulparams/shelf.sh: As for armelf.sh.
* emulparams/elf32fr30.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
* emulparams/m32relf.sh: As for elf32fr30.sh.
* emulparams/h8300helf.sh: As for elf32fr30.sh.
* emulparams/h8300self.sh: As for elf32fr30.sh.
* emulparams/criself.sh (OTHER_READONLY_SECTIONS): Protect symbol
defines with RELOCATING test.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_END_SYMBOLS): ..this.
* emulparams/crislinux.sh: As for criself.sh.
* emulparams/elf32bmipn32.sh (OTHER_SDATA_SECTIONS): Zero vma
if not relocating.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_SECTIONS): ..this. Zero vma if not relocating. Order
normal and linkonce sections as seen in input files.
* emulparams/elf32bmip.sh (DATA_ADDR): Don't define if EMBEDDED.
(TEXT_DYNAMIC): Likewise.
(INITIAL_READONLY_SECTIONS): Zero vma if not relocating.
(OTHER_SDATA_SECTIONS): Likewise.
* emulparams/elf32ppc.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/shlelf_linux.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/elf64alpha.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/hppalinux.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/elf64_aix.sh (OTHER_GOT_SECTIONS): Likewise.
(OTHER_PLT_RELOC_SECTIONS): Likewise.
(OTHER_READONLY_SECTIONS): Likewise. Order normal and linkonce
sections as seen in input files.
* emulparams/elf64_ia64.sh: As for emulparams/elf64_aix.sh.
* emulparams/hppa64linux.sh (OTHER_READONLY_SECTIONS): Zero vma
if not relocating.
(OTHER_READWRITE_SECTIONS, OTHER_BSS_SECTIONS): Likewise.
(OTHER_BSS_END_SYMBOLS): Merge from elf64hppa.sh.
* emulparams/elf64mmix.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_SECTIONS): Instead, use this..
(OTHER_END_SYMBOLS): ..and this.
* emulparams/elf32b4300.sh: Source elf32bmip.sh, remove duplicates.
* emulparams/elf32bsmip.sh: Likewise.
* emulparams/elf32btsmip.sh: Likewise.
* emulparams/elf32ebmip.sh: Likewise.
* emulparams/elf32lmip.sh: Likewise.
* emulparams/elf32elmip.sh: Source elf32lmip.sh, remove duplicates.
* emulparams/elf32lsmip.sh: Likewise.
* emulparams/elf32ltsmip.sh: Source elf32btsmip.sh, remove duplicates.
* emulparams/elf32l4300.sh: Source elf32b4300.sh, remove duplicates.
* emulparams/elf64bmip.sh: Source elf32bmipn32.sh, remove duplicates.
* emulparams/elf64btsmip.sh: Likewise.
* emulparams/elf64ltsmip.sh: Source elf64btsmip.sh, remove duplicates.
* emulparams/elf32lppc.sh: Source elf32ppc.sh, remove duplicates.
* emulparams/elf32ppclinux.sh: Likewise.
* emulparams/elf32ppcsim.sh: Likewise.
* emulparams/elf32lppcsim.sh: Source elf32lppc.sh, remove duplicates.
* emulparams/elf64hppa.sh: Source hppa64linux.sh, remove duplicates.
* emulparams/h8300helf.sh: Source h8300elf.sh, remove duplicates.
* emulparams/h8300self.sh: Likewise.
* emulparams/mn10300.sh: Source mn10200.sh, remove duplicates.
* emulparams/sh.sh: Comment.
* emulparams/shl.sh: Source sh.sh, remove duplicates.
* emulparams/shlelf.sh: Source shelf.sh, remove duplicates.
* emulparams/shelf_linux.sh: Source shlelf_linux.sh, remove duplicates.
2001-11-22 17:08:05 +08:00
|
|
|
$(srcdir)/emulparams/elf32bmipn32.sh \
|
2001-04-08 13:13:57 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf64btsmip "$(tdir_elf64btsmip)"
|
|
|
|
eelf64ltsmip.c: $(srcdir)/emulparams/elf64ltsmip.sh \
|
* Makefile.am (CONFIG_STATUS_DEPENDENCIES): Define.
(config.status): Delete rule.
Add extra dependencies to cover sourced emulparams files.
* Makefile.in: Regenerate.
* scripttempl/elf.sc: Order <section>, <section>.* and
corresponding linkonce sections as seen in input files.
Formatting fixes. Zero vma of all sections if not relocating.
(STACK): Define and insert if STACK_ADDR defined.
(OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
(OTHER_READONLY_SECTIONS): Always insert, not just when relocating.
(OTHER_READWRITE_SECTIONS): Likewise.
(OTHER_GOT_SECTIONS): Likewise.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_BSS_SECTIONS): Likewise.
* scripttempl/elfi370.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise.
* scripttempl/nw.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise
* emulparams/armelf.sh (OTHER_RELOCATING_SECTIONS): Delete.
(STACK_ADDR): Define.
* emulparams/armelf_oabi.sh: As for armelf.sh.
* emulparams/elf32mcore.sh: As for armelf.sh.
* emulparams/h8300elf.sh: As for armelf.sh.
* emulparams/mn10200.sh: As for armelf.sh.
* emulparams/shelf.sh: As for armelf.sh.
* emulparams/elf32fr30.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
* emulparams/m32relf.sh: As for elf32fr30.sh.
* emulparams/h8300helf.sh: As for elf32fr30.sh.
* emulparams/h8300self.sh: As for elf32fr30.sh.
* emulparams/criself.sh (OTHER_READONLY_SECTIONS): Protect symbol
defines with RELOCATING test.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_END_SYMBOLS): ..this.
* emulparams/crislinux.sh: As for criself.sh.
* emulparams/elf32bmipn32.sh (OTHER_SDATA_SECTIONS): Zero vma
if not relocating.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_SECTIONS): ..this. Zero vma if not relocating. Order
normal and linkonce sections as seen in input files.
* emulparams/elf32bmip.sh (DATA_ADDR): Don't define if EMBEDDED.
(TEXT_DYNAMIC): Likewise.
(INITIAL_READONLY_SECTIONS): Zero vma if not relocating.
(OTHER_SDATA_SECTIONS): Likewise.
* emulparams/elf32ppc.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/shlelf_linux.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/elf64alpha.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/hppalinux.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/elf64_aix.sh (OTHER_GOT_SECTIONS): Likewise.
(OTHER_PLT_RELOC_SECTIONS): Likewise.
(OTHER_READONLY_SECTIONS): Likewise. Order normal and linkonce
sections as seen in input files.
* emulparams/elf64_ia64.sh: As for emulparams/elf64_aix.sh.
* emulparams/hppa64linux.sh (OTHER_READONLY_SECTIONS): Zero vma
if not relocating.
(OTHER_READWRITE_SECTIONS, OTHER_BSS_SECTIONS): Likewise.
(OTHER_BSS_END_SYMBOLS): Merge from elf64hppa.sh.
* emulparams/elf64mmix.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_SECTIONS): Instead, use this..
(OTHER_END_SYMBOLS): ..and this.
* emulparams/elf32b4300.sh: Source elf32bmip.sh, remove duplicates.
* emulparams/elf32bsmip.sh: Likewise.
* emulparams/elf32btsmip.sh: Likewise.
* emulparams/elf32ebmip.sh: Likewise.
* emulparams/elf32lmip.sh: Likewise.
* emulparams/elf32elmip.sh: Source elf32lmip.sh, remove duplicates.
* emulparams/elf32lsmip.sh: Likewise.
* emulparams/elf32ltsmip.sh: Source elf32btsmip.sh, remove duplicates.
* emulparams/elf32l4300.sh: Source elf32b4300.sh, remove duplicates.
* emulparams/elf64bmip.sh: Source elf32bmipn32.sh, remove duplicates.
* emulparams/elf64btsmip.sh: Likewise.
* emulparams/elf64ltsmip.sh: Source elf64btsmip.sh, remove duplicates.
* emulparams/elf32lppc.sh: Source elf32ppc.sh, remove duplicates.
* emulparams/elf32ppclinux.sh: Likewise.
* emulparams/elf32ppcsim.sh: Likewise.
* emulparams/elf32lppcsim.sh: Source elf32lppc.sh, remove duplicates.
* emulparams/elf64hppa.sh: Source hppa64linux.sh, remove duplicates.
* emulparams/h8300helf.sh: Source h8300elf.sh, remove duplicates.
* emulparams/h8300self.sh: Likewise.
* emulparams/mn10300.sh: Source mn10200.sh, remove duplicates.
* emulparams/sh.sh: Comment.
* emulparams/shl.sh: Source sh.sh, remove duplicates.
* emulparams/shlelf.sh: Source shelf.sh, remove duplicates.
* emulparams/shelf_linux.sh: Source shlelf_linux.sh, remove duplicates.
2001-11-22 17:08:05 +08:00
|
|
|
$(srcdir)/emulparams/elf64btsmip.sh $(srcdir)/emulparams/elf32bmipn32.sh \
|
2001-04-08 13:13:57 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf64ltsmip "$(tdir_elf64ltsmip)"
|
1999-05-03 15:29:11 +08:00
|
|
|
eelf_i386.c: $(srcdir)/emulparams/elf_i386.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf_i386 "$(tdir_elf_i386)"
|
2000-12-01 03:30:33 +08:00
|
|
|
eelf_x86_64.c: $(srcdir)/emulparams/elf_x86_64.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf_x86_64 "$(tdir_elf_x86_64)"
|
2002-02-20 14:52:34 +08:00
|
|
|
eelf_x86_64_fbsd.c: $(srcdir)/emulparams/elf_x86_64_fbsd.sh \
|
|
|
|
$(srcdir)/emulparams/elf_x86_64.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf_x86_64_fbsd "$(tdir_elf_x86_64_fbsd)"
|
1999-05-03 15:29:11 +08:00
|
|
|
eelf_i386_be.c: $(srcdir)/emulparams/elf_i386_be.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf_i386_be "$(tdir_elf_i386_be)"
|
2000-11-05 14:27:15 +08:00
|
|
|
eelf_i386_chaos.c: $(srcdir)/emulparams/elf_i386_chaos.sh \
|
2002-05-28 01:52:56 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf_chaos.sc ${GEN_DEPENDS}
|
2000-11-05 14:27:15 +08:00
|
|
|
${GENSCRIPTS} elf_i386_chaos "$(tdir_elf_i386_chaos)"
|
2002-02-20 14:52:34 +08:00
|
|
|
eelf_i386_fbsd.c: $(srcdir)/emulparams/elf_i386_fbsd.sh \
|
|
|
|
$(srcdir)/emulparams/elf_i386.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf_i386_fbsd "$(tdir_elf_i386_fbsd)"
|
2001-05-22 22:00:18 +08:00
|
|
|
eelf_i386_ldso.c: $(srcdir)/emulparams/elf_i386_ldso.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf_i386_ldso "$(tdir_elf_i386_ldso)"
|
2005-05-05 22:37:27 +08:00
|
|
|
eelf_i386_vxworks.c: $(srcdir)/emulparams/elf_i386_vxworks.sh \
|
|
|
|
$(srcdir)/emulparams/vxworks.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf_i386_vxworks "$(tdir_elf_i386_vxworks)"
|
2001-02-10 08:58:38 +08:00
|
|
|
eelf_s390.c: $(srcdir)/emulparams/elf_s390.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf_s390 "$(tdir_elf_s390)"
|
1999-05-03 15:29:11 +08:00
|
|
|
egld960.c: $(srcdir)/emulparams/gld960.sh \
|
|
|
|
$(srcdir)/emultempl/gld960.em $(srcdir)/scripttempl/i960.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} gld960 "$(tdir_gld960)"
|
|
|
|
egld960coff.c: $(srcdir)/emulparams/gld960coff.sh \
|
|
|
|
$(srcdir)/emultempl/gld960c.em $(srcdir)/scripttempl/i960.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} gld960coff "$(tdir_gld960coff)"
|
|
|
|
eh8300.c: $(srcdir)/emulparams/h8300.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} h8300 "$(tdir_h8300)"
|
|
|
|
eh8300h.c: $(srcdir)/emulparams/h8300h.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300h.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} h8300h "$(tdir_h8300h)"
|
|
|
|
eh8300s.c: $(srcdir)/emulparams/h8300s.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300s.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} h8300s "$(tdir_h8300s)"
|
2003-04-24 20:36:08 +08:00
|
|
|
eh8300hn.c: $(srcdir)/emulparams/h8300hn.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300hn.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} h8300hn "$(tdir_h8300hn)"
|
|
|
|
eh8300sn.c: $(srcdir)/emulparams/h8300sn.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300sn.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} h8300sn "$(tdir_h8300sn)"
|
2003-06-04 05:43:52 +08:00
|
|
|
eh8300sx.c: $(srcdir)/emulparams/h8300sx.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300sx.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} h8300sx "$(tdir_h8300sx)"
|
2003-06-10 15:09:31 +08:00
|
|
|
eh8300sxn.c: $(srcdir)/emulparams/h8300sxn.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300sxn.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} h8300sxn "$(tdir_h8300sxn)"
|
2001-08-29 20:51:26 +08:00
|
|
|
eh8300elf.c: $(srcdir)/emulparams/h8300elf.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} h8300elf "$(tdir_h8300elf)"
|
|
|
|
eh8300helf.c: $(srcdir)/emulparams/h8300helf.sh \
|
* Makefile.am (CONFIG_STATUS_DEPENDENCIES): Define.
(config.status): Delete rule.
Add extra dependencies to cover sourced emulparams files.
* Makefile.in: Regenerate.
* scripttempl/elf.sc: Order <section>, <section>.* and
corresponding linkonce sections as seen in input files.
Formatting fixes. Zero vma of all sections if not relocating.
(STACK): Define and insert if STACK_ADDR defined.
(OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
(OTHER_READONLY_SECTIONS): Always insert, not just when relocating.
(OTHER_READWRITE_SECTIONS): Likewise.
(OTHER_GOT_SECTIONS): Likewise.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_BSS_SECTIONS): Likewise.
* scripttempl/elfi370.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise.
* scripttempl/nw.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise
* emulparams/armelf.sh (OTHER_RELOCATING_SECTIONS): Delete.
(STACK_ADDR): Define.
* emulparams/armelf_oabi.sh: As for armelf.sh.
* emulparams/elf32mcore.sh: As for armelf.sh.
* emulparams/h8300elf.sh: As for armelf.sh.
* emulparams/mn10200.sh: As for armelf.sh.
* emulparams/shelf.sh: As for armelf.sh.
* emulparams/elf32fr30.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
* emulparams/m32relf.sh: As for elf32fr30.sh.
* emulparams/h8300helf.sh: As for elf32fr30.sh.
* emulparams/h8300self.sh: As for elf32fr30.sh.
* emulparams/criself.sh (OTHER_READONLY_SECTIONS): Protect symbol
defines with RELOCATING test.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_END_SYMBOLS): ..this.
* emulparams/crislinux.sh: As for criself.sh.
* emulparams/elf32bmipn32.sh (OTHER_SDATA_SECTIONS): Zero vma
if not relocating.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_SECTIONS): ..this. Zero vma if not relocating. Order
normal and linkonce sections as seen in input files.
* emulparams/elf32bmip.sh (DATA_ADDR): Don't define if EMBEDDED.
(TEXT_DYNAMIC): Likewise.
(INITIAL_READONLY_SECTIONS): Zero vma if not relocating.
(OTHER_SDATA_SECTIONS): Likewise.
* emulparams/elf32ppc.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/shlelf_linux.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/elf64alpha.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/hppalinux.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/elf64_aix.sh (OTHER_GOT_SECTIONS): Likewise.
(OTHER_PLT_RELOC_SECTIONS): Likewise.
(OTHER_READONLY_SECTIONS): Likewise. Order normal and linkonce
sections as seen in input files.
* emulparams/elf64_ia64.sh: As for emulparams/elf64_aix.sh.
* emulparams/hppa64linux.sh (OTHER_READONLY_SECTIONS): Zero vma
if not relocating.
(OTHER_READWRITE_SECTIONS, OTHER_BSS_SECTIONS): Likewise.
(OTHER_BSS_END_SYMBOLS): Merge from elf64hppa.sh.
* emulparams/elf64mmix.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_SECTIONS): Instead, use this..
(OTHER_END_SYMBOLS): ..and this.
* emulparams/elf32b4300.sh: Source elf32bmip.sh, remove duplicates.
* emulparams/elf32bsmip.sh: Likewise.
* emulparams/elf32btsmip.sh: Likewise.
* emulparams/elf32ebmip.sh: Likewise.
* emulparams/elf32lmip.sh: Likewise.
* emulparams/elf32elmip.sh: Source elf32lmip.sh, remove duplicates.
* emulparams/elf32lsmip.sh: Likewise.
* emulparams/elf32ltsmip.sh: Source elf32btsmip.sh, remove duplicates.
* emulparams/elf32l4300.sh: Source elf32b4300.sh, remove duplicates.
* emulparams/elf64bmip.sh: Source elf32bmipn32.sh, remove duplicates.
* emulparams/elf64btsmip.sh: Likewise.
* emulparams/elf64ltsmip.sh: Source elf64btsmip.sh, remove duplicates.
* emulparams/elf32lppc.sh: Source elf32ppc.sh, remove duplicates.
* emulparams/elf32ppclinux.sh: Likewise.
* emulparams/elf32ppcsim.sh: Likewise.
* emulparams/elf32lppcsim.sh: Source elf32lppc.sh, remove duplicates.
* emulparams/elf64hppa.sh: Source hppa64linux.sh, remove duplicates.
* emulparams/h8300helf.sh: Source h8300elf.sh, remove duplicates.
* emulparams/h8300self.sh: Likewise.
* emulparams/mn10300.sh: Source mn10200.sh, remove duplicates.
* emulparams/sh.sh: Comment.
* emulparams/shl.sh: Source sh.sh, remove duplicates.
* emulparams/shlelf.sh: Source shelf.sh, remove duplicates.
* emulparams/shelf_linux.sh: Source shlelf_linux.sh, remove duplicates.
2001-11-22 17:08:05 +08:00
|
|
|
$(srcdir)/emulparams/h8300elf.sh \
|
2001-08-29 20:51:26 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} h8300helf "$(tdir_h8300helf)"
|
|
|
|
eh8300self.c: $(srcdir)/emulparams/h8300self.sh \
|
* Makefile.am (CONFIG_STATUS_DEPENDENCIES): Define.
(config.status): Delete rule.
Add extra dependencies to cover sourced emulparams files.
* Makefile.in: Regenerate.
* scripttempl/elf.sc: Order <section>, <section>.* and
corresponding linkonce sections as seen in input files.
Formatting fixes. Zero vma of all sections if not relocating.
(STACK): Define and insert if STACK_ADDR defined.
(OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
(OTHER_READONLY_SECTIONS): Always insert, not just when relocating.
(OTHER_READWRITE_SECTIONS): Likewise.
(OTHER_GOT_SECTIONS): Likewise.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_BSS_SECTIONS): Likewise.
* scripttempl/elfi370.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise.
* scripttempl/nw.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise
* emulparams/armelf.sh (OTHER_RELOCATING_SECTIONS): Delete.
(STACK_ADDR): Define.
* emulparams/armelf_oabi.sh: As for armelf.sh.
* emulparams/elf32mcore.sh: As for armelf.sh.
* emulparams/h8300elf.sh: As for armelf.sh.
* emulparams/mn10200.sh: As for armelf.sh.
* emulparams/shelf.sh: As for armelf.sh.
* emulparams/elf32fr30.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
* emulparams/m32relf.sh: As for elf32fr30.sh.
* emulparams/h8300helf.sh: As for elf32fr30.sh.
* emulparams/h8300self.sh: As for elf32fr30.sh.
* emulparams/criself.sh (OTHER_READONLY_SECTIONS): Protect symbol
defines with RELOCATING test.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_END_SYMBOLS): ..this.
* emulparams/crislinux.sh: As for criself.sh.
* emulparams/elf32bmipn32.sh (OTHER_SDATA_SECTIONS): Zero vma
if not relocating.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_SECTIONS): ..this. Zero vma if not relocating. Order
normal and linkonce sections as seen in input files.
* emulparams/elf32bmip.sh (DATA_ADDR): Don't define if EMBEDDED.
(TEXT_DYNAMIC): Likewise.
(INITIAL_READONLY_SECTIONS): Zero vma if not relocating.
(OTHER_SDATA_SECTIONS): Likewise.
* emulparams/elf32ppc.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/shlelf_linux.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/elf64alpha.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/hppalinux.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/elf64_aix.sh (OTHER_GOT_SECTIONS): Likewise.
(OTHER_PLT_RELOC_SECTIONS): Likewise.
(OTHER_READONLY_SECTIONS): Likewise. Order normal and linkonce
sections as seen in input files.
* emulparams/elf64_ia64.sh: As for emulparams/elf64_aix.sh.
* emulparams/hppa64linux.sh (OTHER_READONLY_SECTIONS): Zero vma
if not relocating.
(OTHER_READWRITE_SECTIONS, OTHER_BSS_SECTIONS): Likewise.
(OTHER_BSS_END_SYMBOLS): Merge from elf64hppa.sh.
* emulparams/elf64mmix.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_SECTIONS): Instead, use this..
(OTHER_END_SYMBOLS): ..and this.
* emulparams/elf32b4300.sh: Source elf32bmip.sh, remove duplicates.
* emulparams/elf32bsmip.sh: Likewise.
* emulparams/elf32btsmip.sh: Likewise.
* emulparams/elf32ebmip.sh: Likewise.
* emulparams/elf32lmip.sh: Likewise.
* emulparams/elf32elmip.sh: Source elf32lmip.sh, remove duplicates.
* emulparams/elf32lsmip.sh: Likewise.
* emulparams/elf32ltsmip.sh: Source elf32btsmip.sh, remove duplicates.
* emulparams/elf32l4300.sh: Source elf32b4300.sh, remove duplicates.
* emulparams/elf64bmip.sh: Source elf32bmipn32.sh, remove duplicates.
* emulparams/elf64btsmip.sh: Likewise.
* emulparams/elf64ltsmip.sh: Source elf64btsmip.sh, remove duplicates.
* emulparams/elf32lppc.sh: Source elf32ppc.sh, remove duplicates.
* emulparams/elf32ppclinux.sh: Likewise.
* emulparams/elf32ppcsim.sh: Likewise.
* emulparams/elf32lppcsim.sh: Source elf32lppc.sh, remove duplicates.
* emulparams/elf64hppa.sh: Source hppa64linux.sh, remove duplicates.
* emulparams/h8300helf.sh: Source h8300elf.sh, remove duplicates.
* emulparams/h8300self.sh: Likewise.
* emulparams/mn10300.sh: Source mn10200.sh, remove duplicates.
* emulparams/sh.sh: Comment.
* emulparams/shl.sh: Source sh.sh, remove duplicates.
* emulparams/shlelf.sh: Source shelf.sh, remove duplicates.
* emulparams/shelf_linux.sh: Source shlelf_linux.sh, remove duplicates.
2001-11-22 17:08:05 +08:00
|
|
|
$(srcdir)/emulparams/h8300elf.sh \
|
2001-08-29 20:51:26 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} h8300self "$(tdir_h8300self)"
|
2003-04-24 20:36:08 +08:00
|
|
|
eh8300hnelf.c: $(srcdir)/emulparams/h8300hnelf.sh \
|
|
|
|
$(srcdir)/emulparams/h8300elf.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} h8300hnelf "$(tdir_h8300hnelf)"
|
|
|
|
eh8300snelf.c: $(srcdir)/emulparams/h8300snelf.sh \
|
|
|
|
$(srcdir)/emulparams/h8300elf.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} h8300snelf "$(tdir_h8300snelf)"
|
2003-06-04 05:43:52 +08:00
|
|
|
eh8300sxelf.c: $(srcdir)/emulparams/h8300sxelf.sh \
|
|
|
|
$(srcdir)/emulparams/h8300elf.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} h8300sxelf "$(tdir_h8300sxelf)"
|
2003-06-10 15:09:31 +08:00
|
|
|
eh8300sxnelf.c: $(srcdir)/emulparams/h8300sxnelf.sh \
|
|
|
|
$(srcdir)/emulparams/h8300elf.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} h8300sxnelf "$(tdir_h8300sxnelf)"
|
1999-05-03 15:29:11 +08:00
|
|
|
eh8500.c: $(srcdir)/emulparams/h8500.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} h8500 "$(tdir_h8500)"
|
|
|
|
eh8500b.c: $(srcdir)/emulparams/h8500b.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500b.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} h8500b "$(tdir_h8500b)"
|
|
|
|
eh8500c.c: $(srcdir)/emulparams/h8500c.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500c.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} h8500c "$(tdir_h8500c)"
|
|
|
|
eh8500m.c: $(srcdir)/emulparams/h8500m.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500m.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} h8500m "$(tdir_h8500m)"
|
|
|
|
eh8500s.c: $(srcdir)/emulparams/h8500s.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500s.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} h8500s "$(tdir_h8500s)"
|
|
|
|
ehp300bsd.c: $(srcdir)/emulparams/hp300bsd.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} hp300bsd "$(tdir_hp300bsd)"
|
|
|
|
ehp3hpux.c: $(srcdir)/emulparams/hp3hpux.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} hp3hpux "$(tdir_hp3hpux)"
|
2000-04-26 01:21:28 +08:00
|
|
|
ehppaelf.c: $(srcdir)/emulparams/hppaelf.sh \
|
2000-09-05 11:21:16 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/hppaelf.em \
|
|
|
|
$(srcdir)/scripttempl/hppaelf.sc ${GEN_DEPENDS}
|
2000-04-26 01:21:28 +08:00
|
|
|
${GENSCRIPTS} hppaelf "$(tdir_hppaelf)"
|
2000-07-09 16:45:29 +08:00
|
|
|
ehppalinux.c: $(srcdir)/emulparams/hppalinux.sh \
|
2000-09-05 11:21:16 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/hppaelf.em \
|
|
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
2000-07-09 16:45:29 +08:00
|
|
|
${GENSCRIPTS} hppalinux "$(tdir_hppalinux)"
|
2002-02-03 02:36:04 +08:00
|
|
|
ehppanbsd.c: $(srcdir)/emulparams/hppanbsd.sh \
|
|
|
|
$(srcdir)/emulparams/hppaelf.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/hppaelf.em \
|
|
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} hppanbsd "$(tdir_hppanbsd)"
|
2002-07-09 10:42:13 +08:00
|
|
|
ehppaobsd.c: $(srcdir)/emulparams/hppaobsd.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/hppaelf.em \
|
|
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} hppaobsd "$(tdir_hppaobsd)"
|
2001-06-27 16:42:29 +08:00
|
|
|
ehppa64linux.c: $(srcdir)/emulparams/hppa64linux.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} hppa64linux "$(tdir_hppa64linux)"
|
1999-05-03 15:29:11 +08:00
|
|
|
ei386aout.c: $(srcdir)/emulparams/i386aout.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} i386aout "$(tdir_i386aout)"
|
|
|
|
ei386beos.c: $(srcdir)/emulparams/i386beos.sh \
|
|
|
|
$(srcdir)/emultempl/beos.em $(srcdir)/scripttempl/i386beos.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} i386beos "$(tdir_i386beos)"
|
|
|
|
ei386bsd.c: $(srcdir)/emulparams/i386bsd.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} i386bsd "$(tdir_i386bsd)"
|
|
|
|
ei386coff.c: $(srcdir)/emulparams/i386coff.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386coff.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} i386coff "$(tdir_i386coff)"
|
|
|
|
ei386go32.c: $(srcdir)/emulparams/i386go32.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386go32.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} i386go32 "$(tdir_i386go32)"
|
|
|
|
ei386linux.c: $(srcdir)/emulparams/i386linux.sh \
|
|
|
|
$(srcdir)/emultempl/linux.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} i386linux "$(tdir_i386linux)"
|
|
|
|
ei386lynx.c: $(srcdir)/emulparams/i386lynx.sh \
|
2004-05-18 03:50:16 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
1999-05-03 15:29:11 +08:00
|
|
|
${GENSCRIPTS} i386lynx "$(tdir_i386lynx)"
|
|
|
|
ei386mach.c: $(srcdir)/emulparams/i386mach.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} i386mach "$(tdir_i386mach)"
|
|
|
|
ei386moss.c: $(srcdir)/emulparams/i386moss.sh \
|
2001-06-19 04:19:52 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
1999-05-03 15:29:11 +08:00
|
|
|
${GENSCRIPTS} i386moss "$(tdir_i386moss)"
|
|
|
|
ei386msdos.c: $(srcdir)/emulparams/i386msdos.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386msdos.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} i386msdos "$(tdir_i386msdos)"
|
|
|
|
ei386nbsd.c: $(srcdir)/emulparams/i386nbsd.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} i386nbsd "$(tdir_i386nbsd)"
|
2002-05-31 11:02:35 +08:00
|
|
|
ei386nto.c: $(srcdir)/emulparams/i386nto.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} i386nto "$(tdir_i386nto)"
|
1999-05-03 15:29:11 +08:00
|
|
|
ei386nw.c: $(srcdir)/emulparams/i386nw.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/nw.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} i386nw "$(tdir_i386nw)"
|
|
|
|
ei386pe.c: $(srcdir)/emulparams/i386pe.sh \
|
|
|
|
$(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} i386pe "$(tdir_i386pe)"
|
1999-08-06 00:03:56 +08:00
|
|
|
ei386pe_posix.c: $(srcdir)/emulparams/i386pe_posix.sh \
|
|
|
|
$(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} i386pe_posix "$(tdir_i386pe_posix)"
|
1999-05-03 15:29:11 +08:00
|
|
|
elnk960.c: $(srcdir)/emulparams/lnk960.sh \
|
|
|
|
$(srcdir)/emultempl/lnk960.em $(srcdir)/scripttempl/i960.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} lnk960 "$(tdir_lnk960)"
|
2000-06-19 09:22:44 +08:00
|
|
|
em68hc11elf.c: $(srcdir)/emulparams/m68hc11elf.sh \
|
2003-06-27 08:38:25 +08:00
|
|
|
$(srcdir)/emultempl/m68hc1xelf.em $(srcdir)/emultempl/elf32.em \
|
|
|
|
$(srcdir)/scripttempl/elfm68hc11.sc ${GEN_DEPENDS}
|
2000-06-19 09:22:44 +08:00
|
|
|
${GENSCRIPTS} m68hc11elf "$(tdir_m68hc11)"
|
|
|
|
em68hc11elfb.c: $(srcdir)/emulparams/m68hc11elfb.sh \
|
2003-06-27 08:38:25 +08:00
|
|
|
$(srcdir)/emultempl/m68hc1xelf.em $(srcdir)/emultempl/elf32.em \
|
|
|
|
$(srcdir)/scripttempl/elfm68hc11.sc ${GEN_DEPENDS}
|
2000-06-19 09:22:44 +08:00
|
|
|
${GENSCRIPTS} m68hc11elfb "$(tdir_m68hc11b)"
|
|
|
|
em68hc12elf.c: $(srcdir)/emulparams/m68hc12elf.sh \
|
2003-06-27 08:38:25 +08:00
|
|
|
$(srcdir)/emultempl/m68hc1xelf.em $(srcdir)/emultempl/elf32.em \
|
|
|
|
$(srcdir)/scripttempl/elfm68hc12.sc ${GEN_DEPENDS}
|
2000-06-19 09:22:44 +08:00
|
|
|
${GENSCRIPTS} m68hc12elf "$(tdir_m68hc12)"
|
|
|
|
em68hc12elfb.c: $(srcdir)/emulparams/m68hc12elfb.sh \
|
2003-06-27 08:38:25 +08:00
|
|
|
$(srcdir)/emultempl/m68hc1xelf.em $(srcdir)/emultempl/elf32.em \
|
|
|
|
$(srcdir)/scripttempl/elfm68hc12.sc ${GEN_DEPENDS}
|
2000-06-19 09:22:44 +08:00
|
|
|
${GENSCRIPTS} m68hc12elfb "$(tdir_m68hc12b)"
|
1999-05-03 15:29:11 +08:00
|
|
|
em68k4knbsd.c: $(srcdir)/emulparams/m68k4knbsd.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} m68k4knbsd "$(tdir_m68k4knbsd)"
|
|
|
|
em68kaout.c: $(srcdir)/emulparams/m68kaout.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} m68kaout "$(tdir_m68kaout)"
|
|
|
|
em68kaux.c: $(srcdir)/emulparams/m68kaux.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/m68kaux.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} m68kaux "$(tdir_m68kaux)"
|
|
|
|
em68kcoff.c: $(srcdir)/emulparams/m68kcoff.sh \
|
2000-07-22 07:31:53 +08:00
|
|
|
$(srcdir)/emultempl/m68kcoff.em $(srcdir)/scripttempl/m68kcoff.sc ${GEN_DEPENDS}
|
1999-05-03 15:29:11 +08:00
|
|
|
${GENSCRIPTS} m68kcoff "$(tdir_m68kcoff)"
|
|
|
|
em68kelf.c: $(srcdir)/emulparams/m68kelf.sh \
|
2000-09-16 02:52:52 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/m68kelf.em \
|
|
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
1999-05-03 15:29:11 +08:00
|
|
|
${GENSCRIPTS} m68kelf "$(tdir_m68kelf)"
|
2001-12-18 21:26:26 +08:00
|
|
|
em68kelfnbsd.c: $(srcdir)/emulparams/m68kelfnbsd.sh \
|
|
|
|
$(srcdir)/emulparams/m68kelf.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/m68kelf.em \
|
|
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} m68kelfnbsd "$(tdir_m68kelfnbsd)"
|
1999-05-03 15:29:11 +08:00
|
|
|
em68klinux.c: $(srcdir)/emulparams/m68klinux.sh \
|
|
|
|
$(srcdir)/emultempl/linux.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} m68klinux "$(tdir_m68klinux)"
|
|
|
|
em68knbsd.c: $(srcdir)/emulparams/m68knbsd.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} m68knbsd "$(tdir_m68knbsd)"
|
|
|
|
em68kpsos.c: $(srcdir)/emulparams/m68kpsos.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/psos.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} m68kpsos "$(tdir_m68kpsos)"
|
|
|
|
em88kbcs.c: $(srcdir)/emulparams/m88kbcs.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/m88kbcs.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} m88kbcs "$(tdir_m88kbcs)"
|
2004-11-08 21:17:43 +08:00
|
|
|
emaxqcoff.c: $(srcdir)/emulparams/maxqcoff.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/maxqcoff.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} maxqcoff "$(tdir_maxqcoff)"
|
1999-05-07 15:40:05 +08:00
|
|
|
emcorepe.c: $(srcdir)/emulparams/mcorepe.sh \
|
|
|
|
$(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} mcorepe "$(tdir_mcorepe)"
|
1999-05-03 15:29:11 +08:00
|
|
|
emipsbig.c: $(srcdir)/emulparams/mipsbig.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} mipsbig
|
|
|
|
emipsbsd.c: $(srcdir)/emulparams/mipsbsd.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mipsbsd.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} mipsbsd
|
|
|
|
emipsidt.c: $(srcdir)/emulparams/mipsidt.sh \
|
2005-07-16 10:03:55 +08:00
|
|
|
$(srcdir)/emultempl/mipsecoff.em $(srcdir)/emultempl/generic.em \
|
|
|
|
$(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
|
1999-05-03 15:29:11 +08:00
|
|
|
${GENSCRIPTS} mipsidt "$(tdir_mipsidt)"
|
|
|
|
emipsidtl.c: $(srcdir)/emulparams/mipsidtl.sh \
|
2005-07-16 10:03:55 +08:00
|
|
|
$(srcdir)/emultempl/mipsecoff.em $(srcdir)/emultempl/generic.em \
|
|
|
|
$(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
|
1999-05-03 15:29:11 +08:00
|
|
|
${GENSCRIPTS} mipsidtl "$(tdir_mipsidtl)"
|
|
|
|
emipslit.c: $(srcdir)/emulparams/mipslit.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} mipslit "$(tdir_mipslit)"
|
|
|
|
emipslnews.c: $(srcdir)/emulparams/mipslnews.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} mipslnews
|
2000-02-25 01:53:12 +08:00
|
|
|
emipspe.c: $(srcdir)/emulparams/mipspe.sh \
|
|
|
|
$(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} mipspe "$(tdir_mips)"
|
1999-05-03 15:29:11 +08:00
|
|
|
emn10300.c: $(srcdir)/emulparams/mn10300.sh \
|
* Makefile.am (CONFIG_STATUS_DEPENDENCIES): Define.
(config.status): Delete rule.
Add extra dependencies to cover sourced emulparams files.
* Makefile.in: Regenerate.
* scripttempl/elf.sc: Order <section>, <section>.* and
corresponding linkonce sections as seen in input files.
Formatting fixes. Zero vma of all sections if not relocating.
(STACK): Define and insert if STACK_ADDR defined.
(OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
(OTHER_READONLY_SECTIONS): Always insert, not just when relocating.
(OTHER_READWRITE_SECTIONS): Likewise.
(OTHER_GOT_SECTIONS): Likewise.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_BSS_SECTIONS): Likewise.
* scripttempl/elfi370.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise.
* scripttempl/nw.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise
* emulparams/armelf.sh (OTHER_RELOCATING_SECTIONS): Delete.
(STACK_ADDR): Define.
* emulparams/armelf_oabi.sh: As for armelf.sh.
* emulparams/elf32mcore.sh: As for armelf.sh.
* emulparams/h8300elf.sh: As for armelf.sh.
* emulparams/mn10200.sh: As for armelf.sh.
* emulparams/shelf.sh: As for armelf.sh.
* emulparams/elf32fr30.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
* emulparams/m32relf.sh: As for elf32fr30.sh.
* emulparams/h8300helf.sh: As for elf32fr30.sh.
* emulparams/h8300self.sh: As for elf32fr30.sh.
* emulparams/criself.sh (OTHER_READONLY_SECTIONS): Protect symbol
defines with RELOCATING test.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_END_SYMBOLS): ..this.
* emulparams/crislinux.sh: As for criself.sh.
* emulparams/elf32bmipn32.sh (OTHER_SDATA_SECTIONS): Zero vma
if not relocating.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_SECTIONS): ..this. Zero vma if not relocating. Order
normal and linkonce sections as seen in input files.
* emulparams/elf32bmip.sh (DATA_ADDR): Don't define if EMBEDDED.
(TEXT_DYNAMIC): Likewise.
(INITIAL_READONLY_SECTIONS): Zero vma if not relocating.
(OTHER_SDATA_SECTIONS): Likewise.
* emulparams/elf32ppc.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/shlelf_linux.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/elf64alpha.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/hppalinux.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/elf64_aix.sh (OTHER_GOT_SECTIONS): Likewise.
(OTHER_PLT_RELOC_SECTIONS): Likewise.
(OTHER_READONLY_SECTIONS): Likewise. Order normal and linkonce
sections as seen in input files.
* emulparams/elf64_ia64.sh: As for emulparams/elf64_aix.sh.
* emulparams/hppa64linux.sh (OTHER_READONLY_SECTIONS): Zero vma
if not relocating.
(OTHER_READWRITE_SECTIONS, OTHER_BSS_SECTIONS): Likewise.
(OTHER_BSS_END_SYMBOLS): Merge from elf64hppa.sh.
* emulparams/elf64mmix.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_SECTIONS): Instead, use this..
(OTHER_END_SYMBOLS): ..and this.
* emulparams/elf32b4300.sh: Source elf32bmip.sh, remove duplicates.
* emulparams/elf32bsmip.sh: Likewise.
* emulparams/elf32btsmip.sh: Likewise.
* emulparams/elf32ebmip.sh: Likewise.
* emulparams/elf32lmip.sh: Likewise.
* emulparams/elf32elmip.sh: Source elf32lmip.sh, remove duplicates.
* emulparams/elf32lsmip.sh: Likewise.
* emulparams/elf32ltsmip.sh: Source elf32btsmip.sh, remove duplicates.
* emulparams/elf32l4300.sh: Source elf32b4300.sh, remove duplicates.
* emulparams/elf64bmip.sh: Source elf32bmipn32.sh, remove duplicates.
* emulparams/elf64btsmip.sh: Likewise.
* emulparams/elf64ltsmip.sh: Source elf64btsmip.sh, remove duplicates.
* emulparams/elf32lppc.sh: Source elf32ppc.sh, remove duplicates.
* emulparams/elf32ppclinux.sh: Likewise.
* emulparams/elf32ppcsim.sh: Likewise.
* emulparams/elf32lppcsim.sh: Source elf32lppc.sh, remove duplicates.
* emulparams/elf64hppa.sh: Source hppa64linux.sh, remove duplicates.
* emulparams/h8300helf.sh: Source h8300elf.sh, remove duplicates.
* emulparams/h8300self.sh: Likewise.
* emulparams/mn10300.sh: Source mn10200.sh, remove duplicates.
* emulparams/sh.sh: Comment.
* emulparams/shl.sh: Source sh.sh, remove duplicates.
* emulparams/shlelf.sh: Source shelf.sh, remove duplicates.
* emulparams/shelf_linux.sh: Source shlelf_linux.sh, remove duplicates.
2001-11-22 17:08:05 +08:00
|
|
|
$(srcdir)/emulparams/mn10200.sh \
|
1999-05-03 15:29:11 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} mn10300 "$(tdir_mn10300)"
|
|
|
|
emn10200.c: $(srcdir)/emulparams/mn10200.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} mn10200 "$(tdir_mn10200)"
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x110.c: $(srcdir)/emulparams/msp430all.sh \
|
2003-08-08 18:14:52 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x110 "$(tdir_msp430x110)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x112.c: $(srcdir)/emulparams/msp430all.sh \
|
2003-08-08 18:14:52 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x112 "$(tdir_msp430x112)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x1101.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x1101 "$(tdir_msp430x1101)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x1111.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x1111 "$(tdir_msp430x1111)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x1121.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x1121 "$(tdir_msp430x1121)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x1122.c: $(srcdir)/emulparams/msp430all.sh \
|
2003-03-05 01:02:40 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x1122 "$(tdir_msp430x1122)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x1132.c: $(srcdir)/emulparams/msp430all.sh \
|
2003-03-05 01:02:40 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x1132 "$(tdir_msp430x1132)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x122.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x122 "$(tdir_msp430x122)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x123.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x123 "$(tdir_msp430x123)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x1222.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x1222 "$(tdir_msp430x1222)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x1232.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x1232 "$(tdir_msp430x1232)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x133.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x133 "$(tdir_msp430x133)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x135.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x135 "$(tdir_msp430x135)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x1331.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x1331 "$(tdir_msp430x1331)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x1351.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x1351 "$(tdir_msp430x1351)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x147.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x147 "$(tdir_msp430x147)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x148.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x148 "$(tdir_msp430x148)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x149.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x149 "$(tdir_msp430x149)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x155.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x155 "$(tdir_msp430x155)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x156.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x156 "$(tdir_msp430x156)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x157.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x157 "$(tdir_msp430x157)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x167.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x167 "$(tdir_msp430x167)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x168.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x168 "$(tdir_msp430x168)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x169.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x169 "$(tdir_msp430x169)" msp430all
|
2004-07-26 20:29:02 +08:00
|
|
|
emsp430x1610.c: $(srcdir)/emulparams/msp430all.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x1610 "$(tdir_msp430x1610)" msp430all
|
|
|
|
emsp430x1611.c: $(srcdir)/emulparams/msp430all.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x1611 "$(tdir_msp430x1611)" msp430all
|
|
|
|
emsp430x1612.c: $(srcdir)/emulparams/msp430all.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x1612 "$(tdir_msp430x1612)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x311.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430_3.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x311 "$(tdir_msp430x311)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x312.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430_3.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x312 "$(tdir_msp430x312)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x313.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430_3.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x313 "$(tdir_msp430x313)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x314.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430_3.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x314 "$(tdir_msp430x314)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x315.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430_3.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x315 "$(tdir_msp430x315)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x323.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430_3.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x323 "$(tdir_msp430x323)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x325.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430_3.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x325 "$(tdir_msp430x325)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x336.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430_3.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x336 "$(tdir_msp430x336)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x337.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430_3.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x337 "$(tdir_msp430x337)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x412.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x412 "$(tdir_msp430x412)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x413.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x413 "$(tdir_msp430x413)" msp430all
|
2004-07-26 20:29:02 +08:00
|
|
|
emsp430x415.c: $(srcdir)/emulparams/msp430all.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x415 "$(tdir_msp430x415)" msp430all
|
|
|
|
emsp430x417.c: $(srcdir)/emulparams/msp430all.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x417 "$(tdir_msp430x417)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430xE423.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430xE423 "$(tdir_msp430xE423)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430xE425.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430xE425 "$(tdir_msp430xE425)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430xE427.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430xE427 "$(tdir_msp430xE427)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430xW423.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430xW423 "$(tdir_msp430xW423)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430xW425.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430xW425 "$(tdir_msp430xW425)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430xW427.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430xW427 "$(tdir_msp430xW427)" msp430all
|
2004-07-26 20:29:02 +08:00
|
|
|
emsp430xG437.c: $(srcdir)/emulparams/msp430all.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430xG437 "$(tdir_msp430xG437)" msp430all
|
|
|
|
emsp430xG438.c: $(srcdir)/emulparams/msp430all.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430xG438 "$(tdir_msp430xG438)" msp430all
|
|
|
|
emsp430xG439.c: $(srcdir)/emulparams/msp430all.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430xG439 "$(tdir_msp430xG439)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x435.c: $(srcdir)/emulparams/msp430all.sh \
|
2002-12-31 03:25:13 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x435 "$(tdir_msp430x435)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x436.c: $(srcdir)/emulparams/msp430all.sh \
|
2003-08-08 18:14:52 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x436 "$(tdir_msp430x436)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x437.c: $(srcdir)/emulparams/msp430all.sh \
|
2003-08-08 18:14:52 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x437 "$(tdir_msp430x437)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x447.c: $(srcdir)/emulparams/msp430all.sh \
|
2003-08-08 18:14:52 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x447 "$(tdir_msp430x447)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x448.c: $(srcdir)/emulparams/msp430all.sh \
|
2003-08-08 18:14:52 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x448 "$(tdir_msp430x448)" msp430all
|
2003-08-16 01:04:48 +08:00
|
|
|
emsp430x449.c: $(srcdir)/emulparams/msp430all.sh \
|
2003-08-08 18:14:52 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \
|
2003-10-16 16:46:35 +08:00
|
|
|
${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} msp430x449 "$(tdir_msp430x449)" msp430all
|
1999-05-03 15:29:11 +08:00
|
|
|
enews.c: $(srcdir)/emulparams/news.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} news "$(tdir_news)"
|
|
|
|
ens32knbsd.c: $(srcdir)/emulparams/ns32knbsd.sh \
|
2003-12-04 20:09:25 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/emultempl/netbsd.em \
|
|
|
|
$(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
1999-05-03 15:29:11 +08:00
|
|
|
${GENSCRIPTS} ns32knbsd "$(tdir_ns32knbsd)"
|
2002-02-01 01:33:08 +08:00
|
|
|
eor32.c: $(srcdir)/emulparams/or32.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/or32.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} or32 "$(tdir_or32)"
|
|
|
|
eor32elf.c: $(srcdir)/emulparams/or32elf.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} or32elf "$(tdir_or32elf)"
|
1999-05-03 15:29:11 +08:00
|
|
|
epc532macha.c: $(srcdir)/emulparams/pc532macha.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} pc532macha "$(tdir_pc532macha)"
|
2001-02-19 07:33:11 +08:00
|
|
|
epdp11.c: $(srcdir)/emulparams/pdp11.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} pdp11 "$(tdir_pdp11)"
|
1999-09-05 01:37:36 +08:00
|
|
|
epjelf.c: $(srcdir)/emulparams/pjelf.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} pjelf "$(tdir_pjelf)"
|
|
|
|
epjlelf.c: $(srcdir)/emulparams/pjlelf.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} pjlelf "$(tdir_pjlelf)"
|
1999-05-03 15:29:11 +08:00
|
|
|
eppcmacos.c: $(srcdir)/emulparams/ppcmacos.sh \
|
|
|
|
$(srcdir)/emultempl/aix.em $(srcdir)/scripttempl/aix.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} ppcmacos "$(tdir_ppcmacos)"
|
|
|
|
eppcnw.c: $(srcdir)/emulparams/ppcnw.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/nw.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} ppcnw "$(tdir_ppcnw)"
|
|
|
|
eppcpe.c: $(srcdir)/emulparams/ppcpe.sh \
|
|
|
|
$(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/ppcpe.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} ppcpe "$(tdir_ppcpe)"
|
2004-05-18 03:50:16 +08:00
|
|
|
eppclynx.c: $(srcdir)/emulparams/ppclynx.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} ppclynx "$(tdir_ppclynx)"
|
1999-05-03 15:29:11 +08:00
|
|
|
eriscix.c: $(srcdir)/emulparams/riscix.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} riscix "$(tdir_riscix)"
|
|
|
|
esa29200.c: $(srcdir)/emulparams/sa29200.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sa29200.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} sa29200 "$(tdir_sa29200)"
|
|
|
|
esh.c: $(srcdir)/emulparams/sh.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sh.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} sh "$(tdir_sh)"
|
|
|
|
eshelf.c: $(srcdir)/emulparams/shelf.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} shelf "$(tdir_shelf)"
|
Contribute sh64-elf.
2002-01-24 Alexandre Oliva <aoliva@redhat.com>
* emulparams/shelf32.sh (STACK_ADDR): Define as formerly defined
in OTHER_RELOCATABLE_SECTIONS.
2002-01-18 Alexandre Oliva <aoliva@redhat.com>
* emulparams/shelf32.sh (STACK_ADDR): Define.
(OTHER_RELOCATABLE_SECTIONS): Renamed to...
(OTHER_SECTIONS): this. Removed stack settings.
* emulparams/shelf64.sh (OTHER_RELOCATABLE_SECTIONS): Do not set.
(OTHER_SECTIONS): Reset after sourcing shelf32.sh.
2001-03-12 DJ Delorie <dj@redhat.com>
* emultempl/sh64elf.em (sh64_elf_$_before_allocation): Disable
relaxing if any shmedia or mixed sections are found.
2001-03-07 DJ Delorie <dj@redhat.com>
* emultempl/sh64elf.em (sh64_elf_before_allocation): Pass f to
einfo. Gracefully decline to output to non-elf formats.
2001-03-06 Hans-Peter Nilsson <hpn@redhat.com>
* emulparams/shelf64.sh (OTHER_RELOCATING_SECTIONS) <.stack>:
Default to _end aligned to next multiple of 0x40000, plus 0x40000.
* emulparams/shelf32.sh: Ditto.
2001-01-14 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf32.sh (OTHER_RELOCATING_SECTIONS): Tweak
comment.
2001-01-10 Ben Elliston <bje@redhat.com>
* emulparams/shelf32.sh (OTHER_RELOCATING_SECTIONS): Avoid
non-portable shell constructs. From Hans-Peter Nilsson.
2001-01-09 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf64.sh (EXTRA_EM_FILE): Define empty.
* Makefile.am (eshelf64.c, eshlelf64.c, eshlelf32.c): Adjust
dependencies to the shell script include chain.
* Makefile.in: Regenerate.
2001-01-06 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em: Update and tweak comments.
(sh64_elf_${EMULATION_NAME}_after_allocation): Always allocate and
make a .cranges section SEC_IN_MEMORY.
2000-12-30 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em
(sh64_elf_${EMULATION_NAME}_before_allocation): Don't stop when
.cranges section found to be necessary; continue and set stored
section contents flags for sections with non-mixed contents.
Use a struct sh64_section_data container and sh64_elf_section_data
to store contents-type flags.
Remove unused update of "isec".
(sh64_elf_${EMULATION_NAME}_after_allocation): Only process
sections marked SHF_SH5_ISA32_MIXED. Use sh64_elf_section_data to
access contents-type flags. Assert that the associated container
is initialized. Use that container, not elf_gp_size, to hold size
of linker-generated cranges contents.
2000-12-18 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em
(sh64_elf_${EMULATION_NAME}_before_allocation): Exit early if
there's already a .cranges section. When section flag difference
is found, don't NULL-check cranges a second time. Tweak comments.
(sh64_elf_${EMULATION_NAME}_after_allocation): Use size after
merging, not max size, as size of ld-generated .cranges contents.
Don't set ELF section flags in output section. When checking for
needed .cranges descriptors, don't use a variable; compare
incoming ELF section flags directly to SHF_SH5_ISA32_MIXED. Tweak
comments.
2000-12-18 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em: New file.
* Makefile.am (eshelf32.c, eshlelf32.c): Adjust dependencies.
* Makefile.in: Regenerate.
* emulparams/shelf32.sh (OUTPUT_FORMAT): Only set if not set.
(OTHER_RELOCATING_SECTIONS): Ditto.
(EXTRA_EM_FILE): New, set to sh64elf if not set.
* emulparams/shlelf32.sh: Stub out all settings except
OUTPUT_FORMAT. Source shelf32.sh.
* emulparams/shelf64.sh: Similar, but also keep ELF_SIZE and
OTHER_RELOCATING_SECTIONS.
(OTHER_RELOCATING_SECTIONS): Remove .cranges.
* emulparams/shlelf64.sh: Stub out all settings except
OUTPUT_FORMAT. Source shelf64.sh.
2000-12-15 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf64.sh (OTHER_RELOCATING_SECTIONS): Include
.cranges section.
(DATA_START_SYMBOLS): Define, provide ___data.
(OTHER_READONLY_SYMBOLS): Define, provide ___rodata and align to 8
for consecutive .data section.
(OTHER_GOT_SECTIONS): Define, align to 8 for consecutive .bss
section after .data section.
* emulparams/shlelf64.sh: Ditto.
* emulparams/shelf32.sh: Ditto.
(ALIGNMENT): Define to 8.
* emulparams/shelf32.sh: Ditto.
2000-12-12 Hans-Peter Nilsson <hpn@cygnus.com>
* configure.tgt (sh64-*-elf*): Assign targ_extra_libpath to get
built-in linker scripts.
2000-11-30 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shlelf64.sh: New.
* emulparams/shelf64.sh: New.
* configure.tgt (sh64-*-elf*): Add shelf64 and shlelf64 to
targ_extra_emuls.
* Makefile.am: Add support for shlelf64 and shelf64.
* Makefile.in: Regenerate.
2000-11-29 Hans-Peter Nilsson <hpn@cygnus.com>
* configure.tgt (sh64-*-elf*): Add shelf as default.
Add shlelf to targ_extra_emuls.
2000-11-24 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf32.sh: New file.
* emulparams/shlelf32.sh: New file.
* Makefile.am: Add support for shlelf32 and shelf32.
* configure.tgt: Map sh64-*-elf* to shlelf32 and shelf32.
* Makefile.in: Regenerate.
2002-02-08 14:39:01 +08:00
|
|
|
eshelf32.c: $(srcdir)/emulparams/shelf32.sh \
|
|
|
|
$(BFDDIR)/libbfd.h $(INCDIR)/libiberty.h \
|
|
|
|
$(srcdir)/emultempl/sh64elf.em $(INCDIR)/elf/sh.h $(BFDDIR)/elf-bfd.h \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} shelf32 "$(tdir_shelf32)"
|
2002-10-10 03:09:59 +08:00
|
|
|
eshelf32_linux.c: $(srcdir)/emulparams/shelf32_linux.sh \
|
|
|
|
$(srcdir)/emulparams/shelf32.sh \
|
|
|
|
$(BFDDIR)/libbfd.h $(INCDIR)/libiberty.h \
|
|
|
|
$(srcdir)/emultempl/sh64elf.em $(INCDIR)/elf/sh.h $(BFDDIR)/elf-bfd.h \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} shelf32_linux "$(tdir_shelf32_linux)"
|
bfd:
* Makefile.am (BFD32_BACKENDS): Add elf32-sh64-nbsd.lo.
(BFD32_BACKENDS_CFILES): Add elf32-sh64-nbsd.c.
(BFD64_BACKENDS): Add elf64-sh64-nbsd.lo.
(BFD64_BACKENDS_CFILES): Add elf64-sh64-nbsd.c.
(elf32-sh64-nbsd.lo, elf64-sh64-nbsd.lo): New rules.
* Makefile.in: Regenerate.
* config.bfd (sh5le-*-netbsd*, sh5-*-netbsd*, sh64le-*-netbsd*)
(sh64-*-netbsd*): New targets.
* configure.in: Add bfd_elf32_sh64nbsd_vec, bfd_elf32_sh64lnbsd_vec,
bfd_elf64_sh64nbsd_vec, and bfd_elf64_sh64lnbsd_vec.
* configure: Regenerate.
* elf32-sh64-nbsd.c: New file.
* elf64-sh64-nbsd.c: New file.
* targets.c: Add extern decls for bfd_elf32_sh64nbsd_vec,
bfd_elf32_sh64lnbsd_vec, bfd_elf64_sh64nbsd_vec, and
bfd_elf64_sh64lnbsd_vec.
gas:
* configure.in (sh5*): Set cpu_type to sh64 and endian to big.
(sh5le*, sh64le*): Set cpu_type to sh64 and endian to little.
(sh5*-*-netbsd*, sh64*-*-netbsd*): New targets.
* configure: Regenerate.
* config/tc-sh64.c (sh64_target_format): Add support for NetBSD
environment.
ld:
* Makefile.am (ALL_EMULATIONS): Add eshelf32_nbsd.o,
eshlelf32_nbsd.o, eshelf64_nbsd.o, and eshlelf64_nbsd.o.
(eshelf32_nbsd.c, eshelf64_nbsd.c, eshlelf32_nbsd.c)
(eshlelf64_nbsd.c): New rules.
* Makefile.in: Regenerate.
* configure.tgt (sh5le-*-netbsd*, sh5-*-netbsd*, sh64le-*-netbsd*)
(sh64-*-netbsd*): New targets.
* emulparams/shelf32_nbsd.sh: New file.
* emulparams/shelf64_nbsd.sh: New file.
* emulparams/shlelf32_nbsd.sh: New file.
* emulparams/shlelf64_nbsd.sh: New file.
opcodes:
* configure.in: Add "sh5*-*" to list of targets which include
sh64 support.
* configure: Regenerate.
2002-06-04 10:57:44 +08:00
|
|
|
eshelf32_nbsd.c: $(srcdir)/emulparams/shelf32_nbsd.sh \
|
|
|
|
$(srcdir)/emulparams/shelf32.sh \
|
|
|
|
$(BFDDIR)/libbfd.h $(INCDIR)/libiberty.h \
|
|
|
|
$(srcdir)/emultempl/sh64elf.em $(INCDIR)/elf/sh.h $(BFDDIR)/elf-bfd.h \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} shelf32_nbsd "$(tdir_shelf32_nbsd)"
|
Contribute sh64-elf.
2002-01-24 Alexandre Oliva <aoliva@redhat.com>
* emulparams/shelf32.sh (STACK_ADDR): Define as formerly defined
in OTHER_RELOCATABLE_SECTIONS.
2002-01-18 Alexandre Oliva <aoliva@redhat.com>
* emulparams/shelf32.sh (STACK_ADDR): Define.
(OTHER_RELOCATABLE_SECTIONS): Renamed to...
(OTHER_SECTIONS): this. Removed stack settings.
* emulparams/shelf64.sh (OTHER_RELOCATABLE_SECTIONS): Do not set.
(OTHER_SECTIONS): Reset after sourcing shelf32.sh.
2001-03-12 DJ Delorie <dj@redhat.com>
* emultempl/sh64elf.em (sh64_elf_$_before_allocation): Disable
relaxing if any shmedia or mixed sections are found.
2001-03-07 DJ Delorie <dj@redhat.com>
* emultempl/sh64elf.em (sh64_elf_before_allocation): Pass f to
einfo. Gracefully decline to output to non-elf formats.
2001-03-06 Hans-Peter Nilsson <hpn@redhat.com>
* emulparams/shelf64.sh (OTHER_RELOCATING_SECTIONS) <.stack>:
Default to _end aligned to next multiple of 0x40000, plus 0x40000.
* emulparams/shelf32.sh: Ditto.
2001-01-14 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf32.sh (OTHER_RELOCATING_SECTIONS): Tweak
comment.
2001-01-10 Ben Elliston <bje@redhat.com>
* emulparams/shelf32.sh (OTHER_RELOCATING_SECTIONS): Avoid
non-portable shell constructs. From Hans-Peter Nilsson.
2001-01-09 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf64.sh (EXTRA_EM_FILE): Define empty.
* Makefile.am (eshelf64.c, eshlelf64.c, eshlelf32.c): Adjust
dependencies to the shell script include chain.
* Makefile.in: Regenerate.
2001-01-06 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em: Update and tweak comments.
(sh64_elf_${EMULATION_NAME}_after_allocation): Always allocate and
make a .cranges section SEC_IN_MEMORY.
2000-12-30 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em
(sh64_elf_${EMULATION_NAME}_before_allocation): Don't stop when
.cranges section found to be necessary; continue and set stored
section contents flags for sections with non-mixed contents.
Use a struct sh64_section_data container and sh64_elf_section_data
to store contents-type flags.
Remove unused update of "isec".
(sh64_elf_${EMULATION_NAME}_after_allocation): Only process
sections marked SHF_SH5_ISA32_MIXED. Use sh64_elf_section_data to
access contents-type flags. Assert that the associated container
is initialized. Use that container, not elf_gp_size, to hold size
of linker-generated cranges contents.
2000-12-18 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em
(sh64_elf_${EMULATION_NAME}_before_allocation): Exit early if
there's already a .cranges section. When section flag difference
is found, don't NULL-check cranges a second time. Tweak comments.
(sh64_elf_${EMULATION_NAME}_after_allocation): Use size after
merging, not max size, as size of ld-generated .cranges contents.
Don't set ELF section flags in output section. When checking for
needed .cranges descriptors, don't use a variable; compare
incoming ELF section flags directly to SHF_SH5_ISA32_MIXED. Tweak
comments.
2000-12-18 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em: New file.
* Makefile.am (eshelf32.c, eshlelf32.c): Adjust dependencies.
* Makefile.in: Regenerate.
* emulparams/shelf32.sh (OUTPUT_FORMAT): Only set if not set.
(OTHER_RELOCATING_SECTIONS): Ditto.
(EXTRA_EM_FILE): New, set to sh64elf if not set.
* emulparams/shlelf32.sh: Stub out all settings except
OUTPUT_FORMAT. Source shelf32.sh.
* emulparams/shelf64.sh: Similar, but also keep ELF_SIZE and
OTHER_RELOCATING_SECTIONS.
(OTHER_RELOCATING_SECTIONS): Remove .cranges.
* emulparams/shlelf64.sh: Stub out all settings except
OUTPUT_FORMAT. Source shelf64.sh.
2000-12-15 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf64.sh (OTHER_RELOCATING_SECTIONS): Include
.cranges section.
(DATA_START_SYMBOLS): Define, provide ___data.
(OTHER_READONLY_SYMBOLS): Define, provide ___rodata and align to 8
for consecutive .data section.
(OTHER_GOT_SECTIONS): Define, align to 8 for consecutive .bss
section after .data section.
* emulparams/shlelf64.sh: Ditto.
* emulparams/shelf32.sh: Ditto.
(ALIGNMENT): Define to 8.
* emulparams/shelf32.sh: Ditto.
2000-12-12 Hans-Peter Nilsson <hpn@cygnus.com>
* configure.tgt (sh64-*-elf*): Assign targ_extra_libpath to get
built-in linker scripts.
2000-11-30 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shlelf64.sh: New.
* emulparams/shelf64.sh: New.
* configure.tgt (sh64-*-elf*): Add shelf64 and shlelf64 to
targ_extra_emuls.
* Makefile.am: Add support for shlelf64 and shelf64.
* Makefile.in: Regenerate.
2000-11-29 Hans-Peter Nilsson <hpn@cygnus.com>
* configure.tgt (sh64-*-elf*): Add shelf as default.
Add shlelf to targ_extra_emuls.
2000-11-24 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf32.sh: New file.
* emulparams/shlelf32.sh: New file.
* Makefile.am: Add support for shlelf32 and shelf32.
* configure.tgt: Map sh64-*-elf* to shlelf32 and shelf32.
* Makefile.in: Regenerate.
2002-02-08 14:39:01 +08:00
|
|
|
eshelf64.c: $(srcdir)/emulparams/shelf64.sh $(srcdir)/emulparams/shelf32.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} shelf64 "$(tdir_shelf64)"
|
bfd:
* Makefile.am (BFD32_BACKENDS): Add elf32-sh64-nbsd.lo.
(BFD32_BACKENDS_CFILES): Add elf32-sh64-nbsd.c.
(BFD64_BACKENDS): Add elf64-sh64-nbsd.lo.
(BFD64_BACKENDS_CFILES): Add elf64-sh64-nbsd.c.
(elf32-sh64-nbsd.lo, elf64-sh64-nbsd.lo): New rules.
* Makefile.in: Regenerate.
* config.bfd (sh5le-*-netbsd*, sh5-*-netbsd*, sh64le-*-netbsd*)
(sh64-*-netbsd*): New targets.
* configure.in: Add bfd_elf32_sh64nbsd_vec, bfd_elf32_sh64lnbsd_vec,
bfd_elf64_sh64nbsd_vec, and bfd_elf64_sh64lnbsd_vec.
* configure: Regenerate.
* elf32-sh64-nbsd.c: New file.
* elf64-sh64-nbsd.c: New file.
* targets.c: Add extern decls for bfd_elf32_sh64nbsd_vec,
bfd_elf32_sh64lnbsd_vec, bfd_elf64_sh64nbsd_vec, and
bfd_elf64_sh64lnbsd_vec.
gas:
* configure.in (sh5*): Set cpu_type to sh64 and endian to big.
(sh5le*, sh64le*): Set cpu_type to sh64 and endian to little.
(sh5*-*-netbsd*, sh64*-*-netbsd*): New targets.
* configure: Regenerate.
* config/tc-sh64.c (sh64_target_format): Add support for NetBSD
environment.
ld:
* Makefile.am (ALL_EMULATIONS): Add eshelf32_nbsd.o,
eshlelf32_nbsd.o, eshelf64_nbsd.o, and eshlelf64_nbsd.o.
(eshelf32_nbsd.c, eshelf64_nbsd.c, eshlelf32_nbsd.c)
(eshlelf64_nbsd.c): New rules.
* Makefile.in: Regenerate.
* configure.tgt (sh5le-*-netbsd*, sh5-*-netbsd*, sh64le-*-netbsd*)
(sh64-*-netbsd*): New targets.
* emulparams/shelf32_nbsd.sh: New file.
* emulparams/shelf64_nbsd.sh: New file.
* emulparams/shlelf32_nbsd.sh: New file.
* emulparams/shlelf64_nbsd.sh: New file.
opcodes:
* configure.in: Add "sh5*-*" to list of targets which include
sh64 support.
* configure: Regenerate.
2002-06-04 10:57:44 +08:00
|
|
|
eshelf64_nbsd.c: $(srcdir)/emulparams/shelf64_nbsd.sh \
|
|
|
|
$(srcdir)/emulparams/shelf32_nbsd.sh $(srcdir)/emulparams/shelf32.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} shelf64_nbsd "$(tdir_shelf64_nbsd)"
|
2000-09-07 12:32:05 +08:00
|
|
|
eshelf_linux.c: $(srcdir)/emulparams/shelf_linux.sh \
|
* Makefile.am (CONFIG_STATUS_DEPENDENCIES): Define.
(config.status): Delete rule.
Add extra dependencies to cover sourced emulparams files.
* Makefile.in: Regenerate.
* scripttempl/elf.sc: Order <section>, <section>.* and
corresponding linkonce sections as seen in input files.
Formatting fixes. Zero vma of all sections if not relocating.
(STACK): Define and insert if STACK_ADDR defined.
(OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
(OTHER_READONLY_SECTIONS): Always insert, not just when relocating.
(OTHER_READWRITE_SECTIONS): Likewise.
(OTHER_GOT_SECTIONS): Likewise.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_BSS_SECTIONS): Likewise.
* scripttempl/elfi370.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise.
* scripttempl/nw.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise
* emulparams/armelf.sh (OTHER_RELOCATING_SECTIONS): Delete.
(STACK_ADDR): Define.
* emulparams/armelf_oabi.sh: As for armelf.sh.
* emulparams/elf32mcore.sh: As for armelf.sh.
* emulparams/h8300elf.sh: As for armelf.sh.
* emulparams/mn10200.sh: As for armelf.sh.
* emulparams/shelf.sh: As for armelf.sh.
* emulparams/elf32fr30.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
* emulparams/m32relf.sh: As for elf32fr30.sh.
* emulparams/h8300helf.sh: As for elf32fr30.sh.
* emulparams/h8300self.sh: As for elf32fr30.sh.
* emulparams/criself.sh (OTHER_READONLY_SECTIONS): Protect symbol
defines with RELOCATING test.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_END_SYMBOLS): ..this.
* emulparams/crislinux.sh: As for criself.sh.
* emulparams/elf32bmipn32.sh (OTHER_SDATA_SECTIONS): Zero vma
if not relocating.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_SECTIONS): ..this. Zero vma if not relocating. Order
normal and linkonce sections as seen in input files.
* emulparams/elf32bmip.sh (DATA_ADDR): Don't define if EMBEDDED.
(TEXT_DYNAMIC): Likewise.
(INITIAL_READONLY_SECTIONS): Zero vma if not relocating.
(OTHER_SDATA_SECTIONS): Likewise.
* emulparams/elf32ppc.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/shlelf_linux.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/elf64alpha.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/hppalinux.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/elf64_aix.sh (OTHER_GOT_SECTIONS): Likewise.
(OTHER_PLT_RELOC_SECTIONS): Likewise.
(OTHER_READONLY_SECTIONS): Likewise. Order normal and linkonce
sections as seen in input files.
* emulparams/elf64_ia64.sh: As for emulparams/elf64_aix.sh.
* emulparams/hppa64linux.sh (OTHER_READONLY_SECTIONS): Zero vma
if not relocating.
(OTHER_READWRITE_SECTIONS, OTHER_BSS_SECTIONS): Likewise.
(OTHER_BSS_END_SYMBOLS): Merge from elf64hppa.sh.
* emulparams/elf64mmix.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_SECTIONS): Instead, use this..
(OTHER_END_SYMBOLS): ..and this.
* emulparams/elf32b4300.sh: Source elf32bmip.sh, remove duplicates.
* emulparams/elf32bsmip.sh: Likewise.
* emulparams/elf32btsmip.sh: Likewise.
* emulparams/elf32ebmip.sh: Likewise.
* emulparams/elf32lmip.sh: Likewise.
* emulparams/elf32elmip.sh: Source elf32lmip.sh, remove duplicates.
* emulparams/elf32lsmip.sh: Likewise.
* emulparams/elf32ltsmip.sh: Source elf32btsmip.sh, remove duplicates.
* emulparams/elf32l4300.sh: Source elf32b4300.sh, remove duplicates.
* emulparams/elf64bmip.sh: Source elf32bmipn32.sh, remove duplicates.
* emulparams/elf64btsmip.sh: Likewise.
* emulparams/elf64ltsmip.sh: Source elf64btsmip.sh, remove duplicates.
* emulparams/elf32lppc.sh: Source elf32ppc.sh, remove duplicates.
* emulparams/elf32ppclinux.sh: Likewise.
* emulparams/elf32ppcsim.sh: Likewise.
* emulparams/elf32lppcsim.sh: Source elf32lppc.sh, remove duplicates.
* emulparams/elf64hppa.sh: Source hppa64linux.sh, remove duplicates.
* emulparams/h8300helf.sh: Source h8300elf.sh, remove duplicates.
* emulparams/h8300self.sh: Likewise.
* emulparams/mn10300.sh: Source mn10200.sh, remove duplicates.
* emulparams/sh.sh: Comment.
* emulparams/shl.sh: Source sh.sh, remove duplicates.
* emulparams/shlelf.sh: Source shelf.sh, remove duplicates.
* emulparams/shelf_linux.sh: Source shlelf_linux.sh, remove duplicates.
2001-11-22 17:08:05 +08:00
|
|
|
$(srcdir)/emulparams/shlelf_linux.sh \
|
2000-09-07 12:32:05 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} shelf_linux "$(tdir_shelf_linux)"
|
|
|
|
eshlelf_linux.c: $(srcdir)/emulparams/shlelf_linux.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} shlelf_linux "$(tdir_shlelf_linux)"
|
2002-01-08 12:23:02 +08:00
|
|
|
eshelf_nbsd.c: $(srcdir)/emulparams/shelf_nbsd.sh \
|
|
|
|
$(srcdir)/emulparams/shelf.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} shelf_nbsd "$(tdir_shelf_nbsd)"
|
2002-08-23 01:27:20 +08:00
|
|
|
eshelf_nto.c: $(srcdir)/emulparams/shelf_nto.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} shelf_nto "$(tdir_shelf_nto)"
|
2002-01-08 12:23:02 +08:00
|
|
|
eshlelf_nbsd.c: $(srcdir)/emulparams/shlelf_nbsd.sh \
|
|
|
|
$(srcdir)/emulparams/shelf_nbsd.sh \
|
|
|
|
$(srcdir)/emulparams/shelf.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} shlelf_nbsd "$(tdir_shlelf_nbsd)"
|
2002-08-23 01:27:20 +08:00
|
|
|
eshlelf_nto.c: $(srcdir)/emulparams/shlelf_nto.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} shlelf_nto "$(tdir_shlelf_nto)"
|
1999-05-03 15:29:11 +08:00
|
|
|
eshlelf.c: $(srcdir)/emulparams/shlelf.sh \
|
* Makefile.am (CONFIG_STATUS_DEPENDENCIES): Define.
(config.status): Delete rule.
Add extra dependencies to cover sourced emulparams files.
* Makefile.in: Regenerate.
* scripttempl/elf.sc: Order <section>, <section>.* and
corresponding linkonce sections as seen in input files.
Formatting fixes. Zero vma of all sections if not relocating.
(STACK): Define and insert if STACK_ADDR defined.
(OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
(OTHER_READONLY_SECTIONS): Always insert, not just when relocating.
(OTHER_READWRITE_SECTIONS): Likewise.
(OTHER_GOT_SECTIONS): Likewise.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_BSS_SECTIONS): Likewise.
* scripttempl/elfi370.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise.
* scripttempl/nw.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise
* emulparams/armelf.sh (OTHER_RELOCATING_SECTIONS): Delete.
(STACK_ADDR): Define.
* emulparams/armelf_oabi.sh: As for armelf.sh.
* emulparams/elf32mcore.sh: As for armelf.sh.
* emulparams/h8300elf.sh: As for armelf.sh.
* emulparams/mn10200.sh: As for armelf.sh.
* emulparams/shelf.sh: As for armelf.sh.
* emulparams/elf32fr30.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
* emulparams/m32relf.sh: As for elf32fr30.sh.
* emulparams/h8300helf.sh: As for elf32fr30.sh.
* emulparams/h8300self.sh: As for elf32fr30.sh.
* emulparams/criself.sh (OTHER_READONLY_SECTIONS): Protect symbol
defines with RELOCATING test.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_END_SYMBOLS): ..this.
* emulparams/crislinux.sh: As for criself.sh.
* emulparams/elf32bmipn32.sh (OTHER_SDATA_SECTIONS): Zero vma
if not relocating.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_SECTIONS): ..this. Zero vma if not relocating. Order
normal and linkonce sections as seen in input files.
* emulparams/elf32bmip.sh (DATA_ADDR): Don't define if EMBEDDED.
(TEXT_DYNAMIC): Likewise.
(INITIAL_READONLY_SECTIONS): Zero vma if not relocating.
(OTHER_SDATA_SECTIONS): Likewise.
* emulparams/elf32ppc.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/shlelf_linux.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/elf64alpha.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/hppalinux.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/elf64_aix.sh (OTHER_GOT_SECTIONS): Likewise.
(OTHER_PLT_RELOC_SECTIONS): Likewise.
(OTHER_READONLY_SECTIONS): Likewise. Order normal and linkonce
sections as seen in input files.
* emulparams/elf64_ia64.sh: As for emulparams/elf64_aix.sh.
* emulparams/hppa64linux.sh (OTHER_READONLY_SECTIONS): Zero vma
if not relocating.
(OTHER_READWRITE_SECTIONS, OTHER_BSS_SECTIONS): Likewise.
(OTHER_BSS_END_SYMBOLS): Merge from elf64hppa.sh.
* emulparams/elf64mmix.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_SECTIONS): Instead, use this..
(OTHER_END_SYMBOLS): ..and this.
* emulparams/elf32b4300.sh: Source elf32bmip.sh, remove duplicates.
* emulparams/elf32bsmip.sh: Likewise.
* emulparams/elf32btsmip.sh: Likewise.
* emulparams/elf32ebmip.sh: Likewise.
* emulparams/elf32lmip.sh: Likewise.
* emulparams/elf32elmip.sh: Source elf32lmip.sh, remove duplicates.
* emulparams/elf32lsmip.sh: Likewise.
* emulparams/elf32ltsmip.sh: Source elf32btsmip.sh, remove duplicates.
* emulparams/elf32l4300.sh: Source elf32b4300.sh, remove duplicates.
* emulparams/elf64bmip.sh: Source elf32bmipn32.sh, remove duplicates.
* emulparams/elf64btsmip.sh: Likewise.
* emulparams/elf64ltsmip.sh: Source elf64btsmip.sh, remove duplicates.
* emulparams/elf32lppc.sh: Source elf32ppc.sh, remove duplicates.
* emulparams/elf32ppclinux.sh: Likewise.
* emulparams/elf32ppcsim.sh: Likewise.
* emulparams/elf32lppcsim.sh: Source elf32lppc.sh, remove duplicates.
* emulparams/elf64hppa.sh: Source hppa64linux.sh, remove duplicates.
* emulparams/h8300helf.sh: Source h8300elf.sh, remove duplicates.
* emulparams/h8300self.sh: Likewise.
* emulparams/mn10300.sh: Source mn10200.sh, remove duplicates.
* emulparams/sh.sh: Comment.
* emulparams/shl.sh: Source sh.sh, remove duplicates.
* emulparams/shlelf.sh: Source shelf.sh, remove duplicates.
* emulparams/shelf_linux.sh: Source shlelf_linux.sh, remove duplicates.
2001-11-22 17:08:05 +08:00
|
|
|
$(srcdir)/emulparams/shelf.sh \
|
1999-05-03 15:29:11 +08:00
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} shlelf "$(tdir_shlelf)"
|
2004-07-07 00:58:43 +08:00
|
|
|
eshlsymbian.c: $(srcdir)/emulparams/shlsymbian.sh \
|
|
|
|
$(srcdir)/emulparams/shelf.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf32sh-symbian.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} shlsymbian "$(tdir_shlelf)"
|
Contribute sh64-elf.
2002-01-24 Alexandre Oliva <aoliva@redhat.com>
* emulparams/shelf32.sh (STACK_ADDR): Define as formerly defined
in OTHER_RELOCATABLE_SECTIONS.
2002-01-18 Alexandre Oliva <aoliva@redhat.com>
* emulparams/shelf32.sh (STACK_ADDR): Define.
(OTHER_RELOCATABLE_SECTIONS): Renamed to...
(OTHER_SECTIONS): this. Removed stack settings.
* emulparams/shelf64.sh (OTHER_RELOCATABLE_SECTIONS): Do not set.
(OTHER_SECTIONS): Reset after sourcing shelf32.sh.
2001-03-12 DJ Delorie <dj@redhat.com>
* emultempl/sh64elf.em (sh64_elf_$_before_allocation): Disable
relaxing if any shmedia or mixed sections are found.
2001-03-07 DJ Delorie <dj@redhat.com>
* emultempl/sh64elf.em (sh64_elf_before_allocation): Pass f to
einfo. Gracefully decline to output to non-elf formats.
2001-03-06 Hans-Peter Nilsson <hpn@redhat.com>
* emulparams/shelf64.sh (OTHER_RELOCATING_SECTIONS) <.stack>:
Default to _end aligned to next multiple of 0x40000, plus 0x40000.
* emulparams/shelf32.sh: Ditto.
2001-01-14 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf32.sh (OTHER_RELOCATING_SECTIONS): Tweak
comment.
2001-01-10 Ben Elliston <bje@redhat.com>
* emulparams/shelf32.sh (OTHER_RELOCATING_SECTIONS): Avoid
non-portable shell constructs. From Hans-Peter Nilsson.
2001-01-09 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf64.sh (EXTRA_EM_FILE): Define empty.
* Makefile.am (eshelf64.c, eshlelf64.c, eshlelf32.c): Adjust
dependencies to the shell script include chain.
* Makefile.in: Regenerate.
2001-01-06 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em: Update and tweak comments.
(sh64_elf_${EMULATION_NAME}_after_allocation): Always allocate and
make a .cranges section SEC_IN_MEMORY.
2000-12-30 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em
(sh64_elf_${EMULATION_NAME}_before_allocation): Don't stop when
.cranges section found to be necessary; continue and set stored
section contents flags for sections with non-mixed contents.
Use a struct sh64_section_data container and sh64_elf_section_data
to store contents-type flags.
Remove unused update of "isec".
(sh64_elf_${EMULATION_NAME}_after_allocation): Only process
sections marked SHF_SH5_ISA32_MIXED. Use sh64_elf_section_data to
access contents-type flags. Assert that the associated container
is initialized. Use that container, not elf_gp_size, to hold size
of linker-generated cranges contents.
2000-12-18 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em
(sh64_elf_${EMULATION_NAME}_before_allocation): Exit early if
there's already a .cranges section. When section flag difference
is found, don't NULL-check cranges a second time. Tweak comments.
(sh64_elf_${EMULATION_NAME}_after_allocation): Use size after
merging, not max size, as size of ld-generated .cranges contents.
Don't set ELF section flags in output section. When checking for
needed .cranges descriptors, don't use a variable; compare
incoming ELF section flags directly to SHF_SH5_ISA32_MIXED. Tweak
comments.
2000-12-18 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em: New file.
* Makefile.am (eshelf32.c, eshlelf32.c): Adjust dependencies.
* Makefile.in: Regenerate.
* emulparams/shelf32.sh (OUTPUT_FORMAT): Only set if not set.
(OTHER_RELOCATING_SECTIONS): Ditto.
(EXTRA_EM_FILE): New, set to sh64elf if not set.
* emulparams/shlelf32.sh: Stub out all settings except
OUTPUT_FORMAT. Source shelf32.sh.
* emulparams/shelf64.sh: Similar, but also keep ELF_SIZE and
OTHER_RELOCATING_SECTIONS.
(OTHER_RELOCATING_SECTIONS): Remove .cranges.
* emulparams/shlelf64.sh: Stub out all settings except
OUTPUT_FORMAT. Source shelf64.sh.
2000-12-15 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf64.sh (OTHER_RELOCATING_SECTIONS): Include
.cranges section.
(DATA_START_SYMBOLS): Define, provide ___data.
(OTHER_READONLY_SYMBOLS): Define, provide ___rodata and align to 8
for consecutive .data section.
(OTHER_GOT_SECTIONS): Define, align to 8 for consecutive .bss
section after .data section.
* emulparams/shlelf64.sh: Ditto.
* emulparams/shelf32.sh: Ditto.
(ALIGNMENT): Define to 8.
* emulparams/shelf32.sh: Ditto.
2000-12-12 Hans-Peter Nilsson <hpn@cygnus.com>
* configure.tgt (sh64-*-elf*): Assign targ_extra_libpath to get
built-in linker scripts.
2000-11-30 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shlelf64.sh: New.
* emulparams/shelf64.sh: New.
* configure.tgt (sh64-*-elf*): Add shelf64 and shlelf64 to
targ_extra_emuls.
* Makefile.am: Add support for shlelf64 and shelf64.
* Makefile.in: Regenerate.
2000-11-29 Hans-Peter Nilsson <hpn@cygnus.com>
* configure.tgt (sh64-*-elf*): Add shelf as default.
Add shlelf to targ_extra_emuls.
2000-11-24 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf32.sh: New file.
* emulparams/shlelf32.sh: New file.
* Makefile.am: Add support for shlelf32 and shelf32.
* configure.tgt: Map sh64-*-elf* to shlelf32 and shelf32.
* Makefile.in: Regenerate.
2002-02-08 14:39:01 +08:00
|
|
|
eshlelf32.c: $(srcdir)/emulparams/shlelf32.sh \
|
|
|
|
$(BFDDIR)/libbfd.h $(INCDIR)/libiberty.h $(srcdir)/emulparams/shelf32.sh \
|
|
|
|
$(srcdir)/emultempl/sh64elf.em $(INCDIR)/elf/sh.h $(BFDDIR)/elf-bfd.h \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} shlelf32 "$(tdir_shlelf32)"
|
2002-10-10 03:09:59 +08:00
|
|
|
eshlelf32_linux.c: $(srcdir)/emulparams/shlelf32_linux.sh \
|
|
|
|
$(srcdir)/emulparams/shelf32_linux.sh $(srcdir)/emulparams/shelf32.sh \
|
|
|
|
$(BFDDIR)/libbfd.h $(INCDIR)/libiberty.h \
|
|
|
|
$(srcdir)/emultempl/sh64elf.em $(INCDIR)/elf/sh.h $(BFDDIR)/elf-bfd.h \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} shlelf32_linux "$(tdir_shlelf32_linux)"
|
bfd:
* Makefile.am (BFD32_BACKENDS): Add elf32-sh64-nbsd.lo.
(BFD32_BACKENDS_CFILES): Add elf32-sh64-nbsd.c.
(BFD64_BACKENDS): Add elf64-sh64-nbsd.lo.
(BFD64_BACKENDS_CFILES): Add elf64-sh64-nbsd.c.
(elf32-sh64-nbsd.lo, elf64-sh64-nbsd.lo): New rules.
* Makefile.in: Regenerate.
* config.bfd (sh5le-*-netbsd*, sh5-*-netbsd*, sh64le-*-netbsd*)
(sh64-*-netbsd*): New targets.
* configure.in: Add bfd_elf32_sh64nbsd_vec, bfd_elf32_sh64lnbsd_vec,
bfd_elf64_sh64nbsd_vec, and bfd_elf64_sh64lnbsd_vec.
* configure: Regenerate.
* elf32-sh64-nbsd.c: New file.
* elf64-sh64-nbsd.c: New file.
* targets.c: Add extern decls for bfd_elf32_sh64nbsd_vec,
bfd_elf32_sh64lnbsd_vec, bfd_elf64_sh64nbsd_vec, and
bfd_elf64_sh64lnbsd_vec.
gas:
* configure.in (sh5*): Set cpu_type to sh64 and endian to big.
(sh5le*, sh64le*): Set cpu_type to sh64 and endian to little.
(sh5*-*-netbsd*, sh64*-*-netbsd*): New targets.
* configure: Regenerate.
* config/tc-sh64.c (sh64_target_format): Add support for NetBSD
environment.
ld:
* Makefile.am (ALL_EMULATIONS): Add eshelf32_nbsd.o,
eshlelf32_nbsd.o, eshelf64_nbsd.o, and eshlelf64_nbsd.o.
(eshelf32_nbsd.c, eshelf64_nbsd.c, eshlelf32_nbsd.c)
(eshlelf64_nbsd.c): New rules.
* Makefile.in: Regenerate.
* configure.tgt (sh5le-*-netbsd*, sh5-*-netbsd*, sh64le-*-netbsd*)
(sh64-*-netbsd*): New targets.
* emulparams/shelf32_nbsd.sh: New file.
* emulparams/shelf64_nbsd.sh: New file.
* emulparams/shlelf32_nbsd.sh: New file.
* emulparams/shlelf64_nbsd.sh: New file.
opcodes:
* configure.in: Add "sh5*-*" to list of targets which include
sh64 support.
* configure: Regenerate.
2002-06-04 10:57:44 +08:00
|
|
|
eshlelf32_nbsd.c: $(srcdir)/emulparams/shlelf32_nbsd.sh \
|
|
|
|
$(srcdir)/emulparams/shelf32_nbsd.sh $(srcdir)/emulparams/shelf32.sh \
|
|
|
|
$(BFDDIR)/libbfd.h $(INCDIR)/libiberty.h \
|
|
|
|
$(srcdir)/emultempl/sh64elf.em $(INCDIR)/elf/sh.h $(BFDDIR)/elf-bfd.h \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} shlelf32_nbsd "$(tdir_shlelf32_nbsd)"
|
Contribute sh64-elf.
2002-01-24 Alexandre Oliva <aoliva@redhat.com>
* emulparams/shelf32.sh (STACK_ADDR): Define as formerly defined
in OTHER_RELOCATABLE_SECTIONS.
2002-01-18 Alexandre Oliva <aoliva@redhat.com>
* emulparams/shelf32.sh (STACK_ADDR): Define.
(OTHER_RELOCATABLE_SECTIONS): Renamed to...
(OTHER_SECTIONS): this. Removed stack settings.
* emulparams/shelf64.sh (OTHER_RELOCATABLE_SECTIONS): Do not set.
(OTHER_SECTIONS): Reset after sourcing shelf32.sh.
2001-03-12 DJ Delorie <dj@redhat.com>
* emultempl/sh64elf.em (sh64_elf_$_before_allocation): Disable
relaxing if any shmedia or mixed sections are found.
2001-03-07 DJ Delorie <dj@redhat.com>
* emultempl/sh64elf.em (sh64_elf_before_allocation): Pass f to
einfo. Gracefully decline to output to non-elf formats.
2001-03-06 Hans-Peter Nilsson <hpn@redhat.com>
* emulparams/shelf64.sh (OTHER_RELOCATING_SECTIONS) <.stack>:
Default to _end aligned to next multiple of 0x40000, plus 0x40000.
* emulparams/shelf32.sh: Ditto.
2001-01-14 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf32.sh (OTHER_RELOCATING_SECTIONS): Tweak
comment.
2001-01-10 Ben Elliston <bje@redhat.com>
* emulparams/shelf32.sh (OTHER_RELOCATING_SECTIONS): Avoid
non-portable shell constructs. From Hans-Peter Nilsson.
2001-01-09 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf64.sh (EXTRA_EM_FILE): Define empty.
* Makefile.am (eshelf64.c, eshlelf64.c, eshlelf32.c): Adjust
dependencies to the shell script include chain.
* Makefile.in: Regenerate.
2001-01-06 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em: Update and tweak comments.
(sh64_elf_${EMULATION_NAME}_after_allocation): Always allocate and
make a .cranges section SEC_IN_MEMORY.
2000-12-30 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em
(sh64_elf_${EMULATION_NAME}_before_allocation): Don't stop when
.cranges section found to be necessary; continue and set stored
section contents flags for sections with non-mixed contents.
Use a struct sh64_section_data container and sh64_elf_section_data
to store contents-type flags.
Remove unused update of "isec".
(sh64_elf_${EMULATION_NAME}_after_allocation): Only process
sections marked SHF_SH5_ISA32_MIXED. Use sh64_elf_section_data to
access contents-type flags. Assert that the associated container
is initialized. Use that container, not elf_gp_size, to hold size
of linker-generated cranges contents.
2000-12-18 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em
(sh64_elf_${EMULATION_NAME}_before_allocation): Exit early if
there's already a .cranges section. When section flag difference
is found, don't NULL-check cranges a second time. Tweak comments.
(sh64_elf_${EMULATION_NAME}_after_allocation): Use size after
merging, not max size, as size of ld-generated .cranges contents.
Don't set ELF section flags in output section. When checking for
needed .cranges descriptors, don't use a variable; compare
incoming ELF section flags directly to SHF_SH5_ISA32_MIXED. Tweak
comments.
2000-12-18 Hans-Peter Nilsson <hpn@cygnus.com>
* emultempl/sh64elf.em: New file.
* Makefile.am (eshelf32.c, eshlelf32.c): Adjust dependencies.
* Makefile.in: Regenerate.
* emulparams/shelf32.sh (OUTPUT_FORMAT): Only set if not set.
(OTHER_RELOCATING_SECTIONS): Ditto.
(EXTRA_EM_FILE): New, set to sh64elf if not set.
* emulparams/shlelf32.sh: Stub out all settings except
OUTPUT_FORMAT. Source shelf32.sh.
* emulparams/shelf64.sh: Similar, but also keep ELF_SIZE and
OTHER_RELOCATING_SECTIONS.
(OTHER_RELOCATING_SECTIONS): Remove .cranges.
* emulparams/shlelf64.sh: Stub out all settings except
OUTPUT_FORMAT. Source shelf64.sh.
2000-12-15 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf64.sh (OTHER_RELOCATING_SECTIONS): Include
.cranges section.
(DATA_START_SYMBOLS): Define, provide ___data.
(OTHER_READONLY_SYMBOLS): Define, provide ___rodata and align to 8
for consecutive .data section.
(OTHER_GOT_SECTIONS): Define, align to 8 for consecutive .bss
section after .data section.
* emulparams/shlelf64.sh: Ditto.
* emulparams/shelf32.sh: Ditto.
(ALIGNMENT): Define to 8.
* emulparams/shelf32.sh: Ditto.
2000-12-12 Hans-Peter Nilsson <hpn@cygnus.com>
* configure.tgt (sh64-*-elf*): Assign targ_extra_libpath to get
built-in linker scripts.
2000-11-30 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shlelf64.sh: New.
* emulparams/shelf64.sh: New.
* configure.tgt (sh64-*-elf*): Add shelf64 and shlelf64 to
targ_extra_emuls.
* Makefile.am: Add support for shlelf64 and shelf64.
* Makefile.in: Regenerate.
2000-11-29 Hans-Peter Nilsson <hpn@cygnus.com>
* configure.tgt (sh64-*-elf*): Add shelf as default.
Add shlelf to targ_extra_emuls.
2000-11-24 Hans-Peter Nilsson <hpn@cygnus.com>
* emulparams/shelf32.sh: New file.
* emulparams/shlelf32.sh: New file.
* Makefile.am: Add support for shlelf32 and shelf32.
* configure.tgt: Map sh64-*-elf* to shlelf32 and shelf32.
* Makefile.in: Regenerate.
2002-02-08 14:39:01 +08:00
|
|
|
eshlelf64.c: $(srcdir)/emulparams/shlelf64.sh \
|
|
|
|
$(srcdir)/emulparams/shelf64.sh $(srcdir)/emulparams/shelf32.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} shlelf64 "$(tdir_shlelf64)"
|
bfd:
* Makefile.am (BFD32_BACKENDS): Add elf32-sh64-nbsd.lo.
(BFD32_BACKENDS_CFILES): Add elf32-sh64-nbsd.c.
(BFD64_BACKENDS): Add elf64-sh64-nbsd.lo.
(BFD64_BACKENDS_CFILES): Add elf64-sh64-nbsd.c.
(elf32-sh64-nbsd.lo, elf64-sh64-nbsd.lo): New rules.
* Makefile.in: Regenerate.
* config.bfd (sh5le-*-netbsd*, sh5-*-netbsd*, sh64le-*-netbsd*)
(sh64-*-netbsd*): New targets.
* configure.in: Add bfd_elf32_sh64nbsd_vec, bfd_elf32_sh64lnbsd_vec,
bfd_elf64_sh64nbsd_vec, and bfd_elf64_sh64lnbsd_vec.
* configure: Regenerate.
* elf32-sh64-nbsd.c: New file.
* elf64-sh64-nbsd.c: New file.
* targets.c: Add extern decls for bfd_elf32_sh64nbsd_vec,
bfd_elf32_sh64lnbsd_vec, bfd_elf64_sh64nbsd_vec, and
bfd_elf64_sh64lnbsd_vec.
gas:
* configure.in (sh5*): Set cpu_type to sh64 and endian to big.
(sh5le*, sh64le*): Set cpu_type to sh64 and endian to little.
(sh5*-*-netbsd*, sh64*-*-netbsd*): New targets.
* configure: Regenerate.
* config/tc-sh64.c (sh64_target_format): Add support for NetBSD
environment.
ld:
* Makefile.am (ALL_EMULATIONS): Add eshelf32_nbsd.o,
eshlelf32_nbsd.o, eshelf64_nbsd.o, and eshlelf64_nbsd.o.
(eshelf32_nbsd.c, eshelf64_nbsd.c, eshlelf32_nbsd.c)
(eshlelf64_nbsd.c): New rules.
* Makefile.in: Regenerate.
* configure.tgt (sh5le-*-netbsd*, sh5-*-netbsd*, sh64le-*-netbsd*)
(sh64-*-netbsd*): New targets.
* emulparams/shelf32_nbsd.sh: New file.
* emulparams/shelf64_nbsd.sh: New file.
* emulparams/shlelf32_nbsd.sh: New file.
* emulparams/shlelf64_nbsd.sh: New file.
opcodes:
* configure.in: Add "sh5*-*" to list of targets which include
sh64 support.
* configure: Regenerate.
2002-06-04 10:57:44 +08:00
|
|
|
eshlelf64_nbsd.c: $(srcdir)/emulparams/shlelf64_nbsd.sh \
|
|
|
|
$(srcdir)/emulparams/shelf64_nbsd.sh \
|
|
|
|
$(srcdir)/emulparams/shelf32_nbsd.sh $(srcdir)/emulparams/shelf32.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} shlelf64_nbsd "$(tdir_shlelf64_nbsd)"
|
1999-05-03 15:29:11 +08:00
|
|
|
eshl.c: $(srcdir)/emulparams/shl.sh \
|
* Makefile.am (CONFIG_STATUS_DEPENDENCIES): Define.
(config.status): Delete rule.
Add extra dependencies to cover sourced emulparams files.
* Makefile.in: Regenerate.
* scripttempl/elf.sc: Order <section>, <section>.* and
corresponding linkonce sections as seen in input files.
Formatting fixes. Zero vma of all sections if not relocating.
(STACK): Define and insert if STACK_ADDR defined.
(OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
(OTHER_READONLY_SECTIONS): Always insert, not just when relocating.
(OTHER_READWRITE_SECTIONS): Likewise.
(OTHER_GOT_SECTIONS): Likewise.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_BSS_SECTIONS): Likewise.
* scripttempl/elfi370.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise.
* scripttempl/nw.sc (OTHER_READONLY_SECTIONS): Likewise.
(OTHER_READWRITE_SECTIONS): Likewise
* emulparams/armelf.sh (OTHER_RELOCATING_SECTIONS): Delete.
(STACK_ADDR): Define.
* emulparams/armelf_oabi.sh: As for armelf.sh.
* emulparams/elf32mcore.sh: As for armelf.sh.
* emulparams/h8300elf.sh: As for armelf.sh.
* emulparams/mn10200.sh: As for armelf.sh.
* emulparams/shelf.sh: As for armelf.sh.
* emulparams/elf32fr30.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_END_SYMBOLS): Define.
* emulparams/m32relf.sh: As for elf32fr30.sh.
* emulparams/h8300helf.sh: As for elf32fr30.sh.
* emulparams/h8300self.sh: As for elf32fr30.sh.
* emulparams/criself.sh (OTHER_READONLY_SECTIONS): Protect symbol
defines with RELOCATING test.
(OTHER_SDATA_SECTIONS): Likewise.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_END_SYMBOLS): ..this.
* emulparams/crislinux.sh: As for criself.sh.
* emulparams/elf32bmipn32.sh (OTHER_SDATA_SECTIONS): Zero vma
if not relocating.
(OTHER_RELOCATING_SECTIONS): Delete, replacing with..
(OTHER_SECTIONS): ..this. Zero vma if not relocating. Order
normal and linkonce sections as seen in input files.
* emulparams/elf32bmip.sh (DATA_ADDR): Don't define if EMBEDDED.
(TEXT_DYNAMIC): Likewise.
(INITIAL_READONLY_SECTIONS): Zero vma if not relocating.
(OTHER_SDATA_SECTIONS): Likewise.
* emulparams/elf32ppc.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/shlelf_linux.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/elf64alpha.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/hppalinux.sh (OTHER_READONLY_SECTIONS): Likewise.
* emulparams/elf64_aix.sh (OTHER_GOT_SECTIONS): Likewise.
(OTHER_PLT_RELOC_SECTIONS): Likewise.
(OTHER_READONLY_SECTIONS): Likewise. Order normal and linkonce
sections as seen in input files.
* emulparams/elf64_ia64.sh: As for emulparams/elf64_aix.sh.
* emulparams/hppa64linux.sh (OTHER_READONLY_SECTIONS): Zero vma
if not relocating.
(OTHER_READWRITE_SECTIONS, OTHER_BSS_SECTIONS): Likewise.
(OTHER_BSS_END_SYMBOLS): Merge from elf64hppa.sh.
* emulparams/elf64mmix.sh (OTHER_RELOCATING_SECTIONS): Delete.
(OTHER_SECTIONS): Instead, use this..
(OTHER_END_SYMBOLS): ..and this.
* emulparams/elf32b4300.sh: Source elf32bmip.sh, remove duplicates.
* emulparams/elf32bsmip.sh: Likewise.
* emulparams/elf32btsmip.sh: Likewise.
* emulparams/elf32ebmip.sh: Likewise.
* emulparams/elf32lmip.sh: Likewise.
* emulparams/elf32elmip.sh: Source elf32lmip.sh, remove duplicates.
* emulparams/elf32lsmip.sh: Likewise.
* emulparams/elf32ltsmip.sh: Source elf32btsmip.sh, remove duplicates.
* emulparams/elf32l4300.sh: Source elf32b4300.sh, remove duplicates.
* emulparams/elf64bmip.sh: Source elf32bmipn32.sh, remove duplicates.
* emulparams/elf64btsmip.sh: Likewise.
* emulparams/elf64ltsmip.sh: Source elf64btsmip.sh, remove duplicates.
* emulparams/elf32lppc.sh: Source elf32ppc.sh, remove duplicates.
* emulparams/elf32ppclinux.sh: Likewise.
* emulparams/elf32ppcsim.sh: Likewise.
* emulparams/elf32lppcsim.sh: Source elf32lppc.sh, remove duplicates.
* emulparams/elf64hppa.sh: Source hppa64linux.sh, remove duplicates.
* emulparams/h8300helf.sh: Source h8300elf.sh, remove duplicates.
* emulparams/h8300self.sh: Likewise.
* emulparams/mn10300.sh: Source mn10200.sh, remove duplicates.
* emulparams/sh.sh: Comment.
* emulparams/shl.sh: Source sh.sh, remove duplicates.
* emulparams/shlelf.sh: Source shelf.sh, remove duplicates.
* emulparams/shelf_linux.sh: Source shlelf_linux.sh, remove duplicates.
2001-11-22 17:08:05 +08:00
|
|
|
$(srcdir)/emulparams/sh.sh \
|
1999-05-03 15:29:11 +08:00
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sh.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} shl "$(tdir_shl)"
|
2000-02-25 01:53:12 +08:00
|
|
|
eshpe.c: $(srcdir)/emulparams/shpe.sh \
|
|
|
|
$(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} shpe "$(tdir_shl)"
|
1999-05-03 15:29:11 +08:00
|
|
|
esparcaout.c: $(srcdir)/emulparams/sparcaout.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} sparcaout "$(tdir_sparcaout)"
|
|
|
|
esparclinux.c: $(srcdir)/emulparams/sparclinux.sh \
|
|
|
|
$(srcdir)/emultempl/linux.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} sparclinux "$(tdir_sparclinux)"
|
|
|
|
esparcnbsd.c: $(srcdir)/emulparams/sparcnbsd.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} sparcnbsd "$(tdir_sparcnbsd)"
|
|
|
|
est2000.c: $(srcdir)/emulparams/st2000.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/st2000.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} st2000 "$(tdir_st2000)"
|
|
|
|
esun3.c: $(srcdir)/emulparams/sun3.sh \
|
|
|
|
$(srcdir)/emultempl/sunos.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} sun3 "$(tdir_sun3)"
|
|
|
|
esun4.c: $(srcdir)/emulparams/sun4.sh \
|
|
|
|
$(srcdir)/emultempl/sunos.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} sun4 "$(tdir_sun4)"
|
|
|
|
etic30aout.c: $(srcdir)/emulparams/tic30aout.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/tic30aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} tic30aout "$(tdir_tic30aout)"
|
|
|
|
etic30coff.c: $(srcdir)/emulparams/tic30coff.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/tic30coff.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} tic30coff "$(tdir_tic30coff)"
|
2003-01-21 06:34:39 +08:00
|
|
|
etic3xcoff.c: $(srcdir)/emulparams/tic3xcoff.sh \
|
|
|
|
$(srcdir)/emultempl/ticoff.em $(srcdir)/scripttempl/tic4xcoff.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} tic3xcoff "$(tdir_tic4xcoff)"
|
|
|
|
etic3xcoff_onchip.c: $(srcdir)/emulparams/tic3xcoff_onchip.sh \
|
|
|
|
$(srcdir)/emultempl/ticoff.em $(srcdir)/scripttempl/tic4xcoff.sc ${GEN_DEPENDS}
|
2003-01-22 01:09:47 +08:00
|
|
|
${GENSCRIPTS} tic3xcoff_onchip "$(tdir_tic4xcoff)"
|
2002-08-28 18:38:51 +08:00
|
|
|
etic4xcoff.c: $(srcdir)/emulparams/tic4xcoff.sh \
|
|
|
|
$(srcdir)/emultempl/ticoff.em $(srcdir)/scripttempl/tic4xcoff.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} tic4xcoff "$(tdir_tic4xcoff)"
|
2000-06-20 21:29:07 +08:00
|
|
|
etic54xcoff.c: $(srcdir)/emulparams/tic54xcoff.sh \
|
|
|
|
$(srcdir)/emultempl/ticoff.em $(srcdir)/scripttempl/tic54xcoff.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} tic54xcoff "$(tdir_tic54xcoff)"
|
1999-05-03 15:29:11 +08:00
|
|
|
etic80coff.c: $(srcdir)/emulparams/tic80coff.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/tic80coff.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} tic80coff "$(tdir_tic80coff)"
|
|
|
|
evanilla.c: $(srcdir)/emulparams/vanilla.sh \
|
|
|
|
$(srcdir)/emultempl/vanilla.em $(srcdir)/scripttempl/vanilla.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} vanilla "$(tdir_vanilla)"
|
|
|
|
evax.c: $(srcdir)/emulparams/vax.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} vax "$(tdir_vax)"
|
2002-05-30 10:40:03 +08:00
|
|
|
evaxnbsd.c: $(srcdir)/emulparams/vaxnbsd.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} vaxnbsd "$(tdir_vaxnbsd)"
|
1999-05-03 15:29:11 +08:00
|
|
|
evsta.c: $(srcdir)/emulparams/vsta.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} vsta "$(tdir_vsta)"
|
|
|
|
ev850.c: $(srcdir)/emulparams/v850.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/v850.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} v850 "$(tdir_v850)"
|
|
|
|
ew65.c: $(srcdir)/emulparams/w65.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/w65.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} w65 "$(tdir_w65)"
|
|
|
|
ez8001.c: $(srcdir)/emulparams/z8001.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/z8000.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} z8001 "$(tdir_z8001)"
|
|
|
|
ez8002.c: $(srcdir)/emulparams/z8002.sh \
|
|
|
|
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/z8000.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} z8002 "$(tdir_z8002)"
|
2004-01-07 03:19:52 +08:00
|
|
|
eelf32frvfd.c: $(srcdir)/emulparams/elf32frvfd.sh \
|
|
|
|
$(srcdir)/emulparams/elf32frv.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32frvfd "$(tdir_frv)"
|
ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
* configure.in: Add cases for Renesas m32c.
* configure: Regenerated.
bfd/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
Add support for m32c-*-elf (Renesas m32c and m16c).
* Makefile.am (ALL_MACHINES): Add cpu-m32c.lo.
(ALL_MACHINES_CFILES): Add cpu-m32c.c.
(BFD32_BACKENDS): Add elf32-m32c.lo.
(BFD32_BACKENDS_CFILES): Add elf32-m32c.c.
(cpu-m32c.lo, elf32-m32c.lo): New rules, generated by 'make dep-am'.
* Makefile.in: Regenerated.
* archures.c (bfd_arch_m32c, bfd_mach_m16c, bfd_mach_m32c): New
arch and mach codes.
(bfd_m32c_arch): New arch info object.
(bfd_archures_list): List bfd_m32c_arch.
* bfd-in2.h: Regenerated.
* config.bfd: Add case for the m32c.
* configure.in: Add case for the m32c.
* configure: Regenerated.
* cpu-m32c.c, elf32-m32c.c: New files.
* libbfd.h: Regenerated.
* targets.c (bfd_elf32_m32c_vec): Declare.
(_bfd_target_vector): List bfd_elf32_m32c_vec.
binutils/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
* readelf.c: #include "elf/m32c.h"
(guess_is_rela, dump_relocations, get_machine_name): Add cases for
EM_M32C.
* Makefile.am (readelf.o): Update dependencies.
* Makefile.in: Regenerated.
cpu/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
* m32c.cpu, m32c.opc: Machine description for the Renesas M32C.
gas/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
Add support for the Renesas M32C.
* Makefile.am (CPU_TYPES): List m32c.
(TARGET_CPU_CFILES): List config/tc-m32c.c.
(TARGET_CPU_HFILES): List config/tc-m32c.h.
* configure.in: Add case for m32c.
* configure.tgt: Add cases for m32c and m32c-*-elf.
* configure: Regenerated.
* config/tc-m32c.c, config/tc-m32c.h: New files.
* doc/Makefile.am (CPU_DOCS): Add c-m32c.texi.
* doc/Makefile.in: Regenerated.
* doc/all.texi: Set M32C.
* doc/as.texinfo: Add text for the M32C-specific options and line
comment characters, and refer to c-m32c.texi.
* doc/c-m32c.texi: New file.
include/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
* dis-asm.h (print_insn_m32c): New declaration.
include/elf/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
Add support for Renesas M32C and M16C.
* common.h (EM_M32C): New machine number.
* m32c.h: New file.
ld/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
Add support for the Renesas M32C and M16C.
* Makefile.am (ALL_EMULATIONS): Add eelf32m32c.o.
(eelf32m32c.c): New target.
* Makefile.in: Regenerated.
* configure.tgt: Add case for m32c-*-elf.
* emulparams/elf32m32c.sh: New file.
opcodes/ChangeLog:
2005-07-14 Jim Blandy <jimb@redhat.com>
Add support for the Renesas M32C and M16C.
* m32c-asm.c, m32c-desc.c, m32c-dis.c, m32c-ibld.c, m32c-opc.c: New.
* m32c-desc.h, m32c-opc.h: New.
* Makefile.am (HFILES): List m32c-desc.h and m32c-opc.h.
(CFILES): List m32c-asm.c, m32c-desc.c, m32c-dis.c, m32c-ibld.c,
m32c-opc.c.
(ALL_MACHINES): List m32c-asm.lo, m32c-desc.lo, m32c-dis.lo,
m32c-ibld.lo, m32c-opc.lo.
(CLEANFILES): List stamp-m32c.
(M32C_DEPS): List stamp-m32c, if CGEN_MAINT.
(CGEN_CPUS): Add m32c.
(m32c-asm.c, m32c-desc.c, m32c-dis.c, m32c-ibld.c, m32c-opc.c)
(m32c-desc.h, m32c-opc.h): Depend on M32C_DEPS.
(m32c_opc_h): New variable.
(stamp-m32c, m32c-asm.lo, m32c-desc.lo, m32c-dis.lo, m32c-ibld.lo)
(m32c-opc.lo): New rules.
* Makefile.in: Regenerated.
* configure.in: Add case for bfd_m32c_arch.
* configure: Regenerated.
* disassemble.c (ARCH_m32c): New.
[ARCH_m32c]: #include "m32c-desc.h".
(disassembler) [ARCH_m32c]: Add case for bfd_arch_m32c.
(disassemble_init_for_target) [ARCH_m32c]: Same.
* cgen-ops.h, cgen-types.h: New files.
* Makefile.am (HFILES): List them.
* Makefile.in: Regenerated.
2005-07-15 06:52:28 +08:00
|
|
|
eelf32m32c.c: $(srcdir)/emulparams/elf32m32c.sh \
|
|
|
|
$(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
|
|
|
${GENSCRIPTS} elf32m32c "$(tdir_m32c)"
|
2005-06-08 05:12:16 +08:00
|
|
|
eelf32ms1.c: $(srcdir)/emulparams/elf32ms1.sh \
|
|
|
|
$(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
|
2005-06-08 07:56:50 +08:00
|
|
|
${GENSCRIPTS} elf32ms1 "$(tdir_ms1)"
|
1999-05-03 15:29:11 +08:00
|
|
|
|
2000-07-02 03:26:41 +08:00
|
|
|
# We need this for automake to use YLWRAP.
|
|
|
|
EXTRA_ld_new_SOURCES = deffilep.y
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
ld_new_SOURCES = ldgram.y ldlex.l lexsup.c ldlang.c mri.c ldctor.c ldmain.c \
|
|
|
|
ldwrite.c ldexp.c ldemul.c ldver.c ldmisc.c ldfile.c ldcref.c
|
|
|
|
ld_new_DEPENDENCIES = $(EMULATION_OFILES) $(EMUL_EXTRA_OFILES) $(BFDLIB) $(LIBIBERTY) $(INTLDEPS)
|
|
|
|
ld_new_LDADD = $(EMULATION_OFILES) $(EMUL_EXTRA_OFILES) $(BFDLIB) $(LIBIBERTY) $(INTLLIBS)
|
|
|
|
|
|
|
|
# The generated emulation files mostly have the same dependencies.
|
|
|
|
$(EMULATION_OFILES): ../bfd/bfd.h sysdep.h config.h $(INCDIR)/bfdlink.h \
|
|
|
|
ld.h ldmain.h ldemul.h ldfile.h ldmisc.h ldexp.h ldlang.h \
|
|
|
|
ldctor.h ldexp.h ldlang.h ldgram.h
|
|
|
|
|
|
|
|
# This is the real libbfd.a created by libtool.
|
|
|
|
TESTBFDLIB = @TESTBFDLIB@
|
|
|
|
|
|
|
|
check-DEJAGNU: site.exp
|
|
|
|
srcroot=`cd $(srcdir) && pwd`; export srcroot; \
|
|
|
|
r=`pwd`; export r; \
|
2000-03-10 00:41:21 +08:00
|
|
|
LC_COLLATE=; LC_ALL=; LANG=; export LC_COLLATE LC_ALL LANG; \
|
1999-05-03 15:29:11 +08:00
|
|
|
EXPECT=$(EXPECT); export EXPECT; \
|
|
|
|
runtest=$(RUNTEST); \
|
|
|
|
if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
|
|
|
|
$$runtest --tool $(DEJATOOL) --srcdir $${srcroot}/testsuite \
|
|
|
|
CC="$(CC_FOR_TARGET)" CFLAGS="$(CFLAGS)" \
|
|
|
|
CXX="$(CXX_FOR_TARGET)" CXXFLAGS="$(CXXFLAGS)" \
|
|
|
|
CC_FOR_HOST="$(CC)" CFLAGS_FOR_HOST="$(CFLAGS)" \
|
|
|
|
OFILES="$(OFILES)" BFDLIB="$(TESTBFDLIB)" \
|
2000-03-01 03:52:31 +08:00
|
|
|
LIBIBERTY="$(LIBIBERTY) $(INTLLIBS)" LIBS="$(LIBS)" \
|
1999-05-03 15:29:11 +08:00
|
|
|
$(RUNTESTFLAGS); \
|
|
|
|
else echo "WARNING: could not find \`runtest'" 1>&2; :;\
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Rules for testing by relinking ld itself.
|
|
|
|
# A similar test is in the testsuite. This target is for ease of use
|
|
|
|
# when porting ld.
|
|
|
|
|
|
|
|
ld-partial.o: ld-new$(EXEEXT)
|
|
|
|
./ld-new$(EXEEXT) $(HOSTING_EMU) -o ld-partial.o -r $(OFILES)
|
|
|
|
ld1$(EXEEXT): ld-partial.o
|
2000-03-01 03:52:31 +08:00
|
|
|
./ld-new$(EXEEXT) $(HOSTING_EMU) -o ld1$(EXEEXT) $(HOSTING_CRT0) ld-partial.o $(TESTBFDLIB) $(LIBIBERTY) $(HOSTING_LIBS) $(LIBS)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
ld1-full$(EXEEXT): ld-new
|
2000-03-01 03:52:31 +08:00
|
|
|
./ld-new$(EXEEXT) $(HOSTING_EMU) -o ld1-full$(EXEEXT) $(HOSTING_CRT0) $(OFILES) $(TESTBFDLIB) $(LIBIBERTY) $(HOSTING_LIBS) $(LIBS)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
ld2$(EXEEXT): ld1$(EXEEXT)
|
2000-03-01 03:52:31 +08:00
|
|
|
./ld1$(EXEEXT) $(HOSTING_EMU) -o ld2$(EXEEXT) $(HOSTING_CRT0) $(OFILES) $(TESTBFDLIB) $(LIBIBERTY) $(HOSTING_LIBS) $(LIBS)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
ld3$(EXEEXT): ld2$(EXEEXT)
|
2000-03-01 03:52:31 +08:00
|
|
|
./ld2$(EXEEXT) $(HOSTING_EMU) -o ld3$(EXEEXT) $(HOSTING_CRT0) $(OFILES) $(TESTBFDLIB) $(LIBIBERTY) $(HOSTING_LIBS) $(LIBS)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
bootstrap: ld3$(EXEEXT)
|
|
|
|
cmp ld2$(EXEEXT) ld3$(EXEEXT)
|
|
|
|
|
|
|
|
.PHONY: bootstrap
|
|
|
|
|
|
|
|
# A test program for C++ constructors and destructors.
|
|
|
|
# This test is now in the testsuite.
|
|
|
|
#
|
|
|
|
#cdtest: cdtest-main.o cdtest-bar.o cdtest-foo.o ld.new
|
|
|
|
# ./ld.new $(HOSTING_EMU) -o cdtest $(HOSTING_CRT0) \
|
|
|
|
# cdtest-main.o cdtest-bar.o cdtest-foo.o $(HOSTING_LIBS)
|
|
|
|
#
|
|
|
|
#cdtest.out: cdtest
|
|
|
|
# ./cdtest > cdtest.tmp
|
|
|
|
# mv cdtest.tmp cdtest.out
|
|
|
|
#
|
|
|
|
#cdtest-ur.o: cdtest-main.o cdtest-bar.o cdtest-foo.o ld.new
|
|
|
|
# ./ld.new $(HOSTING_EMU) -o cdtest-ur.o -Ur cdtest-main.o \
|
|
|
|
# cdtest-bar.o cdtest-foo.o
|
|
|
|
#
|
|
|
|
#cdtest-ur: cdtest-ur.o
|
|
|
|
# ./ld.new $(HOSTING_EMU) -o cdtest-ur $(HOSTING_CRT0) cdtest-ur.o \
|
|
|
|
# $(HOSTING_LIBS)
|
|
|
|
#
|
|
|
|
#cdtest-ur.out: cdtest-ur
|
|
|
|
# ./cdtest-ur > cdtest-ur.tmp
|
|
|
|
# mv cdtest-ur.tmp cdtest-ur.out
|
|
|
|
#
|
|
|
|
#check-cdtest: cdtest.out cdtest-ur.out $(srcdir)/cdtest.exp
|
|
|
|
# diff $(srcdir)/cdtest.exp cdtest.out
|
|
|
|
# diff $(srcdir)/cdtest.exp cdtest-ur.out
|
|
|
|
#
|
|
|
|
#.PHONY: check-cdtest
|
|
|
|
|
|
|
|
# END OF CHECK TARGETS
|
|
|
|
|
|
|
|
# DOCUMENTATION TARGETS
|
|
|
|
# Manual configuration file; not usually attached to normal configuration,
|
|
|
|
# because almost all configs use "gen" version of manual.
|
|
|
|
# Set DOCVER above to change.
|
|
|
|
configdoc.texi: ${DOCVER}-doc.texi
|
|
|
|
ln -s ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi >/dev/null 2>&1 \
|
|
|
|
|| ln ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi >/dev/null 2>&1 \
|
|
|
|
|| cp ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi
|
|
|
|
|
2005-05-16 02:19:45 +08:00
|
|
|
ldver.texi: $(srcdir)/../bfd/configure
|
1999-05-03 15:29:11 +08:00
|
|
|
rm -f $@
|
2005-05-18 03:43:52 +08:00
|
|
|
eval `grep '^ *VERSION=' $(srcdir)/../bfd/configure`; \
|
|
|
|
echo "@set VERSION $$VERSION" > $@
|
1999-05-03 15:29:11 +08:00
|
|
|
|
2005-05-16 02:19:45 +08:00
|
|
|
$(srcdir)/ld.info: $(srcdir)/ld.texinfo configdoc.texi ldver.texi
|
1999-05-03 15:29:11 +08:00
|
|
|
ld.dvi: $(srcdir)/ld.texinfo configdoc.texi ldver.texi
|
|
|
|
|
2001-03-26 04:32:31 +08:00
|
|
|
# Build the man page from the texinfo file
|
|
|
|
# The sed command removes the no-adjust Nroff command so that
|
|
|
|
# the man output looks standard.
|
2005-05-22 07:43:59 +08:00
|
|
|
ld.1: $(srcdir)/ld.texinfo configdoc.texi ldver.texi
|
2001-06-19 19:57:29 +08:00
|
|
|
touch $@
|
2001-03-26 04:32:31 +08:00
|
|
|
-$(TEXI2POD) $(MANCONF) < $(srcdir)/ld.texinfo > ld.pod
|
|
|
|
-($(POD2MAN) ld.pod | \
|
2001-06-19 19:57:29 +08:00
|
|
|
sed -e '/^.if n .na/d' > $@.T$$$$ && \
|
|
|
|
mv -f $@.T$$$$ $@) || \
|
|
|
|
(rm -f $@.T$$$$ && exit 1)
|
|
|
|
rm -f ld.pod
|
2001-03-26 04:32:31 +08:00
|
|
|
|
2005-05-16 02:19:45 +08:00
|
|
|
MAINTAINERCLEANFILES = ldver.texi configdoc.texi
|
1999-05-03 15:29:11 +08:00
|
|
|
|
2005-05-16 02:19:45 +08:00
|
|
|
# We want to reconfigure if configure.host or configure.tgt changes. We
|
|
|
|
# extract version from bfd/configure.in, so we must depend on that also.
|
|
|
|
CONFIG_STATUS_DEPENDENCIES = $(srcdir)/configure.host $(srcdir)/configure.tgt \
|
|
|
|
$(srcdir)/../bfd/configure.in
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
MOSTLYCLEANFILES = $(STAGESTUFF) ld1$(EXEEXT) ld2$(EXEEXT) ld3$(EXEEXT) \
|
|
|
|
ldemul-list.h crtbegin.o crtend.o ld.log ld.sum
|
|
|
|
mostlyclean-local:
|
|
|
|
-rm -rf tmpdir
|
2000-07-01 09:41:09 +08:00
|
|
|
CLEANFILES = dep.sed DEP DEPA DEP1 DEP2
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
.PHONY: install-exec-local install-data-local
|
|
|
|
|
|
|
|
install-exec-local: ld-new$(EXEEXT)
|
2002-05-08 01:22:20 +08:00
|
|
|
$(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(tooldir)/bin
|
1999-05-03 15:29:11 +08:00
|
|
|
@list='$(noinst_PROGRAMS)'; for p in $$list; do \
|
|
|
|
if test -f $$p; then \
|
|
|
|
echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
|
2002-05-08 01:22:20 +08:00
|
|
|
$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
|
1999-05-03 15:29:11 +08:00
|
|
|
else :; fi; \
|
|
|
|
done
|
|
|
|
n=`echo ld | sed '$(transform)'`; \
|
|
|
|
if [ "$(bindir)/$$n$(EXEEXT)" != "$(tooldir)/bin/ld$(EXEEXT)" ]; then \
|
2002-05-08 01:22:20 +08:00
|
|
|
rm -f $(DESTDIR)$(tooldir)/bin/ld$(EXEEXT); \
|
|
|
|
ln $(DESTDIR)$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(tooldir)/bin/ld$(EXEEXT) >/dev/null 2>/dev/null \
|
|
|
|
|| $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) ld-new$(EXEEXT) $(DESTDIR)$(tooldir)/bin/ld$(EXEEXT); \
|
1999-05-03 15:29:11 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
install-data-local:
|
2002-05-08 01:22:20 +08:00
|
|
|
$(mkinstalldirs) $(DESTDIR)$(scriptdir)/ldscripts
|
1999-05-03 15:29:11 +08:00
|
|
|
for f in ldscripts/*; do \
|
2002-05-08 01:22:20 +08:00
|
|
|
$(INSTALL_DATA) $$f $(DESTDIR)$(scriptdir)/$$f ; \
|
1999-05-03 15:29:11 +08:00
|
|
|
done
|
|
|
|
|
2002-01-27 05:33:06 +08:00
|
|
|
# We want install to imply install-info as per GNU standards, despite the
|
|
|
|
# cygnus option.
|
2005-05-16 02:19:45 +08:00
|
|
|
install-data-local: install-info
|
2002-01-27 05:33:06 +08:00
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
# Stuff that should be included in a distribution. The diststuff
|
|
|
|
# target is run by the taz target in ../Makefile.in.
|
2001-06-19 19:57:29 +08:00
|
|
|
EXTRA_DIST = ldgram.c ldgram.h ldlex.c $(man_MANS)
|
|
|
|
diststuff: info $(EXTRA_DIST)
|
2005-05-20 07:49:52 +08:00
|
|
|
all: info ld.1
|
1999-05-03 15:29:11 +08:00
|
|
|
|
2005-05-22 07:43:59 +08:00
|
|
|
# Both info (ld.info) and ld.1 depend on configdoc.texi and ldver.texi.
|
|
|
|
# But info isn't a direct target. Make info-recursive to depend on
|
|
|
|
# ld.1 to support parallel build.
|
|
|
|
info-recursive: ld.1
|
|
|
|
|
2000-11-05 14:27:15 +08:00
|
|
|
DISTCLEANFILES = tdirs site.exp site.bak stringify.sed
|
1999-05-03 15:29:11 +08:00
|
|
|
distclean-local:
|
|
|
|
rm -rf ldscripts
|
|
|
|
|
|
|
|
# Targets to rebuild dependencies in this Makefile.
|
1999-08-09 01:37:50 +08:00
|
|
|
# Have to get rid of DEP1 here so that "$?" later includes all of $(CFILES).
|
|
|
|
DEP: dep.sed $(CFILES) $(HFILES) $(GENERATED_CFILES) $(GENERATED_HFILES) config.h
|
|
|
|
rm -f DEP1
|
2000-04-04 18:53:56 +08:00
|
|
|
$(MAKE) MKDEP="$(MKDEP)" DEP1
|
2000-07-01 09:41:09 +08:00
|
|
|
sed -f dep.sed < DEP1 > DEPA
|
|
|
|
echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEPA
|
|
|
|
if grep ' /' DEPA > /dev/null 2> /dev/null; then \
|
2000-06-22 21:01:43 +08:00
|
|
|
echo 'make DEP failed!'; exit 1; \
|
|
|
|
else \
|
2000-07-01 09:41:09 +08:00
|
|
|
mv -f DEPA $@; \
|
2000-06-22 21:01:43 +08:00
|
|
|
fi
|
1999-05-03 15:29:11 +08:00
|
|
|
|
1999-08-09 01:37:50 +08:00
|
|
|
DEP1: $(CFILES) $(GENERATED_CFILES)
|
|
|
|
echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2
|
2000-04-04 18:53:56 +08:00
|
|
|
echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2
|
|
|
|
$(MKDEP) $(INCLUDES) $(CFLAGS) $? >> DEP2
|
|
|
|
mv -f DEP2 $@
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
dep.sed: dep-in.sed config.status
|
|
|
|
sed <$(srcdir)/dep-in.sed >dep.sed \
|
|
|
|
-e 's!@INCDIR@!$(INCDIR)!' \
|
2002-04-04 22:07:57 +08:00
|
|
|
-e 's!@BFDDIR@!$(BFDDIR)!' \
|
|
|
|
-e 's!@SRCDIR@!$(srcdir)!' \
|
|
|
|
-e 's!@TOPDIR@!'`echo $(srcdir) | sed -e s,/ld$$,,`'!'
|
1999-05-03 15:29:11 +08:00
|
|
|
|
1999-08-09 01:37:50 +08:00
|
|
|
dep: DEP
|
1999-05-03 15:29:11 +08:00
|
|
|
sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
|
1999-08-09 01:37:50 +08:00
|
|
|
cat DEP >> tmp-Makefile
|
1999-05-03 15:29:11 +08:00
|
|
|
$(srcdir)/../move-if-change tmp-Makefile Makefile
|
|
|
|
|
1999-08-09 01:37:50 +08:00
|
|
|
dep-in: DEP
|
1999-05-03 15:29:11 +08:00
|
|
|
sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
|
1999-08-09 01:37:50 +08:00
|
|
|
cat DEP >> tmp-Makefile.in
|
1999-05-03 15:29:11 +08:00
|
|
|
$(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
|
|
|
|
|
1999-08-09 01:37:50 +08:00
|
|
|
dep-am: DEP
|
1999-05-03 15:29:11 +08:00
|
|
|
sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
|
1999-08-09 01:37:50 +08:00
|
|
|
cat DEP >> tmp-Makefile.am
|
1999-05-03 15:29:11 +08:00
|
|
|
$(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
|
|
|
|
|
|
|
|
.PHONY: dep dep-in dep-am
|
|
|
|
|
|
|
|
# What appears below is generated by a hacked mkdep using gcc -MM.
|
|
|
|
|
|
|
|
# DO NOT DELETE THIS LINE -- mkdep uses it.
|
|
|
|
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
|
2000-06-22 11:35:54 +08:00
|
|
|
ldctor.o: ldctor.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
|
2001-10-02 14:04:23 +08:00
|
|
|
$(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/fopen-same.h \
|
|
|
|
$(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h ld.h $(INCDIR)/bin-bugs.h \
|
|
|
|
ldexp.h ldlang.h ldmisc.h ldgram.h ldmain.h ldctor.h
|
2005-04-12 10:50:28 +08:00
|
|
|
ldemul.o: ldemul.c config.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
|
|
|
|
$(INCDIR)/symcat.h sysdep.h $(INCDIR)/fopen-same.h \
|
2005-07-16 10:03:55 +08:00
|
|
|
$(INCDIR)/bfdlink.h ld.h $(INCDIR)/bin-bugs.h ldmisc.h \
|
|
|
|
ldexp.h ldlang.h ldfile.h ldemul.h ldmain.h ldemul-list.h
|
2000-06-22 11:35:54 +08:00
|
|
|
ldexp.o: ldexp.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
|
2001-10-02 14:04:23 +08:00
|
|
|
$(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/fopen-same.h \
|
|
|
|
$(INCDIR)/bfdlink.h ld.h $(INCDIR)/bin-bugs.h ldmain.h \
|
2002-03-21 17:42:38 +08:00
|
|
|
ldmisc.h ldexp.h ldgram.h ldlang.h $(INCDIR)/libiberty.h \
|
|
|
|
$(INCDIR)/safe-ctype.h
|
2000-06-22 11:35:54 +08:00
|
|
|
ldfile.o: ldfile.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
|
2001-10-02 14:04:23 +08:00
|
|
|
$(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/fopen-same.h \
|
|
|
|
$(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h ld.h $(INCDIR)/bin-bugs.h \
|
|
|
|
ldmisc.h ldexp.h ldlang.h ldfile.h ldmain.h ldgram.h \
|
2003-03-25 18:29:28 +08:00
|
|
|
ldlex.h ldemul.h $(INCDIR)/libiberty.h $(INCDIR)/filenames.h
|
2000-06-22 11:35:54 +08:00
|
|
|
ldlang.o: ldlang.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
|
2001-10-02 14:04:23 +08:00
|
|
|
$(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/fopen-same.h \
|
|
|
|
$(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h \
|
|
|
|
$(INCDIR)/bfdlink.h ld.h $(INCDIR)/bin-bugs.h ldmain.h \
|
2002-03-21 17:42:38 +08:00
|
|
|
ldexp.h ldlang.h ldgram.h ldlex.h ldmisc.h ldctor.h \
|
2003-12-02 16:14:35 +08:00
|
|
|
ldfile.h ldemul.h $(INCDIR)/fnmatch.h $(INCDIR)/demangle.h \
|
|
|
|
$(INCDIR)/hashtab.h
|
2000-06-22 11:35:54 +08:00
|
|
|
ldmain.o: ldmain.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
|
2001-10-02 14:04:23 +08:00
|
|
|
$(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/fopen-same.h \
|
|
|
|
$(INCDIR)/safe-ctype.h $(INCDIR)/libiberty.h $(INCDIR)/progress.h \
|
|
|
|
$(INCDIR)/bfdlink.h $(INCDIR)/filenames.h ld.h $(INCDIR)/bin-bugs.h \
|
2002-03-21 17:42:38 +08:00
|
|
|
ldmain.h ldmisc.h ldwrite.h ldexp.h ldlang.h ldgram.h \
|
2001-10-02 14:04:23 +08:00
|
|
|
ldlex.h ldfile.h ldemul.h ldctor.h
|
2000-06-22 11:35:54 +08:00
|
|
|
ldmisc.o: ldmisc.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
|
2003-06-04 02:15:05 +08:00
|
|
|
$(INCDIR)/symcat.h $(INCDIR)/bfdlink.h sysdep.h config.h \
|
|
|
|
$(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h $(INCDIR)/demangle.h \
|
|
|
|
ld.h $(INCDIR)/bin-bugs.h ldmisc.h ldexp.h ldlang.h \
|
2004-09-17 14:15:39 +08:00
|
|
|
ldgram.h ldlex.h ldmain.h ldfile.h $(BFDDIR)/elf-bfd.h \
|
|
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h
|
2000-06-22 11:35:54 +08:00
|
|
|
ldver.o: ldver.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
|
2002-10-14 20:09:18 +08:00
|
|
|
$(INCDIR)/symcat.h ../bfd/bfdver.h sysdep.h config.h \
|
|
|
|
$(INCDIR)/fopen-same.h ld.h $(INCDIR)/bin-bugs.h ldver.h \
|
|
|
|
ldexp.h ldlang.h ldfile.h ldemul.h ldmain.h
|
2000-06-22 11:35:54 +08:00
|
|
|
ldwrite.o: ldwrite.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
|
2001-10-02 14:04:23 +08:00
|
|
|
$(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/fopen-same.h \
|
2003-12-02 16:14:35 +08:00
|
|
|
$(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h \
|
|
|
|
ld.h $(INCDIR)/bin-bugs.h ldexp.h ldlang.h ldwrite.h \
|
|
|
|
ldmisc.h ldgram.h ldmain.h
|
2005-04-12 10:50:28 +08:00
|
|
|
lexsup.o: lexsup.c config.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
|
|
|
|
$(INCDIR)/symcat.h sysdep.h $(INCDIR)/fopen-same.h \
|
2001-10-02 14:04:23 +08:00
|
|
|
$(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h $(INCDIR)/bfdlink.h \
|
|
|
|
ld.h $(INCDIR)/bin-bugs.h ldmain.h ldmisc.h ldexp.h \
|
|
|
|
ldlang.h ldgram.h ldlex.h ldfile.h ldver.h ldemul.h \
|
|
|
|
$(INCDIR)/demangle.h
|
|
|
|
mri.o: mri.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
|
|
|
sysdep.h config.h $(INCDIR)/fopen-same.h ld.h $(INCDIR)/bin-bugs.h \
|
2000-06-22 11:35:54 +08:00
|
|
|
ldexp.h ldlang.h ldmisc.h mri.h ldgram.h $(INCDIR)/libiberty.h
|
|
|
|
ldcref.o: ldcref.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
|
2001-10-02 14:04:23 +08:00
|
|
|
$(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/fopen-same.h \
|
|
|
|
$(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h ld.h $(INCDIR)/bin-bugs.h \
|
|
|
|
ldmain.h ldmisc.h ldexp.h ldlang.h
|
2000-06-22 11:35:54 +08:00
|
|
|
pe-dll.o: pe-dll.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
|
2001-10-02 14:04:23 +08:00
|
|
|
$(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/fopen-same.h \
|
|
|
|
$(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h \
|
|
|
|
ld.h $(INCDIR)/bin-bugs.h ldexp.h ldlang.h ldwrite.h \
|
|
|
|
ldmisc.h ldgram.h ldmain.h ldfile.h ldemul.h $(INCDIR)/coff/internal.h \
|
2002-04-04 22:07:57 +08:00
|
|
|
$(BFDDIR)/libcoff.h deffile.h pe-dll.h
|
2000-06-22 11:35:54 +08:00
|
|
|
ldgram.o: ldgram.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
|
2001-10-02 14:04:23 +08:00
|
|
|
$(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/fopen-same.h \
|
|
|
|
$(INCDIR)/bfdlink.h ld.h $(INCDIR)/bin-bugs.h ldexp.h \
|
|
|
|
ldver.h ldlang.h ldfile.h ldemul.h ldmisc.h ldmain.h \
|
|
|
|
mri.h ldctor.h ldlex.h
|
2003-06-28 13:28:54 +08:00
|
|
|
ldlex.o: ldlex.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
|
2002-04-04 22:07:57 +08:00
|
|
|
$(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/fopen-same.h \
|
2002-07-03 07:56:53 +08:00
|
|
|
$(INCDIR)/safe-ctype.h $(INCDIR)/bfdlink.h ld.h $(INCDIR)/bin-bugs.h \
|
|
|
|
ldmisc.h ldexp.h ldlang.h ldgram.h ldfile.h ldlex.h \
|
|
|
|
ldmain.h $(INCDIR)/libiberty.h
|
2000-06-22 11:35:54 +08:00
|
|
|
deffilep.o: deffilep.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
|
2001-10-02 14:04:23 +08:00
|
|
|
$(INCDIR)/safe-ctype.h ../bfd/bfd.h $(INCDIR)/symcat.h \
|
|
|
|
sysdep.h config.h $(INCDIR)/fopen-same.h ld.h $(INCDIR)/bin-bugs.h \
|
|
|
|
ldmisc.h deffile.h
|
1999-05-03 15:29:11 +08:00
|
|
|
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
|