Remove elf64-ia64.c from list of backend C files - it is auto-generated.

This commit is contained in:
Nick Clifton
2001-02-07 01:58:26 +00:00
parent ddcd33c11d
commit 175aa013d9
4 changed files with 605 additions and 161 deletions

View File

@ -1,3 +1,11 @@
2001-02-06 Nick Clifton <nickc@redhat.com>
* Makefile.am (BFD64_BACKENDS_CFILES): Remove elf64-ia64.c, so
that it will not be pulled into the list of files that make up
po/POTFILES.in.
* Makefile.in: Regenerate.
* po/bfd.pot: Regenerate.
2001-02-06 H.J. Lu <hjl@gnu.org> 2001-02-06 H.J. Lu <hjl@gnu.org>
* bfd/peicode.h (coff_swap_filehdr_in): Remove the e_magic * bfd/peicode.h (coff_swap_filehdr_in): Remove the e_magic

View File

@ -431,7 +431,6 @@ BFD64_BACKENDS_CFILES = \
elf64-x86-64.c \ elf64-x86-64.c \
elf64-alpha.c \ elf64-alpha.c \
elf64-hppa.c \ elf64-hppa.c \
elf64-ia64.c \
elf64-gen.c \ elf64-gen.c \
elf64-mips.c \ elf64-mips.c \
elf64-sparc.c \ elf64-sparc.c \

View File

@ -144,41 +144,447 @@ BFD_H = bfd.h
# for the debugger, so if you are downloading things as S-records you # for the debugger, so if you are downloading things as S-records you
# need two copies of the executable, one to download and one for the # need two copies of the executable, one to download and one for the
# debugger). # debugger).
BFD_LIBS = archive.lo archures.lo bfd.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo dwarf2.lo BFD_LIBS = \
archive.lo archures.lo bfd.lo cache.lo coffgen.lo corefile.lo \
format.lo init.lo libbfd.lo opncls.lo reloc.lo \
section.lo syms.lo targets.lo hash.lo linker.lo \
srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo \
dwarf2.lo
BFD_LIBS_CFILES = archive.c archures.c bfd.c cache.c coffgen.c corefile.c format.c init.c libbfd.c opncls.c reloc.c section.c syms.c targets.c hash.c linker.c srec.c binary.c tekhex.c ihex.c stabs.c stab-syms.c dwarf2.c BFD_LIBS_CFILES = \
archive.c archures.c bfd.c cache.c coffgen.c corefile.c \
format.c init.c libbfd.c opncls.c reloc.c \
section.c syms.c targets.c hash.c linker.c \
srec.c binary.c tekhex.c ihex.c stabs.c stab-syms.c \
dwarf2.c
# This list is alphabetized to make it easier to keep in sync # This list is alphabetized to make it easier to keep in sync
# with the decls and initializer in archures.c. # with the decls and initializer in archures.c.
ALL_MACHINES = cpu-a29k.lo cpu-alpha.lo cpu-arc.lo cpu-arm.lo cpu-avr.lo cpu-cris.lo cpu-d10v.lo cpu-d30v.lo cpu-fr30.lo cpu-h8300.lo cpu-h8500.lo cpu-hppa.lo cpu-ia64.lo cpu-i370.lo cpu-i386.lo cpu-i860.lo cpu-i960.lo cpu-m32r.lo cpu-m68hc11.lo cpu-m68hc12.lo cpu-m68k.lo cpu-m88k.lo cpu-m10200.lo cpu-m10300.lo cpu-mcore.lo cpu-mips.lo cpu-ns32k.lo cpu-pj.lo cpu-powerpc.lo cpu-rs6000.lo cpu-sh.lo cpu-sparc.lo cpu-tic30.lo cpu-tic54x.lo cpu-tic80.lo cpu-v850.lo cpu-vax.lo cpu-we32k.lo cpu-w65.lo cpu-z8k.lo ALL_MACHINES = \
cpu-a29k.lo \
cpu-alpha.lo \
cpu-arc.lo \
cpu-arm.lo \
cpu-avr.lo \
cpu-cris.lo \
cpu-d10v.lo \
cpu-d30v.lo \
cpu-fr30.lo \
cpu-h8300.lo \
cpu-h8500.lo \
cpu-hppa.lo \
cpu-ia64.lo \
cpu-i370.lo \
cpu-i386.lo \
cpu-i860.lo \
cpu-i960.lo \
cpu-m32r.lo \
cpu-m68hc11.lo \
cpu-m68hc12.lo \
cpu-m68k.lo \
cpu-m88k.lo \
cpu-m10200.lo \
cpu-m10300.lo \
cpu-mcore.lo \
cpu-mips.lo \
cpu-ns32k.lo \
cpu-pj.lo \
cpu-powerpc.lo \
cpu-rs6000.lo \
cpu-sh.lo \
cpu-sparc.lo \
cpu-tic30.lo \
cpu-tic54x.lo \
cpu-tic80.lo \
cpu-v850.lo \
cpu-vax.lo \
cpu-we32k.lo \
cpu-w65.lo \
cpu-z8k.lo
ALL_MACHINES_CFILES = cpu-a29k.c cpu-alpha.c cpu-arc.c cpu-arm.c cpu-avr.c cpu-cris.c cpu-d10v.c cpu-d30v.c cpu-fr30.c cpu-h8300.c cpu-h8500.c cpu-hppa.c cpu-ia64.c cpu-i370.c cpu-i386.c cpu-i860.c cpu-i960.c cpu-m32r.c cpu-m68hc11.c cpu-m68hc12.c cpu-m68k.c cpu-m88k.c cpu-m10200.c cpu-m10300.c cpu-mcore.c cpu-mips.c cpu-ns32k.c cpu-pj.c cpu-powerpc.c cpu-rs6000.c cpu-sh.c cpu-sparc.c cpu-tic30.c cpu-tic54x.c cpu-tic80.c cpu-v850.c cpu-vax.c cpu-we32k.c cpu-w65.c cpu-z8k.c ALL_MACHINES_CFILES = \
cpu-a29k.c \
cpu-alpha.c \
cpu-arc.c \
cpu-arm.c \
cpu-avr.c \
cpu-cris.c \
cpu-d10v.c \
cpu-d30v.c \
cpu-fr30.c \
cpu-h8300.c \
cpu-h8500.c \
cpu-hppa.c \
cpu-ia64.c \
cpu-i370.c \
cpu-i386.c \
cpu-i860.c \
cpu-i960.c \
cpu-m32r.c \
cpu-m68hc11.c \
cpu-m68hc12.c \
cpu-m68k.c \
cpu-m88k.c \
cpu-m10200.c \
cpu-m10300.c \
cpu-mcore.c \
cpu-mips.c \
cpu-ns32k.c \
cpu-pj.c \
cpu-powerpc.c \
cpu-rs6000.c \
cpu-sh.c \
cpu-sparc.c \
cpu-tic30.c \
cpu-tic54x.c \
cpu-tic80.c \
cpu-v850.c \
cpu-vax.c \
cpu-we32k.c \
cpu-w65.c \
cpu-z8k.c
# The .o files needed by all of the 32 bit vectors that are configured into # The .o files needed by all of the 32 bit vectors that are configured into
# target_vector in targets.c if configured with --enable-targets=all. # target_vector in targets.c if configured with --enable-targets=all.
BFD32_BACKENDS = aout-adobe.lo aout-arm.lo aout-cris.lo aout-ns32k.lo aout-sparcle.lo aout-tic30.lo aout0.lo aout32.lo armnetbsd.lo bout.lo cf-i386lynx.lo cf-m68klynx.lo cf-sparclynx.lo coff-a29k.lo coff-apollo.lo coff-arm.lo coff-aux.lo coff-h8300.lo coff-h8500.lo coff-i386.lo coff-go32.lo coff-i860.lo coff-i960.lo coff-m68k.lo coff-m88k.lo coff-mips.lo coff-pmac.lo coff-rs6000.lo coff-sh.lo coff-sparc.lo coff-stgo32.lo coff-svm68k.lo coff-tic30.lo coff-tic54x.lo coff-tic80.lo coff-u68k.lo coff-we32k.lo coff-w65.lo coff-z8k.lo cofflink.lo dwarf1.lo ecoff.lo ecofflink.lo efi-app-ia32.lo elf.lo elf32-arc.lo elfarm-oabi.lo elfarm-nabi.lo elf32-avr.lo elf32-cris.lo elf32-d10v.lo elf32-d30v.lo elf32-fr30.lo elf32-gen.lo elf32-hppa.lo elf32-i370.lo elf32-i386.lo elf32-i860.lo elf32-i960.lo elf32-ia64.lo elf32-m32r.lo elf32-m68hc11.lo elf32-m68hc12.lo elf32-m68k.lo elf32-m88k.lo elf-m10200.lo elf-m10300.lo elf32-mcore.lo elf32-mips.lo elf32-pj.lo elf32-ppc.lo elf32-sh.lo elf32-sh-lin.lo elf32-sparc.lo elf32-v850.lo elf32.lo elflink.lo epoc-pe-arm.lo epoc-pei-arm.lo hp300bsd.lo hp300hpux.lo som.lo i386aout.lo i386bsd.lo i386dynix.lo i386freebsd.lo i386linux.lo i386lynx.lo i386msdos.lo i386netbsd.lo i386mach3.lo i386os9k.lo ieee.lo m68k4knetbsd.lo m68klinux.lo m68klynx.lo m68knetbsd.lo m88kmach3.lo mipsbsd.lo newsos3.lo nlm.lo nlm32-i386.lo nlm32-sparc.lo nlm32-ppc.lo nlm32.lo ns32knetbsd.lo oasys.lo pc532-mach.lo pe-arm.lo pei-arm.lo pe-i386.lo pei-i386.lo pe-mcore.lo pei-mcore.lo pe-ppc.lo pei-ppc.lo pe-sh.lo pei-sh.lo pe-mips.lo pei-mips.lo peigen.lo ppcboot.lo reloc16.lo riscix.lo sparclinux.lo sparclynx.lo sparcnetbsd.lo sunos.lo vaxnetbsd.lo versados.lo vms.lo vms-gsd.lo vms-hdr.lo vms-misc.lo vms-tir.lo xcofflink.lo BFD32_BACKENDS = \
aout-adobe.lo \
aout-arm.lo \
aout-cris.lo \
aout-ns32k.lo \
aout-sparcle.lo \
aout-tic30.lo \
aout0.lo \
aout32.lo \
armnetbsd.lo \
bout.lo \
cf-i386lynx.lo \
cf-m68klynx.lo \
cf-sparclynx.lo \
coff-a29k.lo \
coff-apollo.lo \
coff-arm.lo \
coff-aux.lo \
coff-h8300.lo \
coff-h8500.lo \
coff-i386.lo \
coff-go32.lo \
coff-i860.lo \
coff-i960.lo \
coff-m68k.lo \
coff-m88k.lo \
coff-mips.lo \
coff-pmac.lo \
coff-rs6000.lo \
coff-sh.lo \
coff-sparc.lo \
coff-stgo32.lo \
coff-svm68k.lo \
coff-tic30.lo \
coff-tic54x.lo \
coff-tic80.lo \
coff-u68k.lo \
coff-we32k.lo \
coff-w65.lo \
coff-z8k.lo \
cofflink.lo \
dwarf1.lo \
ecoff.lo \
ecofflink.lo \
efi-app-ia32.lo \
elf.lo \
elf32-arc.lo \
elfarm-oabi.lo \
elfarm-nabi.lo \
elf32-avr.lo \
elf32-cris.lo \
elf32-d10v.lo \
elf32-d30v.lo \
elf32-fr30.lo \
elf32-gen.lo \
elf32-hppa.lo \
elf32-i370.lo \
elf32-i386.lo \
elf32-i860.lo \
elf32-i960.lo \
elf32-ia64.lo \
elf32-m32r.lo \
elf32-m68hc11.lo \
elf32-m68hc12.lo \
elf32-m68k.lo \
elf32-m88k.lo \
elf-m10200.lo \
elf-m10300.lo \
elf32-mcore.lo \
elf32-mips.lo \
elf32-pj.lo \
elf32-ppc.lo \
elf32-sh.lo \
elf32-sh-lin.lo \
elf32-sparc.lo \
elf32-v850.lo \
elf32.lo \
elflink.lo \
epoc-pe-arm.lo \
epoc-pei-arm.lo \
hp300bsd.lo \
hp300hpux.lo \
som.lo \
i386aout.lo \
i386bsd.lo \
i386dynix.lo \
i386freebsd.lo \
i386linux.lo \
i386lynx.lo \
i386msdos.lo \
i386netbsd.lo \
i386mach3.lo \
i386os9k.lo \
ieee.lo \
m68k4knetbsd.lo \
m68klinux.lo \
m68klynx.lo \
m68knetbsd.lo \
m88kmach3.lo \
mipsbsd.lo \
newsos3.lo \
nlm.lo \
nlm32-i386.lo \
nlm32-sparc.lo \
nlm32-ppc.lo \
nlm32.lo \
ns32knetbsd.lo \
oasys.lo \
pc532-mach.lo \
pe-arm.lo \
pei-arm.lo \
pe-i386.lo \
pei-i386.lo \
pe-mcore.lo \
pei-mcore.lo \
pe-ppc.lo \
pei-ppc.lo \
pe-sh.lo \
pei-sh.lo \
pe-mips.lo \
pei-mips.lo \
peigen.lo \
ppcboot.lo \
reloc16.lo \
riscix.lo \
sparclinux.lo \
sparclynx.lo \
sparcnetbsd.lo \
sunos.lo \
vaxnetbsd.lo \
versados.lo \
vms.lo \
vms-gsd.lo \
vms-hdr.lo \
vms-misc.lo \
vms-tir.lo \
xcofflink.lo
BFD32_BACKENDS_CFILES = aout-adobe.c aout-arm.c aout-cris.c aout-ns32k.c aout-sparcle.c aout-tic30.c aout0.c aout32.c armnetbsd.c bout.c cf-i386lynx.c cf-m68klynx.c cf-sparclynx.c coff-a29k.c coff-apollo.c coff-arm.c coff-aux.c coff-h8300.c coff-h8500.c coff-i386.c coff-i860.c coff-go32.c coff-i960.c coff-m68k.c coff-m88k.c coff-mips.c coff-pmac.c coff-rs6000.c coff-sh.c coff-sparc.c coff-stgo32.c coff-svm68k.c coff-tic30.c coff-tic54x.c coff-tic80.c coff-u68k.c coff-we32k.c coff-w65.c coff-z8k.c cofflink.c dwarf1.c ecoff.c ecofflink.c efi-app-ia32.c elf.c elf32-arc.c elfarm-oabi.c elfarm-nabi.c elf32-avr.c elf32-cris.c elf32-d10v.c elf32-d30v.c elf32-fr30.c elf32-gen.c elf32-hppa.c elf32-i370.c elf32-i386.c elf32-i860.c elf32-i960.c elf32-m32r.c elf32-m68k.c elf32-m68hc11.c elf32-m68hc12.c elf32-m88k.c elf-m10200.c elf-m10300.c elf32-mcore.c elf32-mips.c elf32-pj.c elf32-ppc.c elf32-sh.c elf32-sh-lin.c elf32-sparc.c elf32-v850.c elf32.c elflink.c epoc-pe-arm.c epoc-pei-arm.c hp300bsd.c hp300hpux.c som.c i386aout.c i386bsd.c i386dynix.c i386freebsd.c i386linux.c i386lynx.c i386msdos.c i386netbsd.c i386mach3.c i386os9k.c ieee.c m68k4knetbsd.c m68klinux.c m68klynx.c m68knetbsd.c m88kmach3.c mipsbsd.c newsos3.c nlm.c nlm32-i386.c nlm32-sparc.c nlm32-ppc.c nlm32.c ns32knetbsd.c oasys.c pc532-mach.c pe-arm.c pei-arm.c pe-i386.c pei-i386.c pe-mcore.c pei-mcore.c pe-ppc.c pei-ppc.c pe-sh.c pei-sh.c pe-mips.c pei-mips.c peigen.c ppcboot.c reloc16.c riscix.c sparclinux.c sparclynx.c sparcnetbsd.c sunos.c vaxnetbsd.c versados.c vms.c vms-gsd.c vms-hdr.c vms-misc.c vms-tir.c xcofflink.c BFD32_BACKENDS_CFILES = \
aout-adobe.c \
aout-arm.c \
aout-cris.c \
aout-ns32k.c \
aout-sparcle.c \
aout-tic30.c \
aout0.c \
aout32.c \
armnetbsd.c \
bout.c \
cf-i386lynx.c \
cf-m68klynx.c \
cf-sparclynx.c \
coff-a29k.c \
coff-apollo.c \
coff-arm.c \
coff-aux.c \
coff-h8300.c \
coff-h8500.c \
coff-i386.c \
coff-i860.c \
coff-go32.c \
coff-i960.c \
coff-m68k.c \
coff-m88k.c \
coff-mips.c \
coff-pmac.c \
coff-rs6000.c \
coff-sh.c \
coff-sparc.c \
coff-stgo32.c \
coff-svm68k.c \
coff-tic30.c \
coff-tic54x.c \
coff-tic80.c \
coff-u68k.c \
coff-we32k.c \
coff-w65.c \
coff-z8k.c \
cofflink.c \
dwarf1.c \
ecoff.c \
ecofflink.c \
efi-app-ia32.c \
elf.c \
elf32-arc.c \
elfarm-oabi.c \
elfarm-nabi.c \
elf32-avr.c \
elf32-cris.c \
elf32-d10v.c \
elf32-d30v.c \
elf32-fr30.c \
elf32-gen.c \
elf32-hppa.c \
elf32-i370.c \
elf32-i386.c \
elf32-i860.c \
elf32-i960.c \
elf32-m32r.c \
elf32-m68k.c \
elf32-m68hc11.c \
elf32-m68hc12.c \
elf32-m88k.c \
elf-m10200.c \
elf-m10300.c \
elf32-mcore.c \
elf32-mips.c \
elf32-pj.c \
elf32-ppc.c \
elf32-sh.c \
elf32-sh-lin.c \
elf32-sparc.c \
elf32-v850.c \
elf32.c \
elflink.c \
epoc-pe-arm.c \
epoc-pei-arm.c \
hp300bsd.c \
hp300hpux.c \
som.c \
i386aout.c \
i386bsd.c \
i386dynix.c \
i386freebsd.c \
i386linux.c \
i386lynx.c \
i386msdos.c \
i386netbsd.c \
i386mach3.c \
i386os9k.c \
ieee.c \
m68k4knetbsd.c \
m68klinux.c \
m68klynx.c \
m68knetbsd.c \
m88kmach3.c \
mipsbsd.c \
newsos3.c \
nlm.c \
nlm32-i386.c \
nlm32-sparc.c \
nlm32-ppc.c \
nlm32.c \
ns32knetbsd.c \
oasys.c \
pc532-mach.c \
pe-arm.c \
pei-arm.c \
pe-i386.c \
pei-i386.c \
pe-mcore.c \
pei-mcore.c \
pe-ppc.c \
pei-ppc.c \
pe-sh.c \
pei-sh.c \
pe-mips.c \
pei-mips.c \
peigen.c \
ppcboot.c \
reloc16.c \
riscix.c \
sparclinux.c \
sparclynx.c \
sparcnetbsd.c \
sunos.c \
vaxnetbsd.c \
versados.c \
vms.c \
vms-gsd.c \
vms-hdr.c \
vms-misc.c \
vms-tir.c \
xcofflink.c
# The .o files needed by all of the 64 bit vectors that are configured into # The .o files needed by all of the 64 bit vectors that are configured into
# target_vector in targets.c if configured with --enable-targets=all # target_vector in targets.c if configured with --enable-targets=all
# and --enable-64-bit-bfd. # and --enable-64-bit-bfd.
BFD64_BACKENDS = aout64.lo coff-alpha.lo coff64-rs6000.lo demo64.lo efi-app-ia64.lo elf64-x86-64.lo elf64-alpha.lo elf64-hppa.lo elf64-ia64.lo elf64-gen.lo elf64-mips.lo elf64-sparc.lo elf64.lo nlm32-alpha.lo nlm64.lo BFD64_BACKENDS = \
aout64.lo \
coff-alpha.lo \
coff64-rs6000.lo \
demo64.lo \
efi-app-ia64.lo \
elf64-x86-64.lo \
elf64-alpha.lo \
elf64-hppa.lo \
elf64-ia64.lo \
elf64-gen.lo \
elf64-mips.lo \
elf64-sparc.lo \
elf64.lo \
nlm32-alpha.lo \
nlm64.lo
BFD64_BACKENDS_CFILES = aout64.c coff-alpha.c coff64-rs6000.c demo64.c efi-app-ia64.c elf64-x86-64.c elf64-alpha.c elf64-hppa.c elf64-ia64.c elf64-gen.c elf64-mips.c elf64-sparc.c elf64.c nlm32-alpha.c nlm64.c BFD64_BACKENDS_CFILES = \
aout64.c \
coff-alpha.c \
coff64-rs6000.c \
demo64.c \
efi-app-ia64.c \
elf64-x86-64.c \
elf64-alpha.c \
elf64-hppa.c \
elf64-gen.c \
elf64-mips.c \
elf64-sparc.c \
elf64.c \
nlm32-alpha.c \
nlm64.c
OPTIONAL_BACKENDS = aix386-core.lo hpux-core.lo irix-core.lo lynx-core.lo osf-core.lo sco5-core.lo trad-core.lo cisco-core.lo OPTIONAL_BACKENDS = \
aix386-core.lo \
hpux-core.lo \
irix-core.lo \
lynx-core.lo \
osf-core.lo \
sco5-core.lo \
trad-core.lo \
cisco-core.lo
OPTIONAL_BACKENDS_CFILES = aix386-core.c hpux-core.c irix-core.c lynx-core.c osf-core.c sco5-core.c trad-core.c cisco-core.c OPTIONAL_BACKENDS_CFILES = \
aix386-core.c \
hpux-core.c \
irix-core.c \
lynx-core.c \
osf-core.c \
sco5-core.c \
trad-core.c \
cisco-core.c
# These are defined by configure.in: # These are defined by configure.in:
@ -191,13 +597,26 @@ TDEFAULTS = @tdefaults@
INCLUDES = -D_GNU_SOURCE @HDEFINES@ @COREFLAG@ @TDEFINES@ $(CSEARCH) $(CSWITCHES) -I$(srcdir)/../intl -I../intl INCLUDES = -D_GNU_SOURCE @HDEFINES@ @COREFLAG@ @TDEFINES@ $(CSEARCH) $(CSWITCHES) -I$(srcdir)/../intl -I../intl
# C source files that correspond to .o's. # C source files that correspond to .o's.
CFILES = $(BFD_LIBS_CFILES) $(ALL_MACHINES_CFILES) $(BFD32_BACKENDS_CFILES) $(BFD64_BACKENDS_CFILES) $(OPTIONAL_BACKENDS_CFILES) CFILES = \
$(BFD_LIBS_CFILES) \
$(ALL_MACHINES_CFILES) \
$(BFD32_BACKENDS_CFILES) \
$(BFD64_BACKENDS_CFILES) \
$(OPTIONAL_BACKENDS_CFILES)
SOURCE_HFILES = aout-target.h aoutf1.h aoutx.h coffcode.h coffswap.h ecoffswap.h elf-bfd.h elf-hppa.h elf32-arm.h elf32-hppa.h elf64-hppa.h elfcode.h elfcore.h elflink.h freebsd.h genlink.h go32stub.h libaout.h libbfd.h libcoff.h libecoff.h libhppa.h libieee.h libnlm.h liboasys.h libpei.h netbsd.h nlm-target.h nlmcode.h nlmswap.h ns32k.h peicode.h som.h vms.h xcoff-target.h SOURCE_HFILES = \
aout-target.h aoutf1.h aoutx.h coffcode.h coffswap.h ecoffswap.h \
elf-bfd.h elf-hppa.h elf32-arm.h elf32-hppa.h elf64-hppa.h \
elfcode.h elfcore.h elflink.h freebsd.h genlink.h go32stub.h \
libaout.h libbfd.h libcoff.h libecoff.h libhppa.h \
libieee.h libnlm.h liboasys.h libpei.h netbsd.h nlm-target.h \
nlmcode.h nlmswap.h ns32k.h peicode.h som.h vms.h xcoff-target.h
HFILES = elf32-target.h elf64-target.h targmatch.h $(SOURCE_HFILES) HFILES = \
elf32-target.h elf64-target.h targmatch.h \
$(SOURCE_HFILES)
POTFILES = $(CFILES) $(SOURCE_HFILES) POTFILES = $(CFILES) $(SOURCE_HFILES)
@ -224,15 +643,18 @@ libbfd_a_SOURCES =
BFD_H_DEPS = $(INCDIR)/ansidecl.h BFD_H_DEPS = $(INCDIR)/ansidecl.h
LOCAL_H_DEPS = libbfd.h sysdep.h config.h LOCAL_H_DEPS = libbfd.h sysdep.h config.h
BFD_H_FILES = bfd-in.h init.c opncls.c libbfd.c section.c archures.c reloc.c syms.c bfd.c archive.c corefile.c targets.c format.c BFD_H_FILES = bfd-in.h init.c opncls.c libbfd.c section.c archures.c \
reloc.c syms.c bfd.c archive.c corefile.c targets.c format.c
LIBBFD_H_FILES = libbfd-in.h init.c libbfd.c cache.c reloc.c archures.c elf.c LIBBFD_H_FILES = libbfd-in.h init.c libbfd.c cache.c reloc.c archures.c elf.c
LIBCOFF_H_FILES = libcoff-in.h coffcode.h LIBCOFF_H_FILES = libcoff-in.h coffcode.h
MOSTLYCLEANFILES = elf32-target.h elf64-target.h ofiles stamp-ofiles targmatch.h MOSTLYCLEANFILES = elf32-target.h elf64-target.h ofiles stamp-ofiles \
targmatch.h
CLEANFILES = bfd.h dep.sed stmp-bfd-h DEP DEPA DEP1 DEP2 libbfd.a stamp-lib stmp-bin2-h stmp-lbfd-h stmp-lcoff-h CLEANFILES = bfd.h dep.sed stmp-bfd-h DEP DEPA DEP1 DEP2 libbfd.a stamp-lib \
stmp-bin2-h stmp-lbfd-h stmp-lcoff-h
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs
@ -265,7 +687,7 @@ configure.in
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
TAR = tar TAR = gtar
GZIP_ENV = --best GZIP_ENV = --best
SOURCES = $(libbfd_a_SOURCES) $(libbfd_la_SOURCES) SOURCES = $(libbfd_a_SOURCES) $(libbfd_la_SOURCES)
OBJECTS = $(libbfd_a_OBJECTS) $(libbfd_la_OBJECTS) OBJECTS = $(libbfd_a_OBJECTS) $(libbfd_la_OBJECTS)

View File

@ -6,7 +6,7 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2001-01-11 11:54-0800\n" "POT-Creation-Date: 2001-02-06 17:52-0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -49,7 +49,7 @@ msgstr ""
msgid "*unknown*" msgid "*unknown*"
msgstr "" msgstr ""
#: aoutx.h:3684 #: aoutx.h:3681
#, c-format #, c-format
msgid "%s: relocateable link from %s to %s not supported" msgid "%s: relocateable link from %s to %s not supported"
msgstr "" msgstr ""
@ -67,98 +67,98 @@ msgstr ""
msgid "Writing updated armap timestamp" msgid "Writing updated armap timestamp"
msgstr "" msgstr ""
#: bfd.c:273 #: bfd.c:272
msgid "No error" msgid "No error"
msgstr "" msgstr ""
#: bfd.c:274 #: bfd.c:273
msgid "System call error" msgid "System call error"
msgstr "" msgstr ""
#: bfd.c:275 #: bfd.c:274
msgid "Invalid bfd target" msgid "Invalid bfd target"
msgstr "" msgstr ""
#: bfd.c:276 #: bfd.c:275
msgid "File in wrong format" msgid "File in wrong format"
msgstr "" msgstr ""
#: bfd.c:277 #: bfd.c:276
msgid "Invalid operation" msgid "Invalid operation"
msgstr "" msgstr ""
#: bfd.c:278 #: bfd.c:277
msgid "Memory exhausted" msgid "Memory exhausted"
msgstr "" msgstr ""
#: bfd.c:279 #: bfd.c:278
msgid "No symbols" msgid "No symbols"
msgstr "" msgstr ""
#: bfd.c:280 #: bfd.c:279
msgid "Archive has no index; run ranlib to add one" msgid "Archive has no index; run ranlib to add one"
msgstr "" msgstr ""
#: bfd.c:281 #: bfd.c:280
msgid "No more archived files" msgid "No more archived files"
msgstr "" msgstr ""
#: bfd.c:282 #: bfd.c:281
msgid "Malformed archive" msgid "Malformed archive"
msgstr "" msgstr ""
#: bfd.c:283 #: bfd.c:282
msgid "File format not recognized" msgid "File format not recognized"
msgstr "" msgstr ""
#: bfd.c:284 #: bfd.c:283
msgid "File format is ambiguous" msgid "File format is ambiguous"
msgstr "" msgstr ""
#: bfd.c:285 #: bfd.c:284
msgid "Section has no contents" msgid "Section has no contents"
msgstr "" msgstr ""
#: bfd.c:286 #: bfd.c:285
msgid "Nonrepresentable section on output" msgid "Nonrepresentable section on output"
msgstr "" msgstr ""
#: bfd.c:287 #: bfd.c:286
msgid "Symbol needs debug section which does not exist" msgid "Symbol needs debug section which does not exist"
msgstr "" msgstr ""
#: bfd.c:288 #: bfd.c:287
msgid "Bad value" msgid "Bad value"
msgstr "" msgstr ""
#: bfd.c:289 #: bfd.c:288
msgid "File truncated" msgid "File truncated"
msgstr "" msgstr ""
#: bfd.c:290 #: bfd.c:289
msgid "File too big" msgid "File too big"
msgstr "" msgstr ""
#: bfd.c:291 #: bfd.c:290
msgid "#<Invalid error code>" msgid "#<Invalid error code>"
msgstr "" msgstr ""
#: bfd.c:675 #: bfd.c:674
#, c-format #, c-format
msgid "bfd assertion fail %s:%d" msgid "bfd assertion fail %s:%d"
msgstr "" msgstr ""
#: bfd.c:693 #: bfd.c:692
#, c-format #, c-format
msgid "BFD internal error, aborting at %s line %d in %s\n" msgid "BFD internal error, aborting at %s line %d in %s\n"
msgstr "" msgstr ""
#: bfd.c:697 #: bfd.c:696
#, c-format #, c-format
msgid "BFD internal error, aborting at %s line %d\n" msgid "BFD internal error, aborting at %s line %d\n"
msgstr "" msgstr ""
#: bfd.c:699 #: bfd.c:698
msgid "Please report this bug.\n" msgid "Please report this bug.\n"
msgstr "" msgstr ""
@ -167,23 +167,23 @@ msgstr ""
msgid "Warning: Writing section `%s' to huge (ie negative) file offset 0x%lx." msgid "Warning: Writing section `%s' to huge (ie negative) file offset 0x%lx."
msgstr "" msgstr ""
#: coff-a29k.c:122 #: coff-a29k.c:123
msgid "Missing IHCONST" msgid "Missing IHCONST"
msgstr "" msgstr ""
#: coff-a29k.c:181 #: coff-a29k.c:183
msgid "Missing IHIHALF" msgid "Missing IHIHALF"
msgstr "" msgstr ""
#: coff-a29k.c:213 #: coff-a29k.c:215
msgid "Unrecognized reloc" msgid "Unrecognized reloc"
msgstr "" msgstr ""
#: coff-a29k.c:425 #: coff-a29k.c:427
msgid "missing IHCONST reloc" msgid "missing IHCONST reloc"
msgstr "" msgstr ""
#: coff-a29k.c:516 #: coff-a29k.c:518
msgid "missing IHIHALF reloc" msgid "missing IHIHALF reloc"
msgstr "" msgstr ""
@ -191,137 +191,137 @@ msgstr ""
msgid "GP relative relocation used when GP not defined" msgid "GP relative relocation used when GP not defined"
msgstr "" msgstr ""
#: coff-alpha.c:1486 elf64-alpha.c:4004 #: coff-alpha.c:1486 elf64-alpha.c:4033
msgid "using multiple gp values" msgid "using multiple gp values"
msgstr "" msgstr ""
#: coff-alpha.c:1992 coff-mips.c:1434 #: coff-alpha.c:1992 coff-mips.c:1433
msgid "GP relative relocation when GP not defined" msgid "GP relative relocation when GP not defined"
msgstr "" msgstr ""
#: coff-arm.c:1018 elf32-arm.h:246 #: coff-arm.c:1017 elf32-arm.h:246
#, c-format #, c-format
msgid "%s: unable to find THUMB glue '%s' for `%s'" msgid "%s: unable to find THUMB glue '%s' for `%s'"
msgstr "" msgstr ""
#: coff-arm.c:1047 elf32-arm.h:281 #: coff-arm.c:1046 elf32-arm.h:281
#, c-format #, c-format
msgid "%s: unable to find ARM glue '%s' for `%s'" msgid "%s: unable to find ARM glue '%s' for `%s'"
msgstr "" msgstr ""
#: coff-arm.c:1335 coff-arm.c:1430 elf32-arm.h:841 elf32-arm.h:946 #: coff-arm.c:1334 coff-arm.c:1429 elf32-arm.h:841 elf32-arm.h:946
#, c-format #, c-format
msgid "%s(%s): warning: interworking not enabled." msgid "%s(%s): warning: interworking not enabled."
msgstr "" msgstr ""
#: coff-arm.c:1339 elf32-arm.h:949 #: coff-arm.c:1338 elf32-arm.h:949
#, c-format #, c-format
msgid " first occurrence: %s: arm call to thumb" msgid " first occurrence: %s: arm call to thumb"
msgstr "" msgstr ""
#: coff-arm.c:1434 elf32-arm.h:844 #: coff-arm.c:1433 elf32-arm.h:844
#, c-format #, c-format
msgid " first occurrence: %s: thumb call to arm" msgid " first occurrence: %s: thumb call to arm"
msgstr "" msgstr ""
#: coff-arm.c:1437 #: coff-arm.c:1436
msgid " consider relinking with --support-old-code enabled" msgid " consider relinking with --support-old-code enabled"
msgstr "" msgstr ""
#: coff-arm.c:1726 coff-tic80.c:682 cofflink.c:2991 #: coff-arm.c:1725 coff-tic80.c:682 cofflink.c:2991
#, c-format #, c-format
msgid "%s: bad reloc address 0x%lx in section `%s'" msgid "%s: bad reloc address 0x%lx in section `%s'"
msgstr "" msgstr ""
#: coff-arm.c:2063 #: coff-arm.c:2062
#, c-format #, c-format
msgid "%s: illegal symbol index in reloc: %d" msgid "%s: illegal symbol index in reloc: %d"
msgstr "" msgstr ""
#: coff-arm.c:2191 #: coff-arm.c:2190
#, c-format #, c-format
msgid "%s: ERROR: compiled for APCS-%d whereas target %s uses APCS-%d" msgid "%s: ERROR: compiled for APCS-%d whereas target %s uses APCS-%d"
msgstr "" msgstr ""
#: coff-arm.c:2206 #: coff-arm.c:2205
#, c-format #, c-format
msgid "" msgid ""
"%s: ERROR: passes floats in float registers whereas target %s uses integer " "%s: ERROR: passes floats in float registers whereas target %s uses integer "
"registers" "registers"
msgstr "" msgstr ""
#: coff-arm.c:2209 #: coff-arm.c:2208
#, c-format #, c-format
msgid "" msgid ""
"%s: ERROR: passes floats in integer registers whereas target %s uses float " "%s: ERROR: passes floats in integer registers whereas target %s uses float "
"registers" "registers"
msgstr "" msgstr ""
#: coff-arm.c:2224 #: coff-arm.c:2223
#, c-format #, c-format
msgid "" msgid ""
"%s: ERROR: compiled as position independent code, whereas target %s is " "%s: ERROR: compiled as position independent code, whereas target %s is "
"absolute position" "absolute position"
msgstr "" msgstr ""
#: coff-arm.c:2227 #: coff-arm.c:2226
#, c-format #, c-format
msgid "" msgid ""
"%s: ERROR: compiled as absolute position code, whereas target %s is position " "%s: ERROR: compiled as absolute position code, whereas target %s is position "
"independent" "independent"
msgstr "" msgstr ""
#: coff-arm.c:2256 #: coff-arm.c:2255
#, c-format #, c-format
msgid "Warning: input file %s supports interworking, whereas %s does not." msgid "Warning: input file %s supports interworking, whereas %s does not."
msgstr "" msgstr ""
#: coff-arm.c:2259 #: coff-arm.c:2258
#, c-format #, c-format
msgid "Warning: input file %s does not support interworking, whereas %s does." msgid "Warning: input file %s does not support interworking, whereas %s does."
msgstr "" msgstr ""
#: coff-arm.c:2286 #: coff-arm.c:2285
#, c-format #, c-format
msgid "private flags = %x:" msgid "private flags = %x:"
msgstr "" msgstr ""
#: coff-arm.c:2294 elf32-arm.h:2210 #: coff-arm.c:2293 elf32-arm.h:2210
msgid " [floats passed in float registers]" msgid " [floats passed in float registers]"
msgstr "" msgstr ""
#: coff-arm.c:2296 #: coff-arm.c:2295
msgid " [floats passed in integer registers]" msgid " [floats passed in integer registers]"
msgstr "" msgstr ""
#: coff-arm.c:2299 elf32-arm.h:2213 #: coff-arm.c:2298 elf32-arm.h:2213
msgid " [position independent]" msgid " [position independent]"
msgstr "" msgstr ""
#: coff-arm.c:2301 #: coff-arm.c:2300
msgid " [absolute position]" msgid " [absolute position]"
msgstr "" msgstr ""
#: coff-arm.c:2305 #: coff-arm.c:2304
msgid " [interworking flag not initialised]" msgid " [interworking flag not initialised]"
msgstr "" msgstr ""
#: coff-arm.c:2307 #: coff-arm.c:2306
msgid " [interworking supported]" msgid " [interworking supported]"
msgstr "" msgstr ""
#: coff-arm.c:2309 #: coff-arm.c:2308
msgid " [interworking not supported]" msgid " [interworking not supported]"
msgstr "" msgstr ""
#: coff-arm.c:2357 #: coff-arm.c:2356
#, c-format #, c-format
msgid "" msgid ""
"Warning: Not setting interworking flag of %s, since it has already been " "Warning: Not setting interworking flag of %s, since it has already been "
"specified as non-interworking" "specified as non-interworking"
msgstr "" msgstr ""
#: coff-arm.c:2361 #: coff-arm.c:2360
#, c-format #, c-format
msgid "Warning: Clearing the interworking flag of %s due to outside request" msgid "Warning: Clearing the interworking flag of %s due to outside request"
msgstr "" msgstr ""
@ -375,7 +375,7 @@ msgstr ""
msgid "uncertain calling convention for non-COFF symbol" msgid "uncertain calling convention for non-COFF symbol"
msgstr "" msgstr ""
#: cofflink.c:526 elflink.h:1648 #: cofflink.c:526 elflink.h:1647
#, c-format #, c-format
msgid "Warning: type of symbol `%s' changed from %d to %d in %s" msgid "Warning: type of symbol `%s' changed from %d to %d in %s"
msgstr "" msgstr ""
@ -395,21 +395,21 @@ msgstr ""
msgid "%s: warning: %s: line number overflow: 0x%lx > 0xffff" msgid "%s: warning: %s: line number overflow: 0x%lx > 0xffff"
msgstr "" msgstr ""
#: coff-m68k.c:475 coff-mips.c:2432 elf32-m68k.c:2265 #: coff-m68k.c:475 coff-mips.c:2431 elf32-m68k.c:2264
msgid "unsupported reloc type" msgid "unsupported reloc type"
msgstr "" msgstr ""
#: coff-mips.c:875 elf32-mips.c:1417 #: coff-mips.c:874 elf32-mips.c:1417
msgid "GP relative relocation when _gp not defined" msgid "GP relative relocation when _gp not defined"
msgstr "" msgstr ""
#. No other sections should appear in -membedded-pic #. No other sections should appear in -membedded-pic
#. code. #. code.
#: coff-mips.c:2469 #: coff-mips.c:2468
msgid "reloc against unsupported section" msgid "reloc against unsupported section"
msgstr "" msgstr ""
#: coff-mips.c:2477 #: coff-mips.c:2476
msgid "reloc not properly aligned" msgid "reloc not properly aligned"
msgstr "" msgstr ""
@ -549,33 +549,33 @@ msgstr ""
msgid "%s: Warning: Thumb BLX instruction targets thumb function '%s'." msgid "%s: Warning: Thumb BLX instruction targets thumb function '%s'."
msgstr "" msgstr ""
#: elf-hppa.h:1369 elf-hppa.h:1402 elf32-arm.h:1853 elf32-i386.c:1428 #: elf-hppa.h:1369 elf-hppa.h:1402 elf32-arm.h:1853 elf32-i386.c:1439
#: elf32-ppc.c:3096 elf32-sh.c:2997 elf64-x86-64.c:271 #: elf32-ppc.c:3092 elf32-sh.c:2996 elf64-x86-64.c:1182
#, c-format #, c-format
msgid "" msgid ""
"%s: warning: unresolvable relocation against symbol `%s' from %s section" "%s: warning: unresolvable relocation against symbol `%s' from %s section"
msgstr "" msgstr ""
#: elf-m10200.c:455 elf-m10300.c:669 elf32-arm.h:1927 elf32-avr.c:842 #: elf-m10200.c:450 elf-m10300.c:663 elf32-arm.h:1927 elf32-avr.c:842
#: elf32-cris.c:431 elf32-d10v.c:478 elf32-fr30.c:651 elf32-i860.c:1051 #: elf32-cris.c:431 elf32-d10v.c:478 elf32-fr30.c:648 elf32-i860.c:1049
#: elf32-m32r.c:1265 elf32-v850.c:1672 #: elf32-m32r.c:1265 elf32-v850.c:1680
msgid "internal error: out of range error" msgid "internal error: out of range error"
msgstr "" msgstr ""
#: elf-m10200.c:459 elf-m10300.c:673 elf32-arm.h:1931 elf32-avr.c:846 #: elf-m10200.c:454 elf-m10300.c:667 elf32-arm.h:1931 elf32-avr.c:846
#: elf32-cris.c:435 elf32-d10v.c:482 elf32-fr30.c:655 elf32-i860.c:1055 #: elf32-cris.c:435 elf32-d10v.c:482 elf32-fr30.c:652 elf32-i860.c:1053
#: elf32-m32r.c:1269 elf32-v850.c:1676 #: elf32-m32r.c:1269 elf32-v850.c:1684
msgid "internal error: unsupported relocation error" msgid "internal error: unsupported relocation error"
msgstr "" msgstr ""
#: elf-m10200.c:463 elf-m10300.c:677 elf32-arm.h:1935 elf32-d10v.c:486 #: elf-m10200.c:458 elf-m10300.c:671 elf32-arm.h:1935 elf32-d10v.c:486
#: elf32-m32r.c:1273 #: elf32-m32r.c:1273
msgid "internal error: dangerous error" msgid "internal error: dangerous error"
msgstr "" msgstr ""
#: elf-m10200.c:467 elf-m10300.c:681 elf32-arm.h:1939 elf32-avr.c:854 #: elf-m10200.c:462 elf-m10300.c:675 elf32-arm.h:1939 elf32-avr.c:854
#: elf32-cris.c:443 elf32-d10v.c:490 elf32-fr30.c:663 elf32-i860.c:1063 #: elf32-cris.c:443 elf32-d10v.c:490 elf32-fr30.c:660 elf32-i860.c:1061
#: elf32-m32r.c:1277 elf32-v850.c:1696 #: elf32-m32r.c:1277 elf32-v850.c:1704
msgid "internal error: unknown error" msgid "internal error: unknown error"
msgstr "" msgstr ""
@ -660,7 +660,7 @@ msgstr ""
#. Ignore init flag - it may not be set, despite the flags field #. Ignore init flag - it may not be set, despite the flags field
#. containing valid data. #. containing valid data.
#: elf32-arm.h:2193 elf32-cris.c:615 elf32-m68k.c:430 elf32-mips.c:2695 #: elf32-arm.h:2193 elf32-cris.c:615 elf32-m68k.c:429 elf32-mips.c:2695
#, c-format #, c-format
msgid "private flags = %lx:" msgid "private flags = %lx:"
msgstr "" msgstr ""
@ -717,8 +717,8 @@ msgstr ""
msgid "<Unrecognised flag bits set>" msgid "<Unrecognised flag bits set>"
msgstr "" msgstr ""
#: elf32-avr.c:850 elf32-cris.c:439 elf32-fr30.c:659 elf32-i860.c:1059 #: elf32-avr.c:850 elf32-cris.c:439 elf32-fr30.c:656 elf32-i860.c:1057
#: elf32-v850.c:1680 #: elf32-v850.c:1688
msgid "internal error: dangerous relocation" msgid "internal error: dangerous relocation"
msgstr "" msgstr ""
@ -736,61 +736,61 @@ msgstr ""
msgid "%s: uses non-prefixed symbols, but writing file with _-prefixed symbols" msgid "%s: uses non-prefixed symbols, but writing file with _-prefixed symbols"
msgstr "" msgstr ""
#: elf32-hppa.c:606 #: elf32-hppa.c:625
#, c-format #, c-format
msgid "%s(%s+0x%lx): cannot find stub entry %s" msgid "%s(%s+0x%lx): cannot find stub entry %s"
msgstr "" msgstr ""
#: elf32-hppa.c:667 #: elf32-hppa.c:686
#, c-format #, c-format
msgid "%s: cannot create stub entry %s" msgid "%s: cannot create stub entry %s"
msgstr "" msgstr ""
#: elf32-hppa.c:859 #: elf32-hppa.c:878
#, c-format #, c-format
msgid "%s(%s+0x%lx): cannot relocate %s, recompile with -ffunction-sections" msgid "%s(%s+0x%lx): cannot relocate %s, recompile with -ffunction-sections"
msgstr "" msgstr ""
#: elf32-hppa.c:872 elf32-hppa.c:1568 #: elf32-hppa.c:891 elf32-hppa.c:1587
#, c-format #, c-format
msgid "Could not find relocation section for %s" msgid "Could not find relocation section for %s"
msgstr "" msgstr ""
#: elf32-hppa.c:1011 elf32-hppa.c:3362 #: elf32-hppa.c:1030 elf32-hppa.c:3409
#, c-format #, c-format
msgid "%s(%s+0x%lx): cannot reach %s, recompile with -ffunction-sections" msgid "%s(%s+0x%lx): cannot reach %s, recompile with -ffunction-sections"
msgstr "" msgstr ""
#: elf32-hppa.c:1323 #: elf32-hppa.c:1342
#, c-format #, c-format
msgid "" msgid ""
"%s: relocation %s can not be used when making a shared object; recompile " "%s: relocation %s can not be used when making a shared object; recompile "
"with -fPIC" "with -fPIC"
msgstr "" msgstr ""
#: elf32-hppa.c:1343 #: elf32-hppa.c:1362
#, c-format #, c-format
msgid "" msgid ""
"%s: relocation %s should not be used when making a shared object; recompile " "%s: relocation %s should not be used when making a shared object; recompile "
"with -fPIC" "with -fPIC"
msgstr "" msgstr ""
#: elf32-hppa.c:2755 #: elf32-hppa.c:2725
#, c-format #, c-format
msgid "%s: duplicate export stub %s" msgid "%s: duplicate export stub %s"
msgstr "" msgstr ""
#: elf32-hppa.c:3253 #: elf32-hppa.c:3293
#, c-format #, c-format
msgid "%s(%s+0x%lx): fixing %s" msgid "%s(%s+0x%lx): fixing %s"
msgstr "" msgstr ""
#: elf32-hppa.c:3856 #: elf32-hppa.c:3912
#, c-format #, c-format
msgid "%s(%s+0x%lx): cannot handle %s for %s" msgid "%s(%s+0x%lx): cannot handle %s for %s"
msgstr "" msgstr ""
#: elf32-hppa.c:4173 #: elf32-hppa.c:4230
msgid ".got section not immediately after .plt section" msgid ".got section not immediately after .plt section"
msgstr "" msgstr ""
@ -799,11 +799,21 @@ msgstr ""
msgid "%s: invalid relocation type %d" msgid "%s: invalid relocation type %d"
msgstr "" msgstr ""
#: elf32-i386.c:678 elf32-i386.c:1646
#, c-format
msgid "%s(%s): bad relocation section name `%s'"
msgstr ""
#: elf32-i386.c:683 elf32-i386.c:1651
#, c-format
msgid "%s: bad relocation section name `%s'"
msgstr ""
#: elf32-m32r.c:916 #: elf32-m32r.c:916
msgid "SDA relocation when _SDA_BASE_ not defined" msgid "SDA relocation when _SDA_BASE_ not defined"
msgstr "" msgstr ""
#: elf32-m32r.c:1000 elf32-ppc.c:2963 #: elf32-m32r.c:1000 elf32-ppc.c:2959
#, c-format #, c-format
msgid "%s: unknown relocation type %d" msgid "%s: unknown relocation type %d"
msgstr "" msgstr ""
@ -831,16 +841,16 @@ msgstr ""
msgid ": m32rx instructions" msgid ": m32rx instructions"
msgstr "" msgstr ""
#: elf32-m68k.c:433 #: elf32-m68k.c:432
msgid " [cpu32]" msgid " [cpu32]"
msgstr "" msgstr ""
#: elf32-mcore.c:366 elf32-mcore.c:493 #: elf32-mcore.c:364 elf32-mcore.c:490
#, c-format #, c-format
msgid "%s: Relocation %s (%d) is not currently supported.\n" msgid "%s: Relocation %s (%d) is not currently supported.\n"
msgstr "" msgstr ""
#: elf32-mcore.c:452 #: elf32-mcore.c:449
#, c-format #, c-format
msgid "%s: Unknown relocation type %d\n" msgid "%s: Unknown relocation type %d\n"
msgstr "" msgstr ""
@ -879,7 +889,7 @@ msgstr ""
msgid "%s: ABI mismatch: linking %s module with previous %s modules" msgid "%s: ABI mismatch: linking %s module with previous %s modules"
msgstr "" msgstr ""
#: elf32-mips.c:2667 elf32-ppc.c:1477 elf64-sparc.c:2971 #: elf32-mips.c:2667 elf32-ppc.c:1477 elf64-sparc.c:2969
#, c-format #, c-format
msgid "%s: uses different e_flags (0x%lx) fields than previous modules (0x%lx)" msgid "%s: uses different e_flags (0x%lx) fields than previous modules (0x%lx)"
msgstr "" msgstr ""
@ -960,7 +970,7 @@ msgstr ""
msgid "static procedure (no name)" msgid "static procedure (no name)"
msgstr "" msgstr ""
#: elf32-mips.c:5005 elf64-alpha.c:4377 #: elf32-mips.c:5005 elf64-alpha.c:4406
#, c-format #, c-format
msgid "%s: illegal section name `%s'" msgid "%s: illegal section name `%s'"
msgstr "" msgstr ""
@ -996,28 +1006,28 @@ msgid ""
"%s: compiled normally and linked with modules compiled with -mrelocatable" "%s: compiled normally and linked with modules compiled with -mrelocatable"
msgstr "" msgstr ""
#: elf32-ppc.c:1578 #: elf32-ppc.c:1575
#, c-format #, c-format
msgid "%s: Unknown special linker type %d" msgid "%s: Unknown special linker type %d"
msgstr "" msgstr ""
#: elf32-ppc.c:2245 elf32-ppc.c:2279 elf32-ppc.c:2314 #: elf32-ppc.c:2241 elf32-ppc.c:2275 elf32-ppc.c:2310
#, c-format #, c-format
msgid "%s: relocation %s cannot be used when making a shared object" msgid "%s: relocation %s cannot be used when making a shared object"
msgstr "" msgstr ""
#: elf32-ppc.c:3129 #: elf32-ppc.c:3125
#, c-format #, c-format
msgid "%s: unknown relocation type %d for symbol %s" msgid "%s: unknown relocation type %d for symbol %s"
msgstr "" msgstr ""
#: elf32-ppc.c:3493 elf32-ppc.c:3514 elf32-ppc.c:3564 #: elf32-ppc.c:3489 elf32-ppc.c:3510 elf32-ppc.c:3560
#, c-format #, c-format
msgid "" msgid ""
"%s: The target (%s) of a %s relocation is in the wrong output section (%s)" "%s: The target (%s) of a %s relocation is in the wrong output section (%s)"
msgstr "" msgstr ""
#: elf32-ppc.c:3630 #: elf32-ppc.c:3626
#, c-format #, c-format
msgid "%s: Relocation %s is not yet supported for symbol %s." msgid "%s: Relocation %s is not yet supported for symbol %s."
msgstr "" msgstr ""
@ -1062,7 +1072,7 @@ msgstr ""
msgid "%s: 0x%lx: fatal: reloc overflow while relaxing" msgid "%s: 0x%lx: fatal: reloc overflow while relaxing"
msgstr "" msgstr ""
#: elf32-sparc.c:1512 elf64-sparc.c:2262 #: elf32-sparc.c:1512 elf64-sparc.c:2260
#, c-format #, c-format
msgid "%s: probably compiled without -fPIC?" msgid "%s: probably compiled without -fPIC?"
msgstr "" msgstr ""
@ -1077,108 +1087,113 @@ msgstr ""
msgid "%s: linking little endian files with big endian files" msgid "%s: linking little endian files with big endian files"
msgstr "" msgstr ""
#: elf32-v850.c:677 #: elf32-v850.c:674
#, c-format #, c-format
msgid "Variable `%s' cannot occupy in multiple small data regions" msgid "Variable `%s' cannot occupy in multiple small data regions"
msgstr "" msgstr ""
#: elf32-v850.c:680 #: elf32-v850.c:677
#, c-format #, c-format
msgid "" msgid ""
"Variable `%s' can only be in one of the small, zero, and tiny data regions" "Variable `%s' can only be in one of the small, zero, and tiny data regions"
msgstr "" msgstr ""
#: elf32-v850.c:683 #: elf32-v850.c:680
#, c-format #, c-format
msgid "" msgid ""
"Variable `%s' cannot be in both small and zero data regions simultaneously" "Variable `%s' cannot be in both small and zero data regions simultaneously"
msgstr "" msgstr ""
#: elf32-v850.c:686 #: elf32-v850.c:683
#, c-format #, c-format
msgid "" msgid ""
"Variable `%s' cannot be in both small and tiny data regions simultaneously" "Variable `%s' cannot be in both small and tiny data regions simultaneously"
msgstr "" msgstr ""
#: elf32-v850.c:689 #: elf32-v850.c:686
#, c-format #, c-format
msgid "" msgid ""
"Variable `%s' cannot be in both zero and tiny data regions simultaneously" "Variable `%s' cannot be in both zero and tiny data regions simultaneously"
msgstr "" msgstr ""
#: elf32-v850.c:1066 #: elf32-v850.c:1063
msgid "FAILED to find previous HI16 reloc\n" msgid "FAILED to find previous HI16 reloc\n"
msgstr "" msgstr ""
#: elf32-v850.c:1684 #: elf32-v850.c:1692
msgid "could not locate special linker symbol __gp" msgid "could not locate special linker symbol __gp"
msgstr "" msgstr ""
#: elf32-v850.c:1688 #: elf32-v850.c:1696
msgid "could not locate special linker symbol __ep" msgid "could not locate special linker symbol __ep"
msgstr "" msgstr ""
#: elf32-v850.c:1692 #: elf32-v850.c:1700
msgid "could not locate special linker symbol __ctbp" msgid "could not locate special linker symbol __ctbp"
msgstr "" msgstr ""
#: elf32-v850.c:1881 #: elf32-v850.c:1889
#, c-format #, c-format
msgid "%s: Architecture mismatch with previous modules" msgid "%s: Architecture mismatch with previous modules"
msgstr "" msgstr ""
#: elf32-v850.c:1900 #: elf32-v850.c:1908
#, c-format #, c-format
msgid "private flags = %lx: " msgid "private flags = %lx: "
msgstr "" msgstr ""
#: elf32-v850.c:1905 #: elf32-v850.c:1913
msgid "v850 architecture" msgid "v850 architecture"
msgstr "" msgstr ""
#: elf32-v850.c:1906 #: elf32-v850.c:1914
msgid "v850e architecture" msgid "v850e architecture"
msgstr "" msgstr ""
#: elf32-v850.c:1907 #: elf32-v850.c:1915
msgid "v850ea architecture" msgid "v850ea architecture"
msgstr "" msgstr ""
#: elf64-alpha.c:951 #: elf64-alpha.c:974
msgid "GPDISP relocation did not find ldah and lda instructions" msgid "GPDISP relocation did not find ldah and lda instructions"
msgstr "" msgstr ""
#: elf64-alpha.c:3014 #: elf64-alpha.c:3043
#, c-format #, c-format
msgid "%s: .got subsegment exceeds 64K (size %d)" msgid "%s: .got subsegment exceeds 64K (size %d)"
msgstr "" msgstr ""
#: elf64-sparc.c:1248 #: elf64-hppa.c:2018
#, c-format
msgid "stub entry for %s cannot load .plt, dp offset = %ld"
msgstr ""
#: elf64-sparc.c:1246
#, c-format #, c-format
msgid "%s: check_relocs: unhandled reloc type %d" msgid "%s: check_relocs: unhandled reloc type %d"
msgstr "" msgstr ""
#: elf64-sparc.c:1285 #: elf64-sparc.c:1283
msgid "%s: Only registers %%g[2367] can be declared using STT_REGISTER" msgid "%s: Only registers %%g[2367] can be declared using STT_REGISTER"
msgstr "" msgstr ""
#: elf64-sparc.c:1305 #: elf64-sparc.c:1303
msgid "" msgid ""
"Register %%g%d used incompatibly: previously declared in %s to %s, in %s " "Register %%g%d used incompatibly: previously declared in %s to %s, in %s "
"redefined to %s" "redefined to %s"
msgstr "" msgstr ""
#: elf64-sparc.c:1328 #: elf64-sparc.c:1326
#, c-format #, c-format
msgid "Symbol `%s' has differing types: previously %s, REGISTER in %s" msgid "Symbol `%s' has differing types: previously %s, REGISTER in %s"
msgstr "" msgstr ""
#: elf64-sparc.c:1374 #: elf64-sparc.c:1372
#, c-format #, c-format
msgid "Symbol `%s' has differing types: REGISTER in %s, %s in %s" msgid "Symbol `%s' has differing types: REGISTER in %s, %s in %s"
msgstr "" msgstr ""
#: elf64-sparc.c:2952 #: elf64-sparc.c:2950
#, c-format #, c-format
msgid "%s: linking UltraSPARC specific with HAL specific code" msgid "%s: linking UltraSPARC specific with HAL specific code"
msgstr "" msgstr ""
@ -1281,42 +1296,42 @@ msgstr ""
msgid "%s: version count (%ld) does not match symbol count (%ld)" msgid "%s: version count (%ld) does not match symbol count (%ld)"
msgstr "" msgstr ""
#: elflink.c:432 #: elflink.c:430
#, c-format #, c-format
msgid "%s: Section %s is already to large to put hole of %ld bytes in" msgid "%s: Section %s is already to large to put hole of %ld bytes in"
msgstr "" msgstr ""
#: elflink.h:1465 #: elflink.h:1464
#, c-format #, c-format
msgid "%s: %s: invalid version %u (max %d)" msgid "%s: %s: invalid version %u (max %d)"
msgstr "" msgstr ""
#: elflink.h:1506 #: elflink.h:1505
#, c-format #, c-format
msgid "%s: %s: invalid needed version %d" msgid "%s: %s: invalid needed version %d"
msgstr "" msgstr ""
#: elflink.h:1626 #: elflink.h:1625
#, c-format #, c-format
msgid "Warning: size of symbol `%s' changed from %lu to %lu in %s" msgid "Warning: size of symbol `%s' changed from %lu to %lu in %s"
msgstr "" msgstr ""
#: elflink.h:1872 #: elflink.h:1871
#, c-format #, c-format
msgid "%s: warning: unexpected redefinition of `%s'" msgid "%s: warning: unexpected redefinition of `%s'"
msgstr "" msgstr ""
#: elflink.h:3659 #: elflink.h:3656
#, c-format #, c-format
msgid "warning: type and size of dynamic symbol `%s' are not defined" msgid "warning: type and size of dynamic symbol `%s' are not defined"
msgstr "" msgstr ""
#: elflink.h:3931 #: elflink.h:3928
#, c-format #, c-format
msgid "%s: undefined versioned symbol name %s" msgid "%s: undefined versioned symbol name %s"
msgstr "" msgstr ""
#: elflink.h:5180 #: elflink.h:5177
#, c-format #, c-format
msgid "%s: could not find output section %s for input section %s" msgid "%s: could not find output section %s for input section %s"
msgstr "" msgstr ""
@ -1451,39 +1466,39 @@ msgid "Unhandled OSF/1 core file section type %d\n"
msgstr "" msgstr ""
#. XXX code yet to be written. #. XXX code yet to be written.
#: peicode.h:807 #: peicode.h:787
#, c-format #, c-format
msgid "%s: Unhandled import type; %x" msgid "%s: Unhandled import type; %x"
msgstr "" msgstr ""
#: peicode.h:812 #: peicode.h:792
#, c-format #, c-format
msgid "%s: Unrecognised import type; %x" msgid "%s: Unrecognised import type; %x"
msgstr "" msgstr ""
#: peicode.h:826 #: peicode.h:806
#, c-format #, c-format
msgid "%s: Unrecognised import name type; %x" msgid "%s: Unrecognised import name type; %x"
msgstr "" msgstr ""
#: peicode.h:1183 #: peicode.h:1163
#, c-format #, c-format
msgid "%s: Unrecognised machine type (0x%x) in Import Library Format archive" msgid "%s: Unrecognised machine type (0x%x) in Import Library Format archive"
msgstr "" msgstr ""
#: peicode.h:1195 #: peicode.h:1175
#, c-format #, c-format
msgid "" msgid ""
"%s: Recognised but unhandled machine type (0x%x) in Import Library Format " "%s: Recognised but unhandled machine type (0x%x) in Import Library Format "
"archive" "archive"
msgstr "" msgstr ""
#: peicode.h:1212 #: peicode.h:1192
#, c-format #, c-format
msgid "%s: size field is zero in Import Library Format header" msgid "%s: size field is zero in Import Library Format header"
msgstr "" msgstr ""
#: peicode.h:1240 #: peicode.h:1220
#, c-format #, c-format
msgid "%s: string not null terminated in ILF object file." msgid "%s: string not null terminated in ILF object file."
msgstr "" msgstr ""
@ -1897,29 +1912,29 @@ msgstr ""
msgid "Object module NOT error-free !\n" msgid "Object module NOT error-free !\n"
msgstr "" msgstr ""
#: vms-misc.c:539 #: vms-misc.c:540
#, c-format #, c-format
msgid "Stack overflow (%d) in _bfd_vms_push" msgid "Stack overflow (%d) in _bfd_vms_push"
msgstr "" msgstr ""
#: vms-misc.c:557 #: vms-misc.c:558
msgid "Stack underflow in _bfd_vms_pop" msgid "Stack underflow in _bfd_vms_pop"
msgstr "" msgstr ""
#: vms-misc.c:915 #: vms-misc.c:916
msgid "_bfd_vms_output_counted called with zero bytes" msgid "_bfd_vms_output_counted called with zero bytes"
msgstr "" msgstr ""
#: vms-misc.c:920 #: vms-misc.c:921
msgid "_bfd_vms_output_counted called with too many bytes" msgid "_bfd_vms_output_counted called with too many bytes"
msgstr "" msgstr ""
#: vms-misc.c:1051 #: vms-misc.c:1052
#, c-format #, c-format
msgid "Symbol %s replaced by %s\n" msgid "Symbol %s replaced by %s\n"
msgstr "" msgstr ""
#: vms-misc.c:1113 #: vms-misc.c:1114
#, c-format #, c-format
msgid "failed to enter %s" msgid "failed to enter %s"
msgstr "" msgstr ""