From 37f4530ea1a0c67e2a23f0f2a6ab3d4aba282bf9 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Thu, 31 Jan 2002 17:33:08 +0000 Subject: [PATCH] Add support for OpenRISC 32-bit embedded processor --- bfd/ChangeLog | 19 + bfd/Makefile.am | 10 + bfd/Makefile.in | 18 +- bfd/archures.c | 125 ++- bfd/bfd-in2.h | 6 +- bfd/coff-or32.c | 634 +++++++++++ bfd/coffcode.h | 21 + bfd/config.bfd | 10 + bfd/configure | 998 ++++++++--------- bfd/configure.in | 2 + bfd/cpu-or32.c | 40 + bfd/doc/Makefile.in | 8 +- bfd/elf32-or32.c | 542 +++++++++ bfd/po/SRC-POTFILES.in | 2 + bfd/po/bfd.pot | 740 ++++++------ bfd/po/es.po | 1746 ++++++++++++++++++----------- bfd/po/fr.po | 1759 ++++++++++++++++++----------- bfd/po/ja.po | 2788 +++++++++++++++++++++++++++++----------------- bfd/po/sv.po | 1651 ++++++++++++++++----------- bfd/po/tr.po | 2754 ++++++++++++++++++++++++++++----------------- bfd/targets.c | 6 + binutils/readelf.c | 48 +- gas/ChangeLog | 15 + gas/Makefile.am | 3 + gas/Makefile.in | 11 +- gas/NEWS | 2 + gas/config/obj-coff.c | 24 +- gas/config/obj-coff.h | 192 ++-- gas/config/tc-or32.c | 1636 +++++++++++++++++++++++++++ gas/config/tc-or32.h | 63 ++ gas/configure | 901 ++++++++------- gas/configure.in | 4 + gas/doc/Makefile.in | 8 +- gas/po/POTFILES.in | 2 + gas/po/gas.pot | 1358 +++++++++++++--------- include/ChangeLog | 32 +- include/coff/ChangeLog | 9 +- include/coff/or32.h | 287 +++++ include/dis-asm.h | 4 +- include/elf/ChangeLog | 32 +- include/elf/common.h | 3 + include/elf/or32.h | 62 ++ include/opcode/ChangeLog | 19 + include/opcode/or32.h | 188 ++++ ld/ChangeLog | 36 +- ld/Makefile.am | 8 + ld/Makefile.in | 18 +- ld/NEWS | 2 + ld/configure | 197 ++-- ld/configure.tgt | 2 + ld/emulparams/or32.sh | 6 + ld/emulparams/or32elf.sh | 6 + ld/po/ld.pot | 121 +- ld/scripttempl/or32.sc | 37 + opcodes/ChangeLog | 12 + opcodes/Makefile.am | 4 + opcodes/Makefile.in | 12 +- opcodes/configure | 116 +- opcodes/configure.in | 1 + opcodes/disassemble.c | 11 +- opcodes/or32-dis.c | 345 ++++++ opcodes/or32-opc.c | 1049 +++++++++++++++++ opcodes/po/POTFILES.in | 2 + opcodes/po/fr.po | 97 +- opcodes/po/opcodes.pot | 83 +- opcodes/po/sv.po | 86 +- opcodes/po/tr.po | 86 +- 67 files changed, 14634 insertions(+), 6485 deletions(-) create mode 100644 bfd/coff-or32.c create mode 100644 bfd/cpu-or32.c create mode 100644 bfd/elf32-or32.c create mode 100644 gas/config/tc-or32.c create mode 100644 gas/config/tc-or32.h create mode 100644 include/coff/or32.h create mode 100644 include/elf/or32.h create mode 100644 include/opcode/or32.h create mode 100644 ld/emulparams/or32.sh create mode 100644 ld/emulparams/or32elf.sh create mode 100644 ld/scripttempl/or32.sc create mode 100644 opcodes/or32-dis.c create mode 100644 opcodes/or32-opc.c diff --git a/bfd/ChangeLog b/bfd/ChangeLog index fad9c8ec9..d4e997c0d 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,22 @@ +2002-01-31 Ivan Guzvinec + + * coff-or32.c: New file. + * cpu-or32.c: New file. + * elf32-or32.c: New file. + * archures.c: Add support for or32. + * targets.c: Add support for or32. + * bfd-in2.h: Regenerate. + * coffcode.h (coff_set_arch_mach_hook, coff_set_flags, + coff_write_object_contents): Add support for or32. + * config.bfd: Add target. + * configure.in: Add support for or32. + * configure: Regenerate. + * Makefile.am: Add support for or32. + * Makefile.in: Regenerate. + * doc/Makefile.in: Regenerate. + * po/SRC-POTFILES.in: Add or32 files. + * po/bfd.pot: Regenerate. + 2002-01-31 Nick Clifton Don Lindsay diff --git a/bfd/Makefile.am b/bfd/Makefile.am index c96f171fc..7847d2b2f 100644 --- a/bfd/Makefile.am +++ b/bfd/Makefile.am @@ -73,6 +73,7 @@ ALL_MACHINES = \ cpu-mcore.lo \ cpu-mips.lo \ cpu-mmix.lo \ + cpu-or32.lo \ cpu-ns32k.lo \ cpu-openrisc.lo \ cpu-pdp11.lo \ @@ -120,6 +121,7 @@ ALL_MACHINES_CFILES = \ cpu-mcore.c \ cpu-mips.c \ cpu-mmix.c \ + cpu-or32.c \ cpu-ns32k.c \ cpu-openrisc.c \ cpu-pdp11.c \ @@ -168,6 +170,7 @@ BFD32_BACKENDS = \ coff-m68k.lo \ coff-m88k.lo \ coff-mips.lo \ + coff-or32.lo \ coff-rs6000.lo \ coff-sh.lo \ coff-sparc.lo \ @@ -212,6 +215,7 @@ BFD32_BACKENDS = \ elf32-mcore.lo \ elf32-mips.lo \ elf32-openrisc.lo \ + elf32-or32.lo \ elf32-pj.lo \ elf32-ppc.lo \ elf32-s390.lo \ @@ -313,6 +317,7 @@ BFD32_BACKENDS_CFILES = \ coff-m68k.c \ coff-m88k.c \ coff-mips.c \ + coff-or32.c \ coff-rs6000.c \ coff-sh.c \ coff-sparc.c \ @@ -356,6 +361,7 @@ BFD32_BACKENDS_CFILES = \ elf32-mcore.c \ elf32-mips.c \ elf32-openrisc.c \ + elf32-or32.c \ elf32-pj.c \ elf32-ppc.c \ elf32-s390.c \ @@ -1113,6 +1119,10 @@ elf32-openrisc.lo: elf32-openrisc.c $(INCDIR)/filenames.h \ $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/openrisc.h \ $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \ elf32-target.h +elf32-or32.lo: elf32-or32.c $(INCDIR)/filenames.h elf-bfd.h \ + $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ + $(INCDIR)/bfdlink.h $(INCDIR)/elf/avr.h $(INCDIR)/elf/reloc-macros.h \ + elf32-target.h elf32-pj.lo: elf32-pj.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ $(INCDIR)/elf/external.h $(INCDIR)/elf/pj.h $(INCDIR)/elf/reloc-macros.h \ diff --git a/bfd/Makefile.in b/bfd/Makefile.in index 849242c28..017dfc645 100644 --- a/bfd/Makefile.in +++ b/bfd/Makefile.in @@ -1,6 +1,6 @@ -# Makefile.in generated automatically by automake 1.4 from Makefile.am +# Makefile.in generated automatically by automake 1.4-p5 from Makefile.am -# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc. +# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -199,6 +199,7 @@ ALL_MACHINES = \ cpu-mcore.lo \ cpu-mips.lo \ cpu-mmix.lo \ + cpu-or32.lo \ cpu-ns32k.lo \ cpu-openrisc.lo \ cpu-pdp11.lo \ @@ -247,6 +248,7 @@ ALL_MACHINES_CFILES = \ cpu-mcore.c \ cpu-mips.c \ cpu-mmix.c \ + cpu-or32.c \ cpu-ns32k.c \ cpu-openrisc.c \ cpu-pdp11.c \ @@ -296,6 +298,7 @@ BFD32_BACKENDS = \ coff-m68k.lo \ coff-m88k.lo \ coff-mips.lo \ + coff-or32.lo \ coff-rs6000.lo \ coff-sh.lo \ coff-sparc.lo \ @@ -340,6 +343,7 @@ BFD32_BACKENDS = \ elf32-mcore.lo \ elf32-mips.lo \ elf32-openrisc.lo \ + elf32-or32.lo \ elf32-pj.lo \ elf32-ppc.lo \ elf32-s390.lo \ @@ -442,6 +446,7 @@ BFD32_BACKENDS_CFILES = \ coff-m68k.c \ coff-m88k.c \ coff-mips.c \ + coff-or32.c \ coff-rs6000.c \ coff-sh.c \ coff-sparc.c \ @@ -485,6 +490,7 @@ BFD32_BACKENDS_CFILES = \ elf32-mcore.c \ elf32-mips.c \ elf32-openrisc.c \ + elf32-or32.c \ elf32-pj.c \ elf32-ppc.c \ elf32-s390.c \ @@ -740,7 +746,7 @@ configure.in DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) -TAR = tar +TAR = gtar GZIP_ENV = --best SOURCES = $(libbfd_a_SOURCES) $(libbfd_la_SOURCES) OBJECTS = $(libbfd_a_OBJECTS) $(libbfd_la_OBJECTS) @@ -907,7 +913,7 @@ maintainer-clean-recursive: dot_seen=no; \ rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \ rev="$$subdir $$rev"; \ - test "$$subdir" = "." && dot_seen=yes; \ + test "$$subdir" != "." || dot_seen=yes; \ done; \ test "$$dot_seen" = "no" && rev=". $$rev"; \ target=`echo $@ | sed s/-recursive//`; \ @@ -1657,6 +1663,10 @@ elf32-openrisc.lo: elf32-openrisc.c $(INCDIR)/filenames.h \ $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/openrisc.h \ $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \ elf32-target.h +elf32-or32.lo: elf32-or32.c $(INCDIR)/filenames.h elf-bfd.h \ + $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ + $(INCDIR)/bfdlink.h $(INCDIR)/elf/avr.h $(INCDIR)/elf/reloc-macros.h \ + elf32-target.h elf32-pj.lo: elf32-pj.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ $(INCDIR)/elf/external.h $(INCDIR)/elf/pj.h $(INCDIR)/elf/reloc-macros.h \ diff --git a/bfd/archures.c b/bfd/archures.c index d5600c0e4..892a3799d 100644 --- a/bfd/archures.c +++ b/bfd/archures.c @@ -1,6 +1,6 @@ /* BFD library support routines for architectures. Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, - 2000, 2001 + 2000, 2001, 2002 Free Software Foundation, Inc. Hacked by John Gilmore and Steve Chamberlain of Cygnus Support. @@ -103,6 +103,8 @@ DESCRIPTION .#define bfd_mach_i960_jx 7 .#define bfd_mach_i960_hx 8 . +. bfd_arch_or32, {* OpenRISC 32 *} +. . bfd_arch_a29k, {* AMD 29000 *} . bfd_arch_sparc, {* SPARC *} .#define bfd_mach_sparc 1 @@ -293,16 +295,20 @@ DESCRIPTION . boolean (*scan) PARAMS ((const struct bfd_arch_info *, const char *)); . . const struct bfd_arch_info *next; -.} bfd_arch_info_type; +.} +.bfd_arch_info_type; +. */ extern const bfd_arch_info_type bfd_a29k_arch; extern const bfd_arch_info_type bfd_alpha_arch; extern const bfd_arch_info_type bfd_arc_arch; extern const bfd_arch_info_type bfd_arm_arch; +extern const bfd_arch_info_type bfd_avr_arch; extern const bfd_arch_info_type bfd_cris_arch; extern const bfd_arch_info_type bfd_d10v_arch; extern const bfd_arch_info_type bfd_d30v_arch; +extern const bfd_arch_info_type bfd_fr30_arch; extern const bfd_arch_info_type bfd_h8300_arch; extern const bfd_arch_info_type bfd_h8500_arch; extern const bfd_arch_info_type bfd_hppa_arch; @@ -310,86 +316,87 @@ extern const bfd_arch_info_type bfd_i370_arch; extern const bfd_arch_info_type bfd_i386_arch; extern const bfd_arch_info_type bfd_i860_arch; extern const bfd_arch_info_type bfd_i960_arch; +extern const bfd_arch_info_type bfd_ia64_arch; extern const bfd_arch_info_type bfd_m32r_arch; extern const bfd_arch_info_type bfd_m68hc11_arch; extern const bfd_arch_info_type bfd_m68hc12_arch; extern const bfd_arch_info_type bfd_m68k_arch; extern const bfd_arch_info_type bfd_m88k_arch; +extern const bfd_arch_info_type bfd_mcore_arch; extern const bfd_arch_info_type bfd_mips_arch; +extern const bfd_arch_info_type bfd_mmix_arch; extern const bfd_arch_info_type bfd_mn10200_arch; extern const bfd_arch_info_type bfd_mn10300_arch; +extern const bfd_arch_info_type bfd_ns32k_arch; +extern const bfd_arch_info_type bfd_openrisc_arch; +extern const bfd_arch_info_type bfd_or32_arch; extern const bfd_arch_info_type bfd_pdp11_arch; +extern const bfd_arch_info_type bfd_pj_arch; extern const bfd_arch_info_type bfd_powerpc_arch; extern const bfd_arch_info_type bfd_rs6000_arch; -extern const bfd_arch_info_type bfd_pj_arch; +extern const bfd_arch_info_type bfd_s390_arch; extern const bfd_arch_info_type bfd_sh_arch; extern const bfd_arch_info_type bfd_sparc_arch; extern const bfd_arch_info_type bfd_tic30_arch; extern const bfd_arch_info_type bfd_tic54x_arch; extern const bfd_arch_info_type bfd_tic80_arch; +extern const bfd_arch_info_type bfd_v850_arch; extern const bfd_arch_info_type bfd_vax_arch; extern const bfd_arch_info_type bfd_we32k_arch; -extern const bfd_arch_info_type bfd_z8k_arch; -extern const bfd_arch_info_type bfd_ns32k_arch; extern const bfd_arch_info_type bfd_w65_arch; -extern const bfd_arch_info_type bfd_v850_arch; -extern const bfd_arch_info_type bfd_fr30_arch; -extern const bfd_arch_info_type bfd_mcore_arch; -extern const bfd_arch_info_type bfd_avr_arch; -extern const bfd_arch_info_type bfd_ia64_arch; -extern const bfd_arch_info_type bfd_s390_arch; -extern const bfd_arch_info_type bfd_openrisc_arch; -extern const bfd_arch_info_type bfd_mmix_arch; extern const bfd_arch_info_type bfd_xstormy16_arch; +extern const bfd_arch_info_type bfd_z8k_arch; -static const bfd_arch_info_type * const bfd_archures_list[] = { +static const bfd_arch_info_type * const bfd_archures_list[] = + { #ifdef SELECT_ARCHITECTURES - SELECT_ARCHITECTURES, + SELECT_ARCHITECTURES, #else - &bfd_a29k_arch, - &bfd_alpha_arch, - &bfd_arc_arch, - &bfd_arm_arch, - &bfd_cris_arch, - &bfd_d10v_arch, - &bfd_d30v_arch, - &bfd_h8300_arch, - &bfd_h8500_arch, - &bfd_hppa_arch, - &bfd_i370_arch, - &bfd_i386_arch, - &bfd_i860_arch, - &bfd_i960_arch, - &bfd_m32r_arch, - &bfd_m68hc11_arch, - &bfd_m68hc12_arch, - &bfd_m68k_arch, - &bfd_m88k_arch, - &bfd_mips_arch, - &bfd_mn10200_arch, - &bfd_mn10300_arch, - &bfd_pdp11_arch, - &bfd_powerpc_arch, - &bfd_rs6000_arch, - &bfd_sh_arch, - &bfd_sparc_arch, - &bfd_tic30_arch, - &bfd_tic54x_arch, - &bfd_tic80_arch, - &bfd_vax_arch, - &bfd_we32k_arch, - &bfd_z8k_arch, - &bfd_ns32k_arch, - &bfd_w65_arch, - &bfd_v850_arch, - &bfd_fr30_arch, - &bfd_mcore_arch, - &bfd_avr_arch, - &bfd_ia64_arch, - &bfd_s390_arch, - &bfd_openrisc_arch, - &bfd_mmix_arch, - &bfd_xstormy16_arch, + &bfd_a29k_arch, + &bfd_alpha_arch, + &bfd_arc_arch, + &bfd_arm_arch, + &bfd_avr_arch, + &bfd_cris_arch, + &bfd_d10v_arch, + &bfd_d30v_arch, + &bfd_fr30_arch, + &bfd_h8300_arch, + &bfd_h8500_arch, + &bfd_hppa_arch, + &bfd_i370_arch, + &bfd_i386_arch, + &bfd_i860_arch, + &bfd_i960_arch, + &bfd_ia64_arch, + &bfd_m32r_arch, + &bfd_m68hc11_arch, + &bfd_m68hc12_arch, + &bfd_m68k_arch, + &bfd_m88k_arch, + &bfd_mcore_arch, + &bfd_mips_arch, + &bfd_mmix_arch, + &bfd_mn10200_arch, + &bfd_mn10300_arch, + &bfd_ns32k_arch, + &bfd_openrisc_arch, + &bfd_or32_arch, + &bfd_pdp11_arch, + &bfd_powerpc_arch, + &bfd_rs6000_arch, + &bfd_s390_arch, + &bfd_sh_arch, + &bfd_sparc_arch, + &bfd_tic30_arch, + &bfd_tic54x_arch, + &bfd_tic80_arch, + &bfd_v850_arch, + &bfd_vax_arch, + &bfd_w65_arch, + &bfd_we32k_arch, + &bfd_xstormy16_arch, + &bfd_z8k_arch, #endif 0 }; diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h index 04694dabc..ec79815dd 100644 --- a/bfd/bfd-in2.h +++ b/bfd/bfd-in2.h @@ -1481,6 +1481,8 @@ enum bfd_architecture #define bfd_mach_i960_jx 7 #define bfd_mach_i960_hx 8 + bfd_arch_or32, /* OpenRISC 32 */ + bfd_arch_a29k, /* AMD 29000 */ bfd_arch_sparc, /* SPARC */ #define bfd_mach_sparc 1 @@ -1661,7 +1663,9 @@ typedef struct bfd_arch_info boolean (*scan) PARAMS ((const struct bfd_arch_info *, const char *)); const struct bfd_arch_info *next; -} bfd_arch_info_type; +} +bfd_arch_info_type; + const char * bfd_printable_name PARAMS ((bfd *abfd)); diff --git a/bfd/coff-or32.c b/bfd/coff-or32.c new file mode 100644 index 000000000..ee15b091b --- /dev/null +++ b/bfd/coff-or32.c @@ -0,0 +1,634 @@ +/* BFD back-end for OpenRISC 1000 COFF binaries. + Copyright 2002 Free Software Foundation, Inc. + Contributed by Ivan Guzvinec + + This file is part of BFD, the Binary File Descriptor library. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + +#define OR32 1 + +#include "bfd.h" +#include "sysdep.h" +#include "libbfd.h" +#include "coff/or32.h" +#include "coff/internal.h" +#include "libcoff.h" + +static long get_symbol_value PARAMS ((asymbol *)); +static bfd_reloc_status_type or1_reloc PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **)); +static boolean coff_or1_relocate_section PARAMS ((bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *, struct internal_reloc *, struct internal_syment *, asection **)); +static boolean coff_or1_adjust_symndx PARAMS ((bfd *, struct bfd_link_info *, bfd *, asection *, struct internal_reloc *, boolean *)); + +#define COFF_DEFAULT_SECTION_ALIGNMENT_POWER (2) + +#define INSERT_HWORD(WORD,HWORD) \ + (((WORD) & 0xffff0000) | ((HWORD)& 0x0000ffff)) +#define EXTRACT_HWORD(WORD) \ + ((WORD) & 0x0000ffff) +#define SIGN_EXTEND_HWORD(HWORD) \ + ((HWORD) & 0x8000 ? (HWORD)|(~0xffffL) : (HWORD)) + +#define INSERT_JUMPTARG(WORD,JT) \ + (((WORD) & 0xfc000000) | ((JT)& 0x03ffffff)) +#define EXTRACT_JUMPTARG(WORD) \ + ((WORD) & 0x03ffffff) +#define SIGN_EXTEND_JUMPTARG(JT) \ + ((JT) & 0x04000000 ? (JT)|(~0x03ffffffL) : (JT)) + +/* Provided the symbol, returns the value reffed. */ + +static long +get_symbol_value (symbol) + asymbol *symbol; +{ + long relocation = 0; + + if (bfd_is_com_section (symbol->section)) + relocation = 0; + else + relocation = symbol->value + + symbol->section->output_section->vma + + symbol->section->output_offset; + + return relocation; +} + +/* This function is in charge of performing all the or32 relocations. */ + +static bfd_reloc_status_type +or32_reloc (abfd, reloc_entry, symbol_in, data, input_section, output_bfd, + error_message) + bfd *abfd; + arelent *reloc_entry; + asymbol *symbol_in; + PTR data; + asection *input_section; + bfd *output_bfd; + char **error_message; +{ + /* The consth relocation comes in two parts, we have to remember + the state between calls, in these variables. */ + static boolean part1_consth_active = false; + static unsigned long part1_consth_value; + + unsigned long insn; + unsigned long sym_value; + unsigned long unsigned_value; + unsigned short r_type; + long signed_value; + + unsigned long addr = reloc_entry->address ; /*+ input_section->vma*/ + bfd_byte *hit_data =addr + (bfd_byte *)(data); + + r_type = reloc_entry->howto->type; + + if (output_bfd) + { + /* Partial linking - do nothing. */ + reloc_entry->address += input_section->output_offset; + return bfd_reloc_ok; + } + + if (symbol_in != NULL + && bfd_is_und_section (symbol_in->section)) + { + /* Keep the state machine happy in case we're called again. */ + if (r_type == R_IHIHALF) + { + part1_consth_active = true; + part1_consth_value = 0; + } + + return bfd_reloc_undefined; + } + + if ((part1_consth_active) && (r_type != R_IHCONST)) + { + part1_consth_active = false; + *error_message = (char *) "Missing IHCONST"; + + return bfd_reloc_dangerous; + } + + sym_value = get_symbol_value (symbol_in); + + switch (r_type) + { + case R_IREL: + insn = bfd_get_32(abfd, hit_data); + + /* Take the value in the field and sign extend it. */ + signed_value = EXTRACT_JUMPTARG (insn); + signed_value = SIGN_EXTEND_JUMPTARG (signed_value); + signed_value <<= 2; + + /* See the note on the R_IREL reloc in coff_or32_relocate_section. */ + if (signed_value == - (long) reloc_entry->address) + signed_value = 0; + + signed_value += sym_value + reloc_entry->addend; +#if 0 + if ((signed_value & ~0x3ffff) == 0) + { /* Absolute jmp/call. */ + insn |= (1<<24); /* Make it absolute. */ + /* FIXME: Should we change r_type to R_IABS. */ + } + else +#endif + { + /* Relative jmp/call, so subtract from the value the + address of the place we're coming from. */ + signed_value -= (reloc_entry->address + + input_section->output_section->vma + + input_section->output_offset); + if (signed_value > 0x7ffffff || signed_value < -0x8000000) + return bfd_reloc_overflow; + } + signed_value >>= 2; + insn = INSERT_JUMPTARG (insn, signed_value); + bfd_put_32 (abfd, insn, hit_data); + break; + + case R_ILOHALF: + insn = bfd_get_32 (abfd, hit_data); + unsigned_value = EXTRACT_HWORD (insn); + unsigned_value += sym_value + reloc_entry->addend; + insn = INSERT_HWORD (insn, unsigned_value); + bfd_put_32 (abfd, insn, hit_data); + break; + + case R_IHIHALF: + insn = bfd_get_32 (abfd, hit_data); + + /* consth, part 1 + Just get the symbol value that is referenced. */ + part1_consth_active = true; + part1_consth_value = sym_value + reloc_entry->addend; + + /* Don't modify insn until R_IHCONST. */ + break; + + case R_IHCONST: + insn = bfd_get_32 (abfd, hit_data); + + /* consth, part 2 + Now relocate the reference. */ + if (part1_consth_active == false) + { + *error_message = (char *) "Missing IHIHALF"; + return bfd_reloc_dangerous; + } + + /* sym_ptr_ptr = r_symndx, in coff_slurp_reloc_table() */ + unsigned_value = 0; /*EXTRACT_HWORD(insn) << 16;*/ + unsigned_value += reloc_entry->addend; /* r_symndx */ + unsigned_value += part1_consth_value; + unsigned_value = unsigned_value >> 16; + insn = INSERT_HWORD (insn, unsigned_value); + part1_consth_active = false; + bfd_put_32 (abfd, insn, hit_data); + break; + + case R_BYTE: + insn = bfd_get_8 (abfd, hit_data); + unsigned_value = insn + sym_value + reloc_entry->addend; + if (unsigned_value & 0xffffff00) + return bfd_reloc_overflow; + bfd_put_8 (abfd, unsigned_value, hit_data); + break; + + case R_HWORD: + insn = bfd_get_16 (abfd, hit_data); + unsigned_value = insn + sym_value + reloc_entry->addend; + if (unsigned_value & 0xffff0000) + return bfd_reloc_overflow; + bfd_put_16 (abfd, insn, hit_data); + break; + + case R_WORD: + insn = bfd_get_32 (abfd, hit_data); + insn += sym_value + reloc_entry->addend; + bfd_put_32 (abfd, insn, hit_data); + break; + + default: + *error_message = _("Unrecognized reloc"); + return bfd_reloc_dangerous; + } + + return bfd_reloc_ok; +} + +/* type rightshift + size + bitsize + pc-relative + bitpos + absolute + complain_on_overflow + special_function + relocation name + partial_inplace + src_mask +*/ + +/* FIXME: I'm not real sure about this table. */ +static reloc_howto_type howto_table[] = +{ + { R_ABS, 0, 3, 32, false, 0, complain_overflow_bitfield, or32_reloc, "ABS", true, 0xffffffff,0xffffffff, false }, + {1}, {2}, {3}, {4}, {5}, {6}, {7}, {8}, {9}, {10}, + {11}, {12}, {13}, {14}, {15}, {16}, {17}, {18}, {19}, {20}, + {21}, {22}, {23}, + { R_IREL, 0, 3, 32, true, 0, complain_overflow_signed, or32_reloc, "IREL", true, 0xffffffff,0xffffffff, false }, + { R_IABS, 0, 3, 32, false, 0, complain_overflow_bitfield, or32_reloc, "IABS", true, 0xffffffff,0xffffffff, false }, + { R_ILOHALF, 0, 3, 16, true, 0, complain_overflow_signed, or32_reloc, "ILOHALF", true, 0x0000ffff,0x0000ffff, false }, + { R_IHIHALF, 0, 3, 16, true, 16,complain_overflow_signed, or32_reloc, "IHIHALF", true, 0xffff0000,0xffff0000, false }, + { R_IHCONST, 0, 3, 16, true, 0, complain_overflow_signed, or32_reloc, "IHCONST", true, 0xffff0000,0xffff0000, false }, + { R_BYTE, 0, 0, 8, false, 0, complain_overflow_bitfield, or32_reloc, "BYTE", true, 0x000000ff,0x000000ff, false }, + { R_HWORD, 0, 1, 16, false, 0, complain_overflow_bitfield, or32_reloc, "HWORD", true, 0x0000ffff,0x0000ffff, false }, + { R_WORD, 0, 2, 32, false, 0, complain_overflow_bitfield, or32_reloc, "WORD", true, 0xffffffff,0xffffffff, false }, +}; + +#define BADMAG(x) OR32BADMAG (x) + +#define RELOC_PROCESSING(relent, reloc, symbols, abfd, section) \ + reloc_processing (relent, reloc, symbols, abfd, section) + +static void +reloc_processing (relent,reloc, symbols, abfd, section) + arelent *relent; + struct internal_reloc *reloc; + asymbol **symbols; + bfd *abfd; + asection *section; +{ + static bfd_vma ihihalf_vaddr = (bfd_vma) -1; + + relent->address = reloc->r_vaddr; + relent->howto = howto_table + reloc->r_type; + + if (reloc->r_type == R_IHCONST) + { + /* The address of an R_IHCONST should always be the address of + the immediately preceding R_IHIHALF. relocs generated by gas + are correct, but relocs generated by High C are different (I + can't figure out what the address means for High C). We can + handle both gas and High C by ignoring the address here, and + simply reusing the address saved for R_IHIHALF. */ + if (ihihalf_vaddr == (bfd_vma) -1) + abort (); + + relent->address = ihihalf_vaddr; + ihihalf_vaddr = (bfd_vma) -1; + relent->addend = reloc->r_symndx; + relent->sym_ptr_ptr= bfd_abs_section_ptr->symbol_ptr_ptr; + } + else + { + asymbol *ptr; + relent->sym_ptr_ptr = symbols + obj_convert (abfd)[reloc->r_symndx]; + + ptr = *(relent->sym_ptr_ptr); + + relent->addend = 0; + relent->address-= section->vma; + + if (reloc->r_type == R_IHIHALF) + ihihalf_vaddr = relent->address; + else if (ihihalf_vaddr != (bfd_vma) -1) + abort (); + } +} + +/* The reloc processing routine for the optimized COFF linker. */ + +static boolean +coff_or32_relocate_section (output_bfd, info, input_bfd, input_section, + contents, relocs, syms, sections) + bfd *output_bfd; + struct bfd_link_info *info; + bfd *input_bfd; + asection *input_section; + bfd_byte *contents; + struct internal_reloc *relocs; + struct internal_syment *syms; + asection **sections; +{ + struct internal_reloc *rel; + struct internal_reloc *relend; + boolean hihalf; + bfd_vma hihalf_val; + + /* If we are performing a relocateable link, we don't need to do a + thing. The caller will take care of adjusting the reloc + addresses and symbol indices. */ + if (info->relocateable) + return true; + + hihalf = false; + hihalf_val = 0; + + rel = relocs; + relend = rel + input_section->reloc_count; + + for (; rel < relend; rel++) + { + long symndx; + bfd_byte *loc; + struct coff_link_hash_entry *h; + struct internal_syment *sym; + asection *sec; + bfd_vma val; + boolean overflow; + unsigned long insn; + long signed_value; + unsigned long unsigned_value; + bfd_reloc_status_type rstat; + + symndx = rel->r_symndx; + loc = contents + rel->r_vaddr - input_section->vma; + + if (symndx == -1 || rel->r_type == R_IHCONST) + h = NULL; + else + h = obj_coff_sym_hashes (input_bfd)[symndx]; + + sym = NULL; + sec = NULL; + val = 0; + + /* An R_IHCONST reloc does not have a symbol. Instead, the + symbol index is an addend. R_IHCONST is always used in + conjunction with R_IHHALF. */ + if (rel->r_type != R_IHCONST) + { + if (h == NULL) + { + if (symndx == -1) + sec = bfd_abs_section_ptr; + else + { + sym = syms + symndx; + sec = sections[symndx]; + val = (sec->output_section->vma + + sec->output_offset + + sym->n_value + - sec->vma); + } + } + else + { + if (h->root.type == bfd_link_hash_defined + || h->root.type == bfd_link_hash_defweak) + { + sec = h->root.u.def.section; + val = (h->root.u.def.value + + sec->output_section->vma + + sec->output_offset); + } + else + { + if (! ((*info->callbacks->undefined_symbol) + (info, h->root.root.string, input_bfd, input_section, + rel->r_vaddr - input_section->vma, true))) + return false; + } + } + + if (hihalf) + { + if (! ((*info->callbacks->reloc_dangerous) + (info, "missing IHCONST reloc", input_bfd, + input_section, rel->r_vaddr - input_section->vma))) + return false; + hihalf = false; + } + } + + overflow = false; + + switch (rel->r_type) + { + default: + bfd_set_error (bfd_error_bad_value); + return false; + + case R_IREL: + insn = bfd_get_32 (input_bfd, loc); + + /* Extract the addend. */ + signed_value = EXTRACT_JUMPTARG (insn); + signed_value = SIGN_EXTEND_JUMPTARG (signed_value); + signed_value <<= 2; + + /* Determine the destination of the jump. */ + signed_value += val; + +#if 0 + if ((signed_value & ~0x3ffff) == 0) + { + /* We can use an absolute jump. */ + insn |= (1 << 24); + } + else +#endif + { + /* Make the destination PC relative. */ + signed_value -= (input_section->output_section->vma + + input_section->output_offset + + (rel->r_vaddr - input_section->vma)); + if (signed_value > 0x7ffffff || signed_value < - 0x8000000) + { + overflow = true; + signed_value = 0; + } + } + + /* Put the adjusted value back into the instruction. */ + signed_value >>= 2; + insn = INSERT_JUMPTARG(insn, signed_value); + + bfd_put_32 (input_bfd, (bfd_vma) insn, loc); + break; + + case R_ILOHALF: + insn = bfd_get_32 (input_bfd, loc); + unsigned_value = EXTRACT_HWORD (insn); + unsigned_value += val; + insn = INSERT_HWORD (insn, unsigned_value); + bfd_put_32 (input_bfd, insn, loc); + break; + + case R_IHIHALF: + /* Save the value for the R_IHCONST reloc. */ + hihalf = true; + hihalf_val = val; + break; + + case R_IHCONST: + if (! hihalf) + { + if (! ((*info->callbacks->reloc_dangerous) + (info, "missing IHIHALF reloc", input_bfd, + input_section, rel->r_vaddr - input_section->vma))) + return false; + hihalf_val = 0; + } + + insn = bfd_get_32 (input_bfd, loc); + unsigned_value = rel->r_symndx + hihalf_val; + unsigned_value >>= 16; + insn = INSERT_HWORD (insn, unsigned_value); + bfd_put_32 (input_bfd, (bfd_vma) insn, loc); + + hihalf = false; + break; + + case R_BYTE: + case R_HWORD: + case R_WORD: + rstat = _bfd_relocate_contents (howto_table + rel->r_type, + input_bfd, val, loc); + if (rstat == bfd_reloc_overflow) + overflow = true; + else if (rstat != bfd_reloc_ok) + abort (); + break; + } + + if (overflow) + { + const char *name; + char buf[SYMNMLEN + 1]; + + if (symndx == -1) + name = "*ABS*"; + else if (h != NULL) + name = h->root.root.string; + else if (sym == NULL) + name = "*unknown*"; + else if (sym->_n._n_n._n_zeroes == 0 + && sym->_n._n_n._n_offset != 0) + name = obj_coff_strings (input_bfd) + sym->_n._n_n._n_offset; + else + { + strncpy (buf, sym->_n._n_name, SYMNMLEN); + buf[SYMNMLEN] = '\0'; + name = buf; + } + + if (! ((*info->callbacks->reloc_overflow) + (info, name, howto_table[rel->r_type].name, (bfd_vma) 0, + input_bfd, input_section, + rel->r_vaddr - input_section->vma))) + return false; + } + } + + return true; +} + +#define coff_relocate_section coff_or32_relocate_section + +/* We don't want to change the symndx of a R_IHCONST reloc, since it + is actually an addend, not a symbol index at all. */ + +static boolean +coff_or32_adjust_symndx (obfd, info, ibfd, sec, irel, adjustedp) + bfd *obfd ATTRIBUTE_UNUSED; + struct bfd_link_info *info ATTRIBUTE_UNUSED; + bfd *ibfd ATTRIBUTE_UNUSED; + asection *sec ATTRIBUTE_UNUSED; + struct internal_reloc *irel; + boolean *adjustedp; +{ + if (irel->r_type == R_IHCONST) + *adjustedp = true; + else + *adjustedp = false; + return true; +} + +#define coff_adjust_symndx coff_or32_adjust_symndx + +#include "coffcode.h" + +const bfd_target or32coff_big_vec = +{ + "coff-or32-big", /* Name. */ + bfd_target_coff_flavour, + BFD_ENDIAN_BIG, /* Data byte order is big. */ + BFD_ENDIAN_BIG, /* Header byte order is big. */ + + (HAS_RELOC | EXEC_P | /* Object flags. */ + HAS_LINENO | HAS_DEBUG | + HAS_SYMS | HAS_LOCALS | WP_TEXT), + + (SEC_HAS_CONTENTS | SEC_ALLOC | /* Section flags. */ + SEC_LOAD | SEC_RELOC | + SEC_READONLY ), + '_', /* Leading underscore. */ + '/', /* ar_pad_char. */ + 15, /* ar_max_namelen. */ + + /* Data. */ + bfd_getb64, bfd_getb_signed_64, bfd_putb64, + bfd_getb32, bfd_getb_signed_32, bfd_putb32, + bfd_getb16, bfd_getb_signed_16, bfd_putb16, + + /* Headers. */ + bfd_getb64, bfd_getb_signed_64, bfd_putb64, + bfd_getb32, bfd_getb_signed_32, bfd_putb32, + bfd_getb16, bfd_getb_signed_16, bfd_putb16, + + { + _bfd_dummy_target, + coff_object_p, + bfd_generic_archive_p, + _bfd_dummy_target + }, + { + bfd_false, + coff_mkobject, + _bfd_generic_mkarchive, + bfd_false + }, + { + bfd_false, + coff_write_object_contents, + _bfd_write_archive_contents, + bfd_false + }, + + BFD_JUMP_TABLE_GENERIC (coff), + BFD_JUMP_TABLE_COPY (coff), + BFD_JUMP_TABLE_CORE (_bfd_nocore), + BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff), + BFD_JUMP_TABLE_SYMBOLS (coff), + BFD_JUMP_TABLE_RELOCS (coff), + BFD_JUMP_TABLE_WRITE (coff), + BFD_JUMP_TABLE_LINK (coff), + BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), + + /* Alternative_target. */ +#ifdef TARGET_LITTLE_SYM + & TARGET_LITTLE_SYM, +#else + NULL, +#endif + + COFF_SWAP_TABLE +}; diff --git a/bfd/coffcode.h b/bfd/coffcode.h index 0b185a56b..976efe19c 100644 --- a/bfd/coffcode.h +++ b/bfd/coffcode.h @@ -1822,6 +1822,13 @@ coff_set_arch_mach_hook (abfd, filehdr) machine = 0; switch (internal_f->f_magic) { +#ifdef OR32_MAGIC_BIG + case OR32_MAGIC_BIG: + case OR32_MAGIC_LITTLE: + arch = bfd_arch_or32; + machine = 0; + break; +#endif #ifdef PPCMAGIC case PPCMAGIC: arch = bfd_arch_powerpc; @@ -2779,6 +2786,15 @@ coff_set_flags (abfd, magicp, flagsp) return true; #endif +#ifdef OR32_MAGIC_BIG + case bfd_arch_or32: + if (bfd_big_endian (abfd)) + * magicp = OR32_MAGIC_BIG; + else + * magicp = OR32_MAGIC_LITTLE; + return true; +#endif + default: /* Unknown architecture. */ /* Fall through to "return false" below, to avoid "statement never reached" errors on the one below. */ @@ -3830,6 +3846,11 @@ coff_write_object_contents (abfd) internal_a.magic = MIPS_PE_MAGIC; #endif +#ifdef OR32 +#define __A_MAGIC_SET__ + internal_a.magic = NMAGIC; /* Assume separate i/d. */ +#endif + #ifndef __A_MAGIC_SET__ #include "Your aouthdr magic number is not being set!" #else diff --git a/bfd/config.bfd b/bfd/config.bfd index 0fe746486..f89e6e052 100644 --- a/bfd/config.bfd +++ b/bfd/config.bfd @@ -43,6 +43,7 @@ m6812*|m68hc12*) targ_archs="bfd_m68hc12_arch bfd_m68hc11_arch" ;; m68*) targ_archs=bfd_m68k_arch ;; m88*) targ_archs=bfd_m88k_arch ;; mips*) targ_archs=bfd_mips_arch ;; +or32*) targ_archs=bfd_or32_arch ;; pdp11*) targ_archs=bfd_pdp11_arch ;; pj*) targ_archs="bfd_pj_arch bfd_i386_arch";; powerpc*) targ_archs="bfd_rs6000_arch bfd_powerpc_arch" ;; @@ -759,6 +760,15 @@ case "${targ}" in targ_defvec=bfd_elf32_openrisc_vec ;; + or32-*-coff | or32-*-rtems*) + targ_defvec=or32coff_big_vec + targ_underscore=yes + ;; + + or32-*-elf) + targ_defvec=bfd_elf32_or32_big_vec + ;; + pdp11-*-*) targ_defvec=pdp11_aout_vec targ_underscore=yes diff --git a/bfd/configure b/bfd/configure index 019eb1682..e255afba8 100755 --- a/bfd/configure +++ b/bfd/configure @@ -721,49 +721,249 @@ test "$host_alias" != "$target_alias" && NONENONEs,x,x, && program_prefix=${target_alias}- +# Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:728: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_CC="gcc" + break + fi + done + IFS="$ac_save_ifs" +fi +fi +CC="$ac_cv_prog_CC" +if test -n "$CC"; then + echo "$ac_t""$CC" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi - echo $ac_n "checking for strerror in -lcposix""... $ac_c" 1>&6 -echo "configure:727: checking for strerror in -lcposix" >&5 -ac_lib_var=`echo cposix'_'strerror | sed 'y%./+-%__p_%'` -if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:758: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else - ac_save_LIBS="$LIBS" -LIBS="-lcposix $LIBS" -cat > conftest.$ac_ext <&6 +else + echo "$ac_t""no" 1>&6 +fi + + if test -z "$CC"; then + case "`uname -s`" in + *win32* | *WIN32*) + # Extract the first word of "cl", so it can be a program name with args. +set dummy cl; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:809: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_CC="cl" + break + fi + done + IFS="$ac_save_ifs" +fi +fi +CC="$ac_cv_prog_CC" +if test -n "$CC"; then + echo "$ac_t""$CC" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + ;; + esac + fi + test -z "$CC" && { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; } +fi + +echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 +echo "configure:841: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 + +ac_ext=c +# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. +ac_cpp='$CPP $CPPFLAGS' +ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' +ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' +cross_compiling=$ac_cv_prog_cc_cross + +cat > conftest.$ac_ext << EOF + +#line 852 "configure" #include "confdefs.h" -/* Override any gcc2 internal prototype to avoid an error. */ -/* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ -char strerror(); -int main() { -strerror() -; return 0; } +main(){return(0);} EOF -if { (eval echo configure:746: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then - rm -rf conftest* - eval "ac_cv_lib_$ac_lib_var=yes" +if { (eval echo configure:857: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + ac_cv_prog_cc_works=yes + # If we can't run a trivial program, we are probably using a cross compiler. + if (./conftest; exit) 2>/dev/null; then + ac_cv_prog_cc_cross=no + else + ac_cv_prog_cc_cross=yes + fi else echo "configure: failed program was:" >&5 cat conftest.$ac_ext >&5 - rm -rf conftest* - eval "ac_cv_lib_$ac_lib_var=no" + ac_cv_prog_cc_works=no +fi +rm -fr conftest* +ac_ext=c +# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. +ac_cpp='$CPP $CPPFLAGS' +ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' +ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' +cross_compiling=$ac_cv_prog_cc_cross + +echo "$ac_t""$ac_cv_prog_cc_works" 1>&6 +if test $ac_cv_prog_cc_works = no; then + { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } +fi +echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 +echo "configure:883: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 +cross_compiling=$ac_cv_prog_cc_cross + +echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 +echo "configure:888: checking whether we are using GNU C" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.c <&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then + ac_cv_prog_gcc=yes +else + ac_cv_prog_gcc=no +fi +fi + +echo "$ac_t""$ac_cv_prog_gcc" 1>&6 + +if test $ac_cv_prog_gcc = yes; then + GCC=yes +else + GCC= +fi + +ac_test_CFLAGS="${CFLAGS+set}" +ac_save_CFLAGS="$CFLAGS" +CFLAGS= +echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 +echo "configure:916: checking whether ${CC-cc} accepts -g" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + echo 'void f(){}' > conftest.c +if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then + ac_cv_prog_cc_g=yes +else + ac_cv_prog_cc_g=no fi rm -f conftest* -LIBS="$ac_save_LIBS" fi -if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then + +echo "$ac_t""$ac_cv_prog_cc_g" 1>&6 +if test "$ac_test_CFLAGS" = set; then + CFLAGS="$ac_save_CFLAGS" +elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" + else + CFLAGS="-g" + fi +else + if test "$GCC" = yes; then + CFLAGS="-O2" + else + CFLAGS= + fi +fi + +echo $ac_n "checking for POSIXized ISC""... $ac_c" 1>&6 +echo "configure:948: checking for POSIXized ISC" >&5 +if test -d /etc/conf/kconfig.d && + grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1 +then echo "$ac_t""yes" 1>&6 - LIBS="$LIBS -lcposix" + ISC=yes # If later tests want to check for ISC. + cat >> confdefs.h <<\EOF +#define _POSIX_SOURCE 1 +EOF + + if test "$GCC" = yes; then + CC="$CC -posix" + else + CC="$CC -Xp" + fi else echo "$ac_t""no" 1>&6 + ISC= fi - - # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or @@ -777,7 +977,7 @@ fi # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # ./install, which can be erroneously created by make from ./install.sh. echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 -echo "configure:781: checking for a BSD compatible install" >&5 +echo "configure:981: checking for a BSD compatible install" >&5 if test -z "$INSTALL"; then if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -830,7 +1030,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 -echo "configure:834: checking whether build environment is sane" >&5 +echo "configure:1034: checking whether build environment is sane" >&5 # Just in case sleep 1 echo timestamp > conftestfile @@ -887,7 +1087,7 @@ test "$program_suffix" != NONE && test "$program_transform_name" = "" && program_transform_name="s,x,x," echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 -echo "configure:891: checking whether ${MAKE-make} sets \${MAKE}" >&5 +echo "configure:1091: checking whether ${MAKE-make} sets \${MAKE}" >&5 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -933,7 +1133,7 @@ EOF missing_dir=`cd $ac_aux_dir && pwd` echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 -echo "configure:937: checking for working aclocal" >&5 +echo "configure:1137: checking for working aclocal" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -946,7 +1146,7 @@ else fi echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 -echo "configure:950: checking for working autoconf" >&5 +echo "configure:1150: checking for working autoconf" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -959,7 +1159,7 @@ else fi echo $ac_n "checking for working automake""... $ac_c" 1>&6 -echo "configure:963: checking for working automake" >&5 +echo "configure:1163: checking for working automake" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -972,7 +1172,7 @@ else fi echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 -echo "configure:976: checking for working autoheader" >&5 +echo "configure:1176: checking for working autoheader" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -985,7 +1185,7 @@ else fi echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 -echo "configure:989: checking for working makeinfo" >&5 +echo "configure:1189: checking for working makeinfo" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -1021,7 +1221,7 @@ fi # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. set dummy ${ac_tool_prefix}ar; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1025: checking for $ac_word" >&5 +echo "configure:1225: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1053,7 +1253,7 @@ fi # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1057: checking for $ac_word" >&5 +echo "configure:1257: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1085,7 +1285,7 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1089: checking for $ac_word" >&5 +echo "configure:1289: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1188,228 +1388,6 @@ else enable_fast_install=yes fi -# Extract the first word of "gcc", so it can be a program name with args. -set dummy gcc; ac_word=$2 -echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1195: checking for $ac_word" >&5 -if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" - ac_dummy="$PATH" - for ac_dir in $ac_dummy; do - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/$ac_word; then - ac_cv_prog_CC="gcc" - break - fi - done - IFS="$ac_save_ifs" -fi -fi -CC="$ac_cv_prog_CC" -if test -n "$CC"; then - echo "$ac_t""$CC" 1>&6 -else - echo "$ac_t""no" 1>&6 -fi - -if test -z "$CC"; then - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1225: checking for $ac_word" >&5 -if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" - ac_prog_rejected=no - ac_dummy="$PATH" - for ac_dir in $ac_dummy; do - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/$ac_word; then - if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then - ac_prog_rejected=yes - continue - fi - ac_cv_prog_CC="cc" - break - fi - done - IFS="$ac_save_ifs" -if test $ac_prog_rejected = yes; then - # We found a bogon in the path, so make sure we never use it. - set dummy $ac_cv_prog_CC - shift - if test $# -gt 0; then - # We chose a different compiler from the bogus one. - # However, it has the same basename, so the bogon will be chosen - # first if we set CC to just the basename; use the full file name. - shift - set dummy "$ac_dir/$ac_word" "$@" - shift - ac_cv_prog_CC="$@" - fi -fi -fi -fi -CC="$ac_cv_prog_CC" -if test -n "$CC"; then - echo "$ac_t""$CC" 1>&6 -else - echo "$ac_t""no" 1>&6 -fi - - if test -z "$CC"; then - case "`uname -s`" in - *win32* | *WIN32*) - # Extract the first word of "cl", so it can be a program name with args. -set dummy cl; ac_word=$2 -echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1276: checking for $ac_word" >&5 -if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" - ac_dummy="$PATH" - for ac_dir in $ac_dummy; do - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/$ac_word; then - ac_cv_prog_CC="cl" - break - fi - done - IFS="$ac_save_ifs" -fi -fi -CC="$ac_cv_prog_CC" -if test -n "$CC"; then - echo "$ac_t""$CC" 1>&6 -else - echo "$ac_t""no" 1>&6 -fi - ;; - esac - fi - test -z "$CC" && { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; } -fi - -echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 -echo "configure:1308: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 - -ac_ext=c -# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. -ac_cpp='$CPP $CPPFLAGS' -ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' -ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' -cross_compiling=$ac_cv_prog_cc_cross - -cat > conftest.$ac_ext << EOF - -#line 1319 "configure" -#include "confdefs.h" - -main(){return(0);} -EOF -if { (eval echo configure:1324: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then - ac_cv_prog_cc_works=yes - # If we can't run a trivial program, we are probably using a cross compiler. - if (./conftest; exit) 2>/dev/null; then - ac_cv_prog_cc_cross=no - else - ac_cv_prog_cc_cross=yes - fi -else - echo "configure: failed program was:" >&5 - cat conftest.$ac_ext >&5 - ac_cv_prog_cc_works=no -fi -rm -fr conftest* -ac_ext=c -# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. -ac_cpp='$CPP $CPPFLAGS' -ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' -ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' -cross_compiling=$ac_cv_prog_cc_cross - -echo "$ac_t""$ac_cv_prog_cc_works" 1>&6 -if test $ac_cv_prog_cc_works = no; then - { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } -fi -echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 -echo "configure:1350: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 -echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 -cross_compiling=$ac_cv_prog_cc_cross - -echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 -echo "configure:1355: checking whether we are using GNU C" >&5 -if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - cat > conftest.c <&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then - ac_cv_prog_gcc=yes -else - ac_cv_prog_gcc=no -fi -fi - -echo "$ac_t""$ac_cv_prog_gcc" 1>&6 - -if test $ac_cv_prog_gcc = yes; then - GCC=yes -else - GCC= -fi - -ac_test_CFLAGS="${CFLAGS+set}" -ac_save_CFLAGS="$CFLAGS" -CFLAGS= -echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 -echo "configure:1383: checking whether ${CC-cc} accepts -g" >&5 -if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - echo 'void f(){}' > conftest.c -if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then - ac_cv_prog_cc_g=yes -else - ac_cv_prog_cc_g=no -fi -rm -f conftest* - -fi - -echo "$ac_t""$ac_cv_prog_cc_g" 1>&6 -if test "$ac_test_CFLAGS" = set; then - CFLAGS="$ac_save_CFLAGS" -elif test $ac_cv_prog_cc_g = yes; then - if test "$GCC" = yes; then - CFLAGS="-g -O2" - else - CFLAGS="-g" - fi -else - if test "$GCC" = yes; then - CFLAGS="-O2" - else - CFLAGS= - fi -fi - # Check whether --with-gnu-ld or --without-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then withval="$with_gnu_ld" @@ -1422,7 +1400,7 @@ ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6 -echo "configure:1426: checking for ld used by GCC" >&5 +echo "configure:1404: checking for ld used by GCC" >&5 case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw @@ -1452,10 +1430,10 @@ echo "configure:1426: checking for ld used by GCC" >&5 esac elif test "$with_gnu_ld" = yes; then echo $ac_n "checking for GNU ld""... $ac_c" 1>&6 -echo "configure:1456: checking for GNU ld" >&5 +echo "configure:1434: checking for GNU ld" >&5 else echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6 -echo "configure:1459: checking for non-GNU ld" >&5 +echo "configure:1437: checking for non-GNU ld" >&5 fi if eval "test \"`echo '$''{'lt_cv_path_LD'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -1490,7 +1468,7 @@ else fi test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; } echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6 -echo "configure:1494: checking if the linker ($LD) is GNU ld" >&5 +echo "configure:1472: checking if the linker ($LD) is GNU ld" >&5 if eval "test \"`echo '$''{'lt_cv_prog_gnu_ld'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1507,7 +1485,7 @@ with_gnu_ld=$lt_cv_prog_gnu_ld echo $ac_n "checking for $LD option to reload object files""... $ac_c" 1>&6 -echo "configure:1511: checking for $LD option to reload object files" >&5 +echo "configure:1489: checking for $LD option to reload object files" >&5 if eval "test \"`echo '$''{'lt_cv_ld_reload_flag'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1519,7 +1497,7 @@ reload_flag=$lt_cv_ld_reload_flag test -n "$reload_flag" && reload_flag=" $reload_flag" echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6 -echo "configure:1523: checking for BSD-compatible nm" >&5 +echo "configure:1501: checking for BSD-compatible nm" >&5 if eval "test \"`echo '$''{'lt_cv_path_NM'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1557,7 +1535,7 @@ NM="$lt_cv_path_NM" echo "$ac_t""$NM" 1>&6 echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 -echo "configure:1561: checking whether ln -s works" >&5 +echo "configure:1539: checking whether ln -s works" >&5 if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1578,7 +1556,7 @@ else fi echo $ac_n "checking how to recognise dependant libraries""... $ac_c" 1>&6 -echo "configure:1582: checking how to recognise dependant libraries" >&5 +echo "configure:1560: checking how to recognise dependant libraries" >&5 if eval "test \"`echo '$''{'lt_cv_deplibs_check_method'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1751,13 +1729,13 @@ file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method echo $ac_n "checking for object suffix""... $ac_c" 1>&6 -echo "configure:1755: checking for object suffix" >&5 +echo "configure:1733: checking for object suffix" >&5 if eval "test \"`echo '$''{'ac_cv_objext'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else rm -f conftest* echo 'int i = 1;' > conftest.$ac_ext -if { (eval echo configure:1761: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1739: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then for ac_file in conftest.*; do case $ac_file in *.c) ;; @@ -1777,7 +1755,7 @@ ac_objext=$ac_cv_objext echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 -echo "configure:1781: checking for executable suffix" >&5 +echo "configure:1759: checking for executable suffix" >&5 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1787,7 +1765,7 @@ else rm -f conftest* echo 'int main () { return 0; }' > conftest.$ac_ext ac_cv_exeext= - if { (eval echo configure:1791: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then + if { (eval echo configure:1769: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then for file in conftest.*; do case $file in *.c | *.o | *.obj) ;; @@ -1814,7 +1792,7 @@ case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then echo $ac_n "checking for ${ac_tool_prefix}file""... $ac_c" 1>&6 -echo "configure:1818: checking for ${ac_tool_prefix}file" >&5 +echo "configure:1796: checking for ${ac_tool_prefix}file" >&5 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1876,7 +1854,7 @@ fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then echo $ac_n "checking for file""... $ac_c" 1>&6 -echo "configure:1880: checking for file" >&5 +echo "configure:1858: checking for file" >&5 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1947,7 +1925,7 @@ esac # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1951: checking for $ac_word" >&5 +echo "configure:1929: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1979,7 +1957,7 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1983: checking for $ac_word" >&5 +echo "configure:1961: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2014,7 +1992,7 @@ fi # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2018: checking for $ac_word" >&5 +echo "configure:1996: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2046,7 +2024,7 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2050: checking for $ac_word" >&5 +echo "configure:2028: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2113,8 +2091,8 @@ test x"$pic_mode" = xno && libtool_flags="$libtool_flags --prefer-non-pic" case $host in *-*-irix6*) # Find out which ABI we are using. - echo '#line 2117 "configure"' > conftest.$ac_ext - if { (eval echo configure:2118: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + echo '#line 2095 "configure"' > conftest.$ac_ext + if { (eval echo configure:2096: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" @@ -2133,7 +2111,7 @@ case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext - if { (eval echo configure:2137: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + if { (eval echo configure:2115: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then case "`/usr/bin/file conftest.o`" in *ELF-32*) HPUX_IA64_MODE="32" @@ -2151,7 +2129,7 @@ ia64-*-hpux*) SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6 -echo "configure:2155: checking whether the C compiler needs -belf" >&5 +echo "configure:2133: checking whether the C compiler needs -belf" >&5 if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2164,14 +2142,14 @@ ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$a cross_compiling=$ac_cv_prog_cc_cross cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2153: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* lt_cv_cc_needs_belf=yes else @@ -2361,7 +2339,7 @@ if test -z "$target" ; then fi echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 -echo "configure:2365: checking whether to enable maintainer-specific portions of Makefiles" >&5 +echo "configure:2343: checking whether to enable maintainer-specific portions of Makefiles" >&5 # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given. if test "${enable_maintainer_mode+set}" = set; then enableval="$enable_maintainer_mode" @@ -2386,7 +2364,7 @@ fi echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 -echo "configure:2390: checking for executable suffix" >&5 +echo "configure:2368: checking for executable suffix" >&5 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2396,7 +2374,7 @@ else rm -f conftest* echo 'int main () { return 0; }' > conftest.$ac_ext ac_cv_exeext= - if { (eval echo configure:2400: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then + if { (eval echo configure:2378: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then for file in conftest.*; do case $file in *.c | *.o | *.obj) ;; @@ -2426,7 +2404,7 @@ bfd_default_target_size=32 # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2430: checking for $ac_word" >&5 +echo "configure:2408: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2456,7 +2434,7 @@ if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2460: checking for $ac_word" >&5 +echo "configure:2438: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2507,7 +2485,7 @@ fi # Extract the first word of "cl", so it can be a program name with args. set dummy cl; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2511: checking for $ac_word" >&5 +echo "configure:2489: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2539,7 +2517,7 @@ fi fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 -echo "configure:2543: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 +echo "configure:2521: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 ac_ext=c # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. @@ -2550,12 +2528,12 @@ cross_compiling=$ac_cv_prog_cc_cross cat > conftest.$ac_ext << EOF -#line 2554 "configure" +#line 2532 "configure" #include "confdefs.h" main(){return(0);} EOF -if { (eval echo configure:2559: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2537: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ac_cv_prog_cc_works=yes # If we can't run a trivial program, we are probably using a cross compiler. if (./conftest; exit) 2>/dev/null; then @@ -2581,12 +2559,12 @@ if test $ac_cv_prog_cc_works = no; then { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 -echo "configure:2585: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo "configure:2563: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 cross_compiling=$ac_cv_prog_cc_cross echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 -echo "configure:2590: checking whether we are using GNU C" >&5 +echo "configure:2568: checking whether we are using GNU C" >&5 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2595,7 +2573,7 @@ else yes; #endif EOF -if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2599: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then +if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2577: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then ac_cv_prog_gcc=yes else ac_cv_prog_gcc=no @@ -2614,7 +2592,7 @@ ac_test_CFLAGS="${CFLAGS+set}" ac_save_CFLAGS="$CFLAGS" CFLAGS= echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 -echo "configure:2618: checking whether ${CC-cc} accepts -g" >&5 +echo "configure:2596: checking whether ${CC-cc} accepts -g" >&5 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2648,7 +2626,7 @@ fi ALL_LINGUAS="fr tr ja es sv" echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 -echo "configure:2652: checking how to run the C preprocessor" >&5 +echo "configure:2630: checking how to run the C preprocessor" >&5 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= @@ -2663,13 +2641,13 @@ else # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2673: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2651: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -2680,13 +2658,13 @@ else rm -rf conftest* CPP="${CC-cc} -E -traditional-cpp" cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2690: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2668: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -2697,13 +2675,13 @@ else rm -rf conftest* CPP="${CC-cc} -nologo -E" cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2707: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2685: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -2730,7 +2708,7 @@ echo "$ac_t""$CPP" 1>&6 # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2734: checking for $ac_word" >&5 +echo "configure:2712: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2758,12 +2736,12 @@ else fi echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 -echo "configure:2762: checking for ANSI C header files" >&5 +echo "configure:2740: checking for ANSI C header files" >&5 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -2771,7 +2749,7 @@ else #include EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2775: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2753: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2788,7 +2766,7 @@ rm -f conftest* if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat > conftest.$ac_ext < EOF @@ -2806,7 +2784,7 @@ fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat > conftest.$ac_ext < EOF @@ -2827,7 +2805,7 @@ if test "$cross_compiling" = yes; then : else cat > conftest.$ac_ext < #define ISLOWER(c) ('a' <= (c) && (c) <= 'z') @@ -2838,7 +2816,7 @@ if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2); exit (0); } EOF -if { (eval echo configure:2842: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:2820: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then : else @@ -2862,12 +2840,12 @@ EOF fi echo $ac_n "checking for working const""... $ac_c" 1>&6 -echo "configure:2866: checking for working const" >&5 +echo "configure:2844: checking for working const" >&5 if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2898: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_const=yes else @@ -2937,21 +2915,21 @@ EOF fi echo $ac_n "checking for inline""... $ac_c" 1>&6 -echo "configure:2941: checking for inline" >&5 +echo "configure:2919: checking for inline" >&5 if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2933: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_inline=$ac_kw; break else @@ -2977,12 +2955,12 @@ EOF esac echo $ac_n "checking for off_t""... $ac_c" 1>&6 -echo "configure:2981: checking for off_t" >&5 +echo "configure:2959: checking for off_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_off_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #if STDC_HEADERS @@ -3010,12 +2988,12 @@ EOF fi echo $ac_n "checking for size_t""... $ac_c" 1>&6 -echo "configure:3014: checking for size_t" >&5 +echo "configure:2992: checking for size_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #if STDC_HEADERS @@ -3045,19 +3023,19 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6 -echo "configure:3049: checking for working alloca.h" >&5 +echo "configure:3027: checking for working alloca.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { char *p = alloca(2 * sizeof(int)); ; return 0; } EOF -if { (eval echo configure:3061: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3039: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_header_alloca_h=yes else @@ -3078,12 +3056,12 @@ EOF fi echo $ac_n "checking for alloca""... $ac_c" 1>&6 -echo "configure:3082: checking for alloca" >&5 +echo "configure:3060: checking for alloca" >&5 if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3093: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_func_alloca_works=yes else @@ -3143,12 +3121,12 @@ EOF echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6 -echo "configure:3147: checking whether alloca needs Cray hooks" >&5 +echo "configure:3125: checking whether alloca needs Cray hooks" >&5 if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&6 if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:3177: checking for $ac_func" >&5 +echo "configure:3155: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3183: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -3228,7 +3206,7 @@ done fi echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6 -echo "configure:3232: checking stack direction for C alloca" >&5 +echo "configure:3210: checking stack direction for C alloca" >&5 if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3236,7 +3214,7 @@ else ac_cv_c_stack_direction=0 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3237: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_c_stack_direction=1 else @@ -3276,21 +3254,21 @@ EOF fi -for ac_hdr in unistd.h +for ac_hdr in stdlib.h unistd.h sys/stat.h sys/types.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:3284: checking for $ac_hdr" >&5 +echo "configure:3262: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:3294: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3272: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -3319,12 +3297,12 @@ done for ac_func in getpagesize do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:3323: checking for $ac_func" >&5 +echo "configure:3301: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3329: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -3372,7 +3350,7 @@ fi done echo $ac_n "checking for working mmap""... $ac_c" 1>&6 -echo "configure:3376: checking for working mmap" >&5 +echo "configure:3354: checking for working mmap" >&5 if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3380,7 +3358,7 @@ else ac_cv_func_mmap_fixed_mapped=no else cat > conftest.$ac_ext < #include +#if HAVE_SYS_TYPES_H +# include +#endif + +#if HAVE_STDLIB_H +# include +#endif + +#if HAVE_SYS_STAT_H +# include +#endif + +#if HAVE_UNISTD_H +# include +#endif + /* This mess was copied from the GNU getpagesize.h. */ #ifndef HAVE_GETPAGESIZE -# ifdef HAVE_UNISTD_H -# include -# endif /* Assume that all systems that can run configure have sys/param.h. */ # ifndef HAVE_SYS_PARAM_H @@ -3520,7 +3511,7 @@ main() } EOF -if { (eval echo configure:3524: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3515: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_func_mmap_fixed_mapped=yes else @@ -3548,17 +3539,17 @@ unistd.h values.h sys/param.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:3552: checking for $ac_hdr" >&5 +echo "configure:3543: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:3562: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3553: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -3588,12 +3579,12 @@ done __argz_count __argz_stringify __argz_next do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:3592: checking for $ac_func" >&5 +echo "configure:3583: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3611: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -3645,12 +3636,12 @@ done for ac_func in stpcpy do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:3649: checking for $ac_func" >&5 +echo "configure:3640: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3668: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -3707,19 +3698,19 @@ EOF if test $ac_cv_header_locale_h = yes; then echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6 -echo "configure:3711: checking for LC_MESSAGES" >&5 +echo "configure:3702: checking for LC_MESSAGES" >&5 if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { return LC_MESSAGES ; return 0; } EOF -if { (eval echo configure:3723: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3714: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* am_cv_val_LC_MESSAGES=yes else @@ -3740,7 +3731,7 @@ EOF fi fi echo $ac_n "checking whether NLS is requested""... $ac_c" 1>&6 -echo "configure:3744: checking whether NLS is requested" >&5 +echo "configure:3735: checking whether NLS is requested" >&5 # Check whether --enable-nls or --disable-nls was given. if test "${enable_nls+set}" = set; then enableval="$enable_nls" @@ -3760,7 +3751,7 @@ fi EOF echo $ac_n "checking whether included gettext is requested""... $ac_c" 1>&6 -echo "configure:3764: checking whether included gettext is requested" >&5 +echo "configure:3755: checking whether included gettext is requested" >&5 # Check whether --with-included-gettext or --without-included-gettext was given. if test "${with_included_gettext+set}" = set; then withval="$with_included_gettext" @@ -3779,17 +3770,17 @@ fi ac_safe=`echo "libintl.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for libintl.h""... $ac_c" 1>&6 -echo "configure:3783: checking for libintl.h" >&5 +echo "configure:3774: checking for libintl.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:3793: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3784: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -3806,19 +3797,19 @@ fi if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for gettext in libc""... $ac_c" 1>&6 -echo "configure:3810: checking for gettext in libc" >&5 +echo "configure:3801: checking for gettext in libc" >&5 if eval "test \"`echo '$''{'gt_cv_func_gettext_libc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { return (int) gettext ("") ; return 0; } EOF -if { (eval echo configure:3822: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3813: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* gt_cv_func_gettext_libc=yes else @@ -3834,7 +3825,7 @@ echo "$ac_t""$gt_cv_func_gettext_libc" 1>&6 if test "$gt_cv_func_gettext_libc" != "yes"; then echo $ac_n "checking for bindtextdomain in -lintl""... $ac_c" 1>&6 -echo "configure:3838: checking for bindtextdomain in -lintl" >&5 +echo "configure:3829: checking for bindtextdomain in -lintl" >&5 ac_lib_var=`echo intl'_'bindtextdomain | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -3842,7 +3833,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lintl $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3848: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -3869,19 +3860,19 @@ fi if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for gettext in libintl""... $ac_c" 1>&6 -echo "configure:3873: checking for gettext in libintl" >&5 +echo "configure:3864: checking for gettext in libintl" >&5 if eval "test \"`echo '$''{'gt_cv_func_gettext_libintl'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3876: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* gt_cv_func_gettext_libintl=yes else @@ -3909,7 +3900,7 @@ EOF # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3913: checking for $ac_word" >&5 +echo "configure:3904: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3943,12 +3934,12 @@ fi for ac_func in dcgettext do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:3947: checking for $ac_func" >&5 +echo "configure:3938: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3966: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -3998,7 +3989,7 @@ done # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4002: checking for $ac_word" >&5 +echo "configure:3993: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4034,7 +4025,7 @@ fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4038: checking for $ac_word" >&5 +echo "configure:4029: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4066,7 +4057,7 @@ else fi cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4069: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* CATOBJEXT=.gmo DATADIRNAME=share @@ -4106,7 +4097,7 @@ fi # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4110: checking for $ac_word" >&5 +echo "configure:4101: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4140,7 +4131,7 @@ fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4144: checking for $ac_word" >&5 +echo "configure:4135: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4176,7 +4167,7 @@ fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4180: checking for $ac_word" >&5 +echo "configure:4171: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4266,7 +4257,7 @@ fi LINGUAS= else echo $ac_n "checking for catalogs to be installed""... $ac_c" 1>&6 -echo "configure:4270: checking for catalogs to be installed" >&5 +echo "configure:4261: checking for catalogs to be installed" >&5 NEW_LINGUAS= for lang in ${LINGUAS=$ALL_LINGUAS}; do case "$ALL_LINGUAS" in @@ -4294,17 +4285,17 @@ echo "configure:4270: checking for catalogs to be installed" >&5 if test "$CATOBJEXT" = ".cat"; then ac_safe=`echo "linux/version.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for linux/version.h""... $ac_c" 1>&6 -echo "configure:4298: checking for linux/version.h" >&5 +echo "configure:4289: checking for linux/version.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4308: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4299: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -4382,7 +4373,7 @@ fi # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # ./install, which can be erroneously created by make from ./install.sh. echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 -echo "configure:4386: checking for a BSD compatible install" >&5 +echo "configure:4377: checking for a BSD compatible install" >&5 if test -z "$INSTALL"; then if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4465,7 +4456,7 @@ if test "x$cross_compiling" = "xno"; then EXEEXT_FOR_BUILD='$(EXEEXT)' else echo $ac_n "checking for build system executable suffix""... $ac_c" 1>&6 -echo "configure:4469: checking for build system executable suffix" >&5 +echo "configure:4460: checking for build system executable suffix" >&5 if eval "test \"`echo '$''{'bfd_cv_build_exeext'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4493,17 +4484,17 @@ for ac_hdr in stddef.h string.h strings.h stdlib.h time.h unistd.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:4497: checking for $ac_hdr" >&5 +echo "configure:4488: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4507: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4498: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -4533,17 +4524,17 @@ for ac_hdr in fcntl.h sys/file.h sys/time.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:4537: checking for $ac_hdr" >&5 +echo "configure:4528: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4547: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4538: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -4570,12 +4561,12 @@ fi done echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6 -echo "configure:4574: checking whether time.h and sys/time.h may both be included" >&5 +echo "configure:4565: checking whether time.h and sys/time.h may both be included" >&5 if eval "test \"`echo '$''{'ac_cv_header_time'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -4584,7 +4575,7 @@ int main() { struct tm *tp; ; return 0; } EOF -if { (eval echo configure:4588: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4579: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_header_time=yes else @@ -4609,12 +4600,12 @@ for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr that defines DIR""... $ac_c" 1>&6 -echo "configure:4613: checking for $ac_hdr that defines DIR" >&5 +echo "configure:4604: checking for $ac_hdr that defines DIR" >&5 if eval "test \"`echo '$''{'ac_cv_header_dirent_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include <$ac_hdr> @@ -4622,7 +4613,7 @@ int main() { DIR *dirp = 0; ; return 0; } EOF -if { (eval echo configure:4626: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4617: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_header_dirent_$ac_safe=yes" else @@ -4647,7 +4638,7 @@ done # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix. if test $ac_header_dirent = dirent.h; then echo $ac_n "checking for opendir in -ldir""... $ac_c" 1>&6 -echo "configure:4651: checking for opendir in -ldir" >&5 +echo "configure:4642: checking for opendir in -ldir" >&5 ac_lib_var=`echo dir'_'opendir | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4655,7 +4646,7 @@ else ac_save_LIBS="$LIBS" LIBS="-ldir $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4661: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -4688,7 +4679,7 @@ fi else echo $ac_n "checking for opendir in -lx""... $ac_c" 1>&6 -echo "configure:4692: checking for opendir in -lx" >&5 +echo "configure:4683: checking for opendir in -lx" >&5 ac_lib_var=`echo x'_'opendir | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4696,7 +4687,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lx $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4702: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -4732,12 +4723,12 @@ fi for ac_func in fcntl getpagesize setitimer sysconf fdopen getuid getgid do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:4736: checking for $ac_func" >&5 +echo "configure:4727: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4755: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -4795,12 +4786,12 @@ EOF esac echo $ac_n "checking whether strstr must be declared""... $ac_c" 1>&6 -echo "configure:4799: checking whether strstr must be declared" >&5 +echo "configure:4790: checking whether strstr must be declared" >&5 if eval "test \"`echo '$''{'bfd_cv_decl_needed_strstr'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -4821,7 +4812,7 @@ int main() { char *(*pfn) = (char *(*)) strstr ; return 0; } EOF -if { (eval echo configure:4825: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4816: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_decl_needed_strstr=no else @@ -4842,12 +4833,12 @@ EOF fi echo $ac_n "checking whether malloc must be declared""... $ac_c" 1>&6 -echo "configure:4846: checking whether malloc must be declared" >&5 +echo "configure:4837: checking whether malloc must be declared" >&5 if eval "test \"`echo '$''{'bfd_cv_decl_needed_malloc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -4868,7 +4859,7 @@ int main() { char *(*pfn) = (char *(*)) malloc ; return 0; } EOF -if { (eval echo configure:4872: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4863: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_decl_needed_malloc=no else @@ -4889,12 +4880,12 @@ EOF fi echo $ac_n "checking whether realloc must be declared""... $ac_c" 1>&6 -echo "configure:4893: checking whether realloc must be declared" >&5 +echo "configure:4884: checking whether realloc must be declared" >&5 if eval "test \"`echo '$''{'bfd_cv_decl_needed_realloc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -4915,7 +4906,7 @@ int main() { char *(*pfn) = (char *(*)) realloc ; return 0; } EOF -if { (eval echo configure:4919: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4910: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_decl_needed_realloc=no else @@ -4936,12 +4927,12 @@ EOF fi echo $ac_n "checking whether free must be declared""... $ac_c" 1>&6 -echo "configure:4940: checking whether free must be declared" >&5 +echo "configure:4931: checking whether free must be declared" >&5 if eval "test \"`echo '$''{'bfd_cv_decl_needed_free'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -4962,7 +4953,7 @@ int main() { char *(*pfn) = (char *(*)) free ; return 0; } EOF -if { (eval echo configure:4966: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4957: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_decl_needed_free=no else @@ -4983,12 +4974,12 @@ EOF fi echo $ac_n "checking whether getenv must be declared""... $ac_c" 1>&6 -echo "configure:4987: checking whether getenv must be declared" >&5 +echo "configure:4978: checking whether getenv must be declared" >&5 if eval "test \"`echo '$''{'bfd_cv_decl_needed_getenv'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -5009,7 +5000,7 @@ int main() { char *(*pfn) = (char *(*)) getenv ; return 0; } EOF -if { (eval echo configure:5013: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5004: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_decl_needed_getenv=no else @@ -5235,17 +5226,17 @@ if test "${target}" = "${host}"; then do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:5239: checking for $ac_hdr" >&5 +echo "configure:5230: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:5249: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:5240: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -5273,12 +5264,12 @@ done if test "$ac_cv_header_sys_procfs_h" = yes; then echo $ac_n "checking for prstatus_t in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:5277: checking for prstatus_t in sys/procfs.h" >&5 +echo "configure:5268: checking for prstatus_t in sys/procfs.h" >&5 if eval "test \"`echo '$''{'bfd_cv_have_sys_procfs_type_prstatus_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5282: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_have_sys_procfs_type_prstatus_t=yes else @@ -5309,12 +5300,12 @@ EOF echo "$ac_t""$bfd_cv_have_sys_procfs_type_prstatus_t" 1>&6 echo $ac_n "checking for prstatus32_t in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:5313: checking for prstatus32_t in sys/procfs.h" >&5 +echo "configure:5304: checking for prstatus32_t in sys/procfs.h" >&5 if eval "test \"`echo '$''{'bfd_cv_have_sys_procfs_type_prstatus32_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5318: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_have_sys_procfs_type_prstatus32_t=yes else @@ -5345,12 +5336,12 @@ EOF echo "$ac_t""$bfd_cv_have_sys_procfs_type_prstatus32_t" 1>&6 echo $ac_n "checking for prstatus_t.pr_who in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:5349: checking for prstatus_t.pr_who in sys/procfs.h" >&5 +echo "configure:5340: checking for prstatus_t.pr_who in sys/procfs.h" >&5 if eval "test \"`echo '$''{'bfd_cv_have_sys_procfs_type_member_prstatus_t_pr_who'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5354: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_have_sys_procfs_type_member_prstatus_t_pr_who=yes else @@ -5381,12 +5372,12 @@ EOF echo "$ac_t""$bfd_cv_have_sys_procfs_type_member_prstatus_t_pr_who" 1>&6 echo $ac_n "checking for prstatus32_t.pr_who in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:5385: checking for prstatus32_t.pr_who in sys/procfs.h" >&5 +echo "configure:5376: checking for prstatus32_t.pr_who in sys/procfs.h" >&5 if eval "test \"`echo '$''{'bfd_cv_have_sys_procfs_type_member_prstatus32_t_pr_who'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5390: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_have_sys_procfs_type_member_prstatus32_t_pr_who=yes else @@ -5417,12 +5408,12 @@ EOF echo "$ac_t""$bfd_cv_have_sys_procfs_type_member_prstatus32_t_pr_who" 1>&6 echo $ac_n "checking for pstatus_t in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:5421: checking for pstatus_t in sys/procfs.h" >&5 +echo "configure:5412: checking for pstatus_t in sys/procfs.h" >&5 if eval "test \"`echo '$''{'bfd_cv_have_sys_procfs_type_pstatus_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5426: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_have_sys_procfs_type_pstatus_t=yes else @@ -5453,12 +5444,12 @@ EOF echo "$ac_t""$bfd_cv_have_sys_procfs_type_pstatus_t" 1>&6 echo $ac_n "checking for pxstatus_t in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:5457: checking for pxstatus_t in sys/procfs.h" >&5 +echo "configure:5448: checking for pxstatus_t in sys/procfs.h" >&5 if eval "test \"`echo '$''{'bfd_cv_have_sys_procfs_type_pxstatus_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5462: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_have_sys_procfs_type_pxstatus_t=yes else @@ -5489,12 +5480,12 @@ EOF echo "$ac_t""$bfd_cv_have_sys_procfs_type_pxstatus_t" 1>&6 echo $ac_n "checking for pstatus32_t in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:5493: checking for pstatus32_t in sys/procfs.h" >&5 +echo "configure:5484: checking for pstatus32_t in sys/procfs.h" >&5 if eval "test \"`echo '$''{'bfd_cv_have_sys_procfs_type_pstatus32_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5498: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_have_sys_procfs_type_pstatus32_t=yes else @@ -5525,12 +5516,12 @@ EOF echo "$ac_t""$bfd_cv_have_sys_procfs_type_pstatus32_t" 1>&6 echo $ac_n "checking for prpsinfo_t in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:5529: checking for prpsinfo_t in sys/procfs.h" >&5 +echo "configure:5520: checking for prpsinfo_t in sys/procfs.h" >&5 if eval "test \"`echo '$''{'bfd_cv_have_sys_procfs_type_prpsinfo_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5534: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_have_sys_procfs_type_prpsinfo_t=yes else @@ -5561,12 +5552,12 @@ EOF echo "$ac_t""$bfd_cv_have_sys_procfs_type_prpsinfo_t" 1>&6 echo $ac_n "checking for prpsinfo32_t in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:5565: checking for prpsinfo32_t in sys/procfs.h" >&5 +echo "configure:5556: checking for prpsinfo32_t in sys/procfs.h" >&5 if eval "test \"`echo '$''{'bfd_cv_have_sys_procfs_type_prpsinfo32_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5570: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_have_sys_procfs_type_prpsinfo32_t=yes else @@ -5597,12 +5588,12 @@ EOF echo "$ac_t""$bfd_cv_have_sys_procfs_type_prpsinfo32_t" 1>&6 echo $ac_n "checking for psinfo_t in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:5601: checking for psinfo_t in sys/procfs.h" >&5 +echo "configure:5592: checking for psinfo_t in sys/procfs.h" >&5 if eval "test \"`echo '$''{'bfd_cv_have_sys_procfs_type_psinfo_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5606: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_have_sys_procfs_type_psinfo_t=yes else @@ -5633,12 +5624,12 @@ EOF echo "$ac_t""$bfd_cv_have_sys_procfs_type_psinfo_t" 1>&6 echo $ac_n "checking for psinfo32_t in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:5637: checking for psinfo32_t in sys/procfs.h" >&5 +echo "configure:5628: checking for psinfo32_t in sys/procfs.h" >&5 if eval "test \"`echo '$''{'bfd_cv_have_sys_procfs_type_psinfo32_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5642: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_have_sys_procfs_type_psinfo32_t=yes else @@ -5669,12 +5660,12 @@ EOF echo "$ac_t""$bfd_cv_have_sys_procfs_type_psinfo32_t" 1>&6 echo $ac_n "checking for lwpstatus_t in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:5673: checking for lwpstatus_t in sys/procfs.h" >&5 +echo "configure:5664: checking for lwpstatus_t in sys/procfs.h" >&5 if eval "test \"`echo '$''{'bfd_cv_have_sys_procfs_type_lwpstatus_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5678: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_have_sys_procfs_type_lwpstatus_t=yes else @@ -5705,12 +5696,12 @@ EOF echo "$ac_t""$bfd_cv_have_sys_procfs_type_lwpstatus_t" 1>&6 echo $ac_n "checking for lwpxstatus_t in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:5709: checking for lwpxstatus_t in sys/procfs.h" >&5 +echo "configure:5700: checking for lwpxstatus_t in sys/procfs.h" >&5 if eval "test \"`echo '$''{'bfd_cv_have_sys_procfs_type_lwpxstatus_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5714: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_have_sys_procfs_type_lwpxstatus_t=yes else @@ -5741,12 +5732,12 @@ EOF echo "$ac_t""$bfd_cv_have_sys_procfs_type_lwpxstatus_t" 1>&6 echo $ac_n "checking for lwpstatus_t.pr_context in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:5745: checking for lwpstatus_t.pr_context in sys/procfs.h" >&5 +echo "configure:5736: checking for lwpstatus_t.pr_context in sys/procfs.h" >&5 if eval "test \"`echo '$''{'bfd_cv_have_sys_procfs_type_member_lwpstatus_t_pr_context'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5750: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_have_sys_procfs_type_member_lwpstatus_t_pr_context=yes else @@ -5777,12 +5768,12 @@ EOF echo "$ac_t""$bfd_cv_have_sys_procfs_type_member_lwpstatus_t_pr_context" 1>&6 echo $ac_n "checking for lwpstatus_t.pr_reg in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:5781: checking for lwpstatus_t.pr_reg in sys/procfs.h" >&5 +echo "configure:5772: checking for lwpstatus_t.pr_reg in sys/procfs.h" >&5 if eval "test \"`echo '$''{'bfd_cv_have_sys_procfs_type_member_lwpstatus_t_pr_reg'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5786: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_have_sys_procfs_type_member_lwpstatus_t_pr_reg=yes else @@ -5813,12 +5804,12 @@ EOF echo "$ac_t""$bfd_cv_have_sys_procfs_type_member_lwpstatus_t_pr_reg" 1>&6 echo $ac_n "checking for win32_pstatus_t in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:5817: checking for win32_pstatus_t in sys/procfs.h" >&5 +echo "configure:5808: checking for win32_pstatus_t in sys/procfs.h" >&5 if eval "test \"`echo '$''{'bfd_cv_have_sys_procfs_type_win32_pstatus_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5822: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_have_sys_procfs_type_win32_pstatus_t=yes else @@ -6027,6 +6018,7 @@ do bfd_elf32_mn10200_vec) tb="$tb elf-m10200.lo elf32.lo $elf" ;; bfd_elf32_mn10300_vec) tb="$tb elf-m10300.lo elf32.lo $elf" ;; bfd_elf32_openrisc_vec) tb="$tb elf32-openrisc.lo elf32.lo $elf" ;; + bfd_elf32_or32_big_vec) tb="$tb elf32-or32.lo elf32.lo $elf" ;; bfd_elf32_pj_vec) tb="$tb elf32-pj.lo elf32.lo $elf";; bfd_elf32_pjl_vec) tb="$tb elf32-pj.lo elf32.lo $elf";; bfd_elf32_powerpc_vec) tb="$tb elf32-ppc.lo elf32.lo $elf" ;; @@ -6123,6 +6115,7 @@ do nlm32_i386_vec) tb="$tb nlm32-i386.lo nlm32.lo nlm.lo" ;; nlm32_powerpc_vec) tb="$tb nlm32-ppc.lo nlm32.lo nlm.lo" ;; nlm32_sparc_vec) tb="$tb nlm32-sparc.lo nlm32.lo nlm.lo" ;; + or32coff_big_vec) tb="$tb coff-or32.lo cofflink.lo" ;; pc532machaout_vec) tb="$tb pc532-mach.lo aout-ns32k.lo" ;; pc532netbsd_vec) tb="$tb ns32knetbsd.lo aout-ns32k.lo" ;; pdp11_aout_vec) tb="$tb pdp11.lo" ;; @@ -6232,10 +6225,10 @@ case ${host64}-${target64}-${want64} in if test -n "$GCC" ; then bad_64bit_gcc=no; echo $ac_n "checking for gcc version with buggy 64-bit support""... $ac_c" 1>&6 -echo "configure:6236: checking for gcc version with buggy 64-bit support" >&5 +echo "configure:6229: checking for gcc version with buggy 64-bit support" >&5 # Add more tests for gcc versions with non-working 64-bit support here. cat > conftest.$ac_ext <&6 -echo "configure:6284: checking for $ac_hdr" >&5 +echo "configure:6277: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:6294: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:6287: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -6319,12 +6312,12 @@ done for ac_func in getpagesize do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:6323: checking for $ac_func" >&5 +echo "configure:6316: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6344: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -6372,7 +6365,7 @@ fi done echo $ac_n "checking for working mmap""... $ac_c" 1>&6 -echo "configure:6376: checking for working mmap" >&5 +echo "configure:6369: checking for working mmap" >&5 if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6380,7 +6373,7 @@ else ac_cv_func_mmap_fixed_mapped=no else cat > conftest.$ac_ext < #include +#if HAVE_SYS_TYPES_H +# include +#endif + +#if HAVE_STDLIB_H +# include +#endif + +#if HAVE_SYS_STAT_H +# include +#endif + +#if HAVE_UNISTD_H +# include +#endif + /* This mess was copied from the GNU getpagesize.h. */ #ifndef HAVE_GETPAGESIZE -# ifdef HAVE_UNISTD_H -# include -# endif /* Assume that all systems that can run configure have sys/param.h. */ # ifndef HAVE_SYS_PARAM_H @@ -6520,7 +6526,7 @@ main() } EOF -if { (eval echo configure:6524: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:6530: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_func_mmap_fixed_mapped=yes else @@ -6545,12 +6551,12 @@ fi for ac_func in madvise mprotect do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:6549: checking for $ac_func" >&5 +echo "configure:6555: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6583: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -6753,6 +6759,7 @@ s%@build_alias@%$build_alias%g s%@build_cpu@%$build_cpu%g s%@build_vendor@%$build_vendor%g s%@build_os@%$build_os%g +s%@CC@%$CC%g s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%g s%@INSTALL_DATA@%$INSTALL_DATA%g @@ -6769,7 +6776,6 @@ s%@bfd_version_date@%$bfd_version_date%g s%@bfd_version_string@%$bfd_version_string%g s%@AR@%$AR%g s%@RANLIB@%$RANLIB%g -s%@CC@%$CC%g s%@LN_S@%$LN_S%g s%@OBJEXT@%$OBJEXT%g s%@EXEEXT@%$EXEEXT%g diff --git a/bfd/configure.in b/bfd/configure.in index 239bde862..1f0243b55 100644 --- a/bfd/configure.in +++ b/bfd/configure.in @@ -573,6 +573,7 @@ do bfd_elf32_mn10200_vec) tb="$tb elf-m10200.lo elf32.lo $elf" ;; bfd_elf32_mn10300_vec) tb="$tb elf-m10300.lo elf32.lo $elf" ;; bfd_elf32_openrisc_vec) tb="$tb elf32-openrisc.lo elf32.lo $elf" ;; + bfd_elf32_or32_big_vec) tb="$tb elf32-or32.lo elf32.lo $elf" ;; bfd_elf32_pj_vec) tb="$tb elf32-pj.lo elf32.lo $elf";; bfd_elf32_pjl_vec) tb="$tb elf32-pj.lo elf32.lo $elf";; bfd_elf32_powerpc_vec) tb="$tb elf32-ppc.lo elf32.lo $elf" ;; @@ -669,6 +670,7 @@ do nlm32_i386_vec) tb="$tb nlm32-i386.lo nlm32.lo nlm.lo" ;; nlm32_powerpc_vec) tb="$tb nlm32-ppc.lo nlm32.lo nlm.lo" ;; nlm32_sparc_vec) tb="$tb nlm32-sparc.lo nlm32.lo nlm.lo" ;; + or32coff_big_vec) tb="$tb coff-or32.lo cofflink.lo" ;; pc532machaout_vec) tb="$tb pc532-mach.lo aout-ns32k.lo" ;; pc532netbsd_vec) tb="$tb ns32knetbsd.lo aout-ns32k.lo" ;; pdp11_aout_vec) tb="$tb pdp11.lo" ;; diff --git a/bfd/cpu-or32.c b/bfd/cpu-or32.c new file mode 100644 index 000000000..8a523280c --- /dev/null +++ b/bfd/cpu-or32.c @@ -0,0 +1,40 @@ +/* BFD support for the OpenRISC 1000 architecture. + Copyright 2002 Free Software Foundation, Inc. + Contributed by Ivan Guzvinec + + This file is part of BFD, the Binary File Descriptor library. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + +#include "bfd.h" +#include "sysdep.h" +#include "libbfd.h" + +const bfd_arch_info_type bfd_or32_arch = + { + 32, /* 32 bits in a word. */ + 32, /* 32 bits in an address. */ + 8, /* 8 bits in a byte. */ + bfd_arch_or32, + 0, /* Only 1 machine. */ + "or32", + "or32", + 4, + true, /* The one and only. */ + bfd_default_compatible, + bfd_default_scan , + 0, + }; + diff --git a/bfd/doc/Makefile.in b/bfd/doc/Makefile.in index ace09a5eb..698d76f93 100644 --- a/bfd/doc/Makefile.in +++ b/bfd/doc/Makefile.in @@ -1,6 +1,6 @@ -# Makefile.in generated automatically by automake 1.4 from Makefile.am +# Makefile.in generated automatically by automake 1.4-p5 from Makefile.am -# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc. +# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -242,7 +242,7 @@ DIST_COMMON = ChangeLog Makefile.am Makefile.in DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) -TAR = tar +TAR = gtar GZIP_ENV = --best all: all-redirect .SUFFIXES: @@ -328,7 +328,7 @@ uninstall-info: else ii=; fi; \ list='$(INFO_DEPS)'; \ for file in $$list; do \ - test -z "$ii" \ + test -z "$$ii" \ || install-info --info-dir=$(DESTDIR)$(infodir) --remove $$file; \ done @$(NORMAL_UNINSTALL) diff --git a/bfd/elf32-or32.c b/bfd/elf32-or32.c new file mode 100644 index 000000000..eed0b9916 --- /dev/null +++ b/bfd/elf32-or32.c @@ -0,0 +1,542 @@ +/* OR32-specific support for 32-bit ELF + Copyright (C) 2002 Free Software Foundation, Inc. + Contributed by Ivan Guzvinec + + This file is part of BFD, the Binary File Descriptor library. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + +#include "bfd.h" +#include "sysdep.h" +#include "libbfd.h" +#include "elf-bfd.h" +#include "elf/or32.h" +#include "libiberty.h" + +static reloc_howto_type * bfd_elf32_bfd_reloc_type_lookup PARAMS ((bfd *, bfd_reloc_code_real_type)); +static void or32_info_to_howto_rel PARAMS ((bfd *, arelent *, Elf32_Internal_Rel *)); +static boolean or32_elf_object_p PARAMS ((bfd *)); +static void or32_elf_final_write_processing PARAMS ((bfd *, boolean)); +static bfd_reloc_status_type or32_elf_32_reloc PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **)); +static bfd_reloc_status_type or32_elf_16_reloc PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **)); +static bfd_reloc_status_type or32_elf_8_reloc PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **)); +static bfd_reloc_status_type or32_elf_const_reloc PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **)); +static bfd_reloc_status_type or32_elf_consth_reloc PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **)); +static bfd_reloc_status_type or32_elf_jumptarg_reloc PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **)); + +/* Try to minimize the amount of space occupied by relocation tables + on the ROM (not that the ROM won't be swamped by other ELF overhead). */ +#define USE_REL + +static reloc_howto_type elf_or32_howto_table[] = +{ + /* This reloc does nothing. */ + HOWTO (R_OR32_NONE, /* type */ + 0, /* rightshift */ + 2, /* size (0 = byte, 1 = short, 2 = long) */ + 32, /* bitsize */ + false, /* pc_relative */ + 0, /* bitpos */ + complain_overflow_bitfield, /* complain_on_overflow */ + bfd_elf_generic_reloc, /* special_function */ + "R_OR32_NONE", /* name */ + false, /* partial_inplace */ + 0, /* src_mask */ + 0, /* dst_mask */ + false), /* pcrel_offset */ + + /* A standard 32 bit relocation. */ + HOWTO (R_OR32_32, /* type */ + 0, /* rightshift */ + 2, /* size (0 = byte, 1 = short, 2 = long) */ + 32, /* bitsize */ + false, /* pc_relative */ + 0, /* bitpos */ + complain_overflow_bitfield, /* complain_on_overflow */ + or32_elf_32_reloc, /* special_function */ + "R_OR32_32", /* name */ + false, /* partial_inplace */ + 0xffffffff, /* src_mask */ + 0xffffffff, /* dst_mask */ + false), /* pcrel_offset */ + + /* A standard 16 bit relocation. */ + HOWTO (R_OR32_16, /* type */ + 0, /* rightshift */ + 1, /* size (0 = byte, 1 = short, 2 = long) */ + 16, /* bitsize */ + false, /* pc_relative */ + 0, /* bitpos */ + complain_overflow_bitfield, /* complain_on_overflow */ + or32_elf_16_reloc, /* special_function */ + "R_OR32_16", /* name */ + false, /* partial_inplace */ + 0x0000ffff, /* src_mask */ + 0x0000ffff, /* dst_mask */ + false), /* pcrel_offset */ + + /* A standard 8 bit relocation. */ + HOWTO (R_OR32_8, /* type */ + 0, /* rightshift */ + 0, /* size (0 = byte, 1 = short, 2 = long) */ + 8, /* bitsize */ + false, /* pc_relative */ + 0, /* bitpos */ + complain_overflow_bitfield, /* complain_on_overflow */ + or32_elf_8_reloc, /* special_function */ + "R_OR32_8", /* name */ + false, /* partial_inplace */ + 0x000000ff, /* src_mask */ + 0x000000ff, /* dst_mask */ + false), /* pcrel_offset */ + + /* A standard low 16 bit relocation. */ + HOWTO (R_OR32_CONST, /* type */ + 0, /* rightshift */ + 2, /* size (0 = byte, 1 = short, 2 = long) */ + 16, /* bitsize */ + false, /* pc_relative */ + 0, /* bitpos */ + complain_overflow_dont, /* complain_on_overflow */ + or32_elf_const_reloc, /* special_function */ + "R_OR32_CONST", /* name */ + false, /* partial_inplace */ + 0x0000ffff, /* src_mask */ + 0x0000ffff, /* dst_mask */ + false), /* pcrel_offset */ + + /* A standard high 16 bit relocation. */ + HOWTO (R_OR32_CONSTH, /* type */ + 16, /* rightshift */ + 2, /* size (0 = byte, 1 = short, 2 = long) */ + 16, /* bitsize */ + true, /* pc_relative */ + 0, /* bitpos */ + complain_overflow_dont, /* complain_on_overflow */ + or32_elf_consth_reloc, /* special_function */ + "R_OR32_CONSTH", /* name */ + false, /* partial_inplace */ + 0xffff0000, /* src_mask */ + 0x0000ffff, /* dst_mask */ + false), /* pcrel_offset */ + + /* A standard branch relocation. */ + HOWTO (R_OR32_JUMPTARG, /* type */ + 2, /* rightshift */ + 2, /* size (0 = byte, 1 = short, 2 = long) */ + 28, /* bitsize */ + true, /* pc_relative */ + 0, /* bitpos */ + complain_overflow_signed, /* complain_on_overflow */ + or32_elf_jumptarg_reloc,/* special_function */ + "R_OR32_JUMPTARG", /* name */ + false, /* partial_inplace */ + 0, /* src_mask */ + 0x03ffffff, /* dst_mask */ + true), /* pcrel_offset */ + + /* GNU extension to record C++ vtable hierarchy. */ + HOWTO (R_OR32_GNU_VTINHERIT, /* type */ + 0, /* rightshift */ + 2, /* size (0 = byte, 1 = short, 2 = long) */ + 0, /* bitsize */ + false, /* pc_relative */ + 0, /* bitpos */ + complain_overflow_dont, /* complain_on_overflow */ + NULL, /* special_function */ + "R_OR32_GNU_VTINHERIT", /* name */ + false, /* partial_inplace */ + 0, /* src_mask */ + 0, /* dst_mask */ + false), /* pcrel_offset */ + + /* GNU extension to record C++ vtable member usage. */ + HOWTO (R_OR32_GNU_VTENTRY, /* type */ + 0, /* rightshift */ + 2, /* size (0 = byte, 1 = short, 2 = long) */ + 0, /* bitsize */ + false, /* pc_relative */ + 0, /* bitpos */ + complain_overflow_dont, /* complain_on_overflow */ + _bfd_elf_rel_vtable_reloc_fn, /* special_function */ + "R_OR32_GNU_VTENTRY", /* name */ + false, /* partial_inplace */ + 0, /* src_mask */ + 0, /* dst_mask */ + false), /* pcrel_offset */ +}; + +/* Map BFD reloc types to OR32 ELF reloc types. */ + +struct or32_reloc_map +{ + bfd_reloc_code_real_type bfd_reloc_val; + unsigned char elf_reloc_val; +}; + +static const struct or32_reloc_map or32_reloc_map[] = +{ + { BFD_RELOC_NONE, R_OR32_NONE }, + { BFD_RELOC_32, R_OR32_32 }, + { BFD_RELOC_16, R_OR32_16 }, + { BFD_RELOC_8, R_OR32_8 }, + { BFD_RELOC_LO16, R_OR32_CONST }, + { BFD_RELOC_HI16, R_OR32_CONSTH }, + { BFD_RELOC_32_GOT_PCREL, R_OR32_JUMPTARG }, + { BFD_RELOC_VTABLE_INHERIT, R_OR32_GNU_VTINHERIT }, + { BFD_RELOC_VTABLE_ENTRY, R_OR32_GNU_VTENTRY }, +}; + +static reloc_howto_type * +bfd_elf32_bfd_reloc_type_lookup (abfd, code) + bfd *abfd ATTRIBUTE_UNUSED; + bfd_reloc_code_real_type code; +{ + unsigned int i; + + for (i = ARRAY_SIZE (or32_reloc_map); i--;) + { + if (or32_reloc_map[i].bfd_reloc_val == code) + return &elf_or32_howto_table[or32_reloc_map[i].elf_reloc_val]; + } + + return NULL; +} + +/* Set the howto pointer for an OR32 ELF reloc. */ + +static void +or32_info_to_howto_rel (abfd, cache_ptr, dst) + bfd *abfd ATTRIBUTE_UNUSED; + arelent *cache_ptr; + Elf32_Internal_Rel *dst; +{ + unsigned int r_type; + + r_type = ELF32_R_TYPE (dst->r_info); + BFD_ASSERT (r_type < (unsigned int) R_OR32_max); + cache_ptr->howto = &elf_or32_howto_table[r_type]; +} + +/* Set the right machine number for an OR32 ELF file. */ + +static boolean +or32_elf_object_p (abfd) + bfd *abfd; +{ + (void) bfd_default_set_arch_mach (abfd, bfd_arch_or32, 0); + return true; +} + +/* The final processing done just before writing out an OR32 ELF object file. + This gets the OR32 architecture right based on the machine number. */ + +static void +or32_elf_final_write_processing (abfd, linker) + bfd *abfd; + boolean linker ATTRIBUTE_UNUSED; +{ + int mach; + unsigned long val; + + switch (mach = bfd_get_mach (abfd)) + { + /* + case bfd_mach_arc_base: + val = E_OR32_MACH_BASE; + break; + */ + default: + val = 0; + return; + } + + elf_elfheader (abfd)->e_flags &=~ EF_OR32_MACH; + elf_elfheader (abfd)->e_flags |= val; +} + +bfd_reloc_status_type +or32_elf_32_reloc (abfd, reloc_entry, symbol, data, input_section, + output_bfd, error_message) + bfd *abfd; + arelent *reloc_entry; + asymbol *symbol; + PTR data; + asection *input_section; + bfd *output_bfd; + char **error_message ATTRIBUTE_UNUSED; +{ + if (output_bfd != (bfd *) NULL) + { + unsigned long insn; + bfd_size_type addr = reloc_entry->address; + + reloc_entry->address += input_section->output_offset; + + insn = bfd_get_32 (abfd, (bfd_byte *) data + addr); + insn += symbol->section->output_section->vma; + insn += symbol->section->output_offset; + insn += symbol->value; + bfd_put_32 (abfd, insn, (bfd_byte *) data + addr); + + return bfd_reloc_ok; + } + + return bfd_reloc_continue; +} + +bfd_reloc_status_type +or32_elf_16_reloc (abfd, reloc_entry, symbol, data, input_section, + output_bfd, error_message) + bfd *abfd; + arelent *reloc_entry; + asymbol *symbol; + PTR data; + asection *input_section; + bfd *output_bfd; + char **error_message ATTRIBUTE_UNUSED; +{ + if (output_bfd != (bfd *) NULL) + { + unsigned short insn; + bfd_size_type addr = reloc_entry->address; + + reloc_entry->address += input_section->output_offset; + + insn = bfd_get_16 (abfd, (bfd_byte *) data + addr); + insn += symbol->section->output_section->vma; + insn += symbol->section->output_offset; + insn += symbol->value; + bfd_put_16 (abfd, insn, (bfd_byte *) data + addr); + + return bfd_reloc_ok; + } + + return bfd_reloc_continue; +} + +bfd_reloc_status_type +or32_elf_8_reloc (abfd, reloc_entry, symbol, data, input_section, + output_bfd, error_message) + bfd *abfd ATTRIBUTE_UNUSED; + arelent *reloc_entry; + asymbol *symbol; + PTR data; + asection *input_section; + bfd *output_bfd; + char **error_message ATTRIBUTE_UNUSED; +{ + if (output_bfd != (bfd *) NULL) + { + unsigned char insn; + bfd_size_type addr = reloc_entry->address; + + reloc_entry->address += input_section->output_offset; + + insn = bfd_get_8 (abfd, (bfd_byte *) data + addr); + insn += symbol->section->output_section->vma; + insn += symbol->section->output_offset; + insn += symbol->value; + bfd_put_8 (abfd, insn, (bfd_byte *) data + addr); + + return bfd_reloc_ok; + } + + return bfd_reloc_continue; +} + +/* Do a R_OR32_CONSTH relocation. This has to be done in combination + with a R_OR32_CONST reloc, because there is a carry from the LO16 to + the HI16. Here we just save the information we need; we do the + actual relocation when we see the LO16. OR32 ELF requires that the + LO16 immediately follow the HI16. As a GNU extension, we permit an + arbitrary number of HI16 relocs to be associated with a single LO16 + reloc. This extension permits gcc to output the HI and LO relocs + itself. This code is copied from the elf32-mips.c. */ + +struct or32_consth +{ + struct or32_consth *next; + bfd_byte *addr; + bfd_vma addend; +}; + +/* FIXME: This should not be a static variable. */ + +static struct or32_consth *or32_consth_list; + +bfd_reloc_status_type +or32_elf_consth_reloc (abfd, reloc_entry, symbol, data, input_section, + output_bfd, error_message) + bfd *abfd ATTRIBUTE_UNUSED; + arelent *reloc_entry; + asymbol *symbol; + PTR data; + asection *input_section; + bfd *output_bfd; + char **error_message ATTRIBUTE_UNUSED; +{ + bfd_reloc_status_type ret; + bfd_vma relocation; + struct or32_consth *n; + + ret = bfd_reloc_ok; + + if (bfd_is_und_section (symbol->section) + && output_bfd == (bfd *) NULL) + ret = bfd_reloc_undefined; + + if (bfd_is_com_section (symbol->section)) + relocation = 0; + else + relocation = symbol->value; + + relocation += symbol->section->output_section->vma; + relocation += symbol->section->output_offset; + relocation += reloc_entry->addend; + + if (reloc_entry->address > input_section->_cooked_size) + return bfd_reloc_outofrange; + + /* Save the information, and let LO16 do the actual relocation. */ + n = (struct or32_consth *) bfd_malloc (sizeof *n); + if (n == NULL) + return bfd_reloc_outofrange; + n->addr = (bfd_byte *) data + reloc_entry->address; + n->addend = relocation; + n->next = or32_consth_list; + or32_consth_list = n; + + if (output_bfd != (bfd *) NULL) + reloc_entry->address += input_section->output_offset; + + return ret; +} + +/* Do a R_OR32_CONST relocation. This is a straightforward 16 bit + inplace relocation; this function exists in order to do the + R_OR32_CONSTH relocation described above. */ + +bfd_reloc_status_type +or32_elf_const_reloc (abfd, reloc_entry, symbol, data, input_section, + output_bfd, error_message) + bfd *abfd; + arelent *reloc_entry; + asymbol *symbol; + PTR data; + asection *input_section; + bfd *output_bfd; + char **error_message; +{ + if (or32_consth_list != NULL) + { + struct or32_consth *l; + + l = or32_consth_list; + while (l != NULL) + { + unsigned long insn; + unsigned long val; + unsigned long vallo; + struct or32_consth *next; + + /* Do the HI16 relocation. Note that we actually don't need + to know anything about the LO16 itself, except where to + find the low 16 bits of the addend needed by the LO16. */ + insn = bfd_get_32 (abfd, l->addr); + vallo = (bfd_get_32 (abfd, (bfd_byte *) data + reloc_entry->address) + & 0xffff); + val = ((insn & 0xffff) << 16) + vallo; + val += l->addend; + + insn = (insn &~ 0xffff) | ((val >> 16) & 0xffff); + bfd_put_32 (abfd, insn, l->addr); + + next = l->next; + free (l); + l = next; + } + + or32_consth_list = NULL; + } + + if (output_bfd != (bfd *) NULL) + { + unsigned long insn, tmp; + bfd_size_type addr = reloc_entry->address; + + reloc_entry->address += input_section->output_offset; + + insn = bfd_get_32 (abfd, (bfd_byte *) data + addr); + tmp = insn & 0x0000ffff; + tmp += symbol->section->output_section->vma; + tmp += symbol->section->output_offset; + tmp += symbol->value; + insn = (insn & 0xffff0000) | (tmp & 0x0000ffff); + bfd_put_32 (abfd, insn, (bfd_byte *) data + addr); + + return bfd_reloc_ok; + } + + /* Now do the LO16 reloc in the usual way. */ + return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data, + input_section, output_bfd, error_message); +} + +bfd_reloc_status_type +or32_elf_jumptarg_reloc (abfd, reloc_entry, symbol, data, input_section, + output_bfd, error_message) + bfd *abfd; + arelent *reloc_entry; + asymbol *symbol ATTRIBUTE_UNUSED; + PTR data; + asection *input_section; + bfd *output_bfd; + char **error_message ATTRIBUTE_UNUSED; +{ + if (output_bfd != (bfd *) NULL) + { + unsigned long insn, tmp; + bfd_size_type addr = reloc_entry->address; + + reloc_entry->address += input_section->output_offset; + + insn = bfd_get_32 (abfd, (bfd_byte *) data + addr); + tmp = insn | 0xfc000000; + tmp -= (input_section->output_offset >> 2); + insn = (insn & 0xfc000000) | (tmp & 0x03ffffff); + bfd_put_32 (abfd, insn, (bfd_byte *) data + addr); + + return bfd_reloc_ok; + } + + return bfd_reloc_continue; +} + +#define TARGET_LITTLE_SYM bfd_elf32_or32_little_vec +#define TARGET_LITTLE_NAME "elf32-littleor32" +#define TARGET_BIG_SYM bfd_elf32_or32_big_vec +#define TARGET_BIG_NAME "elf32-or32" +#define ELF_ARCH bfd_arch_or32 +#define ELF_MACHINE_CODE EM_OR32 +#define ELF_MAXPAGESIZE 0x1000 + +#define elf_info_to_howto 0 +#define elf_info_to_howto_rel or32_info_to_howto_rel +#define elf_backend_object_p or32_elf_object_p +#define elf_backend_final_write_processing \ + or32_elf_final_write_processing + +#include "elf32-target.h" diff --git a/bfd/po/SRC-POTFILES.in b/bfd/po/SRC-POTFILES.in index 0ef9b4a53..56501a135 100644 --- a/bfd/po/SRC-POTFILES.in +++ b/bfd/po/SRC-POTFILES.in @@ -37,6 +37,7 @@ coff-i960.c coff-m68k.c coff-m88k.c coff-mips.c +coff-or32.c coff-rs6000.c coff-sh.c coff-sparc.c @@ -84,6 +85,7 @@ cpu-mips.c cpu-mmix.c cpu-ns32k.c cpu-openrisc.c +cpu-or32.c cpu-pdp11.c cpu-pj.c cpu-powerpc.c diff --git a/bfd/po/bfd.pot b/bfd/po/bfd.pot index bb8a4252e..b21d3d2cf 100644 --- a/bfd/po/bfd.pot +++ b/bfd/po/bfd.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2002-01-17 12:55+0000\n" +"POT-Creation-Date: 2002-01-31 17:07+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -67,102 +67,102 @@ msgstr "" msgid "Writing updated armap timestamp" msgstr "" -#: bfd.c:281 +#: bfd.c:274 msgid "No error" msgstr "" -#: bfd.c:282 +#: bfd.c:275 msgid "System call error" msgstr "" -#: bfd.c:283 +#: bfd.c:276 msgid "Invalid bfd target" msgstr "" -#: bfd.c:284 +#: bfd.c:277 msgid "File in wrong format" msgstr "" -#: bfd.c:285 +#: bfd.c:278 msgid "Archive object file in wrong format" msgstr "" -#: bfd.c:286 +#: bfd.c:279 msgid "Invalid operation" msgstr "" -#: bfd.c:287 +#: bfd.c:280 msgid "Memory exhausted" msgstr "" -#: bfd.c:288 +#: bfd.c:281 msgid "No symbols" msgstr "" -#: bfd.c:289 +#: bfd.c:282 msgid "Archive has no index; run ranlib to add one" msgstr "" -#: bfd.c:290 +#: bfd.c:283 msgid "No more archived files" msgstr "" -#: bfd.c:291 +#: bfd.c:284 msgid "Malformed archive" msgstr "" -#: bfd.c:292 +#: bfd.c:285 msgid "File format not recognized" msgstr "" -#: bfd.c:293 +#: bfd.c:286 msgid "File format is ambiguous" msgstr "" -#: bfd.c:294 +#: bfd.c:287 msgid "Section has no contents" msgstr "" -#: bfd.c:295 +#: bfd.c:288 msgid "Nonrepresentable section on output" msgstr "" -#: bfd.c:296 +#: bfd.c:289 msgid "Symbol needs debug section which does not exist" msgstr "" -#: bfd.c:297 +#: bfd.c:290 msgid "Bad value" msgstr "" -#: bfd.c:298 +#: bfd.c:291 msgid "File truncated" msgstr "" -#: bfd.c:299 +#: bfd.c:292 msgid "File too big" msgstr "" -#: bfd.c:300 +#: bfd.c:293 msgid "#" msgstr "" -#: bfd.c:707 +#: bfd.c:700 #, c-format msgid "BFD %s assertion fail %s:%d" msgstr "" -#: bfd.c:726 +#: bfd.c:719 #, c-format msgid "BFD %s internal error, aborting at %s line %d in %s\n" msgstr "" -#: bfd.c:730 +#: bfd.c:723 #, c-format -msgid "BFD %sinternal error, aborting at %s line %d\n" +msgid "BFD %s internal error, aborting at %s line %d\n" msgstr "" -#: bfd.c:732 +#: bfd.c:725 msgid "Please report this bug.\n" msgstr "" @@ -179,7 +179,7 @@ msgstr "" msgid "Missing IHIHALF" msgstr "" -#: coff-a29k.c:212 +#: coff-a29k.c:212 coff-or32.c:228 msgid "Unrecognized reloc" msgstr "" @@ -191,7 +191,7 @@ msgstr "" msgid "missing IHIHALF reloc" msgstr "" -#: coff-alpha.c:881 coff-alpha.c:918 +#: coff-alpha.c:881 coff-alpha.c:918 coff-alpha.c:1989 coff-mips.c:1433 msgid "GP relative relocation used when GP not defined" msgstr "" @@ -199,10 +199,6 @@ msgstr "" msgid "using multiple gp values" msgstr "" -#: coff-alpha.c:1989 coff-mips.c:1433 -msgid "GP relative relocation when GP not defined" -msgstr "" - #: coff-arm.c:1051 elf32-arm.h:285 #, c-format msgid "%s: unable to find THUMB glue '%s' for `%s'" @@ -277,12 +273,12 @@ msgstr "" #: coff-arm.c:2300 #, c-format -msgid "Warning: input file %s supports interworking, whereas %s does not." +msgid "Warning: %s supports interworking, whereas %s does not." msgstr "" #: coff-arm.c:2303 #, c-format -msgid "Warning: input file %s does not support interworking, whereas %s does." +msgid "Warning: %s does not support interworking, whereas %s does." msgstr "" #: coff-arm.c:2330 @@ -318,14 +314,14 @@ msgstr "" msgid " [interworking not supported]" msgstr "" -#: coff-arm.c:2401 +#: coff-arm.c:2401 elf32-arm.h:2114 #, c-format 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" msgstr "" -#: coff-arm.c:2405 +#: coff-arm.c:2405 elf32-arm.h:2118 #, c-format msgid "Warning: Clearing the interworking flag of %s due to outside request" msgstr "" @@ -334,11 +330,11 @@ msgstr "" msgid "uncertain calling convention for non-COFF symbol" msgstr "" -#: coff-m68k.c:481 coff-mips.c:2431 elf32-m68k.c:2212 +#: coff-m68k.c:481 coff-mips.c:2431 elf32-m68k.c:2212 elf32-mips.c:9954 msgid "unsupported reloc type" msgstr "" -#: coff-mips.c:875 elf32-mips.c:1987 elf64-mips.c:1739 +#: coff-mips.c:875 elf32-mips.c:1997 elf64-mips.c:1739 msgid "GP relative relocation when _gp not defined" msgstr "" @@ -372,7 +368,7 @@ msgstr "" msgid "Unrecognized reloc type 0x%x" msgstr "" -#: coff-tic54x.c:390 coffcode.h:4847 +#: coff-tic54x.c:390 coffcode.h:4868 #, c-format msgid "%s: warning: illegal symbol index %ld in relocs" msgstr "" @@ -387,32 +383,32 @@ msgstr "" msgid "%s (%s): Section flag %s (0x%x) ignored" msgstr "" -#: coffcode.h:2125 +#: coffcode.h:2132 #, c-format msgid "Unrecognized TI COFF target id '0x%x'" msgstr "" -#: coffcode.h:4236 +#: coffcode.h:4257 #, c-format msgid "%s: warning: illegal symbol index %ld in line numbers" msgstr "" -#: coffcode.h:4250 +#: coffcode.h:4271 #, c-format msgid "%s: warning: duplicate line number information for `%s'" msgstr "" -#: coffcode.h:4609 +#: coffcode.h:4630 #, c-format msgid "%s: Unrecognized storage class %d for %s symbol `%s'" msgstr "" -#: coffcode.h:4740 +#: coffcode.h:4761 #, c-format msgid "warning: %s: local symbol `%s' has no section" msgstr "" -#: coffcode.h:4885 +#: coffcode.h:4906 #, c-format msgid "%s: illegal relocation type %d at address 0x%lx" msgstr "" @@ -422,11 +418,6 @@ msgstr "" msgid "%s: bad string table size %lu" msgstr "" -#: coffgen.c:2138 -#, c-format -msgid "AUX tagndx %ld ttlsiz 0x%lx lnnos %ld next %ld" -msgstr "" - #: cofflink.c:536 elflink.h:1967 #, c-format msgid "Warning: type of symbol `%s' changed from %d to %d in %s" @@ -465,7 +456,8 @@ msgstr "" #: dwarf2.c:559 #, c-format msgid "" -"Dwarf Error: Abbrev offset (%u) greater than or equal to abbrev size (%u)." +"Dwarf Error: Abbrev offset (%u) greater than or equal to .debug_abbrev size " +"(%u)." msgstr "" #: dwarf2.c:756 @@ -483,33 +475,34 @@ msgstr "" #: dwarf2.c:952 #, c-format -msgid "Dwarf Error: Line offset (%u) greater than or equal to line size (%u)." +msgid "" +"Dwarf Error: Line offset (%u) greater than or equal to .debug_line size (%u)." msgstr "" #: dwarf2.c:1143 msgid "Dwarf Error: mangled line number section." msgstr "" -#: dwarf2.c:1318 dwarf2.c:1532 +#: dwarf2.c:1318 dwarf2.c:1529 #, c-format msgid "Dwarf Error: Could not find abbrev number %d." msgstr "" -#: dwarf2.c:1493 +#: dwarf2.c:1490 #, c-format msgid "" "Dwarf Error: found dwarf version '%hu', this reader only handles version 2 " "information." msgstr "" -#: dwarf2.c:1500 +#: dwarf2.c:1497 #, c-format msgid "" "Dwarf Error: found address size '%u', this reader can not handle sizes " "greater than '%u'." msgstr "" -#: dwarf2.c:1523 +#: dwarf2.c:1520 #, c-format msgid "Dwarf Error: Bad abbrev number: %d." msgstr "" @@ -583,120 +576,113 @@ msgid "" msgstr "" #: elf-m10200.c:463 elf-m10300.c:673 elf32-arm.h:2074 elf32-avr.c:835 -#: elf32-cris.c:1392 elf32-d10v.c:482 elf32-fr30.c:653 elf32-h8300.c:547 -#: elf32-i860.c:1048 elf32-m32r.c:1281 elf32-openrisc.c:455 elf32-v850.c:1691 -#: elf64-mmix.c:1164 +#: elf32-cris.c:1406 elf32-d10v.c:482 elf32-fr30.c:653 elf32-h8300.c:547 +#: elf32-i860.c:1048 elf32-m32r.c:1280 elf32-openrisc.c:455 elf32-v850.c:1691 +#: elf32-xstormy16.c:976 elf64-mmix.c:1164 msgid "internal error: out of range error" msgstr "" #: elf-m10200.c:467 elf-m10300.c:677 elf32-arm.h:2078 elf32-avr.c:839 -#: elf32-cris.c:1396 elf32-d10v.c:486 elf32-fr30.c:657 elf32-h8300.c:551 -#: elf32-i860.c:1052 elf32-m32r.c:1285 elf32-mips.c:7565 elf32-openrisc.c:459 -#: elf32-v850.c:1695 elf64-mips.c:4464 elf64-mmix.c:1168 +#: elf32-cris.c:1410 elf32-d10v.c:486 elf32-fr30.c:657 elf32-h8300.c:551 +#: elf32-i860.c:1052 elf32-m32r.c:1284 elf32-mips.c:7587 elf32-openrisc.c:459 +#: elf32-v850.c:1695 elf32-xstormy16.c:980 elf64-mips.c:4464 elf64-mmix.c:1168 msgid "internal error: unsupported relocation error" msgstr "" #: elf-m10200.c:471 elf-m10300.c:681 elf32-arm.h:2082 elf32-d10v.c:490 -#: elf32-h8300.c:555 elf32-m32r.c:1289 +#: elf32-h8300.c:555 elf32-m32r.c:1288 msgid "internal error: dangerous error" msgstr "" #: elf-m10200.c:475 elf-m10300.c:685 elf32-arm.h:2086 elf32-avr.c:847 -#: elf32-cris.c:1404 elf32-d10v.c:494 elf32-fr30.c:665 elf32-h8300.c:559 -#: elf32-i860.c:1060 elf32-m32r.c:1293 elf32-openrisc.c:467 elf32-v850.c:1715 -#: elf64-mmix.c:1176 +#: elf32-cris.c:1418 elf32-d10v.c:494 elf32-fr30.c:665 elf32-h8300.c:559 +#: elf32-i860.c:1060 elf32-m32r.c:1292 elf32-openrisc.c:467 elf32-v850.c:1715 +#: elf32-xstormy16.c:988 elf64-mmix.c:1176 msgid "internal error: unknown error" msgstr "" -#: elf.c:345 +#: elf.c:343 #, c-format msgid "%s: invalid string offset %u >= %lu for section `%s'" msgstr "" -#: elf.c:450 +#: elf.c:448 #, c-format msgid "%s: invalid SHT_GROUP entry" msgstr "" -#: elf.c:531 +#: elf.c:529 #, c-format msgid "%s: no group info for section %s" msgstr "" -#: elf.c:842 +#: elf.c:840 msgid "" "\n" "Program Header:\n" msgstr "" -#: elf.c:891 +#: elf.c:889 msgid "" "\n" "Dynamic Section:\n" msgstr "" -#: elf.c:1020 +#: elf.c:1018 msgid "" "\n" "Version definitions:\n" msgstr "" -#: elf.c:1043 +#: elf.c:1041 msgid "" "\n" "Version References:\n" msgstr "" -#: elf.c:1048 +#: elf.c:1046 #, c-format msgid " required from %s:\n" msgstr "" -#: elf.c:1675 +#: elf.c:1682 #, c-format msgid "%s: invalid link %lu for reloc section %s (index %u)" msgstr "" -#: elf.c:3289 +#: elf.c:3296 #, c-format msgid "%s: Not enough room for program headers (allocated %u, need %u)" msgstr "" -#: elf.c:3393 +#: elf.c:3400 #, c-format msgid "%s: Not enough room for program headers, try linking with -N" msgstr "" -#: elf.c:3518 +#: elf.c:3525 #, c-format msgid "" "Error: First section in segment (%s) starts at 0x%x whereas the segment " "starts at 0x%x" msgstr "" -#: elf.c:3804 +#: elf.c:3811 #, c-format msgid "%s: warning: allocated section `%s' not in segment" msgstr "" -#: elf.c:4138 +#: elf.c:4142 #, c-format msgid "%s: symbol `%s' required but not present" msgstr "" -#: elf.c:4147 -#, c-format -msgid "" -"elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8lx%" -"s\n" -msgstr "" - -#: elf.c:4391 +#: elf.c:4395 #, c-format msgid "%s: warning: Empty loadable segment detected\n" msgstr "" -#: elf.c:5804 +#: elf.c:5808 #, c-format msgid "%s: unsupported relocation type %s" msgstr "" @@ -711,7 +697,7 @@ msgstr "" msgid "%s: Warning: Thumb BLX instruction targets thumb function '%s'." msgstr "" -#: elf32-arm.h:1904 elf32-i386.c:1776 elf32-sh.c:3133 +#: elf32-arm.h:1904 elf32-i386.c:1778 elf32-sh.c:3133 #, c-format msgid "%s(%s+0x%lx): %s relocation against SEC_MERGE section" msgstr "" @@ -722,23 +708,11 @@ msgid "" "%s: warning: unresolvable relocation %d against symbol `%s' from %s section" msgstr "" -#: elf32-arm.h:2114 -#, c-format -msgid "" -"Warning: Not setting interwork flag of %s since it has already been " -"specified as non-interworking" -msgstr "" - -#: elf32-arm.h:2118 -#, c-format -msgid "Warning: Clearing the interwork flag of %s due to outside request" -msgstr "" - #: elf32-arm.h:2166 #, c-format msgid "" -"Warning: Clearing the interwork flag in %s because non-interworking code in %" -"s has been linked with it" +"Warning: Clearing the interworking flag of %s because non-interworking code " +"in %s has been linked with it" msgstr "" #: elf32-arm.h:2261 @@ -768,12 +742,12 @@ msgstr "" #: elf32-arm.h:2303 #, c-format -msgid "Error: %s uses VFP instructions, whereas %s FPA instructions" +msgid "Error: %s uses VFP instructions, whereas %s uses FPA instructions" msgstr "" #: elf32-arm.h:2308 #, c-format -msgid "Error: %s uses FPA instructions, whereas %s VFP instructions" +msgid "Error: %s uses FPA instructions, whereas %s uses VFP instructions" msgstr "" #: elf32-arm.h:2328 @@ -798,7 +772,7 @@ msgstr "" #. Ignore init flag - it may not be set, despite the flags field #. containing valid data. -#: elf32-arm.h:2386 elf32-cris.c:2970 elf32-m68k.c:410 elf32-mips.c:3232 +#: elf32-arm.h:2386 elf32-cris.c:2991 elf32-m68k.c:410 elf32-mips.c:3242 #, c-format msgid "private flags = %lx:" msgstr "" @@ -875,8 +849,9 @@ msgstr "" msgid "" msgstr "" -#: elf32-avr.c:843 elf32-cris.c:1400 elf32-fr30.c:661 elf32-i860.c:1056 -#: elf32-openrisc.c:463 elf32-v850.c:1699 elf64-mmix.c:1172 +#: elf32-avr.c:843 elf32-cris.c:1414 elf32-fr30.c:661 elf32-i860.c:1056 +#: elf32-openrisc.c:463 elf32-v850.c:1699 elf32-xstormy16.c:984 +#: elf64-mmix.c:1172 msgid "internal error: dangerous relocation" msgstr "" @@ -914,28 +889,33 @@ msgid "" "%s: relocation %s is not allowed for global symbol: `%s' from %s section" msgstr "" -#: elf32-cris.c:1275 +#: elf32-cris.c:1171 +#, c-format +msgid "%s: relocation %s in section %s with no GOT created" +msgstr "" + +#: elf32-cris.c:1289 #, c-format msgid "%s: Internal inconsistency; no relocation section %s" msgstr "" -#: elf32-cris.c:2508 +#: elf32-cris.c:2523 #, c-format msgid "" "%s, section %s:\n" " relocation %s should not be used in a shared object; recompile with -fPIC" msgstr "" -#: elf32-cris.c:2973 +#: elf32-cris.c:2994 msgid " [symbols have a _ prefix]" msgstr "" -#: elf32-cris.c:3012 +#: elf32-cris.c:3033 #, c-format msgid "%s: uses _-prefixed symbols, but writing file with non-prefixed symbols" msgstr "" -#: elf32-cris.c:3013 +#: elf32-cris.c:3034 #, c-format msgid "%s: uses non-prefixed symbols, but writing file with _-prefixed symbols" msgstr "" @@ -950,7 +930,7 @@ msgstr "" msgid "%s: cannot create stub entry %s" msgstr "" -#: elf32-hppa.c:937 elf32-hppa.c:3540 +#: elf32-hppa.c:937 elf32-hppa.c:3545 #, c-format msgid "%s(%s+0x%lx): cannot reach %s, recompile with -ffunction-sections" msgstr "" @@ -974,22 +954,22 @@ msgstr "" msgid "Could not find relocation section for %s" msgstr "" -#: elf32-hppa.c:2862 +#: elf32-hppa.c:2867 #, c-format msgid "%s: duplicate export stub %s" msgstr "" -#: elf32-hppa.c:3424 +#: elf32-hppa.c:3429 #, c-format msgid "%s(%s+0x%lx): fixing %s" msgstr "" -#: elf32-hppa.c:4064 +#: elf32-hppa.c:4069 #, c-format msgid "%s(%s+0x%lx): cannot handle %s for %s" msgstr "" -#: elf32-hppa.c:4403 +#: elf32-hppa.c:4408 msgid ".got section not immediately after .plt section" msgstr "" @@ -1003,50 +983,50 @@ msgstr "" msgid "%s: bad symbol index: %d" msgstr "" -#: elf32-i386.c:863 elf32-s390.c:790 elf64-ppc.c:2085 elf64-s390.c:759 +#: elf32-i386.c:863 elf32-s390.c:790 elf64-ppc.c:2198 elf64-s390.c:759 #, c-format msgid "%s: bad relocation section name `%s'" msgstr "" -#: elf32-i386.c:2067 elf32-s390.c:1949 elf64-ppc.c:3908 elf64-s390.c:1953 +#: elf32-i386.c:2069 elf32-s390.c:1951 elf64-ppc.c:4124 elf64-s390.c:1955 #, c-format msgid "%s(%s+0x%lx): unresolvable relocation against symbol `%s'" msgstr "" -#: elf32-i386.c:2105 elf32-s390.c:1987 elf64-s390.c:1991 +#: elf32-i386.c:2107 elf32-s390.c:1989 elf64-s390.c:1993 #, c-format msgid "%s(%s+0x%lx): reloc against `%s': error %d" msgstr "" -#: elf32-m32r.c:924 +#: elf32-m32r.c:923 msgid "SDA relocation when _SDA_BASE_ not defined" msgstr "" -#: elf32-ia64.c:3538 elf32-m32r.c:1008 elf32-ppc.c:2930 elf64-ia64.c:3538 +#: elf32-ia64.c:3537 elf32-m32r.c:1007 elf32-ppc.c:2930 elf64-ia64.c:3537 #, c-format msgid "%s: unknown relocation type %d" msgstr "" -#: elf32-m32r.c:1224 +#: elf32-m32r.c:1223 #, c-format msgid "%s: The target (%s) of an %s relocation is in the wrong section (%s)" msgstr "" -#: elf32-m32r.c:2001 +#: elf32-m32r.c:2000 #, c-format msgid "%s: Instruction set mismatch with previous modules" msgstr "" -#: elf32-m32r.c:2024 +#: elf32-m32r.c:2023 #, c-format msgid "private flags = %lx" msgstr "" -#: elf32-m32r.c:2029 +#: elf32-m32r.c:2028 msgid ": m32r instructions" msgstr "" -#: elf32-m32r.c:2030 +#: elf32-m32r.c:2029 msgid ": m32rx instructions" msgstr "" @@ -1064,152 +1044,152 @@ msgstr "" msgid "%s: Unknown relocation type %d\n" msgstr "" -#: elf32-mips.c:2146 elf64-mips.c:1972 +#: elf32-mips.c:2156 elf64-mips.c:1972 msgid "32bits gp relative relocation occurs for an external symbol" msgstr "" -#: elf32-mips.c:2295 +#: elf32-mips.c:2305 #, c-format msgid "Linking mips16 objects into %s format is not supported" msgstr "" -#: elf32-mips.c:3119 +#: elf32-mips.c:3129 #, c-format msgid "%s: linking PIC files with non-PIC files" msgstr "" -#: elf32-mips.c:3129 +#: elf32-mips.c:3139 #, c-format msgid "%s: linking abicalls files with non-abicalls files" msgstr "" -#: elf32-mips.c:3158 +#: elf32-mips.c:3168 #, c-format msgid "%s: ISA mismatch (-mips%d) with previous modules (-mips%d)" msgstr "" -#: elf32-mips.c:3167 +#: elf32-mips.c:3177 #, c-format msgid "%s: ISA mismatch (%d) with previous modules (%d)" msgstr "" -#: elf32-mips.c:3190 +#: elf32-mips.c:3200 #, c-format msgid "%s: ABI mismatch: linking %s module with previous %s modules" msgstr "" -#: elf32-mips.c:3204 elf32-ppc.c:1470 elf64-ppc.c:1538 elf64-sparc.c:3033 +#: elf32-mips.c:3214 elf32-ppc.c:1470 elf64-ppc.c:1556 elf64-sparc.c:3027 #, c-format msgid "%s: uses different e_flags (0x%lx) fields than previous modules (0x%lx)" msgstr "" -#: elf32-mips.c:3235 +#: elf32-mips.c:3245 msgid " [abi=O32]" msgstr "" -#: elf32-mips.c:3237 +#: elf32-mips.c:3247 msgid " [abi=O64]" msgstr "" -#: elf32-mips.c:3239 +#: elf32-mips.c:3249 msgid " [abi=EABI32]" msgstr "" -#: elf32-mips.c:3241 +#: elf32-mips.c:3251 msgid " [abi=EABI64]" msgstr "" -#: elf32-mips.c:3243 +#: elf32-mips.c:3253 msgid " [abi unknown]" msgstr "" -#: elf32-mips.c:3245 +#: elf32-mips.c:3255 msgid " [abi=N32]" msgstr "" -#: elf32-mips.c:3247 +#: elf32-mips.c:3257 msgid " [abi=64]" msgstr "" -#: elf32-mips.c:3249 +#: elf32-mips.c:3259 msgid " [no abi set]" msgstr "" -#: elf32-mips.c:3252 +#: elf32-mips.c:3262 msgid " [mips1]" msgstr "" -#: elf32-mips.c:3254 +#: elf32-mips.c:3264 msgid " [mips2]" msgstr "" -#: elf32-mips.c:3256 +#: elf32-mips.c:3266 msgid " [mips3]" msgstr "" -#: elf32-mips.c:3258 +#: elf32-mips.c:3268 msgid " [mips4]" msgstr "" -#: elf32-mips.c:3260 +#: elf32-mips.c:3270 msgid " [mips5]" msgstr "" -#: elf32-mips.c:3262 +#: elf32-mips.c:3272 msgid " [mips32]" msgstr "" -#: elf32-mips.c:3264 +#: elf32-mips.c:3274 msgid " [mips64]" msgstr "" -#: elf32-mips.c:3266 +#: elf32-mips.c:3276 msgid " [unknown ISA]" msgstr "" -#: elf32-mips.c:3269 +#: elf32-mips.c:3279 msgid " [32bitmode]" msgstr "" -#: elf32-mips.c:3271 +#: elf32-mips.c:3281 msgid " [not 32bitmode]" msgstr "" -#: elf32-mips.c:4947 +#: elf32-mips.c:4954 msgid "static procedure (no name)" msgstr "" -#: elf32-mips.c:5565 elf64-mips.c:6694 +#: elf32-mips.c:5572 elf64-mips.c:6694 #, c-format msgid "%s: illegal section name `%s'" msgstr "" -#: elf32-mips.c:6132 elf64-mips.c:3150 +#: elf32-mips.c:6139 elf64-mips.c:3150 msgid "not enough GOT space for local GOT entries" msgstr "" -#: elf32-mips.c:7238 elf64-mips.c:4203 +#: elf32-mips.c:7250 elf64-mips.c:4203 #, c-format msgid "%s: %s+0x%lx: jump to stub routine which is not jal" msgstr "" -#: elf32-mips.c:8237 elf64-mips.c:5891 +#: elf32-mips.c:8259 elf64-mips.c:5891 #, c-format msgid "%s: Malformed reloc detected for section %s" msgstr "" -#: elf32-mips.c:8315 elf64-mips.c:5969 +#: elf32-mips.c:8337 elf64-mips.c:5969 #, c-format msgid "%s: CALL16 reloc at 0x%lx not against global symbol" msgstr "" -#: elf32-ppc.c:1436 elf64-ppc.c:1503 +#: elf32-ppc.c:1436 elf64-ppc.c:1521 #, c-format msgid "" "%s: compiled with -mrelocatable and linked with modules compiled normally" msgstr "" -#: elf32-ppc.c:1444 elf64-ppc.c:1511 +#: elf32-ppc.c:1444 elf64-ppc.c:1529 #, c-format msgid "" "%s: compiled normally and linked with modules compiled with -mrelocatable" @@ -1225,7 +1205,7 @@ msgstr "" msgid "%s: relocation %s cannot be used when making a shared object" msgstr "" -#: elf32-ppc.c:3097 elf64-ppc.c:3500 +#: elf32-ppc.c:3097 elf64-ppc.c:3716 #, c-format msgid "%s: unknown relocation type %d for symbol %s" msgstr "" @@ -1286,7 +1266,7 @@ msgstr "" msgid "%s: 0x%lx: fatal: unaligned branch target for relax-support relocation" msgstr "" -#: elf32-sparc.c:1554 elf64-sparc.c:2286 +#: elf32-sparc.c:1554 elf64-sparc.c:2280 #, c-format msgid "%s: probably compiled without -fPIC?" msgstr "" @@ -1368,6 +1348,10 @@ msgstr "" msgid "v850ea architecture" msgstr "" +#: elf32-ia64.c:2247 elf32-xstormy16.c:414 elf64-ia64.c:2247 +msgid "non-zero addend in @fptr reloc" +msgstr "" + #: elf64-alpha.c:858 msgid "GPDISP relocation did not find ldah and lda instructions" msgstr "" @@ -1387,63 +1371,64 @@ msgstr "" msgid "stub entry for %s cannot load .plt, dp offset = %ld" msgstr "" -#: elf64-mmix.c:1268 +#: elf64-mmix.c:1271 #, c-format -msgid "%s: register relocation against non-register symbol: %s in %s" +msgid "%s: register relocation against non-register symbol: (unknown) in %s" msgstr "" -#: elf64-mmix.c:1270 -msgid "(unknown)" +#: elf64-mmix.c:1276 +#, c-format +msgid "%s: register relocation against non-register symbol: %s in %s" msgstr "" -#: elf64-mmix.c:1305 +#: elf64-mmix.c:1312 #, c-format msgid "%s: directive LOCAL valid only with a register or absolute value" msgstr "" -#: elf64-mmix.c:1333 +#: elf64-mmix.c:1340 #, c-format msgid "" "%s: LOCAL directive: Register $%ld is not a local register. First global " "register is $%ld." msgstr "" -#: elf64-mmix.c:1609 +#: elf64-mmix.c:1615 #, c-format msgid "" "%s: Error: multiple definition of `%s'; start of %s is set in a earlier " "linked file\n" msgstr "" -#: elf64-mmix.c:1668 +#: elf64-mmix.c:1674 msgid "Register section has contents\n" msgstr "" -#: elf64-ppc.c:1466 libbfd.c:1436 +#: elf64-ppc.c:1484 libbfd.c:1436 #, c-format msgid "%s: compiled for a big endian system and target is little endian" msgstr "" -#: elf64-ppc.c:1468 libbfd.c:1438 +#: elf64-ppc.c:1486 libbfd.c:1438 #, c-format msgid "%s: compiled for a little endian system and target is big endian" msgstr "" -#: elf64-ppc.c:3166 +#: elf64-ppc.c:3350 #, c-format -msgid "linkage table overflow against `%s'" +msgid "linkage table error against `%s'" msgstr "" -#: elf64-ppc.c:3244 +#: elf64-ppc.c:3432 msgid "stub section size doesn't match calculated size" msgstr "" -#: elf64-ppc.c:3845 +#: elf64-ppc.c:4061 #, c-format msgid "%s: Relocation %s is not supported for symbol %s." msgstr "" -#: elf64-ppc.c:3889 +#: elf64-ppc.c:4105 #, c-format msgid "%s: error: relocation %s not a multiple of 4" msgstr "" @@ -1460,20 +1445,20 @@ msgstr "" #: elf64-sparc.c:1334 #, c-format -msgid "Register %%g%d used incompatibly: %s in %s" +msgid "Register %%g%d used incompatibly: %s in %s, previously %s in %s" msgstr "" -#: elf64-sparc.c:1338 elf64-sparc.c:1362 elf64-sparc.c:1411 +#: elf64-sparc.c:1357 #, c-format -msgid " previously %s in %s" +msgid "Symbol `%s' has differing types: REGISTER in %s, previously %s in %s" msgstr "" -#: elf64-sparc.c:1359 elf64-sparc.c:1408 +#: elf64-sparc.c:1404 #, c-format -msgid "Symbol `%s' has differing types: %s in %s" +msgid "Symbol `%s' has differing types: %s in %s, previously REGISTER in %s" msgstr "" -#: elf64-sparc.c:3014 +#: elf64-sparc.c:3008 #, c-format msgid "%s: linking UltraSPARC specific with HAL specific code" msgstr "" @@ -1508,38 +1493,38 @@ msgstr "" msgid "Warning: size of symbol `%s' changed from %lu to %lu in %s" msgstr "" -#: elflink.h:4020 +#: elflink.h:4014 #, c-format msgid "warning: type and size of dynamic symbol `%s' are not defined" msgstr "" -#: elflink.h:4329 +#: elflink.h:4320 #, c-format msgid "%s: undefined versioned symbol name %s" msgstr "" -#: elflink.h:4559 elflink.h:4567 elflink.h:6218 elflink.h:7295 +#: elflink.h:4544 elflink.h:4552 elflink.h:6203 elflink.h:7280 msgid "Error: out of memory" msgstr "" -#: elflink.h:4729 +#: elflink.h:4714 msgid "Not enough memory to sort relocations" msgstr "" -#: elflink.h:5995 +#: elflink.h:5980 #, c-format msgid "%s: could not find output section %s for input section %s" msgstr "" -#: elflink.h:6568 +#: elflink.h:6553 msgid "warning: relocation against removed section; zeroing" msgstr "" -#: elflink.h:6598 +#: elflink.h:6583 msgid "warning: relocation against removed section" msgstr "" -#: elflink.h:6611 +#: elflink.h:6596 #, c-format msgid "local symbols in discarded section %s" msgstr "" @@ -1576,7 +1561,7 @@ msgstr "" #: ieee.c:877 #, c-format -msgid "%s: unimplemented ATI record %u for symbol %u" +msgid "%s: unimplemented ATI record %u for symbol %u" msgstr "" #: ieee.c:902 @@ -1636,7 +1621,7 @@ msgstr "" #: ihex.c:863 #, c-format -msgid "%s: address 0x%s out of range for Intex Hex file" +msgid "%s: address 0x%s out of range for Intel Hex file" msgstr "" #: libbfd.c:492 @@ -1648,14 +1633,14 @@ msgstr "" msgid "not mapping: env var not set\n" msgstr "" -#: libbfd.c:1463 +#: libbfd.c:1467 #, c-format -msgid "Deprecated %s called" +msgid "Deprecated %s called at %s line %d in %s\n" msgstr "" -#: libbfd.c:1465 +#: libbfd.c:1470 #, c-format -msgid " at %s line %d in %s\n" +msgid "Deprecated %s called\n" msgstr "" #: linker.c:1849 @@ -1945,7 +1930,7 @@ msgstr "" msgid "%s:%d: Unexpected character `%s' in S-record file\n" msgstr "" -#: syms.c:996 +#: syms.c:998 msgid "Unsupported .stab relocation" msgstr "" @@ -2000,193 +1985,110 @@ msgstr "" msgid "failed to enter %s" msgstr "" -#: vms-tir.c:78 +#: vms-tir.c:81 msgid "No Mem !" msgstr "" -#: vms-tir.c:313 -msgid "Bad section index in ETIR_S_C_STA_PQ" -msgstr "" - -#: vms-tir.c:328 +#: vms-tir.c:362 #, c-format -msgid "Unsupported STA cmd %d" +msgid "bad section index in %s" msgstr "" -#: vms-tir.c:333 vms-tir.c:1301 +#: vms-tir.c:375 #, c-format -msgid "Reserved STA cmd %d" +msgid "unsupported STA cmd %s" msgstr "" -#: vms-tir.c:443 +#: vms-tir.c:380 vms-tir.c:1240 #, c-format -msgid "ETIR_S_C_STO_GBL: no symbol \"%s\"" +msgid "reserved STA cmd %d" msgstr "" -#: vms-tir.c:465 +#: vms-tir.c:491 vms-tir.c:514 #, c-format -msgid "ETIR_S_C_STO_CA: no symbol \"%s\"" -msgstr "" - -#: vms-tir.c:478 -msgid "ETIR_S_C_STO_RB/AB: Not supported" -msgstr "" - -#: vms-tir.c:538 -msgid "ETIR_S_C_STO_LP_PSB: Not supported" -msgstr "" - -#: vms-tir.c:544 -msgid "ETIR_S_C_STO_HINT_GBL: not implemented" -msgstr "" - -#: vms-tir.c:550 -msgid "ETIR_S_C_STO_HINT_PS: not implemented" +msgid "%s: no symbol \"%s\"" msgstr "" -#: vms-tir.c:554 vms-tir.c:1473 +#. unsigned shift +#. rotate +#. Redefine symbol to current location. +#. Define a literal. +#: vms-tir.c:581 vms-tir.c:693 vms-tir.c:803 vms-tir.c:821 vms-tir.c:829 +#: vms-tir.c:838 vms-tir.c:1563 #, c-format -msgid "Reserved STO cmd %d" +msgid "%s: not supported" msgstr "" -#: vms-tir.c:667 -msgid "ETIR_S_C_OPR_INSV: Not supported" -msgstr "" - -#: vms-tir.c:685 -msgid "ETIR_S_C_OPR_USH: Not supported" -msgstr "" - -#: vms-tir.c:691 -msgid "ETIR_S_C_OPR_ROT: Not supported" -msgstr "" - -#: vms-tir.c:710 -msgid "ETIR_S_C_OPR_REDEF: Not supported" -msgstr "" - -#: vms-tir.c:716 -msgid "ETIR_S_C_OPR_DFLIT: Not supported" -msgstr "" - -#: vms-tir.c:720 vms-tir.c:1668 +#: vms-tir.c:586 vms-tir.c:1418 #, c-format -msgid "Reserved OPR cmd %d" +msgid "%s: not implemented" msgstr "" -#: vms-tir.c:788 vms-tir.c:1737 +#: vms-tir.c:590 vms-tir.c:1422 #, c-format -msgid "Reserved CTL cmd %d" +msgid "reserved STO cmd %d" msgstr "" -#: vms-tir.c:816 -msgid "ETIR_S_C_STC_LP: not supported" -msgstr "" - -#: vms-tir.c:834 -msgid "ETIR_S_C_STC_GBL: not supported" -msgstr "" - -#: vms-tir.c:842 -msgid "ETIR_S_C_STC_GCA: not supported" +#: vms-tir.c:708 vms-tir.c:1568 +#, c-format +msgid "reserved OPR cmd %d" msgstr "" -#: vms-tir.c:851 -msgid "ETIR_S_C_STC_PS: not supported" +#: vms-tir.c:776 vms-tir.c:1632 +#, c-format +msgid "reserved CTL cmd %d" msgstr "" -#. -#. * stack byte from image -#. * arg: - -#. * -#. -#: vms-tir.c:1199 -msgid "Stack-from-image not implemented" +#. stack byte from image +#. arg: none. +#: vms-tir.c:1148 +msgid "stack-from-image not implemented" msgstr "" -#: vms-tir.c:1219 -msgid "Stack-entry-mask not fully implemented" +#: vms-tir.c:1166 +msgid "stack-entry-mask not fully implemented" msgstr "" +#. compare procedure argument +#. arg: cs symbol name +#. by argument index +#. da argument descriptor #. -#. * compare procedure argument -#. * arg: cs symbol name -#. * by argument index -#. * da argument descriptor -#. * -#. * compare argument descriptor with symbol argument (ARG$V_PASSMECH) -#. * and stack TRUE (args match) or FALSE (args dont match) value -#. -#: vms-tir.c:1235 +#. compare argument descriptor with symbol argument (ARG$V_PASSMECH) +#. and stack TRUE (args match) or FALSE (args dont match) value. +#: vms-tir.c:1180 msgid "PASSMECH not fully implemented" msgstr "" -#: vms-tir.c:1256 -msgid "Stack-local-symbol not fully implemented" +#: vms-tir.c:1199 +msgid "stack-local-symbol not fully implemented" msgstr "" -#: vms-tir.c:1271 -msgid "Stack-literal not fully implemented" +#: vms-tir.c:1212 +msgid "stack-literal not fully implemented" msgstr "" -#: vms-tir.c:1294 -msgid "Stack-local-symbol-entry-point-mask not fully implemented" +#: vms-tir.c:1233 +msgid "stack-local-symbol-entry-point-mask not fully implemented" msgstr "" -#: vms-tir.c:1469 +#: vms-tir.c:1510 vms-tir.c:1522 vms-tir.c:1534 vms-tir.c:1546 vms-tir.c:1611 +#: vms-tir.c:1619 vms-tir.c:1627 #, c-format -msgid "Unimplemented STO cmd %d" -msgstr "" - -#: vms-tir.c:1608 -msgid "TIR_S_C_OPR_ASH incomplete" -msgstr "" - -#: vms-tir.c:1622 -msgid "TIR_S_C_OPR_USH incomplete" -msgstr "" - -#: vms-tir.c:1636 -msgid "TIR_S_C_OPR_ROT incomplete" -msgstr "" - -#. -#. * redefine symbol to current location -#. -#: vms-tir.c:1657 -msgid "TIR_S_C_OPR_REDEF not supported" -msgstr "" - -#. -#. * define a literal -#. -#: vms-tir.c:1664 -msgid "TIR_S_C_OPR_DFLIT not supported" -msgstr "" - -#: vms-tir.c:1718 -msgid "TIR_S_C_CTL_DFLOC not fully implemented" -msgstr "" - -#: vms-tir.c:1726 -msgid "TIR_S_C_CTL_STLOC not fully implemented" -msgstr "" - -#: vms-tir.c:1734 -msgid "TIR_S_C_CTL_STKDL not fully implemented" +msgid "%s: not fully implemented" msgstr "" -#: vms-tir.c:1791 +#: vms-tir.c:1684 #, c-format -msgid "Obj code %d not found" +msgid "obj code %d not found" msgstr "" -#: vms-tir.c:2137 +#: vms-tir.c:2019 #, c-format msgid "SEC_RELOC with no relocs in section %s" msgstr "" -#: vms-tir.c:2424 +#: vms-tir.c:2307 #, c-format msgid "Unhandled relocation %s" msgstr "" @@ -2275,226 +2177,220 @@ msgstr "" msgid "%s: loader reloc in read-only section %s" msgstr "" -#: elf32-ia64.c:2190 elf64-ia64.c:2190 +#: elf32-ia64.c:2189 elf64-ia64.c:2189 msgid "@pltoff reloc against local symbol" msgstr "" -#: elf32-ia64.c:2248 elf64-ia64.c:2248 -msgid "non-zero addend in @fptr reloc" -msgstr "" - -#: elf32-ia64.c:3414 elf64-ia64.c:3414 +#: elf32-ia64.c:3413 elf64-ia64.c:3413 #, c-format msgid "%s: short data segment overflowed (0x%lx >= 0x400000)" msgstr "" -#: elf32-ia64.c:3425 elf64-ia64.c:3425 +#: elf32-ia64.c:3424 elf64-ia64.c:3424 #, c-format msgid "%s: __gp does not cover short data segment" msgstr "" -#: elf32-ia64.c:3729 elf64-ia64.c:3729 +#: elf32-ia64.c:3728 elf64-ia64.c:3728 #, c-format msgid "%s: linking non-pic code in a shared library" msgstr "" -#: elf32-ia64.c:3762 elf64-ia64.c:3762 +#: elf32-ia64.c:3761 elf64-ia64.c:3761 #, c-format msgid "%s: @gprel relocation against dynamic symbol %s" msgstr "" -#: elf32-ia64.c:3901 elf64-ia64.c:3901 +#: elf32-ia64.c:3900 elf64-ia64.c:3900 #, c-format msgid "%s: dynamic relocation against speculation fixup" msgstr "" -#: elf32-ia64.c:3909 elf64-ia64.c:3909 +#: elf32-ia64.c:3908 elf64-ia64.c:3908 #, c-format msgid "%s: speculation fixup against undefined weak symbol" msgstr "" -#: elf32-ia64.c:4093 elf64-ia64.c:4093 +#: elf32-ia64.c:4092 elf64-ia64.c:4092 msgid "unsupported reloc" msgstr "" -#: elf32-ia64.c:4373 elf64-ia64.c:4373 +#: elf32-ia64.c:4372 elf64-ia64.c:4372 #, c-format msgid "%s: linking trap-on-NULL-dereference with non-trapping files" msgstr "" -#: elf32-ia64.c:4382 elf64-ia64.c:4382 +#: elf32-ia64.c:4381 elf64-ia64.c:4381 #, c-format msgid "%s: linking big-endian files with little-endian files" msgstr "" -#: elf32-ia64.c:4391 elf64-ia64.c:4391 +#: elf32-ia64.c:4390 elf64-ia64.c:4390 #, c-format msgid "%s: linking 64-bit files with 32-bit files" msgstr "" -#: elf32-ia64.c:4400 elf64-ia64.c:4400 +#: elf32-ia64.c:4399 elf64-ia64.c:4399 #, c-format msgid "%s: linking constant-gp files with non-constant-gp files" msgstr "" -#: elf32-ia64.c:4410 elf64-ia64.c:4410 +#: elf32-ia64.c:4409 elf64-ia64.c:4409 #, c-format msgid "%s: linking auto-pic files with non-auto-pic files" msgstr "" -#: peigen.c:964 pepigen.c:964 +#: peigen.c:962 pepigen.c:962 #, c-format msgid "%s: line number overflow: 0x%lx > 0xffff" msgstr "" -#: peigen.c:981 pepigen.c:981 +#: peigen.c:979 pepigen.c:979 #, c-format msgid "%s: reloc overflow 1: 0x%lx > 0xffff" msgstr "" -#: peigen.c:995 pepigen.c:995 +#: peigen.c:993 pepigen.c:993 msgid "Export Directory [.edata (or where ever we found it)]" msgstr "" -#: peigen.c:996 pepigen.c:996 +#: peigen.c:994 pepigen.c:994 msgid "Import Directory [parts of .idata]" msgstr "" -#: peigen.c:997 pepigen.c:997 +#: peigen.c:995 pepigen.c:995 msgid "Resource Directory [.rsrc]" msgstr "" -#: peigen.c:998 pepigen.c:998 +#: peigen.c:996 pepigen.c:996 msgid "Exception Directory [.pdata]" msgstr "" -#: peigen.c:999 pepigen.c:999 +#: peigen.c:997 pepigen.c:997 msgid "Security Directory" msgstr "" -#: peigen.c:1000 pepigen.c:1000 +#: peigen.c:998 pepigen.c:998 msgid "Base Relocation Directory [.reloc]" msgstr "" -#: peigen.c:1001 pepigen.c:1001 +#: peigen.c:999 pepigen.c:999 msgid "Debug Directory" msgstr "" -#: peigen.c:1002 pepigen.c:1002 +#: peigen.c:1000 pepigen.c:1000 msgid "Description Directory" msgstr "" -#: peigen.c:1003 pepigen.c:1003 +#: peigen.c:1001 pepigen.c:1001 msgid "Special Directory" msgstr "" -#: peigen.c:1004 pepigen.c:1004 +#: peigen.c:1002 pepigen.c:1002 msgid "Thread Storage Directory [.tls]" msgstr "" -#: peigen.c:1005 pepigen.c:1005 +#: peigen.c:1003 pepigen.c:1003 msgid "Load Configuration Directory" msgstr "" -#: peigen.c:1006 pepigen.c:1006 +#: peigen.c:1004 pepigen.c:1004 msgid "Bound Import Directory" msgstr "" -#: peigen.c:1007 pepigen.c:1007 +#: peigen.c:1005 pepigen.c:1005 msgid "Import Address Table Directory" msgstr "" -#: peigen.c:1008 pepigen.c:1008 +#: peigen.c:1006 pepigen.c:1006 msgid "Delay Import Directory" msgstr "" -#: peigen.c:1009 peigen.c:1010 pepigen.c:1009 pepigen.c:1010 +#: peigen.c:1007 peigen.c:1008 pepigen.c:1007 pepigen.c:1008 msgid "Reserved" msgstr "" -#: peigen.c:1073 pepigen.c:1073 +#: peigen.c:1071 pepigen.c:1071 msgid "" "\n" "There is an import table, but the section containing it could not be found\n" msgstr "" -#: peigen.c:1078 pepigen.c:1078 +#: peigen.c:1076 pepigen.c:1076 #, c-format msgid "" "\n" "There is an import table in %s at 0x%lx\n" msgstr "" -#: peigen.c:1115 pepigen.c:1115 +#: peigen.c:1113 pepigen.c:1113 #, c-format msgid "" "\n" "Function descriptor located at the start address: %04lx\n" msgstr "" -#: peigen.c:1118 pepigen.c:1118 +#: peigen.c:1116 pepigen.c:1116 #, c-format msgid "\tcode-base %08lx toc (loadable/actual) %08lx/%08lx\n" msgstr "" -#: peigen.c:1124 pepigen.c:1124 +#: peigen.c:1122 pepigen.c:1122 msgid "" "\n" "No reldata section! Function descriptor not decoded.\n" msgstr "" -#: peigen.c:1129 pepigen.c:1129 +#: peigen.c:1127 pepigen.c:1127 #, c-format msgid "" "\n" "The Import Tables (interpreted %s section contents)\n" msgstr "" -#: peigen.c:1132 pepigen.c:1132 -msgid " vma: Hint Time Forward DLL First\n" -msgstr "" - -#: peigen.c:1134 pepigen.c:1134 -msgid " Table Stamp Chain Name Thunk\n" +#: peigen.c:1130 pepigen.c:1130 +msgid "" +" vma: Hint Time Forward DLL First\n" +" Table Stamp Chain Name Thunk\n" msgstr "" -#: peigen.c:1182 pepigen.c:1182 +#: peigen.c:1180 pepigen.c:1180 #, c-format msgid "" "\n" "\tDLL Name: %s\n" msgstr "" -#: peigen.c:1186 peigen.c:1249 pepigen.c:1186 pepigen.c:1249 +#: peigen.c:1184 peigen.c:1247 pepigen.c:1184 pepigen.c:1247 msgid "\tvma: Hint/Ord Member-Name\n" msgstr "" -#: peigen.c:1248 pepigen.c:1248 +#: peigen.c:1246 pepigen.c:1246 msgid "\tThe Import Address Table (difference found)\n" msgstr "" -#: peigen.c:1255 pepigen.c:1255 +#: peigen.c:1253 pepigen.c:1253 msgid "\t>>> Ran out of IAT members!\n" msgstr "" -#: peigen.c:1273 pepigen.c:1273 +#: peigen.c:1271 pepigen.c:1271 msgid "\tThe Import Address Table is identical\n" msgstr "" -#: peigen.c:1345 pepigen.c:1345 +#: peigen.c:1343 pepigen.c:1343 msgid "" "\n" "There is an export table, but the section containing it could not be found\n" msgstr "" -#: peigen.c:1350 pepigen.c:1350 +#: peigen.c:1348 pepigen.c:1348 #, c-format msgid "" "\n" "There is an export table in %s at 0x%lx\n" msgstr "" -#: peigen.c:1381 pepigen.c:1381 +#: peigen.c:1379 pepigen.c:1379 #, c-format msgid "" "\n" @@ -2502,131 +2398,129 @@ msgid "" "\n" msgstr "" -#: peigen.c:1385 pepigen.c:1385 +#: peigen.c:1383 pepigen.c:1383 #, c-format msgid "Export Flags \t\t\t%lx\n" msgstr "" -#: peigen.c:1388 pepigen.c:1388 +#: peigen.c:1386 pepigen.c:1386 #, c-format msgid "Time/Date stamp \t\t%lx\n" msgstr "" -#: peigen.c:1391 pepigen.c:1391 +#: peigen.c:1389 pepigen.c:1389 #, c-format msgid "Major/Minor \t\t\t%d/%d\n" msgstr "" -#: peigen.c:1394 pepigen.c:1394 +#: peigen.c:1392 pepigen.c:1392 msgid "Name \t\t\t\t" msgstr "" -#: peigen.c:1400 pepigen.c:1400 +#: peigen.c:1398 pepigen.c:1398 #, c-format msgid "Ordinal Base \t\t\t%ld\n" msgstr "" -#: peigen.c:1403 pepigen.c:1403 +#: peigen.c:1401 pepigen.c:1401 msgid "Number in:\n" msgstr "" -#: peigen.c:1406 pepigen.c:1406 +#: peigen.c:1404 pepigen.c:1404 #, c-format msgid "\tExport Address Table \t\t%08lx\n" msgstr "" -#: peigen.c:1410 pepigen.c:1410 +#: peigen.c:1408 pepigen.c:1408 #, c-format msgid "\t[Name Pointer/Ordinal] Table\t%08lx\n" msgstr "" -#: peigen.c:1413 pepigen.c:1413 +#: peigen.c:1411 pepigen.c:1411 msgid "Table Addresses\n" msgstr "" -#: peigen.c:1416 pepigen.c:1416 +#: peigen.c:1414 pepigen.c:1414 msgid "\tExport Address Table \t\t" msgstr "" -#: peigen.c:1421 pepigen.c:1421 +#: peigen.c:1419 pepigen.c:1419 msgid "\tName Pointer Table \t\t" msgstr "" -#: peigen.c:1426 pepigen.c:1426 +#: peigen.c:1424 pepigen.c:1424 msgid "\tOrdinal Table \t\t\t" msgstr "" -#: peigen.c:1441 pepigen.c:1441 +#: peigen.c:1439 pepigen.c:1439 #, c-format msgid "" "\n" "Export Address Table -- Ordinal Base %ld\n" msgstr "" -#: peigen.c:1460 pepigen.c:1460 +#: peigen.c:1458 pepigen.c:1458 msgid "Forwarder RVA" msgstr "" -#: peigen.c:1471 pepigen.c:1471 +#: peigen.c:1469 pepigen.c:1469 msgid "Export RVA" msgstr "" -#: peigen.c:1478 pepigen.c:1478 +#: peigen.c:1476 pepigen.c:1476 msgid "" "\n" "[Ordinal/Name Pointer] Table\n" msgstr "" -#: peigen.c:1533 pepigen.c:1533 +#: peigen.c:1531 pepigen.c:1531 #, c-format msgid "Warning, .pdata section size (%ld) is not a multiple of %d\n" msgstr "" -#: peigen.c:1537 pepigen.c:1537 +#: peigen.c:1535 pepigen.c:1535 msgid "" "\n" "The Function Table (interpreted .pdata section contents)\n" msgstr "" -#: peigen.c:1540 pepigen.c:1540 +#: peigen.c:1538 pepigen.c:1538 msgid " vma:\t\t\tBegin Address End Address Unwind Info\n" msgstr "" -#: peigen.c:1543 pepigen.c:1543 -msgid " vma:\t\tBegin End EH EH PrologEnd Exception\n" -msgstr "" - -#: peigen.c:1545 pepigen.c:1545 -msgid " \t\tAddress Address Handler Data Address Mask\n" +#: peigen.c:1540 pepigen.c:1540 +msgid "" +" vma:\t\tBegin End EH EH PrologEnd Exception\n" +" \t\tAddress Address Handler Data Address Mask\n" msgstr "" -#: peigen.c:1613 pepigen.c:1613 +#: peigen.c:1610 pepigen.c:1610 msgid " Register save millicode" msgstr "" -#: peigen.c:1616 pepigen.c:1616 +#: peigen.c:1613 pepigen.c:1613 msgid " Register restore millicode" msgstr "" -#: peigen.c:1619 pepigen.c:1619 +#: peigen.c:1616 pepigen.c:1616 msgid " Glue code sequence" msgstr "" -#: peigen.c:1671 pepigen.c:1671 +#: peigen.c:1668 pepigen.c:1668 msgid "" "\n" "\n" "PE File Base Relocations (interpreted .reloc section contents)\n" msgstr "" -#: peigen.c:1701 pepigen.c:1701 +#: peigen.c:1698 pepigen.c:1698 #, c-format msgid "" "\n" "Virtual Address: %08lx Chunk size %ld (0x%lx) Number of fixups %ld\n" msgstr "" -#: peigen.c:1714 pepigen.c:1714 +#: peigen.c:1711 pepigen.c:1711 #, c-format msgid "\treloc %4d offset %4x [%4lx] %s" msgstr "" @@ -2634,7 +2528,7 @@ msgstr "" #. The MS dumpbin program reportedly ands with 0xff0f before #. printing the characteristics field. Not sure why. No reason to #. emulate it here. -#: peigen.c:1754 pepigen.c:1754 +#: peigen.c:1751 pepigen.c:1751 #, c-format msgid "" "\n" diff --git a/bfd/po/es.po b/bfd/po/es.po index 6fe267db2..db6b76ab4 100644 --- a/bfd/po/es.po +++ b/bfd/po/es.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: bfd 2.12-pre020121\n" -"POT-Creation-Date: 2002-01-17 12:55+0000\n" +"POT-Creation-Date: 2002-01-31 17:07+0000\n" "PO-Revision-Date: 2002-01-24 10:04-0600\n" "Last-Translator: Cristian Othón Martínez Vera \n" "Language-Team: Spanish \n" @@ -36,12 +36,17 @@ msgstr "%s: Registro de reubicaci #: aoutx.h:1282 aoutx.h:1699 #, c-format msgid "%s: can not represent section `%s' in a.out object file format" -msgstr "%s: no se puede representar la sección `%s' en el fichero objeto de formato a.out" +msgstr "" +"%s: no se puede representar la sección `%s' en el fichero objeto de formato " +"a.out" #: aoutx.h:1669 #, c-format -msgid "%s: can not represent section for symbol `%s' in a.out object file format" -msgstr "%s: no se puede representar la sección para el símbolo `%s' en el fichero objeto de formato a.out" +msgid "" +"%s: can not represent section for symbol `%s' in a.out object file format" +msgstr "" +"%s: no se puede representar la sección para el símbolo `%s' en el fichero " +"objeto de formato a.out" #: aoutx.h:1671 msgid "*unknown*" @@ -54,7 +59,8 @@ msgstr "%s: enlace reubicable desde %s a %s sin soporte" #: archive.c:1826 msgid "Warning: writing archive was slow: rewriting timestamp\n" -msgstr "Aviso: la escritura del fichero fue lenta: reescribiendo la marca de tiempo\n" +msgstr "" +"Aviso: la escritura del fichero fue lenta: reescribiendo la marca de tiempo\n" # ¡Uff! Si utilizáramos file=archivo, esta traducción sería imposible. cfuga #: archive.c:2093 @@ -66,109 +72,111 @@ msgstr "Leyendo el archivo de la modificaci msgid "Writing updated armap timestamp" msgstr "Escribiendo la marca de tiempo actualizada de armap" -#: bfd.c:281 +#: bfd.c:274 msgid "No error" msgstr "No hay error" -#: bfd.c:282 +#: bfd.c:275 msgid "System call error" msgstr "Error en la llamada al sistema" -#: bfd.c:283 +#: bfd.c:276 msgid "Invalid bfd target" msgstr "Objetivo bfd inválido" -#: bfd.c:284 +#: bfd.c:277 msgid "File in wrong format" msgstr "Fichero en formato erróneo" -#: bfd.c:285 +#: bfd.c:278 msgid "Archive object file in wrong format" msgstr "Archivo de ficheros objeto en formato erróneo" -#: bfd.c:286 +#: bfd.c:279 msgid "Invalid operation" msgstr "Operación inválida" -#: bfd.c:287 +#: bfd.c:280 msgid "Memory exhausted" msgstr "Memoria agotada" -#: bfd.c:288 +#: bfd.c:281 msgid "No symbols" msgstr "No hay símbolos" -#: bfd.c:289 +#: bfd.c:282 msgid "Archive has no index; run ranlib to add one" msgstr "El archivo no tiene índice; ejecute ranlib para agregar uno" -#: bfd.c:290 +#: bfd.c:283 msgid "No more archived files" msgstr "No hay más ficheros archivados" -#: bfd.c:291 +#: bfd.c:284 msgid "Malformed archive" msgstr "Archivo malformado" -#: bfd.c:292 +#: bfd.c:285 msgid "File format not recognized" msgstr "No se reconoce el formato del fichero" -#: bfd.c:293 +#: bfd.c:286 msgid "File format is ambiguous" msgstr "El formato del fichero es ambiguo" -#: bfd.c:294 +#: bfd.c:287 msgid "Section has no contents" msgstr "La sección no tiene contenidos" -#: bfd.c:295 +#: bfd.c:288 msgid "Nonrepresentable section on output" msgstr "Sección no representable en la salida" -#: bfd.c:296 +#: bfd.c:289 msgid "Symbol needs debug section which does not exist" msgstr "Un símbolo requiere de una sección de depuración, la cual no existe" -#: bfd.c:297 +#: bfd.c:290 msgid "Bad value" msgstr "Valor erróneo" -#: bfd.c:298 +#: bfd.c:291 msgid "File truncated" msgstr "Fichero truncado" -#: bfd.c:299 +#: bfd.c:292 msgid "File too big" msgstr "Fichero demasiado grande" -#: bfd.c:300 +#: bfd.c:293 msgid "#" msgstr "#" -#: bfd.c:707 +#: bfd.c:700 #, c-format msgid "BFD %s assertion fail %s:%d" msgstr "falló la aseveración BFD %s %s:%d" -#: bfd.c:726 +#: bfd.c:719 #, c-format msgid "BFD %s internal error, aborting at %s line %d in %s\n" msgstr "error interno de BFD %s, abortando en %s línea %d en %s\n" -#: bfd.c:730 -#, c-format -msgid "BFD %sinternal error, aborting at %s line %d\n" +#: bfd.c:723 +#, fuzzy, c-format +msgid "BFD %s internal error, aborting at %s line %d\n" msgstr "error interno de BFD %s, abortando en %s línea %d\n" -#: bfd.c:732 +#: bfd.c:725 msgid "Please report this bug.\n" msgstr "Por favor reporte este bicho.\n" #: binary.c:306 #, c-format msgid "Warning: Writing section `%s' to huge (ie negative) file offset 0x%lx." -msgstr "Aviso: Escribiendo la sección `%s' a un desplazamiento de fichero grande (pe negativo) 0x%lx." +msgstr "" +"Aviso: Escribiendo la sección `%s' a un desplazamiento de fichero grande (pe " +"negativo) 0x%lx." #: coff-a29k.c:119 msgid "Missing IHCONST" @@ -178,7 +186,7 @@ msgstr "IHCONST faltante" msgid "Missing IHIHALF" msgstr "IHIHALF faltante" -#: coff-a29k.c:212 +#: coff-a29k.c:212 coff-or32.c:228 msgid "Unrecognized reloc" msgstr "Reubicación no reconocida" @@ -190,7 +198,7 @@ msgstr "reubicaci msgid "missing IHIHALF reloc" msgstr "reubicación IHIHALF faltante" -#: coff-alpha.c:881 coff-alpha.c:918 +#: coff-alpha.c:881 coff-alpha.c:918 coff-alpha.c:1989 coff-mips.c:1433 msgid "GP relative relocation used when GP not defined" msgstr "se usó una reubicación GP relativa cuando GP no estaba definido" @@ -198,10 +206,6 @@ msgstr "se us msgid "using multiple gp values" msgstr "usando valores múltiples de gp" -#: coff-alpha.c:1989 coff-mips.c:1433 -msgid "GP relative relocation when GP not defined" -msgstr "reubicación GP relativa cuando GP no estaba definido" - #: coff-arm.c:1051 elf32-arm.h:285 #, c-format msgid "%s: unable to find THUMB glue '%s' for `%s'" @@ -244,37 +248,57 @@ msgstr "%s: #: coff-arm.c:2235 #, c-format msgid "%s: ERROR: compiled for APCS-%d whereas target %s uses APCS-%d" -msgstr "%s: ERROR: compilado para APCS-%d mientras que el objetivo %s usa APCS-%d" +msgstr "" +"%s: ERROR: compilado para APCS-%d mientras que el objetivo %s usa APCS-%d" #: coff-arm.c:2250 #, c-format -msgid "%s: ERROR: passes floats in float registers whereas target %s uses integer registers" -msgstr "%s: ERROR: pasan números de coma flotante en registros de coma flotante mientras que el objetivo %s usa registros enteros" +msgid "" +"%s: ERROR: passes floats in float registers whereas target %s uses integer " +"registers" +msgstr "" +"%s: ERROR: pasan números de coma flotante en registros de coma flotante " +"mientras que el objetivo %s usa registros enteros" #: coff-arm.c:2253 #, c-format -msgid "%s: ERROR: passes floats in integer registers whereas target %s uses float registers" -msgstr "%s: ERROR: pasan números de coma flotante en registros enteros mientras que el objetivo %s usa registros de coma flotante" +msgid "" +"%s: ERROR: passes floats in integer registers whereas target %s uses float " +"registers" +msgstr "" +"%s: ERROR: pasan números de coma flotante en registros enteros mientras que " +"el objetivo %s usa registros de coma flotante" #: coff-arm.c:2268 #, c-format -msgid "%s: ERROR: compiled as position independent code, whereas target %s is absolute position" -msgstr "%s: ERROR: compilado como código independiente de posición, mientras que el objetivo %s es de posición absoluta" +msgid "" +"%s: ERROR: compiled as position independent code, whereas target %s is " +"absolute position" +msgstr "" +"%s: ERROR: compilado como código independiente de posición, mientras que el " +"objetivo %s es de posición absoluta" #: coff-arm.c:2271 #, c-format -msgid "%s: ERROR: compiled as absolute position code, whereas target %s is position independent" -msgstr "%s: ERROR: compilado como código de posición absoluta, mientras que el objetivo %s es independiente de posición" +msgid "" +"%s: ERROR: compiled as absolute position code, whereas target %s is position " +"independent" +msgstr "" +"%s: ERROR: compilado como código de posición absoluta, mientras que el " +"objetivo %s es independiente de posición" #: coff-arm.c:2300 -#, c-format -msgid "Warning: input file %s supports interworking, whereas %s does not." -msgstr "Aviso: el fichero de entrada %s soporta interoperabilidad, mientras que %s no." +#, fuzzy, c-format +msgid "Warning: %s supports interworking, whereas %s does not." +msgstr "" +"Aviso: el fichero de entrada %s soporta interoperabilidad, mientras que %s no" #: coff-arm.c:2303 -#, c-format -msgid "Warning: input file %s does not support interworking, whereas %s does." -msgstr "Aviso: el fichero de entrada %s no soporta interoperabilidad, mientras que %s sí." +#, fuzzy, c-format +msgid "Warning: %s does not support interworking, whereas %s does." +msgstr "" +"Aviso: el fichero de entrada %s no soporta interoperabilidad, mientras que %" +"s sí" #: coff-arm.c:2330 #, c-format @@ -309,25 +333,31 @@ msgstr "[soporte para interoperabilidad]" msgid " [interworking not supported]" msgstr "[sin soporte para interoperabilidad]" -#: coff-arm.c:2401 -#, c-format -msgid "Warning: Not setting interworking flag of %s, since it has already been specified as non-interworking" -msgstr "Aviso: No se establece la opción de interoperabilidad de %s, ya que ya había sido especificado como no interoperable" +#: coff-arm.c:2401 elf32-arm.h:2114 +#, fuzzy, c-format +msgid "" +"Warning: Not setting interworking flag of %s since it has already been " +"specified as non-interworking" +msgstr "" +"Aviso: No se establece la opción de interoperabilidad de %s, ya que ya había " +"sido especificado como no interoperable" -#: coff-arm.c:2405 +#: coff-arm.c:2405 elf32-arm.h:2118 #, c-format msgid "Warning: Clearing the interworking flag of %s due to outside request" -msgstr "Aviso: Limpiando la opción de interoperabilidad de %s debido a una petición externa" +msgstr "" +"Aviso: Limpiando la opción de interoperabilidad de %s debido a una petición " +"externa" #: coff-i960.c:136 coff-i960.c:485 msgid "uncertain calling convention for non-COFF symbol" msgstr "convención de llamada incierta para un símbolo que no es COFF" -#: coff-m68k.c:481 coff-mips.c:2431 elf32-m68k.c:2212 +#: coff-m68k.c:481 coff-mips.c:2431 elf32-m68k.c:2212 elf32-mips.c:9954 msgid "unsupported reloc type" msgstr "tipo de reubicación sin soporte" -#: coff-mips.c:875 elf32-mips.c:1987 elf64-mips.c:1739 +#: coff-mips.c:875 elf32-mips.c:1997 elf64-mips.c:1739 msgid "GP relative relocation when _gp not defined" msgstr "reubicación GP relativa cuando _gp no está definido" @@ -361,7 +391,7 @@ msgstr "%s: el s msgid "Unrecognized reloc type 0x%x" msgstr "Tipo de reubicación 0x%x no reconocida" -#: coff-tic54x.c:390 coffcode.h:4847 +#: coff-tic54x.c:390 coffcode.h:4868 #, c-format msgid "%s: warning: illegal symbol index %ld in relocs" msgstr "%s: aviso: íncide de símbolos %ld ilegal en reubicaciones" @@ -376,32 +406,32 @@ msgstr "ignorando la reubicaci msgid "%s (%s): Section flag %s (0x%x) ignored" msgstr "%s (%s): Se ignora la opción de sección %s (0x%x)" -#: coffcode.h:2125 +#: coffcode.h:2132 #, c-format msgid "Unrecognized TI COFF target id '0x%x'" msgstr "Id de objetivo TI COFF '0x%x' no reconocido" -#: coffcode.h:4236 +#: coffcode.h:4257 #, c-format msgid "%s: warning: illegal symbol index %ld in line numbers" msgstr "%s: aviso: índice de símbolos %ld ilegal en los números de línea" -#: coffcode.h:4250 +#: coffcode.h:4271 #, c-format msgid "%s: warning: duplicate line number information for `%s'" msgstr "%s: aviso: información duplicada de números de línea para `%s'" -#: coffcode.h:4609 +#: coffcode.h:4630 #, c-format msgid "%s: Unrecognized storage class %d for %s symbol `%s'" msgstr "%s: Clase de almacenamiento %d no reconocida para %s símbolo `%s'" -#: coffcode.h:4740 +#: coffcode.h:4761 #, c-format msgid "warning: %s: local symbol `%s' has no section" msgstr "aviso: %s: el símbolo local `%s' no tiene sección" -#: coffcode.h:4885 +#: coffcode.h:4906 #, c-format msgid "%s: illegal relocation type %d at address 0x%lx" msgstr "%s: tipo de reubicación %d ilegal en la dirección 0x%lx" @@ -411,13 +441,6 @@ msgstr "%s: tipo de reubicaci msgid "%s: bad string table size %lu" msgstr "%s: tamaño de tabla de cadenas %lu erróneo" -# FIXME: Revisar en el código si son abreviaturas comunes, o corresponden a -# partes fijas dentro del programa. cfuga -#: coffgen.c:2138 -#, c-format -msgid "AUX tagndx %ld ttlsiz 0x%lx lnnos %ld next %ld" -msgstr "AUX tagndx %ld ttlsiz 0x%lx lnnos %ld next %ld" - #: cofflink.c:536 elflink.h:1967 #, c-format msgid "Warning: type of symbol `%s' changed from %d to %d in %s" @@ -444,17 +467,25 @@ msgstr "Error de Dwarf: No se puede encontrar la secci #: dwarf2.c:398 #, c-format -msgid "Dwarf Error: DW_FORM_strp offset (%u) greater than or equal to .debug_str size (%u)." -msgstr "Error de Dwarf: El desplazamiento DW_FROM_strp (%u) es más grande que el tamaño de .debug_str (%u)." +msgid "" +"Dwarf Error: DW_FORM_strp offset (%u) greater than or equal to .debug_str " +"size (%u)." +msgstr "" +"Error de Dwarf: El desplazamiento DW_FROM_strp (%u) es más grande que el " +"tamaño de .debug_str (%u)." #: dwarf2.c:542 msgid "Dwarf Error: Can't find .debug_abbrev section." msgstr "Error de Dwarf: No se puede encontrar la sección .debug_abbrev." #: dwarf2.c:559 -#, c-format -msgid "Dwarf Error: Abbrev offset (%u) greater than or equal to abbrev size (%u)." -msgstr "Error de Dwarf: El desplazamiento de abreviatura (%u) es más grande que el tamaño de abreviatura (%u)." +#, fuzzy, c-format +msgid "" +"Dwarf Error: Abbrev offset (%u) greater than or equal to .debug_abbrev size " +"(%u)." +msgstr "" +"Error de Dwarf: El desplazamiento de abreviatura (%u) es más grande que el " +"tamaño de abreviatura (%u)." #: dwarf2.c:756 #, c-format @@ -463,37 +494,50 @@ msgstr "Error de Dwarf: Valor de FORM inv #: dwarf2.c:843 msgid "Dwarf Error: mangled line number section (bad file number)." -msgstr "Error de Dwarf: sección de números de línea revuelta (número erróneo de fichero)." +msgstr "" +"Error de Dwarf: sección de números de línea revuelta (número erróneo de " +"fichero)." #: dwarf2.c:929 msgid "Dwarf Error: Can't find .debug_line section." msgstr "Error de Dwarf: No se puede encontrar lan sección .debug_line." #: dwarf2.c:952 -#, c-format -msgid "Dwarf Error: Line offset (%u) greater than or equal to line size (%u)." -msgstr "Error de Dwarf: El desplazamiento de línea (%u) es más grande que el tamaño de línea (%u)." +#, fuzzy, c-format +msgid "" +"Dwarf Error: Line offset (%u) greater than or equal to .debug_line size (%u)." +msgstr "" +"Error de Dwarf: El desplazamiento de línea (%u) es más grande que el tamaño " +"de línea (%u)." #: dwarf2.c:1143 msgid "Dwarf Error: mangled line number section." msgstr "Error de Dwarf: sección de números de línea revuelta." -#: dwarf2.c:1318 dwarf2.c:1532 +#: dwarf2.c:1318 dwarf2.c:1529 #, c-format msgid "Dwarf Error: Could not find abbrev number %d." msgstr "Error de Dwarf: No se puede encontrar el número de abreviatura %d." -#: dwarf2.c:1493 +#: dwarf2.c:1490 #, c-format -msgid "Dwarf Error: found dwarf version '%hu', this reader only handles version 2 information." -msgstr "Error de Dwarf: se encontró la versión de dwarf '%hu', este lector solamente maneja información de la versión 2." +msgid "" +"Dwarf Error: found dwarf version '%hu', this reader only handles version 2 " +"information." +msgstr "" +"Error de Dwarf: se encontró la versión de dwarf '%hu', este lector solamente " +"maneja información de la versión 2." -#: dwarf2.c:1500 +#: dwarf2.c:1497 #, c-format -msgid "Dwarf Error: found address size '%u', this reader can not handle sizes greater than '%u'." -msgstr "Error de Dwarf: se encontró el tamaño de dirección '%u', este lector no puede manejar tamaños más grandes que '%u'." +msgid "" +"Dwarf Error: found address size '%u', this reader can not handle sizes " +"greater than '%u'." +msgstr "" +"Error de Dwarf: se encontró el tamaño de dirección '%u', este lector no " +"puede manejar tamaños más grandes que '%u'." -#: dwarf2.c:1523 +#: dwarf2.c:1520 #, c-format msgid "Dwarf Error: Bad abbrev number: %d." msgstr "Error de Dwarf: Número de abreviación erróneo: %d." @@ -505,153 +549,206 @@ msgstr "Tipo b #: ecoff.c:1597 #, c-format -msgid "\n End+1 symbol: %ld" -msgstr "\n Símbolo final+1: %ld" +msgid "" +"\n" +" End+1 symbol: %ld" +msgstr "" +"\n" +" Símbolo final+1: %ld" #: ecoff.c:1604 ecoff.c:1607 #, c-format -msgid "\n First symbol: %ld" -msgstr "\n Primer símbolo: %ld" +msgid "" +"\n" +" First symbol: %ld" +msgstr "" +"\n" +" Primer símbolo: %ld" #: ecoff.c:1619 #, c-format -msgid "\n End+1 symbol: %-7ld Type: %s" -msgstr "\n Símbolo final+1: %-7ld Tipo: %s" +msgid "" +"\n" +" End+1 symbol: %-7ld Type: %s" +msgstr "" +"\n" +" Símbolo final+1: %-7ld Tipo: %s" #: ecoff.c:1626 #, c-format -msgid "\n Local symbol: %ld" -msgstr "\n Símbolo local: %ld" +msgid "" +"\n" +" Local symbol: %ld" +msgstr "" +"\n" +" Símbolo local: %ld" #: ecoff.c:1634 #, c-format -msgid "\n struct; End+1 symbol: %ld" -msgstr "\n struct; símbolo final+1: %ld" +msgid "" +"\n" +" struct; End+1 symbol: %ld" +msgstr "" +"\n" +" struct; símbolo final+1: %ld" #: ecoff.c:1639 #, c-format -msgid "\n union; End+1 symbol: %ld" -msgstr "\n union; símbolo final+1: %ld" +msgid "" +"\n" +" union; End+1 symbol: %ld" +msgstr "" +"\n" +" union; símbolo final+1: %ld" #: ecoff.c:1644 #, c-format -msgid "\n enum; End+1 symbol: %ld" -msgstr "\n enum; símbolo final+1: %ld" +msgid "" +"\n" +" enum; End+1 symbol: %ld" +msgstr "" +"\n" +" enum; símbolo final+1: %ld" #: ecoff.c:1650 #, c-format -msgid "\n Type: %s" -msgstr "\n Tipo: %s" +msgid "" +"\n" +" Type: %s" +msgstr "" +"\n" +" Tipo: %s" #: elf-hppa.h:1366 elf-hppa.h:1399 elf32-ppc.c:3062 elf32-sh.c:3201 #: elf64-x86-64.c:1275 #, c-format -msgid "%s: warning: unresolvable relocation against symbol `%s' from %s section" -msgstr "%s: aviso: reubicación sin resolución contra el símbolo `%s' de la sección %s" +msgid "" +"%s: warning: unresolvable relocation against symbol `%s' from %s section" +msgstr "" +"%s: aviso: reubicación sin resolución contra el símbolo `%s' de la sección %s" #: elf-m10200.c:463 elf-m10300.c:673 elf32-arm.h:2074 elf32-avr.c:835 -#: elf32-cris.c:1392 elf32-d10v.c:482 elf32-fr30.c:653 elf32-h8300.c:547 -#: elf32-i860.c:1048 elf32-m32r.c:1281 elf32-openrisc.c:455 elf32-v850.c:1691 -#: elf64-mmix.c:1164 +#: elf32-cris.c:1406 elf32-d10v.c:482 elf32-fr30.c:653 elf32-h8300.c:547 +#: elf32-i860.c:1048 elf32-m32r.c:1280 elf32-openrisc.c:455 elf32-v850.c:1691 +#: elf32-xstormy16.c:976 elf64-mmix.c:1164 msgid "internal error: out of range error" msgstr "error interno: error fuera de rango" #: elf-m10200.c:467 elf-m10300.c:677 elf32-arm.h:2078 elf32-avr.c:839 -#: elf32-cris.c:1396 elf32-d10v.c:486 elf32-fr30.c:657 elf32-h8300.c:551 -#: elf32-i860.c:1052 elf32-m32r.c:1285 elf32-mips.c:7565 elf32-openrisc.c:459 -#: elf32-v850.c:1695 elf64-mips.c:4464 elf64-mmix.c:1168 +#: elf32-cris.c:1410 elf32-d10v.c:486 elf32-fr30.c:657 elf32-h8300.c:551 +#: elf32-i860.c:1052 elf32-m32r.c:1284 elf32-mips.c:7587 elf32-openrisc.c:459 +#: elf32-v850.c:1695 elf32-xstormy16.c:980 elf64-mips.c:4464 elf64-mmix.c:1168 msgid "internal error: unsupported relocation error" msgstr "error interno: error de reubicación sin soporte" #: elf-m10200.c:471 elf-m10300.c:681 elf32-arm.h:2082 elf32-d10v.c:490 -#: elf32-h8300.c:555 elf32-m32r.c:1289 +#: elf32-h8300.c:555 elf32-m32r.c:1288 msgid "internal error: dangerous error" msgstr "error interno: error peligroso" #: elf-m10200.c:475 elf-m10300.c:685 elf32-arm.h:2086 elf32-avr.c:847 -#: elf32-cris.c:1404 elf32-d10v.c:494 elf32-fr30.c:665 elf32-h8300.c:559 -#: elf32-i860.c:1060 elf32-m32r.c:1293 elf32-openrisc.c:467 elf32-v850.c:1715 -#: elf64-mmix.c:1176 +#: elf32-cris.c:1418 elf32-d10v.c:494 elf32-fr30.c:665 elf32-h8300.c:559 +#: elf32-i860.c:1060 elf32-m32r.c:1292 elf32-openrisc.c:467 elf32-v850.c:1715 +#: elf32-xstormy16.c:988 elf64-mmix.c:1176 msgid "internal error: unknown error" msgstr "error interno: error desconocido" -#: elf.c:345 +#: elf.c:343 #, c-format msgid "%s: invalid string offset %u >= %lu for section `%s'" msgstr "%s: desplazamiento de cadena inválido %u >= %lu para la sección `%s'" -#: elf.c:450 +#: elf.c:448 #, c-format msgid "%s: invalid SHT_GROUP entry" msgstr "%s: entrada SHT_GROUP inválida" -#: elf.c:531 +#: elf.c:529 #, c-format msgid "%s: no group info for section %s" msgstr "%s: no hay información de grupo para la sección %s" -#: elf.c:842 -msgid "\nProgram Header:\n" -msgstr "\nEncabezado del Programa:\n" +#: elf.c:840 +msgid "" +"\n" +"Program Header:\n" +msgstr "" +"\n" +"Encabezado del Programa:\n" -#: elf.c:891 -msgid "\nDynamic Section:\n" -msgstr "\nSección Dinámica:\n" +#: elf.c:889 +msgid "" +"\n" +"Dynamic Section:\n" +msgstr "" +"\n" +"Sección Dinámica:\n" -#: elf.c:1020 -msgid "\nVersion definitions:\n" -msgstr "\nDefiniciones de versión:\n" +#: elf.c:1018 +msgid "" +"\n" +"Version definitions:\n" +msgstr "" +"\n" +"Definiciones de versión:\n" -#: elf.c:1043 -msgid "\nVersion References:\n" -msgstr "\nReferencias de Versión:\n" +#: elf.c:1041 +msgid "" +"\n" +"Version References:\n" +msgstr "" +"\n" +"Referencias de Versión:\n" -#: elf.c:1048 +#: elf.c:1046 #, c-format msgid " required from %s:\n" msgstr " requerido desde %s:\n" -#: elf.c:1675 +#: elf.c:1682 #, c-format msgid "%s: invalid link %lu for reloc section %s (index %u)" msgstr "%s: enlace %lu inválido para la sección de reubicación %s (índice %u)" -#: elf.c:3289 +#: elf.c:3296 #, c-format msgid "%s: Not enough room for program headers (allocated %u, need %u)" -msgstr "%s: No hay suficiente espacio para los encabezados del programa (%u asignados, %u necesarios)" +msgstr "" +"%s: No hay suficiente espacio para los encabezados del programa (%u " +"asignados, %u necesarios)" -#: elf.c:3393 +#: elf.c:3400 #, c-format msgid "%s: Not enough room for program headers, try linking with -N" -msgstr "%s: No hay suficiente espacio para los encabezados del programa, pruebe enlazar con -N" +msgstr "" +"%s: No hay suficiente espacio para los encabezados del programa, pruebe " +"enlazar con -N" -#: elf.c:3518 +#: elf.c:3525 #, c-format -msgid "Error: First section in segment (%s) starts at 0x%x whereas the segment starts at 0x%x" -msgstr "Error: La primera sección en el segmento (%s) inicia en 0x%x mientras que el segmento inicia en 0x%x" +msgid "" +"Error: First section in segment (%s) starts at 0x%x whereas the segment " +"starts at 0x%x" +msgstr "" +"Error: La primera sección en el segmento (%s) inicia en 0x%x mientras que el " +"segmento inicia en 0x%x" -#: elf.c:3804 +#: elf.c:3811 #, c-format msgid "%s: warning: allocated section `%s' not in segment" msgstr "%s: aviso: la sección asignada `%s' no está en el segmento" -#: elf.c:4138 +#: elf.c:4142 #, c-format msgid "%s: symbol `%s' required but not present" msgstr "%s: se requiere el símbolo `%s' pero no está presente" -#: elf.c:4147 -#, c-format -msgid "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8lx%s\n" -msgstr "elf_symbol_from_bfd_symbol 0x%.8lx, nombre = %s, núm sim = %d, opciones = 0x%.8lx%s\n" - -#: elf.c:4391 +#: elf.c:4395 #, c-format msgid "%s: warning: Empty loadable segment detected\n" msgstr "%s: aviso: Se detectó un segmento cargable vacío\n" -#: elf.c:5804 +#: elf.c:5808 #, c-format msgid "%s: unsupported relocation type %s" msgstr "%s: tipo de reubicación %s sin soporte" @@ -666,84 +763,102 @@ msgstr "%s: Aviso: La instrucci msgid "%s: Warning: Thumb BLX instruction targets thumb function '%s'." msgstr "%s: Aviso: La instrucción Thumb BLX apunta a la función thumb '%s'." -#: elf32-arm.h:1904 elf32-i386.c:1776 elf32-sh.c:3133 +#: elf32-arm.h:1904 elf32-i386.c:1778 elf32-sh.c:3133 #, c-format msgid "%s(%s+0x%lx): %s relocation against SEC_MERGE section" msgstr "%s(%s+0x%lx): reubicación %s contra la sección SEC_MERGE" #: elf32-arm.h:1998 #, c-format -msgid "%s: warning: unresolvable relocation %d against symbol `%s' from %s section" -msgstr "%s: aviso: reubicación %d sin resolución contra el símbolo `%s' de la sección %s" - -#: elf32-arm.h:2114 -#, c-format -msgid "Warning: Not setting interwork flag of %s since it has already been specified as non-interworking" -msgstr "Aviso: No se activa la opción de interoperación de %s ya que ya había sido especificada como no interoperable" - -#: elf32-arm.h:2118 -#, c-format -msgid "Warning: Clearing the interwork flag of %s due to outside request" -msgstr "Aviso: Limpiando la opción de interoperación de %s debido a una petición externa" +msgid "" +"%s: warning: unresolvable relocation %d against symbol `%s' from %s section" +msgstr "" +"%s: aviso: reubicación %d sin resolución contra el símbolo `%s' de la " +"sección %s" #: elf32-arm.h:2166 -#, c-format -msgid "Warning: Clearing the interwork flag in %s because non-interworking code in %s has been linked with it" -msgstr "Aviso: Limpiando la opción de interoperación en %s porque se ha enlazado código no interoperable en %s" +#, fuzzy, c-format +msgid "" +"Warning: Clearing the interworking flag of %s because non-interworking code " +"in %s has been linked with it" +msgstr "" +"Aviso: Limpiando la opción de interoperación en %s porque se ha enlazado " +"código no interoperable en %s" #: elf32-arm.h:2261 #, c-format -msgid "Error: %s compiled for EABI version %d, whereas %s is compiled for version %d" -msgstr "Error: %s compilado para EABI versión %d, mientras que %s está compilado para la versión %d" +msgid "" +"Error: %s compiled for EABI version %d, whereas %s is compiled for version %d" +msgstr "" +"Error: %s compilado para EABI versión %d, mientras que %s está compilado " +"para la versión %d" #: elf32-arm.h:2275 #, c-format msgid "Error: %s compiled for APCS-%d, whereas %s is compiled for APCS-%d" -msgstr "Error: %s compilado para APCS-%d, mientras que %s está compilado para APCS-%d" +msgstr "" +"Error: %s compilado para APCS-%d, mientras que %s está compilado para APCS-%d" #: elf32-arm.h:2287 #, c-format -msgid "Error: %s passes floats in FP registers, whereas %s passes them in integer registers" -msgstr "Error: %s pasa números de coma flotante en registros FP, mientras que %s los pasa en registros enteros" +msgid "" +"Error: %s passes floats in FP registers, whereas %s passes them in integer " +"registers" +msgstr "" +"Error: %s pasa números de coma flotante en registros FP, mientras que %s los " +"pasa en registros enteros" #: elf32-arm.h:2292 #, c-format -msgid "Error: %s passes floats in integer registers, whereas %s passes them in FP registers" -msgstr "Error: %s pasa números de coma flotante en registros enteros, mientras que %s los pasa en registros FP" +msgid "" +"Error: %s passes floats in integer registers, whereas %s passes them in FP " +"registers" +msgstr "" +"Error: %s pasa números de coma flotante en registros enteros, mientras que %" +"s los pasa en registros FP" #: elf32-arm.h:2303 -#, c-format -msgid "Error: %s uses VFP instructions, whereas %s FPA instructions" -msgstr "Error: %s utiliza instrucciones VFP, mientras que %s utiliza instrucciones FPA" +#, fuzzy, c-format +msgid "Error: %s uses VFP instructions, whereas %s uses FPA instructions" +msgstr "" +"Error: %s utiliza instrucciones VFP, mientras que %s utiliza instrucciones " +"FPA" #: elf32-arm.h:2308 -#, c-format -msgid "Error: %s uses FPA instructions, whereas %s VFP instructions" -msgstr "Error: %s utiliza instrucciones FPA, mientras que %s utiliza instrucciones VFP" +#, fuzzy, c-format +msgid "Error: %s uses FPA instructions, whereas %s uses VFP instructions" +msgstr "" +"Error: %s utiliza instrucciones FPA, mientras que %s utiliza instrucciones " +"VFP" #: elf32-arm.h:2328 #, c-format msgid "Error: %s uses software FP, whereas %s uses hardware FP" -msgstr "Error: %s utiliza FP de software, mientras que %s utiliza FP de hardware" +msgstr "" +"Error: %s utiliza FP de software, mientras que %s utiliza FP de hardware" #: elf32-arm.h:2333 #, c-format msgid "Error: %s uses hardware FP, whereas %s uses software FP" -msgstr "Error: %s utiliza FP de hardware, mientras que %s utiliza FP de software" +msgstr "" +"Error: %s utiliza FP de hardware, mientras que %s utiliza FP de software" #: elf32-arm.h:2348 #, c-format msgid "Warning: %s supports interworking, whereas %s does not" -msgstr "Aviso: el fichero de entrada %s soporta interoperabilidad, mientras que %s no" +msgstr "" +"Aviso: el fichero de entrada %s soporta interoperabilidad, mientras que %s no" #: elf32-arm.h:2355 #, c-format msgid "Warning: %s does not support interworking, whereas %s does" -msgstr "Aviso: el fichero de entrada %s no soporta interoperabilidad, mientras que %s sí" +msgstr "" +"Aviso: el fichero de entrada %s no soporta interoperabilidad, mientras que %" +"s sí" #. Ignore init flag - it may not be set, despite the flags field #. containing valid data. -#: elf32-arm.h:2386 elf32-cris.c:2970 elf32-m68k.c:410 elf32-mips.c:3232 +#: elf32-arm.h:2386 elf32-cris.c:2991 elf32-m68k.c:410 elf32-mips.c:3242 #, c-format msgid "private flags = %lx:" msgstr "opciones privadas = %lx:" @@ -820,20 +935,25 @@ msgstr " [tiene punto de entrada]" msgid "" msgstr "" -#: elf32-avr.c:843 elf32-cris.c:1400 elf32-fr30.c:661 elf32-i860.c:1056 -#: elf32-openrisc.c:463 elf32-v850.c:1699 elf64-mmix.c:1172 +#: elf32-avr.c:843 elf32-cris.c:1414 elf32-fr30.c:661 elf32-i860.c:1056 +#: elf32-openrisc.c:463 elf32-v850.c:1699 elf32-xstormy16.c:984 +#: elf64-mmix.c:1172 msgid "internal error: dangerous relocation" msgstr "error interno: reubicación peligrosa" #: elf32-cris.c:949 #, c-format msgid "%s: unresolvable relocation %s against symbol `%s' from %s section" -msgstr "%s: reubicación %s sin resolución contra el símbolo `%s' de la sección %s" +msgstr "" +"%s: reubicación %s sin resolución contra el símbolo `%s' de la sección %s" #: elf32-cris.c:1012 #, c-format -msgid "%s: No PLT nor GOT for relocation %s against symbol `%s' from %s section" -msgstr "%s: No hay PLT ni GOT para la reubicación %s contra el símbolo `%s' de la sección %s" +msgid "" +"%s: No PLT nor GOT for relocation %s against symbol `%s' from %s section" +msgstr "" +"%s: No hay PLT ni GOT para la reubicación %s contra el símbolo `%s' de la " +"sección %s" #: elf32-cris.c:1015 elf32-cris.c:1142 msgid "[whose name is lost]" @@ -841,46 +961,67 @@ msgstr "[cuyo nombre se pierde]" #: elf32-cris.c:1131 #, c-format -msgid "%s: relocation %s with non-zero addend %d against local symbol from %s section" -msgstr "%s: reubicación %s con adición %d que no es cero contra un símbolo local de la sección %s" +msgid "" +"%s: relocation %s with non-zero addend %d against local symbol from %s " +"section" +msgstr "" +"%s: reubicación %s con adición %d que no es cero contra un símbolo local de " +"la sección %s" #: elf32-cris.c:1138 #, c-format -msgid "%s: relocation %s with non-zero addend %d against symbol `%s' from %s section" -msgstr "%s: reubicación %s con adición %d que no es cero contra el símbolo `%s' de la sección %s" +msgid "" +"%s: relocation %s with non-zero addend %d against symbol `%s' from %s section" +msgstr "" +"%s: reubicación %s con adición %d que no es cero contra el símbolo `%s' de " +"la sección %s" #: elf32-cris.c:1156 #, c-format -msgid "%s: relocation %s is not allowed for global symbol: `%s' from %s section" -msgstr "%s: no se permite la reubicación %s para el símbolo global: `%s' de la sección %s" +msgid "" +"%s: relocation %s is not allowed for global symbol: `%s' from %s section" +msgstr "" +"%s: no se permite la reubicación %s para el símbolo global: `%s' de la " +"sección %s" -#: elf32-cris.c:1275 +#: elf32-cris.c:1171 +#, fuzzy, c-format +msgid "%s: relocation %s in section %s with no GOT created" +msgstr "%s: reubicaciones en la sección `%s', pero no tiene contenidos" + +#: elf32-cris.c:1289 #, c-format msgid "%s: Internal inconsistency; no relocation section %s" -msgstr "%s: Inconsistencia interna; no se encuentra la sección de reubicación %s" +msgstr "" +"%s: Inconsistencia interna; no se encuentra la sección de reubicación %s" -#: elf32-cris.c:2508 +#: elf32-cris.c:2523 #, c-format msgid "" "%s, section %s:\n" " relocation %s should not be used in a shared object; recompile with -fPIC" msgstr "" "%s, sección %s:\n" -" no se debe usar la reubicación %s en un objeto compartido; recompile con -fPIC" +" no se debe usar la reubicación %s en un objeto compartido; recompile con -" +"fPIC" -#: elf32-cris.c:2973 +#: elf32-cris.c:2994 msgid " [symbols have a _ prefix]" msgstr " [los símbolos tiene un prefijo _]" -#: elf32-cris.c:3012 +#: elf32-cris.c:3033 #, c-format msgid "%s: uses _-prefixed symbols, but writing file with non-prefixed symbols" -msgstr "%s: utiliza símbolos con prefijo _, pero escribe el fichero con símbolos sin prefijo" +msgstr "" +"%s: utiliza símbolos con prefijo _, pero escribe el fichero con símbolos sin " +"prefijo" -#: elf32-cris.c:3013 +#: elf32-cris.c:3034 #, c-format msgid "%s: uses non-prefixed symbols, but writing file with _-prefixed symbols" -msgstr "%s: utiliza símbolos sin prefijo, pero escribe el fichero con símbolos con prefijo _" +msgstr "" +"%s: utiliza símbolos sin prefijo, pero escribe el fichero con símbolos con " +"prefijo _" #: elf32-gen.c:82 elf64-gen.c:82 #, c-format @@ -892,42 +1033,51 @@ msgstr "%s: Reubicaciones en ELF gen msgid "%s: cannot create stub entry %s" msgstr "%s: no se puede crear la entrada de cabo %s" -#: elf32-hppa.c:937 elf32-hppa.c:3540 +#: elf32-hppa.c:937 elf32-hppa.c:3545 #, c-format msgid "%s(%s+0x%lx): cannot reach %s, recompile with -ffunction-sections" -msgstr "%s(%s+0x%lx): no se puede alcanzar %s, recompile con -ffuntion-sections" +msgstr "" +"%s(%s+0x%lx): no se puede alcanzar %s, recompile con -ffuntion-sections" #: elf32-hppa.c:1312 #, c-format -msgid "%s: relocation %s can not be used when making a shared object; recompile with -fPIC" -msgstr "%s: no se puede usar la reubicación %s cuando se hace un objeto compartido; recompile con -fPIC" +msgid "" +"%s: relocation %s can not be used when making a shared object; recompile " +"with -fPIC" +msgstr "" +"%s: no se puede usar la reubicación %s cuando se hace un objeto compartido; " +"recompile con -fPIC" #: elf32-hppa.c:1332 #, c-format -msgid "%s: relocation %s should not be used when making a shared object; recompile with -fPIC" -msgstr "%s: no se debe usar la reubicación %s cuando se hace un objeto compartido; recompile con -fPIC" +msgid "" +"%s: relocation %s should not be used when making a shared object; recompile " +"with -fPIC" +msgstr "" +"%s: no se debe usar la reubicación %s cuando se hace un objeto compartido; " +"recompile con -fPIC" #: elf32-hppa.c:1525 #, c-format msgid "Could not find relocation section for %s" msgstr "No se puede encontrar la sección de reubicación para %s" -#: elf32-hppa.c:2862 +#: elf32-hppa.c:2867 #, c-format msgid "%s: duplicate export stub %s" msgstr "%s: cabo de exportación %s duplicado" -#: elf32-hppa.c:3424 +#: elf32-hppa.c:3429 #, c-format msgid "%s(%s+0x%lx): fixing %s" msgstr "%s(%s+0x%lx): componiendo %s" -#: elf32-hppa.c:4064 +#: elf32-hppa.c:4069 #, c-format msgid "%s(%s+0x%lx): cannot handle %s for %s" msgstr "%s(%s+0x%lx): no se puede manejar %s para %s" -#: elf32-hppa.c:4403 +#: elf32-hppa.c:4408 msgid ".got section not immediately after .plt section" msgstr "la sección .got no está inmediatamente después de la sección .plt" @@ -941,50 +1091,51 @@ msgstr "%s: tipo de reubicaci msgid "%s: bad symbol index: %d" msgstr "%s: índice de símbolos erróneo: %d" -#: elf32-i386.c:863 elf32-s390.c:790 elf64-ppc.c:2085 elf64-s390.c:759 +#: elf32-i386.c:863 elf32-s390.c:790 elf64-ppc.c:2198 elf64-s390.c:759 #, c-format msgid "%s: bad relocation section name `%s'" msgstr "%s: nombre de sección de reubicación `%s' erróneo" -#: elf32-i386.c:2067 elf32-s390.c:1949 elf64-ppc.c:3908 elf64-s390.c:1953 +#: elf32-i386.c:2069 elf32-s390.c:1951 elf64-ppc.c:4124 elf64-s390.c:1955 #, c-format msgid "%s(%s+0x%lx): unresolvable relocation against symbol `%s'" msgstr "%s(%s+0x%lx): reubicación sin resolución contra el símbolo `%s'" -#: elf32-i386.c:2105 elf32-s390.c:1987 elf64-s390.c:1991 +#: elf32-i386.c:2107 elf32-s390.c:1989 elf64-s390.c:1993 #, c-format msgid "%s(%s+0x%lx): reloc against `%s': error %d" msgstr "%s(%s+0x%lx): reubicación contra `%s': error %d" -#: elf32-m32r.c:924 +#: elf32-m32r.c:923 msgid "SDA relocation when _SDA_BASE_ not defined" msgstr "reubicación SDA cuando _SDA_BASE_ no está definido" -#: elf32-ia64.c:3538 elf32-m32r.c:1008 elf32-ppc.c:2930 elf64-ia64.c:3538 +#: elf32-ia64.c:3537 elf32-m32r.c:1007 elf32-ppc.c:2930 elf64-ia64.c:3537 #, c-format msgid "%s: unknown relocation type %d" msgstr "%s: tipo de reubicación %d desconocido" -#: elf32-m32r.c:1224 +#: elf32-m32r.c:1223 #, c-format msgid "%s: The target (%s) of an %s relocation is in the wrong section (%s)" -msgstr "%s: El objetivo (%s) de una reubicación %s está en la sección errónea (%s)" +msgstr "" +"%s: El objetivo (%s) de una reubicación %s está en la sección errónea (%s)" -#: elf32-m32r.c:2001 +#: elf32-m32r.c:2000 #, c-format msgid "%s: Instruction set mismatch with previous modules" msgstr "%s: Conjunto de instrucciones no coincidente con módulos previos" -#: elf32-m32r.c:2024 +#: elf32-m32r.c:2023 #, c-format msgid "private flags = %lx" msgstr "opciones privadas = %lx" -#: elf32-m32r.c:2029 +#: elf32-m32r.c:2028 msgid ": m32r instructions" msgstr ": instrucciones m32r" -#: elf32-m32r.c:2030 +#: elf32-m32r.c:2029 msgid ": m32rx instructions" msgstr ": instrucciones m32rx" @@ -1002,154 +1153,163 @@ msgstr "%s: La reubicaci msgid "%s: Unknown relocation type %d\n" msgstr "%s: Tipo de reubicación %d desconocido\n" -#: elf32-mips.c:2146 elf64-mips.c:1972 +#: elf32-mips.c:2156 elf64-mips.c:1972 msgid "32bits gp relative relocation occurs for an external symbol" msgstr "la reubicación gp relativa de 32bits sucede para un símbolo externo" -#: elf32-mips.c:2295 +#: elf32-mips.c:2305 #, c-format msgid "Linking mips16 objects into %s format is not supported" msgstr "Enlazar objetos mips16 en el formato %s no tiene soporte" -#: elf32-mips.c:3119 +#: elf32-mips.c:3129 #, c-format msgid "%s: linking PIC files with non-PIC files" msgstr "%s: enlazando ficheros PIC con ficheros que no son PIC" -#: elf32-mips.c:3129 +#: elf32-mips.c:3139 #, c-format msgid "%s: linking abicalls files with non-abicalls files" -msgstr "%s: enlazando ficheros de llamadas abi con ficheros que no son de llamadas abi" +msgstr "" +"%s: enlazando ficheros de llamadas abi con ficheros que no son de llamadas " +"abi" -#: elf32-mips.c:3158 +#: elf32-mips.c:3168 #, c-format msgid "%s: ISA mismatch (-mips%d) with previous modules (-mips%d)" msgstr "%s: no coincide el ISA (-mips%d) con módulos previos (-mips%d)" -#: elf32-mips.c:3167 +#: elf32-mips.c:3177 #, c-format msgid "%s: ISA mismatch (%d) with previous modules (%d)" msgstr "%s: no coincide el ISA (%d) con módulos previos (%d)" -#: elf32-mips.c:3190 +#: elf32-mips.c:3200 #, c-format msgid "%s: ABI mismatch: linking %s module with previous %s modules" msgstr "%s: no coincide el ABI: enlazando el módulo %s con módulos %s previos" -#: elf32-mips.c:3204 elf32-ppc.c:1470 elf64-ppc.c:1538 elf64-sparc.c:3033 +#: elf32-mips.c:3214 elf32-ppc.c:1470 elf64-ppc.c:1556 elf64-sparc.c:3027 #, c-format msgid "%s: uses different e_flags (0x%lx) fields than previous modules (0x%lx)" -msgstr "%s: usa campos de e_flags diferentes (0x%lx) que los módulos previos (0x%lx)" +msgstr "" +"%s: usa campos de e_flags diferentes (0x%lx) que los módulos previos (0x%lx)" -#: elf32-mips.c:3235 +#: elf32-mips.c:3245 msgid " [abi=O32]" msgstr " [abi=O32]" -#: elf32-mips.c:3237 +#: elf32-mips.c:3247 msgid " [abi=O64]" msgstr " [abi=O64]" -#: elf32-mips.c:3239 +#: elf32-mips.c:3249 msgid " [abi=EABI32]" msgstr " [abi=EABI32]" -#: elf32-mips.c:3241 +#: elf32-mips.c:3251 msgid " [abi=EABI64]" msgstr " [abi=EABI64]" -#: elf32-mips.c:3243 +#: elf32-mips.c:3253 msgid " [abi unknown]" msgstr " [abi desconocido]" -#: elf32-mips.c:3245 +#: elf32-mips.c:3255 msgid " [abi=N32]" msgstr " [abi=N32]" -#: elf32-mips.c:3247 +#: elf32-mips.c:3257 msgid " [abi=64]" msgstr " [abi=64]" -#: elf32-mips.c:3249 +#: elf32-mips.c:3259 msgid " [no abi set]" msgstr " [no hay conjunto abi]" -#: elf32-mips.c:3252 +#: elf32-mips.c:3262 msgid " [mips1]" msgstr " [mips1]" -#: elf32-mips.c:3254 +#: elf32-mips.c:3264 msgid " [mips2]" msgstr " [mips2]" -#: elf32-mips.c:3256 +#: elf32-mips.c:3266 msgid " [mips3]" msgstr " [mips3]" -#: elf32-mips.c:3258 +#: elf32-mips.c:3268 msgid " [mips4]" msgstr " [mips4]" -#: elf32-mips.c:3260 +#: elf32-mips.c:3270 msgid " [mips5]" msgstr " [mips5]" -#: elf32-mips.c:3262 +#: elf32-mips.c:3272 msgid " [mips32]" msgstr " [mips32]" -#: elf32-mips.c:3264 +#: elf32-mips.c:3274 msgid " [mips64]" msgstr " [mips64]" -#: elf32-mips.c:3266 +#: elf32-mips.c:3276 msgid " [unknown ISA]" msgstr " [ISA desconocido]" -#: elf32-mips.c:3269 +#: elf32-mips.c:3279 msgid " [32bitmode]" msgstr " [modo 32bit]" -#: elf32-mips.c:3271 +#: elf32-mips.c:3281 msgid " [not 32bitmode]" msgstr " [no es modo 32bit]" -#: elf32-mips.c:4947 +#: elf32-mips.c:4954 msgid "static procedure (no name)" msgstr "procedimiento estático (sin nombre)" -#: elf32-mips.c:5565 elf64-mips.c:6694 +#: elf32-mips.c:5572 elf64-mips.c:6694 #, c-format msgid "%s: illegal section name `%s'" msgstr "%s: nombre de sección `%s' ilegal" -#: elf32-mips.c:6132 elf64-mips.c:3150 +#: elf32-mips.c:6139 elf64-mips.c:3150 msgid "not enough GOT space for local GOT entries" msgstr "no hay suficiente espacio GOT para entradas GOT locales" -#: elf32-mips.c:7238 elf64-mips.c:4203 +#: elf32-mips.c:7250 elf64-mips.c:4203 #, c-format msgid "%s: %s+0x%lx: jump to stub routine which is not jal" msgstr "%s: %s+0x%lx: salto a una rutina cabo la cual no es jal" -#: elf32-mips.c:8237 elf64-mips.c:5891 +#: elf32-mips.c:8259 elf64-mips.c:5891 #, c-format msgid "%s: Malformed reloc detected for section %s" msgstr "%s: Se detectó una reubicación malformada para la sección %s" -#: elf32-mips.c:8315 elf64-mips.c:5969 +#: elf32-mips.c:8337 elf64-mips.c:5969 #, c-format msgid "%s: CALL16 reloc at 0x%lx not against global symbol" msgstr "%s: la reubicación CALL16 en 0x%lx no es contra un símbolo global" -#: elf32-ppc.c:1436 elf64-ppc.c:1503 +#: elf32-ppc.c:1436 elf64-ppc.c:1521 #, c-format -msgid "%s: compiled with -mrelocatable and linked with modules compiled normally" -msgstr "%s: compilado con -mrelocatable y enlazado con módulos compilados de forma normal" +msgid "" +"%s: compiled with -mrelocatable and linked with modules compiled normally" +msgstr "" +"%s: compilado con -mrelocatable y enlazado con módulos compilados de forma " +"normal" -#: elf32-ppc.c:1444 elf64-ppc.c:1511 +#: elf32-ppc.c:1444 elf64-ppc.c:1529 #, c-format -msgid "%s: compiled normally and linked with modules compiled with -mrelocatable" -msgstr "%s: compilado de forma normal y enlazado con módulos compilados con -mrelocatable" +msgid "" +"%s: compiled normally and linked with modules compiled with -mrelocatable" +msgstr "" +"%s: compilado de forma normal y enlazado con módulos compilados con -" +"mrelocatable" #: elf32-ppc.c:1568 #, c-format @@ -1159,17 +1319,21 @@ msgstr "%s: Tipo de enlazador especial %d desconocido" #: elf32-ppc.c:2218 elf32-ppc.c:2252 elf32-ppc.c:2287 #, c-format msgid "%s: relocation %s cannot be used when making a shared object" -msgstr "%s: no se puede usar la reubicación %s cuando se hace un objeto compartido" +msgstr "" +"%s: no se puede usar la reubicación %s cuando se hace un objeto compartido" -#: elf32-ppc.c:3097 elf64-ppc.c:3500 +#: elf32-ppc.c:3097 elf64-ppc.c:3716 #, c-format msgid "%s: unknown relocation type %d for symbol %s" msgstr "%s: tipo de reubicación %d desconocido para el símbolo %s" #: elf32-ppc.c:3452 elf32-ppc.c:3473 elf32-ppc.c:3523 #, c-format -msgid "%s: The target (%s) of a %s relocation is in the wrong output section (%s)" -msgstr "%s: El objetivo (%s) de una reubicación %s está en la sección de salida errónea (%s)" +msgid "" +"%s: The target (%s) of a %s relocation is in the wrong output section (%s)" +msgstr "" +"%s: El objetivo (%s) de una reubicación %s está en la sección de salida " +"errónea (%s)" #: elf32-ppc.c:3589 #, c-format @@ -1219,9 +1383,11 @@ msgstr "%s: 0x%lx: fatal: desbordamiento de reubicaci #: elf32-sh.c:3267 #, c-format msgid "%s: 0x%lx: fatal: unaligned branch target for relax-support relocation" -msgstr "%s: 0x%lx: fatal: objetivo de ramificación sin alineación para la reubicación de soporte de relajamiento" +msgstr "" +"%s: 0x%lx: fatal: objetivo de ramificación sin alineación para la " +"reubicación de soporte de relajamiento" -#: elf32-sparc.c:1554 elf64-sparc.c:2286 +#: elf32-sparc.c:1554 elf64-sparc.c:2280 #, c-format msgid "%s: probably compiled without -fPIC?" msgstr "%s: ¿Compilado probablemente sin -fPIC?" @@ -1243,23 +1409,35 @@ msgstr "La variable `%s' no puede ocupar m #: elf32-v850.c:685 #, c-format -msgid "Variable `%s' can only be in one of the small, zero, and tiny data regions" -msgstr "La variable `%s' solamente puede estar en una de las regiones de datos small, cero, y tiny" +msgid "" +"Variable `%s' can only be in one of the small, zero, and tiny data regions" +msgstr "" +"La variable `%s' solamente puede estar en una de las regiones de datos " +"small, cero, y tiny" #: elf32-v850.c:688 #, c-format -msgid "Variable `%s' cannot be in both small and zero data regions simultaneously" -msgstr "La variable `%s' no puede estar simultáneamente en las regiones de datos small y cero" +msgid "" +"Variable `%s' cannot be in both small and zero data regions simultaneously" +msgstr "" +"La variable `%s' no puede estar simultáneamente en las regiones de datos " +"small y cero" #: elf32-v850.c:691 #, c-format -msgid "Variable `%s' cannot be in both small and tiny data regions simultaneously" -msgstr "La variable `%s' no puede estar simultáneamente en las regiones de datos small y tiny" +msgid "" +"Variable `%s' cannot be in both small and tiny data regions simultaneously" +msgstr "" +"La variable `%s' no puede estar simultáneamente en las regiones de datos " +"small y tiny" #: elf32-v850.c:694 #, c-format -msgid "Variable `%s' cannot be in both zero and tiny data regions simultaneously" -msgstr "La variable `%s' no puede estar simultáneamente en las regiones de datos cero y tiny" +msgid "" +"Variable `%s' cannot be in both zero and tiny data regions simultaneously" +msgstr "" +"La variable `%s' no puede estar simultáneamente en las regiones de datos " +"cero y tiny" #: elf32-v850.c:1072 msgid "FAILED to find previous HI16 reloc\n" @@ -1299,6 +1477,10 @@ msgstr "arquitectura v850e" msgid "v850ea architecture" msgstr "arquitectura v850ea" +#: elf32-ia64.c:2247 elf32-xstormy16.c:414 elf64-ia64.c:2247 +msgid "non-zero addend in @fptr reloc" +msgstr "adición que no es cero en la reubicación @fptr" + #: elf64-alpha.c:858 msgid "GPDISP relocation did not find ldah and lda instructions" msgstr "la reubicación GPDISP no encontró las instrucciones ldah y lda" @@ -1316,61 +1498,76 @@ msgstr "%s: reubicaci #: elf64-hppa.c:2070 #, c-format msgid "stub entry for %s cannot load .plt, dp offset = %ld" -msgstr "la entrada de cabo para %s no puede cargar .plt, desplazamiento dp = %ld" +msgstr "" +"la entrada de cabo para %s no puede cargar .plt, desplazamiento dp = %ld" -#: elf64-mmix.c:1268 +#: elf64-mmix.c:1271 +#, fuzzy, c-format +msgid "%s: register relocation against non-register symbol: (unknown) in %s" +msgstr "" +"%s: reubicación de registro contra un símbolo que no es registro: %s en %s" + +#: elf64-mmix.c:1276 #, c-format msgid "%s: register relocation against non-register symbol: %s in %s" -msgstr "%s: reubicación de registro contra un símbolo que no es registro: %s en %s" - -#: elf64-mmix.c:1270 -msgid "(unknown)" -msgstr "(desconocido)" +msgstr "" +"%s: reubicación de registro contra un símbolo que no es registro: %s en %s" -#: elf64-mmix.c:1305 +#: elf64-mmix.c:1312 #, c-format msgid "%s: directive LOCAL valid only with a register or absolute value" -msgstr "%s: la directiva LOCAL sólo es válida con un registro o un valor absoluto" +msgstr "" +"%s: la directiva LOCAL sólo es válida con un registro o un valor absoluto" -#: elf64-mmix.c:1333 +#: elf64-mmix.c:1340 #, c-format -msgid "%s: LOCAL directive: Register $%ld is not a local register. First global register is $%ld." -msgstr "%s: directiva LOCAL: El registro $%ld no es un registro local. El primer registro global es $%ld." +msgid "" +"%s: LOCAL directive: Register $%ld is not a local register. First global " +"register is $%ld." +msgstr "" +"%s: directiva LOCAL: El registro $%ld no es un registro local. El primer " +"registro global es $%ld." -#: elf64-mmix.c:1609 +#: elf64-mmix.c:1615 #, c-format -msgid "%s: Error: multiple definition of `%s'; start of %s is set in a earlier linked file\n" -msgstr "%s: Error: definición múltiple de `%s'; el inicio de %s está definido en un fichero enlazado con anterioridad\n" +msgid "" +"%s: Error: multiple definition of `%s'; start of %s is set in a earlier " +"linked file\n" +msgstr "" +"%s: Error: definición múltiple de `%s'; el inicio de %s está definido en un " +"fichero enlazado con anterioridad\n" -#: elf64-mmix.c:1668 +#: elf64-mmix.c:1674 msgid "Register section has contents\n" msgstr "La sección de registros no tiene contenido\n" -#: elf64-ppc.c:1466 libbfd.c:1436 +#: elf64-ppc.c:1484 libbfd.c:1436 #, c-format msgid "%s: compiled for a big endian system and target is little endian" -msgstr "%s: compilado para un sistema big endian y el objetivo es little endian" +msgstr "" +"%s: compilado para un sistema big endian y el objetivo es little endian" -#: elf64-ppc.c:1468 libbfd.c:1438 +#: elf64-ppc.c:1486 libbfd.c:1438 #, c-format msgid "%s: compiled for a little endian system and target is big endian" -msgstr "%s: compilado para un sistema little endian y el objetivo es big endian" +msgstr "" +"%s: compilado para un sistema little endian y el objetivo es big endian" -#: elf64-ppc.c:3166 -#, c-format -msgid "linkage table overflow against `%s'" +#: elf64-ppc.c:3350 +#, fuzzy, c-format +msgid "linkage table error against `%s'" msgstr "desbordamiento de la tabla de enlazado contra `%s'" -#: elf64-ppc.c:3244 +#: elf64-ppc.c:3432 msgid "stub section size doesn't match calculated size" msgstr "el tamaño de la sección de cabos no coincide con el tamaño calculado" -#: elf64-ppc.c:3845 +#: elf64-ppc.c:4061 #, c-format msgid "%s: Relocation %s is not supported for symbol %s." msgstr "%s: La reubicación %s no tiene soporte para el símbolo %s." -#: elf64-ppc.c:3889 +#: elf64-ppc.c:4105 #, c-format msgid "%s: error: relocation %s not a multiple of 4" msgstr "%s: error: la reubicación %s no es un múltiplo de 4" @@ -1383,32 +1580,38 @@ msgstr "%s: check_relocs: tipo de reubicaci #: elf64-sparc.c:1314 #, c-format msgid "%s: Only registers %%g[2367] can be declared using STT_REGISTER" -msgstr "%s: Solamente los registros %%g[2367] pueden ser declarados utilizando STT_REGISTER" +msgstr "" +"%s: Solamente los registros %%g[2367] pueden ser declarados utilizando " +"STT_REGISTER" #: elf64-sparc.c:1334 -#, c-format -msgid "Register %%g%d used incompatibly: %s in %s" +#, fuzzy, c-format +msgid "Register %%g%d used incompatibly: %s in %s, previously %s in %s" msgstr "El registro %%g%d se usó de forma incompatible: %s en %s" -#: elf64-sparc.c:1338 elf64-sparc.c:1362 elf64-sparc.c:1411 -#, c-format -msgid " previously %s in %s" -msgstr " previamente %s en %s" +#: elf64-sparc.c:1357 +#, fuzzy, c-format +msgid "Symbol `%s' has differing types: REGISTER in %s, previously %s in %s" +msgstr "" +"El símbolo `%s' tiene tipos divergentes: previamente %s, REGISTER en %s" -#: elf64-sparc.c:1359 elf64-sparc.c:1408 -#, c-format -msgid "Symbol `%s' has differing types: %s in %s" -msgstr "El símbolo `%s' tiene tipos diferentes: %s en %s" +#: elf64-sparc.c:1404 +#, fuzzy, c-format +msgid "Symbol `%s' has differing types: %s in %s, previously REGISTER in %s" +msgstr "" +"El símbolo `%s' tiene tipos divergentes: previamente %s, REGISTER en %s" -#: elf64-sparc.c:3014 +#: elf64-sparc.c:3008 #, c-format msgid "%s: linking UltraSPARC specific with HAL specific code" -msgstr "%s: enlazando código específico de UltraSPARC con código específico de HAL" +msgstr "" +"%s: enlazando código específico de UltraSPARC con código específico de HAL" #: elfcode.h:1218 #, c-format msgid "%s: version count (%ld) does not match symbol count (%ld)" -msgstr "%s: la cuenta de versión (%ld) no coincide con la cuenta de símbolos (%ld)" +msgstr "" +"%s: la cuenta de versión (%ld) no coincide con la cuenta de símbolos (%ld)" #: elflink.c:434 #, c-format @@ -1435,38 +1638,40 @@ msgstr "%s: %s: versi msgid "Warning: size of symbol `%s' changed from %lu to %lu in %s" msgstr "Aviso: el tamaño del símbolo `%s' cambió de %lu a %lu en %s" -#: elflink.h:4020 +#: elflink.h:4014 #, c-format msgid "warning: type and size of dynamic symbol `%s' are not defined" msgstr "aviso: el tipo y tamaño del símbolo dinámico `%s' no están definidos" -#: elflink.h:4329 +#: elflink.h:4320 #, c-format msgid "%s: undefined versioned symbol name %s" msgstr "%s: nombre de símbolo con versión %s sin definir" -#: elflink.h:4559 elflink.h:4567 elflink.h:6218 elflink.h:7295 +#: elflink.h:4544 elflink.h:4552 elflink.h:6203 elflink.h:7280 msgid "Error: out of memory" msgstr "Error: memoria agotada" -#: elflink.h:4729 +#: elflink.h:4714 msgid "Not enough memory to sort relocations" msgstr "No hay suficiente memoria para ordenar las reubicaciones" -#: elflink.h:5995 +#: elflink.h:5980 #, c-format msgid "%s: could not find output section %s for input section %s" -msgstr "%s: no se puede encontrar la sección de salida %s para la sección de entrada %s" +msgstr "" +"%s: no se puede encontrar la sección de salida %s para la sección de entrada " +"%s" -#: elflink.h:6568 +#: elflink.h:6553 msgid "warning: relocation against removed section; zeroing" msgstr "aviso: reubicación contra una sección eliminada; cambiando a ceros" -#: elflink.h:6598 +#: elflink.h:6583 msgid "warning: relocation against removed section" msgstr "aviso: reubicación contra una sección eliminada" -#: elflink.h:6611 +#: elflink.h:6596 #, c-format msgid "local symbols in discarded section %s" msgstr "símbolos locales en la sección descartada %s" @@ -1502,8 +1707,8 @@ msgid "%s: unrecognized symbol `%s' flags 0x%x" msgstr "%s: símbolo `%s' no reconocido opciones 0x%x" #: ieee.c:877 -#, c-format -msgid "%s: unimplemented ATI record %u for symbol %u" +#, fuzzy, c-format +msgid "%s: unimplemented ATI record %u for symbol %u" msgstr "%s: grabación ATI %u sin implementar para el símbolo %u" #: ieee.c:902 @@ -1524,27 +1729,37 @@ msgstr "%s:%d: car #: ihex.c:368 #, c-format msgid "%s:%u: bad checksum in Intel Hex file (expected %u, found %u)" -msgstr "%s:%u: suma de comprobación errónea en el fichero Hexadecimal de Intel (se esperaba %u, se obtuvo %u)" +msgstr "" +"%s:%u: suma de comprobación errónea en el fichero Hexadecimal de Intel (se " +"esperaba %u, se obtuvo %u)" #: ihex.c:422 #, c-format msgid "%s:%u: bad extended address record length in Intel Hex file" -msgstr "%s:%u: longitud de registro de dirección extendida errónea en el fichero Hexadecimal de Intel" +msgstr "" +"%s:%u: longitud de registro de dirección extendida errónea en el fichero " +"Hexadecimal de Intel" #: ihex.c:439 #, c-format msgid "%s:%u: bad extended start address length in Intel Hex file" -msgstr "%s:%u: longitud de dirección de inicio extendida errónea en el fichero Hexadecimal de Intel" +msgstr "" +"%s:%u: longitud de dirección de inicio extendida errónea en el fichero " +"Hexadecimal de Intel" #: ihex.c:456 #, c-format msgid "%s:%u: bad extended linear address record length in Intel Hex file" -msgstr "%s:%u: longitud de registro de dirección lineal extendida errónea en el fichero Hexadecimal de Intel" +msgstr "" +"%s:%u: longitud de registro de dirección lineal extendida errónea en el " +"fichero Hexadecimal de Intel" #: ihex.c:473 #, c-format msgid "%s:%u: bad extended linear start address length in Intel Hex file" -msgstr "%s:%u: longitud de dirección de inicio lineal extendida errónea en el fichero Hexadecimal de Intel" +msgstr "" +"%s:%u: longitud de dirección de inicio lineal extendida errónea en el " +"fichero Hexadecimal de Intel" #: ihex.c:490 #, c-format @@ -1562,9 +1777,10 @@ msgid "%s: bad section length in ihex_read_section" msgstr "%s: longitud de sección errónea en ihex_read_section" #: ihex.c:863 -#, c-format -msgid "%s: address 0x%s out of range for Intex Hex file" -msgstr "%s: la dirección 0x%s está fuera de rango en el fichero Hexadecimal de Intel" +#, fuzzy, c-format +msgid "%s: address 0x%s out of range for Intel Hex file" +msgstr "" +"%s: la dirección 0x%s está fuera de rango en el fichero Hexadecimal de Intel" #: libbfd.c:492 #, c-format @@ -1575,16 +1791,16 @@ msgstr "no se mapea: datos=%lx mapeados%d\n" msgid "not mapping: env var not set\n" msgstr "no se mapea: no se estableció la variable de ambiente\n" -#: libbfd.c:1463 -#, c-format -msgid "Deprecated %s called" -msgstr "Se llamó a %s que está deprecado" - -#: libbfd.c:1465 -#, c-format -msgid " at %s line %d in %s\n" +#: libbfd.c:1467 +#, fuzzy, c-format +msgid "Deprecated %s called at %s line %d in %s\n" msgstr " en %s línea %d en %s\n" +#: libbfd.c:1470 +#, fuzzy, c-format +msgid "Deprecated %s called\n" +msgstr "Se llamó a %s que está deprecado" + #: linker.c:1849 #, c-format msgid "%s: indirect symbol `%s' to `%s' is a loop" @@ -1613,12 +1829,17 @@ msgstr "%s: No hay core para asignar un s #: mmo.c:1190 #, c-format msgid "%s: invalid mmo file: initialization value for $255 is not `Main'\n" -msgstr "%s: fichero mmo inválido: el valor de iniciación para $255 no es `Main'\n" +msgstr "" +"%s: fichero mmo inválido: el valor de iniciación para $255 no es `Main'\n" #: mmo.c:1336 #, c-format -msgid "%s: unsupported wide character sequence 0x%02X 0x%02X after symbol name starting with `%s'\n" -msgstr "%s: secuencia de caracteres anchos 0x%02X 0x%02X sin soporte después del nombre de símbolo que inicia con `%s'\n" +msgid "" +"%s: unsupported wide character sequence 0x%02X 0x%02X after symbol name " +"starting with `%s'\n" +msgstr "" +"%s: secuencia de caracteres anchos 0x%02X 0x%02X sin soporte después del " +"nombre de símbolo que inicia con `%s'\n" #: mmo.c:1571 #, c-format @@ -1628,62 +1849,94 @@ msgstr "%s: fichero mmo inv #: mmo.c:1581 #, c-format msgid "%s: invalid mmo file: expected YZ = 1 got YZ = %d for lop_quote\n" -msgstr "%s: fichero mmo inválido: se esperaba YZ = 1 se obtuvo YZ = %d para lop_quote\n" +msgstr "" +"%s: fichero mmo inválido: se esperaba YZ = 1 se obtuvo YZ = %d para " +"lop_quote\n" #: mmo.c:1617 #, c-format msgid "%s: invalid mmo file: expected z = 1 or z = 2, got z = %d for lop_loc\n" -msgstr "%s: fichero mmo inválido: se esperaba z = 1 ó z = 2, se obtuvo z = %d para lop_loc\n" +msgstr "" +"%s: fichero mmo inválido: se esperaba z = 1 ó z = 2, se obtuvo z = %d para " +"lop_loc\n" #: mmo.c:1663 #, c-format -msgid "%s: invalid mmo file: expected z = 1 or z = 2, got z = %d for lop_fixo\n" -msgstr "%s: fichero mmo inválido: se esperaba z = 1 ó z = 2, se obtuvo z = %d para lop_fixo\n" +msgid "" +"%s: invalid mmo file: expected z = 1 or z = 2, got z = %d for lop_fixo\n" +msgstr "" +"%s: fichero mmo inválido: se esperaba z = 1 ó z = 2, se obtuvo z = %d para " +"lop_fixo\n" #: mmo.c:1702 #, c-format msgid "%s: invalid mmo file: expected y = 0, got y = %d for lop_fixrx\n" -msgstr "%s: fichero mmo inválido: se esperaba y = 0, se obtuvo y = %d para lop_fixrx\n" +msgstr "" +"%s: fichero mmo inválido: se esperaba y = 0, se obtuvo y = %d para " +"lop_fixrx\n" #: mmo.c:1711 #, c-format -msgid "%s: invalid mmo file: expected z = 16 or z = 24, got z = %d for lop_fixrx\n" -msgstr "%s: fichero mmo inválido: se esperaba z = 16 ó z = 24, se obtuvo z = %d para lop_fixrx\n" +msgid "" +"%s: invalid mmo file: expected z = 16 or z = 24, got z = %d for lop_fixrx\n" +msgstr "" +"%s: fichero mmo inválido: se esperaba z = 16 ó z = 24, se obtuvo z = %d para " +"lop_fixrx\n" #: mmo.c:1734 #, c-format -msgid "%s: invalid mmo file: leading byte of operand word must be 0 or 1, got %d for lop_fixrx\n" -msgstr "%s: fichero mmo inválido: el byte inicial de la palabra operando debe ser 0 ó 1, se obtuvo %d para lop_fixrx\n" +msgid "" +"%s: invalid mmo file: leading byte of operand word must be 0 or 1, got %d " +"for lop_fixrx\n" +msgstr "" +"%s: fichero mmo inválido: el byte inicial de la palabra operando debe ser 0 " +"ó 1, se obtuvo %d para lop_fixrx\n" #: mmo.c:1757 #, c-format msgid "%s: cannot allocate file name for file number %d, %d bytes\n" -msgstr "%s: no se puede asignar el nombre de fichero para el número de fichero %d, %d bytes\n" +msgstr "" +"%s: no se puede asignar el nombre de fichero para el número de fichero %d, %" +"d bytes\n" #: mmo.c:1777 #, c-format -msgid "%s: invalid mmo file: file number %d `%s', was already entered as `%s'\n" -msgstr "%s: fichero mmo inválido: el número de fichero %d `%s' ya se había introducido como `%s'\n" +msgid "" +"%s: invalid mmo file: file number %d `%s', was already entered as `%s'\n" +msgstr "" +"%s: fichero mmo inválido: el número de fichero %d `%s' ya se había " +"introducido como `%s'\n" #: mmo.c:1790 #, c-format -msgid "%s: invalid mmo file: file name for number %d was not specified before use\n" -msgstr "%s: fichero mmo inválido: no se especificó un nombre de fichero para el número %d antes de utilizarse\n" +msgid "" +"%s: invalid mmo file: file name for number %d was not specified before use\n" +msgstr "" +"%s: fichero mmo inválido: no se especificó un nombre de fichero para el " +"número %d antes de utilizarse\n" #: mmo.c:1896 #, c-format -msgid "%s: invalid mmo file: fields y and z of lop_stab non-zero, y: %d, z: %d\n" -msgstr "%s: fichero mmo inválido: los campos y y z de lop_stab no son cero, y: %d, z: %d\n" +msgid "" +"%s: invalid mmo file: fields y and z of lop_stab non-zero, y: %d, z: %d\n" +msgstr "" +"%s: fichero mmo inválido: los campos y y z de lop_stab no son cero, y: %d, " +"z: %d\n" #: mmo.c:1932 #, c-format msgid "%s: invalid mmo file: lop_end not last item in file\n" -msgstr "%s: fichero mmo inválido: lop_end no es el último elemento en el fichero\n" +msgstr "" +"%s: fichero mmo inválido: lop_end no es el último elemento en el fichero\n" #: mmo.c:1945 #, c-format -msgid "%s: invalid mmo file: YZ of lop_end (%ld) not equal to the number of tetras to the preceding lop_stab (%ld)\n" -msgstr "%s: fichero mmo inválido: YZ de lop_end (%ld) no es igual al número de tetras del lop_stab precedente (%ld)\n" +msgid "" +"%s: invalid mmo file: YZ of lop_end (%ld) not equal to the number of tetras " +"to the preceding lop_stab (%ld)\n" +msgstr "" +"%s: fichero mmo inválido: YZ de lop_end (%ld) no es igual al número de " +"tetras del lop_stab precedente (%ld)\n" #: mmo.c:2610 #, c-format @@ -1692,23 +1945,33 @@ msgstr "%s: tabla de s #: mmo.c:2898 #, c-format -msgid "%s: Bad symbol definition: `Main' set to %s rather than the start address %s\n" -msgstr "%s: Definición de símbolo errónea: `Main' se estableción como %s en lugar de la dirección de inicio %s\n" +msgid "" +"%s: Bad symbol definition: `Main' set to %s rather than the start address %" +"s\n" +msgstr "" +"%s: Definición de símbolo errónea: `Main' se estableción como %s en lugar de " +"la dirección de inicio %s\n" #: mmo.c:2932 #, c-format -msgid "%s: warning: symbol table too large for mmo, larger than 65535 32-bit words: %d. Only `Main' will be emitted.\n" -msgstr "%s: aviso: la tabla de símbolos es demasiado grande para mmo, es más grande que 65535 words de 32-bit: %d. Sólo se emitirá `Main'.\n" +msgid "" +"%s: warning: symbol table too large for mmo, larger than 65535 32-bit words: " +"%d. Only `Main' will be emitted.\n" +msgstr "" +"%s: aviso: la tabla de símbolos es demasiado grande para mmo, es más grande " +"que 65535 words de 32-bit: %d. Sólo se emitirá `Main'.\n" #: mmo.c:2977 #, c-format msgid "%s: internal error, symbol table changed size from %d to %d words\n" -msgstr "%s: error interno, la tabla de símbolos cambió de tamaño de %d a %d words\n" +msgstr "" +"%s: error interno, la tabla de símbolos cambió de tamaño de %d a %d words\n" #: mmo.c:3032 #, c-format msgid "%s: internal error, internal register section %s had contents\n" -msgstr "%s: error interno, la sección interna de registros %s tiene contenido\n" +msgstr "" +"%s: error interno, la sección interna de registros %s tiene contenido\n" #: mmo.c:3084 #, c-format @@ -1722,8 +1985,12 @@ msgstr "%s: demasiados registros iniciados: longitud de secci #: mmo.c:3095 #, c-format -msgid "%s: invalid start address for initialized registers of length %ld: 0x%lx%08lx\n" -msgstr "%s: dirección de inicio inválida para los registros iniciados de longitud %ld: 0x%lx%08lx\n" +msgid "" +"%s: invalid start address for initialized registers of length %ld: 0x%lx%" +"08lx\n" +msgstr "" +"%s: dirección de inicio inválida para los registros iniciados de longitud %" +"ld: 0x%lx%08lx\n" #: oasys.c:1036 #, c-format @@ -1779,17 +2046,25 @@ msgstr "%s: Tipo de nombre de importaci #: peicode.h:1162 #, c-format msgid "%s: Unrecognised machine type (0x%x) in Import Library Format archive" -msgstr "%s: Tipo de máquina (0x%x) no reconocida en el archivo de Formato de Importación de Bibliotecas" +msgstr "" +"%s: Tipo de máquina (0x%x) no reconocida en el archivo de Formato de " +"Importación de Bibliotecas" #: peicode.h:1174 #, c-format -msgid "%s: Recognised but unhandled machine type (0x%x) in Import Library Format archive" -msgstr "%s: Tipo de máquina (0x%x) reconocida pero sin manejar en el archivo de Formato de Importación de Bibliotecas" +msgid "" +"%s: Recognised but unhandled machine type (0x%x) in Import Library Format " +"archive" +msgstr "" +"%s: Tipo de máquina (0x%x) reconocida pero sin manejar en el archivo de " +"Formato de Importación de Bibliotecas" #: peicode.h:1191 #, c-format msgid "%s: size field is zero in Import Library Format header" -msgstr "%s: el tamaño del campo es cero en el encabezado del Formato de Importación de Bibliotecas" +msgstr "" +"%s: el tamaño del campo es cero en el encabezado del Formato de Importación " +"de Bibliotecas" #: peicode.h:1219 #, c-format @@ -1797,8 +2072,12 @@ msgid "%s: string not null terminated in ILF object file." msgstr "%s: la cadena no termina en null en el fichero objeto ILF." #: ppcboot.c:416 -msgid "\nppcboot header:\n" -msgstr "\nencabezado de ppcboot:\n" +msgid "" +"\n" +"ppcboot header:\n" +msgstr "" +"\n" +"encabezado de ppcboot:\n" #: ppcboot.c:417 #, c-format @@ -1822,8 +2101,12 @@ msgstr "Nombre de la partici #: ppcboot.c:446 #, c-format -msgid "\nPartition[%d] start = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" -msgstr "\nPartición[%d] inicio = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" +msgid "" +"\n" +"Partition[%d] start = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" +msgstr "" +"\n" +"Partición[%d] inicio = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" #: ppcboot.c:452 #, c-format @@ -1849,7 +2132,7 @@ msgstr "som_sizeof_headers sin implementar" msgid "%s:%d: Unexpected character `%s' in S-record file\n" msgstr "%s:%d: Caractér `%s' inesperado en el fichero S-record\n" -#: syms.c:996 +#: syms.c:998 msgid "Unsupported .stab relocation" msgstr "Reubicación .stab sin soporte" @@ -1904,193 +2187,116 @@ msgstr "El s msgid "failed to enter %s" msgstr "falló la introducción de %s" -#: vms-tir.c:78 +#: vms-tir.c:81 msgid "No Mem !" msgstr "¡ No hay Memoria !" -#: vms-tir.c:313 -msgid "Bad section index in ETIR_S_C_STA_PQ" +#: vms-tir.c:362 +#, fuzzy, c-format +msgid "bad section index in %s" msgstr "Índice de sección erróneo en ETIR_S_C_STA_PQ" -#: vms-tir.c:328 -#, c-format -msgid "Unsupported STA cmd %d" +#: vms-tir.c:375 +#, fuzzy, c-format +msgid "unsupported STA cmd %s" msgstr "Orden STA %d sin soporte" -#: vms-tir.c:333 vms-tir.c:1301 -#, c-format -msgid "Reserved STA cmd %d" +#: vms-tir.c:380 vms-tir.c:1240 +#, fuzzy, c-format +msgid "reserved STA cmd %d" msgstr "Orden STA %d reservada" -#: vms-tir.c:443 -#, c-format -msgid "ETIR_S_C_STO_GBL: no symbol \"%s\"" -msgstr "ETIR_S_C_STO_GBL: no está el símbolo \"%s\"" - -#: vms-tir.c:465 -#, c-format -msgid "ETIR_S_C_STO_CA: no symbol \"%s\"" -msgstr "ETIR_S_C_STO_CA: no está el símbolo \"%s\"" - -#: vms-tir.c:478 -msgid "ETIR_S_C_STO_RB/AB: Not supported" -msgstr "ETIR_S_C_STO_RB/AB: Sin soporte" - -#: vms-tir.c:538 -msgid "ETIR_S_C_STO_LP_PSB: Not supported" -msgstr "ETIR_S_C_STO_LP_PSB: Sin soporte" - -#: vms-tir.c:544 -msgid "ETIR_S_C_STO_HINT_GBL: not implemented" -msgstr "ETIR_S_C_STO_HINT_GBL: sin implementar" +#: vms-tir.c:491 vms-tir.c:514 +#, fuzzy, c-format +msgid "%s: no symbol \"%s\"" +msgstr "%s: no hay tal símbolo" -#: vms-tir.c:550 -msgid "ETIR_S_C_STO_HINT_PS: not implemented" -msgstr "ETIR_S_C_STO_HINT_PS: sin implementar" +#. unsigned shift +#. rotate +#. Redefine symbol to current location. +#. Define a literal. +#: vms-tir.c:581 vms-tir.c:693 vms-tir.c:803 vms-tir.c:821 vms-tir.c:829 +#: vms-tir.c:838 vms-tir.c:1563 +#, fuzzy, c-format +msgid "%s: not supported" +msgstr "no tiene soporte para" + +#: vms-tir.c:586 vms-tir.c:1418 +#, fuzzy, c-format +msgid "%s: not implemented" +msgstr "%s: %s sin implementar\n" -#: vms-tir.c:554 vms-tir.c:1473 -#, c-format -msgid "Reserved STO cmd %d" +#: vms-tir.c:590 vms-tir.c:1422 +#, fuzzy, c-format +msgid "reserved STO cmd %d" msgstr "Orden STO %d reservada" -#: vms-tir.c:667 -msgid "ETIR_S_C_OPR_INSV: Not supported" -msgstr "ETIR_S_C_OPR_INSV: Sin soporte" - -#: vms-tir.c:685 -msgid "ETIR_S_C_OPR_USH: Not supported" -msgstr "ETIR_S_C_OPR_USH: Sin soporte" - -#: vms-tir.c:691 -msgid "ETIR_S_C_OPR_ROT: Not supported" -msgstr "ETIR_S_C_OPR_ROT: Sin soporte" - -#: vms-tir.c:710 -msgid "ETIR_S_C_OPR_REDEF: Not supported" -msgstr "ETIR_S_C_OPR_REDEF: Sin soporte" - -#: vms-tir.c:716 -msgid "ETIR_S_C_OPR_DFLIT: Not supported" -msgstr "ETIR_S_C_OPR_DFLIT: Sin soporte" - -#: vms-tir.c:720 vms-tir.c:1668 -#, c-format -msgid "Reserved OPR cmd %d" +#: vms-tir.c:708 vms-tir.c:1568 +#, fuzzy, c-format +msgid "reserved OPR cmd %d" msgstr "Orden OPR %d reservada" -#: vms-tir.c:788 vms-tir.c:1737 -#, c-format -msgid "Reserved CTL cmd %d" +#: vms-tir.c:776 vms-tir.c:1632 +#, fuzzy, c-format +msgid "reserved CTL cmd %d" msgstr "Orden CTL %d reservada" -#: vms-tir.c:816 -msgid "ETIR_S_C_STC_LP: not supported" -msgstr "ETIR_S_C_STC_LP: sin soporte" - -#: vms-tir.c:834 -msgid "ETIR_S_C_STC_GBL: not supported" -msgstr "ETIR_S_C_STC_GBL: sin soporte" - -#: vms-tir.c:842 -msgid "ETIR_S_C_STC_GCA: not supported" -msgstr "ETIR_S_C_STC_GCA: sin soporte" - -#: vms-tir.c:851 -msgid "ETIR_S_C_STC_PS: not supported" -msgstr "ETIR_S_C_STC_PS: sin soporte" - -#. -#. * stack byte from image -#. * arg: - -#. * -#. -#: vms-tir.c:1199 -msgid "Stack-from-image not implemented" +#. stack byte from image +#. arg: none. +#: vms-tir.c:1148 +#, fuzzy +msgid "stack-from-image not implemented" msgstr "Pila-desde-imagen sin implementar" -#: vms-tir.c:1219 -msgid "Stack-entry-mask not fully implemented" +#: vms-tir.c:1166 +#, fuzzy +msgid "stack-entry-mask not fully implemented" msgstr "Pila-máscara-entrada no está completamente implementado" +#. compare procedure argument +#. arg: cs symbol name +#. by argument index +#. da argument descriptor #. -#. * compare procedure argument -#. * arg: cs symbol name -#. * by argument index -#. * da argument descriptor -#. * -#. * compare argument descriptor with symbol argument (ARG$V_PASSMECH) -#. * and stack TRUE (args match) or FALSE (args dont match) value -#. -#: vms-tir.c:1235 +#. compare argument descriptor with symbol argument (ARG$V_PASSMECH) +#. and stack TRUE (args match) or FALSE (args dont match) value. +#: vms-tir.c:1180 msgid "PASSMECH not fully implemented" msgstr "PASSMECH no está completamente implementado" -#: vms-tir.c:1256 -msgid "Stack-local-symbol not fully implemented" +#: vms-tir.c:1199 +#, fuzzy +msgid "stack-local-symbol not fully implemented" msgstr "Pila-símbolo-local no está completamente implementado" -#: vms-tir.c:1271 -msgid "Stack-literal not fully implemented" +#: vms-tir.c:1212 +#, fuzzy +msgid "stack-literal not fully implemented" msgstr "Pila-literal no está completamente implementado" -#: vms-tir.c:1294 -msgid "Stack-local-symbol-entry-point-mask not fully implemented" -msgstr "Pila-símbolo-local-máscara-punto-entrada no está completamente implementado" - -#: vms-tir.c:1469 -#, c-format -msgid "Unimplemented STO cmd %d" -msgstr "Orden STO %d sin implementar" - -#: vms-tir.c:1608 -msgid "TIR_S_C_OPR_ASH incomplete" -msgstr "TIR_S_C_OPR_ASH incompleto" - -#: vms-tir.c:1622 -msgid "TIR_S_C_OPR_USH incomplete" -msgstr "TIR_S_C_OPR_USH incompleto" - -#: vms-tir.c:1636 -msgid "TIR_S_C_OPR_ROT incomplete" -msgstr "TIR_S_C_OPR_ROT incompleto" - -#. -#. * redefine symbol to current location -#. -#: vms-tir.c:1657 -msgid "TIR_S_C_OPR_REDEF not supported" -msgstr "TIR_S_C_OPR_REDEF sin soporte" - -#. -#. * define a literal -#. -#: vms-tir.c:1664 -msgid "TIR_S_C_OPR_DFLIT not supported" -msgstr "TIR_S_C_OPR_DFLIT sin soporte" - -#: vms-tir.c:1718 -msgid "TIR_S_C_CTL_DFLOC not fully implemented" -msgstr "TIR_S_C_CTL_DFLOC no está completamente implementado" - -#: vms-tir.c:1726 -msgid "TIR_S_C_CTL_STLOC not fully implemented" -msgstr "TIR_S_C_CTL_STLOC no está completamente implementado" +#: vms-tir.c:1233 +#, fuzzy +msgid "stack-local-symbol-entry-point-mask not fully implemented" +msgstr "" +"Pila-símbolo-local-máscara-punto-entrada no está completamente implementado" -#: vms-tir.c:1734 -msgid "TIR_S_C_CTL_STKDL not fully implemented" -msgstr "TIR_S_C_CTL_STKDL no está completamente implementado" +#: vms-tir.c:1510 vms-tir.c:1522 vms-tir.c:1534 vms-tir.c:1546 vms-tir.c:1611 +#: vms-tir.c:1619 vms-tir.c:1627 +#, fuzzy, c-format +msgid "%s: not fully implemented" +msgstr "PASSMECH no está completamente implementado" -#: vms-tir.c:1791 -#, c-format -msgid "Obj code %d not found" +#: vms-tir.c:1684 +#, fuzzy, c-format +msgid "obj code %d not found" msgstr "No se encontró el código objeto %d" -#: vms-tir.c:2137 +#: vms-tir.c:2019 #, c-format msgid "SEC_RELOC with no relocs in section %s" msgstr "SEC_RELOC sin reubicaciones en la sección %s" -#: vms-tir.c:2424 +#: vms-tir.c:2307 #, c-format msgid "Unhandled relocation %s" msgstr "Reubicación %s sin manejar" @@ -2162,7 +2368,8 @@ msgstr "aviso: intento de exportar el s #: xcofflink.c:4452 #, c-format msgid "TOC overflow: 0x%lx > 0x10000; try -mminimal-toc when compiling" -msgstr "Desbordamiento de TOC: 0x%lx > 0x10000; pruebe -mminimal-toc al compilar" +msgstr "" +"Desbordamiento de TOC: 0x%lx > 0x10000; pruebe -mminimal-toc al compilar" #: xcofflink.c:5292 xcofflink.c:5754 xcofflink.c:5816 xcofflink.c:6117 #, c-format @@ -2172,336 +2379,403 @@ msgstr "%s: reubicaci #: xcofflink.c:5314 xcofflink.c:6128 #, c-format msgid "%s: `%s' in loader reloc but not loader sym" -msgstr "%s: `%s' en la reubicación del cargador pero no es un símbolo del cargador" +msgstr "" +"%s: `%s' en la reubicación del cargador pero no es un símbolo del cargador" #: xcofflink.c:5329 #, c-format msgid "%s: loader reloc in read-only section %s" msgstr "%s: reubicación del cargador en la sección de sólo lectura %s" -#: elf32-ia64.c:2190 elf64-ia64.c:2190 +#: elf32-ia64.c:2189 elf64-ia64.c:2189 msgid "@pltoff reloc against local symbol" msgstr "reubicación @pltoff contra un símbolo local" -#: elf32-ia64.c:2248 elf64-ia64.c:2248 -msgid "non-zero addend in @fptr reloc" -msgstr "adición que no es cero en la reubicación @fptr" - -#: elf32-ia64.c:3414 elf64-ia64.c:3414 +#: elf32-ia64.c:3413 elf64-ia64.c:3413 #, c-format msgid "%s: short data segment overflowed (0x%lx >= 0x400000)" msgstr "%s: segmento de datos short desbordado (0x%lx >= 0x400000)" -#: elf32-ia64.c:3425 elf64-ia64.c:3425 +#: elf32-ia64.c:3424 elf64-ia64.c:3424 #, c-format msgid "%s: __gp does not cover short data segment" msgstr "%s: __gp no cubre el segmento de datos short" -#: elf32-ia64.c:3729 elf64-ia64.c:3729 +#: elf32-ia64.c:3728 elf64-ia64.c:3728 #, c-format msgid "%s: linking non-pic code in a shared library" msgstr "%s: enlazando código que no es pic en una biblioteca compartida" -#: elf32-ia64.c:3762 elf64-ia64.c:3762 +#: elf32-ia64.c:3761 elf64-ia64.c:3761 #, c-format msgid "%s: @gprel relocation against dynamic symbol %s" msgstr "%s: reubicación @gprel contra el símbolo dinámico %s" -#: elf32-ia64.c:3901 elf64-ia64.c:3901 +#: elf32-ia64.c:3900 elf64-ia64.c:3900 #, c-format msgid "%s: dynamic relocation against speculation fixup" msgstr "%s: reubicación dinámica contra una compostura de especulación" -#: elf32-ia64.c:3909 elf64-ia64.c:3909 +#: elf32-ia64.c:3908 elf64-ia64.c:3908 #, c-format msgid "%s: speculation fixup against undefined weak symbol" msgstr "%s: compostura de especulación contra un símbolo débil indefinido" -#: elf32-ia64.c:4093 elf64-ia64.c:4093 +#: elf32-ia64.c:4092 elf64-ia64.c:4092 msgid "unsupported reloc" msgstr "reubicación sin soporte" -#: elf32-ia64.c:4373 elf64-ia64.c:4373 +#: elf32-ia64.c:4372 elf64-ia64.c:4372 #, c-format msgid "%s: linking trap-on-NULL-dereference with non-trapping files" -msgstr "%s: enlazando deferencias-captura-en-NULL con ficheros que no son de captura" +msgstr "" +"%s: enlazando deferencias-captura-en-NULL con ficheros que no son de captura" -#: elf32-ia64.c:4382 elf64-ia64.c:4382 +#: elf32-ia64.c:4381 elf64-ia64.c:4381 #, c-format msgid "%s: linking big-endian files with little-endian files" msgstr "%s: enlazando ficheros big endian con ficheros little endian" -#: elf32-ia64.c:4391 elf64-ia64.c:4391 +#: elf32-ia64.c:4390 elf64-ia64.c:4390 #, c-format msgid "%s: linking 64-bit files with 32-bit files" msgstr "%s: enlazando ficheros de 64-bit con ficheros de 32-bit" -#: elf32-ia64.c:4400 elf64-ia64.c:4400 +#: elf32-ia64.c:4399 elf64-ia64.c:4399 #, c-format msgid "%s: linking constant-gp files with non-constant-gp files" -msgstr "%s: enlazando ficheros de gp constante con ficheros con gp no constante" +msgstr "" +"%s: enlazando ficheros de gp constante con ficheros con gp no constante" -#: elf32-ia64.c:4410 elf64-ia64.c:4410 +#: elf32-ia64.c:4409 elf64-ia64.c:4409 #, c-format msgid "%s: linking auto-pic files with non-auto-pic files" -msgstr "%s: enlazando ficheros de pic automático con ficheros sin pic automático" +msgstr "" +"%s: enlazando ficheros de pic automático con ficheros sin pic automático" -#: peigen.c:964 pepigen.c:964 +#: peigen.c:962 pepigen.c:962 #, c-format msgid "%s: line number overflow: 0x%lx > 0xffff" msgstr "%s: desbordamiento de número de línea: 0x%lx > 0xffff" -#: peigen.c:981 pepigen.c:981 +#: peigen.c:979 pepigen.c:979 #, c-format msgid "%s: reloc overflow 1: 0x%lx > 0xffff" msgstr "%s: desbordamiento de reubicación 1: 0x%lx > 0xffff" -#: peigen.c:995 pepigen.c:995 +#: peigen.c:993 pepigen.c:993 msgid "Export Directory [.edata (or where ever we found it)]" msgstr "Directorio de Exportación [.edata (o donde quiera que se encuentre)]" -#: peigen.c:996 pepigen.c:996 +#: peigen.c:994 pepigen.c:994 msgid "Import Directory [parts of .idata]" msgstr "Directorio de Importación [partes de .idata]" -#: peigen.c:997 pepigen.c:997 +#: peigen.c:995 pepigen.c:995 msgid "Resource Directory [.rsrc]" msgstr "Directorio de Recursos [.rsrc]" -#: peigen.c:998 pepigen.c:998 +#: peigen.c:996 pepigen.c:996 msgid "Exception Directory [.pdata]" msgstr "Directorio de Excepciones [.pdata]" -#: peigen.c:999 pepigen.c:999 +#: peigen.c:997 pepigen.c:997 msgid "Security Directory" msgstr "Directorio de Seguridad" -#: peigen.c:1000 pepigen.c:1000 +#: peigen.c:998 pepigen.c:998 msgid "Base Relocation Directory [.reloc]" msgstr "Directorio de Reubicación Base [.reloc]" -#: peigen.c:1001 pepigen.c:1001 +#: peigen.c:999 pepigen.c:999 msgid "Debug Directory" msgstr "Directorio de Depuración" -#: peigen.c:1002 pepigen.c:1002 +#: peigen.c:1000 pepigen.c:1000 msgid "Description Directory" msgstr "Directorio de Descripciones" -#: peigen.c:1003 pepigen.c:1003 +#: peigen.c:1001 pepigen.c:1001 msgid "Special Directory" msgstr "Directorio Especial" -#: peigen.c:1004 pepigen.c:1004 +#: peigen.c:1002 pepigen.c:1002 msgid "Thread Storage Directory [.tls]" msgstr "Directorio de Almacenamiento de Hilos [.tls]" -#: peigen.c:1005 pepigen.c:1005 +#: peigen.c:1003 pepigen.c:1003 msgid "Load Configuration Directory" msgstr "Directorio de Carga de Configuraciones" -#: peigen.c:1006 pepigen.c:1006 +#: peigen.c:1004 pepigen.c:1004 msgid "Bound Import Directory" msgstr "Directorio de Importación de Relaciones" -#: peigen.c:1007 pepigen.c:1007 +#: peigen.c:1005 pepigen.c:1005 msgid "Import Address Table Directory" msgstr "Directorio de Importación de Tablas de Direcciones" -#: peigen.c:1008 pepigen.c:1008 +#: peigen.c:1006 pepigen.c:1006 msgid "Delay Import Directory" msgstr "Directorio de Retardo de Importación" -#: peigen.c:1009 peigen.c:1010 pepigen.c:1009 pepigen.c:1010 +#: peigen.c:1007 peigen.c:1008 pepigen.c:1007 pepigen.c:1008 msgid "Reserved" msgstr "Reservado" -#: peigen.c:1073 pepigen.c:1073 -msgid "\nThere is an import table, but the section containing it could not be found\n" -msgstr "\nHay una tabla de importación, pero la sección que la contiene no se puede encontrar\n" +#: peigen.c:1071 pepigen.c:1071 +msgid "" +"\n" +"There is an import table, but the section containing it could not be found\n" +msgstr "" +"\n" +"Hay una tabla de importación, pero la sección que la contiene no se puede " +"encontrar\n" -#: peigen.c:1078 pepigen.c:1078 +#: peigen.c:1076 pepigen.c:1076 #, c-format -msgid "\nThere is an import table in %s at 0x%lx\n" -msgstr "\nHay una tabla de importación en %s en 0x%lx\n" +msgid "" +"\n" +"There is an import table in %s at 0x%lx\n" +msgstr "" +"\n" +"Hay una tabla de importación en %s en 0x%lx\n" -#: peigen.c:1115 pepigen.c:1115 +#: peigen.c:1113 pepigen.c:1113 #, c-format -msgid "\nFunction descriptor located at the start address: %04lx\n" -msgstr "\nSe localizó el descriptor de función en la dirección de inicio: %04lx\n" +msgid "" +"\n" +"Function descriptor located at the start address: %04lx\n" +msgstr "" +"\n" +"Se localizó el descriptor de función en la dirección de inicio: %04lx\n" -#: peigen.c:1118 pepigen.c:1118 +#: peigen.c:1116 pepigen.c:1116 #, c-format msgid "\tcode-base %08lx toc (loadable/actual) %08lx/%08lx\n" -msgstr "\tcódigo-base %08lx tabla-de-contenidos (cargable/actual) %08lx/%08lx\n" +msgstr "" +"\tcódigo-base %08lx tabla-de-contenidos (cargable/actual) %08lx/%08lx\n" -#: peigen.c:1124 pepigen.c:1124 -msgid "\nNo reldata section! Function descriptor not decoded.\n" -msgstr "\n¡No está la sección reldata! No se decodificó el descriptor de función.\n" +#: peigen.c:1122 pepigen.c:1122 +msgid "" +"\n" +"No reldata section! Function descriptor not decoded.\n" +msgstr "" +"\n" +"¡No está la sección reldata! No se decodificó el descriptor de función.\n" -#: peigen.c:1129 pepigen.c:1129 +#: peigen.c:1127 pepigen.c:1127 #, c-format -msgid "\nThe Import Tables (interpreted %s section contents)\n" -msgstr "\nLas Tablas de Importación (se interpretaron los contenidos de la sección %s)\n" - -#: peigen.c:1132 pepigen.c:1132 -msgid " vma: Hint Time Forward DLL First\n" -msgstr " vma: Pista Tiempo Adelante DLL Primero\n" +msgid "" +"\n" +"The Import Tables (interpreted %s section contents)\n" +msgstr "" +"\n" +"Las Tablas de Importación (se interpretaron los contenidos de la sección %" +"s)\n" -#: peigen.c:1134 pepigen.c:1134 -msgid " Table Stamp Chain Name Thunk\n" +#: peigen.c:1130 pepigen.c:1130 +#, fuzzy +msgid "" +" vma: Hint Time Forward DLL First\n" +" Table Stamp Chain Name Thunk\n" msgstr " Tabla Estampa Cadena Nombre Thunk\n" -#: peigen.c:1182 pepigen.c:1182 +#: peigen.c:1180 pepigen.c:1180 #, c-format -msgid "\n\tDLL Name: %s\n" -msgstr "\n\tNombre de la DLL: %s\n" +msgid "" +"\n" +"\tDLL Name: %s\n" +msgstr "" +"\n" +"\tNombre de la DLL: %s\n" -#: peigen.c:1186 peigen.c:1249 pepigen.c:1186 pepigen.c:1249 +#: peigen.c:1184 peigen.c:1247 pepigen.c:1184 pepigen.c:1247 msgid "\tvma: Hint/Ord Member-Name\n" msgstr "\tvma: Nombre de Miembro de Pista/Ord\n" -#: peigen.c:1248 pepigen.c:1248 +#: peigen.c:1246 pepigen.c:1246 msgid "\tThe Import Address Table (difference found)\n" -msgstr "\tLa Tabla de Importación de Direcciones (se encontró una diferencia)\n" +msgstr "" +"\tLa Tabla de Importación de Direcciones (se encontró una diferencia)\n" -#: peigen.c:1255 pepigen.c:1255 +#: peigen.c:1253 pepigen.c:1253 msgid "\t>>> Ran out of IAT members!\n" msgstr "\t>>> ¡Se terminaron los miembros IAT!\n" -#: peigen.c:1273 pepigen.c:1273 +#: peigen.c:1271 pepigen.c:1271 msgid "\tThe Import Address Table is identical\n" msgstr "\tLa Tabla de Importación de Direcciones es idéntica\n" -#: peigen.c:1345 pepigen.c:1345 -msgid "\nThere is an export table, but the section containing it could not be found\n" -msgstr "\nHay una tabla de exportación, pero la sección que la contiene no se puede encontrar\n" +#: peigen.c:1343 pepigen.c:1343 +msgid "" +"\n" +"There is an export table, but the section containing it could not be found\n" +msgstr "" +"\n" +"Hay una tabla de exportación, pero la sección que la contiene no se puede " +"encontrar\n" -#: peigen.c:1350 pepigen.c:1350 +#: peigen.c:1348 pepigen.c:1348 #, c-format -msgid "\nThere is an export table in %s at 0x%lx\n" -msgstr "\nHay una tabla de exportación en %s en 0x%lx\n" +msgid "" +"\n" +"There is an export table in %s at 0x%lx\n" +msgstr "" +"\n" +"Hay una tabla de exportación en %s en 0x%lx\n" -#: peigen.c:1381 pepigen.c:1381 +#: peigen.c:1379 pepigen.c:1379 #, c-format -msgid "\nThe Export Tables (interpreted %s section contents)\n\n" -msgstr "\nLas Tablas de Exportación (se interpretaron los contenidos de la sección %s)\n\n" +msgid "" +"\n" +"The Export Tables (interpreted %s section contents)\n" +"\n" +msgstr "" +"\n" +"Las Tablas de Exportación (se interpretaron los contenidos de la sección %" +"s)\n" +"\n" -#: peigen.c:1385 pepigen.c:1385 +#: peigen.c:1383 pepigen.c:1383 #, c-format msgid "Export Flags \t\t\t%lx\n" msgstr "Opciones de Exportación \t\t\t%lx\n" -#: peigen.c:1388 pepigen.c:1388 +#: peigen.c:1386 pepigen.c:1386 #, c-format msgid "Time/Date stamp \t\t%lx\n" msgstr "marca de Hora/Fecha \t\t%lx\n" -#: peigen.c:1391 pepigen.c:1391 +#: peigen.c:1389 pepigen.c:1389 #, c-format msgid "Major/Minor \t\t\t%d/%d\n" msgstr "Mayor/Menor \t\t\t%d/%d\n" -#: peigen.c:1394 pepigen.c:1394 +#: peigen.c:1392 pepigen.c:1392 msgid "Name \t\t\t\t" msgstr "Nombre \t\t\t\t" -#: peigen.c:1400 pepigen.c:1400 +#: peigen.c:1398 pepigen.c:1398 #, c-format msgid "Ordinal Base \t\t\t%ld\n" msgstr "Base Ordinal \t\t\t%ld\n" -#: peigen.c:1403 pepigen.c:1403 +#: peigen.c:1401 pepigen.c:1401 msgid "Number in:\n" msgstr "Número en:\n" -#: peigen.c:1406 pepigen.c:1406 +#: peigen.c:1404 pepigen.c:1404 #, c-format msgid "\tExport Address Table \t\t%08lx\n" msgstr "\tTabla de Exportación de Direcciones \t\t%08lx\n" -#: peigen.c:1410 pepigen.c:1410 +#: peigen.c:1408 pepigen.c:1408 #, c-format msgid "\t[Name Pointer/Ordinal] Table\t%08lx\n" msgstr "\tTabla [Nombre Apuntador/Ordinal]\t%08lx\n" -#: peigen.c:1413 pepigen.c:1413 +#: peigen.c:1411 pepigen.c:1411 msgid "Table Addresses\n" msgstr "Direcciones de la Tabla\n" -#: peigen.c:1416 pepigen.c:1416 +#: peigen.c:1414 pepigen.c:1414 msgid "\tExport Address Table \t\t" msgstr "\tTabla de Exportación de Direcciones \t\t" -#: peigen.c:1421 pepigen.c:1421 +#: peigen.c:1419 pepigen.c:1419 msgid "\tName Pointer Table \t\t" msgstr "\tNombre de la Tabla de Apuntadores \t\t" # continuar aqui -#: peigen.c:1426 pepigen.c:1426 +#: peigen.c:1424 pepigen.c:1424 msgid "\tOrdinal Table \t\t\t" msgstr "\tTabla Ordinal \t\t\t" -#: peigen.c:1441 pepigen.c:1441 +#: peigen.c:1439 pepigen.c:1439 #, c-format -msgid "\nExport Address Table -- Ordinal Base %ld\n" -msgstr "\nTabla de Exportación de Direcciones -- Base Ordinal %ld\n" +msgid "" +"\n" +"Export Address Table -- Ordinal Base %ld\n" +msgstr "" +"\n" +"Tabla de Exportación de Direcciones -- Base Ordinal %ld\n" -#: peigen.c:1460 pepigen.c:1460 +#: peigen.c:1458 pepigen.c:1458 msgid "Forwarder RVA" msgstr "RVA Adelantador" -#: peigen.c:1471 pepigen.c:1471 +#: peigen.c:1469 pepigen.c:1469 msgid "Export RVA" msgstr "RVA Exportador" -#: peigen.c:1478 pepigen.c:1478 -msgid "\n[Ordinal/Name Pointer] Table\n" -msgstr "\nTabla [Apuntador a Ordinal/Nombre]\n" +#: peigen.c:1476 pepigen.c:1476 +msgid "" +"\n" +"[Ordinal/Name Pointer] Table\n" +msgstr "" +"\n" +"Tabla [Apuntador a Ordinal/Nombre]\n" -#: peigen.c:1533 pepigen.c:1533 +#: peigen.c:1531 pepigen.c:1531 #, c-format msgid "Warning, .pdata section size (%ld) is not a multiple of %d\n" msgstr "Aviso, el tamaño de la sección .pdata (%ld) no es un múltiplo de %d\n" -#: peigen.c:1537 pepigen.c:1537 -msgid "\nThe Function Table (interpreted .pdata section contents)\n" -msgstr "\nLa Tabla de Funciones (se interpretaron los contenidos de la sección .pdata)\n" +#: peigen.c:1535 pepigen.c:1535 +msgid "" +"\n" +"The Function Table (interpreted .pdata section contents)\n" +msgstr "" +"\n" +"La Tabla de Funciones (se interpretaron los contenidos de la sección ." +"pdata)\n" -#: peigen.c:1540 pepigen.c:1540 +#: peigen.c:1538 pepigen.c:1538 msgid " vma:\t\t\tBegin Address End Address Unwind Info\n" msgstr " vma:\t\t\tDirección Inicio Dirección Fin Información Desenvuelta\n" -#: peigen.c:1543 pepigen.c:1543 -msgid " vma:\t\tBegin End EH EH PrologEnd Exception\n" +#: peigen.c:1540 pepigen.c:1540 +#, fuzzy +msgid "" +" vma:\t\tBegin End EH EH PrologEnd Exception\n" +" \t\tAddress Address Handler Data Address Mask\n" msgstr " vma:\t\tInicio Fin EH EH FinPrólogo Excepción\n" -#: peigen.c:1545 pepigen.c:1545 -msgid " \t\tAddress Address Handler Data Address Mask\n" -msgstr " \t\tDirección Dirección Manejador Datos Dirección Máscara\n" - -#: peigen.c:1613 pepigen.c:1613 +#: peigen.c:1610 pepigen.c:1610 msgid " Register save millicode" msgstr " Registro para guardar milicódigo" -#: peigen.c:1616 pepigen.c:1616 +#: peigen.c:1613 pepigen.c:1613 msgid " Register restore millicode" msgstr " Registro para restaurar milicódigo" -#: peigen.c:1619 pepigen.c:1619 +#: peigen.c:1616 pepigen.c:1616 msgid " Glue code sequence" msgstr " Secuencia de código pegamento" -#: peigen.c:1671 pepigen.c:1671 -msgid "\n\nPE File Base Relocations (interpreted .reloc section contents)\n" -msgstr "\n\nReubicaciones de Fichero Base PE (se interpretaron los contenidos de la sección .reloc)\n" +#: peigen.c:1668 pepigen.c:1668 +msgid "" +"\n" +"\n" +"PE File Base Relocations (interpreted .reloc section contents)\n" +msgstr "" +"\n" +"\n" +"Reubicaciones de Fichero Base PE (se interpretaron los contenidos de la " +"sección .reloc)\n" -#: peigen.c:1701 pepigen.c:1701 +#: peigen.c:1698 pepigen.c:1698 #, c-format -msgid "\nVirtual Address: %08lx Chunk size %ld (0x%lx) Number of fixups %ld\n" -msgstr "\nDirección Virtual: %08lx Tamaño del trozo %ld (0x%lx) Número de composturas %ld\n" +msgid "" +"\n" +"Virtual Address: %08lx Chunk size %ld (0x%lx) Number of fixups %ld\n" +msgstr "" +"\n" +"Dirección Virtual: %08lx Tamaño del trozo %ld (0x%lx) Número de composturas %" +"ld\n" -#: peigen.c:1714 pepigen.c:1714 +#: peigen.c:1711 pepigen.c:1711 #, c-format msgid "\treloc %4d offset %4x [%4lx] %s" msgstr "\treubicación %4d desplazamiento %4x [%4lx] %s" @@ -2509,10 +2783,139 @@ msgstr "\treubicaci #. The MS dumpbin program reportedly ands with 0xff0f before #. printing the characteristics field. Not sure why. No reason to #. emulate it here. -#: peigen.c:1754 pepigen.c:1754 +#: peigen.c:1751 pepigen.c:1751 #, c-format -msgid "\nCharacteristics 0x%x\n" -msgstr "\nCaracterísticas 0x%x\n" +msgid "" +"\n" +"Characteristics 0x%x\n" +msgstr "" +"\n" +"Características 0x%x\n" + +#~ msgid "GP relative relocation when GP not defined" +#~ msgstr "reubicación GP relativa cuando GP no estaba definido" + +#~ msgid "Warning: input file %s supports interworking, whereas %s does not." +#~ msgstr "" +#~ "Aviso: el fichero de entrada %s soporta interoperabilidad, mientras que %" +#~ "s no." + +#~ msgid "" +#~ "Warning: input file %s does not support interworking, whereas %s does." +#~ msgstr "" +#~ "Aviso: el fichero de entrada %s no soporta interoperabilidad, mientras " +#~ "que %s sí." + +# FIXME: Revisar en el código si son abreviaturas comunes, o corresponden a +# partes fijas dentro del programa. cfuga +#~ msgid "AUX tagndx %ld ttlsiz 0x%lx lnnos %ld next %ld" +#~ msgstr "AUX tagndx %ld ttlsiz 0x%lx lnnos %ld next %ld" + +#~ msgid "" +#~ "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x" +#~ "%.8lx%s\n" +#~ msgstr "" +#~ "elf_symbol_from_bfd_symbol 0x%.8lx, nombre = %s, núm sim = %d, opciones = " +#~ "0x%.8lx%s\n" + +#~ msgid "" +#~ "Warning: Not setting interwork flag of %s since it has already been " +#~ "specified as non-interworking" +#~ msgstr "" +#~ "Aviso: No se activa la opción de interoperación de %s ya que ya había " +#~ "sido especificada como no interoperable" + +#~ msgid "Warning: Clearing the interwork flag of %s due to outside request" +#~ msgstr "" +#~ "Aviso: Limpiando la opción de interoperación de %s debido a una petición " +#~ "externa" + +#~ msgid "(unknown)" +#~ msgstr "(desconocido)" + +#~ msgid " previously %s in %s" +#~ msgstr " previamente %s en %s" + +#~ msgid "Symbol `%s' has differing types: %s in %s" +#~ msgstr "El símbolo `%s' tiene tipos diferentes: %s en %s" + +#~ msgid "ETIR_S_C_STO_GBL: no symbol \"%s\"" +#~ msgstr "ETIR_S_C_STO_GBL: no está el símbolo \"%s\"" + +#~ msgid "ETIR_S_C_STO_CA: no symbol \"%s\"" +#~ msgstr "ETIR_S_C_STO_CA: no está el símbolo \"%s\"" + +#~ msgid "ETIR_S_C_STO_RB/AB: Not supported" +#~ msgstr "ETIR_S_C_STO_RB/AB: Sin soporte" + +#~ msgid "ETIR_S_C_STO_LP_PSB: Not supported" +#~ msgstr "ETIR_S_C_STO_LP_PSB: Sin soporte" + +#~ msgid "ETIR_S_C_STO_HINT_GBL: not implemented" +#~ msgstr "ETIR_S_C_STO_HINT_GBL: sin implementar" + +#~ msgid "ETIR_S_C_STO_HINT_PS: not implemented" +#~ msgstr "ETIR_S_C_STO_HINT_PS: sin implementar" + +#~ msgid "ETIR_S_C_OPR_INSV: Not supported" +#~ msgstr "ETIR_S_C_OPR_INSV: Sin soporte" + +#~ msgid "ETIR_S_C_OPR_USH: Not supported" +#~ msgstr "ETIR_S_C_OPR_USH: Sin soporte" + +#~ msgid "ETIR_S_C_OPR_ROT: Not supported" +#~ msgstr "ETIR_S_C_OPR_ROT: Sin soporte" + +#~ msgid "ETIR_S_C_OPR_REDEF: Not supported" +#~ msgstr "ETIR_S_C_OPR_REDEF: Sin soporte" + +#~ msgid "ETIR_S_C_OPR_DFLIT: Not supported" +#~ msgstr "ETIR_S_C_OPR_DFLIT: Sin soporte" + +#~ msgid "ETIR_S_C_STC_LP: not supported" +#~ msgstr "ETIR_S_C_STC_LP: sin soporte" + +#~ msgid "ETIR_S_C_STC_GBL: not supported" +#~ msgstr "ETIR_S_C_STC_GBL: sin soporte" + +#~ msgid "ETIR_S_C_STC_GCA: not supported" +#~ msgstr "ETIR_S_C_STC_GCA: sin soporte" + +#~ msgid "ETIR_S_C_STC_PS: not supported" +#~ msgstr "ETIR_S_C_STC_PS: sin soporte" + +#~ msgid "Unimplemented STO cmd %d" +#~ msgstr "Orden STO %d sin implementar" + +#~ msgid "TIR_S_C_OPR_ASH incomplete" +#~ msgstr "TIR_S_C_OPR_ASH incompleto" + +#~ msgid "TIR_S_C_OPR_USH incomplete" +#~ msgstr "TIR_S_C_OPR_USH incompleto" + +#~ msgid "TIR_S_C_OPR_ROT incomplete" +#~ msgstr "TIR_S_C_OPR_ROT incompleto" + +#~ msgid "TIR_S_C_OPR_REDEF not supported" +#~ msgstr "TIR_S_C_OPR_REDEF sin soporte" + +#~ msgid "TIR_S_C_OPR_DFLIT not supported" +#~ msgstr "TIR_S_C_OPR_DFLIT sin soporte" + +#~ msgid "TIR_S_C_CTL_DFLOC not fully implemented" +#~ msgstr "TIR_S_C_CTL_DFLOC no está completamente implementado" + +#~ msgid "TIR_S_C_CTL_STLOC not fully implemented" +#~ msgstr "TIR_S_C_CTL_STLOC no está completamente implementado" + +#~ msgid "TIR_S_C_CTL_STKDL not fully implemented" +#~ msgstr "TIR_S_C_CTL_STKDL no está completamente implementado" + +#~ msgid " vma: Hint Time Forward DLL First\n" +#~ msgstr " vma: Pista Tiempo Adelante DLL Primero\n" + +#~ msgid " \t\tAddress Address Handler Data Address Mask\n" +#~ msgstr " \t\tDirección Dirección Manejador Datos Dirección Máscara\n" #~ msgid "float" #~ msgstr "coma flotante" @@ -2520,7 +2923,7 @@ msgstr "\nCaracter #~ msgid "integer" #~ msgstr "entero" -#~ # FIXME: Revisar el contexto en el código para confirmar esta traducción. cfuga +# FIXME: Revisar el contexto en el código para confirmar esta traducción. cfuga #~ msgid "soft" #~ msgstr "suave" @@ -2533,9 +2936,6 @@ msgstr "\nCaracter #~ msgid "supports" #~ msgstr "tiene soporte para" -#~ msgid "does not support" -#~ msgstr "no tiene soporte para" - #~ msgid "does not" #~ msgstr "no" @@ -2546,13 +2946,15 @@ msgstr "\nCaracter #~ msgstr "%s(%s+0x%lx): no se puede encontrar la entrada de cabo %s" #~ msgid "%s(%s+0x%lx): cannot relocate %s, recompile with -ffunction-sections" -#~ msgstr "%s(%s+0x%lx): no se puede reubicar %s, recompile con -ffuncion-sections" - -#~ msgid "Symbol `%s' has differing types: previously %s, REGISTER in %s" -#~ msgstr "El símbolo `%s' tiene tipos divergentes: previamente %s, REGISTER en %s" - -#~ msgid "creating section symbol, name = %s, value = 0x%.8lx, index = %d, section = 0x%.8lx\n" -#~ msgstr "creando el símbolo de sección, nombre = %s, valor = 0x%.8lx, índice = %d, sección 0x%.8lx\n" +#~ msgstr "" +#~ "%s(%s+0x%lx): no se puede reubicar %s, recompile con -ffuncion-sections" + +#~ msgid "" +#~ "creating section symbol, name = %s, value = 0x%.8lx, index = %d, section " +#~ "= 0x%.8lx\n" +#~ msgstr "" +#~ "creando el símbolo de sección, nombre = %s, valor = 0x%.8lx, índice = %d, " +#~ "sección 0x%.8lx\n" #~ msgid " whereas segment starts at 0x%x" #~ msgstr " mientras que el segmento inicia en 0x%x" diff --git a/bfd/po/fr.po b/bfd/po/fr.po index d85c4f51f..1ecda2ac4 100644 --- a/bfd/po/fr.po +++ b/bfd/po/fr.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: GNU bfd 2.12-pre020121\n" -"POT-Creation-Date: 2002-01-17 12:55+0000\n" +"POT-Creation-Date: 2002-01-31 17:07+0000\n" "PO-Revision-Date: 2002-01-24 08:00-0500\n" "Last-Translator: Michel Robitaille \n" "Language-Team: French \n" @@ -36,12 +36,16 @@ msgstr "%s: mauvais enregistrement de relocalisation import #: aoutx.h:1282 aoutx.h:1699 #, c-format msgid "%s: can not represent section `%s' in a.out object file format" -msgstr "%s: ne peut représenter la section `%s' dans le fichier format objet a.out" +msgstr "" +"%s: ne peut représenter la section `%s' dans le fichier format objet a.out" #: aoutx.h:1669 #, c-format -msgid "%s: can not represent section for symbol `%s' in a.out object file format" -msgstr "%s: ne peut représenter la section pour le symbole `%s' dans le fichier format objet a.out" +msgid "" +"%s: can not represent section for symbol `%s' in a.out object file format" +msgstr "" +"%s: ne peut représenter la section pour le symbole `%s' dans le fichier " +"format objet a.out" #: aoutx.h:1671 msgid "*unknown*" @@ -54,7 +58,9 @@ msgstr "%s: relocalisation de liens de %s vers %s n'est pas support #: archive.c:1826 msgid "Warning: writing archive was slow: rewriting timestamp\n" -msgstr "AVERTISSEMENT: l'écriture de l'archive était lente: réécriture du cachet de date-heure\n" +msgstr "" +"AVERTISSEMENT: l'écriture de l'archive était lente: réécriture du cachet de " +"date-heure\n" #: archive.c:2093 msgid "Reading archive file mod timestamp" @@ -65,109 +71,111 @@ msgstr "Lecture du cachet date-heure modif msgid "Writing updated armap timestamp" msgstr "Écriture du cachet date-heure armap mise à jour" -#: bfd.c:281 +#: bfd.c:274 msgid "No error" msgstr "Pas d'erreur" -#: bfd.c:282 +#: bfd.c:275 msgid "System call error" msgstr "Erreur d'appel système" -#: bfd.c:283 +#: bfd.c:276 msgid "Invalid bfd target" msgstr "cible bfd invalide" -#: bfd.c:284 +#: bfd.c:277 msgid "File in wrong format" msgstr "Fichier dans un mauvais format" -#: bfd.c:285 +#: bfd.c:278 msgid "Archive object file in wrong format" msgstr "Fichier objet d'archive dans un mauvais format" -#: bfd.c:286 +#: bfd.c:279 msgid "Invalid operation" msgstr "Opération invalide" -#: bfd.c:287 +#: bfd.c:280 msgid "Memory exhausted" msgstr "Mémoire épuisée" -#: bfd.c:288 +#: bfd.c:281 msgid "No symbols" msgstr "Aucun symbole" -#: bfd.c:289 +#: bfd.c:282 msgid "Archive has no index; run ranlib to add one" msgstr "L'archive n'a pas d'index; exécuter ranlib pour en ajouter un" -#: bfd.c:290 +#: bfd.c:283 msgid "No more archived files" msgstr "Aucun autre fichier d'archive" -#: bfd.c:291 +#: bfd.c:284 msgid "Malformed archive" msgstr "Archive mal formé" -#: bfd.c:292 +#: bfd.c:285 msgid "File format not recognized" msgstr "Format de fichier non reconnu" -#: bfd.c:293 +#: bfd.c:286 msgid "File format is ambiguous" msgstr "Format de fichier ambiguë" -#: bfd.c:294 +#: bfd.c:287 msgid "Section has no contents" msgstr "Section sans contenu" -#: bfd.c:295 +#: bfd.c:288 msgid "Nonrepresentable section on output" msgstr "Section non-représentable pour la sortie" -#: bfd.c:296 +#: bfd.c:289 msgid "Symbol needs debug section which does not exist" msgstr "Symboles ont besoin de la section de débug qui est inexistente" -#: bfd.c:297 +#: bfd.c:290 msgid "Bad value" msgstr "Mauvaise valeur" -#: bfd.c:298 +#: bfd.c:291 msgid "File truncated" msgstr "Fichier tronqué" -#: bfd.c:299 +#: bfd.c:292 msgid "File too big" msgstr "Fichier trop gros" -#: bfd.c:300 +#: bfd.c:293 msgid "#" msgstr "#" -#: bfd.c:707 +#: bfd.c:700 #, c-format msgid "BFD %s assertion fail %s:%d" msgstr "BFD assertion %s a échoué %s:%d" -#: bfd.c:726 +#: bfd.c:719 #, c-format msgid "BFD %s internal error, aborting at %s line %d in %s\n" msgstr "BFD erreur interne %s, abandon à %s, ligne %d dans %s\n" -#: bfd.c:730 -#, c-format -msgid "BFD %sinternal error, aborting at %s line %d\n" +#: bfd.c:723 +#, fuzzy, c-format +msgid "BFD %s internal error, aborting at %s line %d\n" msgstr "BFD erreur interne %s, abandon à %s, ligne %d\n" -#: bfd.c:732 +#: bfd.c:725 msgid "Please report this bug.\n" msgstr "SVP rapporter cette anomalie.\n" #: binary.c:306 #, c-format msgid "Warning: Writing section `%s' to huge (ie negative) file offset 0x%lx." -msgstr "AVERTISSEMENT: écriture de la section `%s' vers un énorme décalage (ie négatif) dans le fichier 0x%lx." +msgstr "" +"AVERTISSEMENT: écriture de la section `%s' vers un énorme décalage (ie " +"négatif) dans le fichier 0x%lx." #: coff-a29k.c:119 msgid "Missing IHCONST" @@ -177,7 +185,7 @@ msgstr "IHCONST manquant" msgid "Missing IHIHALF" msgstr "IHIHALF manquant" -#: coff-a29k.c:212 +#: coff-a29k.c:212 coff-or32.c:228 msgid "Unrecognized reloc" msgstr "Relocalisation non reconnue" @@ -189,7 +197,7 @@ msgstr "IHCONST de relocalisation manquant" msgid "missing IHIHALF reloc" msgstr "IHIHALF de relocalisation manquant" -#: coff-alpha.c:881 coff-alpha.c:918 +#: coff-alpha.c:881 coff-alpha.c:918 coff-alpha.c:1989 coff-mips.c:1433 msgid "GP relative relocation used when GP not defined" msgstr "Relocalisation relative GP utilisé alors que GP n'est pas défini" @@ -197,10 +205,6 @@ msgstr "Relocalisation relative GP utilis msgid "using multiple gp values" msgstr "utilisation de valeurs multiples gp" -#: coff-alpha.c:1989 coff-mips.c:1433 -msgid "GP relative relocation when GP not defined" -msgstr "GP relocalisation relative alors que GP n'est pas défini" - #: coff-arm.c:1051 elf32-arm.h:285 #, c-format msgid "%s: unable to find THUMB glue '%s' for `%s'" @@ -247,33 +251,52 @@ msgstr "%s: ERREUR: compil #: coff-arm.c:2250 #, c-format -msgid "%s: ERROR: passes floats in float registers whereas target %s uses integer registers" -msgstr "%s: ERREUR: passage de valeurs en virgule flottante dans des registreen virgule flottance alors que la cible %s utilise des registres de valeursentières" +msgid "" +"%s: ERROR: passes floats in float registers whereas target %s uses integer " +"registers" +msgstr "" +"%s: ERREUR: passage de valeurs en virgule flottante dans des registreen " +"virgule flottance alors que la cible %s utilise des registres de " +"valeursentières" #: coff-arm.c:2253 #, c-format -msgid "%s: ERROR: passes floats in integer registers whereas target %s uses float registers" -msgstr "%s: ERREUR: passage de valeurs en virgule flottante dans des registreen valeur entière alors que la cible %s utilise des registres de valeursen virgule flottante" +msgid "" +"%s: ERROR: passes floats in integer registers whereas target %s uses float " +"registers" +msgstr "" +"%s: ERREUR: passage de valeurs en virgule flottante dans des registreen " +"valeur entière alors que la cible %s utilise des registres de valeursen " +"virgule flottante" #: coff-arm.c:2268 #, c-format -msgid "%s: ERROR: compiled as position independent code, whereas target %s is absolute position" -msgstr "%s: ERREUR: compilé en code indépendant de la position, alors que la cible %s esten position absolue" +msgid "" +"%s: ERROR: compiled as position independent code, whereas target %s is " +"absolute position" +msgstr "" +"%s: ERREUR: compilé en code indépendant de la position, alors que la cible %" +"s esten position absolue" #: coff-arm.c:2271 #, c-format -msgid "%s: ERROR: compiled as absolute position code, whereas target %s is position independent" -msgstr "%s: ERREUR: compilé en code à position abolsu, alors que la cible %s estindépendant de la position" +msgid "" +"%s: ERROR: compiled as absolute position code, whereas target %s is position " +"independent" +msgstr "" +"%s: ERREUR: compilé en code à position abolsu, alors que la cible %s " +"estindépendant de la position" #: coff-arm.c:2300 -#, c-format -msgid "Warning: input file %s supports interworking, whereas %s does not." -msgstr "AVERTISSEMENT: file d'entrée %s supporte l'inter-réseautage, contrairement à %s." +#, fuzzy, c-format +msgid "Warning: %s supports interworking, whereas %s does not." +msgstr "AVERTISSEMENT: %s supporte l'inter-réseautage, contrairement à %s." #: coff-arm.c:2303 -#, c-format -msgid "Warning: input file %s does not support interworking, whereas %s does." -msgstr "AVERTISSEMENT: fichier d'entrée %s ne supporte pas l'inter-réseautage, contrairement à %s." +#, fuzzy, c-format +msgid "Warning: %s does not support interworking, whereas %s does." +msgstr "" +"AVERTISSEMENT: %s ne supporte pas l'inter-réseautage, contrairement à %s." #: coff-arm.c:2330 #, c-format @@ -282,11 +305,15 @@ msgstr "fanions priv #: coff-arm.c:2338 elf32-arm.h:2408 msgid " [floats passed in float registers]" -msgstr " [valeurs en virgule flottante passées dans des registres de valeurs en virgule flottante]" +msgstr "" +" [valeurs en virgule flottante passées dans des registres de valeurs en " +"virgule flottante]" #: coff-arm.c:2340 msgid " [floats passed in integer registers]" -msgstr " [valeurs en virgule flottante passées dans des registres de valeurs entières]" +msgstr "" +" [valeurs en virgule flottante passées dans des registres de valeurs " +"entières]" #: coff-arm.c:2343 elf32-arm.h:2411 msgid " [position independent]" @@ -308,25 +335,31 @@ msgstr " [inter-r msgid " [interworking not supported]" msgstr " [inter-réseautage non supporté]" -#: coff-arm.c:2401 -#, c-format -msgid "Warning: Not setting interworking flag of %s, since it has already been specified as non-interworking" -msgstr "AVERTISSEMENT: pas d'initialisation du fanion d'inter-réseautage %s, puisqu'il a déjà été spécifié comme sans inter-réseautage" +#: coff-arm.c:2401 elf32-arm.h:2114 +#, fuzzy, c-format +msgid "" +"Warning: Not setting interworking flag of %s since it has already been " +"specified as non-interworking" +msgstr "" +"AVERTISSEMENT: pas d'initialisation du fanion d'inter-réseautage %s, " +"puisqu'il a déjà été spécifié comme sans inter-réseautage" -#: coff-arm.c:2405 +#: coff-arm.c:2405 elf32-arm.h:2118 #, c-format msgid "Warning: Clearing the interworking flag of %s due to outside request" -msgstr "AVERTISSEMENT: mise à zéro du fanion d'inter-réseautage %s en raison d'une requête externe" +msgstr "" +"AVERTISSEMENT: mise à zéro du fanion d'inter-réseautage %s en raison d'une " +"requête externe" #: coff-i960.c:136 coff-i960.c:485 msgid "uncertain calling convention for non-COFF symbol" msgstr "convention d'appel incertaine pour un symbole non COFF" -#: coff-m68k.c:481 coff-mips.c:2431 elf32-m68k.c:2212 +#: coff-m68k.c:481 coff-mips.c:2431 elf32-m68k.c:2212 elf32-mips.c:9954 msgid "unsupported reloc type" msgstr "type de relocalisation non supporté" -#: coff-mips.c:875 elf32-mips.c:1987 elf64-mips.c:1739 +#: coff-mips.c:875 elf32-mips.c:1997 elf64-mips.c:1739 msgid "GP relative relocation when _gp not defined" msgstr "relocalisation relative GP sans que _gp ne soit défini" @@ -348,7 +381,9 @@ msgstr "%s: type de relocalisation non support #: coff-rs6000.c:2756 coff64-rs6000.c:1210 #, c-format msgid "%s: TOC reloc at 0x%x to symbol `%s' with no TOC entry" -msgstr "%s: table des matières des relocalisation à 0x%x pour les symboles `%s' sans aucune entrée dans la table des matières" +msgstr "" +"%s: table des matières des relocalisation à 0x%x pour les symboles `%s' sans " +"aucune entrée dans la table des matières" #: coff-rs6000.c:3006 coff64-rs6000.c:2060 #, c-format @@ -360,7 +395,7 @@ msgstr "%s: symbole `%s' a une classe smclas non reconnue %d" msgid "Unrecognized reloc type 0x%x" msgstr "Type de relocalisation non reconnu 0x%x" -#: coff-tic54x.c:390 coffcode.h:4847 +#: coff-tic54x.c:390 coffcode.h:4868 #, c-format msgid "%s: warning: illegal symbol index %ld in relocs" msgstr "%s: AVERTISSEMENT: symbole index illégal %ld dans les relocalisations" @@ -375,32 +410,32 @@ msgstr "relocalisation de %s ignor msgid "%s (%s): Section flag %s (0x%x) ignored" msgstr "%s (%s): fanion de section %s (0x%x) ignoré" -#: coffcode.h:2125 +#: coffcode.h:2132 #, c-format msgid "Unrecognized TI COFF target id '0x%x'" msgstr "cible TI COFF non reconnue identificateur '0x%x'" -#: coffcode.h:4236 +#: coffcode.h:4257 #, c-format msgid "%s: warning: illegal symbol index %ld in line numbers" msgstr "%s: AVERTISSEMENT: symbole d'index illégal %ld dans le numéro de ligne" -#: coffcode.h:4250 +#: coffcode.h:4271 #, c-format msgid "%s: warning: duplicate line number information for `%s'" msgstr "%s: AVERTISSEMENT: information de numéro de ligne dédoublée pour `%s'" -#: coffcode.h:4609 +#: coffcode.h:4630 #, c-format msgid "%s: Unrecognized storage class %d for %s symbol `%s'" msgstr "%s: classe de stockage non reconnue %d pour %s symbole `%s'" -#: coffcode.h:4740 +#: coffcode.h:4761 #, c-format msgid "warning: %s: local symbol `%s' has no section" msgstr "AVERTISSEMENT: %s: symbole local `%s' n'a pas de section" -#: coffcode.h:4885 +#: coffcode.h:4906 #, c-format msgid "%s: illegal relocation type %d at address 0x%lx" msgstr "%s: type de relocalisation illégal %d à l'adresse 0x%lx" @@ -410,11 +445,6 @@ msgstr "%s: type de relocalisation ill msgid "%s: bad string table size %lu" msgstr "%s: chaîne erronée de la taille de table %lu" -#: coffgen.c:2138 -#, c-format -msgid "AUX tagndx %ld ttlsiz 0x%lx lnnos %ld next %ld" -msgstr "AUX tagndx %ld ttlsiz 0x%lx lnnos %ld prochain %ld" - #: cofflink.c:536 elflink.h:1967 #, c-format msgid "Warning: type of symbol `%s' changed from %d to %d in %s" @@ -433,7 +463,9 @@ msgstr "%s: %s: d #: cofflink.c:2662 coffswap.h:876 #, c-format msgid "%s: warning: %s: line number overflow: 0x%lx > 0xffff" -msgstr "%s: AVERTISSEMENT: %s: débordement du compteur de numéro de ligne: 0x%lx > 0xffff" +msgstr "" +"%s: AVERTISSEMENT: %s: débordement du compteur de numéro de ligne: 0x%lx > " +"0xffff" #: dwarf2.c:381 msgid "Dwarf Error: Can't find .debug_str section." @@ -441,16 +473,22 @@ msgstr "Erreur DWARF: ne peut rep #: dwarf2.c:398 #, c-format -msgid "Dwarf Error: DW_FORM_strp offset (%u) greater than or equal to .debug_str size (%u)." -msgstr "Erreur DWARF: décalage DW_FORM_strp (%u) est > ou = à la taille de .debug_str (%u)." +msgid "" +"Dwarf Error: DW_FORM_strp offset (%u) greater than or equal to .debug_str " +"size (%u)." +msgstr "" +"Erreur DWARF: décalage DW_FORM_strp (%u) est > ou = à la taille de ." +"debug_str (%u)." #: dwarf2.c:542 msgid "Dwarf Error: Can't find .debug_abbrev section." msgstr "Erreur DWARF: ne peut repérer la section .debug_abbrev" #: dwarf2.c:559 -#, c-format -msgid "Dwarf Error: Abbrev offset (%u) greater than or equal to abbrev size (%u)." +#, fuzzy, c-format +msgid "" +"Dwarf Error: Abbrev offset (%u) greater than or equal to .debug_abbrev size " +"(%u)." msgstr "Erreur DWARF: décalage Abbrev (%u) est > ou = à la taille abbrev (%u)." #: dwarf2.c:756 @@ -460,37 +498,48 @@ msgstr "Erreur DWARF: valeur de FORME invalide ou mal trait #: dwarf2.c:843 msgid "Dwarf Error: mangled line number section (bad file number)." -msgstr "Erreur DWARF: numéro mutilé de ligne de section (mauvais no. de fichier)" +msgstr "" +"Erreur DWARF: numéro mutilé de ligne de section (mauvais no. de fichier)" #: dwarf2.c:929 msgid "Dwarf Error: Can't find .debug_line section." msgstr "Erreur DWARF: ne peut repérer la section .debug_line" #: dwarf2.c:952 -#, c-format -msgid "Dwarf Error: Line offset (%u) greater than or equal to line size (%u)." -msgstr "Erreur DWARF: décalage de ligne (%u) est > ou = à la taille de ligne (%u)" +#, fuzzy, c-format +msgid "" +"Dwarf Error: Line offset (%u) greater than or equal to .debug_line size (%u)." +msgstr "" +"Erreur DWARF: décalage de ligne (%u) est > ou = à la taille de ligne (%u)" #: dwarf2.c:1143 msgid "Dwarf Error: mangled line number section." msgstr "Erreur DWARF: numéro mutilé de ligne de section" -#: dwarf2.c:1318 dwarf2.c:1532 +#: dwarf2.c:1318 dwarf2.c:1529 #, c-format msgid "Dwarf Error: Could not find abbrev number %d." msgstr "Erreur DWARF: ne peut repérer le numéro abrégé %d" -#: dwarf2.c:1493 +#: dwarf2.c:1490 #, c-format -msgid "Dwarf Error: found dwarf version '%hu', this reader only handles version 2 information." -msgstr "Erreur DWARF: version DWARF retrouvée '%hu', ce lecteur ne supporte que les informations de la version 2." +msgid "" +"Dwarf Error: found dwarf version '%hu', this reader only handles version 2 " +"information." +msgstr "" +"Erreur DWARF: version DWARF retrouvée '%hu', ce lecteur ne supporte que les " +"informations de la version 2." -#: dwarf2.c:1500 +#: dwarf2.c:1497 #, c-format -msgid "Dwarf Error: found address size '%u', this reader can not handle sizes greater than '%u'." -msgstr "Erreur DWARF: taille d'adresse obtenue '%u', ce lecteur ne peut traiter des tailles plus grandes que '%u'." +msgid "" +"Dwarf Error: found address size '%u', this reader can not handle sizes " +"greater than '%u'." +msgstr "" +"Erreur DWARF: taille d'adresse obtenue '%u', ce lecteur ne peut traiter des " +"tailles plus grandes que '%u'." -#: dwarf2.c:1523 +#: dwarf2.c:1520 #, c-format msgid "Dwarf Error: Bad abbrev number: %d." msgstr "Erreur DWARF: mauvais numéro abrégé: %d" @@ -502,153 +551,207 @@ msgstr "type de base inconnu %d" #: ecoff.c:1597 #, c-format -msgid "\n End+1 symbol: %ld" -msgstr "\n Dernier+1 symbole: %ld" +msgid "" +"\n" +" End+1 symbol: %ld" +msgstr "" +"\n" +" Dernier+1 symbole: %ld" #: ecoff.c:1604 ecoff.c:1607 #, c-format -msgid "\n First symbol: %ld" -msgstr "\n Premier symbole: %ld" +msgid "" +"\n" +" First symbol: %ld" +msgstr "" +"\n" +" Premier symbole: %ld" #: ecoff.c:1619 #, c-format -msgid "\n End+1 symbol: %-7ld Type: %s" -msgstr "\n Dernier+1 symbole: %-7ld Type: %s" +msgid "" +"\n" +" End+1 symbol: %-7ld Type: %s" +msgstr "" +"\n" +" Dernier+1 symbole: %-7ld Type: %s" #: ecoff.c:1626 #, c-format -msgid "\n Local symbol: %ld" -msgstr "\n Symbole local: %ld" +msgid "" +"\n" +" Local symbol: %ld" +msgstr "" +"\n" +" Symbole local: %ld" #: ecoff.c:1634 #, c-format -msgid "\n struct; End+1 symbol: %ld" -msgstr "\n struct; Symbole Fin+1: %ld" +msgid "" +"\n" +" struct; End+1 symbol: %ld" +msgstr "" +"\n" +" struct; Symbole Fin+1: %ld" #: ecoff.c:1639 #, c-format -msgid "\n union; End+1 symbol: %ld" -msgstr "\n union; Dernier+1 symbole: %ld" +msgid "" +"\n" +" union; End+1 symbol: %ld" +msgstr "" +"\n" +" union; Dernier+1 symbole: %ld" #: ecoff.c:1644 #, c-format -msgid "\n enum; End+1 symbol: %ld" -msgstr "\n enum; Dernier+1 symbol: %ld" +msgid "" +"\n" +" enum; End+1 symbol: %ld" +msgstr "" +"\n" +" enum; Dernier+1 symbol: %ld" #: ecoff.c:1650 #, c-format -msgid "\n Type: %s" -msgstr "\n Type: %s" +msgid "" +"\n" +" Type: %s" +msgstr "" +"\n" +" Type: %s" #: elf-hppa.h:1366 elf-hppa.h:1399 elf32-ppc.c:3062 elf32-sh.c:3201 #: elf64-x86-64.c:1275 #, c-format -msgid "%s: warning: unresolvable relocation against symbol `%s' from %s section" -msgstr "%s: AVERTISSEMENT: relocalisation sans solution vers le symbole `%s' de la section %s" +msgid "" +"%s: warning: unresolvable relocation against symbol `%s' from %s section" +msgstr "" +"%s: AVERTISSEMENT: relocalisation sans solution vers le symbole `%s' de la " +"section %s" #: elf-m10200.c:463 elf-m10300.c:673 elf32-arm.h:2074 elf32-avr.c:835 -#: elf32-cris.c:1392 elf32-d10v.c:482 elf32-fr30.c:653 elf32-h8300.c:547 -#: elf32-i860.c:1048 elf32-m32r.c:1281 elf32-openrisc.c:455 elf32-v850.c:1691 -#: elf64-mmix.c:1164 +#: elf32-cris.c:1406 elf32-d10v.c:482 elf32-fr30.c:653 elf32-h8300.c:547 +#: elf32-i860.c:1048 elf32-m32r.c:1280 elf32-openrisc.c:455 elf32-v850.c:1691 +#: elf32-xstormy16.c:976 elf64-mmix.c:1164 msgid "internal error: out of range error" msgstr "erreur interne: hors gamme" #: elf-m10200.c:467 elf-m10300.c:677 elf32-arm.h:2078 elf32-avr.c:839 -#: elf32-cris.c:1396 elf32-d10v.c:486 elf32-fr30.c:657 elf32-h8300.c:551 -#: elf32-i860.c:1052 elf32-m32r.c:1285 elf32-mips.c:7565 elf32-openrisc.c:459 -#: elf32-v850.c:1695 elf64-mips.c:4464 elf64-mmix.c:1168 +#: elf32-cris.c:1410 elf32-d10v.c:486 elf32-fr30.c:657 elf32-h8300.c:551 +#: elf32-i860.c:1052 elf32-m32r.c:1284 elf32-mips.c:7587 elf32-openrisc.c:459 +#: elf32-v850.c:1695 elf32-xstormy16.c:980 elf64-mips.c:4464 elf64-mmix.c:1168 msgid "internal error: unsupported relocation error" msgstr "erreur interne: erreur de relocalisation non supportée" #: elf-m10200.c:471 elf-m10300.c:681 elf32-arm.h:2082 elf32-d10v.c:490 -#: elf32-h8300.c:555 elf32-m32r.c:1289 +#: elf32-h8300.c:555 elf32-m32r.c:1288 msgid "internal error: dangerous error" msgstr "erreur interne: erreur dangereuse" #: elf-m10200.c:475 elf-m10300.c:685 elf32-arm.h:2086 elf32-avr.c:847 -#: elf32-cris.c:1404 elf32-d10v.c:494 elf32-fr30.c:665 elf32-h8300.c:559 -#: elf32-i860.c:1060 elf32-m32r.c:1293 elf32-openrisc.c:467 elf32-v850.c:1715 -#: elf64-mmix.c:1176 +#: elf32-cris.c:1418 elf32-d10v.c:494 elf32-fr30.c:665 elf32-h8300.c:559 +#: elf32-i860.c:1060 elf32-m32r.c:1292 elf32-openrisc.c:467 elf32-v850.c:1715 +#: elf32-xstormy16.c:988 elf64-mmix.c:1176 msgid "internal error: unknown error" msgstr "erreur interne: erreur inconnue" -#: elf.c:345 +#: elf.c:343 #, c-format msgid "%s: invalid string offset %u >= %lu for section `%s'" msgstr "%s: chaîne de décalage invalide %u >= %lu pour la section `%s'" -#: elf.c:450 +#: elf.c:448 #, c-format msgid "%s: invalid SHT_GROUP entry" msgstr "%s: entrée SHT_GROUP invalide" -#: elf.c:531 +#: elf.c:529 #, c-format msgid "%s: no group info for section %s" msgstr "%s: aucune info de groupe pour la section %s" -#: elf.c:842 -msgid "\nProgram Header:\n" -msgstr "\nEn-tête de programme:\n" +#: elf.c:840 +msgid "" +"\n" +"Program Header:\n" +msgstr "" +"\n" +"En-tête de programme:\n" -#: elf.c:891 -msgid "\nDynamic Section:\n" -msgstr "\nSection dynamique:\n" +#: elf.c:889 +msgid "" +"\n" +"Dynamic Section:\n" +msgstr "" +"\n" +"Section dynamique:\n" -#: elf.c:1020 -msgid "\nVersion definitions:\n" -msgstr "\nDéfinitions des versions:\n" +#: elf.c:1018 +msgid "" +"\n" +"Version definitions:\n" +msgstr "" +"\n" +"Définitions des versions:\n" -#: elf.c:1043 -msgid "\nVersion References:\n" -msgstr "\nRéférences de version:\n" +#: elf.c:1041 +msgid "" +"\n" +"Version References:\n" +msgstr "" +"\n" +"Références de version:\n" -#: elf.c:1048 +#: elf.c:1046 #, c-format msgid " required from %s:\n" msgstr " requis par %s:\n" -#: elf.c:1675 +#: elf.c:1682 #, c-format msgid "%s: invalid link %lu for reloc section %s (index %u)" msgstr "%s: lien invalide %lu pour la section de relocalisation %s (index %u)" -#: elf.c:3289 +#: elf.c:3296 #, c-format msgid "%s: Not enough room for program headers (allocated %u, need %u)" -msgstr "%s: pas suffisamment d'espace pour les en-têtes du programme (alloué %u, besoin de %u)" +msgstr "" +"%s: pas suffisamment d'espace pour les en-têtes du programme (alloué %u, " +"besoin de %u)" -#: elf.c:3393 +#: elf.c:3400 #, c-format msgid "%s: Not enough room for program headers, try linking with -N" -msgstr "%s: pas suffisamment d'espace pour les en-têtes du programme, essayer l'option -N" +msgstr "" +"%s: pas suffisamment d'espace pour les en-têtes du programme, essayer " +"l'option -N" -#: elf.c:3518 +#: elf.c:3525 #, c-format -msgid "Error: First section in segment (%s) starts at 0x%x whereas the segment starts at 0x%x" -msgstr "Erreur: première section dans le segment (%s) débute à 0x%x alors que le segment débute à 0x%x" +msgid "" +"Error: First section in segment (%s) starts at 0x%x whereas the segment " +"starts at 0x%x" +msgstr "" +"Erreur: première section dans le segment (%s) débute à 0x%x alors que le " +"segment débute à 0x%x" -#: elf.c:3804 +#: elf.c:3811 #, c-format msgid "%s: warning: allocated section `%s' not in segment" msgstr "%s: AVERTISSEMENT: section allouée `%s' n'est pas dans le segment" -#: elf.c:4138 +#: elf.c:4142 #, c-format msgid "%s: symbol `%s' required but not present" msgstr "%s: symbole `%s' requis mais absent" -#: elf.c:4147 -#, c-format -msgid "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8lx%s\n" -msgstr "elf_symbol_from_bfd_symbol 0x%.8lx, nom = %s, no. de symbole = %d, fanions = 0x%.8lx%s\n" - -#: elf.c:4391 +#: elf.c:4395 #, c-format msgid "%s: warning: Empty loadable segment detected\n" msgstr "%s: AVERTISSEMENT: segment chargeable vide détecté\n" -#: elf.c:5804 +#: elf.c:5808 #, c-format msgid "%s: unsupported relocation type %s" msgstr "%s: type de relocalisation non supporté %s" @@ -661,72 +764,91 @@ msgstr "%s: AVERTISSEMENT: instruction Arm BLX vise la fonction Arm '%s'." #: elf32-arm.h:1420 #, c-format msgid "%s: Warning: Thumb BLX instruction targets thumb function '%s'." -msgstr "%s: AVERTISSEMENT: instruction de repérage BLX vise la function de repérage '%s'." +msgstr "" +"%s: AVERTISSEMENT: instruction de repérage BLX vise la function de repérage " +"'%s'." -#: elf32-arm.h:1904 elf32-i386.c:1776 elf32-sh.c:3133 +#: elf32-arm.h:1904 elf32-i386.c:1778 elf32-sh.c:3133 #, c-format msgid "%s(%s+0x%lx): %s relocation against SEC_MERGE section" msgstr "%s(%s+0x%lx): %s relocation vers une section SEC_MERGE" #: elf32-arm.h:1998 #, c-format -msgid "%s: warning: unresolvable relocation %d against symbol `%s' from %s section" -msgstr "%s: AVERTISSEMENT: relocalisation sans solution %d vers le symbole `%s' de la section %s" - -#: elf32-arm.h:2114 -#, c-format -msgid "Warning: Not setting interwork flag of %s since it has already been specified as non-interworking" -msgstr "AVERTISSEMENT: pas d'initialisation du fanion d'inter-réseautage %s alors qu'il a déjè été spécifié sans inter-réseautage" - -#: elf32-arm.h:2118 -#, c-format -msgid "Warning: Clearing the interwork flag of %s due to outside request" -msgstr "AVERTISSEMENT: mise à zéro du fanion d'inter-réseautage %s en raison d'une requête externe" +msgid "" +"%s: warning: unresolvable relocation %d against symbol `%s' from %s section" +msgstr "" +"%s: AVERTISSEMENT: relocalisation sans solution %d vers le symbole `%s' de " +"la section %s" #: elf32-arm.h:2166 -#, c-format -msgid "Warning: Clearing the interwork flag in %s because non-interworking code in %s has been linked with it" -msgstr "AVERTISSEMENT: mise à zéro du fanion d'inter-réseautage %s en raison du code sans inter-réseautage dans %s qui a été lié avec lui" +#, fuzzy, c-format +msgid "" +"Warning: Clearing the interworking flag of %s because non-interworking code " +"in %s has been linked with it" +msgstr "" +"AVERTISSEMENT: mise à zéro du fanion d'inter-réseautage %s en raison du code " +"sans inter-réseautage dans %s qui a été lié avec lui" #: elf32-arm.h:2261 #, c-format -msgid "Error: %s compiled for EABI version %d, whereas %s is compiled for version %d" -msgstr "Erreur: %s compilé pour une version EABI %d, alors que %s a été compilé pour la version %d" +msgid "" +"Error: %s compiled for EABI version %d, whereas %s is compiled for version %d" +msgstr "" +"Erreur: %s compilé pour une version EABI %d, alors que %s a été compilé pour " +"la version %d" #: elf32-arm.h:2275 #, c-format msgid "Error: %s compiled for APCS-%d, whereas %s is compiled for APCS-%d" -msgstr "Erreur: %s compilé pour APCS-%d, alors que %s a été compilé pour APCS-%d" +msgstr "" +"Erreur: %s compilé pour APCS-%d, alors que %s a été compilé pour APCS-%d" #: elf32-arm.h:2287 #, c-format -msgid "Error: %s passes floats in FP registers, whereas %s passes them in integer registers" -msgstr "Erreur: %s passage de valeurs en virgule flottante dans les registres FP, alors que %s les passe dans les registres entiers" +msgid "" +"Error: %s passes floats in FP registers, whereas %s passes them in integer " +"registers" +msgstr "" +"Erreur: %s passage de valeurs en virgule flottante dans les registres FP, " +"alors que %s les passe dans les registres entiers" #: elf32-arm.h:2292 #, c-format -msgid "Error: %s passes floats in integer registers, whereas %s passes them in FP registers" -msgstr "Erreur: %s passage de valeurs en virgule flottante dans les registres entiers, alors que %s les passe dans les registres FP" +msgid "" +"Error: %s passes floats in integer registers, whereas %s passes them in FP " +"registers" +msgstr "" +"Erreur: %s passage de valeurs en virgule flottante dans les registres " +"entiers, alors que %s les passe dans les registres FP" #: elf32-arm.h:2303 -#, c-format -msgid "Error: %s uses VFP instructions, whereas %s FPA instructions" -msgstr "Erreur: %s utilise les instructions VFP, alors que %s utilise les instructions FPA" +#, fuzzy, c-format +msgid "Error: %s uses VFP instructions, whereas %s uses FPA instructions" +msgstr "" +"Erreur: %s utilise les instructions VFP, alors que %s utilise les " +"instructions FPA" #: elf32-arm.h:2308 -#, c-format -msgid "Error: %s uses FPA instructions, whereas %s VFP instructions" -msgstr "Erreur: %s utilise les instructions FPA, alors que %s utilise les instructions VFP" +#, fuzzy, c-format +msgid "Error: %s uses FPA instructions, whereas %s uses VFP instructions" +msgstr "" +"Erreur: %s utilise les instructions FPA, alors que %s utilise les " +"instructions VFP" #: elf32-arm.h:2328 #, c-format msgid "Error: %s uses software FP, whereas %s uses hardware FP" -msgstr "Erreur: %s utilise le logiciel pour virgule flottante, alors que %s utilise le matériel pour virgule flottante" +msgstr "" +"Erreur: %s utilise le logiciel pour virgule flottante, alors que %s utilise " +"le matériel pour virgule flottante" #: elf32-arm.h:2333 #, c-format msgid "Error: %s uses hardware FP, whereas %s uses software FP" -msgstr "Erreur: %s utilise le matériel pour virgule flottante, alors que %s utilise le logiciel pour virgule flottante" +msgstr "" +"Erreur: %s utilise le matériel pour virgule flottante, alors que %s utilise " +"le logiciel pour virgule flottante" #: elf32-arm.h:2348 #, c-format @@ -736,11 +858,12 @@ msgstr "AVERTISSEMENT: %s supporte l'inter-r #: elf32-arm.h:2355 #, c-format msgid "Warning: %s does not support interworking, whereas %s does" -msgstr "AVERTISSEMENT: %s ne supporte pas l'inter-réseautage, contrairement à %s." +msgstr "" +"AVERTISSEMENT: %s ne supporte pas l'inter-réseautage, contrairement à %s." #. Ignore init flag - it may not be set, despite the flags field #. containing valid data. -#: elf32-arm.h:2386 elf32-cris.c:2970 elf32-m68k.c:410 elf32-mips.c:3232 +#: elf32-arm.h:2386 elf32-cris.c:2991 elf32-m68k.c:410 elf32-mips.c:3242 #, c-format msgid "private flags = %lx:" msgstr "fanions privés = %lx" @@ -817,20 +940,26 @@ msgstr " [a des points d'entr msgid "" msgstr "" -#: elf32-avr.c:843 elf32-cris.c:1400 elf32-fr30.c:661 elf32-i860.c:1056 -#: elf32-openrisc.c:463 elf32-v850.c:1699 elf64-mmix.c:1172 +#: elf32-avr.c:843 elf32-cris.c:1414 elf32-fr30.c:661 elf32-i860.c:1056 +#: elf32-openrisc.c:463 elf32-v850.c:1699 elf32-xstormy16.c:984 +#: elf64-mmix.c:1172 msgid "internal error: dangerous relocation" msgstr "erreur interne: relocalisation dangereuse" #: elf32-cris.c:949 #, c-format msgid "%s: unresolvable relocation %s against symbol `%s' from %s section" -msgstr "%s: relocalisation %s sans solution vers le symbole `%s' à partir de la section %s" +msgstr "" +"%s: relocalisation %s sans solution vers le symbole `%s' à partir de la " +"section %s" #: elf32-cris.c:1012 #, c-format -msgid "%s: No PLT nor GOT for relocation %s against symbol `%s' from %s section" -msgstr "%s: pas de relocalisation %s PLT ni GOT vers le symbole `%s' à partir de la section %s" +msgid "" +"%s: No PLT nor GOT for relocation %s against symbol `%s' from %s section" +msgstr "" +"%s: pas de relocalisation %s PLT ni GOT vers le symbole `%s' à partir de la " +"section %s" #: elf32-cris.c:1015 elf32-cris.c:1142 msgid "[whose name is lost]" @@ -838,46 +967,66 @@ msgstr "[o #: elf32-cris.c:1131 #, c-format -msgid "%s: relocation %s with non-zero addend %d against local symbol from %s section" -msgstr "%s: relocalisation %s sans zéro ajoute %d vers le symbole local à partir de la section %s" +msgid "" +"%s: relocation %s with non-zero addend %d against local symbol from %s " +"section" +msgstr "" +"%s: relocalisation %s sans zéro ajoute %d vers le symbole local à partir de " +"la section %s" #: elf32-cris.c:1138 #, c-format -msgid "%s: relocation %s with non-zero addend %d against symbol `%s' from %s section" -msgstr "%s: relocalisation %s sans zéro ajoute %d vers le symbole `%s' à partir de la section %s" +msgid "" +"%s: relocation %s with non-zero addend %d against symbol `%s' from %s section" +msgstr "" +"%s: relocalisation %s sans zéro ajoute %d vers le symbole `%s' à partir de " +"la section %s" #: elf32-cris.c:1156 #, c-format -msgid "%s: relocation %s is not allowed for global symbol: `%s' from %s section" -msgstr "%s: relocalisation %s n'est pas permise pour le symbole global: `%s' de la section %s." +msgid "" +"%s: relocation %s is not allowed for global symbol: `%s' from %s section" +msgstr "" +"%s: relocalisation %s n'est pas permise pour le symbole global: `%s' de la " +"section %s." -#: elf32-cris.c:1275 +#: elf32-cris.c:1171 +#, fuzzy, c-format +msgid "%s: relocation %s in section %s with no GOT created" +msgstr "%s: relocalisations dans la section `%s', mais n,a aucun contenu" + +#: elf32-cris.c:1289 #, c-format msgid "%s: Internal inconsistency; no relocation section %s" msgstr "%s: inconsistence interne; pas de section de relocalisation %s" -#: elf32-cris.c:2508 +#: elf32-cris.c:2523 #, c-format msgid "" "%s, section %s:\n" " relocation %s should not be used in a shared object; recompile with -fPIC" msgstr "" "%s, section %s:\n" -" relocalisation %s devrait être utilisée dans un objet partagé; recompiler avec -fPIC" +" relocalisation %s devrait être utilisée dans un objet partagé; recompiler " +"avec -fPIC" -#: elf32-cris.c:2973 +#: elf32-cris.c:2994 msgid " [symbols have a _ prefix]" msgstr " [symboles sont préfixés par `_']" -#: elf32-cris.c:3012 +#: elf32-cris.c:3033 #, c-format msgid "%s: uses _-prefixed symbols, but writing file with non-prefixed symbols" -msgstr "%s: utilise _-prefixed symbols, mais avec écriture au fichier avec des symboles sans préfixes" +msgstr "" +"%s: utilise _-prefixed symbols, mais avec écriture au fichier avec des " +"symboles sans préfixes" -#: elf32-cris.c:3013 +#: elf32-cris.c:3034 #, c-format msgid "%s: uses non-prefixed symbols, but writing file with _-prefixed symbols" -msgstr "%s: utilise des symboles sans préfixes, mais avec écriture au fichier avec des symboles ayant des préfixes_-prefixed" +msgstr "" +"%s: utilise des symboles sans préfixes, mais avec écriture au fichier avec " +"des symboles ayant des préfixes_-prefixed" #: elf32-gen.c:82 elf64-gen.c:82 #, c-format @@ -889,42 +1038,51 @@ msgstr "%s: relocalisation en format ELF g msgid "%s: cannot create stub entry %s" msgstr "%s: ne peut créer l'entrée du talon %s" -#: elf32-hppa.c:937 elf32-hppa.c:3540 +#: elf32-hppa.c:937 elf32-hppa.c:3545 #, c-format msgid "%s(%s+0x%lx): cannot reach %s, recompile with -ffunction-sections" -msgstr "%s(%s+0x%lx): ne peut atteindre %s, recompiler avec -ffunction-sections" +msgstr "" +"%s(%s+0x%lx): ne peut atteindre %s, recompiler avec -ffunction-sections" #: elf32-hppa.c:1312 #, c-format -msgid "%s: relocation %s can not be used when making a shared object; recompile with -fPIC" -msgstr "%s: relocalisation de %s ne peut être utilisée lors de la création d'un objet partagé; recompiler avec -fPIC" +msgid "" +"%s: relocation %s can not be used when making a shared object; recompile " +"with -fPIC" +msgstr "" +"%s: relocalisation de %s ne peut être utilisée lors de la création d'un " +"objet partagé; recompiler avec -fPIC" #: elf32-hppa.c:1332 #, c-format -msgid "%s: relocation %s should not be used when making a shared object; recompile with -fPIC" -msgstr "%s: relocalisation %s ne doit pas être utilisée lors de la création d'un objet partagé; recompiler avec -fPIC" +msgid "" +"%s: relocation %s should not be used when making a shared object; recompile " +"with -fPIC" +msgstr "" +"%s: relocalisation %s ne doit pas être utilisée lors de la création d'un " +"objet partagé; recompiler avec -fPIC" #: elf32-hppa.c:1525 #, c-format msgid "Could not find relocation section for %s" msgstr "Ne peut repérer la section de relocalisation pour %s" -#: elf32-hppa.c:2862 +#: elf32-hppa.c:2867 #, c-format msgid "%s: duplicate export stub %s" msgstr "%s: talon d'exportation en double %s" -#: elf32-hppa.c:3424 +#: elf32-hppa.c:3429 #, c-format msgid "%s(%s+0x%lx): fixing %s" msgstr "%s(%s+0x%lx): corrigeant %s" -#: elf32-hppa.c:4064 +#: elf32-hppa.c:4069 #, c-format msgid "%s(%s+0x%lx): cannot handle %s for %s" msgstr "%s(%s+0x%lx): ne traiter %s pour %s" -#: elf32-hppa.c:4403 +#: elf32-hppa.c:4408 msgid ".got section not immediately after .plt section" msgstr "section .got pas immédiatement après la section .plt" @@ -938,50 +1096,51 @@ msgstr "%s: type de relocalisation invalide %d" msgid "%s: bad symbol index: %d" msgstr "%s: symbole index erroné: %d" -#: elf32-i386.c:863 elf32-s390.c:790 elf64-ppc.c:2085 elf64-s390.c:759 +#: elf32-i386.c:863 elf32-s390.c:790 elf64-ppc.c:2198 elf64-s390.c:759 #, c-format msgid "%s: bad relocation section name `%s'" msgstr "%s: nom de section de relocalisation erroné `%s'" -#: elf32-i386.c:2067 elf32-s390.c:1949 elf64-ppc.c:3908 elf64-s390.c:1953 +#: elf32-i386.c:2069 elf32-s390.c:1951 elf64-ppc.c:4124 elf64-s390.c:1955 #, c-format msgid "%s(%s+0x%lx): unresolvable relocation against symbol `%s'" msgstr "%s(%s+0x%lx): relocalisation sans solution vers le symbole `%s'" -#: elf32-i386.c:2105 elf32-s390.c:1987 elf64-s390.c:1991 +#: elf32-i386.c:2107 elf32-s390.c:1989 elf64-s390.c:1993 #, c-format msgid "%s(%s+0x%lx): reloc against `%s': error %d" msgstr "%s(%s+0x%lx): relocalisation vers `%s': erreur %d" -#: elf32-m32r.c:924 +#: elf32-m32r.c:923 msgid "SDA relocation when _SDA_BASE_ not defined" msgstr "relocalisation SDA alors que _SDA_BASE_ n'est pas définie" -#: elf32-ia64.c:3538 elf32-m32r.c:1008 elf32-ppc.c:2930 elf64-ia64.c:3538 +#: elf32-ia64.c:3537 elf32-m32r.c:1007 elf32-ppc.c:2930 elf64-ia64.c:3537 #, c-format msgid "%s: unknown relocation type %d" msgstr "%s: type de relocalisation inconnu %d" -#: elf32-m32r.c:1224 +#: elf32-m32r.c:1223 #, c-format msgid "%s: The target (%s) of an %s relocation is in the wrong section (%s)" -msgstr "%s: la cible (%s) de la relocalisation %s est dans la mauvaise section (%s)" +msgstr "" +"%s: la cible (%s) de la relocalisation %s est dans la mauvaise section (%s)" -#: elf32-m32r.c:2001 +#: elf32-m32r.c:2000 #, c-format msgid "%s: Instruction set mismatch with previous modules" msgstr "%s: jeu d'instructions ne concorde par avec les modules précédents" -#: elf32-m32r.c:2024 +#: elf32-m32r.c:2023 #, c-format msgid "private flags = %lx" msgstr "fanions privés = %lx" -#: elf32-m32r.c:2029 +#: elf32-m32r.c:2028 msgid ": m32r instructions" msgstr ": instructions m32r" -#: elf32-m32r.c:2030 +#: elf32-m32r.c:2029 msgid ": m32rx instructions" msgstr ": instruction m32rx" @@ -999,154 +1158,170 @@ msgstr "%s: relocalisation %s (%d) n'est pas couramment support msgid "%s: Unknown relocation type %d\n" msgstr "%s: type de relocalisation inconnue %d\n" -#: elf32-mips.c:2146 elf64-mips.c:1972 +#: elf32-mips.c:2156 elf64-mips.c:1972 msgid "32bits gp relative relocation occurs for an external symbol" msgstr "relocalisation relative gp 32bits est survenue pour un symbole externe" -#: elf32-mips.c:2295 +#: elf32-mips.c:2305 #, c-format msgid "Linking mips16 objects into %s format is not supported" msgstr "Édition de liens d'objets mips16 dans le format %s n'est pas supporté" -#: elf32-mips.c:3119 +#: elf32-mips.c:3129 #, c-format msgid "%s: linking PIC files with non-PIC files" msgstr "%s: édition de liens des fichiers PIC avec des fichiers non PIC" -#: elf32-mips.c:3129 +#: elf32-mips.c:3139 #, c-format msgid "%s: linking abicalls files with non-abicalls files" -msgstr "%s: édition de liens des fichier abicalls avec des fichiers non abicalls" +msgstr "" +"%s: édition de liens des fichier abicalls avec des fichiers non abicalls" -#: elf32-mips.c:3158 +#: elf32-mips.c:3168 #, c-format msgid "%s: ISA mismatch (-mips%d) with previous modules (-mips%d)" -msgstr "%s: ISA ne concorde pas (-mips%d) avec les modules précédents (-mips%d)" +msgstr "" +"%s: ISA ne concorde pas (-mips%d) avec les modules précédents (-mips%d)" -#: elf32-mips.c:3167 +#: elf32-mips.c:3177 #, c-format msgid "%s: ISA mismatch (%d) with previous modules (%d)" msgstr "%s: ISA ne concorde pas (%d) avec les modules précédents (%d)" -#: elf32-mips.c:3190 +#: elf32-mips.c:3200 #, c-format msgid "%s: ABI mismatch: linking %s module with previous %s modules" -msgstr "%s: ABI ne concorde pas: édition de lien du module %s avec les modules précédents %s" +msgstr "" +"%s: ABI ne concorde pas: édition de lien du module %s avec les modules " +"précédents %s" -#: elf32-mips.c:3204 elf32-ppc.c:1470 elf64-ppc.c:1538 elf64-sparc.c:3033 +#: elf32-mips.c:3214 elf32-ppc.c:1470 elf64-ppc.c:1556 elf64-sparc.c:3027 #, c-format msgid "%s: uses different e_flags (0x%lx) fields than previous modules (0x%lx)" -msgstr "%s: utilise differents champs e_flags (0x%lx) que les modules précédents (0x%lx)" +msgstr "" +"%s: utilise differents champs e_flags (0x%lx) que les modules précédents (0x%" +"lx)" -#: elf32-mips.c:3235 +#: elf32-mips.c:3245 msgid " [abi=O32]" msgstr " [abi=O32]" -#: elf32-mips.c:3237 +#: elf32-mips.c:3247 msgid " [abi=O64]" msgstr " [abi=O64]" -#: elf32-mips.c:3239 +#: elf32-mips.c:3249 msgid " [abi=EABI32]" msgstr " [abi=EABI32]" -#: elf32-mips.c:3241 +#: elf32-mips.c:3251 msgid " [abi=EABI64]" msgstr " [abi=EABI64]" -#: elf32-mips.c:3243 +#: elf32-mips.c:3253 msgid " [abi unknown]" msgstr " [abi inconnu]" -#: elf32-mips.c:3245 +#: elf32-mips.c:3255 msgid " [abi=N32]" msgstr " [abi=N32]" -#: elf32-mips.c:3247 +#: elf32-mips.c:3257 msgid " [abi=64]" msgstr " [abi=64]" -#: elf32-mips.c:3249 +#: elf32-mips.c:3259 msgid " [no abi set]" msgstr " [aucun jeu abi]" -#: elf32-mips.c:3252 +#: elf32-mips.c:3262 msgid " [mips1]" msgstr " [mips1]" -#: elf32-mips.c:3254 +#: elf32-mips.c:3264 msgid " [mips2]" msgstr " [mips2]" -#: elf32-mips.c:3256 +#: elf32-mips.c:3266 msgid " [mips3]" msgstr " [mips3]" -#: elf32-mips.c:3258 +#: elf32-mips.c:3268 msgid " [mips4]" msgstr " [mips4]" -#: elf32-mips.c:3260 +#: elf32-mips.c:3270 msgid " [mips5]" msgstr " [mips5]" -#: elf32-mips.c:3262 +#: elf32-mips.c:3272 msgid " [mips32]" msgstr " [mips32]" -#: elf32-mips.c:3264 +#: elf32-mips.c:3274 msgid " [mips64]" msgstr " [mips64]" -#: elf32-mips.c:3266 +#: elf32-mips.c:3276 msgid " [unknown ISA]" msgstr " [ISA inconnu]" -#: elf32-mips.c:3269 +#: elf32-mips.c:3279 msgid " [32bitmode]" msgstr " [mode 32 bits]" -#: elf32-mips.c:3271 +#: elf32-mips.c:3281 msgid " [not 32bitmode]" msgstr " [aucun mode 32 bits]" -#: elf32-mips.c:4947 +#: elf32-mips.c:4954 msgid "static procedure (no name)" msgstr "procédure statique (sans name)" -#: elf32-mips.c:5565 elf64-mips.c:6694 +#: elf32-mips.c:5572 elf64-mips.c:6694 #, c-format msgid "%s: illegal section name `%s'" msgstr "%s: nom illégal de section `%s'" -#: elf32-mips.c:6132 elf64-mips.c:3150 +#: elf32-mips.c:6139 elf64-mips.c:3150 msgid "not enough GOT space for local GOT entries" msgstr "pas suffisamment d'espace GOT pour les entrées locales GOT" -#: elf32-mips.c:7238 elf64-mips.c:4203 +#: elf32-mips.c:7250 elf64-mips.c:4203 #, c-format msgid "%s: %s+0x%lx: jump to stub routine which is not jal" -msgstr "%s: %s+0x%lx: saut vers la routine dans la partie du talon (stub) qui n'est pas jal" +msgstr "" +"%s: %s+0x%lx: saut vers la routine dans la partie du talon (stub) qui n'est " +"pas jal" -#: elf32-mips.c:8237 elf64-mips.c:5891 +#: elf32-mips.c:8259 elf64-mips.c:5891 #, c-format msgid "%s: Malformed reloc detected for section %s" msgstr "%s: relocalisation mal composée détectée dans la section %s" -#: elf32-mips.c:8315 elf64-mips.c:5969 +#: elf32-mips.c:8337 elf64-mips.c:5969 #, c-format msgid "%s: CALL16 reloc at 0x%lx not against global symbol" -msgstr "%s: appel CALL16 de relocalisation à 0x%lx qui n'est pas pourun symbole global" +msgstr "" +"%s: appel CALL16 de relocalisation à 0x%lx qui n'est pas pourun symbole " +"global" -#: elf32-ppc.c:1436 elf64-ppc.c:1503 +#: elf32-ppc.c:1436 elf64-ppc.c:1521 #, c-format -msgid "%s: compiled with -mrelocatable and linked with modules compiled normally" -msgstr "%s: compilé avec -mrelocatable et fait l'édition de lien avec les modules compilés normalement" +msgid "" +"%s: compiled with -mrelocatable and linked with modules compiled normally" +msgstr "" +"%s: compilé avec -mrelocatable et fait l'édition de lien avec les modules " +"compilés normalement" -#: elf32-ppc.c:1444 elf64-ppc.c:1511 +#: elf32-ppc.c:1444 elf64-ppc.c:1529 #, c-format -msgid "%s: compiled normally and linked with modules compiled with -mrelocatable" -msgstr "%s: compilé normalement et fait l'édition de lien avec les modules compilés avec -mrelocatable" +msgid "" +"%s: compiled normally and linked with modules compiled with -mrelocatable" +msgstr "" +"%s: compilé normalement et fait l'édition de lien avec les modules compilés " +"avec -mrelocatable" #: elf32-ppc.c:1568 #, c-format @@ -1156,17 +1331,22 @@ msgstr "%s: type d' #: elf32-ppc.c:2218 elf32-ppc.c:2252 elf32-ppc.c:2287 #, c-format msgid "%s: relocation %s cannot be used when making a shared object" -msgstr "%s: relocalisation %s ne peut être utilisée lors de la création d'un objet partagé" +msgstr "" +"%s: relocalisation %s ne peut être utilisée lors de la création d'un objet " +"partagé" -#: elf32-ppc.c:3097 elf64-ppc.c:3500 +#: elf32-ppc.c:3097 elf64-ppc.c:3716 #, c-format msgid "%s: unknown relocation type %d for symbol %s" msgstr "%s: type de relocalisation inconnue %d pour le symbole %s" #: elf32-ppc.c:3452 elf32-ppc.c:3473 elf32-ppc.c:3523 #, c-format -msgid "%s: The target (%s) of a %s relocation is in the wrong output section (%s)" -msgstr "%s: la cible (%s) d'une relocalisation %s est dans la mauvaise section de sortie (%s)" +msgid "" +"%s: The target (%s) of a %s relocation is in the wrong output section (%s)" +msgstr "" +"%s: la cible (%s) d'une relocalisation %s est dans la mauvaise section de " +"sortie (%s)" #: elf32-ppc.c:3589 #, c-format @@ -1201,7 +1381,9 @@ msgstr "%s: 0x%lx: AVERTISSEMENT: symbole dans une section inattendue" #: elf32-sh.c:1323 #, c-format msgid "%s: 0x%lx: warning: could not find expected COUNT reloc" -msgstr "%s: 0x%lx: AVERTISSEMENT: ne peut repérer le compteur de relocalisation attendu" +msgstr "" +"%s: 0x%lx: AVERTISSEMENT: ne peut repérer le compteur de relocalisation " +"attendu" #: elf32-sh.c:1332 #, c-format @@ -1211,14 +1393,17 @@ msgstr "%s: 0x%lx: AVERTISSEMENT: mauvais d #: elf32-sh.c:1741 elf32-sh.c:2132 #, c-format msgid "%s: 0x%lx: fatal: reloc overflow while relaxing" -msgstr "%s: 0x%lx: erreur fatale: débordement de relocalisation lors de relâches" +msgstr "" +"%s: 0x%lx: erreur fatale: débordement de relocalisation lors de relâches" #: elf32-sh.c:3267 #, c-format msgid "%s: 0x%lx: fatal: unaligned branch target for relax-support relocation" -msgstr "%s: 0x%lx: fatal: cible de branchement non aligné pour une relocalisatin de type relax-support" +msgstr "" +"%s: 0x%lx: fatal: cible de branchement non aligné pour une relocalisatin de " +"type relax-support" -#: elf32-sparc.c:1554 elf64-sparc.c:2286 +#: elf32-sparc.c:1554 elf64-sparc.c:2280 #, c-format msgid "%s: probably compiled without -fPIC?" msgstr "%s: probablement compilé sans -fPIC?" @@ -1242,23 +1427,35 @@ msgstr "Variable `%s' ne peut occuper de multiples petites r #: elf32-v850.c:685 #, c-format -msgid "Variable `%s' can only be in one of the small, zero, and tiny data regions" -msgstr "Variable `%s' peut seulement être dans une région de données petite, zéro ou minuscule" +msgid "" +"Variable `%s' can only be in one of the small, zero, and tiny data regions" +msgstr "" +"Variable `%s' peut seulement être dans une région de données petite, zéro ou " +"minuscule" #: elf32-v850.c:688 #, c-format -msgid "Variable `%s' cannot be in both small and zero data regions simultaneously" -msgstr "Variable `%s' ne peut être dans une région de données petite et zéro à la fois" +msgid "" +"Variable `%s' cannot be in both small and zero data regions simultaneously" +msgstr "" +"Variable `%s' ne peut être dans une région de données petite et zéro à la " +"fois" #: elf32-v850.c:691 #, c-format -msgid "Variable `%s' cannot be in both small and tiny data regions simultaneously" -msgstr "Variable `%s' ne peut être dans une région de données petite et minuscule zéro à la fois" +msgid "" +"Variable `%s' cannot be in both small and tiny data regions simultaneously" +msgstr "" +"Variable `%s' ne peut être dans une région de données petite et minuscule " +"zéro à la fois" #: elf32-v850.c:694 #, c-format -msgid "Variable `%s' cannot be in both zero and tiny data regions simultaneously" -msgstr "Variable `%s' ne peut être dans une région de données zéro et minuscule zéro à la fois" +msgid "" +"Variable `%s' cannot be in both zero and tiny data regions simultaneously" +msgstr "" +"Variable `%s' ne peut être dans une région de données zéro et minuscule zéro " +"à la fois" #: elf32-v850.c:1072 msgid "FAILED to find previous HI16 reloc\n" @@ -1298,6 +1495,10 @@ msgstr "architecture v850e" msgid "v850ea architecture" msgstr "architecture v850ea" +#: elf32-ia64.c:2247 elf32-xstormy16.c:414 elf64-ia64.c:2247 +msgid "non-zero addend in @fptr reloc" +msgstr "ajout non null dans la relocalisation @fptr" + #: elf64-alpha.c:858 msgid "GPDISP relocation did not find ldah and lda instructions" msgstr "la relocalisation GPDISP n'a pas repéré les instructions ldah et lda" @@ -1317,63 +1518,75 @@ msgstr "%s: relocalisation relative gp vers le symbole dynamique %s" msgid "stub entry for %s cannot load .plt, dp offset = %ld" msgstr "entrée du talon pour %s ne peut charger .plt, décalage dp = %ld" -#: elf64-mmix.c:1268 +#: elf64-mmix.c:1271 +#, fuzzy, c-format +msgid "%s: register relocation against non-register symbol: (unknown) in %s" +msgstr "" +"%s: relocalisation de registre vers le symbole non-registre: %s dans %s" + +#: elf64-mmix.c:1276 #, c-format msgid "%s: register relocation against non-register symbol: %s in %s" -msgstr "%s: relocalisation de registre vers le symbole non-registre: %s dans %s" - -#: elf64-mmix.c:1270 -msgid "(unknown)" -msgstr "(inconnu)" +msgstr "" +"%s: relocalisation de registre vers le symbole non-registre: %s dans %s" -#: elf64-mmix.c:1305 +#: elf64-mmix.c:1312 #, c-format msgid "%s: directive LOCAL valid only with a register or absolute value" -msgstr "%s: directive LOCAL valide seulement avec un registre ou une valeur absolue" +msgstr "" +"%s: directive LOCAL valide seulement avec un registre ou une valeur absolue" -#: elf64-mmix.c:1333 +#: elf64-mmix.c:1340 #, c-format -msgid "%s: LOCAL directive: Register $%ld is not a local register. First global register is $%ld." -msgstr "%s: directive LOCAL: registre $%ld n'est pas un registre local. Premier registre global est $%ld." +msgid "" +"%s: LOCAL directive: Register $%ld is not a local register. First global " +"register is $%ld." +msgstr "" +"%s: directive LOCAL: registre $%ld n'est pas un registre local. Premier " +"registre global est $%ld." -#: elf64-mmix.c:1609 +#: elf64-mmix.c:1615 #, c-format -msgid "%s: Error: multiple definition of `%s'; start of %s is set in a earlier linked file\n" -msgstr "%s: erreur: multiple définitions de `%s'; début de %s est initialisé dans un précédent fichier lié\n" +msgid "" +"%s: Error: multiple definition of `%s'; start of %s is set in a earlier " +"linked file\n" +msgstr "" +"%s: erreur: multiple définitions de `%s'; début de %s est initialisé dans un " +"précédent fichier lié\n" -#: elf64-mmix.c:1668 +#: elf64-mmix.c:1674 msgid "Register section has contents\n" msgstr "Registre de section contient\n" -#: elf64-ppc.c:1466 libbfd.c:1436 +#: elf64-ppc.c:1484 libbfd.c:1436 #, c-format msgid "%s: compiled for a big endian system and target is little endian" msgstr "" "%s: compilé pour un système à octets de poids fort alors que la cible\n" "est un système à octets de poids faible" -#: elf64-ppc.c:1468 libbfd.c:1438 +#: elf64-ppc.c:1486 libbfd.c:1438 #, c-format msgid "%s: compiled for a little endian system and target is big endian" msgstr "" "%s: compilé pour un système à octets de poids faible alors que la cible\n" "est un système à octets de poids fort" -#: elf64-ppc.c:3166 -#, c-format -msgid "linkage table overflow against `%s'" +#: elf64-ppc.c:3350 +#, fuzzy, c-format +msgid "linkage table error against `%s'" msgstr "débordement de la table de liaison vers `%s'" -#: elf64-ppc.c:3244 +#: elf64-ppc.c:3432 msgid "stub section size doesn't match calculated size" msgstr "taille de la section du talon ne concorde pas avec la taille calculée" -#: elf64-ppc.c:3845 +#: elf64-ppc.c:4061 #, c-format msgid "%s: Relocation %s is not supported for symbol %s." msgstr "%s: relocalisation %s n'est pas supportée pour le symbole %s." -#: elf64-ppc.c:3889 +#: elf64-ppc.c:4105 #, c-format msgid "%s: error: relocation %s not a multiple of 4" msgstr "%s: erreur: relocalisation %s n'est pas un multiple de 4" @@ -1386,32 +1599,39 @@ msgstr "%s: check_relocs: type de relocalisation non trait #: elf64-sparc.c:1314 #, c-format msgid "%s: Only registers %%g[2367] can be declared using STT_REGISTER" -msgstr "%s: seuls les registres %%g[2367] peuvent être déclarés en utilisant les registres STT_REGISTER" +msgstr "" +"%s: seuls les registres %%g[2367] peuvent être déclarés en utilisant les " +"registres STT_REGISTER" #: elf64-sparc.c:1334 -#, c-format -msgid "Register %%g%d used incompatibly: %s in %s" +#, fuzzy, c-format +msgid "Register %%g%d used incompatibly: %s in %s, previously %s in %s" msgstr "Registre %%g%d utilisé de manière incompatible: %s dans %s" -#: elf64-sparc.c:1338 elf64-sparc.c:1362 elf64-sparc.c:1411 -#, c-format -msgid " previously %s in %s" -msgstr " précédemment %s dans %s" +#: elf64-sparc.c:1357 +#, fuzzy, c-format +msgid "Symbol `%s' has differing types: REGISTER in %s, previously %s in %s" +msgstr "" +"Symbole `%s' a des types qui diffèrent: précédemment %s, ENREGISTRÉ dans %s" -#: elf64-sparc.c:1359 elf64-sparc.c:1408 -#, c-format -msgid "Symbol `%s' has differing types: %s in %s" -msgstr "Symbole `%s' a des types qui diffèrent: %s dans %s" +#: elf64-sparc.c:1404 +#, fuzzy, c-format +msgid "Symbol `%s' has differing types: %s in %s, previously REGISTER in %s" +msgstr "" +"Symbole `%s' a des types qui diffèrent: précédemment %s, ENREGISTRÉ dans %s" -#: elf64-sparc.c:3014 +#: elf64-sparc.c:3008 #, c-format msgid "%s: linking UltraSPARC specific with HAL specific code" -msgstr "%s: édition de liens spécifiques pour UltraSPARC avec du code spécifique HAL" +msgstr "" +"%s: édition de liens spécifiques pour UltraSPARC avec du code spécifique HAL" #: elfcode.h:1218 #, c-format msgid "%s: version count (%ld) does not match symbol count (%ld)" -msgstr "%s: compteur de version (%ld) ne concorde pas avec le symbole du compteur (%ld)" +msgstr "" +"%s: compteur de version (%ld) ne concorde pas avec le symbole du compteur (%" +"ld)" #: elflink.c:434 #, c-format @@ -1438,38 +1658,41 @@ msgstr "%s: %s: version requise invalide %d" msgid "Warning: size of symbol `%s' changed from %lu to %lu in %s" msgstr "AVERTISSEMENT: taille du symbole `%s' a changé de %lu à %lu dans %s" -#: elflink.h:4020 +#: elflink.h:4014 #, c-format msgid "warning: type and size of dynamic symbol `%s' are not defined" -msgstr "AVERTISSEMENT: type et taille du symbole dynamique `%s' ne sont pas définis" +msgstr "" +"AVERTISSEMENT: type et taille du symbole dynamique `%s' ne sont pas définis" -#: elflink.h:4329 +#: elflink.h:4320 #, c-format msgid "%s: undefined versioned symbol name %s" msgstr "%s: nom symbole avec version indéfinie %s" -#: elflink.h:4559 elflink.h:4567 elflink.h:6218 elflink.h:7295 +#: elflink.h:4544 elflink.h:4552 elflink.h:6203 elflink.h:7280 msgid "Error: out of memory" msgstr "Erreur: mémoire épuisée" -#: elflink.h:4729 +#: elflink.h:4714 msgid "Not enough memory to sort relocations" msgstr "Pas assez de mémoire pour effectuer le trie des relocalisations" -#: elflink.h:5995 +#: elflink.h:5980 #, c-format msgid "%s: could not find output section %s for input section %s" -msgstr "%s: ne peut repérer la section de sortie %s pour la section d'entrée %s" +msgstr "" +"%s: ne peut repérer la section de sortie %s pour la section d'entrée %s" -#: elflink.h:6568 +#: elflink.h:6553 msgid "warning: relocation against removed section; zeroing" -msgstr "AVERTISSEMENT: relocalisation vers une section qui a été enlevée; mise à zéro" +msgstr "" +"AVERTISSEMENT: relocalisation vers une section qui a été enlevée; mise à zéro" -#: elflink.h:6598 +#: elflink.h:6583 msgid "warning: relocation against removed section" msgstr "AVERTISSEMENT: relocalisation vers une section enlevée" -#: elflink.h:6611 +#: elflink.h:6596 #, c-format msgid "local symbols in discarded section %s" msgstr "symboles locaux de la section mise à l'écart %s" @@ -1505,8 +1728,8 @@ msgid "%s: unrecognized symbol `%s' flags 0x%x" msgstr "%s: symbole non reconnue `%s' fanions 0x%x" #: ieee.c:877 -#, c-format -msgid "%s: unimplemented ATI record %u for symbol %u" +#, fuzzy, c-format +msgid "%s: unimplemented ATI record %u for symbol %u" msgstr "%s: enregistrement ATI non implanté %u pour le symbole %u" #: ieee.c:902 @@ -1527,27 +1750,37 @@ msgstr "%s:%d: caract #: ihex.c:368 #, c-format msgid "%s:%u: bad checksum in Intel Hex file (expected %u, found %u)" -msgstr "%s:%u: somme de contrôle erronée dans le fichier Intel hexadécimal (attendu %u, obtenu %u)" +msgstr "" +"%s:%u: somme de contrôle erronée dans le fichier Intel hexadécimal (attendu %" +"u, obtenu %u)" #: ihex.c:422 #, c-format msgid "%s:%u: bad extended address record length in Intel Hex file" -msgstr "%s:%u: longueur erronée de l'enregistrement d'adresse étendue dans le fichier Intel hexadécimal" +msgstr "" +"%s:%u: longueur erronée de l'enregistrement d'adresse étendue dans le " +"fichier Intel hexadécimal" #: ihex.c:439 #, c-format msgid "%s:%u: bad extended start address length in Intel Hex file" -msgstr "%s:%u: longueur erronée d'adresse étendue de début dans le fichier Intel hexadécimal" +msgstr "" +"%s:%u: longueur erronée d'adresse étendue de début dans le fichier Intel " +"hexadécimal" #: ihex.c:456 #, c-format msgid "%s:%u: bad extended linear address record length in Intel Hex file" -msgstr "%s:%u: longueur erronée de l'enregistrement d'adresse étendue linéaire dans le fichier Intel hexadécimal" +msgstr "" +"%s:%u: longueur erronée de l'enregistrement d'adresse étendue linéaire dans " +"le fichier Intel hexadécimal" #: ihex.c:473 #, c-format msgid "%s:%u: bad extended linear start address length in Intel Hex file" -msgstr "%s:%u: longueur erronée d'adresse étendue linéraire de début dans le fichier Intel hexadécimal" +msgstr "" +"%s:%u: longueur erronée d'adresse étendue linéraire de début dans le fichier " +"Intel hexadécimal" #: ihex.c:490 #, c-format @@ -1565,8 +1798,8 @@ msgid "%s: bad section length in ihex_read_section" msgstr "%s: longuer erronée de section dans ihex_read_section" #: ihex.c:863 -#, c-format -msgid "%s: address 0x%s out of range for Intex Hex file" +#, fuzzy, c-format +msgid "%s: address 0x%s out of range for Intel Hex file" msgstr "%s: adresse 0x%s hors gamme pour le fichier Intel hexadécimal" #: libbfd.c:492 @@ -1578,16 +1811,16 @@ msgstr "pas de table de projection: donn msgid "not mapping: env var not set\n" msgstr "pas de table de projection: variable d'environnement pas initialisée\n" -#: libbfd.c:1463 -#, c-format -msgid "Deprecated %s called" -msgstr "%s appel déprécié" - -#: libbfd.c:1465 -#, c-format -msgid " at %s line %d in %s\n" +#: libbfd.c:1467 +#, fuzzy, c-format +msgid "Deprecated %s called at %s line %d in %s\n" msgstr " à %s ligne %d dans %s\n" +#: libbfd.c:1470 +#, fuzzy, c-format +msgid "Deprecated %s called\n" +msgstr "%s appel déprécié" + #: linker.c:1849 #, c-format msgid "%s: indirect symbol `%s' to `%s' is a loop" @@ -1596,7 +1829,8 @@ msgstr "%s: symbole indirect `%s' vers `%s' est une boucle" #: linker.c:2745 #, c-format msgid "Attempt to do relocateable link with %s input and %s output" -msgstr "Tentative de relocalisation d'un lien avec %s à l'entrée et %s à la sortie" +msgstr "" +"Tentative de relocalisation d'un lien avec %s à l'entrée et %s à la sortie" #: merge.c:897 #, c-format @@ -1616,12 +1850,18 @@ msgstr "%s: pas de corps pour allouer un symbole %d octets de longueur\n" #: mmo.c:1190 #, c-format msgid "%s: invalid mmo file: initialization value for $255 is not `Main'\n" -msgstr "%s: fichier mmo invalide: valeur d'initialisation pour $255 n'est pas `Main'\n" +msgstr "" +"%s: fichier mmo invalide: valeur d'initialisation pour $255 n'est pas " +"`Main'\n" #: mmo.c:1336 #, c-format -msgid "%s: unsupported wide character sequence 0x%02X 0x%02X after symbol name starting with `%s'\n" -msgstr "%s: séquence de caractères large 0x%02X 0x%02X non supportée après le nom de symbole débutant avec `%s'\n" +msgid "" +"%s: unsupported wide character sequence 0x%02X 0x%02X after symbol name " +"starting with `%s'\n" +msgstr "" +"%s: séquence de caractères large 0x%02X 0x%02X non supportée après le nom de " +"symbole débutant avec `%s'\n" #: mmo.c:1571 #, c-format @@ -1631,62 +1871,90 @@ msgstr "%s: fichier mmo invalide: lopcode non support #: mmo.c:1581 #, c-format msgid "%s: invalid mmo file: expected YZ = 1 got YZ = %d for lop_quote\n" -msgstr "%s: fichier mmo invalide: attendu YZ = 1 obtenu YZ = %d pour lop_quote\n" +msgstr "" +"%s: fichier mmo invalide: attendu YZ = 1 obtenu YZ = %d pour lop_quote\n" #: mmo.c:1617 #, c-format msgid "%s: invalid mmo file: expected z = 1 or z = 2, got z = %d for lop_loc\n" -msgstr "%s: fichier mmo invalide: attendu z = 1 ou z = 2, obtenu z = %d pour lop_loc\n" +msgstr "" +"%s: fichier mmo invalide: attendu z = 1 ou z = 2, obtenu z = %d pour " +"lop_loc\n" #: mmo.c:1663 #, c-format -msgid "%s: invalid mmo file: expected z = 1 or z = 2, got z = %d for lop_fixo\n" -msgstr "%s: fichier mmo invalide: attendu z = 1 ou z = 2, obtenu z = %d pour lop_fixo\n" +msgid "" +"%s: invalid mmo file: expected z = 1 or z = 2, got z = %d for lop_fixo\n" +msgstr "" +"%s: fichier mmo invalide: attendu z = 1 ou z = 2, obtenu z = %d pour " +"lop_fixo\n" #: mmo.c:1702 #, c-format msgid "%s: invalid mmo file: expected y = 0, got y = %d for lop_fixrx\n" -msgstr "%s: fichier mmo invalide: attendu y = 0, obtenu y = %d pour lop_fixrx\n" +msgstr "" +"%s: fichier mmo invalide: attendu y = 0, obtenu y = %d pour lop_fixrx\n" #: mmo.c:1711 #, c-format -msgid "%s: invalid mmo file: expected z = 16 or z = 24, got z = %d for lop_fixrx\n" -msgstr "%s: fichier mmo invalide: attendu z = 16 ou z = 24, obtenu z = %d pour lop_fixrx\n" +msgid "" +"%s: invalid mmo file: expected z = 16 or z = 24, got z = %d for lop_fixrx\n" +msgstr "" +"%s: fichier mmo invalide: attendu z = 16 ou z = 24, obtenu z = %d pour " +"lop_fixrx\n" #: mmo.c:1734 #, c-format -msgid "%s: invalid mmo file: leading byte of operand word must be 0 or 1, got %d for lop_fixrx\n" -msgstr "%s: fichier mmo invalide: octet de tête du mot de l'opérande doit être 0 ou 1, obtenu %d pour lop_fixrx\n" +msgid "" +"%s: invalid mmo file: leading byte of operand word must be 0 or 1, got %d " +"for lop_fixrx\n" +msgstr "" +"%s: fichier mmo invalide: octet de tête du mot de l'opérande doit être 0 ou " +"1, obtenu %d pour lop_fixrx\n" #: mmo.c:1757 #, c-format msgid "%s: cannot allocate file name for file number %d, %d bytes\n" -msgstr "%s: ne allouer un nom de ficheir pour le no. de fichier %d, %d octets\n" +msgstr "" +"%s: ne allouer un nom de ficheir pour le no. de fichier %d, %d octets\n" #: mmo.c:1777 #, c-format -msgid "%s: invalid mmo file: file number %d `%s', was already entered as `%s'\n" -msgstr "%s: fichier mmo invalide: no. de fichier %d `%s', a déjà été entré comme `%s'\n" +msgid "" +"%s: invalid mmo file: file number %d `%s', was already entered as `%s'\n" +msgstr "" +"%s: fichier mmo invalide: no. de fichier %d `%s', a déjà été entré comme `%" +"s'\n" #: mmo.c:1790 #, c-format -msgid "%s: invalid mmo file: file name for number %d was not specified before use\n" -msgstr "%s: fichier mmo invalide: nom de fichier %d n'a pas été spécifié avant son utilisation\n" +msgid "" +"%s: invalid mmo file: file name for number %d was not specified before use\n" +msgstr "" +"%s: fichier mmo invalide: nom de fichier %d n'a pas été spécifié avant son " +"utilisation\n" #: mmo.c:1896 #, c-format -msgid "%s: invalid mmo file: fields y and z of lop_stab non-zero, y: %d, z: %d\n" -msgstr "%s: fichier mmo invalide: champs y et z de lop_stab non null, y: %d, z: %d\n" +msgid "" +"%s: invalid mmo file: fields y and z of lop_stab non-zero, y: %d, z: %d\n" +msgstr "" +"%s: fichier mmo invalide: champs y et z de lop_stab non null, y: %d, z: %d\n" #: mmo.c:1932 #, c-format msgid "%s: invalid mmo file: lop_end not last item in file\n" -msgstr "%s: fichier mmo invalide: lop_end N,est pas le dernier item dans le fichier\n" +msgstr "" +"%s: fichier mmo invalide: lop_end N,est pas le dernier item dans le fichier\n" #: mmo.c:1945 #, c-format -msgid "%s: invalid mmo file: YZ of lop_end (%ld) not equal to the number of tetras to the preceding lop_stab (%ld)\n" -msgstr "%s: fichier mmo invalide: YZ de lop_end (%ld) n'est pas égal au nombre de teras du lop_stab précédent (%ld)\n" +msgid "" +"%s: invalid mmo file: YZ of lop_end (%ld) not equal to the number of tetras " +"to the preceding lop_stab (%ld)\n" +msgstr "" +"%s: fichier mmo invalide: YZ de lop_end (%ld) n'est pas égal au nombre de " +"teras du lop_stab précédent (%ld)\n" #: mmo.c:2610 #, c-format @@ -1695,18 +1963,27 @@ msgstr "%s: table de symboles invalides: duplication du symbole `%s'\n" #: mmo.c:2898 #, c-format -msgid "%s: Bad symbol definition: `Main' set to %s rather than the start address %s\n" -msgstr "%s: définition de symbole erronée: `Main' initialisé à %s au lieu de l'adresse de départ %s\n" +msgid "" +"%s: Bad symbol definition: `Main' set to %s rather than the start address %" +"s\n" +msgstr "" +"%s: définition de symbole erronée: `Main' initialisé à %s au lieu de " +"l'adresse de départ %s\n" #: mmo.c:2932 #, c-format -msgid "%s: warning: symbol table too large for mmo, larger than 65535 32-bit words: %d. Only `Main' will be emitted.\n" -msgstr "%s: avertissement: table de symboles trop grande pour mmo, plus grande que 65535 mots de 32 bits: %d. Seul `Main' sera produit.\n" +msgid "" +"%s: warning: symbol table too large for mmo, larger than 65535 32-bit words: " +"%d. Only `Main' will be emitted.\n" +msgstr "" +"%s: avertissement: table de symboles trop grande pour mmo, plus grande que " +"65535 mots de 32 bits: %d. Seul `Main' sera produit.\n" #: mmo.c:2977 #, c-format msgid "%s: internal error, symbol table changed size from %d to %d words\n" -msgstr "%s: erreur interne, table de symbole a changé de taille de %d à %d mots\n" +msgstr "" +"%s: erreur interne, table de symbole a changé de taille de %d à %d mots\n" #: mmo.c:3032 #, c-format @@ -1725,8 +2002,12 @@ msgstr "%s: trop de resigstres initialis #: mmo.c:3095 #, c-format -msgid "%s: invalid start address for initialized registers of length %ld: 0x%lx%08lx\n" -msgstr "%s: adresse de départ invalide pour des registres initialisés de longueur %ld: 0x%lx%08lx\n" +msgid "" +"%s: invalid start address for initialized registers of length %ld: 0x%lx%" +"08lx\n" +msgstr "" +"%s: adresse de départ invalide pour des registres initialisés de longueur %" +"ld: 0x%lx%08lx\n" #: oasys.c:1036 #, c-format @@ -1782,17 +2063,25 @@ msgstr "%s: type de nom d'importation non reconnu: %x" #: peicode.h:1162 #, c-format msgid "%s: Unrecognised machine type (0x%x) in Import Library Format archive" -msgstr "%s: type de machine non reconnue (0x%x) dans l'archive de librairie d'importation" +msgstr "" +"%s: type de machine non reconnue (0x%x) dans l'archive de librairie " +"d'importation" #: peicode.h:1174 #, c-format -msgid "%s: Recognised but unhandled machine type (0x%x) in Import Library Format archive" -msgstr "%s: type de machine reconnue mais non traitée (0x%x) dans l'archive da la librairie de formats d'importation" +msgid "" +"%s: Recognised but unhandled machine type (0x%x) in Import Library Format " +"archive" +msgstr "" +"%s: type de machine reconnue mais non traitée (0x%x) dans l'archive da la " +"librairie de formats d'importation" #: peicode.h:1191 #, c-format msgid "%s: size field is zero in Import Library Format header" -msgstr "%s: taille du champ est zéro dans l'en-tête de la librairie de formats d'importation" +msgstr "" +"%s: taille du champ est zéro dans l'en-tête de la librairie de formats " +"d'importation" #: peicode.h:1219 #, c-format @@ -1800,8 +2089,12 @@ msgid "%s: string not null terminated in ILF object file." msgstr "%s: chaîne n'est pas terminée par un nulle dans le fichier objet ILF." #: ppcboot.c:416 -msgid "\nppcboot header:\n" -msgstr "\nEn-têtes ppcboot:\n" +msgid "" +"\n" +"ppcboot header:\n" +msgstr "" +"\n" +"En-têtes ppcboot:\n" #: ppcboot.c:417 #, c-format @@ -1825,8 +2118,12 @@ msgstr "Nom de partition = \"%s\"\n" #: ppcboot.c:446 #, c-format -msgid "\nPartition[%d] start = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" -msgstr "\nDébut de partition[%d] = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" +msgid "" +"\n" +"Partition[%d] start = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" +msgstr "" +"\n" +"Début de partition[%d] = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" #: ppcboot.c:452 #, c-format @@ -1852,7 +2149,7 @@ msgstr "som_sizeof_headers non implant msgid "%s:%d: Unexpected character `%s' in S-record file\n" msgstr "%s:%d: caractère inattendue `%s' dans le fichier S-record\n" -#: syms.c:996 +#: syms.c:998 msgid "Unsupported .stab relocation" msgstr "Relocalisation du .stab non supporté" @@ -1907,193 +2204,115 @@ msgstr "Symbole %s remplac msgid "failed to enter %s" msgstr "échec d'insertion de %s" -#: vms-tir.c:78 +#: vms-tir.c:81 msgid "No Mem !" msgstr "Mémoire épuisée!" -#: vms-tir.c:313 -msgid "Bad section index in ETIR_S_C_STA_PQ" +#: vms-tir.c:362 +#, fuzzy, c-format +msgid "bad section index in %s" msgstr "Index de section erronée dans ETIR_S_C_STA_PQ" -#: vms-tir.c:328 -#, c-format -msgid "Unsupported STA cmd %d" +#: vms-tir.c:375 +#, fuzzy, c-format +msgid "unsupported STA cmd %s" msgstr "Commande STA non supportée %d" -#: vms-tir.c:333 vms-tir.c:1301 -#, c-format -msgid "Reserved STA cmd %d" +#: vms-tir.c:380 vms-tir.c:1240 +#, fuzzy, c-format +msgid "reserved STA cmd %d" msgstr "Commande STA réservée %d" -#: vms-tir.c:443 -#, c-format -msgid "ETIR_S_C_STO_GBL: no symbol \"%s\"" -msgstr "ETIR_S_C_STO_GBL: pas de symbole \"%s\"" - -#: vms-tir.c:465 -#, c-format -msgid "ETIR_S_C_STO_CA: no symbol \"%s\"" -msgstr "ETIR_S_C_STO_CA: pas de symbole \"%s\"" - -#: vms-tir.c:478 -msgid "ETIR_S_C_STO_RB/AB: Not supported" -msgstr "ETIR_S_C_STO_RB/AB: non supporté" - -#: vms-tir.c:538 -msgid "ETIR_S_C_STO_LP_PSB: Not supported" -msgstr "ETIR_S_C_STO_LP_PSB: non supporté" - -#: vms-tir.c:544 -msgid "ETIR_S_C_STO_HINT_GBL: not implemented" -msgstr "ETIR_S_C_STO_HINT_GBL: pas implanté" +#: vms-tir.c:491 vms-tir.c:514 +#, fuzzy, c-format +msgid "%s: no symbol \"%s\"" +msgstr "%s: pas de tel symbole" -#: vms-tir.c:550 -msgid "ETIR_S_C_STO_HINT_PS: not implemented" -msgstr "ETIR_S_C_STO_HINT_PS: pas implanté" +#. unsigned shift +#. rotate +#. Redefine symbol to current location. +#. Define a literal. +#: vms-tir.c:581 vms-tir.c:693 vms-tir.c:803 vms-tir.c:821 vms-tir.c:829 +#: vms-tir.c:838 vms-tir.c:1563 +#, fuzzy, c-format +msgid "%s: not supported" +msgstr "n'est pas supportée" + +#: vms-tir.c:586 vms-tir.c:1418 +#, fuzzy, c-format +msgid "%s: not implemented" +msgstr "%s: non implanté %s\n" -#: vms-tir.c:554 vms-tir.c:1473 -#, c-format -msgid "Reserved STO cmd %d" +#: vms-tir.c:590 vms-tir.c:1422 +#, fuzzy, c-format +msgid "reserved STO cmd %d" msgstr "Commande STO réservée %d" -#: vms-tir.c:667 -msgid "ETIR_S_C_OPR_INSV: Not supported" -msgstr "ETIR_S_C_OPR_INSV: non supporté" - -#: vms-tir.c:685 -msgid "ETIR_S_C_OPR_USH: Not supported" -msgstr "ETIR_S_C_OPR_USH: non supporté" - -#: vms-tir.c:691 -msgid "ETIR_S_C_OPR_ROT: Not supported" -msgstr "ETIR_S_C_OPR_ROT: non supporté" - -#: vms-tir.c:710 -msgid "ETIR_S_C_OPR_REDEF: Not supported" -msgstr "ETIR_S_C_OPR_REDEF: non supporté" - -#: vms-tir.c:716 -msgid "ETIR_S_C_OPR_DFLIT: Not supported" -msgstr "ETIR_S_C_OPR_DFLIT: non supporté" - -#: vms-tir.c:720 vms-tir.c:1668 -#, c-format -msgid "Reserved OPR cmd %d" +#: vms-tir.c:708 vms-tir.c:1568 +#, fuzzy, c-format +msgid "reserved OPR cmd %d" msgstr "Commande OPR réservée %d" -#: vms-tir.c:788 vms-tir.c:1737 -#, c-format -msgid "Reserved CTL cmd %d" +#: vms-tir.c:776 vms-tir.c:1632 +#, fuzzy, c-format +msgid "reserved CTL cmd %d" msgstr "Commande CTL réservée %d" -#: vms-tir.c:816 -msgid "ETIR_S_C_STC_LP: not supported" -msgstr "ETIR_S_C_STC_LP: non supporté" - -#: vms-tir.c:834 -msgid "ETIR_S_C_STC_GBL: not supported" -msgstr "ETIR_S_C_STC_GBL: non supporté" - -#: vms-tir.c:842 -msgid "ETIR_S_C_STC_GCA: not supported" -msgstr "ETIR_S_C_STC_GCA: non supporté" - -#: vms-tir.c:851 -msgid "ETIR_S_C_STC_PS: not supported" -msgstr "ETIR_S_C_STC_PS: non supporté" - -#. -#. * stack byte from image -#. * arg: - -#. * -#. -#: vms-tir.c:1199 -msgid "Stack-from-image not implemented" +#. stack byte from image +#. arg: none. +#: vms-tir.c:1148 +#, fuzzy +msgid "stack-from-image not implemented" msgstr "Stack-from-image non implanté" -#: vms-tir.c:1219 -msgid "Stack-entry-mask not fully implemented" +#: vms-tir.c:1166 +#, fuzzy +msgid "stack-entry-mask not fully implemented" msgstr "Stack-entry-mask pas complètement implanté" +#. compare procedure argument +#. arg: cs symbol name +#. by argument index +#. da argument descriptor #. -#. * compare procedure argument -#. * arg: cs symbol name -#. * by argument index -#. * da argument descriptor -#. * -#. * compare argument descriptor with symbol argument (ARG$V_PASSMECH) -#. * and stack TRUE (args match) or FALSE (args dont match) value -#. -#: vms-tir.c:1235 +#. compare argument descriptor with symbol argument (ARG$V_PASSMECH) +#. and stack TRUE (args match) or FALSE (args dont match) value. +#: vms-tir.c:1180 msgid "PASSMECH not fully implemented" msgstr "PASSMECH pas complètement implanté" -#: vms-tir.c:1256 -msgid "Stack-local-symbol not fully implemented" +#: vms-tir.c:1199 +#, fuzzy +msgid "stack-local-symbol not fully implemented" msgstr "Stack-local-symbol pas complètement implanté" -#: vms-tir.c:1271 -msgid "Stack-literal not fully implemented" +#: vms-tir.c:1212 +#, fuzzy +msgid "stack-literal not fully implemented" msgstr "Stack-literal pas complètement implanté" -#: vms-tir.c:1294 -msgid "Stack-local-symbol-entry-point-mask not fully implemented" +#: vms-tir.c:1233 +#, fuzzy +msgid "stack-local-symbol-entry-point-mask not fully implemented" msgstr "Stack-local-symbol-entry-point-mask pas complètement implanté" -#: vms-tir.c:1469 -#, c-format -msgid "Unimplemented STO cmd %d" -msgstr "Commande STO non implantée %d" - -#: vms-tir.c:1608 -msgid "TIR_S_C_OPR_ASH incomplete" -msgstr "TIR_S_C_OPR_ASH incomplète" - -#: vms-tir.c:1622 -msgid "TIR_S_C_OPR_USH incomplete" -msgstr "TIR_S_C_OPR_USH incomplète" - -#: vms-tir.c:1636 -msgid "TIR_S_C_OPR_ROT incomplete" -msgstr "TIR_S_C_OPR_ROT incomplète" - -#. -#. * redefine symbol to current location -#. -#: vms-tir.c:1657 -msgid "TIR_S_C_OPR_REDEF not supported" -msgstr "TIR_S_C_OPR_REDEF non supporté" - -#. -#. * define a literal -#. -#: vms-tir.c:1664 -msgid "TIR_S_C_OPR_DFLIT not supported" -msgstr "TIR_S_C_OPR_DFLIT non supporté" - -#: vms-tir.c:1718 -msgid "TIR_S_C_CTL_DFLOC not fully implemented" -msgstr "TIR_S_C_CTL_DFLOC pas complètement implanté" - -#: vms-tir.c:1726 -msgid "TIR_S_C_CTL_STLOC not fully implemented" -msgstr "TIR_S_C_CTL_STLOC pas complètement implanté" - -#: vms-tir.c:1734 -msgid "TIR_S_C_CTL_STKDL not fully implemented" -msgstr "TIR_S_C_CTL_STKDL n'est pas complètement implanté" +#: vms-tir.c:1510 vms-tir.c:1522 vms-tir.c:1534 vms-tir.c:1546 vms-tir.c:1611 +#: vms-tir.c:1619 vms-tir.c:1627 +#, fuzzy, c-format +msgid "%s: not fully implemented" +msgstr "PASSMECH pas complètement implanté" -#: vms-tir.c:1791 -#, c-format -msgid "Obj code %d not found" +#: vms-tir.c:1684 +#, fuzzy, c-format +msgid "obj code %d not found" msgstr "Code objet %d non repéré" -#: vms-tir.c:2137 +#: vms-tir.c:2019 #, c-format msgid "SEC_RELOC with no relocs in section %s" msgstr "SEC_RELOC sans relocalisation dans la section %s" -#: vms-tir.c:2424 +#: vms-tir.c:2307 #, c-format msgid "Unhandled relocation %s" msgstr "Relocalisation non traitée: %s" @@ -2165,7 +2384,9 @@ msgstr "AVERTISSEMENT: tentative d'exportation d'un symbole ind #: xcofflink.c:4452 #, c-format msgid "TOC overflow: 0x%lx > 0x10000; try -mminimal-toc when compiling" -msgstr "Débordement de la table des entrées: 0x%lx > 0x10000; essayer l'option -mminimal-toc" +msgstr "" +"Débordement de la table des entrées: 0x%lx > 0x10000; essayer l'option -" +"mminimal-toc" #: xcofflink.c:5292 xcofflink.c:5754 xcofflink.c:5816 xcofflink.c:6117 #, c-format @@ -2175,337 +2396,403 @@ msgstr "%s: chargeur de relocalisation dans une section non reconnnue `%s'" #: xcofflink.c:5314 xcofflink.c:6128 #, c-format msgid "%s: `%s' in loader reloc but not loader sym" -msgstr "%s: `%s' est dans le chargeur de relocalisation mais pas dans celui des symboles" +msgstr "" +"%s: `%s' est dans le chargeur de relocalisation mais pas dans celui des " +"symboles" #: xcofflink.c:5329 #, c-format msgid "%s: loader reloc in read-only section %s" msgstr "%s: chargeur de relocalisation dans un section en lecture seulement %s" -#: elf32-ia64.c:2190 elf64-ia64.c:2190 +#: elf32-ia64.c:2189 elf64-ia64.c:2189 msgid "@pltoff reloc against local symbol" msgstr "relocalisation @pltoff vers un symbole local" -#: elf32-ia64.c:2248 elf64-ia64.c:2248 -msgid "non-zero addend in @fptr reloc" -msgstr "ajout non null dans la relocalisation @fptr" - -#: elf32-ia64.c:3414 elf64-ia64.c:3414 +#: elf32-ia64.c:3413 elf64-ia64.c:3413 #, c-format msgid "%s: short data segment overflowed (0x%lx >= 0x400000)" msgstr "%s: débordement du segment de données court (0x%lx >= 0x400000)" -#: elf32-ia64.c:3425 elf64-ia64.c:3425 +#: elf32-ia64.c:3424 elf64-ia64.c:3424 #, c-format msgid "%s: __gp does not cover short data segment" msgstr "%s: __gp ne couvre pas ce segment de données court" -#: elf32-ia64.c:3729 elf64-ia64.c:3729 +#: elf32-ia64.c:3728 elf64-ia64.c:3728 #, c-format msgid "%s: linking non-pic code in a shared library" msgstr "%s: liaison de code non-pic dans une librairie partagée" -#: elf32-ia64.c:3762 elf64-ia64.c:3762 +#: elf32-ia64.c:3761 elf64-ia64.c:3761 #, c-format msgid "%s: @gprel relocation against dynamic symbol %s" msgstr "%s: relocalisation @gprel vers le symbole dynamique %s" -#: elf32-ia64.c:3901 elf64-ia64.c:3901 +#: elf32-ia64.c:3900 elf64-ia64.c:3900 #, c-format msgid "%s: dynamic relocation against speculation fixup" msgstr "%s: relocalisation dynamique vers un correctif spéculé" -#: elf32-ia64.c:3909 elf64-ia64.c:3909 +#: elf32-ia64.c:3908 elf64-ia64.c:3908 #, c-format msgid "%s: speculation fixup against undefined weak symbol" msgstr "%s: correctif spéculé vers un symbole faible indéfini" -#: elf32-ia64.c:4093 elf64-ia64.c:4093 +#: elf32-ia64.c:4092 elf64-ia64.c:4092 msgid "unsupported reloc" msgstr "relocalisation non supporté" -#: elf32-ia64.c:4373 elf64-ia64.c:4373 +#: elf32-ia64.c:4372 elf64-ia64.c:4372 #, c-format msgid "%s: linking trap-on-NULL-dereference with non-trapping files" -msgstr "%s: édition de liens trap-on-NULL-dereference avec des fichiers non-trapping" +msgstr "" +"%s: édition de liens trap-on-NULL-dereference avec des fichiers non-trapping" -#: elf32-ia64.c:4382 elf64-ia64.c:4382 +#: elf32-ia64.c:4381 elf64-ia64.c:4381 #, c-format msgid "%s: linking big-endian files with little-endian files" msgstr "" "%s: édition de liens pour des fichiers en système à octets de poids fort\n" "avec des fichiers pour des systèmes à octets de poids faible" -#: elf32-ia64.c:4391 elf64-ia64.c:4391 +#: elf32-ia64.c:4390 elf64-ia64.c:4390 #, c-format msgid "%s: linking 64-bit files with 32-bit files" -msgstr "%s: édition de liens de fichiers de 64 bits avec des fichiers de 32 bits" +msgstr "" +"%s: édition de liens de fichiers de 64 bits avec des fichiers de 32 bits" -#: elf32-ia64.c:4400 elf64-ia64.c:4400 +#: elf32-ia64.c:4399 elf64-ia64.c:4399 #, c-format msgid "%s: linking constant-gp files with non-constant-gp files" -msgstr "%s: édition de liens de fichiers constant-gp avec des fichier non-constant-gp" +msgstr "" +"%s: édition de liens de fichiers constant-gp avec des fichier non-constant-gp" -#: elf32-ia64.c:4410 elf64-ia64.c:4410 +#: elf32-ia64.c:4409 elf64-ia64.c:4409 #, c-format msgid "%s: linking auto-pic files with non-auto-pic files" -msgstr "%s: édition de liens de fichiers auto-pic avec des fichiers non-auto-pic" +msgstr "" +"%s: édition de liens de fichiers auto-pic avec des fichiers non-auto-pic" -#: peigen.c:964 pepigen.c:964 +#: peigen.c:962 pepigen.c:962 #, c-format msgid "%s: line number overflow: 0x%lx > 0xffff" msgstr "%s: débordement du nombre de lignes: 0x%lx > 0xffff" -#: peigen.c:981 pepigen.c:981 +#: peigen.c:979 pepigen.c:979 #, c-format msgid "%s: reloc overflow 1: 0x%lx > 0xffff" msgstr "%s: débordement de la relocalisation 1: 0x%lx > 0xffff" -#: peigen.c:995 pepigen.c:995 +#: peigen.c:993 pepigen.c:993 msgid "Export Directory [.edata (or where ever we found it)]" msgstr "Répertoire d'exportation [.edata (ou là où il a été repéré)]" -#: peigen.c:996 pepigen.c:996 +#: peigen.c:994 pepigen.c:994 msgid "Import Directory [parts of .idata]" msgstr "Répertoire d'importation [faisant partie de .idata]" -#: peigen.c:997 pepigen.c:997 +#: peigen.c:995 pepigen.c:995 msgid "Resource Directory [.rsrc]" msgstr "Répertoire des resources [.rsrc]" -#: peigen.c:998 pepigen.c:998 +#: peigen.c:996 pepigen.c:996 msgid "Exception Directory [.pdata]" msgstr "Répertoire des exceptions [.pdata]" -#: peigen.c:999 pepigen.c:999 +#: peigen.c:997 pepigen.c:997 msgid "Security Directory" msgstr "Répertoire de la sécurité" -#: peigen.c:1000 pepigen.c:1000 +#: peigen.c:998 pepigen.c:998 msgid "Base Relocation Directory [.reloc]" msgstr "Répertoire de base de relocalisation [.reloc]" -#: peigen.c:1001 pepigen.c:1001 +#: peigen.c:999 pepigen.c:999 msgid "Debug Directory" msgstr "Répertoire de débug" -#: peigen.c:1002 pepigen.c:1002 +#: peigen.c:1000 pepigen.c:1000 msgid "Description Directory" msgstr "Répertoire de description" -#: peigen.c:1003 pepigen.c:1003 +#: peigen.c:1001 pepigen.c:1001 msgid "Special Directory" msgstr "Répertoire spécial" -#: peigen.c:1004 pepigen.c:1004 +#: peigen.c:1002 pepigen.c:1002 msgid "Thread Storage Directory [.tls]" msgstr "Répertoire des files de stockage [.tls]" -#: peigen.c:1005 pepigen.c:1005 +#: peigen.c:1003 pepigen.c:1003 msgid "Load Configuration Directory" msgstr "Répertoire de chargement de configuration" -#: peigen.c:1006 pepigen.c:1006 +#: peigen.c:1004 pepigen.c:1004 msgid "Bound Import Directory" msgstr "Répertoire des importations limitées" -#: peigen.c:1007 pepigen.c:1007 +#: peigen.c:1005 pepigen.c:1005 msgid "Import Address Table Directory" msgstr "Répertoire de la table d'adresse d'importation" -#: peigen.c:1008 pepigen.c:1008 +#: peigen.c:1006 pepigen.c:1006 msgid "Delay Import Directory" msgstr "Répertoire des délais d'importation" -#: peigen.c:1009 peigen.c:1010 pepigen.c:1009 pepigen.c:1010 +#: peigen.c:1007 peigen.c:1008 pepigen.c:1007 pepigen.c:1008 msgid "Reserved" msgstr "Réservé" -#: peigen.c:1073 pepigen.c:1073 -msgid "\nThere is an import table, but the section containing it could not be found\n" -msgstr "\nIl y a une table d'importation, mais la section la contenant ne peut être repérée\n" +#: peigen.c:1071 pepigen.c:1071 +msgid "" +"\n" +"There is an import table, but the section containing it could not be found\n" +msgstr "" +"\n" +"Il y a une table d'importation, mais la section la contenant ne peut être " +"repérée\n" -#: peigen.c:1078 pepigen.c:1078 +#: peigen.c:1076 pepigen.c:1076 #, c-format -msgid "\nThere is an import table in %s at 0x%lx\n" -msgstr "\nIl y a une table d'importation dans %s à 0x%lx\n" +msgid "" +"\n" +"There is an import table in %s at 0x%lx\n" +msgstr "" +"\n" +"Il y a une table d'importation dans %s à 0x%lx\n" -#: peigen.c:1115 pepigen.c:1115 +#: peigen.c:1113 pepigen.c:1113 #, c-format -msgid "\nFunction descriptor located at the start address: %04lx\n" -msgstr "\nDescripteur de fonction localisé à l'adresse de départ: %04lx\n" +msgid "" +"\n" +"Function descriptor located at the start address: %04lx\n" +msgstr "" +"\n" +"Descripteur de fonction localisé à l'adresse de départ: %04lx\n" -#: peigen.c:1118 pepigen.c:1118 +#: peigen.c:1116 pepigen.c:1116 #, c-format msgid "\tcode-base %08lx toc (loadable/actual) %08lx/%08lx\n" msgstr "\tcode-base %08lx tab. des entrées (chargeable/actuel) %08lx/%08lx\n" -#: peigen.c:1124 pepigen.c:1124 -msgid "\nNo reldata section! Function descriptor not decoded.\n" -msgstr "\nPas de section reldata! Descripteur de fonction n'a pas été décodé.\n" +#: peigen.c:1122 pepigen.c:1122 +msgid "" +"\n" +"No reldata section! Function descriptor not decoded.\n" +msgstr "" +"\n" +"Pas de section reldata! Descripteur de fonction n'a pas été décodé.\n" -#: peigen.c:1129 pepigen.c:1129 +#: peigen.c:1127 pepigen.c:1127 #, c-format -msgid "\nThe Import Tables (interpreted %s section contents)\n" -msgstr "\nLes tables d'importation (contenus interprétés de la section %s)\n" - -#: peigen.c:1132 pepigen.c:1132 -msgid " vma: Hint Time Forward DLL First\n" -msgstr " vma: Hint Heure Forward DLL Premier\n" +msgid "" +"\n" +"The Import Tables (interpreted %s section contents)\n" +msgstr "" +"\n" +"Les tables d'importation (contenus interprétés de la section %s)\n" -#: peigen.c:1134 pepigen.c:1134 -msgid " Table Stamp Chain Name Thunk\n" +#: peigen.c:1130 pepigen.c:1130 +#, fuzzy +msgid "" +" vma: Hint Time Forward DLL First\n" +" Table Stamp Chain Name Thunk\n" msgstr " Table Tampon Chaîne Nom Thunk\n" -#: peigen.c:1182 pepigen.c:1182 +#: peigen.c:1180 pepigen.c:1180 #, c-format -msgid "\n\tDLL Name: %s\n" -msgstr "\n\tNom DLL: %s\n" +msgid "" +"\n" +"\tDLL Name: %s\n" +msgstr "" +"\n" +"\tNom DLL: %s\n" -#: peigen.c:1186 peigen.c:1249 pepigen.c:1186 pepigen.c:1249 +#: peigen.c:1184 peigen.c:1247 pepigen.c:1184 pepigen.c:1247 msgid "\tvma: Hint/Ord Member-Name\n" msgstr "\tvma: Hint/Nom-de-membre nombre ordinal\n" -#: peigen.c:1248 pepigen.c:1248 +#: peigen.c:1246 pepigen.c:1246 msgid "\tThe Import Address Table (difference found)\n" msgstr "\tL'adresse de la table d'importation (différence détectée)\n" -#: peigen.c:1255 pepigen.c:1255 +#: peigen.c:1253 pepigen.c:1253 msgid "\t>>> Ran out of IAT members!\n" msgstr "\t>>> membres IAT tous utilisés!\n" -#: peigen.c:1273 pepigen.c:1273 +#: peigen.c:1271 pepigen.c:1271 msgid "\tThe Import Address Table is identical\n" msgstr "\tL'adresse de la table d'importation est identique\n" -#: peigen.c:1345 pepigen.c:1345 -msgid "\nThere is an export table, but the section containing it could not be found\n" -msgstr "\nIl y a une table d'exportation, mais la section la contenant n'a pu être repérée\n" +#: peigen.c:1343 pepigen.c:1343 +msgid "" +"\n" +"There is an export table, but the section containing it could not be found\n" +msgstr "" +"\n" +"Il y a une table d'exportation, mais la section la contenant n'a pu être " +"repérée\n" -#: peigen.c:1350 pepigen.c:1350 +#: peigen.c:1348 pepigen.c:1348 #, c-format -msgid "\nThere is an export table in %s at 0x%lx\n" -msgstr "\nIl y a une table d'exportation dans %s à 0x%lx\n" +msgid "" +"\n" +"There is an export table in %s at 0x%lx\n" +msgstr "" +"\n" +"Il y a une table d'exportation dans %s à 0x%lx\n" -#: peigen.c:1381 pepigen.c:1381 +#: peigen.c:1379 pepigen.c:1379 #, c-format -msgid "\nThe Export Tables (interpreted %s section contents)\n\n" -msgstr "\nLes tables d'exportation (contenus interprétés de la section %s)\n\n" +msgid "" +"\n" +"The Export Tables (interpreted %s section contents)\n" +"\n" +msgstr "" +"\n" +"Les tables d'exportation (contenus interprétés de la section %s)\n" +"\n" -#: peigen.c:1385 pepigen.c:1385 +#: peigen.c:1383 pepigen.c:1383 #, c-format msgid "Export Flags \t\t\t%lx\n" msgstr "Fanion d'exportation \t\t\t%lx\n" -#: peigen.c:1388 pepigen.c:1388 +#: peigen.c:1386 pepigen.c:1386 #, c-format msgid "Time/Date stamp \t\t%lx\n" msgstr "Tampon Heure/Date \t\t%lx\n" -#: peigen.c:1391 pepigen.c:1391 +#: peigen.c:1389 pepigen.c:1389 #, c-format msgid "Major/Minor \t\t\t%d/%d\n" msgstr "Majeur/Mineur \t\t\t%d/%d\n" -#: peigen.c:1394 pepigen.c:1394 +#: peigen.c:1392 pepigen.c:1392 msgid "Name \t\t\t\t" msgstr "Nom \t\t\t\t" -#: peigen.c:1400 pepigen.c:1400 +#: peigen.c:1398 pepigen.c:1398 #, c-format msgid "Ordinal Base \t\t\t%ld\n" msgstr "base de nombre ordinal \t\t\t%ld\n" -#: peigen.c:1403 pepigen.c:1403 +#: peigen.c:1401 pepigen.c:1401 msgid "Number in:\n" msgstr "Numéro dans:\n" -#: peigen.c:1406 pepigen.c:1406 +#: peigen.c:1404 pepigen.c:1404 #, c-format msgid "\tExport Address Table \t\t%08lx\n" msgstr "\tTable d'adresses d'exportation \t\t%08lx\n" -#: peigen.c:1410 pepigen.c:1410 +#: peigen.c:1408 pepigen.c:1408 #, c-format msgid "\t[Name Pointer/Ordinal] Table\t%08lx\n" msgstr "\tTable de noms [Pointeur/Nombre ordinal]\t%08lx\n" -#: peigen.c:1413 pepigen.c:1413 +#: peigen.c:1411 pepigen.c:1411 msgid "Table Addresses\n" msgstr "Table d'adresses\n" -#: peigen.c:1416 pepigen.c:1416 +#: peigen.c:1414 pepigen.c:1414 msgid "\tExport Address Table \t\t" msgstr "\tTable d'adresse d'exportation \t\t" -#: peigen.c:1421 pepigen.c:1421 +#: peigen.c:1419 pepigen.c:1419 msgid "\tName Pointer Table \t\t" msgstr "\tTable des noms de pointeurs \t\t" -#: peigen.c:1426 pepigen.c:1426 +#: peigen.c:1424 pepigen.c:1424 msgid "\tOrdinal Table \t\t\t" msgstr "\tTable des ordinals \t\t\t" -#: peigen.c:1441 pepigen.c:1441 +#: peigen.c:1439 pepigen.c:1439 #, c-format -msgid "\nExport Address Table -- Ordinal Base %ld\n" -msgstr "\nTable d'adresses d'exportation -- base de nombre ordinal %ld\n" +msgid "" +"\n" +"Export Address Table -- Ordinal Base %ld\n" +msgstr "" +"\n" +"Table d'adresses d'exportation -- base de nombre ordinal %ld\n" -#: peigen.c:1460 pepigen.c:1460 +#: peigen.c:1458 pepigen.c:1458 msgid "Forwarder RVA" msgstr "Adresseur RVA" -#: peigen.c:1471 pepigen.c:1471 +#: peigen.c:1469 pepigen.c:1469 msgid "Export RVA" msgstr "Exportation RVA" -#: peigen.c:1478 pepigen.c:1478 -msgid "\n[Ordinal/Name Pointer] Table\n" -msgstr "\nTable [Ordinal/Nom de pointeurs]\n" +#: peigen.c:1476 pepigen.c:1476 +msgid "" +"\n" +"[Ordinal/Name Pointer] Table\n" +msgstr "" +"\n" +"Table [Ordinal/Nom de pointeurs]\n" -#: peigen.c:1533 pepigen.c:1533 +#: peigen.c:1531 pepigen.c:1531 #, c-format msgid "Warning, .pdata section size (%ld) is not a multiple of %d\n" -msgstr "AVERTISSEMENT, taille de la section .pdata (%ld) n'est pas un multiple de %d\n" +msgstr "" +"AVERTISSEMENT, taille de la section .pdata (%ld) n'est pas un multiple de %" +"d\n" -#: peigen.c:1537 pepigen.c:1537 -msgid "\nThe Function Table (interpreted .pdata section contents)\n" -msgstr "\nLa table de fonctions (interprétation du contenu de la section .pdata)\n" +#: peigen.c:1535 pepigen.c:1535 +msgid "" +"\n" +"The Function Table (interpreted .pdata section contents)\n" +msgstr "" +"\n" +"La table de fonctions (interprétation du contenu de la section .pdata)\n" -#: peigen.c:1540 pepigen.c:1540 +#: peigen.c:1538 pepigen.c:1538 msgid " vma:\t\t\tBegin Address End Address Unwind Info\n" msgstr " vma:\t\t\tDébut Adresse Fin Adresse Unwind Info\n" -#: peigen.c:1543 pepigen.c:1543 -msgid " vma:\t\tBegin End EH EH PrologEnd Exception\n" +#: peigen.c:1540 pepigen.c:1540 +#, fuzzy +msgid "" +" vma:\t\tBegin End EH EH PrologEnd Exception\n" +" \t\tAddress Address Handler Data Address Mask\n" msgstr " vma:\t\tDébut Fin EH EH FinProlog Exception\n" -#: peigen.c:1545 pepigen.c:1545 -msgid " \t\tAddress Address Handler Data Address Mask\n" -msgstr " \t\tAdresse Adresse Routine Données Adresse Masque\n" - -#: peigen.c:1613 pepigen.c:1613 +#: peigen.c:1610 pepigen.c:1610 msgid " Register save millicode" msgstr " Registre a préservé le millicode" -#: peigen.c:1616 pepigen.c:1616 +#: peigen.c:1613 pepigen.c:1613 msgid " Register restore millicode" msgstr " Registre a restauré le millicode" -#: peigen.c:1619 pepigen.c:1619 +#: peigen.c:1616 pepigen.c:1616 msgid " Glue code sequence" msgstr " Séquence du code de liants" -#: peigen.c:1671 pepigen.c:1671 -msgid "\n\nPE File Base Relocations (interpreted .reloc section contents)\n" -msgstr "\n\nFichier de base des relocalisation PE (contenus interprétés de la section .reloc)\n" +#: peigen.c:1668 pepigen.c:1668 +msgid "" +"\n" +"\n" +"PE File Base Relocations (interpreted .reloc section contents)\n" +msgstr "" +"\n" +"\n" +"Fichier de base des relocalisation PE (contenus interprétés de la section ." +"reloc)\n" -#: peigen.c:1701 pepigen.c:1701 +#: peigen.c:1698 pepigen.c:1698 #, c-format -msgid "\nVirtual Address: %08lx Chunk size %ld (0x%lx) Number of fixups %ld\n" -msgstr "\nAdresse virtuelle: %08lx taille des morceaux %ld (0x%lx) nombre de correctifs %ld\n" +msgid "" +"\n" +"Virtual Address: %08lx Chunk size %ld (0x%lx) Number of fixups %ld\n" +msgstr "" +"\n" +"Adresse virtuelle: %08lx taille des morceaux %ld (0x%lx) nombre de " +"correctifs %ld\n" -#: peigen.c:1714 pepigen.c:1714 +#: peigen.c:1711 pepigen.c:1711 #, c-format msgid "\treloc %4d offset %4x [%4lx] %s" msgstr "\trelocalisation %4d décalage %4x [%4lx] %s" @@ -2513,10 +2800,137 @@ msgstr "\trelocalisation %4d d #. The MS dumpbin program reportedly ands with 0xff0f before #. printing the characteristics field. Not sure why. No reason to #. emulate it here. -#: peigen.c:1754 pepigen.c:1754 +#: peigen.c:1751 pepigen.c:1751 #, c-format -msgid "\nCharacteristics 0x%x\n" -msgstr "\nCaractéristiques 0x%x\n" +msgid "" +"\n" +"Characteristics 0x%x\n" +msgstr "" +"\n" +"Caractéristiques 0x%x\n" + +#~ msgid "GP relative relocation when GP not defined" +#~ msgstr "GP relocalisation relative alors que GP n'est pas défini" + +#~ msgid "Warning: input file %s supports interworking, whereas %s does not." +#~ msgstr "" +#~ "AVERTISSEMENT: file d'entrée %s supporte l'inter-réseautage, " +#~ "contrairement à %s." + +#~ msgid "" +#~ "Warning: input file %s does not support interworking, whereas %s does." +#~ msgstr "" +#~ "AVERTISSEMENT: fichier d'entrée %s ne supporte pas l'inter-réseautage, " +#~ "contrairement à %s." + +#~ msgid "AUX tagndx %ld ttlsiz 0x%lx lnnos %ld next %ld" +#~ msgstr "AUX tagndx %ld ttlsiz 0x%lx lnnos %ld prochain %ld" + +#~ msgid "" +#~ "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x" +#~ "%.8lx%s\n" +#~ msgstr "" +#~ "elf_symbol_from_bfd_symbol 0x%.8lx, nom = %s, no. de symbole = %d, " +#~ "fanions = 0x%.8lx%s\n" + +#~ msgid "" +#~ "Warning: Not setting interwork flag of %s since it has already been " +#~ "specified as non-interworking" +#~ msgstr "" +#~ "AVERTISSEMENT: pas d'initialisation du fanion d'inter-réseautage %s alors " +#~ "qu'il a déjè été spécifié sans inter-réseautage" + +#~ msgid "Warning: Clearing the interwork flag of %s due to outside request" +#~ msgstr "" +#~ "AVERTISSEMENT: mise à zéro du fanion d'inter-réseautage %s en raison " +#~ "d'une requête externe" + +#~ msgid "(unknown)" +#~ msgstr "(inconnu)" + +#~ msgid " previously %s in %s" +#~ msgstr " précédemment %s dans %s" + +#~ msgid "Symbol `%s' has differing types: %s in %s" +#~ msgstr "Symbole `%s' a des types qui diffèrent: %s dans %s" + +#~ msgid "ETIR_S_C_STO_GBL: no symbol \"%s\"" +#~ msgstr "ETIR_S_C_STO_GBL: pas de symbole \"%s\"" + +#~ msgid "ETIR_S_C_STO_CA: no symbol \"%s\"" +#~ msgstr "ETIR_S_C_STO_CA: pas de symbole \"%s\"" + +#~ msgid "ETIR_S_C_STO_RB/AB: Not supported" +#~ msgstr "ETIR_S_C_STO_RB/AB: non supporté" + +#~ msgid "ETIR_S_C_STO_LP_PSB: Not supported" +#~ msgstr "ETIR_S_C_STO_LP_PSB: non supporté" + +#~ msgid "ETIR_S_C_STO_HINT_GBL: not implemented" +#~ msgstr "ETIR_S_C_STO_HINT_GBL: pas implanté" + +#~ msgid "ETIR_S_C_STO_HINT_PS: not implemented" +#~ msgstr "ETIR_S_C_STO_HINT_PS: pas implanté" + +#~ msgid "ETIR_S_C_OPR_INSV: Not supported" +#~ msgstr "ETIR_S_C_OPR_INSV: non supporté" + +#~ msgid "ETIR_S_C_OPR_USH: Not supported" +#~ msgstr "ETIR_S_C_OPR_USH: non supporté" + +#~ msgid "ETIR_S_C_OPR_ROT: Not supported" +#~ msgstr "ETIR_S_C_OPR_ROT: non supporté" + +#~ msgid "ETIR_S_C_OPR_REDEF: Not supported" +#~ msgstr "ETIR_S_C_OPR_REDEF: non supporté" + +#~ msgid "ETIR_S_C_OPR_DFLIT: Not supported" +#~ msgstr "ETIR_S_C_OPR_DFLIT: non supporté" + +#~ msgid "ETIR_S_C_STC_LP: not supported" +#~ msgstr "ETIR_S_C_STC_LP: non supporté" + +#~ msgid "ETIR_S_C_STC_GBL: not supported" +#~ msgstr "ETIR_S_C_STC_GBL: non supporté" + +#~ msgid "ETIR_S_C_STC_GCA: not supported" +#~ msgstr "ETIR_S_C_STC_GCA: non supporté" + +#~ msgid "ETIR_S_C_STC_PS: not supported" +#~ msgstr "ETIR_S_C_STC_PS: non supporté" + +#~ msgid "Unimplemented STO cmd %d" +#~ msgstr "Commande STO non implantée %d" + +#~ msgid "TIR_S_C_OPR_ASH incomplete" +#~ msgstr "TIR_S_C_OPR_ASH incomplète" + +#~ msgid "TIR_S_C_OPR_USH incomplete" +#~ msgstr "TIR_S_C_OPR_USH incomplète" + +#~ msgid "TIR_S_C_OPR_ROT incomplete" +#~ msgstr "TIR_S_C_OPR_ROT incomplète" + +#~ msgid "TIR_S_C_OPR_REDEF not supported" +#~ msgstr "TIR_S_C_OPR_REDEF non supporté" + +#~ msgid "TIR_S_C_OPR_DFLIT not supported" +#~ msgstr "TIR_S_C_OPR_DFLIT non supporté" + +#~ msgid "TIR_S_C_CTL_DFLOC not fully implemented" +#~ msgstr "TIR_S_C_CTL_DFLOC pas complètement implanté" + +#~ msgid "TIR_S_C_CTL_STLOC not fully implemented" +#~ msgstr "TIR_S_C_CTL_STLOC pas complètement implanté" + +#~ msgid "TIR_S_C_CTL_STKDL not fully implemented" +#~ msgstr "TIR_S_C_CTL_STKDL n'est pas complètement implanté" + +#~ msgid " vma: Hint Time Forward DLL First\n" +#~ msgstr " vma: Hint Heure Forward DLL Premier\n" + +#~ msgid " \t\tAddress Address Handler Data Address Mask\n" +#~ msgstr " \t\tAdresse Adresse Routine Données Adresse Masque\n" #~ msgid "float" #~ msgstr "flottant" @@ -2536,9 +2950,6 @@ msgstr "\nCaract #~ msgid "supports" #~ msgstr "supporte" -#~ msgid "does not support" -#~ msgstr "n'est pas supportée" - #~ msgid "does not" #~ msgstr "n'est pas" @@ -2549,13 +2960,15 @@ msgstr "\nCaract #~ msgstr "%s(%s+0x%lx): ne peut repérer l'entrée du talon %s" #~ msgid "%s(%s+0x%lx): cannot relocate %s, recompile with -ffunction-sections" -#~ msgstr "%s(%s+0x%lx): ne peut relocaliser %s, recompiler avec -ffunction-sections" - -#~ msgid "Symbol `%s' has differing types: previously %s, REGISTER in %s" -#~ msgstr "Symbole `%s' a des types qui diffèrent: précédemment %s, ENREGISTRÉ dans %s" - -#~ msgid "creating section symbol, name = %s, value = 0x%.8lx, index = %d, section = 0x%.8lx\n" -#~ msgstr "création de la section des symboles, nom = %s, valeur = 0x%.8lx, index = %d, section = 0x%.8lx\n" +#~ msgstr "" +#~ "%s(%s+0x%lx): ne peut relocaliser %s, recompiler avec -ffunction-sections" + +#~ msgid "" +#~ "creating section symbol, name = %s, value = 0x%.8lx, index = %d, section " +#~ "= 0x%.8lx\n" +#~ msgstr "" +#~ "création de la section des symboles, nom = %s, valeur = 0x%.8lx, index = %" +#~ "d, section = 0x%.8lx\n" #~ msgid " whereas segment starts at 0x%x" #~ msgstr " alors que le segment débute à 0x%x" diff --git a/bfd/po/ja.po b/bfd/po/ja.po index f2b080aeb..9373b275a 100644 --- a/bfd/po/ja.po +++ b/bfd/po/ja.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: bfd 2.11\n" -"POT-Creation-Date: 2001-01-11 11:54-0800\n" +"POT-Creation-Date: 2002-01-31 17:07+0000\n" "PO-Revision-Date: 2001-12-22 13:37+0900\n" "Last-Translator: Daisuke Yamashita \n" "Language-Team: Japanese \n" @@ -13,2096 +13,2836 @@ msgstr "" "Content-Type: text/plain; charset=EUC-JP\n" "Content-Transfer-Encoding: 8bit\n" -#: aout-adobe.c:189 +#: aout-adobe.c:196 #, c-format msgid "%s: Unknown section type in a.out.adobe file: %x\n" msgstr "%s: a.out.adobe ¥Õ¥¡¥¤¥ë¤ËÉÔÌÀ¤Ê¥»¥¯¥·¥ç¥ó·¿¤¬¤¢¤ê¤Þ¤¹: %x\n" -#: aout-cris.c:205 +#: aout-cris.c:208 #, c-format msgid "%s: Invalid relocation type exported: %d" msgstr "%s: export ¤µ¤ì¤¿ºÆÇÛÃÖ¥¿¥¤¥×¤¬ÉÔŬÀڤǤ¹: %d" -#: aout-cris.c:249 +#: aout-cris.c:252 #, c-format msgid "%s: Invalid relocation type imported: %d" msgstr "%s: import ¤µ¤ì¤¿ºÆÇÛÃÖ¥¿¥¤¥×¤¬ÉÔŬÀڤǤ¹: %d" -#: aout-cris.c:260 +#: aout-cris.c:263 #, c-format msgid "%s: Bad relocation record imported: %d" msgstr "%s: import ¤µ¤ì¤¿ºÆÇÛÃ֥쥳¡¼¥É¤¬ÉÔÀµ¤Ç¤¹: %d" -#: aoutx.h:1259 aoutx.h:1673 +#: aoutx.h:1282 aoutx.h:1699 #, c-format msgid "%s: can not represent section `%s' in a.out object file format" msgstr "%s: a.out ¥ª¥Ö¥¸¥§¥¯¥È¥Õ¥¡¥¤¥ë·Á¼°¤Ç¤Ï¥»¥¯¥·¥ç¥ó `%s' ¤òɽ¸½¤Ç¤­¤Þ¤»¤ó" -#: aoutx.h:1643 +#: aoutx.h:1669 #, c-format -msgid "%s: can not represent section for symbol `%s' in a.out object file format" -msgstr "%s: a.out ¥ª¥Ö¥¸¥§¥¯¥È¥Õ¥¡¥¤¥ë·Á¼°¤Ç¤Ï¥·¥ó¥Ü¥ë `%s' ÍѤΥ»¥¯¥·¥ç¥ó¤òɽ¸½¤Ç¤­¤Þ¤»¤ó" +msgid "" +"%s: can not represent section for symbol `%s' in a.out object file format" +msgstr "" +"%s: a.out ¥ª¥Ö¥¸¥§¥¯¥È¥Õ¥¡¥¤¥ë·Á¼°¤Ç¤Ï¥·¥ó¥Ü¥ë `%s' ÍѤΥ»¥¯¥·¥ç¥ó¤òɽ¸½¤Ç¤­" +"¤Þ¤»¤ó" -#: aoutx.h:1645 +#: aoutx.h:1671 msgid "*unknown*" msgstr "*ÉÔ ÌÀ*" -#: aoutx.h:3684 +#: aoutx.h:3735 #, c-format msgid "%s: relocateable link from %s to %s not supported" msgstr "%s: %s ¤«¤é %s ¤Ø¤ÎºÆÇÛÃÖ²Äǽ¥ê¥ó¥¯¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: archive.c:1820 +#: archive.c:1826 msgid "Warning: writing archive was slow: rewriting timestamp\n" msgstr "·Ù¹ð: ½ñ¸Ë¤Ø¤Î½ñ¤­¹þ¤ß¤¬ÃÙ¤ì¤Þ¤·¤¿: ¥¿¥¤¥à¥¹¥¿¥ó¥×¤ò½ñ¤­´¹¤¨¤Þ¤¹\n" -#: archive.c:2086 +#: archive.c:2093 msgid "Reading archive file mod timestamp" msgstr "½ñ¸Ë¥Õ¥¡¥¤¥ë¤Î½¤Àµ»þ¹ïÆɹþ¤ßÃæ" #. FIXME: bfd can't call perror. -#: archive.c:2113 +#: archive.c:2120 msgid "Writing updated armap timestamp" msgstr "¹¹¿·¤µ¤ì¤¿ armap ¥¿¥¤¥à¥¹¥¿¥ó¥×½ñ¹þ¤ßÃæ" -#: bfd.c:273 +#: bfd.c:274 msgid "No error" msgstr "¥¨¥é¡¼¤Ï¤¢¤ê¤Þ¤»¤ó" -#: bfd.c:274 +#: bfd.c:275 msgid "System call error" msgstr "¥·¥¹¥Æ¥à¥³¡¼¥ë¥¨¥é¡¼" -#: bfd.c:275 +#: bfd.c:276 msgid "Invalid bfd target" msgstr "ÉÔŬÀÚ¤Ê bfd ¥¿¡¼¥²¥Ã¥È¤Ç¤¹" -#: bfd.c:276 +#: bfd.c:277 msgid "File in wrong format" msgstr "´Ö°ã¤Ã¤¿·Á¼°¤Î¥Õ¥¡¥¤¥ë" -#: bfd.c:277 +#: bfd.c:278 +#, fuzzy +msgid "Archive object file in wrong format" +msgstr "´Ö°ã¤Ã¤¿·Á¼°¤Î¥Õ¥¡¥¤¥ë" + +#: bfd.c:279 msgid "Invalid operation" msgstr "ÉÔŬÀÚ¤ÊÁàºî" -#: bfd.c:278 +#: bfd.c:280 msgid "Memory exhausted" msgstr "¥á¥â¥ê¤ò»È¤¤²Ì¤¿¤·¤Þ¤·¤¿" -#: bfd.c:279 +#: bfd.c:281 msgid "No symbols" msgstr "¥·¥ó¥Ü¥ë¤¬¤¢¤ê¤Þ¤»¤ó" -#: bfd.c:280 +#: bfd.c:282 msgid "Archive has no index; run ranlib to add one" -msgstr "½ñ¸Ë¤Ë¥¤¥ó¥Ç¥Ã¥¯¥¹¤¬¤¢¤ê¤Þ¤»¤ó -- Äɲ乤뤿¤á¤Ë ranlib ¤ò¼Â¹Ô¤·¤Þ¤·¤ç¤¦" +msgstr "" +"½ñ¸Ë¤Ë¥¤¥ó¥Ç¥Ã¥¯¥¹¤¬¤¢¤ê¤Þ¤»¤ó -- Äɲ乤뤿¤á¤Ë ranlib ¤ò¼Â¹Ô¤·¤Þ¤·¤ç¤¦" -#: bfd.c:281 +#: bfd.c:283 msgid "No more archived files" msgstr "¤³¤ì°Ê¾å½ñ¸Ë¥Õ¥¡¥¤¥ë¤Ï¤¢¤ê¤Þ¤»¤ó" -#: bfd.c:282 +#: bfd.c:284 msgid "Malformed archive" msgstr "¤ª¤«¤·¤Ê½ñ¸Ë¤Ç¤¹" -#: bfd.c:283 +#: bfd.c:285 msgid "File format not recognized" msgstr "¥Õ¥¡¥¤¥ë·Á¼°¤¬Ç§¼±¤Ç¤­¤Þ¤»¤ó" -#: bfd.c:284 +#: bfd.c:286 msgid "File format is ambiguous" msgstr "¥Õ¥¡¥¤¥ë·Á¼°¤¬Û£Ëæ¤Ç¤¹" -#: bfd.c:285 +#: bfd.c:287 msgid "Section has no contents" msgstr "¥»¥¯¥·¥ç¥ó¤ËÆâÍƤ¬¤¢¤ê¤Þ¤»¤ó" -#: bfd.c:286 +#: bfd.c:288 msgid "Nonrepresentable section on output" msgstr "½ÐÎϤËÂбþ¤¹¤ë¥»¥¯¥·¥ç¥ó¤¬¤¢¤ê¤Þ¤»¤ó" -#: bfd.c:287 +#: bfd.c:289 msgid "Symbol needs debug section which does not exist" msgstr "¸ºß¤·¤Æ¤¤¤Ê¤¤¥Ç¥Ð¥Ã¥°¥»¥¯¥·¥ç¥ó¤ò¥·¥ó¥Ü¥ë¤¬É¬ÍפȤ·¤Æ¤¤¤Þ¤¹" -#: bfd.c:288 +#: bfd.c:290 msgid "Bad value" msgstr "ÉÔÀµ¤ÊÃͤǤ¹" -#: bfd.c:289 +#: bfd.c:291 msgid "File truncated" msgstr "¥Õ¥¡¥¤¥ë¤¬ÅÓÀÚ¤ì¤Æ¤¤¤Þ¤¹" -#: bfd.c:290 +#: bfd.c:292 msgid "File too big" msgstr "¥Õ¥¡¥¤¥ë¤¬Â礭¤¹¤®¤Þ¤¹" -#: bfd.c:291 +#: bfd.c:293 msgid "#" msgstr "#<ÉÔŬÀڤʥ¨¥é¡¼¥³¡¼¥É>" -#: bfd.c:675 -#, c-format -msgid "bfd assertion fail %s:%d" +#: bfd.c:700 +#, fuzzy, c-format +msgid "BFD %s assertion fail %s:%d" msgstr "bfd ¥¢¥µ¡¼¥·¥ç¥ó¤¬¼ºÇÔ %s:%d" -#: bfd.c:693 -#, c-format -msgid "BFD internal error, aborting at %s line %d in %s\n" +#: bfd.c:719 +#, fuzzy, c-format +msgid "BFD %s internal error, aborting at %s line %d in %s\n" msgstr "BFD ÆâÉô¥¨¥é¡¼¡£%s ¤Î %d ¹ÔÌÜ %s ¤ÇÃæÃǤ·¤Þ¤·¤¿\n" -#: bfd.c:697 -#, c-format -msgid "BFD internal error, aborting at %s line %d\n" +#: bfd.c:723 +#, fuzzy, c-format +msgid "BFD %s internal error, aborting at %s line %d\n" msgstr "BFD ÆâÉô¥¨¥é¡¼¡£%s ¤Î %d ¹ÔÌܤÇÃæÃǤ·¤Þ¤·¤¿\n" -#: bfd.c:699 +#: bfd.c:725 msgid "Please report this bug.\n" msgstr "¤³¤Î¥Ð¥°¤òÊó¹ð¤·¤Æ¤¯¤À¤µ¤¤¡£\n" -#: binary.c:303 +#: binary.c:306 #, c-format msgid "Warning: Writing section `%s' to huge (ie negative) file offset 0x%lx." -msgstr "·Ù¹ð: ¥»¥¯¥·¥ç¥ó `%s' µðÂç(Îã Éé¿ô)¤Ê¥Õ¥¡¥¤¥ë¥ª¥Õ¥»¥Ã¥È 0x%lx ¤Ø¤Î½ñ¹þ¤ß¤Ç¤¹¡£" +msgstr "" +"·Ù¹ð: ¥»¥¯¥·¥ç¥ó `%s' µðÂç(Îã Éé¿ô)¤Ê¥Õ¥¡¥¤¥ë¥ª¥Õ¥»¥Ã¥È 0x%lx ¤Ø¤Î½ñ¹þ¤ß¤Ç" +"¤¹¡£" -#: coff-a29k.c:122 +#: coff-a29k.c:119 msgid "Missing IHCONST" msgstr "IHCONST ¤ò·ç¤¤¤Æ¤¤¤Þ¤¹" -#: coff-a29k.c:181 +#: coff-a29k.c:180 msgid "Missing IHIHALF" msgstr "IHIHALF ¤ò·ç¤¤¤Æ¤¤¤Þ¤¹" -#: coff-a29k.c:213 +#: coff-a29k.c:212 coff-or32.c:228 msgid "Unrecognized reloc" msgstr "ǧ¼±¤Ç¤­¤Ê¤¤ºÆÇÛÃ֤Ǥ¹" -#: coff-a29k.c:425 +#: coff-a29k.c:408 msgid "missing IHCONST reloc" msgstr "IHCONST ºÆÇÛÃÖ¤ò·ç¤¤¤Æ¤¤¤Þ¤¹" -#: coff-a29k.c:516 +#: coff-a29k.c:498 msgid "missing IHIHALF reloc" msgstr "IHIHALF ºÆÇÛÃÖ¤ò·ç¤¤¤Æ¤¤¤Þ¤¹" -#: coff-alpha.c:880 coff-alpha.c:917 +#: coff-alpha.c:881 coff-alpha.c:918 coff-alpha.c:1989 coff-mips.c:1433 msgid "GP relative relocation used when GP not defined" msgstr "GP ¤¬Ì¤ÄêµÁ¤Î»þ¤Ë GP ´ØÏ¢ºÆÇÛÃÖ¤¬»È¤ï¤ì¤Þ¤·¤¿" -#: coff-alpha.c:1486 elf64-alpha.c:4004 +#: coff-alpha.c:1485 msgid "using multiple gp values" msgstr "Ê£¿ô¤Î gp Ãͤò»ÈÍѤ¹¤ë¤³¤È¤Ë¤Ê¤ê¤Þ¤¹" -#: coff-alpha.c:1992 coff-mips.c:1434 -msgid "GP relative relocation when GP not defined" -msgstr "GP ¤¬Ì¤ÄêµÁ¤Î»þ¤Î GP ´ØÏ¢ºÆÇÛÃ֤Ǥ¹" - -#: coff-arm.c:1018 elf32-arm.h:246 +#: coff-arm.c:1051 elf32-arm.h:285 #, c-format msgid "%s: unable to find THUMB glue '%s' for `%s'" msgstr "%s: THUMB ¥°¥ë¡¼ '%s' (`%s' ÍÑ) ¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó" -#: coff-arm.c:1047 elf32-arm.h:281 +#: coff-arm.c:1080 elf32-arm.h:320 #, c-format msgid "%s: unable to find ARM glue '%s' for `%s'" msgstr "%s: ARM ¥°¥ë¡¼ '%s' (`%s' ÍÑ) ¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó" -#: coff-arm.c:1335 coff-arm.c:1430 elf32-arm.h:841 elf32-arm.h:946 +#: coff-arm.c:1375 coff-arm.c:1470 elf32-arm.h:886 elf32-arm.h:990 #, c-format msgid "%s(%s): warning: interworking not enabled." msgstr "%s(%s): ·Ù¹ð: interworking ¤¬Í­¸ú¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£" -#: coff-arm.c:1339 elf32-arm.h:949 +#: coff-arm.c:1379 elf32-arm.h:993 #, c-format msgid " first occurrence: %s: arm call to thumb" msgstr " ½é²óȯÀ¸: %s: arm ¤Î thumb ¸Æ¤Ó½Ð¤·" -#: coff-arm.c:1434 elf32-arm.h:844 +#: coff-arm.c:1474 elf32-arm.h:889 #, c-format msgid " first occurrence: %s: thumb call to arm" msgstr " ½é²óȯÀ¸: %s: thumb ¤Î arm ¸Æ¤Ó½Ð¤·" -#: coff-arm.c:1437 +#: coff-arm.c:1477 msgid " consider relinking with --support-old-code enabled" -msgstr " --support-old-code ¤òÍ­¸ú¤Ë¤·¤ÆºÆ¥ê¥ó¥¯¤¹¤ë¤³¤È¤ò¹Íθ¤·¤Æ¤ß¤Æ¤¯¤À¤µ¤¤" +msgstr "" +" --support-old-code ¤òÍ­¸ú¤Ë¤·¤ÆºÆ¥ê¥ó¥¯¤¹¤ë¤³¤È¤ò¹Íθ¤·¤Æ¤ß¤Æ¤¯¤À¤µ¤¤" -#: coff-arm.c:1726 coff-tic80.c:682 cofflink.c:2991 +#: coff-arm.c:1767 coff-tic80.c:686 cofflink.c:3017 #, c-format msgid "%s: bad reloc address 0x%lx in section `%s'" msgstr "%s: ÉÔÀµ¤ÊºÆÇÛÃÖ¥¢¥É¥ì¥¹ 0x%lx ¤¬¥»¥¯¥·¥ç¥ó `%s' Æâ¤Ë¤¢¤ê¤Þ¤¹" -#: coff-arm.c:2063 +#: coff-arm.c:2107 #, c-format msgid "%s: illegal symbol index in reloc: %d" msgstr "%s: ºÆÇÛÃÖÆâ¤Î¥·¥ó¥Ü¥ë¥¤¥ó¥Ç¥Ã¥¯¥¹¤¬ÉÔÀµ¤Ç¤¹: %d" -#: coff-arm.c:2191 +#: coff-arm.c:2235 #, c-format msgid "%s: ERROR: compiled for APCS-%d whereas target %s uses APCS-%d" -msgstr "%s: ¥¨¥é¡¼: APCS-%d ÍѤ˥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤¿¥¿¡¼¥²¥Ã¥È %s ¤Ë¤â¤«¤«¤ï¤é¤º APCS-%d ¤ò»È¤Ã¤Æ¤¤¤Þ¤¹" +msgstr "" +"%s: ¥¨¥é¡¼: APCS-%d ÍѤ˥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤¿¥¿¡¼¥²¥Ã¥È %s ¤Ë¤â¤«¤«¤ï¤é¤º APCS-%d " +"¤ò»È¤Ã¤Æ¤¤¤Þ¤¹" -#: coff-arm.c:2206 +#: coff-arm.c:2250 #, c-format -msgid "%s: ERROR: passes floats in float registers whereas target %s uses integer registers" -msgstr "%s: ¥¨¥é¡¼: ÉâÆ°¾®¿ô¥ì¥¸¥¹¥¿¤ËÉâÆ°¾®¿ô¤òÅϤ·¤Æ¤¤¤ë¤Ë¤â¤«¤«¤ï¤é¤º¡¢¥¿¡¼¥²¥Ã¥È %s ¤¬À°¿ô¥ì¥¸¥¹¥¿¤ò»È¤Ã¤Æ¤¤¤Þ¤¹" +msgid "" +"%s: ERROR: passes floats in float registers whereas target %s uses integer " +"registers" +msgstr "" +"%s: ¥¨¥é¡¼: ÉâÆ°¾®¿ô¥ì¥¸¥¹¥¿¤ËÉâÆ°¾®¿ô¤òÅϤ·¤Æ¤¤¤ë¤Ë¤â¤«¤«¤ï¤é¤º¡¢¥¿¡¼¥²¥Ã¥È " +"%s ¤¬À°¿ô¥ì¥¸¥¹¥¿¤ò»È¤Ã¤Æ¤¤¤Þ¤¹" -#: coff-arm.c:2209 +#: coff-arm.c:2253 #, c-format -msgid "%s: ERROR: passes floats in integer registers whereas target %s uses float registers" -msgstr "%s: ¥¨¥é¡¼: À°¿ô¥ì¥¸¥¹¥¿¤ËÉâÆ°¾®¿ô¤òÅϤ·¤Æ¤¤¤ë¤Ë¤â¤«¤«¤ï¤é¤º¡¢¥¿¡¼¥²¥Ã¥È %s ¤ÏÉâÆ°¾®¿ô¥ì¥¸¥¹¥¿¤ò»È¤Ã¤Æ¤¤¤Þ¤¹" +msgid "" +"%s: ERROR: passes floats in integer registers whereas target %s uses float " +"registers" +msgstr "" +"%s: ¥¨¥é¡¼: À°¿ô¥ì¥¸¥¹¥¿¤ËÉâÆ°¾®¿ô¤òÅϤ·¤Æ¤¤¤ë¤Ë¤â¤«¤«¤ï¤é¤º¡¢¥¿¡¼¥²¥Ã¥È %s " +"¤ÏÉâÆ°¾®¿ô¥ì¥¸¥¹¥¿¤ò»È¤Ã¤Æ¤¤¤Þ¤¹" -#: coff-arm.c:2224 +#: coff-arm.c:2268 #, c-format -msgid "%s: ERROR: compiled as position independent code, whereas target %s is absolute position" -msgstr "%s: ¥¨¥é¡¼: °ÌÃÖÈó°Í¸¥³¡¼¥É¤È¤·¤Æ¥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤¿¤Ë¤â¤«¤«¤ï¤é¤º¡¢¥¿¡¼¥²¥Ã¥È %s ¤ÏÀäÂаÌÃ֤ˤʤäƤ¤¤Þ¤¹" +msgid "" +"%s: ERROR: compiled as position independent code, whereas target %s is " +"absolute position" +msgstr "" +"%s: ¥¨¥é¡¼: °ÌÃÖÈó°Í¸¥³¡¼¥É¤È¤·¤Æ¥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤¿¤Ë¤â¤«¤«¤ï¤é¤º¡¢¥¿¡¼¥²¥Ã¥È " +"%s ¤ÏÀäÂаÌÃ֤ˤʤäƤ¤¤Þ¤¹" -#: coff-arm.c:2227 +#: coff-arm.c:2271 #, c-format -msgid "%s: ERROR: compiled as absolute position code, whereas target %s is position independent" -msgstr "%s: ¥¨¥é¡¼: ÀäÂаÌÃÖ¥³¡¼¥É¤È¤·¤Æ¥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤¿¤Ë¤â¤«¤«¤ï¤é¤º¡¢¥¿¡¼¥²¥Ã¥È %s ¤Ï°ÌÃÖÈó°Í¸¥³¡¼¥É¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹" +msgid "" +"%s: ERROR: compiled as absolute position code, whereas target %s is position " +"independent" +msgstr "" +"%s: ¥¨¥é¡¼: ÀäÂаÌÃÖ¥³¡¼¥É¤È¤·¤Æ¥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤¿¤Ë¤â¤«¤«¤ï¤é¤º¡¢¥¿¡¼¥²¥Ã¥È %" +"s ¤Ï°ÌÃÖÈó°Í¸¥³¡¼¥É¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹" -#: coff-arm.c:2256 -#, c-format -msgid "Warning: input file %s supports interworking, whereas %s does not." -msgstr "·Ù¹ð: ÆþÎÏ¥Õ¥¡¥¤¥ë %s ¤¬ interworking ¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤ë¤Ë¤â¤«¤«¤ï¤é¤º¡¢%s ¤Ï¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó¡£" +#: coff-arm.c:2300 +#, fuzzy, c-format +msgid "Warning: %s supports interworking, whereas %s does not." +msgstr "" +"·Ù¹ð: ÆþÎÏ¥Õ¥¡¥¤¥ë %s ¤¬ interworking ¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤ë¤Ë¤â¤«¤«¤ï¤é¤º¡¢%s ¤Ï" +"¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó¡£" -#: coff-arm.c:2259 -#, c-format -msgid "Warning: input file %s does not support interworking, whereas %s does." -msgstr "·Ù¹ð: ÆþÎÏ¥Õ¥¡¥¤¥ë %s ¤¬ interworking ¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤ë¤Ë¤â¤«¤«¤ï¤é¤º¡¢%s ¤Ï¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤¹¡£" +#: coff-arm.c:2303 +#, fuzzy, c-format +msgid "Warning: %s does not support interworking, whereas %s does." +msgstr "" +"·Ù¹ð: ÆþÎÏ¥Õ¥¡¥¤¥ë %s ¤¬ interworking ¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤ë¤Ë¤â¤«¤«¤ï¤é¤º¡¢%s ¤Ï" +"¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤¹¡£" -#: coff-arm.c:2286 +#: coff-arm.c:2330 #, c-format msgid "private flags = %x:" msgstr "private ¥Õ¥é¥° = %x:" -#: coff-arm.c:2294 elf32-arm.h:2210 +#: coff-arm.c:2338 elf32-arm.h:2408 msgid " [floats passed in float registers]" msgstr " [ÉâÆ°¾®¿ô¤¬ÉâÆ°¾®¿ô¥ì¥¸¥¹¥¿¤ËÅϤµ¤ì¤Þ¤·¤¿]" -#: coff-arm.c:2296 +#: coff-arm.c:2340 msgid " [floats passed in integer registers]" msgstr " [ÉâÆ°¾®¿ô¤¬À°¿ô¥ì¥¸¥¹¥¿¤ËÅϤµ¤ì¤Þ¤·¤¿]" -#: coff-arm.c:2299 elf32-arm.h:2213 +#: coff-arm.c:2343 elf32-arm.h:2411 msgid " [position independent]" msgstr " [°ÌÃÖÈó°Í¸]" -#: coff-arm.c:2301 +#: coff-arm.c:2345 msgid " [absolute position]" msgstr " [ÀäÂаÌÃÖ]" -#: coff-arm.c:2305 +#: coff-arm.c:2349 msgid " [interworking flag not initialised]" msgstr " [interworking ¥Õ¥é¥°¤Ï½é´ü²½¤µ¤ì¤Æ¤¤¤Þ¤»¤ó]" -#: coff-arm.c:2307 +#: coff-arm.c:2351 msgid " [interworking supported]" msgstr " [interworking ¤¬¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤¹]" -#: coff-arm.c:2309 +#: coff-arm.c:2353 msgid " [interworking not supported]" msgstr " [interworking ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó]" -#: coff-arm.c:2357 -#, c-format -msgid "Warning: Not setting interworking flag of %s, since it has already been specified as non-interworking" -msgstr "·Ù¹ð: ´û¤ËÈó interworking ¤È»ØÄꤵ¤ì¤Æ¤¤¤ë¤¿¤á¡¢%s ¤Î interworking ¥Õ¥é¥°¤òÀßÄꤷ¤Þ¤»¤ó" +#: coff-arm.c:2401 elf32-arm.h:2114 +#, fuzzy, c-format +msgid "" +"Warning: Not setting interworking flag of %s since it has already been " +"specified as non-interworking" +msgstr "" +"·Ù¹ð: ´û¤ËÈó interworking ¤È»ØÄꤵ¤ì¤Æ¤¤¤ë¤¿¤á¡¢%s ¤Î interworking ¥Õ¥é¥°¤òÀß" +"Äꤷ¤Þ¤»¤ó" -#: coff-arm.c:2361 +#: coff-arm.c:2405 elf32-arm.h:2118 #, c-format msgid "Warning: Clearing the interworking flag of %s due to outside request" msgstr "·Ù¹ð: Í׵ᳰ¤Î¤¿¤á %s ¤Î interworking ¥Õ¥é¥°¤ò¥¯¥ê¥¢¤·¤Þ¤¹" -#: coffcode.h:2136 +#: coff-i960.c:136 coff-i960.c:485 +msgid "uncertain calling convention for non-COFF symbol" +msgstr "Èó COFF ¥·¥ó¥Ü¥ëÍѤθƤӽФ·µ¬Ìó¤¬ÉÔ³ÎÄê¤Ç¤¹" + +#: coff-m68k.c:481 coff-mips.c:2431 elf32-m68k.c:2212 elf32-mips.c:9954 +msgid "unsupported reloc type" +msgstr "¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Ê¤¤ºÆÇÛÃÖ¥¿¥¤¥×¤Ç¤¹" + +#: coff-mips.c:875 elf32-mips.c:1997 elf64-mips.c:1739 +msgid "GP relative relocation when _gp not defined" +msgstr "GP ´ØÏ¢¤ÎºÆÇÛÃÖ¤¬ _gp ¤¬Ì¤ÄêµÁ¤Î»þÅÀ¤Ç¸½¤ì¤Þ¤·¤¿" + +#. No other sections should appear in -membedded-pic +#. code. +#: coff-mips.c:2468 +msgid "reloc against unsupported section" +msgstr "¥µ¥Ý¡¼¥È³°¤Î¥»¥¯¥·¥ç¥ó¤ËÂФ¹¤ëºÆÇÛÃ֤Ǥ¹" + +#: coff-mips.c:2476 +msgid "reloc not properly aligned" +msgstr "ºÆÇÛÃÖÎΰ褬ŬÀڤ˥¢¥é¥¤¥ó¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" + +#: coff-rs6000.c:2710 coff64-rs6000.c:1164 +#, c-format +msgid "%s: unsupported relocation type 0x%02x" +msgstr "%s: ºÆÇÛÃÖ¥¿¥¤¥× 0x%02x ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" + +#: coff-rs6000.c:2756 coff64-rs6000.c:1210 +#, c-format +msgid "%s: TOC reloc at 0x%x to symbol `%s' with no TOC entry" +msgstr "%s: TOC ºÆÇÛÃÖ(0x%x, ¥·¥ó¥Ü¥ë `%s') ¤Ë TOC ¥¨¥ó¥È¥ê¤¬¤¢¤ê¤Þ¤»¤ó" + +#: coff-rs6000.c:3006 coff64-rs6000.c:2060 +#, c-format +msgid "%s: symbol `%s' has unrecognized smclas %d" +msgstr "%s: ¥·¥ó¥Ü¥ë `%s' ¤Ïǧ¼±¤Ç¤­¤Ê¤¤ smclas %d ¤ò»ý¤Ã¤Æ¤¤¤Þ¤¹" + +#: coff-tic54x.c:279 coff-tic80.c:449 +#, c-format +msgid "Unrecognized reloc type 0x%x" +msgstr "ºÆÇÛÃÖ¥¿¥¤¥× 0x%x ¤òǧ¼±¤Ç¤­¤Þ¤»¤ó" + +#: coff-tic54x.c:390 coffcode.h:4868 +#, c-format +msgid "%s: warning: illegal symbol index %ld in relocs" +msgstr "%s: ·Ù¹ð: ÉÔÀµ¤Ê¥·¥ó¥Ü¥ë¥¤¥ó¥Ç¥Ã¥¯¥¹ %ld ¤¬ºÆÇÛÃÖÆ⥨¥ó¥È¥ê¤Ë¤¢¤ê¤Þ¤¹" + +#: coff-w65.c:363 +#, c-format +msgid "ignoring reloc %s\n" +msgstr "ºÆÇÛÃÖ %s ¤ò̵»ë¤·¤Þ¤¹\n" + +#: coffcode.h:1081 +#, fuzzy, c-format +msgid "%s (%s): Section flag %s (0x%x) ignored" +msgstr "bfd_set_section_flags (%s, %x) ¤¬¼ºÇÔ¤·¤Þ¤·¤¿" + +#: coffcode.h:2132 #, c-format msgid "Unrecognized TI COFF target id '0x%x'" msgstr "TI COFF ¥¿¡¼¥²¥Ã¥È id '0x%x' ¤òǧ¼±¤Ç¤­¤Þ¤»¤ó" -#: coffcode.h:4194 +#: coffcode.h:4257 #, c-format msgid "%s: warning: illegal symbol index %ld in line numbers" msgstr "%s: ·Ù¹ð: ÉÔÀµ¤Ê¥·¥ó¥Ü¥ë¥¤¥ó¥Ç¥Ã¥¯¥¹ %ld ¤¬¹ÔÈÖ¹æÃæ¤Ë¤¢¤ê¤Þ¤¹" -#: coffcode.h:4208 +#: coffcode.h:4271 #, c-format msgid "%s: warning: duplicate line number information for `%s'" msgstr "%s: ·Ù¹ð: `%s' ÍѤιÔÈÖ¹æ¾ðÊ󤬽ÅÊ£¤·¤Æ¤¤¤Þ¤¹" -#: coffcode.h:4568 +#: coffcode.h:4630 #, c-format msgid "%s: Unrecognized storage class %d for %s symbol `%s'" msgstr "%s: µ­²±¥¯¥é¥¹ %d (section %s, symbol `%s') ¤òǧ¼±¤Ç¤­¤Þ¤»¤ó" -#: coffcode.h:4699 +#: coffcode.h:4761 #, c-format msgid "warning: %s: local symbol `%s' has no section" msgstr "·Ù¹ð: %s: ¶É½ê¥·¥ó¥Ü¥ë `%s' ¤¬¥»¥¯¥·¥ç¥ó¤ò»ý¤Ã¤Æ¤¤¤Þ¤»¤ó" -#: coff-tic54x.c:376 coffcode.h:4810 -#, c-format -msgid "%s: warning: illegal symbol index %ld in relocs" -msgstr "%s: ·Ù¹ð: ÉÔÀµ¤Ê¥·¥ó¥Ü¥ë¥¤¥ó¥Ç¥Ã¥¯¥¹ %ld ¤¬ºÆÇÛÃÖÆ⥨¥ó¥È¥ê¤Ë¤¢¤ê¤Þ¤¹" - -#: coffcode.h:4848 +#: coffcode.h:4906 #, c-format msgid "%s: illegal relocation type %d at address 0x%lx" msgstr "%s: ÉÔÀµ¤ÊºÆÇÛÃÖ¥¿¥¤¥× %d ¤¬¥¢¥É¥ì¥¹ 0x%lx ¤Ç¸«¤Ä¤«¤ê¤Þ¤·¤¿" -#: coffgen.c:1631 +#: coffgen.c:1661 #, c-format msgid "%s: bad string table size %lu" msgstr "%s: ʸ»úÎó¥Æ¡¼¥Ö¥ë¥µ¥¤¥º %lu ¤ÏÉÔÀµ¤Ç¤¹" -#: coffgen.c:2093 -#, c-format -msgid "AUX tagndx %ld ttlsiz 0x%lx lnnos %ld next %ld" -msgstr "AUX tagndx %ld ttlsiz 0x%lx lnnos %ld next %ld" - -#: coff-i960.c:136 coff-i960.c:485 -msgid "uncertain calling convention for non-COFF symbol" -msgstr "Èó COFF ¥·¥ó¥Ü¥ëÍѤθƤӽФ·µ¬Ìó¤¬ÉÔ³ÎÄê¤Ç¤¹" - -#: cofflink.c:526 elflink.h:1648 +#: cofflink.c:536 elflink.h:1967 #, c-format msgid "Warning: type of symbol `%s' changed from %d to %d in %s" msgstr "·Ù¹ð: ¥·¥ó¥Ü¥ë `%s' ¤Î·¿¤Ï %d ¤«¤é %d ¤ËÊѹ¹¤µ¤ì¤Þ¤·¤¿ (%s Æâ)" -#: cofflink.c:2289 +#: cofflink.c:2317 #, c-format msgid "%s: relocs in section `%s', but it has no contents" msgstr "%s: ¥»¥¯¥·¥ç¥ó `%s' Æâ¤ÎºÆÇÛÃÖÎΰè¤ËÆâÍƤ¬¤¢¤ê¤Þ¤»¤ó" -#: cofflink.c:2628 coffswap.h:894 +#: cofflink.c:2653 coffswap.h:889 #, c-format msgid "%s: %s: reloc overflow: 0x%lx > 0xffff" msgstr "%s: %s: ºÆÇÛÃÖÎΰ褬¥ª¡¼¥Ð¡¼¥Õ¥í¡¼¤·¤Þ¤·¤¿: 0x%lx > 0xffff" -#: cofflink.c:2637 coffswap.h:880 +#: cofflink.c:2662 coffswap.h:876 #, c-format msgid "%s: warning: %s: line number overflow: 0x%lx > 0xffff" msgstr "%s: ·Ù¹ð: %s: ¹ÔÈֹ椬¥ª¡¼¥Ð¡¼¥Õ¥í¡¼¤·¤Þ¤·¤¿: 0x%lx > 0xffff" -#: coff-m68k.c:475 coff-mips.c:2432 elf32-m68k.c:2265 -msgid "unsupported reloc type" -msgstr "¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Ê¤¤ºÆÇÛÃÖ¥¿¥¤¥×¤Ç¤¹" - -#: coff-mips.c:875 elf32-mips.c:1417 -msgid "GP relative relocation when _gp not defined" -msgstr "GP ´ØÏ¢¤ÎºÆÇÛÃÖ¤¬ _gp ¤¬Ì¤ÄêµÁ¤Î»þÅÀ¤Ç¸½¤ì¤Þ¤·¤¿" - -#. No other sections should appear in -membedded-pic -#. code. -#: coff-mips.c:2469 -msgid "reloc against unsupported section" -msgstr "¥µ¥Ý¡¼¥È³°¤Î¥»¥¯¥·¥ç¥ó¤ËÂФ¹¤ëºÆÇÛÃ֤Ǥ¹" - -#: coff-mips.c:2477 -msgid "reloc not properly aligned" -msgstr "ºÆÇÛÃÖÎΰ褬ŬÀڤ˥¢¥é¥¤¥ó¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" - -#: coff-tic54x.c:263 coff-tic80.c:445 -#, c-format -msgid "Unrecognized reloc type 0x%x" -msgstr "ºÆÇÛÃÖ¥¿¥¤¥× 0x%x ¤òǧ¼±¤Ç¤­¤Þ¤»¤ó" +#: dwarf2.c:381 +#, fuzzy +msgid "Dwarf Error: Can't find .debug_str section." +msgstr "Dwarf ¥¨¥é¡¼: .debug_abbrev ¥»¥¯¥·¥ç¥ó¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó¡£" -#: coff-w65.c:369 -#, c-format -msgid "ignoring reloc %s\n" -msgstr "ºÆÇÛÃÖ %s ¤ò̵»ë¤·¤Þ¤¹\n" +#: dwarf2.c:398 +#, fuzzy, c-format +msgid "" +"Dwarf Error: DW_FORM_strp offset (%u) greater than or equal to .debug_str " +"size (%u)." +msgstr "" +"Dwarf ¥¨¥é¡¼: abbrev ¥ª¥Õ¥»¥Ã¥È (%u) ¤¬ abbrev ¥µ¥¤¥º (%u) ¤è¤êÂ礭¤¤¤Ç¤¹¡£" -#: dwarf2.c:423 +#: dwarf2.c:542 msgid "Dwarf Error: Can't find .debug_abbrev section." msgstr "Dwarf ¥¨¥é¡¼: .debug_abbrev ¥»¥¯¥·¥ç¥ó¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó¡£" -#: dwarf2.c:441 -#, c-format -msgid "Dwarf Error: Abbrev offset (%u) bigger than abbrev size (%u)." -msgstr "Dwarf ¥¨¥é¡¼: abbrev ¥ª¥Õ¥»¥Ã¥È (%u) ¤¬ abbrev ¥µ¥¤¥º (%u) ¤è¤êÂ礭¤¤¤Ç¤¹¡£" +#: dwarf2.c:559 +#, fuzzy, c-format +msgid "" +"Dwarf Error: Abbrev offset (%u) greater than or equal to .debug_abbrev size " +"(%u)." +msgstr "" +"Dwarf ¥¨¥é¡¼: abbrev ¥ª¥Õ¥»¥Ã¥È (%u) ¤¬ abbrev ¥µ¥¤¥º (%u) ¤è¤êÂ礭¤¤¤Ç¤¹¡£" -#: dwarf2.c:624 +#: dwarf2.c:756 #, c-format msgid "Dwarf Error: Invalid or unhandled FORM value: %d." msgstr "Dwarf ¥¨¥é¡¼: FORM Ãͤ¬ÉÔŬÀڤǤ¢¤ë¤«¡¢¼è¤ê°·¤¨¤Þ¤»¤ó: %d¡£" -#: dwarf2.c:697 +#: dwarf2.c:843 msgid "Dwarf Error: mangled line number section (bad file number)." msgstr "Dwarf ¥¨¥é¡¼: ¹ÔÈֹ楻¥¯¥·¥ç¥ó¤¬ÊÑ·Á¤µ¤ì¤Þ¤·¤¿¡ÊÉÔÀµ¤Ê¥Õ¥¡¥¤¥ëÈÖ¹æ¡Ë¡£" -#: dwarf2.c:782 +#: dwarf2.c:929 msgid "Dwarf Error: Can't find .debug_line section." msgstr "Dwarf ¥¨¥é¡¼: .debug_line ¥»¥¯¥·¥ç¥ó¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó¡£" -#: dwarf2.c:806 -#, c-format -msgid "Dwarf Error: Line offset (%u) bigger than line size (%u)." -msgstr "Dwarf ¥¨¥é¡¼: line ¥ª¥Õ¥»¥Ã¥È (%u) ¤¬ line ¥µ¥¤¥º (%u) ¤è¤êÂ礭¤¤¤Ç¤¹¡£" +#: dwarf2.c:952 +#, fuzzy, c-format +msgid "" +"Dwarf Error: Line offset (%u) greater than or equal to .debug_line size (%u)." +msgstr "" +"Dwarf ¥¨¥é¡¼: line ¥ª¥Õ¥»¥Ã¥È (%u) ¤¬ line ¥µ¥¤¥º (%u) ¤è¤êÂ礭¤¤¤Ç¤¹¡£" -#: dwarf2.c:973 +#: dwarf2.c:1143 msgid "Dwarf Error: mangled line number section." msgstr "Dwarf ¥¨¥é¡¼: ¹ÔÈֹ楻¥¯¥·¥ç¥ó¤¬ÊÑ·Á¤µ¤ì¤Þ¤·¤¿¡£" -#: dwarf2.c:1152 dwarf2.c:1306 +#: dwarf2.c:1318 dwarf2.c:1529 #, c-format msgid "Dwarf Error: Could not find abbrev number %d." msgstr "Dwarf ¥¨¥é¡¼: abbrev ÈÖ¹æ %d ¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó¤Ç¤·¤¿¡£" -#: dwarf2.c:1267 +#: dwarf2.c:1490 #, c-format -msgid "Dwarf Error: found dwarf version '%hu', this reader only handles version 2 information." -msgstr "Dwarf ¥¨¥é¡¼: dwarf ¥Ð¡¼¥¸¥ç¥ó '%hu' ¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿¤¬¡¢¥Ð¡¼¥¸¥ç¥ó 2 ¤Î¾ðÊó¤·¤«Æɤ߼è¤ì¤Þ¤»¤ó¡£" +msgid "" +"Dwarf Error: found dwarf version '%hu', this reader only handles version 2 " +"information." +msgstr "" +"Dwarf ¥¨¥é¡¼: dwarf ¥Ð¡¼¥¸¥ç¥ó '%hu' ¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿¤¬¡¢¥Ð¡¼¥¸¥ç¥ó 2 ¤Î¾ðÊó" +"¤·¤«Æɤ߼è¤ì¤Þ¤»¤ó¡£" -#: dwarf2.c:1274 +#: dwarf2.c:1497 #, c-format -msgid "Dwarf Error: found address size '%u', this reader can not handle sizes greater than '%u'." -msgstr "Dwarf ¥¨¥é¡¼: ¥¢¥É¥ì¥¹¥µ¥¤¥º '%u' ¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿¤¬¡¢'%u' ¤è¤êÂ礭¤Ê¥µ¥¤¥º¤Ï°·¤¨¤Þ¤»¤ó¡£" +msgid "" +"Dwarf Error: found address size '%u', this reader can not handle sizes " +"greater than '%u'." +msgstr "" +"Dwarf ¥¨¥é¡¼: ¥¢¥É¥ì¥¹¥µ¥¤¥º '%u' ¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿¤¬¡¢'%u' ¤è¤êÂ礭¤Ê¥µ¥¤¥º¤Ï" +"°·¤¨¤Þ¤»¤ó¡£" -#: dwarf2.c:1297 +#: dwarf2.c:1520 #, c-format msgid "Dwarf Error: Bad abbrev number: %d." msgstr "Dwarf ¥¨¥é¡¼: ÉÔÀµ¤Ê abbrev ÈÖ¹æ¤Ç¤¹: %d¡£" -#: ecoff.c:1323 +#: ecoff.c:1328 #, c-format msgid "Unknown basic type %d" msgstr "´ðËÜ·¿ %d ¤¬ÉÔÌÀ¤Ç¤¹" -#: ecoff.c:1592 -#, c-format -msgid "\n End+1 symbol: %ld" -msgstr "\n End+1 ¥·¥ó¥Ü¥ë: %ld" - -#: ecoff.c:1599 ecoff.c:1602 +#: ecoff.c:1597 #, c-format -msgid "\n First symbol: %ld" -msgstr "\n ºÇ½é¤Î¥·¥ó¥Ü¥ë: %ld" +msgid "" +"\n" +" End+1 symbol: %ld" +msgstr "" +"\n" +" End+1 ¥·¥ó¥Ü¥ë: %ld" -#: ecoff.c:1614 +#: ecoff.c:1604 ecoff.c:1607 #, c-format -msgid "\n End+1 symbol: %-7ld Type: %s" -msgstr "\n End+1 ¥·¥ó¥Ü¥ë: %-7ld ¥¿¥¤¥×: %s" +msgid "" +"\n" +" First symbol: %ld" +msgstr "" +"\n" +" ºÇ½é¤Î¥·¥ó¥Ü¥ë: %ld" -#: ecoff.c:1621 +#: ecoff.c:1619 #, c-format -msgid "\n Local symbol: %ld" -msgstr "\n ¶É½ê¥·¥ó¥Ü¥ë: %ld" +msgid "" +"\n" +" End+1 symbol: %-7ld Type: %s" +msgstr "" +"\n" +" End+1 ¥·¥ó¥Ü¥ë: %-7ld ¥¿¥¤¥×: %s" -#: ecoff.c:1629 +#: ecoff.c:1626 #, c-format -msgid "\n struct; End+1 symbol: %ld" -msgstr "\n struct; End+1 ¥·¥ó¥Ü¥ë: %ld" +msgid "" +"\n" +" Local symbol: %ld" +msgstr "" +"\n" +" ¶É½ê¥·¥ó¥Ü¥ë: %ld" #: ecoff.c:1634 #, c-format -msgid "\n union; End+1 symbol: %ld" -msgstr "\n union; End+1 ¥·¥ó¥Ü¥ë: %ld" +msgid "" +"\n" +" struct; End+1 symbol: %ld" +msgstr "" +"\n" +" struct; End+1 ¥·¥ó¥Ü¥ë: %ld" #: ecoff.c:1639 #, c-format -msgid "\n enum; End+1 symbol: %ld" -msgstr "\n enum; End+1 ¥·¥ó¥Ü¥ë: %ld" - -#: ecoff.c:1645 -#, c-format -msgid "\n Type: %s" -msgstr "\n ·¿: %s" +msgid "" +"\n" +" union; End+1 symbol: %ld" +msgstr "" +"\n" +" union; End+1 ¥·¥ó¥Ü¥ë: %ld" -#: elf32-arm.h:1179 +#: ecoff.c:1644 #, c-format -msgid "%s: Warning: Arm BLX instruction targets Arm function '%s'." -msgstr "%s: ·Ù¹ð: Arm BLX Ì¿Î᤬ Arm ¥Õ¥¡¥ó¥¯¥·¥ç¥ó '%s' ¤ò¥¿¡¼¥²¥Ã¥È¤Ë¤·¤Æ¤¤¤Þ¤¹¡£" +msgid "" +"\n" +" enum; End+1 symbol: %ld" +msgstr "" +"\n" +" enum; End+1 ¥·¥ó¥Ü¥ë: %ld" -#: elf32-arm.h:1375 +#: ecoff.c:1650 #, c-format -msgid "%s: Warning: Thumb BLX instruction targets thumb function '%s'." -msgstr "%s: ·Ù¹ð: Thumb BLX Ì¿Î᤬ thumb ¥Õ¥¡¥ó¥¯¥·¥ç¥ó '%s' ¤ò¥¿¡¼¥²¥Ã¥È¤Ë¤·¤Æ¤Þ¤¹¡£" +msgid "" +"\n" +" Type: %s" +msgstr "" +"\n" +" ·¿: %s" -#: elf-hppa.h:1369 elf-hppa.h:1402 elf32-arm.h:1853 elf32-i386.c:1428 -#: elf32-ppc.c:3096 elf32-sh.c:2997 elf64-x86-64.c:271 +#: elf-hppa.h:1366 elf-hppa.h:1399 elf32-ppc.c:3062 elf32-sh.c:3201 +#: elf64-x86-64.c:1275 #, c-format -msgid "%s: warning: unresolvable relocation against symbol `%s' from %s section" +msgid "" +"%s: warning: unresolvable relocation against symbol `%s' from %s section" msgstr "%s: ·Ù¹ð: ¥·¥ó¥Ü¥ë `%s' (%s ¥»¥¯¥·¥ç¥ó)¤ËÂФ¹¤ëºÆÇÛÃÖ¤ò²ò·è¤Ç¤­¤Þ¤»¤ó" -#: elf-m10200.c:455 elf-m10300.c:669 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-m32r.c:1265 elf32-v850.c:1672 +#: elf-m10200.c:463 elf-m10300.c:673 elf32-arm.h:2074 elf32-avr.c:835 +#: elf32-cris.c:1406 elf32-d10v.c:482 elf32-fr30.c:653 elf32-h8300.c:547 +#: elf32-i860.c:1048 elf32-m32r.c:1280 elf32-openrisc.c:455 elf32-v850.c:1691 +#: elf32-xstormy16.c:976 elf64-mmix.c:1164 msgid "internal error: out of range error" msgstr "ÆâÉô¥¨¥é¡¼: Èϰϳ°¥¨¥é¡¼¤Ç¤¹" -#: elf-m10200.c:459 elf-m10300.c:673 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-m32r.c:1269 elf32-v850.c:1676 +#: elf-m10200.c:467 elf-m10300.c:677 elf32-arm.h:2078 elf32-avr.c:839 +#: elf32-cris.c:1410 elf32-d10v.c:486 elf32-fr30.c:657 elf32-h8300.c:551 +#: elf32-i860.c:1052 elf32-m32r.c:1284 elf32-mips.c:7587 elf32-openrisc.c:459 +#: elf32-v850.c:1695 elf32-xstormy16.c:980 elf64-mips.c:4464 elf64-mmix.c:1168 msgid "internal error: unsupported relocation error" msgstr "ÆâÉô¥¨¥é¡¼: ̤¥µ¥Ý¡¼¥È¤ÎºÆÇÛÃÖ¥¨¥é¡¼" -#: elf-m10200.c:463 elf-m10300.c:677 elf32-arm.h:1935 elf32-d10v.c:486 -#: elf32-m32r.c:1273 +#: elf-m10200.c:471 elf-m10300.c:681 elf32-arm.h:2082 elf32-d10v.c:490 +#: elf32-h8300.c:555 elf32-m32r.c:1288 msgid "internal error: dangerous error" msgstr "ÆâÉô¥¨¥é¡¼: ´í¸±¤Ê¥¨¥é¡¼" -#: elf-m10200.c:467 elf-m10300.c:681 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-m32r.c:1277 elf32-v850.c:1696 +#: elf-m10200.c:475 elf-m10300.c:685 elf32-arm.h:2086 elf32-avr.c:847 +#: elf32-cris.c:1418 elf32-d10v.c:494 elf32-fr30.c:665 elf32-h8300.c:559 +#: elf32-i860.c:1060 elf32-m32r.c:1292 elf32-openrisc.c:467 elf32-v850.c:1715 +#: elf32-xstormy16.c:988 elf64-mmix.c:1176 msgid "internal error: unknown error" msgstr "ÆâÉô¥¨¥é¡¼: ÉÔÌÀ¤Ê¥¨¥é¡¼" -#: elf32-arm.h:1967 +#: elf.c:343 +#, c-format +msgid "%s: invalid string offset %u >= %lu for section `%s'" +msgstr "%s: ÉÔŬÀÚ¤Êʸ»úÎ󥪥ե»¥Ã¥È %u >= %lu (¥»¥¯¥·¥ç¥ó `%s' ÍÑ)" + +#: elf.c:448 +#, c-format +msgid "%s: invalid SHT_GROUP entry" +msgstr "" + +#: elf.c:529 +#, fuzzy, c-format +msgid "%s: no group info for section %s" +msgstr "%s: ¥í¡¼¥ÀºÆÇÛÃÖ¤¬Æɹþ¤ßÀìÍÑ¥»¥¯¥·¥ç¥ó %s ¤Ë¤¢¤ê¤Þ¤¹" + +#: elf.c:840 +msgid "" +"\n" +"Program Header:\n" +msgstr "" +"\n" +"¥×¥í¥°¥é¥à¥Ø¥Ã¥À:\n" + +#: elf.c:889 +msgid "" +"\n" +"Dynamic Section:\n" +msgstr "" +"\n" +"ưŪ¥»¥¯¥·¥ç¥ó:\n" + +#: elf.c:1018 +msgid "" +"\n" +"Version definitions:\n" +msgstr "" +"\n" +"¥Ð¡¼¥¸¥ç¥óÄêµÁ:\n" + +#: elf.c:1041 +msgid "" +"\n" +"Version References:\n" +msgstr "" +"\n" +"¥Ð¡¼¥¸¥ç¥ó»²¾È:\n" + +#: elf.c:1046 #, c-format -msgid "Warning: Not setting interwork flag of %s since it has already been specified as non-interworking" -msgstr "·Ù¹ð: Èó interworking ¤È´û¤Ë»ØÄꤵ¤ì¤Æ¤¤¤ë¤¿¤á¡¢%s ¤Î interwork ¥Õ¥é¥°¤ò¥»¥Ã¥È¤·¤Þ¤»¤ó" +msgid " required from %s:\n" +msgstr " %s ¤«¤é¤ÎÍ×µá:\n" -#: elf32-arm.h:1971 +#: elf.c:1682 #, c-format -msgid "Warning: Clearing the interwork flag of %s due to outside request" -msgstr "·Ù¹ð: Í׵ᳰ¤Î¤¿¤á %s ¤Î interwork ¥Õ¥é¥°¤ò¥¯¥ê¥¢¤·¤Þ¤¹" +msgid "%s: invalid link %lu for reloc section %s (index %u)" +msgstr "" +"%s: ÉÔŬÀڤʥê¥ó¥¯ %lu ¤òºÆÇÛÃÖ¥»¥¯¥·¥ç¥ó %s (index %u) ¤Ë¹Ô¤Ê¤Ã¤Æ¤¤¤Þ¤¹" -#: elf32-arm.h:2019 +#: elf.c:3296 #, c-format -msgid "Warning: Clearing the interwork flag in %s because non-interworking code in %s has been linked with it" -msgstr "·Ù¹ð: %s ¤Î interwork ¥Õ¥é¥°¤ò¥¯¥ê¥¢¤·¤Þ¤¹¡£%s ¤ÎÈó interworking ¥³¡¼¥É¤È°ì½ï¤Ë¥ê¥ó¥¯¤µ¤ì¤Æ¤¤¤ë¤«¤é¤Ç¤¹¡£" +msgid "%s: Not enough room for program headers (allocated %u, need %u)" +msgstr "%s: ¥×¥í¥°¥é¥à¥Ø¥Ã¥ÀÍѤζõ´Ö¤¬ÉÔ½½Ê¬¤Ç¤¹ (³ÎÊÝºÑ %u, Í× %u)" -#: elf32-arm.h:2113 +#: elf.c:3400 #, c-format -msgid "Error: %s compiled for EABI version %d, whereas %s is compiled for version %d" -msgstr "¥¨¥é¡¼: %s ¤Ï EABI ¥Ð¡¼¥¸¥ç¥ó %d ÍѤ˥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤¿¤Ë¤â¤«¤«¤ï¤é¤º¡¢%s ¤¬¥Ð¡¼¥¸¥ç¥ó %d ÍѤ˥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤Þ¤·¤¿" +msgid "%s: Not enough room for program headers, try linking with -N" +msgstr "" +"%s: ¥×¥í¥°¥é¥à¥Ø¥Ã¥ÀÍѤζõ´Ö¤¬ÉÔ½½Ê¬¤Ç¤¹¡£-N ¤òÉÕ¤±¤Æ¥ê¥ó¥¯¤·¤Æ¤ß¤Æ¤¯¤À¤µ¤¤" + +#: elf.c:3525 +#, fuzzy, c-format +msgid "" +"Error: First section in segment (%s) starts at 0x%x whereas the segment " +"starts at 0x%x" +msgstr "¥¨¥é¡¼: ¥»¥°¥á¥ó¥È (%s) ¤ÎºÇ½é¤Î¥»¥¯¥·¥ç¥ó¤¬ 0x%x ¤Ç»Ï¤Þ¤Ã¤Æ¤¤¤ë" -#: elf32-arm.h:2127 +#: elf.c:3811 #, c-format -msgid "Error: %s compiled for APCS-%d, whereas %s is compiled for APCS-%d" -msgstr "¥¨¥é¡¼: %s ¤Ï APCS-%d ÍѤ˥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤¿¤Ë¤â¤«¤«¤ï¤é¤º¡¢%s ¤¬ APCS-%d ÍѤ˥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤Þ¤·¤¿" +msgid "%s: warning: allocated section `%s' not in segment" +msgstr "%s: ·Ù¹ð: ³ÎÊݤµ¤ì¤¿¥»¥¯¥·¥ç¥ó `%s' ¤¬¥»¥°¥á¥ó¥ÈÆâ¤Ë¤¢¤ê¤Þ¤»¤ó" -#: elf32-arm.h:2138 +#: elf.c:4142 #, c-format -msgid "Error: %s passes floats in %s registers, whereas %s passes them in %s registers" -msgstr "¥¨¥é¡¼: %s ¤ÏÉâÆ°¾®¿ô¤ò%s¥ì¥¸¥¹¥¿¤ËÅϤ·¤Æ¤¤¤ë¤Ë¤â¤«¤«¤ï¤é¤º¡¢%s ¤¬¤½¤ì¤é¤ò%s¥ì¥¸¥¹¥¿¤ËÅϤ·¤Æ¤¤¤Þ¤¹" +msgid "%s: symbol `%s' required but not present" +msgstr "%s: ¥·¥ó¥Ü¥ë `%s' ¤¬Í׵ᤵ¤ì¤Þ¤·¤¿¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" + +#: elf.c:4395 +#, c-format +msgid "%s: warning: Empty loadable segment detected\n" +msgstr "%s: ·Ù¹ð: ¶õ¤Î¥í¡¼¥À¥Ö¥ë¥»¥°¥á¥ó¥È¤¬¸¡½Ð¤µ¤ì¤Þ¤·¤¿\n" + +#: elf.c:5808 +#, c-format +msgid "%s: unsupported relocation type %s" +msgstr "%s: ¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Ê¤¤ºÆÇÛÃÖ¥¿¥¤¥× %s ¤Ç¤¹" -#: elf32-arm.h:2141 elf32-arm.h:2143 -msgid "float" -msgstr "ÉâÆ°¾®¿ô" +#: elf32-arm.h:1224 +#, c-format +msgid "%s: Warning: Arm BLX instruction targets Arm function '%s'." +msgstr "" +"%s: ·Ù¹ð: Arm BLX Ì¿Î᤬ Arm ¥Õ¥¡¥ó¥¯¥·¥ç¥ó '%s' ¤ò¥¿¡¼¥²¥Ã¥È¤Ë¤·¤Æ¤¤¤Þ¤¹¡£" -#: elf32-arm.h:2141 elf32-arm.h:2143 -msgid "integer" -msgstr "À°¿ô" +#: elf32-arm.h:1420 +#, c-format +msgid "%s: Warning: Thumb BLX instruction targets thumb function '%s'." +msgstr "" +"%s: ·Ù¹ð: Thumb BLX Ì¿Î᤬ thumb ¥Õ¥¡¥ó¥¯¥·¥ç¥ó '%s' ¤ò¥¿¡¼¥²¥Ã¥È¤Ë¤·¤Æ¤Þ¤¹¡£" -#: elf32-arm.h:2150 +#: elf32-arm.h:1904 elf32-i386.c:1778 elf32-sh.c:3133 #, c-format -msgid "Error: %s uses %s floating point, whereas %s uses %s floating point" -msgstr "¥¨¥é¡¼: %s ¤Ï%sÉâÆ°¾®¿ôÅÀ¤ò»È¤Ã¤Æ¤¤¤ë¤Ë¤â¤«¤«¤ï¤é¤º¡¢%s ¤¬%sÉâÆ°¾®¿ôÅÀ¤ò»È¤Ã¤Æ¤¤¤Þ¤¹" +msgid "%s(%s+0x%lx): %s relocation against SEC_MERGE section" +msgstr "" -#: elf32-arm.h:2153 elf32-arm.h:2155 -msgid "soft" -msgstr "¥½¥Õ¥È" +#: elf32-arm.h:1998 +#, fuzzy, c-format +msgid "" +"%s: warning: unresolvable relocation %d against symbol `%s' from %s section" +msgstr "%s: ·Ù¹ð: ¥·¥ó¥Ü¥ë `%s' (%s ¥»¥¯¥·¥ç¥ó)¤ËÂФ¹¤ëºÆÇÛÃÖ¤ò²ò·è¤Ç¤­¤Þ¤»¤ó" -#: elf32-arm.h:2153 elf32-arm.h:2155 -msgid "hard" -msgstr "¥Ï¡¼¥É" +#: elf32-arm.h:2166 +#, fuzzy, c-format +msgid "" +"Warning: Clearing the interworking flag of %s because non-interworking code " +"in %s has been linked with it" +msgstr "" +"·Ù¹ð: %s ¤Î interwork ¥Õ¥é¥°¤ò¥¯¥ê¥¢¤·¤Þ¤¹¡£%s ¤ÎÈó interworking ¥³¡¼¥É¤È°ì½ï" +"¤Ë¥ê¥ó¥¯¤µ¤ì¤Æ¤¤¤ë¤«¤é¤Ç¤¹¡£" -#: elf32-arm.h:2162 +#: elf32-arm.h:2261 #, c-format -msgid "Warning: %s %s interworking, whereas %s %s" -msgstr "·Ù¹ð: %s ¤Ï interworking ¤ò%s¤Ë¤â¤«¤«¤ï¤é¤º¡¢%s ¤¬%s" +msgid "" +"Error: %s compiled for EABI version %d, whereas %s is compiled for version %d" +msgstr "" +"¥¨¥é¡¼: %s ¤Ï EABI ¥Ð¡¼¥¸¥ç¥ó %d ÍѤ˥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤¿¤Ë¤â¤«¤«¤ï¤é¤º¡¢%s ¤¬" +"¥Ð¡¼¥¸¥ç¥ó %d ÍѤ˥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤Þ¤·¤¿" -#: elf32-arm.h:2165 -msgid "supports" -msgstr "¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤ë" +#: elf32-arm.h:2275 +#, c-format +msgid "Error: %s compiled for APCS-%d, whereas %s is compiled for APCS-%d" +msgstr "" +"¥¨¥é¡¼: %s ¤Ï APCS-%d ÍѤ˥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤¿¤Ë¤â¤«¤«¤ï¤é¤º¡¢%s ¤¬ APCS-%d ÍѤË" +"¥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤Þ¤·¤¿" -#: elf32-arm.h:2165 -msgid "does not support" -msgstr "¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó" +#: elf32-arm.h:2287 +#, fuzzy, c-format +msgid "" +"Error: %s passes floats in FP registers, whereas %s passes them in integer " +"registers" +msgstr "" +"¥¨¥é¡¼: %s ¤ÏÉâÆ°¾®¿ô¤ò%s¥ì¥¸¥¹¥¿¤ËÅϤ·¤Æ¤¤¤ë¤Ë¤â¤«¤«¤ï¤é¤º¡¢%s ¤¬¤½¤ì¤é¤ò%s" +"¥ì¥¸¥¹¥¿¤ËÅϤ·¤Æ¤¤¤Þ¤¹" -#: elf32-arm.h:2167 -msgid "does not" -msgstr "¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó" +#: elf32-arm.h:2292 +#, fuzzy, c-format +msgid "" +"Error: %s passes floats in integer registers, whereas %s passes them in FP " +"registers" +msgstr "" +"¥¨¥é¡¼: %s ¤ÏÉâÆ°¾®¿ô¤ò%s¥ì¥¸¥¹¥¿¤ËÅϤ·¤Æ¤¤¤ë¤Ë¤â¤«¤«¤ï¤é¤º¡¢%s ¤¬¤½¤ì¤é¤ò%s" +"¥ì¥¸¥¹¥¿¤ËÅϤ·¤Æ¤¤¤Þ¤¹" -#: elf32-arm.h:2167 -msgid "does" -msgstr "¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤¹" +#: elf32-arm.h:2303 +#, fuzzy, c-format +msgid "Error: %s uses VFP instructions, whereas %s uses FPA instructions" +msgstr "" +"¥¨¥é¡¼: %s ¤Ï%sÉâÆ°¾®¿ôÅÀ¤ò»È¤Ã¤Æ¤¤¤ë¤Ë¤â¤«¤«¤ï¤é¤º¡¢%s ¤¬%sÉâÆ°¾®¿ôÅÀ¤ò»È¤Ã" +"¤Æ¤¤¤Þ¤¹" + +#: elf32-arm.h:2308 +#, fuzzy, c-format +msgid "Error: %s uses FPA instructions, whereas %s uses VFP instructions" +msgstr "" +"¥¨¥é¡¼: %s ¤Ï%sÉâÆ°¾®¿ôÅÀ¤ò»È¤Ã¤Æ¤¤¤ë¤Ë¤â¤«¤«¤ï¤é¤º¡¢%s ¤¬%sÉâÆ°¾®¿ôÅÀ¤ò»È¤Ã" +"¤Æ¤¤¤Þ¤¹" + +#: elf32-arm.h:2328 +#, fuzzy, c-format +msgid "Error: %s uses software FP, whereas %s uses hardware FP" +msgstr "" +"¥¨¥é¡¼: %s ¤Ï%sÉâÆ°¾®¿ôÅÀ¤ò»È¤Ã¤Æ¤¤¤ë¤Ë¤â¤«¤«¤ï¤é¤º¡¢%s ¤¬%sÉâÆ°¾®¿ôÅÀ¤ò»È¤Ã" +"¤Æ¤¤¤Þ¤¹" + +#: elf32-arm.h:2333 +#, fuzzy, c-format +msgid "Error: %s uses hardware FP, whereas %s uses software FP" +msgstr "" +"¥¨¥é¡¼: %s ¤Ï%sÉâÆ°¾®¿ôÅÀ¤ò»È¤Ã¤Æ¤¤¤ë¤Ë¤â¤«¤«¤ï¤é¤º¡¢%s ¤¬%sÉâÆ°¾®¿ôÅÀ¤ò»È¤Ã" +"¤Æ¤¤¤Þ¤¹" + +#: elf32-arm.h:2348 +#, fuzzy, c-format +msgid "Warning: %s supports interworking, whereas %s does not" +msgstr "" +"·Ù¹ð: ÆþÎÏ¥Õ¥¡¥¤¥ë %s ¤¬ interworking ¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤ë¤Ë¤â¤«¤«¤ï¤é¤º¡¢%s ¤Ï" +"¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó¡£" + +#: elf32-arm.h:2355 +#, fuzzy, c-format +msgid "Warning: %s does not support interworking, whereas %s does" +msgstr "" +"·Ù¹ð: ÆþÎÏ¥Õ¥¡¥¤¥ë %s ¤¬ interworking ¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤ë¤Ë¤â¤«¤«¤ï¤é¤º¡¢%s ¤Ï" +"¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤¹¡£" #. Ignore init flag - it may not be set, despite the flags field #. containing valid data. -#: elf32-arm.h:2193 elf32-cris.c:615 elf32-m68k.c:430 elf32-mips.c:2695 +#: elf32-arm.h:2386 elf32-cris.c:2991 elf32-m68k.c:410 elf32-mips.c:3242 #, c-format msgid "private flags = %lx:" msgstr "private ¥Õ¥é¥° = %lx:" -#: elf32-arm.h:2202 +#: elf32-arm.h:2395 msgid " [interworking enabled]" msgstr " [interworking ¤ÏÍ­¸ú]" -#: elf32-arm.h:2205 +#: elf32-arm.h:2398 msgid " [APCS-26]" msgstr " [APCS-26]" -#: elf32-arm.h:2207 +#: elf32-arm.h:2400 msgid " [APCS-32]" msgstr " [APCS-32]" -#: elf32-arm.h:2216 +#: elf32-arm.h:2403 +msgid " [VFP float format]" +msgstr "" + +#: elf32-arm.h:2405 +msgid " [FPA float format]" +msgstr "" + +#: elf32-arm.h:2414 msgid " [new ABI]" msgstr " [¿· ABI]" -#: elf32-arm.h:2219 +#: elf32-arm.h:2417 msgid " [old ABI]" msgstr " [µì ABI]" -#: elf32-arm.h:2222 +#: elf32-arm.h:2420 msgid " [software FP]" msgstr " [¥½¥Õ¥È¥¦¥§¥¢ÉâÆ°¾®¿ôÅÀ]" -#: elf32-arm.h:2229 +#: elf32-arm.h:2428 msgid " [Version1 EABI]" msgstr " [¥Ð¡¼¥¸¥ç¥ó1 EABI]" -#: elf32-arm.h:2232 +#: elf32-arm.h:2431 elf32-arm.h:2442 msgid " [sorted symbol table]" msgstr " [¥½¡¼¥ÈºÑ¥·¥ó¥Ü¥ë¥Æ¡¼¥Ö¥ë]" -#: elf32-arm.h:2234 +#: elf32-arm.h:2433 elf32-arm.h:2444 msgid " [unsorted symbol table]" msgstr " [̤¥½¡¼¥È¥·¥ó¥Ü¥ë¥Æ¡¼¥Ö¥ë]" -#: elf32-arm.h:2240 -msgid " " +#: elf32-arm.h:2439 +#, fuzzy +msgid " [Version2 EABI]" +msgstr " [¥Ð¡¼¥¸¥ç¥ó1 EABI]" + +#: elf32-arm.h:2447 +msgid " [dynamic symbols use segment index]" +msgstr "" + +#: elf32-arm.h:2450 +msgid " [mapping symbols precede others]" +msgstr "" + +#: elf32-arm.h:2457 +msgid " " msgstr " " -#: elf32-arm.h:2247 +#: elf32-arm.h:2464 msgid " [relocatable executable]" msgstr " [ºÆÇÛÃÖ²Äǽ¼Â¹Ô¥Õ¥¡¥¤¥ë]" -#: elf32-arm.h:2250 +#: elf32-arm.h:2467 msgid " [has entry point]" msgstr " [¥¨¥ó¥È¥ê¥Ý¥¤¥ó¥È¤ò»ý¤Ã¤Æ¤¤¤Þ¤¹]" -#: elf32-arm.h:2255 +#: elf32-arm.h:2472 msgid "" msgstr "<¥Õ¥é¥°¥Ó¥Ã¥È¥»¥Ã¥È¤òǧ¼±¤Ç¤­¤Þ¤»¤ó>" -#: elf32-avr.c:850 elf32-cris.c:439 elf32-fr30.c:659 elf32-i860.c:1059 -#: elf32-v850.c:1680 +#: elf32-avr.c:843 elf32-cris.c:1414 elf32-fr30.c:661 elf32-i860.c:1056 +#: elf32-openrisc.c:463 elf32-v850.c:1699 elf32-xstormy16.c:984 +#: elf64-mmix.c:1172 msgid "internal error: dangerous relocation" msgstr "ÆâÉô¥¨¥é¡¼: ´í¸±¤ÊºÆÇÛÃ֤Ǥ¹" -#: elf32-cris.c:618 +#: elf32-cris.c:949 +#, fuzzy, c-format +msgid "%s: unresolvable relocation %s against symbol `%s' from %s section" +msgstr "%s: ·Ù¹ð: ¥·¥ó¥Ü¥ë `%s' (%s ¥»¥¯¥·¥ç¥ó)¤ËÂФ¹¤ëºÆÇÛÃÖ¤ò²ò·è¤Ç¤­¤Þ¤»¤ó" + +#: elf32-cris.c:1012 +#, fuzzy, c-format +msgid "" +"%s: No PLT nor GOT for relocation %s against symbol `%s' from %s section" +msgstr "%s: ·Ù¹ð: ¥·¥ó¥Ü¥ë `%s' (%s ¥»¥¯¥·¥ç¥ó)¤ËÂФ¹¤ëºÆÇÛÃÖ¤ò²ò·è¤Ç¤­¤Þ¤»¤ó" + +#: elf32-cris.c:1015 elf32-cris.c:1142 +msgid "[whose name is lost]" +msgstr "" + +#: elf32-cris.c:1131 +#, fuzzy, c-format +msgid "" +"%s: relocation %s with non-zero addend %d against local symbol from %s " +"section" +msgstr "%s: ·Ù¹ð: ¥·¥ó¥Ü¥ë `%s' (%s ¥»¥¯¥·¥ç¥ó)¤ËÂФ¹¤ëºÆÇÛÃÖ¤ò²ò·è¤Ç¤­¤Þ¤»¤ó" + +#: elf32-cris.c:1138 +#, fuzzy, c-format +msgid "" +"%s: relocation %s with non-zero addend %d against symbol `%s' from %s section" +msgstr "%s: ·Ù¹ð: ¥·¥ó¥Ü¥ë `%s' (%s ¥»¥¯¥·¥ç¥ó)¤ËÂФ¹¤ëºÆÇÛÃÖ¤ò²ò·è¤Ç¤­¤Þ¤»¤ó" + +#: elf32-cris.c:1156 +#, fuzzy, c-format +msgid "" +"%s: relocation %s is not allowed for global symbol: `%s' from %s section" +msgstr "%s: ºÆÇÛÃÖ %s ¤Ï¥·¥ó¥Ü¥ë %s ÍѤΤâ¤Î¤È¤·¤Æ¤Ï¤Þ¤À¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" + +#: elf32-cris.c:1171 +#, fuzzy, c-format +msgid "%s: relocation %s in section %s with no GOT created" +msgstr "%s: ¥»¥¯¥·¥ç¥ó `%s' Æâ¤ÎºÆÇÛÃÖÎΰè¤ËÆâÍƤ¬¤¢¤ê¤Þ¤»¤ó" + +#: elf32-cris.c:1289 +#, fuzzy, c-format +msgid "%s: Internal inconsistency; no relocation section %s" +msgstr "%s ÍѤκÆÇÛÃÖ¥»¥¯¥·¥ç¥ó¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó" + +#: elf32-cris.c:2523 +#, fuzzy, c-format +msgid "" +"%s, section %s:\n" +" relocation %s should not be used in a shared object; recompile with -fPIC" +msgstr "" +"%s: ºÆÇÛÃÖ %s ¤Ï¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È¤òºîÀ®¤·¤¿¤È¤­¤Ë¤Ï»È¤¦¤Ù¤­¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó -- -" +"fPIC ¤ò¤Ä¤±¤ÆºÆ¥³¥ó¥Ñ¥¤¥ë¤·¤Æ¤¯¤À¤µ¤¤" + +#: elf32-cris.c:2994 msgid " [symbols have a _ prefix]" msgstr " [ _ ÀÜƬ¼­¤Ä¤­¥·¥ó¥Ü¥ë]" -#: elf32-cris.c:657 +#: elf32-cris.c:3033 #, c-format msgid "%s: uses _-prefixed symbols, but writing file with non-prefixed symbols" -msgstr "%s: _ ÀÜƬ¼­¥·¥ó¥Ü¥ë¤ò»È¤Ã¤Æ¤¤¤Þ¤¹¤¬¡¢¥Õ¥¡¥¤¥ë¤ËÀÜƬ¼­Ìµ¤·¤Ç½ñ¤­¹þ¤ß¤Þ¤¹" +msgstr "" +"%s: _ ÀÜƬ¼­¥·¥ó¥Ü¥ë¤ò»È¤Ã¤Æ¤¤¤Þ¤¹¤¬¡¢¥Õ¥¡¥¤¥ë¤ËÀÜƬ¼­Ìµ¤·¤Ç½ñ¤­¹þ¤ß¤Þ¤¹" -#: elf32-cris.c:658 +#: elf32-cris.c:3034 #, c-format msgid "%s: uses non-prefixed symbols, but writing file with _-prefixed symbols" -msgstr "%s: ÀÜƬ¼­Ìµ¤·¤Î¥·¥ó¥Ü¥ë¤ò»È¤Ã¤Æ¤¤¤Þ¤¹¤¬¡¢¥Õ¥¡¥¤¥ë¤Ë¤Ï _ ÀÜƬ¼­ÉÕ¤­¤Ç½ñ¤­¹þ¤ß¤Þ¤¹" +msgstr "" +"%s: ÀÜƬ¼­Ìµ¤·¤Î¥·¥ó¥Ü¥ë¤ò»È¤Ã¤Æ¤¤¤Þ¤¹¤¬¡¢¥Õ¥¡¥¤¥ë¤Ë¤Ï _ ÀÜƬ¼­ÉÕ¤­¤Ç½ñ¤­¹þ¤ß" +"¤Þ¤¹" -#: elf32-hppa.c:606 +#: elf32-gen.c:82 elf64-gen.c:82 #, c-format -msgid "%s(%s+0x%lx): cannot find stub entry %s" -msgstr "%s(%s+0x%lx): ¥¹¥¿¥Ö¥¨¥ó¥È¥ê %s ¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó" +msgid "%s: Relocations in generic ELF (EM: %d)" +msgstr "" -#: elf32-hppa.c:667 +#: elf32-hppa.c:646 #, c-format msgid "%s: cannot create stub entry %s" msgstr "%s: ¥¹¥¿¥Ö¥¨¥ó¥È¥ê %s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" -#: elf32-hppa.c:859 -#, c-format -msgid "%s(%s+0x%lx): cannot relocate %s, recompile with -ffunction-sections" -msgstr "%s(%s+0x%lx): %s ¤òºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó¡£-ffunction-sections ¤òÉÕ¤±¤ÆºÆ¥³¥ó¥Ñ¥¤¥ë¤·¤Þ¤·¤ç¤¦" - -#: elf32-hppa.c:872 elf32-hppa.c:1568 +#: elf32-hppa.c:937 elf32-hppa.c:3545 #, c-format -msgid "Could not find relocation section for %s" -msgstr "%s ÍѤκÆÇÛÃÖ¥»¥¯¥·¥ç¥ó¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó" +msgid "%s(%s+0x%lx): cannot reach %s, recompile with -ffunction-sections" +msgstr "" +"%s(%s+0x%lx): %s ¤ËÆϤ­¤Þ¤»¤ó¡£-ffunction-sections ¤òÉÕ¤±¤ÆºÆ¥³¥ó¥Ñ¥¤¥ë¤·¤Æ¤¯" +"¤À¤µ¤¤" -#: elf32-hppa.c:1011 elf32-hppa.c:3362 +#: elf32-hppa.c:1312 #, c-format -msgid "%s(%s+0x%lx): cannot reach %s, recompile with -ffunction-sections" -msgstr "%s(%s+0x%lx): %s ¤ËÆϤ­¤Þ¤»¤ó¡£-ffunction-sections ¤òÉÕ¤±¤ÆºÆ¥³¥ó¥Ñ¥¤¥ë¤·¤Æ¤¯¤À¤µ¤¤" +msgid "" +"%s: relocation %s can not be used when making a shared object; recompile " +"with -fPIC" +msgstr "" +"%s: ºÆÇÛÃÖ %s ¤Ï¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È¤òºîÀ®¤·¤¿¤È¤­¤Ë¤Ï»È¤¨¤Þ¤»¤ó -- -fPIC ¤òÉÕ¤±" +"¤ÆºÆ¥³¥ó¥Ñ¥¤¥ë¤·¤Æ¤¯¤À¤µ¤¤" -#: elf32-hppa.c:1323 +#: elf32-hppa.c:1332 #, c-format -msgid "%s: relocation %s can not be used when making a shared object; recompile with -fPIC" -msgstr "%s: ºÆÇÛÃÖ %s ¤Ï¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È¤òºîÀ®¤·¤¿¤È¤­¤Ë¤Ï»È¤¨¤Þ¤»¤ó -- -fPIC ¤òÉÕ¤±¤ÆºÆ¥³¥ó¥Ñ¥¤¥ë¤·¤Æ¤¯¤À¤µ¤¤" +msgid "" +"%s: relocation %s should not be used when making a shared object; recompile " +"with -fPIC" +msgstr "" +"%s: ºÆÇÛÃÖ %s ¤Ï¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È¤òºîÀ®¤·¤¿¤È¤­¤Ë¤Ï»È¤¦¤Ù¤­¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó -- -" +"fPIC ¤ò¤Ä¤±¤ÆºÆ¥³¥ó¥Ñ¥¤¥ë¤·¤Æ¤¯¤À¤µ¤¤" -#: elf32-hppa.c:1343 +#: elf32-hppa.c:1525 #, c-format -msgid "%s: relocation %s should not be used when making a shared object; recompile with -fPIC" -msgstr "%s: ºÆÇÛÃÖ %s ¤Ï¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È¤òºîÀ®¤·¤¿¤È¤­¤Ë¤Ï»È¤¦¤Ù¤­¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó -- -fPIC ¤ò¤Ä¤±¤ÆºÆ¥³¥ó¥Ñ¥¤¥ë¤·¤Æ¤¯¤À¤µ¤¤" +msgid "Could not find relocation section for %s" +msgstr "%s ÍѤκÆÇÛÃÖ¥»¥¯¥·¥ç¥ó¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó" -#: elf32-hppa.c:2755 +#: elf32-hppa.c:2867 #, c-format msgid "%s: duplicate export stub %s" msgstr "%s: export ¥¹¥¿¥Ö %s ¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹" -#: elf32-hppa.c:3253 +#: elf32-hppa.c:3429 #, c-format msgid "%s(%s+0x%lx): fixing %s" msgstr "%s(%s+0x%lx): %s ¤ò½¤Éü¤·¤Þ¤¹" -#: elf32-hppa.c:3856 +#: elf32-hppa.c:4069 #, c-format msgid "%s(%s+0x%lx): cannot handle %s for %s" msgstr "%s(%s+0x%lx): %s (%s) ¤ò¼è¤ê°·¤¨¤Þ¤»¤ó" -#: elf32-hppa.c:4173 +#: elf32-hppa.c:4408 msgid ".got section not immediately after .plt section" msgstr ".got ¥»¥¯¥·¥ç¥ó¤¬ .plt ¥»¥¯¥·¥ç¥ó¤Îľ¸å¤Ë¤¢¤ê¤Þ¤»¤ó" -#: elf32-i386.c:273 +#: elf32-i386.c:298 #, c-format msgid "%s: invalid relocation type %d" msgstr "%s: ºÆÇÛÃÖ¥¿¥¤¥× %d ¤ÏÉÔŬÀڤǤ¹" -#: elf32-m32r.c:916 +#: elf32-i386.c:718 elf32-s390.c:636 elf64-s390.c:595 +#, fuzzy, c-format +msgid "%s: bad symbol index: %d" +msgstr "%s: ºÆÇÛÃÖÆâ¤Î¥·¥ó¥Ü¥ë¥¤¥ó¥Ç¥Ã¥¯¥¹¤¬ÉÔÀµ¤Ç¤¹: %d" + +#: elf32-i386.c:863 elf32-s390.c:790 elf64-ppc.c:2198 elf64-s390.c:759 +#, fuzzy, c-format +msgid "%s: bad relocation section name `%s'" +msgstr "%s: ÉÔÀµ¤Ê¥»¥¯¥·¥ç¥ó̾ `%s' ¤Ç¤¹" + +#: elf32-i386.c:2069 elf32-s390.c:1951 elf64-ppc.c:4124 elf64-s390.c:1955 +#, fuzzy, c-format +msgid "%s(%s+0x%lx): unresolvable relocation against symbol `%s'" +msgstr "%s: ·Ù¹ð: ¥·¥ó¥Ü¥ë `%s' (%s ¥»¥¯¥·¥ç¥ó)¤ËÂФ¹¤ëºÆÇÛÃÖ¤ò²ò·è¤Ç¤­¤Þ¤»¤ó" + +#: elf32-i386.c:2107 elf32-s390.c:1989 elf64-s390.c:1993 +#, fuzzy, c-format +msgid "%s(%s+0x%lx): reloc against `%s': error %d" +msgstr "%s(%s+0x%lx): %s (%s) ¤ò¼è¤ê°·¤¨¤Þ¤»¤ó" + +#: elf32-m32r.c:923 msgid "SDA relocation when _SDA_BASE_ not defined" msgstr "_SDA_BASE_ ¤¬Ì¤ÄêµÁ¤Î»þÅÀ¤Ç¤Î SDA ºÆÇÛÃ֤Ǥ¹" -#: elf32-m32r.c:1000 elf32-ppc.c:2963 +#: elf32-ia64.c:3537 elf32-m32r.c:1007 elf32-ppc.c:2930 elf64-ia64.c:3537 #, c-format msgid "%s: unknown relocation type %d" msgstr "%s: ºÆÇÛÃÖ¥¿¥¤¥× %d ¤¬ÉÔÌÀ¤Ç¤¹" -#: elf32-m32r.c:1208 +#: elf32-m32r.c:1223 #, c-format msgid "%s: The target (%s) of an %s relocation is in the wrong section (%s)" msgstr "%s: ¥¿¡¼¥²¥Ã¥È (%s, %s ºÆÇÛÃÖ) ¤¬´Ö°ã¤Ã¤¿¥»¥¯¥·¥ç¥ó (%s) Æâ¤Ë¤¢¤ê¤Þ¤¹" -#: elf32-m32r.c:2010 +#: elf32-m32r.c:2000 #, c-format msgid "%s: Instruction set mismatch with previous modules" msgstr "%s: Ì¿Î᥻¥Ã¥È¤¬°ÊÁ°¤Î¥â¥¸¥å¡¼¥ë¤ÈŬ¹ç¤·¤Þ¤»¤ó" -#: elf32-m32r.c:2033 +#: elf32-m32r.c:2023 #, c-format msgid "private flags = %lx" msgstr "private ¥Õ¥é¥° = %lx" -#: elf32-m32r.c:2038 +#: elf32-m32r.c:2028 msgid ": m32r instructions" msgstr ": m32r Ì¿Îá" -#: elf32-m32r.c:2039 +#: elf32-m32r.c:2029 msgid ": m32rx instructions" msgstr ": m32rx Ì¿Îá" -#: elf32-m68k.c:433 +#: elf32-m68k.c:413 msgid " [cpu32]" msgstr " [cpu32]" -#: elf32-mcore.c:366 elf32-mcore.c:493 +#: elf32-mcore.c:353 elf32-mcore.c:479 #, c-format msgid "%s: Relocation %s (%d) is not currently supported.\n" msgstr "%s: ºÆÇÛÃÖ %s (%d) ¤Ï¸½ºß¤Î¤È¤³¤í¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n" -#: elf32-mcore.c:452 +#: elf32-mcore.c:438 #, c-format msgid "%s: Unknown relocation type %d\n" msgstr "%s: ºÆÇÛÃÖ¥¿¥¤¥× %d ¤ÏÉÔÌÀ¤Ç¤¹\n" -#: elf32-mips.c:1576 +#: elf32-mips.c:2156 elf64-mips.c:1972 msgid "32bits gp relative relocation occurs for an external symbol" msgstr "32¥Ó¥Ã¥È gp ´ØÏ¢ºÆÇÛÃÖ¤¬³°Éô¥·¥ó¥Ü¥ë¤ÎÍѤËȯÀ¸¤·¤Þ¤·¤¿" -#: elf32-mips.c:1725 +#: elf32-mips.c:2305 #, c-format msgid "Linking mips16 objects into %s format is not supported" -msgstr "%s ·Á¼°¤Ø¤Î mips16 ¥ª¥Ö¥¸¥§¥¯¥È¤ò¥ê¥ó¥¯¤¹¤ë¤³¤È¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +msgstr "" +"%s ·Á¼°¤Ø¤Î mips16 ¥ª¥Ö¥¸¥§¥¯¥È¤ò¥ê¥ó¥¯¤¹¤ë¤³¤È¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: elf32-mips.c:2582 +#: elf32-mips.c:3129 #, c-format msgid "%s: linking PIC files with non-PIC files" msgstr "%s: PIC ¥Õ¥¡¥¤¥ë¤ËÈó PIC ¥Õ¥¡¥¤¥ë¤ò¥ê¥ó¥¯¤·¤è¤¦¤È¤·¤Þ¤·¤¿" -#: elf32-mips.c:2592 +#: elf32-mips.c:3139 #, c-format msgid "%s: linking abicalls files with non-abicalls files" msgstr "%s: abicall ¥Õ¥¡¥¤¥ë¤ËÈó abicall ¥Õ¥¡¥¤¥ë¤ò¥ê¥ó¥¯¤·¤è¤¦¤È¤·¤Þ¤·¤¿" -#: elf32-mips.c:2621 +#: elf32-mips.c:3168 #, c-format msgid "%s: ISA mismatch (-mips%d) with previous modules (-mips%d)" msgstr "%s: ISA (-mips%d) ¤¬°ÊÁ°¤Î¥â¥¸¥å¡¼¥ë (-mips%d) ¤È°ìÃפ·¤Þ¤»¤ó" -#: elf32-mips.c:2630 +#: elf32-mips.c:3177 #, c-format msgid "%s: ISA mismatch (%d) with previous modules (%d)" msgstr "%s: ISA (%d) ¤¬°ÊÁ°¤Î¥â¥¸¥å¡¼¥ë (%d) ¤È°ìÃפ·¤Þ¤»¤ó" -#: elf32-mips.c:2653 +#: elf32-mips.c:3200 #, c-format msgid "%s: ABI mismatch: linking %s module with previous %s modules" -msgstr "%s: ABI ¤¬°ìÃפ·¤Þ¤»¤ó -- %s ¥â¥¸¥å¡¼¥ë¤ò°ÊÁ°¤Î %s ¥â¥¸¥å¡¼¥ë¤È¥ê¥ó¥¯¤·¤è¤¦¤È¤·¤Þ¤·¤¿" +msgstr "" +"%s: ABI ¤¬°ìÃפ·¤Þ¤»¤ó -- %s ¥â¥¸¥å¡¼¥ë¤ò°ÊÁ°¤Î %s ¥â¥¸¥å¡¼¥ë¤È¥ê¥ó¥¯¤·¤è¤¦¤È" +"¤·¤Þ¤·¤¿" -#: elf32-mips.c:2667 elf32-ppc.c:1477 elf64-sparc.c:2971 +#: elf32-mips.c:3214 elf32-ppc.c:1470 elf64-ppc.c:1556 elf64-sparc.c:3027 #, c-format msgid "%s: uses different e_flags (0x%lx) fields than previous modules (0x%lx)" -msgstr "%s: »ÈÍѤ·¤Æ¤¤¤ë e_flags(0x%lx) ¤¬°ÊÁ°¤Î¥â¥¸¥å¡¼¥ë (0x%lx) ¤È°Û¤Ê¤Ã¤Æ¤¤¤Þ¤¹" +msgstr "" +"%s: »ÈÍѤ·¤Æ¤¤¤ë e_flags(0x%lx) ¤¬°ÊÁ°¤Î¥â¥¸¥å¡¼¥ë (0x%lx) ¤È°Û¤Ê¤Ã¤Æ¤¤¤Þ¤¹" -#: elf32-mips.c:2698 +#: elf32-mips.c:3245 msgid " [abi=O32]" msgstr " [abi=O32]" -#: elf32-mips.c:2700 +#: elf32-mips.c:3247 msgid " [abi=O64]" msgstr " [abi=O64]" -#: elf32-mips.c:2702 +#: elf32-mips.c:3249 msgid " [abi=EABI32]" msgstr " [abi=EABI32]" -#: elf32-mips.c:2704 +#: elf32-mips.c:3251 msgid " [abi=EABI64]" msgstr " [abi=EABI64]" -#: elf32-mips.c:2706 +#: elf32-mips.c:3253 msgid " [abi unknown]" msgstr " [abi unknown]" -#: elf32-mips.c:2708 +#: elf32-mips.c:3255 msgid " [abi=N32]" msgstr " [abi=N32]" -#: elf32-mips.c:2710 +#: elf32-mips.c:3257 msgid " [abi=64]" msgstr " [abi=64]" -#: elf32-mips.c:2712 +#: elf32-mips.c:3259 msgid " [no abi set]" msgstr " [abi ¤¬¥»¥Ã¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó]" -#: elf32-mips.c:2715 +#: elf32-mips.c:3262 msgid " [mips1]" msgstr " [mips1]" -#: elf32-mips.c:2717 +#: elf32-mips.c:3264 msgid " [mips2]" msgstr " [mips2]" -#: elf32-mips.c:2719 +#: elf32-mips.c:3266 msgid " [mips3]" msgstr " [mips3]" -#: elf32-mips.c:2721 +#: elf32-mips.c:3268 msgid " [mips4]" msgstr " [mips4]" -#: elf32-mips.c:2723 +#: elf32-mips.c:3270 msgid " [mips5]" msgstr " [mips5]" -#: elf32-mips.c:2725 +#: elf32-mips.c:3272 msgid " [mips32]" msgstr " [mips32]" -#: elf32-mips.c:2727 +#: elf32-mips.c:3274 msgid " [mips64]" msgstr " [mips64]" -#: elf32-mips.c:2729 +#: elf32-mips.c:3276 msgid " [unknown ISA]" msgstr " [ÉÔÌÀ¤Ê ISA]" -#: elf32-mips.c:2732 +#: elf32-mips.c:3279 msgid " [32bitmode]" msgstr " [32¥Ó¥Ã¥È¥â¡¼¥É]" -#: elf32-mips.c:2734 +#: elf32-mips.c:3281 msgid " [not 32bitmode]" msgstr " [Èó 32 ¥Ó¥Ã¥È¥â¡¼¥É]" -#: elf32-mips.c:4388 +#: elf32-mips.c:4954 msgid "static procedure (no name)" msgstr "ÀÅŪ¥×¥í¥·¡¼¥¸¥ã(̾Á°Ìµ¤·)" -#: elf32-mips.c:5005 elf64-alpha.c:4377 +#: elf32-mips.c:5572 elf64-mips.c:6694 #, c-format msgid "%s: illegal section name `%s'" msgstr "%s: ÉÔÀµ¤Ê¥»¥¯¥·¥ç¥ó̾ `%s' ¤Ç¤¹" -#: elf32-mips.c:5570 +#: elf32-mips.c:6139 elf64-mips.c:3150 msgid "not enough GOT space for local GOT entries" msgstr "¶É½ê GOT ¥¨¥ó¥È¥êÍѤΠGOT ¶õ´Ö¤¬ÉÔ½½Ê¬¤Ç¤¹" -#: elf32-mips.c:6686 +#: elf32-mips.c:7250 elf64-mips.c:4203 #, c-format msgid "%s: %s+0x%lx: jump to stub routine which is not jal" msgstr "%s: %s+0x%lx: jal ¤Ç¤Ï¤Ê¤¤¥¹¥¿¥Ö¥ë¡¼¥Á¥ó¤Ø¤Î¥¸¥ã¥ó¥×¤Ç¤¹" -#: elf32-mips.c:7673 -#, c-format -msgid "Malformed reloc detected for section %s" +#: elf32-mips.c:8259 elf64-mips.c:5891 +#, fuzzy, c-format +msgid "%s: Malformed reloc detected for section %s" msgstr "¥»¥¯¥·¥ç¥ó %s ÍѤȤ·¤Æ¤Ï¤ª¤«¤·¤ÊºÆÇÛÃÖ¤ò¸¡½Ð¤·¤Þ¤·¤¿" -#: elf32-mips.c:7750 +#: elf32-mips.c:8337 elf64-mips.c:5969 #, c-format msgid "%s: CALL16 reloc at 0x%lx not against global symbol" msgstr "%s: 0x%lx ¤Ç¤Î CALL16 ºÆÇÛÃÖ¤¬Âç°è¥·¥ó¥Ü¥ë¤òÂоݤȤ·¤Æ¤¤¤Þ¤»¤ó" -#: elf32-ppc.c:1443 +#: elf32-ppc.c:1436 elf64-ppc.c:1521 #, c-format -msgid "%s: compiled with -mrelocatable and linked with modules compiled normally" -msgstr "%s: -mrelocatable ¤òÉÕ¤±¤Æ¥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤¿¤â¤Î¤ÈÉáÄ̤˥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤¿¥â¥¸¥å¡¼¥ë¤È¤ò¥ê¥ó¥¯¤·¤Þ¤·¤¿" +msgid "" +"%s: compiled with -mrelocatable and linked with modules compiled normally" +msgstr "" +"%s: -mrelocatable ¤òÉÕ¤±¤Æ¥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤¿¤â¤Î¤ÈÉáÄ̤˥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤¿¥â" +"¥¸¥å¡¼¥ë¤È¤ò¥ê¥ó¥¯¤·¤Þ¤·¤¿" -#: elf32-ppc.c:1451 +#: elf32-ppc.c:1444 elf64-ppc.c:1529 #, c-format -msgid "%s: compiled normally and linked with modules compiled with -mrelocatable" -msgstr "%s: ÉáÄ̤˥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤¿¤â¤Î¤È -mrelocatable ¤òÉÕ¤±¤Æ¥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤¿¥â¥¸¥å¡¼¥ë¤È¤ò¥ê¥ó¥¯¤·¤Þ¤·¤¿" +msgid "" +"%s: compiled normally and linked with modules compiled with -mrelocatable" +msgstr "" +"%s: ÉáÄ̤˥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤¿¤â¤Î¤È -mrelocatable ¤òÉÕ¤±¤Æ¥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤¿¥â" +"¥¸¥å¡¼¥ë¤È¤ò¥ê¥ó¥¯¤·¤Þ¤·¤¿" -#: elf32-ppc.c:1578 +#: elf32-ppc.c:1568 #, c-format msgid "%s: Unknown special linker type %d" msgstr "%s: ¥¹¥Ú¥·¥ã¥ë¥ê¥ó¥«¥¿¥¤¥× %d ¤¬ÉÔÌÀ¤Ç¤¹" -#: elf32-ppc.c:2245 elf32-ppc.c:2279 elf32-ppc.c:2314 +#: elf32-ppc.c:2218 elf32-ppc.c:2252 elf32-ppc.c:2287 #, c-format msgid "%s: relocation %s cannot be used when making a shared object" msgstr "%s: ºÆÇÛÃÖ %s ¤Ï¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È¤òºîÀ®¤·¤Æ¤¤¤ë»þÅÀ¤Ç¤ÏÍøÍѤǤ­¤Þ¤»¤ó" -#: elf32-ppc.c:3129 +#: elf32-ppc.c:3097 elf64-ppc.c:3716 #, c-format msgid "%s: unknown relocation type %d for symbol %s" msgstr "%s: ºÆÇÛÃÖ¥¿¥¤¥× %d (¥·¥ó¥Ü¥ë %s) ¤¬ÉÔÌÀ¤Ç¤¹" -#: elf32-ppc.c:3493 elf32-ppc.c:3514 elf32-ppc.c:3564 +#: elf32-ppc.c:3452 elf32-ppc.c:3473 elf32-ppc.c:3523 #, c-format -msgid "%s: The target (%s) of a %s relocation is in the wrong output section (%s)" +msgid "" +"%s: The target (%s) of a %s relocation is in the wrong output section (%s)" msgstr "%s: ¥¿¡¼¥²¥Ã¥È %s (%sºÆÇÛÃÖ) ¤¬´Ö°ã¤Ã¤¿½ÐÎÏ¥»¥¯¥·¥ç¥ó (%s) ¤Ë¤¢¤ê¤Þ¤¹" -#: elf32-ppc.c:3630 +#: elf32-ppc.c:3589 #, c-format msgid "%s: Relocation %s is not yet supported for symbol %s." msgstr "%s: ºÆÇÛÃÖ %s ¤Ï¥·¥ó¥Ü¥ë %s ÍѤΤâ¤Î¤È¤·¤Æ¤Ï¤Þ¤À¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: elf32-sh.c:1084 +#: elf32-sh.c:1101 #, c-format msgid "%s: 0x%lx: warning: bad R_SH_USES offset" msgstr "%s: 0x%lx: ·Ù¹ð: R_SH_USES ¥ª¥Õ¥»¥Ã¥È¤¬ÉÔÀµ¤Ç¤¹" -#: elf32-sh.c:1096 +#: elf32-sh.c:1113 #, c-format msgid "%s: 0x%lx: warning: R_SH_USES points to unrecognized insn 0x%x" msgstr "%s: 0x%lx: ·Ù¹ð: R_SH_USES ¤¬Ç§¼±¤Ç¤­¤Ê¤¤Ì¿Îá 0x%x ¤ò»Ø¤·¤Æ¤¤¤Þ¤¹" -#: elf32-sh.c:1113 +#: elf32-sh.c:1130 #, c-format msgid "%s: 0x%lx: warning: bad R_SH_USES load offset" msgstr "%s: 0x%lx: ·Ù¹ð: R_SH_USES load ¥ª¥Õ¥»¥Ã¥È¤¬ÉÔÀµ¤Ç¤¹" -#: elf32-sh.c:1128 +#: elf32-sh.c:1145 #, c-format msgid "%s: 0x%lx: warning: could not find expected reloc" msgstr "%s: 0x%lx: ·Ù¹ð: ¸ºß¤¹¤ë¤Ï¤º¤ÎºÆÇÛÃÖÎΰè¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó" -#: elf32-sh.c:1165 +#: elf32-sh.c:1202 #, c-format msgid "%s: 0x%lx: warning: symbol in unexpected section" msgstr "%s: 0x%lx: ·Ù¹ð: ¥·¥ó¥Ü¥ë¤¬Í½´ü¤»¤Ì¥»¥¯¥·¥ç¥ó¤Ë¤¢¤ê¤Þ¤¹" -#: elf32-sh.c:1287 +#: elf32-sh.c:1323 #, c-format msgid "%s: 0x%lx: warning: could not find expected COUNT reloc" msgstr "%s: 0x%lx: ·Ù¹ð: ¸ºß¤¹¤ë¤Ï¤º¤Î COUNT ºÆÇÛÃÖÎΰè¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó" -#: elf32-sh.c:1296 +#: elf32-sh.c:1332 #, c-format msgid "%s: 0x%lx: warning: bad count" msgstr "%s: 0x%lx: ·Ù¹ð: count ¤¬ÉÔÀµ¤Ç¤¹" -#: elf32-sh.c:1689 elf32-sh.c:2076 +#: elf32-sh.c:1741 elf32-sh.c:2132 #, c-format msgid "%s: 0x%lx: fatal: reloc overflow while relaxing" msgstr "%s: 0x%lx: Ã×̿Ū: relax Ãæ¤ËºÆÇÛÃÖÎΰ褬¥ª¡¼¥Ð¡¼¥Õ¥í¡¼¤·¤Þ¤·¤¿" -#: elf32-sparc.c:1512 elf64-sparc.c:2262 +#: elf32-sh.c:3267 +#, c-format +msgid "%s: 0x%lx: fatal: unaligned branch target for relax-support relocation" +msgstr "" + +#: elf32-sparc.c:1554 elf64-sparc.c:2280 #, c-format msgid "%s: probably compiled without -fPIC?" msgstr "%s: ¶²¤é¤¯ -fPIC ¤òÉÕ¤±¤º¤Ë¥³¥ó¥Ñ¥¤¥ë¤·¤¿¤Î¤Ç¤Ï¡©" -#: elf32-sparc.c:1962 +#: elf32-sparc.c:2007 #, c-format msgid "%s: compiled for a 64 bit system and target is 32 bit" -msgstr "%s: 64 ¥Ó¥Ã¥È¥·¥¹¥Æ¥àÍѤ˥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤Þ¤·¤¿¤¬¥¿¡¼¥²¥Ã¥È¤¬ 32 ¥Ó¥Ã¥È¤Ç¤¹" +msgstr "" +"%s: 64 ¥Ó¥Ã¥È¥·¥¹¥Æ¥àÍѤ˥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤Þ¤·¤¿¤¬¥¿¡¼¥²¥Ã¥È¤¬ 32 ¥Ó¥Ã¥È¤Ç¤¹" -#: elf32-sparc.c:1976 +#: elf32-sparc.c:2021 #, c-format msgid "%s: linking little endian files with big endian files" -msgstr "%s: ¥ê¥È¥ë¥¨¥ó¥Ç¥£¥¢¥ó¤Î¥Õ¥¡¥¤¥ë¤È¥Ó¥Ã¥°¥¨¥ó¥Ç¥£¥¢¥ó¤Î¥Õ¥¡¥¤¥ë¤È¤ò¥ê¥ó¥¯¤·¤è¤¦¤È¤·¤Æ¤¤¤Þ¤¹" +msgstr "" +"%s: ¥ê¥È¥ë¥¨¥ó¥Ç¥£¥¢¥ó¤Î¥Õ¥¡¥¤¥ë¤È¥Ó¥Ã¥°¥¨¥ó¥Ç¥£¥¢¥ó¤Î¥Õ¥¡¥¤¥ë¤È¤ò¥ê¥ó¥¯¤·¤è" +"¤¦¤È¤·¤Æ¤¤¤Þ¤¹" -#: elf32-v850.c:677 +#: elf32-v850.c:682 #, c-format msgid "Variable `%s' cannot occupy in multiple small data regions" msgstr "ÊÑ¿ô `%s' ¤ÏÊ£¿ô¤Î small ¥Ç¡¼¥¿Îΰè¤òÀêÍ­¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó" -#: elf32-v850.c:680 +#: elf32-v850.c:685 #, c-format -msgid "Variable `%s' can only be in one of the small, zero, and tiny data regions" -msgstr "ÊÑ¿ô `%s' ¤Ï small, zero µÚ¤Ó tiny ¥Ç¡¼¥¿Îΰè¤ÎÆâ°ì¤Ä¤Ë¤Î¤ßÃÖ¤¯¤³¤È¤¬¤Ç¤­¤Þ¤¹" +msgid "" +"Variable `%s' can only be in one of the small, zero, and tiny data regions" +msgstr "" +"ÊÑ¿ô `%s' ¤Ï small, zero µÚ¤Ó tiny ¥Ç¡¼¥¿Îΰè¤ÎÆâ°ì¤Ä¤Ë¤Î¤ßÃÖ¤¯¤³¤È¤¬¤Ç¤­¤Þ¤¹" -#: elf32-v850.c:683 +#: elf32-v850.c:688 #, c-format -msgid "Variable `%s' cannot be in both small and zero data regions simultaneously" +msgid "" +"Variable `%s' cannot be in both small and zero data regions simultaneously" msgstr "ÊÑ¿ô `%s' ¤ò small ¤È zero ¥Ç¡¼¥¿Îΰè¤ØƱ»þ¤ËÃÖ¤¯¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó" -#: elf32-v850.c:686 +#: elf32-v850.c:691 #, c-format -msgid "Variable `%s' cannot be in both small and tiny data regions simultaneously" +msgid "" +"Variable `%s' cannot be in both small and tiny data regions simultaneously" msgstr "ÊÑ¿ô `%s' ¤ò small ¤È tiny ¥Ç¡¼¥¿Îΰè¤ØƱ»þ¤ËÃÖ¤¯¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó" -#: elf32-v850.c:689 +#: elf32-v850.c:694 #, c-format -msgid "Variable `%s' cannot be in both zero and tiny data regions simultaneously" +msgid "" +"Variable `%s' cannot be in both zero and tiny data regions simultaneously" msgstr "ÊÑ¿ô `%s' ¤Ï zero ¤È tiny ¥Ç¡¼¥¿Îΰè¤ØƱ»þ¤ËÃÖ¤¯¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó" -#: elf32-v850.c:1066 +#: elf32-v850.c:1072 msgid "FAILED to find previous HI16 reloc\n" msgstr "°ÊÁ°¤Î HI16 ºÆÇÛÃÖ¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó¤Ç¤·¤¿\n" -#: elf32-v850.c:1684 +#: elf32-v850.c:1703 msgid "could not locate special linker symbol __gp" msgstr "Æüì¥ê¥ó¥«¥·¥ó¥Ü¥ë __gp ¤Î°ÌÃÖ¤òÆÃÄê¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿" -#: elf32-v850.c:1688 +#: elf32-v850.c:1707 msgid "could not locate special linker symbol __ep" msgstr "Æüì¥ê¥ó¥«¥·¥ó¥Ü¥ë __ep ¤Î°ÌÃÖ¤òÆÃÄê¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿" -#: elf32-v850.c:1692 +#: elf32-v850.c:1711 msgid "could not locate special linker symbol __ctbp" msgstr "Æüì¥ê¥ó¥«¥·¥ó¥Ü¥ë __ctbp ¤Î°ÌÃÖ¤òÆÃÄê¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿" -#: elf32-v850.c:1881 +#: elf32-v850.c:1877 #, c-format msgid "%s: Architecture mismatch with previous modules" msgstr "%s: °ÊÁ°¤Î¥â¥¸¥å¡¼¥ë¤È¥¢¡¼¥­¥Æ¥¯¥Á¥ã¤¬°ìÃפ·¤Þ¤»¤ó" -#: elf32-v850.c:1900 +#: elf32-v850.c:1897 #, c-format msgid "private flags = %lx: " msgstr "private ¥Õ¥é¥° = %lx: " -#: elf32-v850.c:1905 +#: elf32-v850.c:1902 msgid "v850 architecture" msgstr "v850 ¥¢¡¼¥­¥Æ¥¯¥Á¥ã" -#: elf32-v850.c:1906 +#: elf32-v850.c:1903 msgid "v850e architecture" msgstr "v850e ¥¢¡¼¥­¥Æ¥¯¥Á¥ã" -#: elf32-v850.c:1907 +#: elf32-v850.c:1904 msgid "v850ea architecture" msgstr "v850ea ¥¢¡¼¥­¥Æ¥¯¥Á¥ã" -#: elf64-alpha.c:951 +#: elf32-ia64.c:2247 elf32-xstormy16.c:414 elf64-ia64.c:2247 +msgid "non-zero addend in @fptr reloc" +msgstr "" + +#: elf64-alpha.c:858 msgid "GPDISP relocation did not find ldah and lda instructions" msgstr "GPDISP ºÆÇÛÃÖ¤¬ ldah ¤È lda Ì¿Îá¤ò¸«¤Ä¤±¤Þ¤»¤ó¤Ç¤·¤¿" -#: elf64-alpha.c:3014 +#: elf64-alpha.c:2934 #, c-format msgid "%s: .got subsegment exceeds 64K (size %d)" msgstr "%s: .got ¥µ¥Ö¥»¥°¥á¥ó¥È¤¬ 64K ¤òĶ¤¨¤Æ¤¤¤Þ¤¹ (¥µ¥¤¥º %d)" -#: elf64-sparc.c:1248 -#, c-format -msgid "%s: check_relocs: unhandled reloc type %d" -msgstr "%s: check_relocs: ºÆÇÛÃÖ¥¿¥¤¥× %d ¤Ï¼è¤ê°·¤ï¤ì¤Þ¤»¤ó" - -#: elf64-sparc.c:1285 -msgid "%s: Only registers %%g[2367] can be declared using STT_REGISTER" -msgstr "%s: STT_REGISTER ¤ò»È¤¦¤ÈÀë¸À¤Ç¤­¤ë¤Î¤Ï¥ì¥¸¥¹¥¿ %%g[2367] ¤À¤±¤Ç¤¹" - -#: elf64-sparc.c:1305 -msgid "Register %%g%d used incompatibly: previously declared in %s to %s, in %s redefined to %s" -msgstr "¥ì¥¸¥¹¥¿ %%g%d ¤ÏÌ·½â¤·¤Æ»È¤ï¤ì¤Þ¤·¤¿: °ÊÁ°¤ÎÀë¸À¤Ï %s ¤Ç %s¡¢%s ¤Ç %s ¤ÈºÆÄêµÁ¤µ¤ì¤Þ¤·¤¿" +#: elf64-alpha.c:3518 elf64-alpha.c:3530 +#, fuzzy, c-format +msgid "%s: gp-relative relocation against dynamic symbol %s" +msgstr "32¥Ó¥Ã¥È gp ´ØÏ¢ºÆÇÛÃÖ¤¬³°Éô¥·¥ó¥Ü¥ë¤ÎÍѤËȯÀ¸¤·¤Þ¤·¤¿" -#: elf64-sparc.c:1328 +#: elf64-hppa.c:2070 #, c-format -msgid "Symbol `%s' has differing types: previously %s, REGISTER in %s" -msgstr "¥·¥ó¥Ü¥ë `%s' ¤Ï°Û¤Ê¤ë·¿¤ò¤â¤Ã¤Æ¤¤¤Þ¤¹: °ÊÁ°¤Ï %s, %s ¤Ç¤Ï REGISTER" +msgid "stub entry for %s cannot load .plt, dp offset = %ld" +msgstr "" -#: elf64-sparc.c:1374 +#: elf64-mmix.c:1271 #, c-format -msgid "Symbol `%s' has differing types: REGISTER in %s, %s in %s" -msgstr "¥·¥ó¥Ü¥ë `%s' ¤Ï°Û¤Ê¤ë·¿¤ò»ý¤Ã¤Æ¤¤¤Þ¤¹: %s ¤Ç REGISTER, ¤Ç¤¹¤¬ %s ¤È %s ¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹" +msgid "%s: register relocation against non-register symbol: (unknown) in %s" +msgstr "" -#: elf64-sparc.c:2952 -#, c-format -msgid "%s: linking UltraSPARC specific with HAL specific code" -msgstr "%s: UltraSPARC ÆÃÍ­¤Î¥³¡¼¥É¤È HAL ÆÃÍ­¤Î¥³¡¼¥É¤È¤ò¥ê¥ó¥¯¤·¤è¤¦¤È¤·¤Æ¤¤¤Þ¤¹" +#: elf64-mmix.c:1276 +#, fuzzy, c-format +msgid "%s: register relocation against non-register symbol: %s in %s" +msgstr "%s: ·Ù¹ð: ¥·¥ó¥Ü¥ë `%s' (%s ¥»¥¯¥·¥ç¥ó)¤ËÂФ¹¤ëºÆÇÛÃÖ¤ò²ò·è¤Ç¤­¤Þ¤»¤ó" -#: elf.c:325 +#: elf64-mmix.c:1312 #, c-format -msgid "%s: invalid string offset %u >= %lu for section `%s'" -msgstr "%s: ÉÔŬÀÚ¤Êʸ»úÎ󥪥ե»¥Ã¥È %u >= %lu (¥»¥¯¥·¥ç¥ó `%s' ÍÑ)" - -#: elf.c:566 -msgid "\nProgram Header:\n" -msgstr "\n¥×¥í¥°¥é¥à¥Ø¥Ã¥À:\n" +msgid "%s: directive LOCAL valid only with a register or absolute value" +msgstr "" -#: elf.c:614 -msgid "\nDynamic Section:\n" -msgstr "\nưŪ¥»¥¯¥·¥ç¥ó:\n" +#: elf64-mmix.c:1340 +#, c-format +msgid "" +"%s: LOCAL directive: Register $%ld is not a local register. First global " +"register is $%ld." +msgstr "" -#: elf.c:743 -msgid "\nVersion definitions:\n" -msgstr "\n¥Ð¡¼¥¸¥ç¥óÄêµÁ:\n" +#: elf64-mmix.c:1615 +#, c-format +msgid "" +"%s: Error: multiple definition of `%s'; start of %s is set in a earlier " +"linked file\n" +msgstr "" -#: elf.c:766 -msgid "\nVersion References:\n" -msgstr "\n¥Ð¡¼¥¸¥ç¥ó»²¾È:\n" +#: elf64-mmix.c:1674 +#, fuzzy +msgid "Register section has contents\n" +msgstr "¥»¥¯¥·¥ç¥ó¤ËÆâÍƤ¬¤¢¤ê¤Þ¤»¤ó" -#: elf.c:771 +#: elf64-ppc.c:1484 libbfd.c:1436 #, c-format -msgid " required from %s:\n" -msgstr " %s ¤«¤é¤ÎÍ×µá:\n" +msgid "%s: compiled for a big endian system and target is little endian" +msgstr "" +"%s: ¥Ó¥Ã¥°¥¨¥ó¥Ç¥£¥¢¥ó¥·¥¹¥Æ¥àÍѤ˥³¥ó¥Ñ¥¤¥ë¤µ¤ì¡¢¥¿¡¼¥²¥Ã¥È¤¬¥ê¥È¥ë¥¨¥ó¥Ç¥£" +"¥¢¥ó¤Ç¤¹" -#: elf.c:1359 +#: elf64-ppc.c:1486 libbfd.c:1438 #, c-format -msgid "%s: invalid link %lu for reloc section %s (index %u)" -msgstr "%s: ÉÔŬÀڤʥê¥ó¥¯ %lu ¤òºÆÇÛÃÖ¥»¥¯¥·¥ç¥ó %s (index %u) ¤Ë¹Ô¤Ê¤Ã¤Æ¤¤¤Þ¤¹" +msgid "%s: compiled for a little endian system and target is big endian" +msgstr "" +"%s: ¥ê¥È¥ë¥¨¥ó¥Ç¥£¥¢¥ó¥·¥¹¥Æ¥àÍѤ˥³¥ó¥Ñ¥¤¥ë¤µ¤ì¡¢¥¿¡¼¥²¥Ã¥È¤¬¥Ó¥Ã¥°¥¨¥ó¥Ç¥£" +"¥¢¥ó¤Ç¤¹¡£" -#: elf.c:2113 +#: elf64-ppc.c:3350 #, c-format -msgid "creating section symbol, name = %s, value = 0x%.8lx, index = %d, section = 0x%.8lx\n" -msgstr "¥»¥¯¥·¥ç¥ó¥·¥ó¥Ü¥ë¤òºîÀ®¤·¤Þ¤¹, ̾Á° = %s, ÃÍ = 0x%.8lx, º÷°ú = %d, ¥»¥¯¥·¥ç¥ó = 0x%.8lx\n" +msgid "linkage table error against `%s'" +msgstr "" -#: elf.c:2716 -#, c-format -msgid "%s: Not enough room for program headers (allocated %u, need %u)" -msgstr "%s: ¥×¥í¥°¥é¥à¥Ø¥Ã¥ÀÍѤζõ´Ö¤¬ÉÔ½½Ê¬¤Ç¤¹ (³ÎÊÝºÑ %u, Í× %u)" +#: elf64-ppc.c:3432 +msgid "stub section size doesn't match calculated size" +msgstr "" -#: elf.c:2815 -#, c-format -msgid "%s: Not enough room for program headers, try linking with -N" -msgstr "%s: ¥×¥í¥°¥é¥à¥Ø¥Ã¥ÀÍѤζõ´Ö¤¬ÉÔ½½Ê¬¤Ç¤¹¡£-N ¤òÉÕ¤±¤Æ¥ê¥ó¥¯¤·¤Æ¤ß¤Æ¤¯¤À¤µ¤¤" +#: elf64-ppc.c:4061 +#, fuzzy, c-format +msgid "%s: Relocation %s is not supported for symbol %s." +msgstr "%s: ºÆÇÛÃÖ %s ¤Ï¥·¥ó¥Ü¥ë %s ÍѤΤâ¤Î¤È¤·¤Æ¤Ï¤Þ¤À¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: elf.c:2941 +#: elf64-ppc.c:4105 #, c-format -msgid "Error: First section in segment (%s) starts at 0x%x" -msgstr "¥¨¥é¡¼: ¥»¥°¥á¥ó¥È (%s) ¤ÎºÇ½é¤Î¥»¥¯¥·¥ç¥ó¤¬ 0x%x ¤Ç»Ï¤Þ¤Ã¤Æ¤¤¤ë" +msgid "%s: error: relocation %s not a multiple of 4" +msgstr "" -#: elf.c:2944 +#: elf64-sparc.c:1277 #, c-format -msgid " whereas segment starts at 0x%x" -msgstr " ¤Ë¤â¤«¤«¤ï¤é¤º¡¢¥»¥°¥á¥ó¥È¤¬ 0x%x ¤Ç»Ï¤Þ¤Ã¤Æ¤¤¤Þ¤¹" +msgid "%s: check_relocs: unhandled reloc type %d" +msgstr "%s: check_relocs: ºÆÇÛÃÖ¥¿¥¤¥× %d ¤Ï¼è¤ê°·¤ï¤ì¤Þ¤»¤ó" -#: elf.c:3217 +#: elf64-sparc.c:1314 #, c-format -msgid "%s: warning: allocated section `%s' not in segment" -msgstr "%s: ·Ù¹ð: ³ÎÊݤµ¤ì¤¿¥»¥¯¥·¥ç¥ó `%s' ¤¬¥»¥°¥á¥ó¥ÈÆâ¤Ë¤¢¤ê¤Þ¤»¤ó" +msgid "%s: Only registers %%g[2367] can be declared using STT_REGISTER" +msgstr "%s: STT_REGISTER ¤ò»È¤¦¤ÈÀë¸À¤Ç¤­¤ë¤Î¤Ï¥ì¥¸¥¹¥¿ %%g[2367] ¤À¤±¤Ç¤¹" -#: elf.c:3616 -#, c-format -msgid "%s: symbol `%s' required but not present" -msgstr "%s: ¥·¥ó¥Ü¥ë `%s' ¤¬Í׵ᤵ¤ì¤Þ¤·¤¿¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" +#: elf64-sparc.c:1334 +#, fuzzy, c-format +msgid "Register %%g%d used incompatibly: %s in %s, previously %s in %s" +msgstr "" +"¥ì¥¸¥¹¥¿ %%g%d ¤ÏÌ·½â¤·¤Æ»È¤ï¤ì¤Þ¤·¤¿: °ÊÁ°¤ÎÀë¸À¤Ï %s ¤Ç %s¡¢%s ¤Ç %s ¤ÈºÆÄê" +"µÁ¤µ¤ì¤Þ¤·¤¿" -#: elf.c:3625 -#, c-format -msgid "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8lx%s\n" -msgstr "elf_symbol_from_bfd_symbol 0x%.8lx, ̾Á° = %s, ¥·¥ó¥Ü¥ëÈÖ¹æ = %d, ¥Õ¥é¥° = 0x%.8lx%s\n" +#: elf64-sparc.c:1357 +#, fuzzy, c-format +msgid "Symbol `%s' has differing types: REGISTER in %s, previously %s in %s" +msgstr "" +"¥·¥ó¥Ü¥ë `%s' ¤Ï°Û¤Ê¤ë·¿¤ò»ý¤Ã¤Æ¤¤¤Þ¤¹: %s ¤Ç REGISTER, ¤Ç¤¹¤¬ %s ¤È %s ¤ÇÄê" +"µÁ¤µ¤ì¤Æ¤¤¤Þ¤¹" -#: elf.c:3866 -#, c-format -msgid "%s: warning: Empty loadable segment detected\n" -msgstr "%s: ·Ù¹ð: ¶õ¤Î¥í¡¼¥À¥Ö¥ë¥»¥°¥á¥ó¥È¤¬¸¡½Ð¤µ¤ì¤Þ¤·¤¿\n" +#: elf64-sparc.c:1404 +#, fuzzy, c-format +msgid "Symbol `%s' has differing types: %s in %s, previously REGISTER in %s" +msgstr "¥·¥ó¥Ü¥ë `%s' ¤Ï°Û¤Ê¤ë·¿¤ò¤â¤Ã¤Æ¤¤¤Þ¤¹: °ÊÁ°¤Ï %s, %s ¤Ç¤Ï REGISTER" -#: elf.c:5213 +#: elf64-sparc.c:3008 #, c-format -msgid "%s: unsupported relocation type %s" -msgstr "%s: ¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Ê¤¤ºÆÇÛÃÖ¥¿¥¤¥× %s ¤Ç¤¹" +msgid "%s: linking UltraSPARC specific with HAL specific code" +msgstr "" +"%s: UltraSPARC ÆÃÍ­¤Î¥³¡¼¥É¤È HAL ÆÃÍ­¤Î¥³¡¼¥É¤È¤ò¥ê¥ó¥¯¤·¤è¤¦¤È¤·¤Æ¤¤¤Þ¤¹" -#: elfcode.h:1084 +#: elfcode.h:1218 #, c-format msgid "%s: version count (%ld) does not match symbol count (%ld)" msgstr "%s: ¥Ð¡¼¥¸¥ç¥ó¥«¥¦¥ó¥È (%ld) ¤¬¥·¥ó¥Ü¥ë¥«¥¦¥ó¥È (%ld) ¤È°ìÃפ·¤Þ¤»¤ó" -#: elflink.c:432 -#, c-format -msgid "%s: Section %s is already to large to put hole of %ld bytes in" +#: elflink.c:434 +#, fuzzy, c-format +msgid "%s: Section %s is too large to add hole of %ld bytes" msgstr "%s: ´û¤Ë¥»¥¯¥·¥ç¥ó %s ¤ÏÂ礭¤¹¤®¤Æ %ld ¥Ð¥¤¥È¤Î hole ¤òÃÖ¤±¤Þ¤»¤ó" -#: elflink.h:1465 +#: elflink.h:1113 +#, c-format +msgid "%s: warning: unexpected redefinition of `%s'" +msgstr "%s: ·Ù¹ð: `%s' ¤ÎºÆÄêµÁ¤Ï¤¢¤êÆÀ¤Ê¤¤¤³¤È¤Ç¤¹" + +#: elflink.h:1784 #, c-format msgid "%s: %s: invalid version %u (max %d)" msgstr "%s: %s: ÉÔŬÀڤʥС¼¥¸¥ç¥ó %u (ºÇÂç %d)" -#: elflink.h:1506 +#: elflink.h:1825 #, c-format msgid "%s: %s: invalid needed version %d" msgstr "%s: %s: ɬÍפȤµ¤ì¤ë¥Ð¡¼¥¸¥ç¥ó %d ¤¬ÉÔŬÀڤǤ¹" -#: elflink.h:1626 +#: elflink.h:1945 #, c-format msgid "Warning: size of symbol `%s' changed from %lu to %lu in %s" msgstr "·Ù¹ð: ¥·¥ó¥Ü¥ë `%s' ¤Î¥µ¥¤¥º¤¬ %lu ¤«¤é %lu ¤ËÊѹ¹¤µ¤ì¤Þ¤·¤¿ (%s Æâ)" -#: elflink.h:1872 -#, c-format -msgid "%s: warning: unexpected redefinition of `%s'" -msgstr "%s: ·Ù¹ð: `%s' ¤ÎºÆÄêµÁ¤Ï¤¢¤êÆÀ¤Ê¤¤¤³¤È¤Ç¤¹" - -#: elflink.h:3659 +#: elflink.h:4014 #, c-format msgid "warning: type and size of dynamic symbol `%s' are not defined" msgstr "·Ù¹ð: ưŪ¥·¥ó¥Ü¥ë `%s' ¤Î·¿¤È¥µ¥¤¥º¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: elflink.h:3931 +#: elflink.h:4320 #, c-format msgid "%s: undefined versioned symbol name %s" msgstr "%s: ¥·¥ó¥Ü¥ë̾ %s ¤Î¥Ð¡¼¥¸¥ç¥ó¤¬Ì¤ÄêµÁ¤Ç¤¹" -#: elflink.h:5180 +#: elflink.h:4544 elflink.h:4552 elflink.h:6203 elflink.h:7280 +msgid "Error: out of memory" +msgstr "" + +#: elflink.h:4714 +msgid "Not enough memory to sort relocations" +msgstr "" + +#: elflink.h:5980 #, c-format msgid "%s: could not find output section %s for input section %s" msgstr "%s: ½ÐÎÏ¥»¥¯¥·¥ç¥ó %s (ÆþÎÏ¥»¥¯¥·¥ç¥ó %s ÍÑ) ¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó" -#: i386linux.c:450 m68klinux.c:454 sparclinux.c:452 +#: elflink.h:6553 +#, fuzzy +msgid "warning: relocation against removed section; zeroing" +msgstr "%s: ·Ù¹ð: ¥·¥ó¥Ü¥ë `%s' (%s ¥»¥¯¥·¥ç¥ó)¤ËÂФ¹¤ëºÆÇÛÃÖ¤ò²ò·è¤Ç¤­¤Þ¤»¤ó" + +#: elflink.h:6583 +#, fuzzy +msgid "warning: relocation against removed section" +msgstr "%s: ·Ù¹ð: ¥·¥ó¥Ü¥ë `%s' (%s ¥»¥¯¥·¥ç¥ó)¤ËÂФ¹¤ëºÆÇÛÃÖ¤ò²ò·è¤Ç¤­¤Þ¤»¤ó" + +#: elflink.h:6596 +#, c-format +msgid "local symbols in discarded section %s" +msgstr "" + +#: i386linux.c:455 m68klinux.c:459 sparclinux.c:456 #, c-format msgid "Output file requires shared library `%s'\n" msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë¤Ï¶¦Í­¥é¥¤¥Ö¥é¥ê `%s' ¤òɬÍפȤ·¤Æ¤¤¤Þ¤¹\n" -#: i386linux.c:458 m68klinux.c:462 sparclinux.c:460 +#: i386linux.c:463 m68klinux.c:467 sparclinux.c:464 #, c-format msgid "Output file requires shared library `%s.so.%s'\n" msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë¤Ï¶¦Í­¥é¥¤¥Ö¥é¥ê `%s.so.%s' ¤òɬÍפȤ·¤Æ¤¤¤Þ¤¹\n" -#: i386linux.c:646 i386linux.c:696 m68klinux.c:653 m68klinux.c:701 -#: sparclinux.c:649 sparclinux.c:699 +#: i386linux.c:653 i386linux.c:703 m68klinux.c:660 m68klinux.c:708 +#: sparclinux.c:655 sparclinux.c:705 #, c-format msgid "Symbol %s not defined for fixups\n" msgstr "¥·¥ó¥Ü¥ë %s ¤Ï fixup ÍѤËÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n" -#: i386linux.c:720 m68klinux.c:725 sparclinux.c:723 +#: i386linux.c:727 m68klinux.c:732 sparclinux.c:729 msgid "Warning: fixup count mismatch\n" msgstr "·Ù¹ð: fixup ¥«¥¦¥ó¥È¤¬°ìÃפ·¤Þ¤»¤ó\n" -#: ieee.c:167 +#: ieee.c:235 #, c-format msgid "%s: string too long (%d chars, max 65535)" msgstr "%s: ʸ»úÎó¤¬Ä¹¤¹¤®¤Þ¤¹ (%d ʸ»ú, ºÇÂç 65535)" -#: ieee.c:297 +#: ieee.c:365 #, c-format msgid "%s: unrecognized symbol `%s' flags 0x%x" msgstr "%s: ¥·¥ó¥Ü¥ë `%s' ¥Õ¥é¥° 0x%x ¤òǧ¼±¤Ç¤­¤Þ¤»¤ó" -#: ieee.c:793 -#, c-format -msgid "%s: unimplemented ATI record %u for symbol %u" +#: ieee.c:877 +#, fuzzy, c-format +msgid "%s: unimplemented ATI record %u for symbol %u" msgstr "%s: ATI ¥ì¥³¡¼¥É %u (¥·¥ó¥Ü¥ë %u ÍÑ) ¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: ieee.c:818 +#: ieee.c:902 #, c-format msgid "%s: unexpected ATN type %d in external part" msgstr "%s: external Éôʬ¤Ë¤¢¤ë ATN ¥¿¥¤¥× %d ¤È¤¤¤¦¤Î¤Ï¤¢¤êÆÀ¤Þ¤»¤ó" -#: ieee.c:840 +#: ieee.c:924 #, c-format msgid "%s: unexpected type after ATN" msgstr "%s: ATN ¤Î¸å¤í¤Ë¤¢¤êÆÀ¤Ê¤¤¥¿¥¤¥×¤¬¤¢¤ê¤Þ¤¹" -#: ihex.c:259 +#: ihex.c:258 #, c-format msgid "%s:%d: unexpected character `%s' in Intel Hex file\n" msgstr "%s:%d: Intel Hex ¥Õ¥¡¥¤¥ë¤È¤·¤Æ¤¢¤êÆÀ¤Ê¤¤Ê¸»ú `%s' ¤¬¤¢¤ê¤Þ¤¹\n" -#: ihex.c:369 -#, c-format -msgid "%s:%d: bad checksum in Intel Hex file (expected %u, found %u)" +#: ihex.c:368 +#, fuzzy, c-format +msgid "%s:%u: bad checksum in Intel Hex file (expected %u, found %u)" msgstr "%s:%d: Intel Hex ¥Õ¥¡¥¤¥ë¤Î¥Á¥§¥Ã¥¯¥µ¥à¤¬ÉÔÀµ¤Ç¤¹ (%u ¤ÎȦ¤¬ %u ¤Ç¤¹)" -#: ihex.c:421 -#, c-format -msgid "%s:%d: bad extended address record length in Intel Hex file" +#: ihex.c:422 +#, fuzzy, c-format +msgid "%s:%u: bad extended address record length in Intel Hex file" msgstr "%s:%d: ³ÈÄ¥¥¢¥É¥ì¥¹¥ì¥³¡¼¥ÉŤ¬ Intel Hex ¥Õ¥¡¥¤¥ë¤È¤·¤Æ¤ÏÉÔÀµ¤Ç¤¹" -#: ihex.c:438 -#, c-format -msgid "%s:%d: bad extended start address length in Intel Hex file" +#: ihex.c:439 +#, fuzzy, c-format +msgid "%s:%u: bad extended start address length in Intel Hex file" msgstr "%s:%d: ³ÈÄ¥³«»Ï¥¢¥É¥ì¥¹Ä¹¤¬ Intel Hex ¥Õ¥¡¥¤¥ë¤È¤·¤Æ¤ÏÉÔÀµ¤Ç¤¹" -#: ihex.c:455 -#, c-format -msgid "%s:%d: bad extended linear address record length in Intel Hex file" +#: ihex.c:456 +#, fuzzy, c-format +msgid "%s:%u: bad extended linear address record length in Intel Hex file" msgstr "%s:%d: ³ÈÄ¥¥ê¥Ë¥¢¥¢¥É¥ì¥¹¥ì¥³¡¼¥ÉŤ¬ Intel Hex ¥Õ¥¡¥¤¥ë¤È¤·¤ÆÉÔÀµ¤Ç¤¹" -#: ihex.c:472 -#, c-format -msgid "%s:%d: bad extended linear start address length in Intel Hex file" +#: ihex.c:473 +#, fuzzy, c-format +msgid "%s:%u: bad extended linear start address length in Intel Hex file" msgstr "%s:%d: ³ÈÄ¥¥ê¥Ë¥¢³«»Ï¥¢¥É¥ì¥¹Ä¢¤¬ Intel Hex ¥Õ¥¡¥¤¥ë¤È¤·¤Æ¤ÏÉÔÀµ¤Ç¤¹" -#: ihex.c:489 -#, c-format -msgid "%s:%d: unrecognized ihex type %u in Intel Hex file\n" +#: ihex.c:490 +#, fuzzy, c-format +msgid "%s:%u: unrecognized ihex type %u in Intel Hex file\n" msgstr "%s:%d: Intel Hex ¥Õ¥¡¥¤¥ë¤Î ihex ¥¿¥¤¥× %u ¤òǧ¼±¤Ç¤­¤Þ¤»¤ó\n" -#: ihex.c:609 +#: ihex.c:610 #, c-format msgid "%s: internal error in ihex_read_section" msgstr "%s: ihex_read_section Æâ¤ÇÆâÉô¥¨¥é¡¼" -#: ihex.c:644 +#: ihex.c:645 #, c-format msgid "%s: bad section length in ihex_read_section" msgstr "%s: ihex_read_section Æâ¤ÇÉÔÀµ¤Ê¥»¥¯¥·¥ç¥óŤ¬¤¢¤ê¤Þ¤¹" -#: ihex.c:858 -#, c-format -msgid "%s: address 0x%s out of range for Intex Hex file" +#: ihex.c:863 +#, fuzzy, c-format +msgid "%s: address 0x%s out of range for Intel Hex file" msgstr "%s: ¥¢¥É¥ì¥¹ 0x%s ¤Ï Intel Hex ¥Õ¥¡¥¤¥ë¤ÎÈϰϤòĶ¤¨¤Æ¤¤¤Þ¤¹" -#: libbfd.c:471 +#: libbfd.c:492 #, c-format msgid "not mapping: data=%lx mapped=%d\n" msgstr "¥Þ¥Ã¥×¤·¤Þ¤»¤ó: ¥Ç¡¼¥¿=%lx ¥Þ¥Ã¥×ºÑ=%d\n" -#: libbfd.c:474 +#: libbfd.c:495 msgid "not mapping: env var not set\n" msgstr "¥Þ¥Ã¥×¤·¤Þ¤»¤ó: ´Ä¶­ÊÑ¿ô¤¬¥»¥Ã¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n" -#: libbfd.c:1370 +#: libbfd.c:1467 +#, fuzzy, c-format +msgid "Deprecated %s called at %s line %d in %s\n" +msgstr "BFD ÆâÉô¥¨¥é¡¼¡£%s ¤Î %d ¹ÔÌÜ %s ¤ÇÃæÃǤ·¤Þ¤·¤¿\n" + +#: libbfd.c:1470 #, c-format -msgid "%s: compiled for a big endian system and target is little endian" -msgstr "%s: ¥Ó¥Ã¥°¥¨¥ó¥Ç¥£¥¢¥ó¥·¥¹¥Æ¥àÍѤ˥³¥ó¥Ñ¥¤¥ë¤µ¤ì¡¢¥¿¡¼¥²¥Ã¥È¤¬¥ê¥È¥ë¥¨¥ó¥Ç¥£¥¢¥ó¤Ç¤¹" +msgid "Deprecated %s called\n" +msgstr "" -#: libbfd.c:1372 +#: linker.c:1849 #, c-format -msgid "%s: compiled for a little endian system and target is big endian" -msgstr "%s: ¥ê¥È¥ë¥¨¥ó¥Ç¥£¥¢¥ó¥·¥¹¥Æ¥àÍѤ˥³¥ó¥Ñ¥¤¥ë¤µ¤ì¡¢¥¿¡¼¥²¥Ã¥È¤¬¥Ó¥Ã¥°¥¨¥ó¥Ç¥£¥¢¥ó¤Ç¤¹¡£" +msgid "%s: indirect symbol `%s' to `%s' is a loop" +msgstr "" -#: linker.c:2678 +#: linker.c:2745 #, c-format msgid "Attempt to do relocateable link with %s input and %s output" msgstr "ÆþÎÏ %s ¤È½ÐÎÏ %s ¤È¤òºÆÇÛÃÖ²Äǽ¥ê¥ó¥¯¤·¤è¤¦¤È¤·¤Þ¤·¤¿" -#: oasys.c:1016 +#: merge.c:897 #, c-format -msgid "%s: can not represent section `%s' in oasys" -msgstr "%s: oasys ¤Ç¤Ï¥»¥¯¥·¥ç¥ó `%s' ¤òɽ¸½¤Ç¤­¤Þ¤»¤ó" +msgid "%s: access beyond end of merged section (%ld + %ld)" +msgstr "" -#: osf-core.c:146 +#: mmo.c:460 +#, fuzzy, c-format +msgid "%s: No core to allocate section name %s\n" +msgstr "%s: ÉÔÀµ¤Ê¥»¥¯¥·¥ç¥ó̾ `%s' ¤Ç¤¹" + +#: mmo.c:537 #, c-format -msgid "Unhandled OSF/1 core file section type %d\n" -msgstr "OSF/1 ¥³¥¢¥Õ¥¡¥¤¥ë¥»¥¯¥·¥ç¥ó¥¿¥¤¥× %d ¤Ï¼è¤ê°·¤ï¤ì¤Þ¤»¤ó¤Ç¤·¤¿\n" +msgid "%s: No core to allocate a symbol %d bytes long\n" +msgstr "" -#. XXX code yet to be written. -#: peicode.h:807 +#: mmo.c:1190 #, c-format -msgid "%s: Unhandled import type; %x" -msgstr "%s: import ¥¿¥¤¥× %x ¤Ï¼è¤ê°·¤ï¤ì¤Þ¤»¤ó¤Ç¤·¤¿" +msgid "%s: invalid mmo file: initialization value for $255 is not `Main'\n" +msgstr "" -#: peicode.h:812 +#: mmo.c:1336 #, c-format -msgid "%s: Unrecognised import type; %x" -msgstr "%s: import ¥¿¥¤¥×¤òǧ¼±¤Ç¤­¤Þ¤»¤ó -- %x" +msgid "" +"%s: unsupported wide character sequence 0x%02X 0x%02X after symbol name " +"starting with `%s'\n" +msgstr "" -#: peicode.h:826 +#: mmo.c:1571 #, c-format -msgid "%s: Unrecognised import name type; %x" -msgstr "%s: import ̾Á°¥¿¥¤¥×¤òǧ¼±¤Ç¤­¤Þ¤»¤ó -- %x" +msgid "%s: invalid mmo file: unsupported lopcode `%d'\n" +msgstr "" -#: peicode.h:1183 +#: mmo.c:1581 #, c-format -msgid "%s: Unrecognised machine type (0x%x) in Import Library Format archive" -msgstr "%s: Import Library Format ½ñ¸ËÆâ¤Î¥Þ¥·¥ó¥¿¥¤¥× (0x%x) ¤òǧ¼±¤Ç¤­¤Þ¤»¤ó" +msgid "%s: invalid mmo file: expected YZ = 1 got YZ = %d for lop_quote\n" +msgstr "" -#: peicode.h:1195 +#: mmo.c:1617 #, c-format -msgid "%s: Recognised but unhandled machine type (0x%x) in Import Library Format archive" -msgstr "%s: Import Library Format ½ñ¸ËÆâ¤Î¥Þ¥·¥ó¥¿¥¤¥× (0x%x) ¤Ïǧ¼±¤Ç¤­¤Þ¤·¤¿¤¬¼è¤ê°·¤ï¤ì¤Þ¤»¤ó¤Ç¤·¤¿" +msgid "%s: invalid mmo file: expected z = 1 or z = 2, got z = %d for lop_loc\n" +msgstr "" -#: peicode.h:1212 +#: mmo.c:1663 #, c-format -msgid "%s: size field is zero in Import Library Format header" -msgstr "%s: Import Library Format ¥Ø¥Ã¥ÀÆâ¤Î¥µ¥¤¥º¥Õ¥£¡¼¥ë¥É¤¬¥¼¥í¤Ç¤¹" +msgid "" +"%s: invalid mmo file: expected z = 1 or z = 2, got z = %d for lop_fixo\n" +msgstr "" -#: peicode.h:1240 +#: mmo.c:1702 #, c-format -msgid "%s: string not null terminated in ILF object file." -msgstr "%s: ILF ¥ª¥Ö¥¸¥§¥¯¥È¥Õ¥¡¥¤¥ëÆâ¤Îʸ»úÎó¤¬ null ½ªÃ¼¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£" +msgid "%s: invalid mmo file: expected y = 0, got y = %d for lop_fixrx\n" +msgstr "" -#: peigen.c:993 +#: mmo.c:1711 #, c-format -msgid "%s: line number overflow: 0x%lx > 0xffff" -msgstr "%s: ¹ÔÈֹ椬¥ª¡¼¥Ð¡¼¥Õ¥í¡¼¤·¤Þ¤·¤¿: 0x%lx > 0xffff" +msgid "" +"%s: invalid mmo file: expected z = 16 or z = 24, got z = %d for lop_fixrx\n" +msgstr "" -#: peigen.c:1011 +#: mmo.c:1734 #, c-format -msgid "%s: reloc overflow 1: 0x%lx > 0xffff" -msgstr "%s: ºÆÇÛÃÖÎΰ褬¥ª¡¼¥Ð¡¼¥Õ¥í¡¼¤·¤Þ¤·¤¿ 1: 0x%lx > 0xffff" +msgid "" +"%s: invalid mmo file: leading byte of operand word must be 0 or 1, got %d " +"for lop_fixrx\n" +msgstr "" -#: peigen.c:1024 -msgid "Export Directory [.edata (or where ever we found it)]" -msgstr "Export ¥Ç¥£¥ì¥¯¥È¥ê [.edata (°¿¤¤¤Ï¤³¤³¤Þ¤Ç¤Ë¸«¤Ä¤±¤¿¾ì½ê)]" +#: mmo.c:1757 +#, c-format +msgid "%s: cannot allocate file name for file number %d, %d bytes\n" +msgstr "" -#: peigen.c:1025 -msgid "Import Directory [parts of .idata]" -msgstr "Import ¥Ç¥£¥ì¥¯¥È¥ê [.idata ¤ÎÉôʬ]" +#: mmo.c:1777 +#, c-format +msgid "" +"%s: invalid mmo file: file number %d `%s', was already entered as `%s'\n" +msgstr "" -#: peigen.c:1026 -msgid "Resource Directory [.rsrc]" -msgstr "¥ê¥½¡¼¥¹¥Ç¥£¥ì¥¯¥È¥ê [.rsrc]" +#: mmo.c:1790 +#, c-format +msgid "" +"%s: invalid mmo file: file name for number %d was not specified before use\n" +msgstr "" -#: peigen.c:1027 -msgid "Exception Directory [.pdata]" -msgstr "Îã³°¥Ç¥£¥ì¥¯¥È¥ê [.pdata]" +#: mmo.c:1896 +#, c-format +msgid "" +"%s: invalid mmo file: fields y and z of lop_stab non-zero, y: %d, z: %d\n" +msgstr "" -#: peigen.c:1028 -msgid "Security Directory" -msgstr "¥»¥­¥å¥ê¥Æ¥£¥Ç¥£¥ì¥¯¥È¥ê" +#: mmo.c:1932 +#, c-format +msgid "%s: invalid mmo file: lop_end not last item in file\n" +msgstr "" -#: peigen.c:1029 -msgid "Base Relocation Directory [.reloc]" -msgstr "´ðËܺÆÇÛÃ֥ǥ£¥ì¥¯¥È¥ê [.reloc]" +#: mmo.c:1945 +#, c-format +msgid "" +"%s: invalid mmo file: YZ of lop_end (%ld) not equal to the number of tetras " +"to the preceding lop_stab (%ld)\n" +msgstr "" -#: peigen.c:1030 -msgid "Debug Directory" -msgstr "¥Ç¥Ð¥Ã¥°¥Ç¥£¥ì¥¯¥È¥ê" +#: mmo.c:2610 +#, c-format +msgid "%s: invalid symbol table: duplicate symbol `%s'\n" +msgstr "" -#: peigen.c:1031 -msgid "Description Directory" -msgstr "µ­½Ò»Ò¥Ç¥£¥ì¥¯¥È¥ê" +#: mmo.c:2898 +#, c-format +msgid "" +"%s: Bad symbol definition: `Main' set to %s rather than the start address %" +"s\n" +msgstr "" -#: peigen.c:1032 -msgid "Special Directory" -msgstr "¥¹¥Ú¥·¥ã¥ë¥Ç¥£¥ì¥¯¥È¥ê" +#: mmo.c:2932 +#, c-format +msgid "" +"%s: warning: symbol table too large for mmo, larger than 65535 32-bit words: " +"%d. Only `Main' will be emitted.\n" +msgstr "" -#: peigen.c:1033 -msgid "Thread Storage Directory [.tls]" -msgstr "¥¹¥ì¥Ã¥Éµ­²±¥Ç¥£¥ì¥¯¥È¥ê [.tls]" +#: mmo.c:2977 +#, fuzzy, c-format +msgid "%s: internal error, symbol table changed size from %d to %d words\n" +msgstr "·Ù¹ð: ¥·¥ó¥Ü¥ë `%s' ¤Î·¿¤Ï %d ¤«¤é %d ¤ËÊѹ¹¤µ¤ì¤Þ¤·¤¿ (%s Æâ)" -#: peigen.c:1034 -msgid "Load Configuration Directory" -msgstr "¥í¡¼¥ÉÀßÄê¥Ç¥£¥ì¥¯¥È¥ê" - -#: peigen.c:1035 -msgid "Bound Import Directory" -msgstr "¶­³¦ Import ¥Ç¥£¥ì¥¯¥È¥ê" - -#: peigen.c:1036 -msgid "Import Address Table Directory" -msgstr "Import ¥¢¥É¥ì¥¹¥Æ¡¼¥Ö¥ë¥Ç¥£¥ì¥¯¥È¥ê" - -#: peigen.c:1037 -msgid "Delay Import Directory" -msgstr "ÃÙ±ä Import ¥Ç¥£¥ì¥¯¥È¥ê" - -#: peigen.c:1038 peigen.c:1039 -msgid "Reserved" -msgstr "ͽÌóºÑ" - -#: peigen.c:1103 -msgid "\nThere is an import table, but the section containing it could not be found\n" -msgstr "\nimport ¥Æ¡¼¥Ö¥ë¤¬¤¢¤ê¤Þ¤¹¤¬¡¢¤³¤³¤ò´Þ¤ó¤Ç¤¤¤ë¥»¥¯¥·¥ç¥ó¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó¤Ç¤·¤¿\n" - -#: peigen.c:1108 -#, c-format -msgid "\nThere is an import table in %s at 0x%lx\n" -msgstr "\n%s Æâ¤Î 0x%lx ¤Ë¤¢¤ë import ¥Æ¡¼¥Ö¥ë¤Ç¤¹\n" - -#: peigen.c:1147 -#, c-format -msgid "\nFunction descriptor located at the start address: %04lx\n" -msgstr "\n´Ø¿ôµ­½Ò»Ò¤Ï³«»Ï¥¢¥É¥ì¥¹¤Ë°ÌÃÖ¤·¤Æ¤¤¤Þ¤¹: %04lx\n" - -#: peigen.c:1150 -#, c-format -msgid "\tcode-base %08lx toc (loadable/actual) %08lx/%08lx\n" -msgstr "\t¥³¡¼¥É¥Ù¡¼¥¹ %08lx toc (loadable/actual) %08lx/%08lx\n" - -#: peigen.c:1156 -msgid "\nNo reldata section! Function descriptor not decoded.\n" -msgstr "\nreldata ¥»¥¯¥·¥ç¥ó¤¬¤¢¤ê¤Þ¤»¤ó! ´Ø¿ôµ­½Ò»Ò¤¬¥Ç¥³¡¼¥É¤µ¤ì¤Þ¤»¤ó¤Ç¤·¤¿¡£\n" - -#: peigen.c:1161 -#, c-format -msgid "\nThe Import Tables (interpreted %s section contents)\n" -msgstr "\nImport ¥Æ¡¼¥Ö¥ë (%s ¥»¥¯¥·¥ç¥ó¤ÎÆâÍƤò²ò¼á)\n" - -#: peigen.c:1164 -msgid " vma: Hint Time Forward DLL First\n" -msgstr " vma: Hint Time Forward DLL First\n" - -#: peigen.c:1166 -msgid " Table Stamp Chain Name Thunk\n" -msgstr " Table Stamp Chain Name Thunk\n" - -#: peigen.c:1216 -#, c-format -msgid "\n\tDLL Name: %s\n" -msgstr "\n\tDLL ̾: %s\n" - -#: peigen.c:1220 peigen.c:1283 -msgid "\tvma: Hint/Ord Member-Name\n" -msgstr "\tvma: Hint/Ord ¥á¥ó¥Ð̾\n" - -#: peigen.c:1282 -msgid "\tThe Import Address Table (difference found)\n" -msgstr "\tImport ¥¢¥É¥ì¥¹¥Æ¡¼¥Ö¥ë (º¹°Û¤òȯ¸«)\n" - -#: peigen.c:1289 -msgid "\t>>> Ran out of IAT members!\n" -msgstr "\t>>> IAT ¥á¥ó¥Ð¤òÄɤ¤½Ð¤·¤Þ¤·¤¿!\n" - -#: peigen.c:1308 -msgid "\tThe Import Address Table is identical\n" -msgstr "\tImport Address Table ¤¬Á´¤¯Æ±¤¸¤Ç¤¹\n" - -#: peigen.c:1381 -msgid "\nThere is an export table, but the section containing it could not be found\n" -msgstr "\nexport ¥Æ¡¼¥Ö¥ë¤¬¤¢¤ê¤Þ¤¹¤¬¡¢¤³¤ì¤ò´Þ¤ó¤Ç¤¤¤ë¥»¥¯¥·¥ç¥ó¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó¤Ç¤·¤¿\n" - -#: peigen.c:1386 -#, c-format -msgid "\nThere is an export table in %s at 0x%lx\n" -msgstr "\n%s ¤Î 0x%lx ¤Ë export ¥Æ¡¼¥Ö¥ë¤¬¤¢¤ê¤Þ¤¹\n" +#: mmo.c:3032 +#, fuzzy, c-format +msgid "%s: internal error, internal register section %s had contents\n" +msgstr "%s: ihex_read_section Æâ¤ÇÆâÉô¥¨¥é¡¼" -#: peigen.c:1417 +#: mmo.c:3084 #, c-format -msgid "\nThe Export Tables (interpreted %s section contents)\n\n" -msgstr "\nExport ¥Æ¡¼¥Ö¥ë (%s ¥»¥¯¥·¥ç¥ó¤ÎÆâÍƤò²ò¼á)\n\n" +msgid "%s: no initialized registers; section length 0\n" +msgstr "" -#: peigen.c:1421 +#: mmo.c:3090 #, c-format -msgid "Export Flags \t\t\t%lx\n" -msgstr "Export ¥Õ¥é¥° \t\t\t%lx\n" +msgid "%s: too many initialized registers; section length %ld\n" +msgstr "" -#: peigen.c:1424 +#: mmo.c:3095 #, c-format -msgid "Time/Date stamp \t\t%lx\n" -msgstr "»þ¹ï/ÆüÉÕ¥¹¥¿¥ó¥× \t\t%lx\n" +msgid "" +"%s: invalid start address for initialized registers of length %ld: 0x%lx%" +"08lx\n" +msgstr "" -#: peigen.c:1427 +#: oasys.c:1036 #, c-format -msgid "Major/Minor \t\t\t%d/%d\n" -msgstr "Major/Minor \t\t\t%d/%d\n" - -#: peigen.c:1430 -msgid "Name \t\t\t\t" -msgstr "̾Á° \t\t\t\t" +msgid "%s: can not represent section `%s' in oasys" +msgstr "%s: oasys ¤Ç¤Ï¥»¥¯¥·¥ç¥ó `%s' ¤òɽ¸½¤Ç¤­¤Þ¤»¤ó" -#: peigen.c:1436 +#: osf-core.c:132 #, c-format -msgid "Ordinal Base \t\t\t%ld\n" -msgstr "½ø¿ô¥Ù¡¼¥¹ \t\t\t%ld\n" - -#: peigen.c:1439 -msgid "Number in:\n" -msgstr "³Æ¼ï¤Î¿ôÃÍ:\n" +msgid "Unhandled OSF/1 core file section type %d\n" +msgstr "OSF/1 ¥³¥¢¥Õ¥¡¥¤¥ë¥»¥¯¥·¥ç¥ó¥¿¥¤¥× %d ¤Ï¼è¤ê°·¤ï¤ì¤Þ¤»¤ó¤Ç¤·¤¿\n" -#: peigen.c:1442 +#: pe-mips.c:658 #, c-format -msgid "\tExport Address Table \t\t%08lx\n" -msgstr "\tExport ¥¢¥É¥ì¥¹¥Æ¡¼¥Ö¥ë\t\t%08lx\n" +msgid "%s: `ld -r' not supported with PE MIPS objects\n" +msgstr "%s: `ld -r' ¤ò PE MIPS objects ¤È¶¦¤Ë»È¤¦»ö¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n" -#: peigen.c:1446 +#. OK, at this point the following variables are set up: +#. src = VMA of the memory we're fixing up +#. mem = pointer to memory we're fixing up +#. val = VMA of what we need to refer to +#. +#: pe-mips.c:794 #, c-format -msgid "\t[Name Pointer/Ordinal] Table\t%08lx\n" -msgstr "\t[̾Á°¥Ý¥¤¥ó¥¿/½ø¿ô] ¥Æ¡¼¥Ö¥ë\t%08lx\n" - -#: peigen.c:1449 -msgid "Table Addresses\n" -msgstr "¥Æ¡¼¥Ö¥ë¥¢¥É¥ì¥¹\n" - -#: peigen.c:1452 -msgid "\tExport Address Table \t\t" -msgstr "\tExport ¥¢¥É¥ì¥¹¥Æ¡¼¥Ö¥ë\t\t" - -#: peigen.c:1457 -msgid "\tName Pointer Table \t\t" -msgstr "\t̾Á°¥Ý¥¤¥ó¥¿¥Æ¡¼¥Ö¥ë \t\t" - -#: peigen.c:1462 -msgid "\tOrdinal Table \t\t\t" -msgstr "\t½ø¿ô¥Æ¡¼¥Ö¥ë \t\t\t" +msgid "%s: unimplemented %s\n" +msgstr "%s: ̤¼ÂÁõ¤Î %s ¤Ç¤¹\n" -#: peigen.c:1476 +#: pe-mips.c:820 #, c-format -msgid "\nExport Address Table -- Ordinal Base %ld\n" -msgstr "\nExport ¥¢¥É¥ì¥¹¥Æ¡¼¥Ö¥ë -- ½ø¿ô¥Ù¡¼¥¹ %ld\n" - -#: peigen.c:1495 -msgid "Forwarder RVA" -msgstr "Forwarder RVA" - -#: peigen.c:1506 -msgid "Export RVA" -msgstr "Export RVA" - -#: peigen.c:1513 -msgid "\n[Ordinal/Name Pointer] Table\n" -msgstr "\n[½ø¿ô/̾Á°¥Ý¥¤¥ó¥¿] ¥Æ¡¼¥Ö¥ë\n" +msgid "%s: jump too far away\n" +msgstr "%s: ¥¸¥ã¥ó¥×À褬±ó¤¹¤®¤Þ¤¹\n" -#: peigen.c:1568 +#: pe-mips.c:847 #, c-format -msgid "Warning, .pdata section size (%ld) is not a multiple of %d\n" -msgstr "·Ù¹ð¡¢.pdata ¥»¥¯¥·¥ç¥ó¥µ¥¤¥º (%ld) ¤¬ %d ¤ÎÇÜ¿ô¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó\n" - -#: peigen.c:1572 -msgid "\nThe Function Table (interpreted .pdata section contents)\n" -msgstr "\n´Ø¿ô¥Æ¡¼¥Ö¥ë (.pdata ¥»¥¯¥·¥ç¥ó¤ÎÆâÍƤò²ò¼á)\n" - -#: peigen.c:1575 -msgid " vma:\t\t\tBegin Address End Address Unwind Info\n" -msgstr " vma:\t\t\t³«»Ï¥¢¥É¥ì¥¹ ½ªÎ»¥¢¥É¥ì¥¹ Unwind ¾ðÊó\n" - -#: peigen.c:1578 -msgid " vma:\t\tBegin End EH EH PrologEnd Exception\n" -msgstr " vma:\t\t³«»Ï ½ªÎ» EH EH PrologEnd Îã³°\n" - -#: peigen.c:1580 -msgid " \t\tAddress Address Handler Data Address Mask\n" -msgstr " \t\t¥¢¥É¥ì¥¹ ¥¢¥É¥ì¥¹ ¥Ï¥ó¥É¥é ¥Ç¡¼¥¿ ¥¢¥É¥ì¥¹ ¥Þ¥¹¥¯\n" - -#: peigen.c:1652 -msgid " Register save millicode" -msgstr " ¥ì¥¸¥¹¥¿Êݸ¥ß¥ê¥³¡¼¥É" - -#: peigen.c:1655 -msgid " Register restore millicode" -msgstr " ¥ì¥¸¥¹¥¿Éü¸µ¥ß¥ê¥³¡¼¥É" - -#: peigen.c:1658 -msgid " Glue code sequence" -msgstr " ¥°¥ë¡¼¥³¡¼¥ÉÎó" - -#: peigen.c:1709 -msgid "\n\nPE File Base Relocations (interpreted .reloc section contents)\n" -msgstr "\n\nPE ¥Õ¥¡¥¤¥ë¥Ù¡¼¥¹ºÆÇÛÃÖ (.reloc ¥»¥¯¥·¥ç¥ó¤ÎÆâÍƤò²ò¼á)\n" +msgid "%s: bad pair/reflo after refhi\n" +msgstr "%s: ÉÔÀµ¤Ê pair/reflo ¤¬ refhi ¤Î¸å¤í¤Ë¤¢¤ê¤Þ¤¹\n" -#: peigen.c:1744 +#. XXX code yet to be written. +#: peicode.h:785 #, c-format -msgid "\nVirtual Address: %08lx Chunk size %ld (0x%lx) Number of fixups %ld\n" -msgstr "\n²¾ÁÛ¥¢¥É¥ì¥¹: %08lx ¥Á¥ã¥ó¥¯¥µ¥¤¥º %ld (0x%lx) fixups ¤Î¸Ä¿ô %ld\n" +msgid "%s: Unhandled import type; %x" +msgstr "%s: import ¥¿¥¤¥× %x ¤Ï¼è¤ê°·¤ï¤ì¤Þ¤»¤ó¤Ç¤·¤¿" -#: peigen.c:1757 +#: peicode.h:790 #, c-format -msgid "\treloc %4d offset %4x [%4lx] %s" -msgstr "\treloc %4d ¥ª¥Õ¥»¥Ã¥È %4x [%4lx] %s" +msgid "%s: Unrecognised import type; %x" +msgstr "%s: import ¥¿¥¤¥×¤òǧ¼±¤Ç¤­¤Þ¤»¤ó -- %x" -#. The MS dumpbin program reportedly ands with 0xff0f before -#. printing the characteristics field. Not sure why. No reason to -#. emulate it here. -#: peigen.c:1796 +#: peicode.h:804 #, c-format -msgid "\nCharacteristics 0x%x\n" -msgstr "\n¸ÇÍ­ 0x%x\n" +msgid "%s: Unrecognised import name type; %x" +msgstr "%s: import ̾Á°¥¿¥¤¥×¤òǧ¼±¤Ç¤­¤Þ¤»¤ó -- %x" -#: pe-mips.c:653 +#: peicode.h:1162 #, c-format -msgid "%s: `ld -r' not supported with PE MIPS objects\n" -msgstr "%s: `ld -r' ¤ò PE MIPS objects ¤È¶¦¤Ë»È¤¦»ö¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n" +msgid "%s: Unrecognised machine type (0x%x) in Import Library Format archive" +msgstr "%s: Import Library Format ½ñ¸ËÆâ¤Î¥Þ¥·¥ó¥¿¥¤¥× (0x%x) ¤òǧ¼±¤Ç¤­¤Þ¤»¤ó" -#. OK, at this point the following variables are set up: -#. src = VMA of the memory we're fixing up -#. mem = pointer to memory we're fixing up -#. val = VMA of what we need to refer to -#. -#: pe-mips.c:789 +#: peicode.h:1174 #, c-format -msgid "%s: unimplemented %s\n" -msgstr "%s: ̤¼ÂÁõ¤Î %s ¤Ç¤¹\n" +msgid "" +"%s: Recognised but unhandled machine type (0x%x) in Import Library Format " +"archive" +msgstr "" +"%s: Import Library Format ½ñ¸ËÆâ¤Î¥Þ¥·¥ó¥¿¥¤¥× (0x%x) ¤Ïǧ¼±¤Ç¤­¤Þ¤·¤¿¤¬¼è¤ê" +"°·¤ï¤ì¤Þ¤»¤ó¤Ç¤·¤¿" -#: pe-mips.c:815 +#: peicode.h:1191 #, c-format -msgid "%s: jump too far away\n" -msgstr "%s: ¥¸¥ã¥ó¥×À褬±ó¤¹¤®¤Þ¤¹\n" +msgid "%s: size field is zero in Import Library Format header" +msgstr "%s: Import Library Format ¥Ø¥Ã¥ÀÆâ¤Î¥µ¥¤¥º¥Õ¥£¡¼¥ë¥É¤¬¥¼¥í¤Ç¤¹" -#: pe-mips.c:842 +#: peicode.h:1219 #, c-format -msgid "%s: bad pair/reflo after refhi\n" -msgstr "%s: ÉÔÀµ¤Ê pair/reflo ¤¬ refhi ¤Î¸å¤í¤Ë¤¢¤ê¤Þ¤¹\n" +msgid "%s: string not null terminated in ILF object file." +msgstr "%s: ILF ¥ª¥Ö¥¸¥§¥¯¥È¥Õ¥¡¥¤¥ëÆâ¤Îʸ»úÎó¤¬ null ½ªÃ¼¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£" -#: ppcboot.c:422 -msgid "\nppcboot header:\n" -msgstr "\nppcboot ¥Ø¥Ã¥À:\n" +#: ppcboot.c:416 +msgid "" +"\n" +"ppcboot header:\n" +msgstr "" +"\n" +"ppcboot ¥Ø¥Ã¥À:\n" -#: ppcboot.c:423 +#: ppcboot.c:417 #, c-format msgid "Entry offset = 0x%.8lx (%ld)\n" msgstr "¥¨¥ó¥È¥ê¥ª¥Õ¥»¥Ã¥È = 0x%.8lx (%ld)\n" -#: ppcboot.c:424 +#: ppcboot.c:418 #, c-format msgid "Length = 0x%.8lx (%ld)\n" msgstr "Ťµ = 0x%.8lx (%ld)\n" -#: ppcboot.c:427 +#: ppcboot.c:421 #, c-format msgid "Flag field = 0x%.2x\n" msgstr "¥Õ¥é¥°¥Õ¥£¡¼¥ë¥É = 0x%.2x\n" -#: ppcboot.c:433 +#: ppcboot.c:427 #, c-format msgid "Partition name = \"%s\"\n" msgstr "Îΰè̾ = \"%s\"\n" -#: ppcboot.c:452 +#: ppcboot.c:446 #, c-format -msgid "\nPartition[%d] start = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" -msgstr "\nÎΰè[%d] ¤Î³«»Ï = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" +msgid "" +"\n" +"Partition[%d] start = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" +msgstr "" +"\n" +"Îΰè[%d] ¤Î³«»Ï = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" -#: ppcboot.c:458 +#: ppcboot.c:452 #, c-format msgid "Partition[%d] end = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" msgstr "Îΰè[%d] ¤ÎËöÈø = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" -#: ppcboot.c:464 +#: ppcboot.c:458 #, c-format msgid "Partition[%d] sector = 0x%.8lx (%ld)\n" msgstr "Îΰè[%d] ¥»¥¯¥¿ = 0x%.8lx (%ld)\n" -#: ppcboot.c:465 +#: ppcboot.c:459 #, c-format msgid "Partition[%d] length = 0x%.8lx (%ld)\n" msgstr "Îΰè[%d] Ťµ = 0x%.8lx (%ld)\n" -#: som.c:5355 +#: som.c:5402 msgid "som_sizeof_headers unimplemented" msgstr "som_sizeof_headers ¤Ï̤¼ÂÁõ¤Ç¤¹" -#: srec.c:300 +#: srec.c:301 #, c-format msgid "%s:%d: Unexpected character `%s' in S-record file\n" msgstr "%s:%d: `%s' ¤Ï S-record ¥Õ¥¡¥¤¥ëÆâ¤Ë¤Ï¤¢¤êÆÀ¤Ê¤¤Ê¸»ú¤Ç¤¹\n" -#: syms.c:968 +#: syms.c:998 msgid "Unsupported .stab relocation" msgstr ".stab ºÆÇÛÃ֤ϥµ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: vms-gsd.c:354 +#: vms-gsd.c:356 #, c-format msgid "bfd_make_section (%s) failed" msgstr "bfd_make_section (%s) ¤¬¼ºÇÔ¤·¤Þ¤·¤¿" -#: vms-gsd.c:368 +#: vms-gsd.c:371 #, c-format msgid "bfd_set_section_flags (%s, %x) failed" msgstr "bfd_set_section_flags (%s, %x) ¤¬¼ºÇÔ¤·¤Þ¤·¤¿" -#: vms-gsd.c:404 +#: vms-gsd.c:407 #, c-format msgid "Size mismatch section %s=%lx, %s=%lx" msgstr "¥»¥¯¥·¥ç¥ó %s=%lx, %s=%lx ¤Ç¥µ¥¤¥º¤¬°ìÃפ·¤Þ¤»¤ó" -#: vms-gsd.c:699 +#: vms-gsd.c:704 #, c-format msgid "unknown gsd/egsd subtype %d" msgstr "ÉÔÌÀ¤Ê gsd/egsd ¥µ¥Ö¥¿¥¤¥× %d ¤Ç¤¹" -#: vms-hdr.c:403 +#: vms-hdr.c:406 msgid "Object module NOT error-free !\n" msgstr "¥ª¥Ö¥¸¥§¥¯¥È¥â¥¸¥å¡¼¥ë¤¬¥¨¥é¡¼¥Õ¥ê¡¼¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó!\n" -#: vms-misc.c:539 +#: vms-misc.c:543 #, c-format msgid "Stack overflow (%d) in _bfd_vms_push" msgstr "_bfd_vms_push ¤Ç¥¹¥¿¥Ã¥¯¥ª¡¼¥Ð¡¼¥Õ¥í¡¼(%d)¤·¤Þ¤·¤¿" -#: vms-misc.c:557 +#: vms-misc.c:561 msgid "Stack underflow in _bfd_vms_pop" msgstr "_bfd_vms_pop ¤Ç¥¹¥¿¥Ã¥¯¥¢¥ó¥À¡¼¥Õ¥í¡¼¤·¤Þ¤·¤¿" -#: vms-misc.c:915 +#: vms-misc.c:919 msgid "_bfd_vms_output_counted called with zero bytes" msgstr "_bfd_vms_output_counted ¤¬¥¼¥í¥Ð¥¤¥È¤Ç¸Æ¤Ó½Ð¤µ¤ì¤Þ¤·¤¿" -#: vms-misc.c:920 +#: vms-misc.c:924 msgid "_bfd_vms_output_counted called with too many bytes" msgstr "_bfd_vms_output_counted ¸Æ¤Ó½Ð¤·»þ¤Î¥Ð¥¤¥È¿ô¤¬Â礭¤¹¤®¤Þ¤¹" -#: vms-misc.c:1051 +#: vms-misc.c:1055 #, c-format msgid "Symbol %s replaced by %s\n" msgstr "¥·¥ó¥Ü¥ë %s ¤Ï %s ¤ÇÃÖ¤­´¹¤¨¤é¤ì¤Þ¤·¤¿\n" -#: vms-misc.c:1113 +#: vms-misc.c:1117 #, c-format msgid "failed to enter %s" msgstr "%s ¤ØÆþ¤ì¤Þ¤»¤ó¤Ç¤·¤¿" -#: vms-tir.c:68 +#: vms-tir.c:81 msgid "No Mem !" msgstr "¥á¥â¥ê¤¬¤¢¤ê¤Þ¤»¤ó!" -#: vms-tir.c:302 -msgid "Bad section index in ETIR_S_C_STA_PQ" +#: vms-tir.c:362 +#, fuzzy, c-format +msgid "bad section index in %s" msgstr "ETIR_S_C_STA_PQ ¤Ë¤¢¤ë¥»¥¯¥·¥ç¥ó¥¤¥ó¥Ç¥Ã¥¯¥¹¤¬ÉÔÀµ¤Ç¤¹" -#: vms-tir.c:317 -#, c-format -msgid "Unsupported STA cmd %d" +#: vms-tir.c:375 +#, fuzzy, c-format +msgid "unsupported STA cmd %s" msgstr "STA cmd %d ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" -#: vms-tir.c:322 vms-tir.c:1274 -#, c-format -msgid "Reserved STA cmd %d" +#: vms-tir.c:380 vms-tir.c:1240 +#, fuzzy, c-format +msgid "reserved STA cmd %d" msgstr "STA cmd %d ¤ÏͽÌóºÑ¤Ç¤¹" -#: vms-tir.c:428 -#, c-format -msgid "ETIR_S_C_STO_GBL: no symbol \"%s\"" -msgstr "ETIR_S_C_STO_GBL: ¥·¥ó¥Ü¥ë \"%s\" ¤¬¤¢¤ê¤Þ¤»¤ó" - -#: vms-tir.c:449 -#, c-format -msgid "ETIR_S_C_STO_CA: no symbol \"%s\"" -msgstr "ETIR_S_C_STO_CA: ¥·¥ó¥Ü¥ë \"%s\" ¤¬¤¢¤ê¤Þ¤»¤ó" - -#: vms-tir.c:462 -msgid "ETIR_S_C_STO_RB/AB: Not supported" -msgstr "ETIR_S_C_STO_RB/AB: ¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" - -#: vms-tir.c:520 -msgid "ETIR_S_C_STO_LP_PSB: Not supported" -msgstr "ETIR_S_C_STO_LP_PSB: ¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" +#: vms-tir.c:491 vms-tir.c:514 +#, fuzzy, c-format +msgid "%s: no symbol \"%s\"" +msgstr "%s: ¤½¤Î¤è¤¦¤Ê¥·¥ó¥Ü¥ë¤Ï¤¢¤ê¤Þ¤»¤ó" -#: vms-tir.c:526 -msgid "ETIR_S_C_STO_HINT_GBL: not implemented" -msgstr "ETIR_S_C_STO_HINT_GBL: ¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#. unsigned shift +#. rotate +#. Redefine symbol to current location. +#. Define a literal. +#: vms-tir.c:581 vms-tir.c:693 vms-tir.c:803 vms-tir.c:821 vms-tir.c:829 +#: vms-tir.c:838 vms-tir.c:1563 +#, fuzzy, c-format +msgid "%s: not supported" +msgstr "¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó" -#: vms-tir.c:532 -msgid "ETIR_S_C_STO_HINT_PS: not implemented" -msgstr "ETIR_S_C_STO_HINT_PS: ¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: vms-tir.c:586 vms-tir.c:1418 +#, fuzzy, c-format +msgid "%s: not implemented" +msgstr "%s: ̤¼ÂÁõ¤Î %s ¤Ç¤¹\n" -#: vms-tir.c:536 vms-tir.c:1446 -#, c-format -msgid "Reserved STO cmd %d" +#: vms-tir.c:590 vms-tir.c:1422 +#, fuzzy, c-format +msgid "reserved STO cmd %d" msgstr "STO cmd %d ¤ÏͽÌóºÑ¤Ç¤¹" -#: vms-tir.c:649 -msgid "ETIR_S_C_OPR_INSV: Not supported" -msgstr "ETIR_S_C_OPR_INSV: ¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" - -#: vms-tir.c:667 -msgid "ETIR_S_C_OPR_USH: Not supported" -msgstr "ETIR_S_C_OPR_USH: ¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" - -#: vms-tir.c:673 -msgid "ETIR_S_C_OPR_ROT: Not supported" -msgstr "ETIR_S_C_OPR_ROT: ¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" - -#: vms-tir.c:692 -msgid "ETIR_S_C_OPR_REDEF: Not supported" -msgstr "ETIR_S_C_OPR_REDEF: ¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" - -#: vms-tir.c:698 -msgid "ETIR_S_C_OPR_DFLIT: Not supported" -msgstr "ETIR_S_C_OPR_DFLIT: ¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" - -#: vms-tir.c:702 vms-tir.c:1641 -#, c-format -msgid "Reserved OPR cmd %d" +#: vms-tir.c:708 vms-tir.c:1568 +#, fuzzy, c-format +msgid "reserved OPR cmd %d" msgstr "OPR cmd %d ¤ÏͽÌóºÑ¤Ç¤¹" -#: vms-tir.c:770 vms-tir.c:1710 -#, c-format -msgid "Reserved CTL cmd %d" +#: vms-tir.c:776 vms-tir.c:1632 +#, fuzzy, c-format +msgid "reserved CTL cmd %d" msgstr "CTL cmd %d ¤ÏͽÌóºÑ¤Ç¤¹" -#: vms-tir.c:798 -msgid "ETIR_S_C_STC_LP: not supported" -msgstr "ETIR_S_C_STC_LP: ¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" - -#: vms-tir.c:816 -msgid "ETIR_S_C_STC_GBL: not supported" -msgstr "ETIR_S_C_STC_GBL: ¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" - -#: vms-tir.c:824 -msgid "ETIR_S_C_STC_GCA: not supported" -msgstr "ETIR_S_C_STC_GCA: ¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" - -#: vms-tir.c:833 -msgid "ETIR_S_C_STC_PS: not supported" -msgstr "ETIR_S_C_STC_PS: ¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" - -#. -#. * stack byte from image -#. * arg: - -#. * -#. -#: vms-tir.c:1174 -msgid "Stack-from-image not implemented" +#. stack byte from image +#. arg: none. +#: vms-tir.c:1148 +#, fuzzy +msgid "stack-from-image not implemented" msgstr "Stack-from-image ¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: vms-tir.c:1194 -msgid "Stack-entry-mask not fully implemented" +#: vms-tir.c:1166 +#, fuzzy +msgid "stack-entry-mask not fully implemented" msgstr "Stack-entry-mask ¤Ï´°Á´¤Ë¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#. compare procedure argument +#. arg: cs symbol name +#. by argument index +#. da argument descriptor #. -#. * compare procedure argument -#. * arg: cs symbol name -#. * by argument index -#. * da argument descriptor -#. * -#. * compare argument descriptor with symbol argument (ARG$V_PASSMECH) -#. * and stack TRUE (args match) or FALSE (args dont match) value -#. -#: vms-tir.c:1210 +#. compare argument descriptor with symbol argument (ARG$V_PASSMECH) +#. and stack TRUE (args match) or FALSE (args dont match) value. +#: vms-tir.c:1180 msgid "PASSMECH not fully implemented" msgstr "PASSMECH ¤Ï´°Á´¤Ë¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: vms-tir.c:1230 -msgid "Stack-local-symbol not fully implemented" +#: vms-tir.c:1199 +#, fuzzy +msgid "stack-local-symbol not fully implemented" msgstr "Stack-local-symbol ¤Ï´°Á´¤Ë¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: vms-tir.c:1245 -msgid "Stack-literal not fully implemented" +#: vms-tir.c:1212 +#, fuzzy +msgid "stack-literal not fully implemented" msgstr "Stack-literal ¤Ï´°Á´¤Ë¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: vms-tir.c:1267 -msgid "Stack-local-symbol-entry-point-mask not fully implemented" +#: vms-tir.c:1233 +#, fuzzy +msgid "stack-local-symbol-entry-point-mask not fully implemented" msgstr "Stack-local-symbol-entry-point-mask ¤Ï´°Á´¤Ë¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: vms-tir.c:1442 -#, c-format -msgid "Unimplemented STO cmd %d" -msgstr "STO cmd %d ¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" - -#: vms-tir.c:1581 -msgid "TIR_S_C_OPR_ASH incomplete" -msgstr "TIR_S_C_OPR_ASH ¤ÏÉÔ´°Á´¤Ç¤¹" - -#: vms-tir.c:1595 -msgid "TIR_S_C_OPR_USH incomplete" -msgstr "TIR_S_C_OPR_USH ¤ÏÉÔ´°Á´¤Ç¤¹" - -#: vms-tir.c:1609 -msgid "TIR_S_C_OPR_ROT incomplete" -msgstr "TIR_S_C_OPR_ROT ¤ÏÉÔ´°Á´¤Ç¤¹" - -#. -#. * redefine symbol to current location -#. -#: vms-tir.c:1630 -msgid "TIR_S_C_OPR_REDEF not supported" -msgstr "TIR_S_C_OPR_REDEF ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" - -#. -#. * define a literal -#. -#: vms-tir.c:1637 -msgid "TIR_S_C_OPR_DFLIT not supported" -msgstr "TIR_S_C_OPR_DFLIT ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" - -#: vms-tir.c:1691 -msgid "TIR_S_C_CTL_DFLOC not fully implemented" -msgstr "TIR_S_C_CTL_DFLOC ¤Ï´°Á´¤Ë¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" - -#: vms-tir.c:1699 -msgid "TIR_S_C_CTL_STLOC not fully implemented" -msgstr "TIR_S_C_CTL_STLOC ¤Ï´°Á´¤Ë¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" - -#: vms-tir.c:1707 -msgid "TIR_S_C_CTL_STKDL not fully implemented" -msgstr "TIR_S_C_CTL_STKDL ¤Ï´°Á´¤Ë¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: vms-tir.c:1510 vms-tir.c:1522 vms-tir.c:1534 vms-tir.c:1546 vms-tir.c:1611 +#: vms-tir.c:1619 vms-tir.c:1627 +#, fuzzy, c-format +msgid "%s: not fully implemented" +msgstr "PASSMECH ¤Ï´°Á´¤Ë¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: vms-tir.c:1761 -#, c-format -msgid "Obj code %d not found" +#: vms-tir.c:1684 +#, fuzzy, c-format +msgid "obj code %d not found" msgstr "¥ª¥Ö¥¸¥§¥¯¥È¥³¡¼¥É %d ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: vms-tir.c:2102 +#: vms-tir.c:2019 #, c-format msgid "SEC_RELOC with no relocs in section %s" msgstr "SEC_RELOC ¤¬¥»¥¯¥·¥ç¥ó %s ¤Ë¤¢¤ê¤Þ¤¹¤¬ºÆÇÛÃÖ¤¬¤¢¤ê¤Þ¤»¤ó" -#: vms-tir.c:2376 +#: vms-tir.c:2307 #, c-format msgid "Unhandled relocation %s" msgstr "ºÆÇÛÃÖ %s ¤¬¼è¤ê°·¤ï¤ì¤Þ¤»¤ó¤Ç¤·¤¿" -#: xcofflink.c:1634 +#: xcofflink.c:1241 #, c-format msgid "%s: `%s' has line numbers but no enclosing section" msgstr "%s: `%s' ¤Ï¹ÔÈÖ¹æ¤ò»ý¤Á¤Þ¤¹¤¬¡¢¥»¥¯¥·¥ç¥ó¤ò°Ï¤¤¹þ¤ó¤Ç¤¤¤Þ¤»¤ó" -#: xcofflink.c:1686 +#: xcofflink.c:1294 #, c-format msgid "%s: class %d symbol `%s' has no aux entries" msgstr "%s: ¥¯¥é¥¹ %d ¥·¥ó¥Ü¥ë `%s' ¤ËÊä½õ¥¨¥ó¥È¥ê¤¬¤¢¤ê¤Þ¤»¤ó" -#: xcofflink.c:1709 +#: xcofflink.c:1317 #, c-format msgid "%s: symbol `%s' has unrecognized csect type %d" msgstr "%s: ¥·¥ó¥Ü¥ë `%s' ¤¬Ç§¼±¤Ç¤­¤Ê¤¤ csect ¥¿¥¤¥× %d ¤ò»ý¤Ã¤Æ¤¤¤Þ¤¹" -#: xcofflink.c:1721 +#: xcofflink.c:1329 #, c-format msgid "%s: bad XTY_ER symbol `%s': class %d scnum %d scnlen %d" msgstr "%s: ÉÔÀµ XTY_ER ¥·¥ó¥Ü¥ë `%s': ¥¯¥é¥¹ %d scnum %d scnlen %d" -#: xcofflink.c:1760 +#: xcofflink.c:1365 #, c-format msgid "%s: XMC_TC0 symbol `%s' is class %d scnlen %d" msgstr "%s: XMC_TC0 ¥·¥ó¥Ü¥ë `%s' ¤Ï class %d scnlen %d ¤Ç¤¹" -#: xcofflink.c:1883 -#, c-format -msgid "%s: symbol `%s' has unrecognized smclas %d" -msgstr "%s: ¥·¥ó¥Ü¥ë `%s' ¤Ïǧ¼±¤Ç¤­¤Ê¤¤ smclas %d ¤ò»ý¤Ã¤Æ¤¤¤Þ¤¹" - -#: xcofflink.c:1902 +#: xcofflink.c:1517 #, c-format msgid "%s: csect `%s' not in enclosing section" msgstr "%s: csect `%s' ¤¬¥»¥¯¥·¥ç¥ó¤Î°Ï¤ß¤ÎÃæ¤Ë¤¢¤ê¤Þ¤»¤ó" -#: xcofflink.c:2006 +#: xcofflink.c:1624 #, c-format msgid "%s: misplaced XTY_LD `%s'" msgstr "%s: XTY_LD `%s' ¤òÃÖ¤­°ã¤¨¤Æ¤¤¤Þ¤¹" -#: xcofflink.c:2317 +#: xcofflink.c:1948 #, c-format msgid "%s: reloc %s:%d not in csect" msgstr "%s: ºÆÇÛÃÖ %s:%d ¤¬ csect Æâ¤Ë¤¢¤ê¤Þ¤»¤ó" -#: xcofflink.c:2452 +#: xcofflink.c:2083 #, c-format msgid "%s: XCOFF shared object when not producing XCOFF output" msgstr "%s: XCOFF ¤¬ XCOFF ½ÐÎÏÀ¸À®»þ°Ê³°¤Ë¥ª¥Ö¥¸¥§¥¯¥È¤ò¶¦Í­¤·¤Þ¤·¤¿" -#: xcofflink.c:2473 +#: xcofflink.c:2104 #, c-format msgid "%s: dynamic object with no .loader section" msgstr "%s: ưŪ¥ª¥Ö¥¸¥§¥¯¥È¤Ë .loader ¥»¥¯¥·¥ç¥ó¤¬¤¢¤ê¤Þ¤»¤ó" -#: xcofflink.c:3113 +#: xcofflink.c:2749 #, c-format msgid "%s: no such symbol" msgstr "%s: ¤½¤Î¤è¤¦¤Ê¥·¥ó¥Ü¥ë¤Ï¤¢¤ê¤Þ¤»¤ó" -#: xcofflink.c:3704 +#: xcofflink.c:2890 +msgid "error: undefined symbol __rtinit" +msgstr "" + +#: xcofflink.c:3458 #, c-format msgid "warning: attempt to export undefined symbol `%s'" msgstr "·Ù¹ð: ̤ÄêµÁ¥·¥ó¥Ü¥ë `%s' ¤ò export ¤·¤è¤¦¤È¤·¤Æ¤¤¤Þ¤¹" -#: xcofflink.c:4698 +#: xcofflink.c:4452 #, c-format msgid "TOC overflow: 0x%lx > 0x10000; try -mminimal-toc when compiling" -msgstr "TOC ¥ª¡¼¥Ð¡¼¥Õ¥í¡¼: 0x%lx > 0x10000 -- ¥³¥ó¥Ñ¥¤¥ë»þ¤Ë -mminimal-toc ¤ò»î¤·¤Þ¤·¤ç¤¦" +msgstr "" +"TOC ¥ª¡¼¥Ð¡¼¥Õ¥í¡¼: 0x%lx > 0x10000 -- ¥³¥ó¥Ñ¥¤¥ë»þ¤Ë -mminimal-toc ¤ò»î¤·¤Þ" +"¤·¤ç¤¦" -#: xcofflink.c:5523 xcofflink.c:5879 xcofflink.c:5916 xcofflink.c:6233 +#: xcofflink.c:5292 xcofflink.c:5754 xcofflink.c:5816 xcofflink.c:6117 #, c-format msgid "%s: loader reloc in unrecognized section `%s'" msgstr "%s: ¥í¡¼¥ÀºÆÇÛÃÖ¤¬Ç§¼±¤Ç¤­¤Ê¤¤¥»¥¯¥·¥ç¥ó `%s' ¤Ë¤¢¤ê¤Þ¤¹" -#: xcofflink.c:5545 xcofflink.c:6244 +#: xcofflink.c:5314 xcofflink.c:6128 #, c-format msgid "%s: `%s' in loader reloc but not loader sym" msgstr "%s: `%s' ¤¬¥í¡¼¥ÀºÆÇÛÃ֤ˤ¢¤ê¤Þ¤¹¤¬¥í¡¼¥À¥·¥ó¥Ü¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" -#: xcofflink.c:5560 +#: xcofflink.c:5329 #, c-format msgid "%s: loader reloc in read-only section %s" msgstr "%s: ¥í¡¼¥ÀºÆÇÛÃÖ¤¬Æɹþ¤ßÀìÍÑ¥»¥¯¥·¥ç¥ó %s ¤Ë¤¢¤ê¤Þ¤¹" -#: xcofflink.c:6440 +#: elf32-ia64.c:2189 elf64-ia64.c:2189 +#, fuzzy +msgid "@pltoff reloc against local symbol" +msgstr "%s: 0x%lx ¤Ç¤Î CALL16 ºÆÇÛÃÖ¤¬Âç°è¥·¥ó¥Ü¥ë¤òÂоݤȤ·¤Æ¤¤¤Þ¤»¤ó" + +#: elf32-ia64.c:3413 elf64-ia64.c:3413 #, c-format -msgid "%s: unsupported relocation type 0x%02x" -msgstr "%s: ºÆÇÛÃÖ¥¿¥¤¥× 0x%02x ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" +msgid "%s: short data segment overflowed (0x%lx >= 0x400000)" +msgstr "" -#: xcofflink.c:6486 +#: elf32-ia64.c:3424 elf64-ia64.c:3424 #, c-format -msgid "%s: TOC reloc at 0x%x to symbol `%s' with no TOC entry" -msgstr "%s: TOC ºÆÇÛÃÖ(0x%x, ¥·¥ó¥Ü¥ë `%s') ¤Ë TOC ¥¨¥ó¥È¥ê¤¬¤¢¤ê¤Þ¤»¤ó" +msgid "%s: __gp does not cover short data segment" +msgstr "" + +#: elf32-ia64.c:3728 elf64-ia64.c:3728 +#, c-format +msgid "%s: linking non-pic code in a shared library" +msgstr "" + +#: elf32-ia64.c:3761 elf64-ia64.c:3761 +#, fuzzy, c-format +msgid "%s: @gprel relocation against dynamic symbol %s" +msgstr "%s: ºÆÇÛÃÖ¥¿¥¤¥× %d (¥·¥ó¥Ü¥ë %s) ¤¬ÉÔÌÀ¤Ç¤¹" + +#: elf32-ia64.c:3900 elf64-ia64.c:3900 +#, fuzzy, c-format +msgid "%s: dynamic relocation against speculation fixup" +msgstr "%s: ưŪ¥ª¥Ö¥¸¥§¥¯¥È¤Ë .loader ¥»¥¯¥·¥ç¥ó¤¬¤¢¤ê¤Þ¤»¤ó" + +#: elf32-ia64.c:3908 elf64-ia64.c:3908 +#, c-format +msgid "%s: speculation fixup against undefined weak symbol" +msgstr "" + +#: elf32-ia64.c:4092 elf64-ia64.c:4092 +#, fuzzy +msgid "unsupported reloc" +msgstr "¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Ê¤¤ºÆÇÛÃÖ¥¿¥¤¥×¤Ç¤¹" + +#: elf32-ia64.c:4372 elf64-ia64.c:4372 +#, fuzzy, c-format +msgid "%s: linking trap-on-NULL-dereference with non-trapping files" +msgstr "%s: abicall ¥Õ¥¡¥¤¥ë¤ËÈó abicall ¥Õ¥¡¥¤¥ë¤ò¥ê¥ó¥¯¤·¤è¤¦¤È¤·¤Þ¤·¤¿" + +#: elf32-ia64.c:4381 elf64-ia64.c:4381 +#, fuzzy, c-format +msgid "%s: linking big-endian files with little-endian files" +msgstr "" +"%s: ¥ê¥È¥ë¥¨¥ó¥Ç¥£¥¢¥ó¤Î¥Õ¥¡¥¤¥ë¤È¥Ó¥Ã¥°¥¨¥ó¥Ç¥£¥¢¥ó¤Î¥Õ¥¡¥¤¥ë¤È¤ò¥ê¥ó¥¯¤·¤è" +"¤¦¤È¤·¤Æ¤¤¤Þ¤¹" + +#: elf32-ia64.c:4390 elf64-ia64.c:4390 +#, fuzzy, c-format +msgid "%s: linking 64-bit files with 32-bit files" +msgstr "%s: abicall ¥Õ¥¡¥¤¥ë¤ËÈó abicall ¥Õ¥¡¥¤¥ë¤ò¥ê¥ó¥¯¤·¤è¤¦¤È¤·¤Þ¤·¤¿" + +#: elf32-ia64.c:4399 elf64-ia64.c:4399 +#, fuzzy, c-format +msgid "%s: linking constant-gp files with non-constant-gp files" +msgstr "%s: abicall ¥Õ¥¡¥¤¥ë¤ËÈó abicall ¥Õ¥¡¥¤¥ë¤ò¥ê¥ó¥¯¤·¤è¤¦¤È¤·¤Þ¤·¤¿" + +#: elf32-ia64.c:4409 elf64-ia64.c:4409 +#, fuzzy, c-format +msgid "%s: linking auto-pic files with non-auto-pic files" +msgstr "%s: abicall ¥Õ¥¡¥¤¥ë¤ËÈó abicall ¥Õ¥¡¥¤¥ë¤ò¥ê¥ó¥¯¤·¤è¤¦¤È¤·¤Þ¤·¤¿" + +#: peigen.c:962 pepigen.c:962 +#, c-format +msgid "%s: line number overflow: 0x%lx > 0xffff" +msgstr "%s: ¹ÔÈֹ椬¥ª¡¼¥Ð¡¼¥Õ¥í¡¼¤·¤Þ¤·¤¿: 0x%lx > 0xffff" + +#: peigen.c:979 pepigen.c:979 +#, c-format +msgid "%s: reloc overflow 1: 0x%lx > 0xffff" +msgstr "%s: ºÆÇÛÃÖÎΰ褬¥ª¡¼¥Ð¡¼¥Õ¥í¡¼¤·¤Þ¤·¤¿ 1: 0x%lx > 0xffff" + +#: peigen.c:993 pepigen.c:993 +msgid "Export Directory [.edata (or where ever we found it)]" +msgstr "Export ¥Ç¥£¥ì¥¯¥È¥ê [.edata (°¿¤¤¤Ï¤³¤³¤Þ¤Ç¤Ë¸«¤Ä¤±¤¿¾ì½ê)]" + +#: peigen.c:994 pepigen.c:994 +msgid "Import Directory [parts of .idata]" +msgstr "Import ¥Ç¥£¥ì¥¯¥È¥ê [.idata ¤ÎÉôʬ]" + +#: peigen.c:995 pepigen.c:995 +msgid "Resource Directory [.rsrc]" +msgstr "¥ê¥½¡¼¥¹¥Ç¥£¥ì¥¯¥È¥ê [.rsrc]" + +#: peigen.c:996 pepigen.c:996 +msgid "Exception Directory [.pdata]" +msgstr "Îã³°¥Ç¥£¥ì¥¯¥È¥ê [.pdata]" + +#: peigen.c:997 pepigen.c:997 +msgid "Security Directory" +msgstr "¥»¥­¥å¥ê¥Æ¥£¥Ç¥£¥ì¥¯¥È¥ê" + +#: peigen.c:998 pepigen.c:998 +msgid "Base Relocation Directory [.reloc]" +msgstr "´ðËܺÆÇÛÃ֥ǥ£¥ì¥¯¥È¥ê [.reloc]" + +#: peigen.c:999 pepigen.c:999 +msgid "Debug Directory" +msgstr "¥Ç¥Ð¥Ã¥°¥Ç¥£¥ì¥¯¥È¥ê" + +#: peigen.c:1000 pepigen.c:1000 +msgid "Description Directory" +msgstr "µ­½Ò»Ò¥Ç¥£¥ì¥¯¥È¥ê" + +#: peigen.c:1001 pepigen.c:1001 +msgid "Special Directory" +msgstr "¥¹¥Ú¥·¥ã¥ë¥Ç¥£¥ì¥¯¥È¥ê" + +#: peigen.c:1002 pepigen.c:1002 +msgid "Thread Storage Directory [.tls]" +msgstr "¥¹¥ì¥Ã¥Éµ­²±¥Ç¥£¥ì¥¯¥È¥ê [.tls]" + +#: peigen.c:1003 pepigen.c:1003 +msgid "Load Configuration Directory" +msgstr "¥í¡¼¥ÉÀßÄê¥Ç¥£¥ì¥¯¥È¥ê" + +#: peigen.c:1004 pepigen.c:1004 +msgid "Bound Import Directory" +msgstr "¶­³¦ Import ¥Ç¥£¥ì¥¯¥È¥ê" + +#: peigen.c:1005 pepigen.c:1005 +msgid "Import Address Table Directory" +msgstr "Import ¥¢¥É¥ì¥¹¥Æ¡¼¥Ö¥ë¥Ç¥£¥ì¥¯¥È¥ê" + +#: peigen.c:1006 pepigen.c:1006 +msgid "Delay Import Directory" +msgstr "ÃÙ±ä Import ¥Ç¥£¥ì¥¯¥È¥ê" + +#: peigen.c:1007 peigen.c:1008 pepigen.c:1007 pepigen.c:1008 +msgid "Reserved" +msgstr "ͽÌóºÑ" + +#: peigen.c:1071 pepigen.c:1071 +msgid "" +"\n" +"There is an import table, but the section containing it could not be found\n" +msgstr "" +"\n" +"import ¥Æ¡¼¥Ö¥ë¤¬¤¢¤ê¤Þ¤¹¤¬¡¢¤³¤³¤ò´Þ¤ó¤Ç¤¤¤ë¥»¥¯¥·¥ç¥ó¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó¤Ç¤·" +"¤¿\n" + +#: peigen.c:1076 pepigen.c:1076 +#, c-format +msgid "" +"\n" +"There is an import table in %s at 0x%lx\n" +msgstr "" +"\n" +"%s Æâ¤Î 0x%lx ¤Ë¤¢¤ë import ¥Æ¡¼¥Ö¥ë¤Ç¤¹\n" + +#: peigen.c:1113 pepigen.c:1113 +#, c-format +msgid "" +"\n" +"Function descriptor located at the start address: %04lx\n" +msgstr "" +"\n" +"´Ø¿ôµ­½Ò»Ò¤Ï³«»Ï¥¢¥É¥ì¥¹¤Ë°ÌÃÖ¤·¤Æ¤¤¤Þ¤¹: %04lx\n" + +#: peigen.c:1116 pepigen.c:1116 +#, c-format +msgid "\tcode-base %08lx toc (loadable/actual) %08lx/%08lx\n" +msgstr "\t¥³¡¼¥É¥Ù¡¼¥¹ %08lx toc (loadable/actual) %08lx/%08lx\n" + +#: peigen.c:1122 pepigen.c:1122 +msgid "" +"\n" +"No reldata section! Function descriptor not decoded.\n" +msgstr "" +"\n" +"reldata ¥»¥¯¥·¥ç¥ó¤¬¤¢¤ê¤Þ¤»¤ó! ´Ø¿ôµ­½Ò»Ò¤¬¥Ç¥³¡¼¥É¤µ¤ì¤Þ¤»¤ó¤Ç¤·¤¿¡£\n" + +#: peigen.c:1127 pepigen.c:1127 +#, c-format +msgid "" +"\n" +"The Import Tables (interpreted %s section contents)\n" +msgstr "" +"\n" +"Import ¥Æ¡¼¥Ö¥ë (%s ¥»¥¯¥·¥ç¥ó¤ÎÆâÍƤò²ò¼á)\n" + +#: peigen.c:1130 pepigen.c:1130 +#, fuzzy +msgid "" +" vma: Hint Time Forward DLL First\n" +" Table Stamp Chain Name Thunk\n" +msgstr " Table Stamp Chain Name Thunk\n" + +#: peigen.c:1180 pepigen.c:1180 +#, c-format +msgid "" +"\n" +"\tDLL Name: %s\n" +msgstr "" +"\n" +"\tDLL ̾: %s\n" + +#: peigen.c:1184 peigen.c:1247 pepigen.c:1184 pepigen.c:1247 +msgid "\tvma: Hint/Ord Member-Name\n" +msgstr "\tvma: Hint/Ord ¥á¥ó¥Ð̾\n" + +#: peigen.c:1246 pepigen.c:1246 +msgid "\tThe Import Address Table (difference found)\n" +msgstr "\tImport ¥¢¥É¥ì¥¹¥Æ¡¼¥Ö¥ë (º¹°Û¤òȯ¸«)\n" + +#: peigen.c:1253 pepigen.c:1253 +msgid "\t>>> Ran out of IAT members!\n" +msgstr "\t>>> IAT ¥á¥ó¥Ð¤òÄɤ¤½Ð¤·¤Þ¤·¤¿!\n" + +#: peigen.c:1271 pepigen.c:1271 +msgid "\tThe Import Address Table is identical\n" +msgstr "\tImport Address Table ¤¬Á´¤¯Æ±¤¸¤Ç¤¹\n" + +#: peigen.c:1343 pepigen.c:1343 +msgid "" +"\n" +"There is an export table, but the section containing it could not be found\n" +msgstr "" +"\n" +"export ¥Æ¡¼¥Ö¥ë¤¬¤¢¤ê¤Þ¤¹¤¬¡¢¤³¤ì¤ò´Þ¤ó¤Ç¤¤¤ë¥»¥¯¥·¥ç¥ó¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó¤Ç¤·" +"¤¿\n" + +#: peigen.c:1348 pepigen.c:1348 +#, c-format +msgid "" +"\n" +"There is an export table in %s at 0x%lx\n" +msgstr "" +"\n" +"%s ¤Î 0x%lx ¤Ë export ¥Æ¡¼¥Ö¥ë¤¬¤¢¤ê¤Þ¤¹\n" + +#: peigen.c:1379 pepigen.c:1379 +#, c-format +msgid "" +"\n" +"The Export Tables (interpreted %s section contents)\n" +"\n" +msgstr "" +"\n" +"Export ¥Æ¡¼¥Ö¥ë (%s ¥»¥¯¥·¥ç¥ó¤ÎÆâÍƤò²ò¼á)\n" +"\n" + +#: peigen.c:1383 pepigen.c:1383 +#, c-format +msgid "Export Flags \t\t\t%lx\n" +msgstr "Export ¥Õ¥é¥° \t\t\t%lx\n" + +#: peigen.c:1386 pepigen.c:1386 +#, c-format +msgid "Time/Date stamp \t\t%lx\n" +msgstr "»þ¹ï/ÆüÉÕ¥¹¥¿¥ó¥× \t\t%lx\n" + +#: peigen.c:1389 pepigen.c:1389 +#, c-format +msgid "Major/Minor \t\t\t%d/%d\n" +msgstr "Major/Minor \t\t\t%d/%d\n" + +#: peigen.c:1392 pepigen.c:1392 +msgid "Name \t\t\t\t" +msgstr "̾Á° \t\t\t\t" + +#: peigen.c:1398 pepigen.c:1398 +#, c-format +msgid "Ordinal Base \t\t\t%ld\n" +msgstr "½ø¿ô¥Ù¡¼¥¹ \t\t\t%ld\n" + +#: peigen.c:1401 pepigen.c:1401 +msgid "Number in:\n" +msgstr "³Æ¼ï¤Î¿ôÃÍ:\n" + +#: peigen.c:1404 pepigen.c:1404 +#, c-format +msgid "\tExport Address Table \t\t%08lx\n" +msgstr "\tExport ¥¢¥É¥ì¥¹¥Æ¡¼¥Ö¥ë\t\t%08lx\n" + +#: peigen.c:1408 pepigen.c:1408 +#, c-format +msgid "\t[Name Pointer/Ordinal] Table\t%08lx\n" +msgstr "\t[̾Á°¥Ý¥¤¥ó¥¿/½ø¿ô] ¥Æ¡¼¥Ö¥ë\t%08lx\n" + +#: peigen.c:1411 pepigen.c:1411 +msgid "Table Addresses\n" +msgstr "¥Æ¡¼¥Ö¥ë¥¢¥É¥ì¥¹\n" + +#: peigen.c:1414 pepigen.c:1414 +msgid "\tExport Address Table \t\t" +msgstr "\tExport ¥¢¥É¥ì¥¹¥Æ¡¼¥Ö¥ë\t\t" + +#: peigen.c:1419 pepigen.c:1419 +msgid "\tName Pointer Table \t\t" +msgstr "\t̾Á°¥Ý¥¤¥ó¥¿¥Æ¡¼¥Ö¥ë \t\t" + +#: peigen.c:1424 pepigen.c:1424 +msgid "\tOrdinal Table \t\t\t" +msgstr "\t½ø¿ô¥Æ¡¼¥Ö¥ë \t\t\t" + +#: peigen.c:1439 pepigen.c:1439 +#, c-format +msgid "" +"\n" +"Export Address Table -- Ordinal Base %ld\n" +msgstr "" +"\n" +"Export ¥¢¥É¥ì¥¹¥Æ¡¼¥Ö¥ë -- ½ø¿ô¥Ù¡¼¥¹ %ld\n" + +#: peigen.c:1458 pepigen.c:1458 +msgid "Forwarder RVA" +msgstr "Forwarder RVA" + +#: peigen.c:1469 pepigen.c:1469 +msgid "Export RVA" +msgstr "Export RVA" + +#: peigen.c:1476 pepigen.c:1476 +msgid "" +"\n" +"[Ordinal/Name Pointer] Table\n" +msgstr "" +"\n" +"[½ø¿ô/̾Á°¥Ý¥¤¥ó¥¿] ¥Æ¡¼¥Ö¥ë\n" + +#: peigen.c:1531 pepigen.c:1531 +#, c-format +msgid "Warning, .pdata section size (%ld) is not a multiple of %d\n" +msgstr "·Ù¹ð¡¢.pdata ¥»¥¯¥·¥ç¥ó¥µ¥¤¥º (%ld) ¤¬ %d ¤ÎÇÜ¿ô¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó\n" + +#: peigen.c:1535 pepigen.c:1535 +msgid "" +"\n" +"The Function Table (interpreted .pdata section contents)\n" +msgstr "" +"\n" +"´Ø¿ô¥Æ¡¼¥Ö¥ë (.pdata ¥»¥¯¥·¥ç¥ó¤ÎÆâÍƤò²ò¼á)\n" + +#: peigen.c:1538 pepigen.c:1538 +msgid " vma:\t\t\tBegin Address End Address Unwind Info\n" +msgstr " vma:\t\t\t³«»Ï¥¢¥É¥ì¥¹ ½ªÎ»¥¢¥É¥ì¥¹ Unwind ¾ðÊó\n" + +#: peigen.c:1540 pepigen.c:1540 +#, fuzzy +msgid "" +" vma:\t\tBegin End EH EH PrologEnd Exception\n" +" \t\tAddress Address Handler Data Address Mask\n" +msgstr " vma:\t\t³«»Ï ½ªÎ» EH EH PrologEnd Îã³°\n" + +#: peigen.c:1610 pepigen.c:1610 +msgid " Register save millicode" +msgstr " ¥ì¥¸¥¹¥¿Êݸ¥ß¥ê¥³¡¼¥É" + +#: peigen.c:1613 pepigen.c:1613 +msgid " Register restore millicode" +msgstr " ¥ì¥¸¥¹¥¿Éü¸µ¥ß¥ê¥³¡¼¥É" + +#: peigen.c:1616 pepigen.c:1616 +msgid " Glue code sequence" +msgstr " ¥°¥ë¡¼¥³¡¼¥ÉÎó" + +#: peigen.c:1668 pepigen.c:1668 +msgid "" +"\n" +"\n" +"PE File Base Relocations (interpreted .reloc section contents)\n" +msgstr "" +"\n" +"\n" +"PE ¥Õ¥¡¥¤¥ë¥Ù¡¼¥¹ºÆÇÛÃÖ (.reloc ¥»¥¯¥·¥ç¥ó¤ÎÆâÍƤò²ò¼á)\n" + +#: peigen.c:1698 pepigen.c:1698 +#, c-format +msgid "" +"\n" +"Virtual Address: %08lx Chunk size %ld (0x%lx) Number of fixups %ld\n" +msgstr "" +"\n" +"²¾ÁÛ¥¢¥É¥ì¥¹: %08lx ¥Á¥ã¥ó¥¯¥µ¥¤¥º %ld (0x%lx) fixups ¤Î¸Ä¿ô %ld\n" + +#: peigen.c:1711 pepigen.c:1711 +#, c-format +msgid "\treloc %4d offset %4x [%4lx] %s" +msgstr "\treloc %4d ¥ª¥Õ¥»¥Ã¥È %4x [%4lx] %s" + +#. The MS dumpbin program reportedly ands with 0xff0f before +#. printing the characteristics field. Not sure why. No reason to +#. emulate it here. +#: peigen.c:1751 pepigen.c:1751 +#, c-format +msgid "" +"\n" +"Characteristics 0x%x\n" +msgstr "" +"\n" +"¸ÇÍ­ 0x%x\n" + +#~ msgid "GP relative relocation when GP not defined" +#~ msgstr "GP ¤¬Ì¤ÄêµÁ¤Î»þ¤Î GP ´ØÏ¢ºÆÇÛÃ֤Ǥ¹" + +#~ msgid "AUX tagndx %ld ttlsiz 0x%lx lnnos %ld next %ld" +#~ msgstr "AUX tagndx %ld ttlsiz 0x%lx lnnos %ld next %ld" + +#~ msgid "" +#~ "Warning: Not setting interwork flag of %s since it has already been " +#~ "specified as non-interworking" +#~ msgstr "" +#~ "·Ù¹ð: Èó interworking ¤È´û¤Ë»ØÄꤵ¤ì¤Æ¤¤¤ë¤¿¤á¡¢%s ¤Î interwork ¥Õ¥é¥°¤ò" +#~ "¥»¥Ã¥È¤·¤Þ¤»¤ó" + +#~ msgid "Warning: Clearing the interwork flag of %s due to outside request" +#~ msgstr "·Ù¹ð: Í׵ᳰ¤Î¤¿¤á %s ¤Î interwork ¥Õ¥é¥°¤ò¥¯¥ê¥¢¤·¤Þ¤¹" + +#~ msgid "float" +#~ msgstr "ÉâÆ°¾®¿ô" + +#~ msgid "integer" +#~ msgstr "À°¿ô" + +#~ msgid "soft" +#~ msgstr "¥½¥Õ¥È" + +#~ msgid "hard" +#~ msgstr "¥Ï¡¼¥É" + +#~ msgid "Warning: %s %s interworking, whereas %s %s" +#~ msgstr "·Ù¹ð: %s ¤Ï interworking ¤ò%s¤Ë¤â¤«¤«¤ï¤é¤º¡¢%s ¤¬%s" + +#~ msgid "supports" +#~ msgstr "¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤ë" + +#~ msgid "does not" +#~ msgstr "¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó" + +#~ msgid "does" +#~ msgstr "¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤¹" + +#~ msgid "%s(%s+0x%lx): cannot find stub entry %s" +#~ msgstr "%s(%s+0x%lx): ¥¹¥¿¥Ö¥¨¥ó¥È¥ê %s ¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó" + +#~ msgid "%s(%s+0x%lx): cannot relocate %s, recompile with -ffunction-sections" +#~ msgstr "" +#~ "%s(%s+0x%lx): %s ¤òºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó¡£-ffunction-sections ¤òÉÕ¤±¤ÆºÆ¥³¥ó¥Ñ" +#~ "¥¤¥ë¤·¤Þ¤·¤ç¤¦" + +#~ msgid "" +#~ "creating section symbol, name = %s, value = 0x%.8lx, index = %d, section " +#~ "= 0x%.8lx\n" +#~ msgstr "" +#~ "¥»¥¯¥·¥ç¥ó¥·¥ó¥Ü¥ë¤òºîÀ®¤·¤Þ¤¹, ̾Á° = %s, ÃÍ = 0x%.8lx, º÷°ú = %d, ¥»¥¯" +#~ "¥·¥ç¥ó = 0x%.8lx\n" + +#~ msgid " whereas segment starts at 0x%x" +#~ msgstr " ¤Ë¤â¤«¤«¤ï¤é¤º¡¢¥»¥°¥á¥ó¥È¤¬ 0x%x ¤Ç»Ï¤Þ¤Ã¤Æ¤¤¤Þ¤¹" + +#~ msgid "" +#~ "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x" +#~ "%.8lx%s\n" +#~ msgstr "" +#~ "elf_symbol_from_bfd_symbol 0x%.8lx, ̾Á° = %s, ¥·¥ó¥Ü¥ëÈÖ¹æ = %d, ¥Õ¥é¥° " +#~ "= 0x%.8lx%s\n" + +#~ msgid " vma: Hint Time Forward DLL First\n" +#~ msgstr " vma: Hint Time Forward DLL First\n" + +#~ msgid " \t\tAddress Address Handler Data Address Mask\n" +#~ msgstr " \t\t¥¢¥É¥ì¥¹ ¥¢¥É¥ì¥¹ ¥Ï¥ó¥É¥é ¥Ç¡¼¥¿ ¥¢¥É¥ì¥¹ ¥Þ¥¹¥¯\n" + +#~ msgid "ETIR_S_C_STO_GBL: no symbol \"%s\"" +#~ msgstr "ETIR_S_C_STO_GBL: ¥·¥ó¥Ü¥ë \"%s\" ¤¬¤¢¤ê¤Þ¤»¤ó" + +#~ msgid "ETIR_S_C_STO_CA: no symbol \"%s\"" +#~ msgstr "ETIR_S_C_STO_CA: ¥·¥ó¥Ü¥ë \"%s\" ¤¬¤¢¤ê¤Þ¤»¤ó" + +#~ msgid "ETIR_S_C_STO_RB/AB: Not supported" +#~ msgstr "ETIR_S_C_STO_RB/AB: ¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" + +#~ msgid "ETIR_S_C_STO_LP_PSB: Not supported" +#~ msgstr "ETIR_S_C_STO_LP_PSB: ¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" + +#~ msgid "ETIR_S_C_STO_HINT_GBL: not implemented" +#~ msgstr "ETIR_S_C_STO_HINT_GBL: ¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" + +#~ msgid "ETIR_S_C_STO_HINT_PS: not implemented" +#~ msgstr "ETIR_S_C_STO_HINT_PS: ¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" + +#~ msgid "ETIR_S_C_OPR_INSV: Not supported" +#~ msgstr "ETIR_S_C_OPR_INSV: ¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" + +#~ msgid "ETIR_S_C_OPR_USH: Not supported" +#~ msgstr "ETIR_S_C_OPR_USH: ¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" + +#~ msgid "ETIR_S_C_OPR_ROT: Not supported" +#~ msgstr "ETIR_S_C_OPR_ROT: ¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" + +#~ msgid "ETIR_S_C_OPR_REDEF: Not supported" +#~ msgstr "ETIR_S_C_OPR_REDEF: ¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" + +#~ msgid "ETIR_S_C_OPR_DFLIT: Not supported" +#~ msgstr "ETIR_S_C_OPR_DFLIT: ¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" + +#~ msgid "ETIR_S_C_STC_LP: not supported" +#~ msgstr "ETIR_S_C_STC_LP: ¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" + +#~ msgid "ETIR_S_C_STC_GBL: not supported" +#~ msgstr "ETIR_S_C_STC_GBL: ¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" + +#~ msgid "ETIR_S_C_STC_GCA: not supported" +#~ msgstr "ETIR_S_C_STC_GCA: ¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" + +#~ msgid "ETIR_S_C_STC_PS: not supported" +#~ msgstr "ETIR_S_C_STC_PS: ¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" + +#~ msgid "Unimplemented STO cmd %d" +#~ msgstr "STO cmd %d ¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" + +#~ msgid "TIR_S_C_OPR_ASH incomplete" +#~ msgstr "TIR_S_C_OPR_ASH ¤ÏÉÔ´°Á´¤Ç¤¹" + +#~ msgid "TIR_S_C_OPR_USH incomplete" +#~ msgstr "TIR_S_C_OPR_USH ¤ÏÉÔ´°Á´¤Ç¤¹" + +#~ msgid "TIR_S_C_OPR_ROT incomplete" +#~ msgstr "TIR_S_C_OPR_ROT ¤ÏÉÔ´°Á´¤Ç¤¹" + +#~ msgid "TIR_S_C_OPR_REDEF not supported" +#~ msgstr "TIR_S_C_OPR_REDEF ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" + +#~ msgid "TIR_S_C_OPR_DFLIT not supported" +#~ msgstr "TIR_S_C_OPR_DFLIT ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó" + +#~ msgid "TIR_S_C_CTL_DFLOC not fully implemented" +#~ msgstr "TIR_S_C_CTL_DFLOC ¤Ï´°Á´¤Ë¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" + +#~ msgid "TIR_S_C_CTL_STLOC not fully implemented" +#~ msgstr "TIR_S_C_CTL_STLOC ¤Ï´°Á´¤Ë¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" + +#~ msgid "TIR_S_C_CTL_STKDL not fully implemented" +#~ msgstr "TIR_S_C_CTL_STKDL ¤Ï´°Á´¤Ë¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" diff --git a/bfd/po/sv.po b/bfd/po/sv.po index d6c99eed5..ca8ecd9bc 100644 --- a/bfd/po/sv.po +++ b/bfd/po/sv.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: bfd 2.12-pre020121\n" -"POT-Creation-Date: 2002-01-17 12:55+0000\n" +"POT-Creation-Date: 2002-01-31 17:07+0000\n" "PO-Revision-Date: 2002-01-30 02:35+0100\n" "Last-Translator: Christian Rose \n" "Language-Team: Swedish \n" @@ -40,8 +40,10 @@ msgstr "%s: kan inte representera sektionen \"%s\" i a.out-objektfilformat" #: aoutx.h:1669 #, c-format -msgid "%s: can not represent section for symbol `%s' in a.out object file format" -msgstr "%s: kan inte representera sektion för symbolen \"%s\" i a.out-objektfilformat" +msgid "" +"%s: can not represent section for symbol `%s' in a.out object file format" +msgstr "" +"%s: kan inte representera sektion för symbolen \"%s\" i a.out-objektfilformat" #: aoutx.h:1671 msgid "*unknown*" @@ -65,113 +67,111 @@ msgstr "L msgid "Writing updated armap timestamp" msgstr "Skriver uppdaterad armap-tidsstämpel" -#: bfd.c:281 +#: bfd.c:274 msgid "No error" msgstr "Inget fel" -#: bfd.c:282 +#: bfd.c:275 msgid "System call error" msgstr "Systemanropsfel" -#: bfd.c:283 +#: bfd.c:276 msgid "Invalid bfd target" msgstr "Ogiltigt bfd-mål" -#: bfd.c:284 +#: bfd.c:277 msgid "File in wrong format" msgstr "Filen är i fel format" -#: bfd.c:285 +#: bfd.c:278 msgid "Archive object file in wrong format" msgstr "Arkivobjektfil är i fel format" -#: bfd.c:286 +#: bfd.c:279 msgid "Invalid operation" msgstr "Ogiltig åtgärd" -#: bfd.c:287 +#: bfd.c:280 msgid "Memory exhausted" msgstr "Minnet är slut" -#: bfd.c:288 +#: bfd.c:281 msgid "No symbols" msgstr "Inga symboler" -#: bfd.c:289 +#: bfd.c:282 msgid "Archive has no index; run ranlib to add one" msgstr "Arkivet har inget index; kör ranlib för att lägga till ett" -#: bfd.c:290 +#: bfd.c:283 msgid "No more archived files" msgstr "Inga fler arkiverade filer" -#: bfd.c:291 +#: bfd.c:284 msgid "Malformed archive" msgstr "Trasigt arkiv" -#: bfd.c:292 +#: bfd.c:285 msgid "File format not recognized" msgstr "Filformatet känns inte igen" -#: bfd.c:293 +#: bfd.c:286 msgid "File format is ambiguous" msgstr "Filformatet är tvetydigt" -#: bfd.c:294 +#: bfd.c:287 msgid "Section has no contents" msgstr "Sektionen har inget innehåll" -#: bfd.c:295 +#: bfd.c:288 msgid "Nonrepresentable section on output" msgstr "Ickerepresenterbar sektion i utdata" -#: bfd.c:296 +#: bfd.c:289 msgid "Symbol needs debug section which does not exist" msgstr "Symbolen kräver felsökningssektion som inte finns" -#: bfd.c:297 +#: bfd.c:290 msgid "Bad value" msgstr "Felaktigt värde" -#: bfd.c:298 +#: bfd.c:291 msgid "File truncated" msgstr "Filen trunkerad" -#: bfd.c:299 +#: bfd.c:292 msgid "File too big" msgstr "Filen är för stor" -#: bfd.c:300 +#: bfd.c:293 msgid "#" msgstr "#" -#: bfd.c:707 +#: bfd.c:700 #, c-format msgid "BFD %s assertion fail %s:%d" msgstr "BFD %s-försäkran misslyckades %s:%d" -#: bfd.c:726 +#: bfd.c:719 #, c-format msgid "BFD %s internal error, aborting at %s line %d in %s\n" msgstr "Internt BFD %s-fel, avbryter vid %s rad %d i %s\n" -# Ska vara blanksteg här tror jag -#: bfd.c:730 +#: bfd.c:723 #, c-format -msgid "BFD %sinternal error, aborting at %s line %d\n" +msgid "BFD %s internal error, aborting at %s line %d\n" msgstr "Internt BFD %s-fel, avbryter vid %s rad %d\n" -#~ msgid "BFD %s internal error, aborting at %s line %d\n" -#~ msgstr "Internt BFD %s-fel, avbryter vid %s rad %d\n" - -#: bfd.c:732 +#: bfd.c:725 msgid "Please report this bug.\n" msgstr "Rapportera gärna detta fel.\n" #: binary.c:306 #, c-format msgid "Warning: Writing section `%s' to huge (ie negative) file offset 0x%lx." -msgstr "Varning: Skrivning av sektionen \"%s\" till enormt (dvs negativt) avlägsen byte 0x%lx." +msgstr "" +"Varning: Skrivning av sektionen \"%s\" till enormt (dvs negativt) avlägsen " +"byte 0x%lx." # src/menus.c:341 #: coff-a29k.c:119 @@ -183,7 +183,7 @@ msgstr "IHCONST saknas" msgid "Missing IHIHALF" msgstr "IHIHALF saknas" -#: coff-a29k.c:212 +#: coff-a29k.c:212 coff-or32.c:228 msgid "Unrecognized reloc" msgstr "Okänd omlokalisering" @@ -195,7 +195,7 @@ msgstr "IHCONST-omlokalisering saknas" msgid "missing IHIHALF reloc" msgstr "IHIHALF-omlokalisering saknas" -#: coff-alpha.c:881 coff-alpha.c:918 +#: coff-alpha.c:881 coff-alpha.c:918 coff-alpha.c:1989 coff-mips.c:1433 msgid "GP relative relocation used when GP not defined" msgstr "GP-relativ omlokalisering användes då GP inte är definierad" @@ -203,10 +203,6 @@ msgstr "GP-relativ omlokalisering anv msgid "using multiple gp values" msgstr "använder flera gp-värden" -#: coff-alpha.c:1989 coff-mips.c:1433 -msgid "GP relative relocation when GP not defined" -msgstr "GP-relativ omlokalisering då GP inte är definierad" - #: coff-arm.c:1051 elf32-arm.h:285 #, c-format msgid "%s: unable to find THUMB glue '%s' for `%s'" @@ -253,33 +249,49 @@ msgstr "%s: FEL: kompilerad f #: coff-arm.c:2250 #, c-format -msgid "%s: ERROR: passes floats in float registers whereas target %s uses integer registers" -msgstr "%s: FEL: skickar flyttal i flyttalsregister där målet %s istället använder heltalsregister" +msgid "" +"%s: ERROR: passes floats in float registers whereas target %s uses integer " +"registers" +msgstr "" +"%s: FEL: skickar flyttal i flyttalsregister där målet %s istället använder " +"heltalsregister" #: coff-arm.c:2253 #, c-format -msgid "%s: ERROR: passes floats in integer registers whereas target %s uses float registers" -msgstr "%s: FEL: skickar flyttal i heltalsregister där målet %s istället använder flyttalsregister" +msgid "" +"%s: ERROR: passes floats in integer registers whereas target %s uses float " +"registers" +msgstr "" +"%s: FEL: skickar flyttal i heltalsregister där målet %s istället använder " +"flyttalsregister" #: coff-arm.c:2268 #, c-format -msgid "%s: ERROR: compiled as position independent code, whereas target %s is absolute position" -msgstr "%s: FEL: kompilerad som positionsoberoende kod, där målet %s istället har absolut position" +msgid "" +"%s: ERROR: compiled as position independent code, whereas target %s is " +"absolute position" +msgstr "" +"%s: FEL: kompilerad som positionsoberoende kod, där målet %s istället har " +"absolut position" #: coff-arm.c:2271 #, c-format -msgid "%s: ERROR: compiled as absolute position code, whereas target %s is position independent" -msgstr "%s: FEL: kompilerad som kod med absolut position, där målet %s istället är positionsoberoende" +msgid "" +"%s: ERROR: compiled as absolute position code, whereas target %s is position " +"independent" +msgstr "" +"%s: FEL: kompilerad som kod med absolut position, där målet %s istället är " +"positionsoberoende" #: coff-arm.c:2300 -#, c-format -msgid "Warning: input file %s supports interworking, whereas %s does not." -msgstr "Varning: indatafilen %s stöder samverkande, medan %s däremot inte gör det." +#, fuzzy, c-format +msgid "Warning: %s supports interworking, whereas %s does not." +msgstr "Varning: %s stöder samverkande, medan %s däremot inte gör det" #: coff-arm.c:2303 -#, c-format -msgid "Warning: input file %s does not support interworking, whereas %s does." -msgstr "Varning: indatafilen %s stöder inte samverkande, medan %s däremot gör det." +#, fuzzy, c-format +msgid "Warning: %s does not support interworking, whereas %s does." +msgstr "Varning: %s stöder inte samverkande, medan %s däremot gör det" #: coff-arm.c:2330 #, c-format @@ -314,25 +326,30 @@ msgstr " [samverkan st msgid " [interworking not supported]" msgstr " [samverkan stöds inte]" -#: coff-arm.c:2401 -#, c-format -msgid "Warning: Not setting interworking flag of %s, since it has already been specified as non-interworking" -msgstr "Varning: Ställer inte in samverkansflaggan för %s, eftersom den redan har angivits som inte samverkande" +#: coff-arm.c:2401 elf32-arm.h:2114 +#, fuzzy, c-format +msgid "" +"Warning: Not setting interworking flag of %s since it has already been " +"specified as non-interworking" +msgstr "" +"Varning: Ställer inte in samverkansflaggan för %s, eftersom den redan har " +"angivits som inte samverkande" -#: coff-arm.c:2405 +#: coff-arm.c:2405 elf32-arm.h:2118 #, c-format msgid "Warning: Clearing the interworking flag of %s due to outside request" -msgstr "Varning: Stänger av samverkansflaggan för %s på grund av begäran utifrån" +msgstr "" +"Varning: Stänger av samverkansflaggan för %s på grund av begäran utifrån" #: coff-i960.c:136 coff-i960.c:485 msgid "uncertain calling convention for non-COFF symbol" msgstr "osäker anropskonvention för icke-COFF-symbol" -#: coff-m68k.c:481 coff-mips.c:2431 elf32-m68k.c:2212 +#: coff-m68k.c:481 coff-mips.c:2431 elf32-m68k.c:2212 elf32-mips.c:9954 msgid "unsupported reloc type" msgstr "omlokaliseringstypen stöds inte" -#: coff-mips.c:875 elf32-mips.c:1987 elf64-mips.c:1739 +#: coff-mips.c:875 elf32-mips.c:1997 elf64-mips.c:1739 msgid "GP relative relocation when _gp not defined" msgstr "GP-relativ omlokalisering då _gp inte var definierat" @@ -354,7 +371,8 @@ msgstr "%s: omlokaliseringstypen 0x%02x st #: coff-rs6000.c:2756 coff64-rs6000.c:1210 #, c-format msgid "%s: TOC reloc at 0x%x to symbol `%s' with no TOC entry" -msgstr "%s: TOC-omlokalisering vid 0x%x till symbolen \"%s\" utan någon TOC-post" +msgstr "" +"%s: TOC-omlokalisering vid 0x%x till symbolen \"%s\" utan någon TOC-post" #: coff-rs6000.c:3006 coff64-rs6000.c:2060 #, c-format @@ -366,7 +384,7 @@ msgstr "%s: symbolen \"%s\" har ok msgid "Unrecognized reloc type 0x%x" msgstr "Okänd omlokaliseringstyp 0x%x" -#: coff-tic54x.c:390 coffcode.h:4847 +#: coff-tic54x.c:390 coffcode.h:4868 #, c-format msgid "%s: warning: illegal symbol index %ld in relocs" msgstr "%s: varning: otillåtet symbolindex %ld i omlokaliseringarna" @@ -381,32 +399,32 @@ msgstr "ignorerar omlokalisering %s\n" msgid "%s (%s): Section flag %s (0x%x) ignored" msgstr "%s (%s): Sektionsflaggan %s (0x%x) ignorerades" -#: coffcode.h:2125 +#: coffcode.h:2132 #, c-format msgid "Unrecognized TI COFF target id '0x%x'" msgstr "Okänt TI COFF-målid \"0x%x\"" -#: coffcode.h:4236 +#: coffcode.h:4257 #, c-format msgid "%s: warning: illegal symbol index %ld in line numbers" msgstr "%s: varning: otillåtet symbolindex %ld i radnummer" -#: coffcode.h:4250 +#: coffcode.h:4271 #, c-format msgid "%s: warning: duplicate line number information for `%s'" msgstr "%s: varning: dubbel radnummersinformation för \"%s\"" -#: coffcode.h:4609 +#: coffcode.h:4630 #, c-format msgid "%s: Unrecognized storage class %d for %s symbol `%s'" msgstr "%s: Okänd lagringsklass %d för %s-symbolen \"%s\"" -#: coffcode.h:4740 +#: coffcode.h:4761 #, c-format msgid "warning: %s: local symbol `%s' has no section" msgstr "varning: %s: lokala symbolen \"%s\" har ingen sektion" -#: coffcode.h:4885 +#: coffcode.h:4906 #, c-format msgid "%s: illegal relocation type %d at address 0x%lx" msgstr "%s: otillåten omlokaliseringstyp %d på adress 0x%lx" @@ -416,11 +434,6 @@ msgstr "%s: otill msgid "%s: bad string table size %lu" msgstr "%s: felaktig strängtabellstorlek %lu" -#: coffgen.c:2138 -#, c-format -msgid "AUX tagndx %ld ttlsiz 0x%lx lnnos %ld next %ld" -msgstr "AUX tagndx %ld ttlsiz 0x%lx radnummer %ld nästa %ld" - #: cofflink.c:536 elflink.h:1967 #, c-format msgid "Warning: type of symbol `%s' changed from %d to %d in %s" @@ -447,17 +460,25 @@ msgstr "Dwarf-fel: Kan inte hitta sektionen .debug_str." #: dwarf2.c:398 #, c-format -msgid "Dwarf Error: DW_FORM_strp offset (%u) greater than or equal to .debug_str size (%u)." -msgstr "Dwarf-fel: DW_FORM_strp-avståndet (%u) större än eller lika med storleken på .debug_str (%u)." +msgid "" +"Dwarf Error: DW_FORM_strp offset (%u) greater than or equal to .debug_str " +"size (%u)." +msgstr "" +"Dwarf-fel: DW_FORM_strp-avståndet (%u) större än eller lika med storleken " +"på .debug_str (%u)." #: dwarf2.c:542 msgid "Dwarf Error: Can't find .debug_abbrev section." msgstr "Dwarf-fel: Kan inte hitta sektionen .debug_abbrev." #: dwarf2.c:559 -#, c-format -msgid "Dwarf Error: Abbrev offset (%u) greater than or equal to abbrev size (%u)." -msgstr "Dwarf-fel: Förkortningsavståndet (%u) större än eller lika med förkortningsstorleken (%u)." +#, fuzzy, c-format +msgid "" +"Dwarf Error: Abbrev offset (%u) greater than or equal to .debug_abbrev size " +"(%u)." +msgstr "" +"Dwarf-fel: Förkortningsavståndet (%u) större än eller lika med " +"förkortningsstorleken (%u)." #: dwarf2.c:756 #, c-format @@ -473,30 +494,40 @@ msgid "Dwarf Error: Can't find .debug_line section." msgstr "Dwarf-fel: Kan inte hitta sektionen .debug_line." #: dwarf2.c:952 -#, c-format -msgid "Dwarf Error: Line offset (%u) greater than or equal to line size (%u)." -msgstr "Dwarf-fel: Radavståndet (%u) större än eller lika med radstorleken (%u)." +#, fuzzy, c-format +msgid "" +"Dwarf Error: Line offset (%u) greater than or equal to .debug_line size (%u)." +msgstr "" +"Dwarf-fel: Radavståndet (%u) större än eller lika med radstorleken (%u)." #: dwarf2.c:1143 msgid "Dwarf Error: mangled line number section." msgstr "Dwarf-fel: trasig radnummerssektion." -#: dwarf2.c:1318 dwarf2.c:1532 +#: dwarf2.c:1318 dwarf2.c:1529 #, c-format msgid "Dwarf Error: Could not find abbrev number %d." msgstr "Dwarf-fel: Kunde inte hitta förkortningsnumret %d." -#: dwarf2.c:1493 +#: dwarf2.c:1490 #, c-format -msgid "Dwarf Error: found dwarf version '%hu', this reader only handles version 2 information." -msgstr "Dwarf-fel: hittade dwarf version \"%hu\", denna läsare hanterar endast information från version 2." +msgid "" +"Dwarf Error: found dwarf version '%hu', this reader only handles version 2 " +"information." +msgstr "" +"Dwarf-fel: hittade dwarf version \"%hu\", denna läsare hanterar endast " +"information från version 2." -#: dwarf2.c:1500 +#: dwarf2.c:1497 #, c-format -msgid "Dwarf Error: found address size '%u', this reader can not handle sizes greater than '%u'." -msgstr "Dwarf-fel: hittade adresstorleken \"%u\", denna läsare kan inte hantera storlekar större än \"%u\"." +msgid "" +"Dwarf Error: found address size '%u', this reader can not handle sizes " +"greater than '%u'." +msgstr "" +"Dwarf-fel: hittade adresstorleken \"%u\", denna läsare kan inte hantera " +"storlekar större än \"%u\"." -#: dwarf2.c:1523 +#: dwarf2.c:1520 #, c-format msgid "Dwarf Error: Bad abbrev number: %d." msgstr "Dwarf-fel: Felaktigt förkortningsnummer: %d." @@ -508,153 +539,205 @@ msgstr "Ok #: ecoff.c:1597 #, c-format -msgid "\n End+1 symbol: %ld" -msgstr "\n Symbol slut+1: %ld" +msgid "" +"\n" +" End+1 symbol: %ld" +msgstr "" +"\n" +" Symbol slut+1: %ld" #: ecoff.c:1604 ecoff.c:1607 #, c-format -msgid "\n First symbol: %ld" -msgstr "\n Första symbolen: %ld" +msgid "" +"\n" +" First symbol: %ld" +msgstr "" +"\n" +" Första symbolen: %ld" #: ecoff.c:1619 #, c-format -msgid "\n End+1 symbol: %-7ld Type: %s" -msgstr "\n Symbol slut+1: %-7ld Typ: %s" +msgid "" +"\n" +" End+1 symbol: %-7ld Type: %s" +msgstr "" +"\n" +" Symbol slut+1: %-7ld Typ: %s" #: ecoff.c:1626 #, c-format -msgid "\n Local symbol: %ld" -msgstr "\n Lokal symbol: %ld" +msgid "" +"\n" +" Local symbol: %ld" +msgstr "" +"\n" +" Lokal symbol: %ld" #: ecoff.c:1634 #, c-format -msgid "\n struct; End+1 symbol: %ld" -msgstr "\n struct; symbol slut+1: %ld" +msgid "" +"\n" +" struct; End+1 symbol: %ld" +msgstr "" +"\n" +" struct; symbol slut+1: %ld" #: ecoff.c:1639 #, c-format -msgid "\n union; End+1 symbol: %ld" -msgstr "\n union; symbol slut+1: %ld" +msgid "" +"\n" +" union; End+1 symbol: %ld" +msgstr "" +"\n" +" union; symbol slut+1: %ld" #: ecoff.c:1644 #, c-format -msgid "\n enum; End+1 symbol: %ld" -msgstr "\n enum; symbol slut+1: %ld" +msgid "" +"\n" +" enum; End+1 symbol: %ld" +msgstr "" +"\n" +" enum; symbol slut+1: %ld" #: ecoff.c:1650 #, c-format -msgid "\n Type: %s" -msgstr "\n Typ: %s" +msgid "" +"\n" +" Type: %s" +msgstr "" +"\n" +" Typ: %s" #: elf-hppa.h:1366 elf-hppa.h:1399 elf32-ppc.c:3062 elf32-sh.c:3201 #: elf64-x86-64.c:1275 #, c-format -msgid "%s: warning: unresolvable relocation against symbol `%s' from %s section" -msgstr "%s: varning: olöslig omlokalisering mot symbolen \"%s\" från sektionen %s" +msgid "" +"%s: warning: unresolvable relocation against symbol `%s' from %s section" +msgstr "" +"%s: varning: olöslig omlokalisering mot symbolen \"%s\" från sektionen %s" #: elf-m10200.c:463 elf-m10300.c:673 elf32-arm.h:2074 elf32-avr.c:835 -#: elf32-cris.c:1392 elf32-d10v.c:482 elf32-fr30.c:653 elf32-h8300.c:547 -#: elf32-i860.c:1048 elf32-m32r.c:1281 elf32-openrisc.c:455 elf32-v850.c:1691 -#: elf64-mmix.c:1164 +#: elf32-cris.c:1406 elf32-d10v.c:482 elf32-fr30.c:653 elf32-h8300.c:547 +#: elf32-i860.c:1048 elf32-m32r.c:1280 elf32-openrisc.c:455 elf32-v850.c:1691 +#: elf32-xstormy16.c:976 elf64-mmix.c:1164 msgid "internal error: out of range error" msgstr "internt fel: utanför intervallet" #: elf-m10200.c:467 elf-m10300.c:677 elf32-arm.h:2078 elf32-avr.c:839 -#: elf32-cris.c:1396 elf32-d10v.c:486 elf32-fr30.c:657 elf32-h8300.c:551 -#: elf32-i860.c:1052 elf32-m32r.c:1285 elf32-mips.c:7565 elf32-openrisc.c:459 -#: elf32-v850.c:1695 elf64-mips.c:4464 elf64-mmix.c:1168 +#: elf32-cris.c:1410 elf32-d10v.c:486 elf32-fr30.c:657 elf32-h8300.c:551 +#: elf32-i860.c:1052 elf32-m32r.c:1284 elf32-mips.c:7587 elf32-openrisc.c:459 +#: elf32-v850.c:1695 elf32-xstormy16.c:980 elf64-mips.c:4464 elf64-mmix.c:1168 msgid "internal error: unsupported relocation error" msgstr "internt fel: omlokaliseringen stöds inte" #: elf-m10200.c:471 elf-m10300.c:681 elf32-arm.h:2082 elf32-d10v.c:490 -#: elf32-h8300.c:555 elf32-m32r.c:1289 +#: elf32-h8300.c:555 elf32-m32r.c:1288 msgid "internal error: dangerous error" msgstr "internt fel: farligt fel" #: elf-m10200.c:475 elf-m10300.c:685 elf32-arm.h:2086 elf32-avr.c:847 -#: elf32-cris.c:1404 elf32-d10v.c:494 elf32-fr30.c:665 elf32-h8300.c:559 -#: elf32-i860.c:1060 elf32-m32r.c:1293 elf32-openrisc.c:467 elf32-v850.c:1715 -#: elf64-mmix.c:1176 +#: elf32-cris.c:1418 elf32-d10v.c:494 elf32-fr30.c:665 elf32-h8300.c:559 +#: elf32-i860.c:1060 elf32-m32r.c:1292 elf32-openrisc.c:467 elf32-v850.c:1715 +#: elf32-xstormy16.c:988 elf64-mmix.c:1176 msgid "internal error: unknown error" msgstr "internt fel: okänt fel" -#: elf.c:345 +#: elf.c:343 #, c-format msgid "%s: invalid string offset %u >= %lu for section `%s'" msgstr "%s: ogiltigt strängavstånd %u >= %lu för sektionen \"%s\"" -#: elf.c:450 +#: elf.c:448 #, c-format msgid "%s: invalid SHT_GROUP entry" msgstr "%s: ogiltig SHT_GROUP-post" -#: elf.c:531 +#: elf.c:529 #, c-format msgid "%s: no group info for section %s" msgstr "%s: ingen gruppinformation för sektionen %s" -#: elf.c:842 -msgid "\nProgram Header:\n" -msgstr "\nProgramhuvud:\n" +#: elf.c:840 +msgid "" +"\n" +"Program Header:\n" +msgstr "" +"\n" +"Programhuvud:\n" -#: elf.c:891 -msgid "\nDynamic Section:\n" -msgstr "\nDynamisk sektion:\n" +#: elf.c:889 +msgid "" +"\n" +"Dynamic Section:\n" +msgstr "" +"\n" +"Dynamisk sektion:\n" -#: elf.c:1020 -msgid "\nVersion definitions:\n" -msgstr "\nVersionsdefinitioner:\n" +#: elf.c:1018 +msgid "" +"\n" +"Version definitions:\n" +msgstr "" +"\n" +"Versionsdefinitioner:\n" -#: elf.c:1043 -msgid "\nVersion References:\n" -msgstr "\nVersionsreferenser:\n" +#: elf.c:1041 +msgid "" +"\n" +"Version References:\n" +msgstr "" +"\n" +"Versionsreferenser:\n" -#: elf.c:1048 +#: elf.c:1046 #, c-format msgid " required from %s:\n" msgstr " krävs från %s:\n" -#: elf.c:1675 +#: elf.c:1682 #, c-format msgid "%s: invalid link %lu for reloc section %s (index %u)" msgstr "%s: ogiltig länk %lu för omlokaliseringssektion %s (index %u)" -#: elf.c:3289 +#: elf.c:3296 #, c-format msgid "%s: Not enough room for program headers (allocated %u, need %u)" -msgstr "%s: Inte tillräckligt med utrymme för programhuvuden (allokerade %u, behöver %u)" +msgstr "" +"%s: Inte tillräckligt med utrymme för programhuvuden (allokerade %u, behöver " +"%u)" -#: elf.c:3393 +#: elf.c:3400 #, c-format msgid "%s: Not enough room for program headers, try linking with -N" -msgstr "%s: Inte tillräckligt med utrymme för programhuvuden, försök att länka med -N" +msgstr "" +"%s: Inte tillräckligt med utrymme för programhuvuden, försök att länka med -N" -#: elf.c:3518 +#: elf.c:3525 #, c-format -msgid "Error: First section in segment (%s) starts at 0x%x whereas the segment starts at 0x%x" -msgstr "Fel: Första sektionen i segmentet (%s) börjar vid 0x%x medan segmentet börjar med 0x%x" +msgid "" +"Error: First section in segment (%s) starts at 0x%x whereas the segment " +"starts at 0x%x" +msgstr "" +"Fel: Första sektionen i segmentet (%s) börjar vid 0x%x medan segmentet " +"börjar med 0x%x" -#: elf.c:3804 +#: elf.c:3811 #, c-format msgid "%s: warning: allocated section `%s' not in segment" msgstr "%s: varning: allokerad sektion \"%s\" inte i segment" -#: elf.c:4138 +#: elf.c:4142 #, c-format msgid "%s: symbol `%s' required but not present" msgstr "%s: symbolen \"%s\" krävs men finns inte med" -#: elf.c:4147 -#, c-format -msgid "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8lx%s\n" -msgstr "elf_symbol_from_bfd_symbol 0x%.8lx, namn = %s, symbolnr = %d, flaggor = 0x%.8lx%s\n" - -#: elf.c:4391 +#: elf.c:4395 #, c-format msgid "%s: warning: Empty loadable segment detected\n" msgstr "%s: varning: Tomt inläsningsbart segment upptäckt\n" -#: elf.c:5804 +#: elf.c:5808 #, c-format msgid "%s: unsupported relocation type %s" msgstr "%s: omlokaliseringstypen %s stöds inte" @@ -662,42 +745,44 @@ msgstr "%s: omlokaliseringstypen %s st #: elf32-arm.h:1224 #, c-format msgid "%s: Warning: Arm BLX instruction targets Arm function '%s'." -msgstr "%s: Varning: Arm BLX-instruktion använder Arm-funktionen \"%s\" som mål." +msgstr "" +"%s: Varning: Arm BLX-instruktion använder Arm-funktionen \"%s\" som mål." #: elf32-arm.h:1420 #, c-format msgid "%s: Warning: Thumb BLX instruction targets thumb function '%s'." -msgstr "%s: Varning: Thumb BLX-instruktionen använder thumb-funktionen \"%s\" som mål." +msgstr "" +"%s: Varning: Thumb BLX-instruktionen använder thumb-funktionen \"%s\" som " +"mål." -#: elf32-arm.h:1904 elf32-i386.c:1776 elf32-sh.c:3133 +#: elf32-arm.h:1904 elf32-i386.c:1778 elf32-sh.c:3133 #, c-format msgid "%s(%s+0x%lx): %s relocation against SEC_MERGE section" msgstr "%s(%s+0x%lx): %s omlokalisering mot SEC_MERGE-sektion" #: elf32-arm.h:1998 #, c-format -msgid "%s: warning: unresolvable relocation %d against symbol `%s' from %s section" -msgstr "%s: varning: olöslig omlokalisering %d mot symbolen \"%s\" från sektionen %s" - -#: elf32-arm.h:2114 -#, c-format -msgid "Warning: Not setting interwork flag of %s since it has already been specified as non-interworking" -msgstr "Varning: Ställer inte in samverkandeflaggan för %s eftersom den redan har angivits som inte samverkande" - -#: elf32-arm.h:2118 -#, c-format -msgid "Warning: Clearing the interwork flag of %s due to outside request" -msgstr "Varning: Stänger av samverkandeflaggan för %s på grund av utomstående begäran" +msgid "" +"%s: warning: unresolvable relocation %d against symbol `%s' from %s section" +msgstr "" +"%s: varning: olöslig omlokalisering %d mot symbolen \"%s\" från sektionen %s" #: elf32-arm.h:2166 -#, c-format -msgid "Warning: Clearing the interwork flag in %s because non-interworking code in %s has been linked with it" -msgstr "Varning: Stänger av samverkandeflaggan i %s eftersom icke-samverkande kod i %s har länkats med det" +#, fuzzy, c-format +msgid "" +"Warning: Clearing the interworking flag of %s because non-interworking code " +"in %s has been linked with it" +msgstr "" +"Varning: Stänger av samverkandeflaggan i %s eftersom icke-samverkande kod i %" +"s har länkats med det" #: elf32-arm.h:2261 #, c-format -msgid "Error: %s compiled for EABI version %d, whereas %s is compiled for version %d" -msgstr "Fel: %s kompilerades för EABI version %d, medan %s kompilerades för version %d" +msgid "" +"Error: %s compiled for EABI version %d, whereas %s is compiled for version %d" +msgstr "" +"Fel: %s kompilerades för EABI version %d, medan %s kompilerades för version %" +"d" #: elf32-arm.h:2275 #, c-format @@ -706,25 +791,35 @@ msgstr "Fel: %s kompilerad f #: elf32-arm.h:2287 #, c-format -msgid "Error: %s passes floats in FP registers, whereas %s passes them in integer registers" -msgstr "Fel: %s skickar flyttal i flyttalsregister, medan %s skickar dem i heltalsregister" +msgid "" +"Error: %s passes floats in FP registers, whereas %s passes them in integer " +"registers" +msgstr "" +"Fel: %s skickar flyttal i flyttalsregister, medan %s skickar dem i " +"heltalsregister" #: elf32-arm.h:2292 #, c-format -msgid "Error: %s passes floats in integer registers, whereas %s passes them in FP registers" -msgstr "Fel: %s skickar flyttal i heltalsregister, medan %s skickar dem i flyttalsregister" +msgid "" +"Error: %s passes floats in integer registers, whereas %s passes them in FP " +"registers" +msgstr "" +"Fel: %s skickar flyttal i heltalsregister, medan %s skickar dem i " +"flyttalsregister" # Tror det saknas "uses" här #: elf32-arm.h:2303 -#, c-format -msgid "Error: %s uses VFP instructions, whereas %s FPA instructions" -msgstr "Fel: %s använder VFP-instruktioner, medan %s använder FPA-instruktioner" +#, fuzzy, c-format +msgid "Error: %s uses VFP instructions, whereas %s uses FPA instructions" +msgstr "" +"Fel: %s använder VFP-instruktioner, medan %s använder FPA-instruktioner" # Tror det saknas "uses" här #: elf32-arm.h:2308 -#, c-format -msgid "Error: %s uses FPA instructions, whereas %s VFP instructions" -msgstr "Fel: %s använder FPA-instruktioner, medan %s använder VFP-instruktioner" +#, fuzzy, c-format +msgid "Error: %s uses FPA instructions, whereas %s uses VFP instructions" +msgstr "" +"Fel: %s använder FPA-instruktioner, medan %s använder VFP-instruktioner" #: elf32-arm.h:2328 #, c-format @@ -748,7 +843,7 @@ msgstr "Varning: %s st #. Ignore init flag - it may not be set, despite the flags field #. containing valid data. -#: elf32-arm.h:2386 elf32-cris.c:2970 elf32-m68k.c:410 elf32-mips.c:3232 +#: elf32-arm.h:2386 elf32-cris.c:2991 elf32-m68k.c:410 elf32-mips.c:3242 #, c-format msgid "private flags = %lx:" msgstr "privata flaggor = %lx:" @@ -825,8 +920,9 @@ msgstr " [har startpunkt]" msgid "" msgstr "" -#: elf32-avr.c:843 elf32-cris.c:1400 elf32-fr30.c:661 elf32-i860.c:1056 -#: elf32-openrisc.c:463 elf32-v850.c:1699 elf64-mmix.c:1172 +#: elf32-avr.c:843 elf32-cris.c:1414 elf32-fr30.c:661 elf32-i860.c:1056 +#: elf32-openrisc.c:463 elf32-v850.c:1699 elf32-xstormy16.c:984 +#: elf64-mmix.c:1172 msgid "internal error: dangerous relocation" msgstr "internt fel: farlig omlokalisering" @@ -837,8 +933,11 @@ msgstr "%s: ol #: elf32-cris.c:1012 #, c-format -msgid "%s: No PLT nor GOT for relocation %s against symbol `%s' from %s section" -msgstr "%s: Varken någon PLT eller GOT för omlokalisering %s mot symbolen \"%s\" från sektionen %s" +msgid "" +"%s: No PLT nor GOT for relocation %s against symbol `%s' from %s section" +msgstr "" +"%s: Varken någon PLT eller GOT för omlokalisering %s mot symbolen \"%s\" " +"från sektionen %s" #: elf32-cris.c:1015 elf32-cris.c:1142 msgid "[whose name is lost]" @@ -846,46 +945,64 @@ msgstr "[vars namn tappats bort]" #: elf32-cris.c:1131 #, c-format -msgid "%s: relocation %s with non-zero addend %d against local symbol from %s section" -msgstr "%s: omlokalisering %s med icke-tomt addendum %d mot lokal symbol från sektionen %s" +msgid "" +"%s: relocation %s with non-zero addend %d against local symbol from %s " +"section" +msgstr "" +"%s: omlokalisering %s med icke-tomt addendum %d mot lokal symbol från " +"sektionen %s" #: elf32-cris.c:1138 #, c-format -msgid "%s: relocation %s with non-zero addend %d against symbol `%s' from %s section" -msgstr "%s: omlokalisering %s med icke-tomt addendum %d mot symbolen \"%s\" från sektionen %s" +msgid "" +"%s: relocation %s with non-zero addend %d against symbol `%s' from %s section" +msgstr "" +"%s: omlokalisering %s med icke-tomt addendum %d mot symbolen \"%s\" från " +"sektionen %s" #: elf32-cris.c:1156 #, c-format -msgid "%s: relocation %s is not allowed for global symbol: `%s' from %s section" -msgstr "%s: omlokaliseringen %s är inte tillåten för global symbol: \"%s\" från sektionen %s" +msgid "" +"%s: relocation %s is not allowed for global symbol: `%s' from %s section" +msgstr "" +"%s: omlokaliseringen %s är inte tillåten för global symbol: \"%s\" från " +"sektionen %s" -#: elf32-cris.c:1275 +#: elf32-cris.c:1171 +#, fuzzy, c-format +msgid "%s: relocation %s in section %s with no GOT created" +msgstr "%s: omlokaliseringar i sektionen \"%s\", men den har inget innehåll" + +#: elf32-cris.c:1289 #, c-format msgid "%s: Internal inconsistency; no relocation section %s" msgstr "%s: Intern inkonsistens; ingen omlokaliseringssektion %s" -#: elf32-cris.c:2508 +#: elf32-cris.c:2523 #, c-format msgid "" "%s, section %s:\n" " relocation %s should not be used in a shared object; recompile with -fPIC" msgstr "" "%s, sektion %s:\n" -" omlokaliseringen %s bör inte användas i ett delat objekt; kompilera om med -fPIC" +" omlokaliseringen %s bör inte användas i ett delat objekt; kompilera om med " +"-fPIC" -#: elf32-cris.c:2973 +#: elf32-cris.c:2994 msgid " [symbols have a _ prefix]" msgstr " [symboler har ett _-prefix]" -#: elf32-cris.c:3012 +#: elf32-cris.c:3033 #, c-format msgid "%s: uses _-prefixed symbols, but writing file with non-prefixed symbols" -msgstr "%s: använder symboler med _-prefix, men skriver fil med symboler utan prefix" +msgstr "" +"%s: använder symboler med _-prefix, men skriver fil med symboler utan prefix" -#: elf32-cris.c:3013 +#: elf32-cris.c:3034 #, c-format msgid "%s: uses non-prefixed symbols, but writing file with _-prefixed symbols" -msgstr "%s: använder symboler utan prefix, men skriver fil med symboler med _-prefix" +msgstr "" +"%s: använder symboler utan prefix, men skriver fil med symboler med _-prefix" #: elf32-gen.c:82 elf64-gen.c:82 #, c-format @@ -897,42 +1014,50 @@ msgstr "%s: Omlokalisering i allm msgid "%s: cannot create stub entry %s" msgstr "%s: kan inte skapa stubbstarten %s" -#: elf32-hppa.c:937 elf32-hppa.c:3540 +#: elf32-hppa.c:937 elf32-hppa.c:3545 #, c-format msgid "%s(%s+0x%lx): cannot reach %s, recompile with -ffunction-sections" msgstr "%s(%s+0x%lx): kan inte nå %s, kompilera om med -ffunction-sections" #: elf32-hppa.c:1312 #, c-format -msgid "%s: relocation %s can not be used when making a shared object; recompile with -fPIC" -msgstr "%s: omlokaliseringen %s kan inte användas då ett delat objekt skapas; kompilera om med -fPIC" +msgid "" +"%s: relocation %s can not be used when making a shared object; recompile " +"with -fPIC" +msgstr "" +"%s: omlokaliseringen %s kan inte användas då ett delat objekt skapas; " +"kompilera om med -fPIC" #: elf32-hppa.c:1332 #, c-format -msgid "%s: relocation %s should not be used when making a shared object; recompile with -fPIC" -msgstr "%s: omlokaliseringen %s bör inte användas då ett delat objekt skapas; kompilera om med -fPIC" +msgid "" +"%s: relocation %s should not be used when making a shared object; recompile " +"with -fPIC" +msgstr "" +"%s: omlokaliseringen %s bör inte användas då ett delat objekt skapas; " +"kompilera om med -fPIC" #: elf32-hppa.c:1525 #, c-format msgid "Could not find relocation section for %s" msgstr "Kunde inte hitta omlokaliseringssektion för %s" -#: elf32-hppa.c:2862 +#: elf32-hppa.c:2867 #, c-format msgid "%s: duplicate export stub %s" msgstr "%s: dubbel exportstubb %s" -#: elf32-hppa.c:3424 +#: elf32-hppa.c:3429 #, c-format msgid "%s(%s+0x%lx): fixing %s" msgstr "%s(%s+0x%lx): fixar %s" -#: elf32-hppa.c:4064 +#: elf32-hppa.c:4069 #, c-format msgid "%s(%s+0x%lx): cannot handle %s for %s" msgstr "%s(%s+0x%lx): kan inte hantera %s för %s" -#: elf32-hppa.c:4403 +#: elf32-hppa.c:4408 msgid ".got section not immediately after .plt section" msgstr ".got-sektionen följer inte omedelbart efter .plt-sektion" @@ -946,50 +1071,50 @@ msgstr "%s: ogiltig omlokaliseringstyp %d" msgid "%s: bad symbol index: %d" msgstr "%s: felaktigt symbolindex: %d" -#: elf32-i386.c:863 elf32-s390.c:790 elf64-ppc.c:2085 elf64-s390.c:759 +#: elf32-i386.c:863 elf32-s390.c:790 elf64-ppc.c:2198 elf64-s390.c:759 #, c-format msgid "%s: bad relocation section name `%s'" msgstr "%s: felaktig omlokaliseringssektionsnamn \"%s\"" -#: elf32-i386.c:2067 elf32-s390.c:1949 elf64-ppc.c:3908 elf64-s390.c:1953 +#: elf32-i386.c:2069 elf32-s390.c:1951 elf64-ppc.c:4124 elf64-s390.c:1955 #, c-format msgid "%s(%s+0x%lx): unresolvable relocation against symbol `%s'" msgstr "%s(%s+0x%lx): olöslig omlokalisering mot symbolen \"%s\"" -#: elf32-i386.c:2105 elf32-s390.c:1987 elf64-s390.c:1991 +#: elf32-i386.c:2107 elf32-s390.c:1989 elf64-s390.c:1993 #, c-format msgid "%s(%s+0x%lx): reloc against `%s': error %d" msgstr "%s(%s+0x%lx): omlokalisering mot \"%s\": fel %d" -#: elf32-m32r.c:924 +#: elf32-m32r.c:923 msgid "SDA relocation when _SDA_BASE_ not defined" msgstr "SDA-omlokalisering då _SDA_BASE_ inte är definierat" -#: elf32-ia64.c:3538 elf32-m32r.c:1008 elf32-ppc.c:2930 elf64-ia64.c:3538 +#: elf32-ia64.c:3537 elf32-m32r.c:1007 elf32-ppc.c:2930 elf64-ia64.c:3537 #, c-format msgid "%s: unknown relocation type %d" msgstr "%s: okänd omlokaliseringstyp %d" -#: elf32-m32r.c:1224 +#: elf32-m32r.c:1223 #, c-format msgid "%s: The target (%s) of an %s relocation is in the wrong section (%s)" msgstr "%s: Målet (%s) för en %s-omlokalisering är i fel sektion (%s)" -#: elf32-m32r.c:2001 +#: elf32-m32r.c:2000 #, c-format msgid "%s: Instruction set mismatch with previous modules" msgstr "%s: Instruktionsuppsättning passar inte med tidigare moduler" -#: elf32-m32r.c:2024 +#: elf32-m32r.c:2023 #, c-format msgid "private flags = %lx" msgstr "privata flaggor = %lx" -#: elf32-m32r.c:2029 +#: elf32-m32r.c:2028 msgid ": m32r instructions" msgstr ": m32r-instruktioner" -#: elf32-m32r.c:2030 +#: elf32-m32r.c:2029 msgid ": m32rx instructions" msgstr ": m32rx-instruktioner" @@ -1007,154 +1132,160 @@ msgstr "%s: Omlokalisering %s (%d) st msgid "%s: Unknown relocation type %d\n" msgstr "%s: Okänd omlokaliseringstyp %d\n" -#: elf32-mips.c:2146 elf64-mips.c:1972 +#: elf32-mips.c:2156 elf64-mips.c:1972 msgid "32bits gp relative relocation occurs for an external symbol" msgstr "32-bitars gp-relativ omlokalisering förekom för en extern symbol" -#: elf32-mips.c:2295 +#: elf32-mips.c:2305 #, c-format msgid "Linking mips16 objects into %s format is not supported" msgstr "Länkning av mips16-objekt till %s-format stöds inte" -#: elf32-mips.c:3119 +#: elf32-mips.c:3129 #, c-format msgid "%s: linking PIC files with non-PIC files" msgstr "%s: länkar PIC-filer med icke-PIC-filer" -#: elf32-mips.c:3129 +#: elf32-mips.c:3139 #, c-format msgid "%s: linking abicalls files with non-abicalls files" msgstr "%s: länkar abicalls-filer med icke-abicalls-filer" -#: elf32-mips.c:3158 +#: elf32-mips.c:3168 #, c-format msgid "%s: ISA mismatch (-mips%d) with previous modules (-mips%d)" msgstr "%s: ISA (-mips%d) passar inte med tidigare moduler (-mips%d)" -#: elf32-mips.c:3167 +#: elf32-mips.c:3177 #, c-format msgid "%s: ISA mismatch (%d) with previous modules (%d)" msgstr "%s: ISA (%d) passar inte med tidigare moduler (%d)" -#: elf32-mips.c:3190 +#: elf32-mips.c:3200 #, c-format msgid "%s: ABI mismatch: linking %s module with previous %s modules" msgstr "%s: ABI passar inte: länkar %s-modul med tidigare %s-moduler" -#: elf32-mips.c:3204 elf32-ppc.c:1470 elf64-ppc.c:1538 elf64-sparc.c:3033 +#: elf32-mips.c:3214 elf32-ppc.c:1470 elf64-ppc.c:1556 elf64-sparc.c:3027 #, c-format msgid "%s: uses different e_flags (0x%lx) fields than previous modules (0x%lx)" msgstr "%s: använder andra e_flags-fält (0x%lx) än tidigare moduler (0x%lx)" -#: elf32-mips.c:3235 +#: elf32-mips.c:3245 msgid " [abi=O32]" msgstr " [abi=O32]" -#: elf32-mips.c:3237 +#: elf32-mips.c:3247 msgid " [abi=O64]" msgstr " [abi=O64]" -#: elf32-mips.c:3239 +#: elf32-mips.c:3249 msgid " [abi=EABI32]" msgstr " [abi=EABI32]" -#: elf32-mips.c:3241 +#: elf32-mips.c:3251 msgid " [abi=EABI64]" msgstr " [abi=EABI64]" -#: elf32-mips.c:3243 +#: elf32-mips.c:3253 msgid " [abi unknown]" msgstr " [okänt abi]" -#: elf32-mips.c:3245 +#: elf32-mips.c:3255 msgid " [abi=N32]" msgstr " [abi=N32]" -#: elf32-mips.c:3247 +#: elf32-mips.c:3257 msgid " [abi=64]" msgstr " [abi=64]" -#: elf32-mips.c:3249 +#: elf32-mips.c:3259 msgid " [no abi set]" msgstr " [inget abi inställt]" -#: elf32-mips.c:3252 +#: elf32-mips.c:3262 msgid " [mips1]" msgstr " [mips1]" -#: elf32-mips.c:3254 +#: elf32-mips.c:3264 msgid " [mips2]" msgstr " [mips2]" -#: elf32-mips.c:3256 +#: elf32-mips.c:3266 msgid " [mips3]" msgstr " [mips3]" -#: elf32-mips.c:3258 +#: elf32-mips.c:3268 msgid " [mips4]" msgstr " [mips4]" -#: elf32-mips.c:3260 +#: elf32-mips.c:3270 msgid " [mips5]" msgstr " [mips5]" -#: elf32-mips.c:3262 +#: elf32-mips.c:3272 msgid " [mips32]" msgstr " [mips32]" -#: elf32-mips.c:3264 +#: elf32-mips.c:3274 msgid " [mips64]" msgstr " [mips64]" -#: elf32-mips.c:3266 +#: elf32-mips.c:3276 msgid " [unknown ISA]" msgstr " [okänd ISA]" -#: elf32-mips.c:3269 +#: elf32-mips.c:3279 msgid " [32bitmode]" msgstr " [32-bitarsläge]" -#: elf32-mips.c:3271 +#: elf32-mips.c:3281 msgid " [not 32bitmode]" msgstr " [inte 32-bitarsläge]" -#: elf32-mips.c:4947 +#: elf32-mips.c:4954 msgid "static procedure (no name)" msgstr "statisk procedur (inget namn)" -#: elf32-mips.c:5565 elf64-mips.c:6694 +#: elf32-mips.c:5572 elf64-mips.c:6694 #, c-format msgid "%s: illegal section name `%s'" msgstr "%s: ogiltigt sektionsnamn \"%s\"" -#: elf32-mips.c:6132 elf64-mips.c:3150 +#: elf32-mips.c:6139 elf64-mips.c:3150 msgid "not enough GOT space for local GOT entries" msgstr "inte tillräckligt med GOT-utrymme för lokala GOT-poster" -#: elf32-mips.c:7238 elf64-mips.c:4203 +#: elf32-mips.c:7250 elf64-mips.c:4203 #, c-format msgid "%s: %s+0x%lx: jump to stub routine which is not jal" msgstr "%s: %s+0x%lx: hoppa till stubbrutin som inte är jal" -#: elf32-mips.c:8237 elf64-mips.c:5891 +#: elf32-mips.c:8259 elf64-mips.c:5891 #, c-format msgid "%s: Malformed reloc detected for section %s" msgstr "%s: Felaktig omlokalisering för sektion %s upptäckt" -#: elf32-mips.c:8315 elf64-mips.c:5969 +#: elf32-mips.c:8337 elf64-mips.c:5969 #, c-format msgid "%s: CALL16 reloc at 0x%lx not against global symbol" msgstr "%s: CALL16-omlokalisering vid 0x%lx är inte mot global symbol" -#: elf32-ppc.c:1436 elf64-ppc.c:1503 +#: elf32-ppc.c:1436 elf64-ppc.c:1521 #, c-format -msgid "%s: compiled with -mrelocatable and linked with modules compiled normally" -msgstr "%s: kompilerad med -mrelocatable och länkad med moduler som kompilerats normalt" +msgid "" +"%s: compiled with -mrelocatable and linked with modules compiled normally" +msgstr "" +"%s: kompilerad med -mrelocatable och länkad med moduler som kompilerats " +"normalt" -#: elf32-ppc.c:1444 elf64-ppc.c:1511 +#: elf32-ppc.c:1444 elf64-ppc.c:1529 #, c-format -msgid "%s: compiled normally and linked with modules compiled with -mrelocatable" -msgstr "%s: kompilerad normalt och länkad med moduler som kompilerats med -mrelocatable" +msgid "" +"%s: compiled normally and linked with modules compiled with -mrelocatable" +msgstr "" +"%s: kompilerad normalt och länkad med moduler som kompilerats med -" +"mrelocatable" #: elf32-ppc.c:1568 #, c-format @@ -1166,14 +1297,15 @@ msgstr "%s: Ok msgid "%s: relocation %s cannot be used when making a shared object" msgstr "%s: omlokaliseringen %s kan inte användas då ett delat objekt skapas" -#: elf32-ppc.c:3097 elf64-ppc.c:3500 +#: elf32-ppc.c:3097 elf64-ppc.c:3716 #, c-format msgid "%s: unknown relocation type %d for symbol %s" msgstr "%s: okänd omlokaliseringstyp %d för symbolen %s" #: elf32-ppc.c:3452 elf32-ppc.c:3473 elf32-ppc.c:3523 #, c-format -msgid "%s: The target (%s) of a %s relocation is in the wrong output section (%s)" +msgid "" +"%s: The target (%s) of a %s relocation is in the wrong output section (%s)" msgstr "%s: Målet (%s) för en %s-omlokalisering är i fel utdatasektion (%s)" #: elf32-ppc.c:3589 @@ -1224,9 +1356,11 @@ msgstr "%s: 0x%lx: #: elf32-sh.c:3267 #, c-format msgid "%s: 0x%lx: fatal: unaligned branch target for relax-support relocation" -msgstr "%s: 0x%lx: ödesdigert: ojusterat grenmål för omlokalisering för förenklingsstöd" +msgstr "" +"%s: 0x%lx: ödesdigert: ojusterat grenmål för omlokalisering för " +"förenklingsstöd" -#: elf32-sparc.c:1554 elf64-sparc.c:2286 +#: elf32-sparc.c:1554 elf64-sparc.c:2280 #, c-format msgid "%s: probably compiled without -fPIC?" msgstr "%s: troligen kompilerad utan -fPIC?" @@ -1248,23 +1382,32 @@ msgstr "Variabel \"%s\" kan inte befinna sig i flera sm #: elf32-v850.c:685 #, c-format -msgid "Variable `%s' can only be in one of the small, zero, and tiny data regions" -msgstr "Variabel \"%s\" kan bara vara i ett av de små, tomma och pyttesmå dataområdena" +msgid "" +"Variable `%s' can only be in one of the small, zero, and tiny data regions" +msgstr "" +"Variabel \"%s\" kan bara vara i ett av de små, tomma och pyttesmå " +"dataområdena" #: elf32-v850.c:688 #, c-format -msgid "Variable `%s' cannot be in both small and zero data regions simultaneously" -msgstr "Variabel \"%s\" kan inte vara i både små och tomma dataområden samtidigt" +msgid "" +"Variable `%s' cannot be in both small and zero data regions simultaneously" +msgstr "" +"Variabel \"%s\" kan inte vara i både små och tomma dataområden samtidigt" #: elf32-v850.c:691 #, c-format -msgid "Variable `%s' cannot be in both small and tiny data regions simultaneously" -msgstr "Variabel \"%s\" kan inte vara i både små och pyttesmå dataområden samtidigt" +msgid "" +"Variable `%s' cannot be in both small and tiny data regions simultaneously" +msgstr "" +"Variabel \"%s\" kan inte vara i både små och pyttesmå dataområden samtidigt" #: elf32-v850.c:694 #, c-format -msgid "Variable `%s' cannot be in both zero and tiny data regions simultaneously" -msgstr "Variabel \"%s\" kan inte vara i både tomma och pyttesmå dataområden samtidigt" +msgid "" +"Variable `%s' cannot be in both zero and tiny data regions simultaneously" +msgstr "" +"Variabel \"%s\" kan inte vara i både tomma och pyttesmå dataområden samtidigt" #: elf32-v850.c:1072 msgid "FAILED to find previous HI16 reloc\n" @@ -1304,6 +1447,10 @@ msgstr "v850e-arkitektur" msgid "v850ea architecture" msgstr "v850ea-arkitektur" +#: elf32-ia64.c:2247 elf32-xstormy16.c:414 elf64-ia64.c:2247 +msgid "non-zero addend in @fptr reloc" +msgstr "icke-tomt addendum i @fptr-omlokalisering" + #: elf64-alpha.c:858 msgid "GPDISP relocation did not find ldah and lda instructions" msgstr "GPDISP-omlokalisering hittade inga ldah- och lda-instruktioner" @@ -1326,63 +1473,80 @@ msgstr "stubbpost f # Bör rapportera detta # # (_("%s: register relocation against non-register symbol: %s in %s"), -# bfd_get_filename (input_section->owner), -# symname == NULL || *symname == 0 ? _("(unknown)") : symname, -# bfd_get_section_name (symsec->owner, symsec)); +# bfd_get_filename (input_section->owner), +# symname == NULL || *symname == 0 ? _("(unknown)") : symname, +# bfd_get_section_name (symsec->owner, symsec)); +# +#: elf64-mmix.c:1271 +#, fuzzy, c-format +msgid "%s: register relocation against non-register symbol: (unknown) in %s" +msgstr "%s: registeromlokalisering mot icke-registersymbol: %s i %s" + +# Bör rapportera detta +# +# (_("%s: register relocation against non-register symbol: %s in %s"), +# bfd_get_filename (input_section->owner), +# symname == NULL || *symname == 0 ? _("(unknown)") : symname, +# bfd_get_section_name (symsec->owner, symsec)); # -#: elf64-mmix.c:1268 +#: elf64-mmix.c:1276 #, c-format msgid "%s: register relocation against non-register symbol: %s in %s" msgstr "%s: registeromlokalisering mot icke-registersymbol: %s i %s" -#: elf64-mmix.c:1270 -msgid "(unknown)" -msgstr "(okänd)" - -#: elf64-mmix.c:1305 +#: elf64-mmix.c:1312 #, c-format msgid "%s: directive LOCAL valid only with a register or absolute value" -msgstr "%s: LOCAL-direktivet är endast giltigt med ett register eller absolutvärde" +msgstr "" +"%s: LOCAL-direktivet är endast giltigt med ett register eller absolutvärde" -#: elf64-mmix.c:1333 +#: elf64-mmix.c:1340 #, c-format -msgid "%s: LOCAL directive: Register $%ld is not a local register. First global register is $%ld." -msgstr "%s: LOCAL-direktiv: Register $%ld är inte ett lokalt register. Första globala registret är $%ld." +msgid "" +"%s: LOCAL directive: Register $%ld is not a local register. First global " +"register is $%ld." +msgstr "" +"%s: LOCAL-direktiv: Register $%ld är inte ett lokalt register. Första " +"globala registret är $%ld." -#: elf64-mmix.c:1609 +#: elf64-mmix.c:1615 #, c-format -msgid "%s: Error: multiple definition of `%s'; start of %s is set in a earlier linked file\n" -msgstr "%s: Fel: flera definitioner av \"%s\"; början på %s är inställd i en tidigare länkad fil\n" +msgid "" +"%s: Error: multiple definition of `%s'; start of %s is set in a earlier " +"linked file\n" +msgstr "" +"%s: Fel: flera definitioner av \"%s\"; början på %s är inställd i en " +"tidigare länkad fil\n" -#: elf64-mmix.c:1668 +#: elf64-mmix.c:1674 msgid "Register section has contents\n" msgstr "Registersektion har innehåll\n" -#: elf64-ppc.c:1466 libbfd.c:1436 +#: elf64-ppc.c:1484 libbfd.c:1436 #, c-format msgid "%s: compiled for a big endian system and target is little endian" msgstr "%s: kompilerad för big endian-system och målet är little endian" -#: elf64-ppc.c:1468 libbfd.c:1438 +#: elf64-ppc.c:1486 libbfd.c:1438 #, c-format msgid "%s: compiled for a little endian system and target is big endian" msgstr "%s: kompilerad för ett little endian-system och målet är big endian" -#: elf64-ppc.c:3166 -#, c-format -msgid "linkage table overflow against `%s'" +#: elf64-ppc.c:3350 +#, fuzzy, c-format +msgid "linkage table error against `%s'" msgstr "länktabell spiller över mot \"%s\"" -#: elf64-ppc.c:3244 +#: elf64-ppc.c:3432 msgid "stub section size doesn't match calculated size" msgstr "stubbsektionsstorleken stämmer inte överens med beräknad storlek" -#: elf64-ppc.c:3845 +#: elf64-ppc.c:4061 #, c-format msgid "%s: Relocation %s is not supported for symbol %s." msgstr "%s: Omlokaliseringen %s stöds inte för symbolen %s." -#: elf64-ppc.c:3889 +#: elf64-ppc.c:4105 #, c-format msgid "%s: error: relocation %s not a multiple of 4" msgstr "%s: fel: omlokaliseringen %s är inte en multipel av 4" @@ -1398,22 +1562,21 @@ msgid "%s: Only registers %%g[2367] can be declared using STT_REGISTER" msgstr "%s: Endast register %%g[2367] kan deklareras med STT_REGISTER" #: elf64-sparc.c:1334 -#, c-format -msgid "Register %%g%d used incompatibly: %s in %s" +#, fuzzy, c-format +msgid "Register %%g%d used incompatibly: %s in %s, previously %s in %s" msgstr "Register %%g%d används inkompatibelt: %s i %s" -# Skumt! -#: elf64-sparc.c:1338 elf64-sparc.c:1362 elf64-sparc.c:1411 -#, c-format -msgid " previously %s in %s" -msgstr " tidigare %s i %s" +#: elf64-sparc.c:1357 +#, fuzzy, c-format +msgid "Symbol `%s' has differing types: REGISTER in %s, previously %s in %s" +msgstr "Symbolen \"%s\" har olika typer: tidigare %s, REGISTER i %s" -#: elf64-sparc.c:1359 elf64-sparc.c:1408 -#, c-format -msgid "Symbol `%s' has differing types: %s in %s" -msgstr "Symbolen \"%s\" har olika typer: %s i %s" +#: elf64-sparc.c:1404 +#, fuzzy, c-format +msgid "Symbol `%s' has differing types: %s in %s, previously REGISTER in %s" +msgstr "Symbolen \"%s\" har olika typer: tidigare %s, REGISTER i %s" -#: elf64-sparc.c:3014 +#: elf64-sparc.c:3008 #, c-format msgid "%s: linking UltraSPARC specific with HAL specific code" msgstr "%s: länkar UltraSPARC-specifik med HAL-specifik kod" @@ -1448,38 +1611,39 @@ msgstr "%s: %s: ogiltig kr msgid "Warning: size of symbol `%s' changed from %lu to %lu in %s" msgstr "Varning: storleken på symbolen \"%s\" ändrades från %lu till %lu i %s" -#: elflink.h:4020 +#: elflink.h:4014 #, c-format msgid "warning: type and size of dynamic symbol `%s' are not defined" -msgstr "varning: typen och storleken på dynamiska symbolen \"%s\" är inte definierade" +msgstr "" +"varning: typen och storleken på dynamiska symbolen \"%s\" är inte definierade" -#: elflink.h:4329 +#: elflink.h:4320 #, c-format msgid "%s: undefined versioned symbol name %s" msgstr "%s: odefinierat symbolnamn med version %s" -#: elflink.h:4559 elflink.h:4567 elflink.h:6218 elflink.h:7295 +#: elflink.h:4544 elflink.h:4552 elflink.h:6203 elflink.h:7280 msgid "Error: out of memory" msgstr "Fel: slut på minne" -#: elflink.h:4729 +#: elflink.h:4714 msgid "Not enough memory to sort relocations" msgstr "Inte tillräckligt med minne för att sortera omlokaliseringar" -#: elflink.h:5995 +#: elflink.h:5980 #, c-format msgid "%s: could not find output section %s for input section %s" msgstr "%s: kunde inte hitta utdatasektion %s för indatasektionen %s" -#: elflink.h:6568 +#: elflink.h:6553 msgid "warning: relocation against removed section; zeroing" msgstr "varning: omlokalisering mot borttagen sektion; nollställer" -#: elflink.h:6598 +#: elflink.h:6583 msgid "warning: relocation against removed section" msgstr "varning: omlokalisering mot borttagen sektion" -#: elflink.h:6611 +#: elflink.h:6596 #, c-format msgid "local symbols in discarded section %s" msgstr "lokala symboler i bortkastade sektionen %s" @@ -1516,8 +1680,8 @@ msgstr "%s: ok # Ett extra blanksteg i originalet här #: ieee.c:877 -#, c-format -msgid "%s: unimplemented ATI record %u for symbol %u" +#, fuzzy, c-format +msgid "%s: unimplemented ATI record %u for symbol %u" msgstr "%s: inte implementerad ATI-post %u för symbolen %u" #: ieee.c:902 @@ -1538,12 +1702,15 @@ msgstr "%s:%d: ov #: ihex.c:368 #, c-format msgid "%s:%u: bad checksum in Intel Hex file (expected %u, found %u)" -msgstr "%s:%u: felaktig kontrollsumma i hexadecimal Intel-fil (förväntade %u, hittade %u)" +msgstr "" +"%s:%u: felaktig kontrollsumma i hexadecimal Intel-fil (förväntade %u, " +"hittade %u)" #: ihex.c:422 #, c-format msgid "%s:%u: bad extended address record length in Intel Hex file" -msgstr "%s:%u: felaktig längd på post för utökad adress i hexadecimal Intel-fil" +msgstr "" +"%s:%u: felaktig längd på post för utökad adress i hexadecimal Intel-fil" #: ihex.c:439 #, c-format @@ -1553,12 +1720,16 @@ msgstr "%s:%u: felaktig l #: ihex.c:456 #, c-format msgid "%s:%u: bad extended linear address record length in Intel Hex file" -msgstr "%s:%u: felaktig längd på post för utökad linjär adress i hexadecimal Intel-fil" +msgstr "" +"%s:%u: felaktig längd på post för utökad linjär adress i hexadecimal Intel-" +"fil" #: ihex.c:473 #, c-format msgid "%s:%u: bad extended linear start address length in Intel Hex file" -msgstr "%s:%u: felaktig längd på post för utökad linjär startadress i hexadecimal Intel-fil" +msgstr "" +"%s:%u: felaktig längd på post för utökad linjär startadress i hexadecimal " +"Intel-fil" #: ihex.c:490 #, c-format @@ -1577,8 +1748,8 @@ msgstr "%s: felaktig sektionsl # Verkar vara stavfel i originalet här #: ihex.c:863 -#, c-format -msgid "%s: address 0x%s out of range for Intex Hex file" +#, fuzzy, c-format +msgid "%s: address 0x%s out of range for Intel Hex file" msgstr "%s: adressen 0x%s är utanför intervallet för hexadecimal Intel-fil" #: libbfd.c:492 @@ -1590,17 +1761,17 @@ msgstr "mappar inte: data=%lx mappat=%d\n" msgid "not mapping: env var not set\n" msgstr "mappar inte: miljövariabel är inte satt\n" +#: libbfd.c:1467 +#, fuzzy, c-format +msgid "Deprecated %s called at %s line %d in %s\n" +msgstr " vid %s rad %d i %s\n" + # Skumt! -#: libbfd.c:1463 -#, c-format -msgid "Deprecated %s called" +#: libbfd.c:1470 +#, fuzzy, c-format +msgid "Deprecated %s called\n" msgstr "Föråldrad %s anropad" -#: libbfd.c:1465 -#, c-format -msgid " at %s line %d in %s\n" -msgstr " vid %s rad %d i %s\n" - #: linker.c:1849 #, c-format msgid "%s: indirect symbol `%s' to `%s' is a loop" @@ -1633,8 +1804,12 @@ msgstr "%s: ogiltig mmo-fil: initieringsv #: mmo.c:1336 #, c-format -msgid "%s: unsupported wide character sequence 0x%02X 0x%02X after symbol name starting with `%s'\n" -msgstr "%s: bred teckensekvens som inte stöds 0x%02X 0x%02X efter symbolnamnet som börjar med \"%s\"\n" +msgid "" +"%s: unsupported wide character sequence 0x%02X 0x%02X after symbol name " +"starting with `%s'\n" +msgstr "" +"%s: bred teckensekvens som inte stöds 0x%02X 0x%02X efter symbolnamnet som " +"börjar med \"%s\"\n" #: mmo.c:1571 #, c-format @@ -1649,12 +1824,15 @@ msgstr "%s: ogiltig mmo-fil: f #: mmo.c:1617 #, c-format msgid "%s: invalid mmo file: expected z = 1 or z = 2, got z = %d for lop_loc\n" -msgstr "%s: ogiltig mmo-fil: förväntade z = 1 eller z = 2, fick z = %d för lop_loc\n" +msgstr "" +"%s: ogiltig mmo-fil: förväntade z = 1 eller z = 2, fick z = %d för lop_loc\n" #: mmo.c:1663 #, c-format -msgid "%s: invalid mmo file: expected z = 1 or z = 2, got z = %d for lop_fixo\n" -msgstr "%s: ogiltig mmo-fil: förväntade z = 1 eller z = 2, fick z = %d för lop_fixo\n" +msgid "" +"%s: invalid mmo file: expected z = 1 or z = 2, got z = %d for lop_fixo\n" +msgstr "" +"%s: ogiltig mmo-fil: förväntade z = 1 eller z = 2, fick z = %d för lop_fixo\n" #: mmo.c:1702 #, c-format @@ -1663,13 +1841,20 @@ msgstr "%s: ogiltig mmo-fil: f #: mmo.c:1711 #, c-format -msgid "%s: invalid mmo file: expected z = 16 or z = 24, got z = %d for lop_fixrx\n" -msgstr "%s: ogiltig mmo-fil: förväntade z = 16 eller z = 24, fick z = %d för lop_fixr\n" +msgid "" +"%s: invalid mmo file: expected z = 16 or z = 24, got z = %d for lop_fixrx\n" +msgstr "" +"%s: ogiltig mmo-fil: förväntade z = 16 eller z = 24, fick z = %d för " +"lop_fixr\n" #: mmo.c:1734 #, c-format -msgid "%s: invalid mmo file: leading byte of operand word must be 0 or 1, got %d for lop_fixrx\n" -msgstr "%s: ogiltig mmo-fil: inledande byte i operandord måste vara 0 eller 1, fick %d för lop_fixrx\n" +msgid "" +"%s: invalid mmo file: leading byte of operand word must be 0 or 1, got %d " +"for lop_fixrx\n" +msgstr "" +"%s: ogiltig mmo-fil: inledande byte i operandord måste vara 0 eller 1, fick %" +"d för lop_fixrx\n" #: mmo.c:1757 #, c-format @@ -1678,18 +1863,24 @@ msgstr "%s: kan inte allokera filnamn f #: mmo.c:1777 #, c-format -msgid "%s: invalid mmo file: file number %d `%s', was already entered as `%s'\n" -msgstr "%s: ogiltig mmo-fil: fil nummer %d \"%s\", var redan angiven som \"%s\"\n" +msgid "" +"%s: invalid mmo file: file number %d `%s', was already entered as `%s'\n" +msgstr "" +"%s: ogiltig mmo-fil: fil nummer %d \"%s\", var redan angiven som \"%s\"\n" #: mmo.c:1790 #, c-format -msgid "%s: invalid mmo file: file name for number %d was not specified before use\n" -msgstr "%s: ogiltig mmo-fil: filnamnet för nummer %d angavs inte innan användning\n" +msgid "" +"%s: invalid mmo file: file name for number %d was not specified before use\n" +msgstr "" +"%s: ogiltig mmo-fil: filnamnet för nummer %d angavs inte innan användning\n" #: mmo.c:1896 #, c-format -msgid "%s: invalid mmo file: fields y and z of lop_stab non-zero, y: %d, z: %d\n" -msgstr "%s: ogiltig mmo-fil: fälten y och z i lop_stab är icke-tomma, y: %d, z: %d\n" +msgid "" +"%s: invalid mmo file: fields y and z of lop_stab non-zero, y: %d, z: %d\n" +msgstr "" +"%s: ogiltig mmo-fil: fälten y och z i lop_stab är icke-tomma, y: %d, z: %d\n" #: mmo.c:1932 #, c-format @@ -1698,8 +1889,12 @@ msgstr "%s: ogiltig mmo-fil: lop_end #: mmo.c:1945 #, c-format -msgid "%s: invalid mmo file: YZ of lop_end (%ld) not equal to the number of tetras to the preceding lop_stab (%ld)\n" -msgstr "%s: ogiltig mmo-fil: YZ i lop_end (%ld) är inte lika med antalet tetra till den föregående lop_stab (%ld)\n" +msgid "" +"%s: invalid mmo file: YZ of lop_end (%ld) not equal to the number of tetras " +"to the preceding lop_stab (%ld)\n" +msgstr "" +"%s: ogiltig mmo-fil: YZ i lop_end (%ld) är inte lika med antalet tetra till " +"den föregående lop_stab (%ld)\n" #: mmo.c:2610 #, c-format @@ -1708,13 +1903,21 @@ msgstr "%s: ogiltig symboltabell: dublettsymbol \"%s\"\n" #: mmo.c:2898 #, c-format -msgid "%s: Bad symbol definition: `Main' set to %s rather than the start address %s\n" -msgstr "%s: Felaktig symboldefinition: \"Main\" är inställd till %s istället för startadressen %s\n" +msgid "" +"%s: Bad symbol definition: `Main' set to %s rather than the start address %" +"s\n" +msgstr "" +"%s: Felaktig symboldefinition: \"Main\" är inställd till %s istället för " +"startadressen %s\n" #: mmo.c:2932 #, c-format -msgid "%s: warning: symbol table too large for mmo, larger than 65535 32-bit words: %d. Only `Main' will be emitted.\n" -msgstr "%s: varning: symboltabellen är för stor för mmo, större än 65535 32-bitars ord: %d. Endast \"Main\" kommer att skickas.\n" +msgid "" +"%s: warning: symbol table too large for mmo, larger than 65535 32-bit words: " +"%d. Only `Main' will be emitted.\n" +msgstr "" +"%s: varning: symboltabellen är för stor för mmo, större än 65535 32-bitars " +"ord: %d. Endast \"Main\" kommer att skickas.\n" #: mmo.c:2977 #, c-format @@ -1738,8 +1941,11 @@ msgstr "%s: f #: mmo.c:3095 #, c-format -msgid "%s: invalid start address for initialized registers of length %ld: 0x%lx%08lx\n" -msgstr "%s: ogiltig startadress för initierade register med längden %ld: 0x%lx%08lx\n" +msgid "" +"%s: invalid start address for initialized registers of length %ld: 0x%lx%" +"08lx\n" +msgstr "" +"%s: ogiltig startadress för initierade register med längden %ld: 0x%lx%08lx\n" #: oasys.c:1036 #, c-format @@ -1799,7 +2005,9 @@ msgstr "%s: Ok #: peicode.h:1174 #, c-format -msgid "%s: Recognised but unhandled machine type (0x%x) in Import Library Format archive" +msgid "" +"%s: Recognised but unhandled machine type (0x%x) in Import Library Format " +"archive" msgstr "%s: Känd men ohanterad maskintyp (0x%x) i Import Library Format-arkiv" #: peicode.h:1191 @@ -1813,8 +2021,12 @@ msgid "%s: string not null terminated in ILF object file." msgstr "%s: sträng inte nollterminerad i ILF-objektfil." #: ppcboot.c:416 -msgid "\nppcboot header:\n" -msgstr "\nppcboot-huvud:\n" +msgid "" +"\n" +"ppcboot header:\n" +msgstr "" +"\n" +"ppcboot-huvud:\n" #: ppcboot.c:417 #, c-format @@ -1838,8 +2050,12 @@ msgstr "Partitionsnamn = \"%s\"\n" #: ppcboot.c:446 #, c-format -msgid "\nPartition[%d] start = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" -msgstr "\nStart på partition[%d] = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" +msgid "" +"\n" +"Partition[%d] start = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" +msgstr "" +"\n" +"Start på partition[%d] = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" #: ppcboot.c:452 #, c-format @@ -1865,7 +2081,7 @@ msgstr "som_sizeof_headers msgid "%s:%d: Unexpected character `%s' in S-record file\n" msgstr "%s:%d: Oväntat tecken \"%s\" i S-postfil\n" -#: syms.c:996 +#: syms.c:998 msgid "Unsupported .stab relocation" msgstr ".stab-omlokalisering som inte stöds" @@ -1920,194 +2136,115 @@ msgstr "Symbolen %s ersatt med %s\n" msgid "failed to enter %s" msgstr "misslyckades med att gå in i %s" -#: vms-tir.c:78 +#: vms-tir.c:81 msgid "No Mem !" msgstr "Inget minne!" -#: vms-tir.c:313 -msgid "Bad section index in ETIR_S_C_STA_PQ" +#: vms-tir.c:362 +#, fuzzy, c-format +msgid "bad section index in %s" msgstr "Felaktigt sektionsindex i ETIR_S_C_STA_PQ" -#: vms-tir.c:328 -#, c-format -msgid "Unsupported STA cmd %d" +#: vms-tir.c:375 +#, fuzzy, c-format +msgid "unsupported STA cmd %s" msgstr "STA-kommando %d stöds inte" -#: vms-tir.c:333 vms-tir.c:1301 -#, c-format -msgid "Reserved STA cmd %d" +#: vms-tir.c:380 vms-tir.c:1240 +#, fuzzy, c-format +msgid "reserved STA cmd %d" msgstr "Reserverat STA-kommando %d" -# Alla dessa känns onödiga, borde rapporteras -#: vms-tir.c:443 -#, c-format -msgid "ETIR_S_C_STO_GBL: no symbol \"%s\"" -msgstr "ETIR_S_C_STO_GBL: ingen symbol \"%s\"" - -#: vms-tir.c:465 -#, c-format -msgid "ETIR_S_C_STO_CA: no symbol \"%s\"" -msgstr "ETIR_S_C_STO_CA: ingen symbol \"%s\"" - -#: vms-tir.c:478 -msgid "ETIR_S_C_STO_RB/AB: Not supported" -msgstr "ETIR_S_C_STO_RB/AB: Stöds inte" - -#: vms-tir.c:538 -msgid "ETIR_S_C_STO_LP_PSB: Not supported" -msgstr "ETIR_S_C_STO_LP_PSB: Stöds inte" - -#: vms-tir.c:544 -msgid "ETIR_S_C_STO_HINT_GBL: not implemented" -msgstr "ETIR_S_C_STO_HINT_GBL: inte implementerat" +#: vms-tir.c:491 vms-tir.c:514 +#, fuzzy, c-format +msgid "%s: no symbol \"%s\"" +msgstr "%s: ingen sådan symbol" -#: vms-tir.c:550 -msgid "ETIR_S_C_STO_HINT_PS: not implemented" -msgstr "ETIR_S_C_STO_HINT_PS: inte implementerat" +#. unsigned shift +#. rotate +#. Redefine symbol to current location. +#. Define a literal. +#: vms-tir.c:581 vms-tir.c:693 vms-tir.c:803 vms-tir.c:821 vms-tir.c:829 +#: vms-tir.c:838 vms-tir.c:1563 +#, fuzzy, c-format +msgid "%s: not supported" +msgstr "stöder inte" + +#: vms-tir.c:586 vms-tir.c:1418 +#, fuzzy, c-format +msgid "%s: not implemented" +msgstr "%s: oimplementerat %s\n" -#: vms-tir.c:554 vms-tir.c:1473 -#, c-format -msgid "Reserved STO cmd %d" +#: vms-tir.c:590 vms-tir.c:1422 +#, fuzzy, c-format +msgid "reserved STO cmd %d" msgstr "Reserverat STO-kommando %d" -#: vms-tir.c:667 -msgid "ETIR_S_C_OPR_INSV: Not supported" -msgstr "ETIR_S_C_OPR_INSV: Stöds inte" - -#: vms-tir.c:685 -msgid "ETIR_S_C_OPR_USH: Not supported" -msgstr "ETIR_S_C_OPR_USH: Stöds inte" - -#: vms-tir.c:691 -msgid "ETIR_S_C_OPR_ROT: Not supported" -msgstr "ETIR_S_C_OPR_ROT: Stöds inte" - -#: vms-tir.c:710 -msgid "ETIR_S_C_OPR_REDEF: Not supported" -msgstr "ETIR_S_C_OPR_REDEF: Stöds inte" - -#: vms-tir.c:716 -msgid "ETIR_S_C_OPR_DFLIT: Not supported" -msgstr "ETIR_S_C_OPR_DFLIT: Stöds inte" - -#: vms-tir.c:720 vms-tir.c:1668 -#, c-format -msgid "Reserved OPR cmd %d" +#: vms-tir.c:708 vms-tir.c:1568 +#, fuzzy, c-format +msgid "reserved OPR cmd %d" msgstr "Reserverat OPR-kommando %d" -#: vms-tir.c:788 vms-tir.c:1737 -#, c-format -msgid "Reserved CTL cmd %d" +#: vms-tir.c:776 vms-tir.c:1632 +#, fuzzy, c-format +msgid "reserved CTL cmd %d" msgstr "Reserverat CTL-kommando %d" -#: vms-tir.c:816 -msgid "ETIR_S_C_STC_LP: not supported" -msgstr "ETIR_S_C_STC_LP: stöds inte" - -#: vms-tir.c:834 -msgid "ETIR_S_C_STC_GBL: not supported" -msgstr "ETIR_S_C_STC_GBL: stöds inte" - -#: vms-tir.c:842 -msgid "ETIR_S_C_STC_GCA: not supported" -msgstr "ETIR_S_C_STC_GCA: stöds inte" - -#: vms-tir.c:851 -msgid "ETIR_S_C_STC_PS: not supported" -msgstr "ETIR_S_C_STC_PS: stöds inte" - -#. -#. * stack byte from image -#. * arg: - -#. * -#. -#: vms-tir.c:1199 -msgid "Stack-from-image not implemented" +#. stack byte from image +#. arg: none. +#: vms-tir.c:1148 +#, fuzzy +msgid "stack-from-image not implemented" msgstr "Stac-from-image är inte implementerat" -#: vms-tir.c:1219 -msgid "Stack-entry-mask not fully implemented" +#: vms-tir.c:1166 +#, fuzzy +msgid "stack-entry-mask not fully implemented" msgstr "Stack-entry-mask är inte helt implementerat" +#. compare procedure argument +#. arg: cs symbol name +#. by argument index +#. da argument descriptor #. -#. * compare procedure argument -#. * arg: cs symbol name -#. * by argument index -#. * da argument descriptor -#. * -#. * compare argument descriptor with symbol argument (ARG$V_PASSMECH) -#. * and stack TRUE (args match) or FALSE (args dont match) value -#. -#: vms-tir.c:1235 +#. compare argument descriptor with symbol argument (ARG$V_PASSMECH) +#. and stack TRUE (args match) or FALSE (args dont match) value. +#: vms-tir.c:1180 msgid "PASSMECH not fully implemented" msgstr "PASSMECH är inte helt implementerat" -#: vms-tir.c:1256 -msgid "Stack-local-symbol not fully implemented" +#: vms-tir.c:1199 +#, fuzzy +msgid "stack-local-symbol not fully implemented" msgstr "Stack-local-symbol är inte helt implementerat" -#: vms-tir.c:1271 -msgid "Stack-literal not fully implemented" +#: vms-tir.c:1212 +#, fuzzy +msgid "stack-literal not fully implemented" msgstr "Stack-literal är inte helt implementerat" -#: vms-tir.c:1294 -msgid "Stack-local-symbol-entry-point-mask not fully implemented" +#: vms-tir.c:1233 +#, fuzzy +msgid "stack-local-symbol-entry-point-mask not fully implemented" msgstr "Stack-local-symbol-entry-point-mask är inte helt implementerat" -#: vms-tir.c:1469 -#, c-format -msgid "Unimplemented STO cmd %d" -msgstr "Oimplementerat STO-kommando %d" - -#: vms-tir.c:1608 -msgid "TIR_S_C_OPR_ASH incomplete" -msgstr "TIR_S_C_OPR_ASH ofullständigt" - -#: vms-tir.c:1622 -msgid "TIR_S_C_OPR_USH incomplete" -msgstr "TIR_S_C_OPR_USH ofullständigt" - -#: vms-tir.c:1636 -msgid "TIR_S_C_OPR_ROT incomplete" -msgstr "TIR_S_C_OPR_ROT ofullständigt" - -#. -#. * redefine symbol to current location -#. -#: vms-tir.c:1657 -msgid "TIR_S_C_OPR_REDEF not supported" -msgstr "TIR_S_C_OPR_REDEF stöds inte" - -#. -#. * define a literal -#. -#: vms-tir.c:1664 -msgid "TIR_S_C_OPR_DFLIT not supported" -msgstr "TIR_S_C_OPR_DFLIT stöds inte" - -#: vms-tir.c:1718 -msgid "TIR_S_C_CTL_DFLOC not fully implemented" -msgstr "TIR_S_C_CTL_DFLOC är inte fullständigt implementerat" - -#: vms-tir.c:1726 -msgid "TIR_S_C_CTL_STLOC not fully implemented" -msgstr "TIR_S_C_CTL_STLOC är inte fullständigt implementerat" - -#: vms-tir.c:1734 -msgid "TIR_S_C_CTL_STKDL not fully implemented" -msgstr "TIR_S_C_CTL_STKDL är inte fulständigt implementerat" +#: vms-tir.c:1510 vms-tir.c:1522 vms-tir.c:1534 vms-tir.c:1546 vms-tir.c:1611 +#: vms-tir.c:1619 vms-tir.c:1627 +#, fuzzy, c-format +msgid "%s: not fully implemented" +msgstr "PASSMECH är inte helt implementerat" -#: vms-tir.c:1791 -#, c-format -msgid "Obj code %d not found" +#: vms-tir.c:1684 +#, fuzzy, c-format +msgid "obj code %d not found" msgstr "Objektkod %d kunde inte hittas" -#: vms-tir.c:2137 +#: vms-tir.c:2019 #, c-format msgid "SEC_RELOC with no relocs in section %s" msgstr "SEC_RELOC utan omlokaliseringar i sektion %s" -#: vms-tir.c:2424 +#: vms-tir.c:2307 #, c-format msgid "Unhandled relocation %s" msgstr "Ohanterad omlokalisering %s" @@ -2179,7 +2316,8 @@ msgstr "varning: f #: xcofflink.c:4452 #, c-format msgid "TOC overflow: 0x%lx > 0x10000; try -mminimal-toc when compiling" -msgstr "TOC ger överspill: 0x%lx > 0x10000; prova -mminimal-toc vid kompilering" +msgstr "" +"TOC ger överspill: 0x%lx > 0x10000; prova -mminimal-toc vid kompilering" #: xcofflink.c:5292 xcofflink.c:5754 xcofflink.c:5816 xcofflink.c:6117 #, c-format @@ -2196,306 +2334,343 @@ msgstr "%s: \"%s\" i inl msgid "%s: loader reloc in read-only section %s" msgstr "%s: inläsaromlokalisering i skrivskyddade sektionen %s" -#: elf32-ia64.c:2190 elf64-ia64.c:2190 +#: elf32-ia64.c:2189 elf64-ia64.c:2189 msgid "@pltoff reloc against local symbol" msgstr "@pltoff-omlokalisering mot lokal symbol" -#: elf32-ia64.c:2248 elf64-ia64.c:2248 -msgid "non-zero addend in @fptr reloc" -msgstr "icke-tomt addendum i @fptr-omlokalisering" - -#: elf32-ia64.c:3414 elf64-ia64.c:3414 +#: elf32-ia64.c:3413 elf64-ia64.c:3413 #, c-format msgid "%s: short data segment overflowed (0x%lx >= 0x400000)" msgstr "%s: kort datasegment spillde över (0x%lx >= 0x400000)" -#: elf32-ia64.c:3425 elf64-ia64.c:3425 +#: elf32-ia64.c:3424 elf64-ia64.c:3424 #, c-format msgid "%s: __gp does not cover short data segment" msgstr "%s: __gp täcker inte kort datasegment" -#: elf32-ia64.c:3729 elf64-ia64.c:3729 +#: elf32-ia64.c:3728 elf64-ia64.c:3728 #, c-format msgid "%s: linking non-pic code in a shared library" msgstr "%s: länkar icke-pic-kod i delat bibliotek" -#: elf32-ia64.c:3762 elf64-ia64.c:3762 +#: elf32-ia64.c:3761 elf64-ia64.c:3761 #, c-format msgid "%s: @gprel relocation against dynamic symbol %s" msgstr "%s: @gprel-omlokalisering mot dynamiska symbolen %s" -#: elf32-ia64.c:3901 elf64-ia64.c:3901 +#: elf32-ia64.c:3900 elf64-ia64.c:3900 #, c-format msgid "%s: dynamic relocation against speculation fixup" msgstr "%s: dynamisk omlokalisering utan spekulationsfixar" -#: elf32-ia64.c:3909 elf64-ia64.c:3909 +#: elf32-ia64.c:3908 elf64-ia64.c:3908 #, c-format msgid "%s: speculation fixup against undefined weak symbol" msgstr "%s: spekulationsfix mot odefinierad svag symbol" -#: elf32-ia64.c:4093 elf64-ia64.c:4093 +#: elf32-ia64.c:4092 elf64-ia64.c:4092 msgid "unsupported reloc" msgstr "omlokaliseringen stöds inte" -#: elf32-ia64.c:4373 elf64-ia64.c:4373 +#: elf32-ia64.c:4372 elf64-ia64.c:4372 #, c-format msgid "%s: linking trap-on-NULL-dereference with non-trapping files" msgstr "%s: länkar fånga-vid-NULL-dereferens med ickefångande filer" -#: elf32-ia64.c:4382 elf64-ia64.c:4382 +#: elf32-ia64.c:4381 elf64-ia64.c:4381 #, c-format msgid "%s: linking big-endian files with little-endian files" msgstr "%s: länkar big endian-filer med little endian-filer" -#: elf32-ia64.c:4391 elf64-ia64.c:4391 +#: elf32-ia64.c:4390 elf64-ia64.c:4390 #, c-format msgid "%s: linking 64-bit files with 32-bit files" msgstr "%s: länkar 64-bitarsfiler med 32-bitarsfiler" -#: elf32-ia64.c:4400 elf64-ia64.c:4400 +#: elf32-ia64.c:4399 elf64-ia64.c:4399 #, c-format msgid "%s: linking constant-gp files with non-constant-gp files" msgstr "%s: länkar konstant-gp-filer med icke-konstant-gp-filer" -#: elf32-ia64.c:4410 elf64-ia64.c:4410 +#: elf32-ia64.c:4409 elf64-ia64.c:4409 #, c-format msgid "%s: linking auto-pic files with non-auto-pic files" msgstr "%s: länkar auto-pic-filer med icke-auto-pic-filer" -#: peigen.c:964 pepigen.c:964 +#: peigen.c:962 pepigen.c:962 #, c-format msgid "%s: line number overflow: 0x%lx > 0xffff" msgstr "%s: radnummer ger överspill: 0x%lx > 0xffff" -#: peigen.c:981 pepigen.c:981 +#: peigen.c:979 pepigen.c:979 #, c-format msgid "%s: reloc overflow 1: 0x%lx > 0xffff" msgstr "%s: omlokalisering ger överspill 1: 0x%lx > 0xffff" -#: peigen.c:995 pepigen.c:995 +#: peigen.c:993 pepigen.c:993 msgid "Export Directory [.edata (or where ever we found it)]" msgstr "Exportkatalog [.edata (eller där vi hittade det)]" -#: peigen.c:996 pepigen.c:996 +#: peigen.c:994 pepigen.c:994 msgid "Import Directory [parts of .idata]" msgstr "Importkatalog [delar av .idata]" -#: peigen.c:997 pepigen.c:997 +#: peigen.c:995 pepigen.c:995 msgid "Resource Directory [.rsrc]" msgstr "Resurskatalog [.rsrc]" -#: peigen.c:998 pepigen.c:998 +#: peigen.c:996 pepigen.c:996 msgid "Exception Directory [.pdata]" msgstr "Undantagskatalog [.pdata]" -#: peigen.c:999 pepigen.c:999 +#: peigen.c:997 pepigen.c:997 msgid "Security Directory" msgstr "Säkerhetskatalog" -#: peigen.c:1000 pepigen.c:1000 +#: peigen.c:998 pepigen.c:998 msgid "Base Relocation Directory [.reloc]" msgstr "Basomlokaliseringskatalog [.reloc]" -#: peigen.c:1001 pepigen.c:1001 +#: peigen.c:999 pepigen.c:999 msgid "Debug Directory" msgstr "Felsökningskatalog" -#: peigen.c:1002 pepigen.c:1002 +#: peigen.c:1000 pepigen.c:1000 msgid "Description Directory" msgstr "Beskrivningskatalog" -#: peigen.c:1003 pepigen.c:1003 +#: peigen.c:1001 pepigen.c:1001 msgid "Special Directory" msgstr "Specialkatalog" -#: peigen.c:1004 pepigen.c:1004 +#: peigen.c:1002 pepigen.c:1002 msgid "Thread Storage Directory [.tls]" msgstr "Trådlagringskatalog [.tls]" -#: peigen.c:1005 pepigen.c:1005 +#: peigen.c:1003 pepigen.c:1003 msgid "Load Configuration Directory" msgstr "Inläsningskonfigurationskatalog" -#: peigen.c:1006 pepigen.c:1006 +#: peigen.c:1004 pepigen.c:1004 msgid "Bound Import Directory" msgstr "Katalog över bundna importer" -#: peigen.c:1007 pepigen.c:1007 +#: peigen.c:1005 pepigen.c:1005 msgid "Import Address Table Directory" msgstr "Importadresstabellkatalog" -#: peigen.c:1008 pepigen.c:1008 +#: peigen.c:1006 pepigen.c:1006 msgid "Delay Import Directory" msgstr "Katalog över fördröjda importer" -#: peigen.c:1009 peigen.c:1010 pepigen.c:1009 pepigen.c:1010 +#: peigen.c:1007 peigen.c:1008 pepigen.c:1007 pepigen.c:1008 msgid "Reserved" msgstr "Reserverad" -#: peigen.c:1073 pepigen.c:1073 -msgid "\nThere is an import table, but the section containing it could not be found\n" -msgstr "\nDet finns en importtabell, men sektionen som innehåller den kunde inte hittas\n" +#: peigen.c:1071 pepigen.c:1071 +msgid "" +"\n" +"There is an import table, but the section containing it could not be found\n" +msgstr "" +"\n" +"Det finns en importtabell, men sektionen som innehåller den kunde inte " +"hittas\n" -#: peigen.c:1078 pepigen.c:1078 +#: peigen.c:1076 pepigen.c:1076 #, c-format -msgid "\nThere is an import table in %s at 0x%lx\n" -msgstr "\nDet finns en importtabell i %s på 0x%lx\n" +msgid "" +"\n" +"There is an import table in %s at 0x%lx\n" +msgstr "" +"\n" +"Det finns en importtabell i %s på 0x%lx\n" -#: peigen.c:1115 pepigen.c:1115 +#: peigen.c:1113 pepigen.c:1113 #, c-format -msgid "\nFunction descriptor located at the start address: %04lx\n" -msgstr "\nFunktionsidentifierare hittad på startadressen: %04lx\n" +msgid "" +"\n" +"Function descriptor located at the start address: %04lx\n" +msgstr "" +"\n" +"Funktionsidentifierare hittad på startadressen: %04lx\n" -#: peigen.c:1118 pepigen.c:1118 +#: peigen.c:1116 pepigen.c:1116 #, c-format msgid "\tcode-base %08lx toc (loadable/actual) %08lx/%08lx\n" msgstr "\tkodbas %08lx toc (inläsningsbar/verklig) %08lx/%08lx\n" -#: peigen.c:1124 pepigen.c:1124 -msgid "\nNo reldata section! Function descriptor not decoded.\n" -msgstr "\nIngen reldata-sektion! Funktionsidentifierare avkodades inte.\n" +#: peigen.c:1122 pepigen.c:1122 +msgid "" +"\n" +"No reldata section! Function descriptor not decoded.\n" +msgstr "" +"\n" +"Ingen reldata-sektion! Funktionsidentifierare avkodades inte.\n" -#: peigen.c:1129 pepigen.c:1129 +#: peigen.c:1127 pepigen.c:1127 #, c-format -msgid "\nThe Import Tables (interpreted %s section contents)\n" -msgstr "\nImporttabellerna (tolkade innehåll i %s-sektion)\n" - -# This is broken -# -# fprintf (file, -# _("\nThe Import Tables (interpreted %s section contents)\n"), -# section->name); -# fprintf (file, -# _(" vma: Hint Time Forward DLL First\n")); -# fprintf (file, -# _(" Table Stamp Chain Name Thunk\n")); -# -#: peigen.c:1132 pepigen.c:1132 -msgid " vma: Hint Time Forward DLL First\n" -msgstr " vma: Tips- Tids- V.bef.- DLL- Första\n" +msgid "" +"\n" +"The Import Tables (interpreted %s section contents)\n" +msgstr "" +"\n" +"Importtabellerna (tolkade innehåll i %s-sektion)\n" # Vad är thunk? -#: peigen.c:1134 pepigen.c:1134 -msgid " Table Stamp Chain Name Thunk\n" +#: peigen.c:1130 pepigen.c:1130 +#, fuzzy +msgid "" +" vma: Hint Time Forward DLL First\n" +" Table Stamp Chain Name Thunk\n" msgstr " tabell stämpel kedja namn thunk\n" -#: peigen.c:1182 pepigen.c:1182 +#: peigen.c:1180 pepigen.c:1180 #, c-format -msgid "\n\tDLL Name: %s\n" -msgstr "\n\tDLL-namn: %s\n" +msgid "" +"\n" +"\tDLL Name: %s\n" +msgstr "" +"\n" +"\tDLL-namn: %s\n" -#: peigen.c:1186 peigen.c:1249 pepigen.c:1186 pepigen.c:1249 +#: peigen.c:1184 peigen.c:1247 pepigen.c:1184 pepigen.c:1247 msgid "\tvma: Hint/Ord Member-Name\n" msgstr "\tvma: Tips/Vanligt medlemsnamn\n" -#: peigen.c:1248 pepigen.c:1248 +#: peigen.c:1246 pepigen.c:1246 msgid "\tThe Import Address Table (difference found)\n" msgstr "\tImportadresstabellen (skillnad hittad)\n" -#: peigen.c:1255 pepigen.c:1255 +#: peigen.c:1253 pepigen.c:1253 msgid "\t>>> Ran out of IAT members!\n" msgstr "\t>>> Slut på IAT-medlemmar!\n" -#: peigen.c:1273 pepigen.c:1273 +#: peigen.c:1271 pepigen.c:1271 msgid "\tThe Import Address Table is identical\n" msgstr "\tImportadresstabellen är identisk\n" -#: peigen.c:1345 pepigen.c:1345 -msgid "\nThere is an export table, but the section containing it could not be found\n" -msgstr "\nDet finns en exporttabell, men sektionen som innehåller den kunde inte hittas\n" +#: peigen.c:1343 pepigen.c:1343 +msgid "" +"\n" +"There is an export table, but the section containing it could not be found\n" +msgstr "" +"\n" +"Det finns en exporttabell, men sektionen som innehåller den kunde inte " +"hittas\n" -#: peigen.c:1350 pepigen.c:1350 +#: peigen.c:1348 pepigen.c:1348 #, c-format -msgid "\nThere is an export table in %s at 0x%lx\n" -msgstr "\nDet finns en exporttabell i %s vid 0x%lx\n" +msgid "" +"\n" +"There is an export table in %s at 0x%lx\n" +msgstr "" +"\n" +"Det finns en exporttabell i %s vid 0x%lx\n" -#: peigen.c:1381 pepigen.c:1381 +#: peigen.c:1379 pepigen.c:1379 #, c-format -msgid "\nThe Export Tables (interpreted %s section contents)\n\n" -msgstr "\nExporttabellerna (tolkade innehåll i %s-sektion)\n" +msgid "" +"\n" +"The Export Tables (interpreted %s section contents)\n" +"\n" +msgstr "" +"\n" +"Exporttabellerna (tolkade innehåll i %s-sektion)\n" -#: peigen.c:1385 pepigen.c:1385 +#: peigen.c:1383 pepigen.c:1383 #, c-format msgid "Export Flags \t\t\t%lx\n" msgstr "Exportflaggor \t\t\t%lx\n" -#: peigen.c:1388 pepigen.c:1388 +#: peigen.c:1386 pepigen.c:1386 #, c-format msgid "Time/Date stamp \t\t%lx\n" msgstr "Tid-/Datumstämpel \t\t%lx\n" -#: peigen.c:1391 pepigen.c:1391 +#: peigen.c:1389 pepigen.c:1389 #, c-format msgid "Major/Minor \t\t\t%d/%d\n" msgstr "Övre/Undre \t\t\t%d/%d\n" -#: peigen.c:1394 pepigen.c:1394 +#: peigen.c:1392 pepigen.c:1392 msgid "Name \t\t\t\t" msgstr "Namn \t\t\t\t" -#: peigen.c:1400 pepigen.c:1400 +#: peigen.c:1398 pepigen.c:1398 #, c-format msgid "Ordinal Base \t\t\t%ld\n" msgstr "Ordningsbas \t\t\t%ld\n" -#: peigen.c:1403 pepigen.c:1403 +#: peigen.c:1401 pepigen.c:1401 msgid "Number in:\n" msgstr "Tal i:\n" -#: peigen.c:1406 pepigen.c:1406 +#: peigen.c:1404 pepigen.c:1404 #, c-format msgid "\tExport Address Table \t\t%08lx\n" msgstr "\tExportadresstabell \t\t%08lx\n" -#: peigen.c:1410 pepigen.c:1410 +#: peigen.c:1408 pepigen.c:1408 #, c-format msgid "\t[Name Pointer/Ordinal] Table\t%08lx\n" msgstr "\t[Namnpekare/Ordningstal]-tabell\t%08lx\n" -#: peigen.c:1413 pepigen.c:1413 +#: peigen.c:1411 pepigen.c:1411 msgid "Table Addresses\n" msgstr "Tabelladresser\n" -#: peigen.c:1416 pepigen.c:1416 +#: peigen.c:1414 pepigen.c:1414 msgid "\tExport Address Table \t\t" msgstr "\tExportadresstabell \t\t" -#: peigen.c:1421 pepigen.c:1421 +#: peigen.c:1419 pepigen.c:1419 msgid "\tName Pointer Table \t\t" msgstr "\tNamnpekartabell \t\t" -#: peigen.c:1426 pepigen.c:1426 +#: peigen.c:1424 pepigen.c:1424 msgid "\tOrdinal Table \t\t\t" msgstr "\tOrdningstalstabell \t\t\t" -#: peigen.c:1441 pepigen.c:1441 +#: peigen.c:1439 pepigen.c:1439 #, c-format -msgid "\nExport Address Table -- Ordinal Base %ld\n" -msgstr "\nExportadresstabell -- Orningsbas %ld\n" +msgid "" +"\n" +"Export Address Table -- Ordinal Base %ld\n" +msgstr "" +"\n" +"Exportadresstabell -- Orningsbas %ld\n" -#: peigen.c:1460 pepigen.c:1460 +#: peigen.c:1458 pepigen.c:1458 msgid "Forwarder RVA" msgstr "Vidarebefordrar-RVA" -#: peigen.c:1471 pepigen.c:1471 +#: peigen.c:1469 pepigen.c:1469 msgid "Export RVA" msgstr "Export-RVA" -#: peigen.c:1478 pepigen.c:1478 -msgid "\n[Ordinal/Name Pointer] Table\n" -msgstr "\n[Ordningstals-/Namnpekar-]tabell\n" +#: peigen.c:1476 pepigen.c:1476 +msgid "" +"\n" +"[Ordinal/Name Pointer] Table\n" +msgstr "" +"\n" +"[Ordningstals-/Namnpekar-]tabell\n" -#: peigen.c:1533 pepigen.c:1533 +#: peigen.c:1531 pepigen.c:1531 #, c-format msgid "Warning, .pdata section size (%ld) is not a multiple of %d\n" -msgstr "Varning, storleken på .pdata-sektionen (%ld) är inte en multipel av %d\n" +msgstr "" +"Varning, storleken på .pdata-sektionen (%ld) är inte en multipel av %d\n" -#: peigen.c:1537 pepigen.c:1537 -msgid "\nThe Function Table (interpreted .pdata section contents)\n" -msgstr "\nFunktionstabellen (tolkade innehåll från .pdata-sektionen)\n" +#: peigen.c:1535 pepigen.c:1535 +msgid "" +"\n" +"The Function Table (interpreted .pdata section contents)\n" +msgstr "" +"\n" +"Funktionstabellen (tolkade innehåll från .pdata-sektionen)\n" -#: peigen.c:1540 pepigen.c:1540 +#: peigen.c:1538 pepigen.c:1538 msgid " vma:\t\t\tBegin Address End Address Unwind Info\n" msgstr " vma:\t\t\tStartadress Slutadress Ospola information\n" @@ -2503,43 +2678,52 @@ msgstr " vma:\t\t\tStartadress Slutadress Ospola information\n" # # #ifdef COFF_WITH_pep # fprintf (file, -# _(" vma:\t\t\tBegin Address End Address Unwind Info\n")); +# _(" vma:\t\t\tBegin Address End Address Unwind Info\n")); # #else # fprintf (file, -# _(" vma:\t\tBegin End EH EH PrologEnd Exception\n")); +# _(" vma:\t\tBegin End EH EH PrologEnd Exception\n")); # fprintf (file, -# _(" \t\tAddress Address Handler Data Address Mask\n")); +# _(" \t\tAddress Address Handler Data Address Mask\n")); # -#: peigen.c:1543 pepigen.c:1543 -msgid " vma:\t\tBegin End EH EH PrologEnd Exception\n" +#: peigen.c:1540 pepigen.c:1540 +#, fuzzy +msgid "" +" vma:\t\tBegin End EH EH PrologEnd Exception\n" +" \t\tAddress Address Handler Data Address Mask\n" msgstr " vma:\t\tStart- Slut- EH- EH- Prologslut- Undantags-\n" -#: peigen.c:1545 pepigen.c:1545 -msgid " \t\tAddress Address Handler Data Address Mask\n" -msgstr " \t\tadress adress hanterare data adress mask\n" - -#: peigen.c:1613 pepigen.c:1613 +#: peigen.c:1610 pepigen.c:1610 msgid " Register save millicode" msgstr " Registerspara millikod" -#: peigen.c:1616 pepigen.c:1616 +#: peigen.c:1613 pepigen.c:1613 msgid " Register restore millicode" msgstr " Registeråterställ millikod" -#: peigen.c:1619 pepigen.c:1619 +#: peigen.c:1616 pepigen.c:1616 msgid " Glue code sequence" msgstr " Klisterkodsekvens" -#: peigen.c:1671 pepigen.c:1671 -msgid "\n\nPE File Base Relocations (interpreted .reloc section contents)\n" -msgstr "\n\nPE-filbasomlokaliseringar (tolkat innehåll i .reloc-sektionen)\n" +#: peigen.c:1668 pepigen.c:1668 +msgid "" +"\n" +"\n" +"PE File Base Relocations (interpreted .reloc section contents)\n" +msgstr "" +"\n" +"\n" +"PE-filbasomlokaliseringar (tolkat innehåll i .reloc-sektionen)\n" -#: peigen.c:1701 pepigen.c:1701 +#: peigen.c:1698 pepigen.c:1698 #, c-format -msgid "\nVirtual Address: %08lx Chunk size %ld (0x%lx) Number of fixups %ld\n" -msgstr "\nVirtuell adress: %08lx Områdesstorlek %ld (0x%lx) Antal fixar %ld\n" +msgid "" +"\n" +"Virtual Address: %08lx Chunk size %ld (0x%lx) Number of fixups %ld\n" +msgstr "" +"\n" +"Virtuell adress: %08lx Områdesstorlek %ld (0x%lx) Antal fixar %ld\n" -#: peigen.c:1714 pepigen.c:1714 +#: peigen.c:1711 pepigen.c:1711 #, c-format msgid "\treloc %4d offset %4x [%4lx] %s" msgstr "\tomlokalisering %4d avstånd %4x [%4lx] %s" @@ -2547,10 +2731,151 @@ msgstr "\tomlokalisering %4d avst #. The MS dumpbin program reportedly ands with 0xff0f before #. printing the characteristics field. Not sure why. No reason to #. emulate it here. -#: peigen.c:1754 pepigen.c:1754 +#: peigen.c:1751 pepigen.c:1751 #, c-format -msgid "\nCharacteristics 0x%x\n" -msgstr "\nKarakteristik 0x%x\n" +msgid "" +"\n" +"Characteristics 0x%x\n" +msgstr "" +"\n" +"Karakteristik 0x%x\n" + +# Ska vara blanksteg här tror jag +#~ msgid "BFD %sinternal error, aborting at %s line %d\n" +#~ msgstr "Internt BFD %s-fel, avbryter vid %s rad %d\n" + +#~ msgid "GP relative relocation when GP not defined" +#~ msgstr "GP-relativ omlokalisering då GP inte är definierad" + +#~ msgid "Warning: input file %s supports interworking, whereas %s does not." +#~ msgstr "" +#~ "Varning: indatafilen %s stöder samverkande, medan %s däremot inte gör det." + +#~ msgid "" +#~ "Warning: input file %s does not support interworking, whereas %s does." +#~ msgstr "" +#~ "Varning: indatafilen %s stöder inte samverkande, medan %s däremot gör det." + +#~ msgid "AUX tagndx %ld ttlsiz 0x%lx lnnos %ld next %ld" +#~ msgstr "AUX tagndx %ld ttlsiz 0x%lx radnummer %ld nästa %ld" + +#~ msgid "" +#~ "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x" +#~ "%.8lx%s\n" +#~ msgstr "" +#~ "elf_symbol_from_bfd_symbol 0x%.8lx, namn = %s, symbolnr = %d, flaggor = 0x" +#~ "%.8lx%s\n" + +#~ msgid "" +#~ "Warning: Not setting interwork flag of %s since it has already been " +#~ "specified as non-interworking" +#~ msgstr "" +#~ "Varning: Ställer inte in samverkandeflaggan för %s eftersom den redan har " +#~ "angivits som inte samverkande" + +#~ msgid "Warning: Clearing the interwork flag of %s due to outside request" +#~ msgstr "" +#~ "Varning: Stänger av samverkandeflaggan för %s på grund av utomstående " +#~ "begäran" + +#~ msgid "(unknown)" +#~ msgstr "(okänd)" + +# Skumt! +#~ msgid " previously %s in %s" +#~ msgstr " tidigare %s i %s" + +#~ msgid "Symbol `%s' has differing types: %s in %s" +#~ msgstr "Symbolen \"%s\" har olika typer: %s i %s" + +# Alla dessa känns onödiga, borde rapporteras +#~ msgid "ETIR_S_C_STO_GBL: no symbol \"%s\"" +#~ msgstr "ETIR_S_C_STO_GBL: ingen symbol \"%s\"" + +#~ msgid "ETIR_S_C_STO_CA: no symbol \"%s\"" +#~ msgstr "ETIR_S_C_STO_CA: ingen symbol \"%s\"" + +#~ msgid "ETIR_S_C_STO_RB/AB: Not supported" +#~ msgstr "ETIR_S_C_STO_RB/AB: Stöds inte" + +#~ msgid "ETIR_S_C_STO_LP_PSB: Not supported" +#~ msgstr "ETIR_S_C_STO_LP_PSB: Stöds inte" + +#~ msgid "ETIR_S_C_STO_HINT_GBL: not implemented" +#~ msgstr "ETIR_S_C_STO_HINT_GBL: inte implementerat" + +#~ msgid "ETIR_S_C_STO_HINT_PS: not implemented" +#~ msgstr "ETIR_S_C_STO_HINT_PS: inte implementerat" + +#~ msgid "ETIR_S_C_OPR_INSV: Not supported" +#~ msgstr "ETIR_S_C_OPR_INSV: Stöds inte" + +#~ msgid "ETIR_S_C_OPR_USH: Not supported" +#~ msgstr "ETIR_S_C_OPR_USH: Stöds inte" + +#~ msgid "ETIR_S_C_OPR_ROT: Not supported" +#~ msgstr "ETIR_S_C_OPR_ROT: Stöds inte" + +#~ msgid "ETIR_S_C_OPR_REDEF: Not supported" +#~ msgstr "ETIR_S_C_OPR_REDEF: Stöds inte" + +#~ msgid "ETIR_S_C_OPR_DFLIT: Not supported" +#~ msgstr "ETIR_S_C_OPR_DFLIT: Stöds inte" + +#~ msgid "ETIR_S_C_STC_LP: not supported" +#~ msgstr "ETIR_S_C_STC_LP: stöds inte" + +#~ msgid "ETIR_S_C_STC_GBL: not supported" +#~ msgstr "ETIR_S_C_STC_GBL: stöds inte" + +#~ msgid "ETIR_S_C_STC_GCA: not supported" +#~ msgstr "ETIR_S_C_STC_GCA: stöds inte" + +#~ msgid "ETIR_S_C_STC_PS: not supported" +#~ msgstr "ETIR_S_C_STC_PS: stöds inte" + +#~ msgid "Unimplemented STO cmd %d" +#~ msgstr "Oimplementerat STO-kommando %d" + +#~ msgid "TIR_S_C_OPR_ASH incomplete" +#~ msgstr "TIR_S_C_OPR_ASH ofullständigt" + +#~ msgid "TIR_S_C_OPR_USH incomplete" +#~ msgstr "TIR_S_C_OPR_USH ofullständigt" + +#~ msgid "TIR_S_C_OPR_ROT incomplete" +#~ msgstr "TIR_S_C_OPR_ROT ofullständigt" + +#~ msgid "TIR_S_C_OPR_REDEF not supported" +#~ msgstr "TIR_S_C_OPR_REDEF stöds inte" + +#~ msgid "TIR_S_C_OPR_DFLIT not supported" +#~ msgstr "TIR_S_C_OPR_DFLIT stöds inte" + +#~ msgid "TIR_S_C_CTL_DFLOC not fully implemented" +#~ msgstr "TIR_S_C_CTL_DFLOC är inte fullständigt implementerat" + +#~ msgid "TIR_S_C_CTL_STLOC not fully implemented" +#~ msgstr "TIR_S_C_CTL_STLOC är inte fullständigt implementerat" + +#~ msgid "TIR_S_C_CTL_STKDL not fully implemented" +#~ msgstr "TIR_S_C_CTL_STKDL är inte fulständigt implementerat" + +# This is broken +# +# fprintf (file, +# _("\nThe Import Tables (interpreted %s section contents)\n"), +# section->name); +# fprintf (file, +# _(" vma: Hint Time Forward DLL First\n")); +# fprintf (file, +# _(" Table Stamp Chain Name Thunk\n")); +# +#~ msgid " vma: Hint Time Forward DLL First\n" +#~ msgstr " vma: Tips- Tids- V.bef.- DLL- Första\n" + +#~ msgid " \t\tAddress Address Handler Data Address Mask\n" +#~ msgstr " \t\tadress adress hanterare data adress mask\n" #~ msgid "float" #~ msgstr "flyttal" @@ -2564,25 +2889,22 @@ msgstr "\nKarakteristik 0x%x\n" #~ msgid "hard" #~ msgstr "hård" -#~ # _bfd_error_handler (_("# Warning: %s %s interworking, whereas %s %s"), -#~ # bfd_get_filename (ibfd), -#~ # in_flags & EF_INTERWORK ? _("supports") : _("does not support"), -#~ # bfd_get_filename (obfd), -#~ # out_flags & EF_INTERWORK ? _("does not") : _("does")); -#~ # -#~ # This is broken -#~ # -#~ # Don't split a sentence like this, use multiple full messages instead -#~ # +# _bfd_error_handler (_("# Warning: %s %s interworking, whereas %s %s"), +# bfd_get_filename (ibfd), +# in_flags & EF_INTERWORK ? _("supports") : _("does not support"), +# bfd_get_filename (obfd), +# out_flags & EF_INTERWORK ? _("does not") : _("does")); +# +# This is broken +# +# Don't split a sentence like this, use multiple full messages instead +# #~ msgid "Warning: %s %s interworking, whereas %s %s" #~ msgstr "Varning: %s %s samverkande, medan %s %s" #~ msgid "supports" #~ msgstr "stöder" -#~ msgid "does not support" -#~ msgstr "stöder inte" - #~ msgid "does not" #~ msgstr "inte gör det" @@ -2593,14 +2915,17 @@ msgstr "\nKarakteristik 0x%x\n" #~ msgstr "%s(%s+0x%lx): kan inte hitta stubbstarten %s" #~ msgid "%s(%s+0x%lx): cannot relocate %s, recompile with -ffunction-sections" -#~ msgstr "%s(%s+0x%lx): kan inte omlokalisera %s, kompilera om med -ffunction-sections" - -#~ msgid "Symbol `%s' has differing types: previously %s, REGISTER in %s" -#~ msgstr "Symbolen \"%s\" har olika typer: tidigare %s, REGISTER i %s" - -#~ msgid "creating section symbol, name = %s, value = 0x%.8lx, index = %d, section = 0x%.8lx\n" -#~ msgstr "skapar sektionssymbol, namn = %s, värde = 0x%.8lx, index = %d, sektion = 0x%.8lx\n" - -#~ # Hmm +#~ msgstr "" +#~ "%s(%s+0x%lx): kan inte omlokalisera %s, kompilera om med -ffunction-" +#~ "sections" + +#~ msgid "" +#~ "creating section symbol, name = %s, value = 0x%.8lx, index = %d, section " +#~ "= 0x%.8lx\n" +#~ msgstr "" +#~ "skapar sektionssymbol, namn = %s, värde = 0x%.8lx, index = %d, sektion = " +#~ "0x%.8lx\n" + +# Hmm #~ msgid " whereas segment starts at 0x%x" #~ msgstr " där segmentet börjar vid 0x%x" diff --git a/bfd/po/tr.po b/bfd/po/tr.po index dc618839d..055a38d0d 100644 --- a/bfd/po/tr.po +++ b/bfd/po/tr.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: bfd 2.11\n" -"POT-Creation-Date: 2001-01-11 11:54-0800\n" +"POT-Creation-Date: 2002-01-31 17:07+0000\n" "PO-Revision-Date: 2001-11-30 11:14EET\n" "Last-Translator: Deniz Akkus Kanca \n" "Language-Team: Turkish \n" @@ -14,2096 +14,2810 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 0.9.5\n" -#: aout-adobe.c:189 +#: aout-adobe.c:196 #, c-format msgid "%s: Unknown section type in a.out.adobe file: %x\n" msgstr "%s: a.out.adobe dosyasýnda bilinmeyen bölüm türü: %x\n" -#: aout-cris.c:205 +#: aout-cris.c:208 #, c-format msgid "%s: Invalid relocation type exported: %d" msgstr "%s: Geçersiz yer deðiþtirme türü ihraç edilmiþ: %d" -#: aout-cris.c:249 +#: aout-cris.c:252 #, c-format msgid "%s: Invalid relocation type imported: %d" msgstr "%s: Geçersiz yer deðiþtirme türü ithal edilmiþ: %d" -#: aout-cris.c:260 +#: aout-cris.c:263 #, c-format msgid "%s: Bad relocation record imported: %d" msgstr "%s: Geçersiz yer deðiþtirme kaydý ithal edilmiþ: %d" -#: aoutx.h:1259 aoutx.h:1673 +#: aoutx.h:1282 aoutx.h:1699 #, c-format msgid "%s: can not represent section `%s' in a.out object file format" msgstr "%s: `%s' bölümü a.out nesne dosya biçeminde gösterilemez" -#: aoutx.h:1643 +#: aoutx.h:1669 #, c-format -msgid "%s: can not represent section for symbol `%s' in a.out object file format" +msgid "" +"%s: can not represent section for symbol `%s' in a.out object file format" msgstr "%s: `%s' sembol bölümü a.out nesne dosyasýnda gösterilemez" -#: aoutx.h:1645 +#: aoutx.h:1671 msgid "*unknown*" msgstr "*bilinmeyen*" -#: aoutx.h:3684 +#: aoutx.h:3735 #, c-format msgid "%s: relocateable link from %s to %s not supported" msgstr "%s: %s'dan %s'ya yeri deðiþtirilebilen bað desteklenmiyor" -#: archive.c:1820 +#: archive.c:1826 msgid "Warning: writing archive was slow: rewriting timestamp\n" msgstr "Uyarý: arþiv yazma iþlemi yavaþ: zaman damgasý yeniden yazýlýyor\n" -#: archive.c:2086 +#: archive.c:2093 msgid "Reading archive file mod timestamp" msgstr "Arþiv dosyasý deðiþim zaman damgasý okunuyor" #. FIXME: bfd can't call perror. -#: archive.c:2113 +#: archive.c:2120 msgid "Writing updated armap timestamp" msgstr "Güncellenmiþ armap zaman damgasý yazýlýyor" -#: bfd.c:273 +#: bfd.c:274 msgid "No error" msgstr "Hata yok" -#: bfd.c:274 +#: bfd.c:275 msgid "System call error" msgstr "Sistem çaðrý hatasý" -#: bfd.c:275 +#: bfd.c:276 msgid "Invalid bfd target" msgstr "Geçersiz bfd hedefi" -#: bfd.c:276 +#: bfd.c:277 msgid "File in wrong format" msgstr "Dosya yanlýþ biçemde" -#: bfd.c:277 +#: bfd.c:278 +#, fuzzy +msgid "Archive object file in wrong format" +msgstr "Dosya yanlýþ biçemde" + +#: bfd.c:279 msgid "Invalid operation" msgstr "Geçersiz iþlem" -#: bfd.c:278 +#: bfd.c:280 msgid "Memory exhausted" msgstr "Bellek tükendi" -#: bfd.c:279 +#: bfd.c:281 msgid "No symbols" msgstr "Sembol yok" -#: bfd.c:280 +#: bfd.c:282 msgid "Archive has no index; run ranlib to add one" msgstr "Arþivin indeksi yok; ranlib çalýþtýrarak indeks ekleyin" -#: bfd.c:281 +#: bfd.c:283 msgid "No more archived files" msgstr "Baþka arþivlenmiþ dosya yok" -#: bfd.c:282 +#: bfd.c:284 msgid "Malformed archive" msgstr "Bozuk arþiv" -#: bfd.c:283 +#: bfd.c:285 msgid "File format not recognized" msgstr "Dosya biçemi tanýnmýyor" -#: bfd.c:284 +#: bfd.c:286 msgid "File format is ambiguous" msgstr "Dosya biçemi belirsiz" -#: bfd.c:285 +#: bfd.c:287 msgid "Section has no contents" msgstr "Bölümde içerik yok" -#: bfd.c:286 +#: bfd.c:288 msgid "Nonrepresentable section on output" msgstr "Çýktýda gösterilemeyen bölüm" -#: bfd.c:287 +#: bfd.c:289 msgid "Symbol needs debug section which does not exist" msgstr "Sembol, olmayan hata ayýklama bölümünü istiyor" -#: bfd.c:288 +#: bfd.c:290 msgid "Bad value" msgstr "Geçersiz deðer" -#: bfd.c:289 +#: bfd.c:291 msgid "File truncated" msgstr "Dosya budandý" -#: bfd.c:290 +#: bfd.c:292 msgid "File too big" msgstr "Dosya fazla büyük" -#: bfd.c:291 +#: bfd.c:293 msgid "#" msgstr "#" -#: bfd.c:675 -#, c-format -msgid "bfd assertion fail %s:%d" +#: bfd.c:700 +#, fuzzy, c-format +msgid "BFD %s assertion fail %s:%d" msgstr "bfd sav baþarýsýzlýðý %s: %d" -#: bfd.c:693 -#, c-format -msgid "BFD internal error, aborting at %s line %d in %s\n" +#: bfd.c:719 +#, fuzzy, c-format +msgid "BFD %s internal error, aborting at %s line %d in %s\n" msgstr "BFD iç hatasý, %s, %d satýrý, %s içerisinde iþlem durduruldu\n" -#: bfd.c:697 -#, c-format -msgid "BFD internal error, aborting at %s line %d\n" +#: bfd.c:723 +#, fuzzy, c-format +msgid "BFD %s internal error, aborting at %s line %d\n" msgstr "BFD iç hatasý, %s, %d satýrýnda iþlem durduruldu\n" -#: bfd.c:699 +#: bfd.c:725 msgid "Please report this bug.\n" msgstr "Lütfen bu hatayý bildirin.\n" -#: binary.c:303 +#: binary.c:306 #, c-format msgid "Warning: Writing section `%s' to huge (ie negative) file offset 0x%lx." -msgstr "Uyarý: `%s' bölümü çok büyük (negatif) dosya göreli konumu 0x%lx'e yazýlýyor." +msgstr "" +"Uyarý: `%s' bölümü çok büyük (negatif) dosya göreli konumu 0x%lx'e yazýlýyor." -#: coff-a29k.c:122 +#: coff-a29k.c:119 msgid "Missing IHCONST" msgstr "IHCONST yok" -#: coff-a29k.c:181 +#: coff-a29k.c:180 msgid "Missing IHIHALF" msgstr "IHIHALF yok" -#: coff-a29k.c:213 +#: coff-a29k.c:212 coff-or32.c:228 msgid "Unrecognized reloc" msgstr "Tanýnmayan yer deðiþtirme" -#: coff-a29k.c:425 +#: coff-a29k.c:408 msgid "missing IHCONST reloc" msgstr "eksik IHCONST yer deðiþtirmesi" -#: coff-a29k.c:516 +#: coff-a29k.c:498 msgid "missing IHIHALF reloc" msgstr "eksik IHIHALF yer deðiþtirmesi" -#: coff-alpha.c:880 coff-alpha.c:917 +#: coff-alpha.c:881 coff-alpha.c:918 coff-alpha.c:1989 coff-mips.c:1433 msgid "GP relative relocation used when GP not defined" msgstr "GP tanýmlanmamýþken GP göreli yer deðiþtirmesi kullanýlmýþ" -#: coff-alpha.c:1486 elf64-alpha.c:4004 +#: coff-alpha.c:1485 msgid "using multiple gp values" msgstr "birden fazla gp deðeri kullanýlýyor" -#: coff-alpha.c:1992 coff-mips.c:1434 -msgid "GP relative relocation when GP not defined" -msgstr "GP tanýmlanmamýþken GP göreli yer deðiþtirmesi" - -#: coff-arm.c:1018 elf32-arm.h:246 +#: coff-arm.c:1051 elf32-arm.h:285 #, c-format msgid "%s: unable to find THUMB glue '%s' for `%s'" msgstr "%1$s: `%3$s' için THUMB birleþtiricisi '%2$s' bulunamadý " -#: coff-arm.c:1047 elf32-arm.h:281 +#: coff-arm.c:1080 elf32-arm.h:320 #, c-format msgid "%s: unable to find ARM glue '%s' for `%s'" msgstr "%1$s: `%3$s' için ARM birleþtiricisi '%2$s' bulunamadý" -#: coff-arm.c:1335 coff-arm.c:1430 elf32-arm.h:841 elf32-arm.h:946 +#: coff-arm.c:1375 coff-arm.c:1470 elf32-arm.h:886 elf32-arm.h:990 #, c-format msgid "%s(%s): warning: interworking not enabled." msgstr "%s(%s): uyarý: beraber çalýþma kipi etkin deðil." -#: coff-arm.c:1339 elf32-arm.h:949 +#: coff-arm.c:1379 elf32-arm.h:993 #, c-format msgid " first occurrence: %s: arm call to thumb" msgstr " ilk ortaya çýkýþ: %s: thumb'a arm'dan çaðrý" -#: coff-arm.c:1434 elf32-arm.h:844 +#: coff-arm.c:1474 elf32-arm.h:889 #, c-format msgid " first occurrence: %s: thumb call to arm" msgstr " ilk ortaya çýkýþ: %s: arm'a thumb'dan çaðrý" -#: coff-arm.c:1437 +#: coff-arm.c:1477 msgid " consider relinking with --support-old-code enabled" msgstr " --support-old-code seçeneði ile yeniden baðlamayý deneyin" -#: coff-arm.c:1726 coff-tic80.c:682 cofflink.c:2991 +#: coff-arm.c:1767 coff-tic80.c:686 cofflink.c:3017 #, c-format msgid "%s: bad reloc address 0x%lx in section `%s'" msgstr "%1$s: `%3$s' bölümünde geçersiz yer deðiþtirme adresi 0x%2$lx" -#: coff-arm.c:2063 +#: coff-arm.c:2107 #, c-format msgid "%s: illegal symbol index in reloc: %d" msgstr "%s: yer deðiþtirmede geçersiz sembol indeksi: %d" -#: coff-arm.c:2191 +#: coff-arm.c:2235 #, c-format msgid "%s: ERROR: compiled for APCS-%d whereas target %s uses APCS-%d" msgstr "%s: HATA: APCS-%d için derlenmiþ fakat hedef %s APCS-%d kullanýyor" -#: coff-arm.c:2206 +#: coff-arm.c:2250 #, c-format -msgid "%s: ERROR: passes floats in float registers whereas target %s uses integer registers" -msgstr "%s: HATA: kayan sayýlarý kayan yazmaçlarda geçiriyor fakat hedef %s tamsayý yazmaç kullanýyor" +msgid "" +"%s: ERROR: passes floats in float registers whereas target %s uses integer " +"registers" +msgstr "" +"%s: HATA: kayan sayýlarý kayan yazmaçlarda geçiriyor fakat hedef %s tamsayý " +"yazmaç kullanýyor" -#: coff-arm.c:2209 +#: coff-arm.c:2253 #, c-format -msgid "%s: ERROR: passes floats in integer registers whereas target %s uses float registers" -msgstr "%s: HATA: kayan sayýlarý tamsayý yazmaçlarda geçiriyor fakat hedef %s kayan yazmaç kullanýyor" +msgid "" +"%s: ERROR: passes floats in integer registers whereas target %s uses float " +"registers" +msgstr "" +"%s: HATA: kayan sayýlarý tamsayý yazmaçlarda geçiriyor fakat hedef %s kayan " +"yazmaç kullanýyor" -#: coff-arm.c:2224 +#: coff-arm.c:2268 #, c-format -msgid "%s: ERROR: compiled as position independent code, whereas target %s is absolute position" -msgstr "%s: HATA: yerden baðýmsýz kod olarak derlendi, fakat hedef %s yere baðýmlý" +msgid "" +"%s: ERROR: compiled as position independent code, whereas target %s is " +"absolute position" +msgstr "" +"%s: HATA: yerden baðýmsýz kod olarak derlendi, fakat hedef %s yere baðýmlý" -#: coff-arm.c:2227 +#: coff-arm.c:2271 #, c-format -msgid "%s: ERROR: compiled as absolute position code, whereas target %s is position independent" -msgstr "%s: HATA: yere baðýmlý kod olarak derlendi, fakat hedef %s yerden baðýmsýz" +msgid "" +"%s: ERROR: compiled as absolute position code, whereas target %s is position " +"independent" +msgstr "" +"%s: HATA: yere baðýmlý kod olarak derlendi, fakat hedef %s yerden baðýmsýz" -#: coff-arm.c:2256 -#, c-format -msgid "Warning: input file %s supports interworking, whereas %s does not." -msgstr "Uyarý: %s girdi dosyasý beraber çalýþmayý destekliyor, fakat %s desteklemiyor." +#: coff-arm.c:2300 +#, fuzzy, c-format +msgid "Warning: %s supports interworking, whereas %s does not." +msgstr "" +"Uyarý: %s girdi dosyasý beraber çalýþmayý destekliyor, fakat %s " +"desteklemiyor." -#: coff-arm.c:2259 -#, c-format -msgid "Warning: input file %s does not support interworking, whereas %s does." -msgstr "Uyarý: %s girdi dosyasý beraber çalýþmayý desteklemiyor, fakat %s destekliyor." +#: coff-arm.c:2303 +#, fuzzy, c-format +msgid "Warning: %s does not support interworking, whereas %s does." +msgstr "" +"Uyarý: %s girdi dosyasý beraber çalýþmayý desteklemiyor, fakat %s " +"destekliyor." -#: coff-arm.c:2286 +#: coff-arm.c:2330 #, c-format msgid "private flags = %x:" msgstr "özel bayraklar = %x:" -#: coff-arm.c:2294 elf32-arm.h:2210 +#: coff-arm.c:2338 elf32-arm.h:2408 msgid " [floats passed in float registers]" msgstr " [kayan sayýlar kayan yazmaçlarda geçirildi]" -#: coff-arm.c:2296 +#: coff-arm.c:2340 msgid " [floats passed in integer registers]" msgstr " [kayan sayýlar tamsayý yazmaçlarda geçirildi]" -#: coff-arm.c:2299 elf32-arm.h:2213 +#: coff-arm.c:2343 elf32-arm.h:2411 msgid " [position independent]" msgstr " [yerden baðýmsýz]" -#: coff-arm.c:2301 +#: coff-arm.c:2345 msgid " [absolute position]" msgstr " [yere baðýmlý]" -#: coff-arm.c:2305 +#: coff-arm.c:2349 msgid " [interworking flag not initialised]" msgstr " [beraber çalýþma bayraðýna öndeðer atanmamýþ]" -#: coff-arm.c:2307 +#: coff-arm.c:2351 msgid " [interworking supported]" msgstr " [beraber çalýþma destekleniyor]" -#: coff-arm.c:2309 +#: coff-arm.c:2353 msgid " [interworking not supported]" msgstr " [beraber çalýþma desteklenmiyor]" -#: coff-arm.c:2357 -#, c-format -msgid "Warning: Not setting interworking flag of %s, since it has already been specified as non-interworking" -msgstr "Uyarý: %s beraber çalýþma bayraðý atanmadý, çünkü beraber çalýþma olmayacaðý önceden belirtilmiþ" +#: coff-arm.c:2401 elf32-arm.h:2114 +#, fuzzy, c-format +msgid "" +"Warning: Not setting interworking flag of %s since it has already been " +"specified as non-interworking" +msgstr "" +"Uyarý: %s beraber çalýþma bayraðý atanmadý, çünkü beraber çalýþma olmayacaðý " +"önceden belirtilmiþ" -#: coff-arm.c:2361 +#: coff-arm.c:2405 elf32-arm.h:2118 #, c-format msgid "Warning: Clearing the interworking flag of %s due to outside request" msgstr "Uyarý: %s beraber çalýþma bayraðý dýþ istek üzerine temizlendi" -#: coffcode.h:2136 +#: coff-i960.c:136 coff-i960.c:485 +msgid "uncertain calling convention for non-COFF symbol" +msgstr "COFF olmayan sembol için belirsiz çaðrý davranýþý" + +#: coff-m68k.c:481 coff-mips.c:2431 elf32-m68k.c:2212 elf32-mips.c:9954 +msgid "unsupported reloc type" +msgstr "desteklenmeyen yer deðiþtirme türü" + +#: coff-mips.c:875 elf32-mips.c:1997 elf64-mips.c:1739 +msgid "GP relative relocation when _gp not defined" +msgstr "_gp tanýmsýz iken GP göreli yer deðiþtirmesi" + +#. No other sections should appear in -membedded-pic +#. code. +#: coff-mips.c:2468 +msgid "reloc against unsupported section" +msgstr "desteklenmeyen bölümde yer deðiþtirme" + +#: coff-mips.c:2476 +msgid "reloc not properly aligned" +msgstr "yer deðiþtirme doðru hizalanmamýþ" + +#: coff-rs6000.c:2710 coff64-rs6000.c:1164 +#, c-format +msgid "%s: unsupported relocation type 0x%02x" +msgstr "%s: desteklenmeyen yükleyici yerdeðiþimi 0x%02x" + +#: coff-rs6000.c:2756 coff64-rs6000.c:1210 +#, c-format +msgid "%s: TOC reloc at 0x%x to symbol `%s' with no TOC entry" +msgstr "%s: 0x%x'da TOC girdisi olmayan `%s' sembolüne TOC yerdeðiþimi" + +#: coff-rs6000.c:3006 coff64-rs6000.c:2060 +#, c-format +msgid "%s: symbol `%s' has unrecognized smclas %d" +msgstr "%s: `%s' sembolünde bilinmeyen %d var" + +#: coff-tic54x.c:279 coff-tic80.c:449 +#, c-format +msgid "Unrecognized reloc type 0x%x" +msgstr "Bilinmeyen yer deðiþtirme türü 0x%x" + +#: coff-tic54x.c:390 coffcode.h:4868 +#, c-format +msgid "%s: warning: illegal symbol index %ld in relocs" +msgstr "%s: uyarý: yer deðiþtirmelerde geçersiz sembol indeksi %ld" + +#: coff-w65.c:363 +#, c-format +msgid "ignoring reloc %s\n" +msgstr "yer deðiþtirme %s yoksayýldý\n" + +#: coffcode.h:1081 +#, fuzzy, c-format +msgid "%s (%s): Section flag %s (0x%x) ignored" +msgstr "bfd_set_section_flags (%s, %x) baþarýsýz" + +#: coffcode.h:2132 #, c-format msgid "Unrecognized TI COFF target id '0x%x'" msgstr "Tanýnmayan TI COFF hedef kimliði '0x%x'" -#: coffcode.h:4194 +#: coffcode.h:4257 #, c-format msgid "%s: warning: illegal symbol index %ld in line numbers" msgstr "%s: uyarý: satýr numaralarýnda geçersiz sembol indeksi %ld" -#: coffcode.h:4208 +#: coffcode.h:4271 #, c-format msgid "%s: warning: duplicate line number information for `%s'" msgstr "%s: uyarý: `%s' için tekrarlanmýþ satýr numarasý bilgisi" -#: coffcode.h:4568 +#: coffcode.h:4630 #, c-format msgid "%s: Unrecognized storage class %d for %s symbol `%s'" msgstr "%1$s: %3$s sembolü `%4$s' için bilinmeyen saklama sýnýfý %2$d" -#: coffcode.h:4699 +#: coffcode.h:4761 #, c-format msgid "warning: %s: local symbol `%s' has no section" msgstr "uyarý: %s: `%s' yerel sembolünün bölümü yok" -#: coff-tic54x.c:376 coffcode.h:4810 -#, c-format -msgid "%s: warning: illegal symbol index %ld in relocs" -msgstr "%s: uyarý: yer deðiþtirmelerde geçersiz sembol indeksi %ld" - -#: coffcode.h:4848 +#: coffcode.h:4906 #, c-format msgid "%s: illegal relocation type %d at address 0x%lx" msgstr "%1$s: 0x%3$lx adresinde geçersiz yer deðiþtirme türü %2$d" -#: coffgen.c:1631 +#: coffgen.c:1661 #, c-format msgid "%s: bad string table size %lu" msgstr "%s: geçersiz dizge tablo boyu %lu" -#: coffgen.c:2093 -#, c-format -msgid "AUX tagndx %ld ttlsiz 0x%lx lnnos %ld next %ld" -msgstr "AUX tagndx %ld ttlsiz 0x%lx lnnos %ld sonraki %ld" - -#: coff-i960.c:136 coff-i960.c:485 -msgid "uncertain calling convention for non-COFF symbol" -msgstr "COFF olmayan sembol için belirsiz çaðrý davranýþý" - -#: cofflink.c:526 elflink.h:1648 +#: cofflink.c:536 elflink.h:1967 #, c-format msgid "Warning: type of symbol `%s' changed from %d to %d in %s" -msgstr "Uyarý: %4$s içerisinde `%1$s' sembolünün türü %2$d'den %3$d'e deðiþtirildi" +msgstr "" +"Uyarý: %4$s içerisinde `%1$s' sembolünün türü %2$d'den %3$d'e deðiþtirildi" -#: cofflink.c:2289 +#: cofflink.c:2317 #, c-format msgid "%s: relocs in section `%s', but it has no contents" msgstr "%s: `%s' bölümünde yer deðiþtirmeler mevcut, fakat içi boþ" -#: cofflink.c:2628 coffswap.h:894 +#: cofflink.c:2653 coffswap.h:889 #, c-format msgid "%s: %s: reloc overflow: 0x%lx > 0xffff" msgstr "%s: %s: yer deðiþtirme taþmasý: 0x%lx > 0xffff" -#: cofflink.c:2637 coffswap.h:880 +#: cofflink.c:2662 coffswap.h:876 #, c-format msgid "%s: warning: %s: line number overflow: 0x%lx > 0xffff" msgstr "%s: uyarý: %s: satýr numarasý taþmasý: 0x%lx > 0xffff" -#: coff-m68k.c:475 coff-mips.c:2432 elf32-m68k.c:2265 -msgid "unsupported reloc type" -msgstr "desteklenmeyen yer deðiþtirme türü" - -#: coff-mips.c:875 elf32-mips.c:1417 -msgid "GP relative relocation when _gp not defined" -msgstr "_gp tanýmsýz iken GP göreli yer deðiþtirmesi" - -#. No other sections should appear in -membedded-pic -#. code. -#: coff-mips.c:2469 -msgid "reloc against unsupported section" -msgstr "desteklenmeyen bölümde yer deðiþtirme" - -#: coff-mips.c:2477 -msgid "reloc not properly aligned" -msgstr "yer deðiþtirme doðru hizalanmamýþ" - -#: coff-tic54x.c:263 coff-tic80.c:445 -#, c-format -msgid "Unrecognized reloc type 0x%x" -msgstr "Bilinmeyen yer deðiþtirme türü 0x%x" +#: dwarf2.c:381 +#, fuzzy +msgid "Dwarf Error: Can't find .debug_str section." +msgstr "Dwarf Hatasý: .debug_abbrev bölümü bulunamadý." -#: coff-w65.c:369 -#, c-format -msgid "ignoring reloc %s\n" -msgstr "yer deðiþtirme %s yoksayýldý\n" +#: dwarf2.c:398 +#, fuzzy, c-format +msgid "" +"Dwarf Error: DW_FORM_strp offset (%u) greater than or equal to .debug_str " +"size (%u)." +msgstr "" +"Dwarf Hatasý: Kýsaltma göreli konumu (%u) kýsaltma boyutundan (%u) daha " +"büyük." -#: dwarf2.c:423 +#: dwarf2.c:542 msgid "Dwarf Error: Can't find .debug_abbrev section." msgstr "Dwarf Hatasý: .debug_abbrev bölümü bulunamadý." -#: dwarf2.c:441 -#, c-format -msgid "Dwarf Error: Abbrev offset (%u) bigger than abbrev size (%u)." -msgstr "Dwarf Hatasý: Kýsaltma göreli konumu (%u) kýsaltma boyutundan (%u) daha büyük." +#: dwarf2.c:559 +#, fuzzy, c-format +msgid "" +"Dwarf Error: Abbrev offset (%u) greater than or equal to .debug_abbrev size " +"(%u)." +msgstr "" +"Dwarf Hatasý: Kýsaltma göreli konumu (%u) kýsaltma boyutundan (%u) daha " +"büyük." -#: dwarf2.c:624 +#: dwarf2.c:756 #, c-format msgid "Dwarf Error: Invalid or unhandled FORM value: %d." msgstr "Dwarf Hatasý: Geçersiz veya desteklenmeyen FORM deðeri: %d." -#: dwarf2.c:697 +#: dwarf2.c:843 msgid "Dwarf Error: mangled line number section (bad file number)." -msgstr "Dwarf Hatasý: bozulmuþ satýr numarasý bölümü (geçersiz dosya numarasý)." +msgstr "" +"Dwarf Hatasý: bozulmuþ satýr numarasý bölümü (geçersiz dosya numarasý)." -#: dwarf2.c:782 +#: dwarf2.c:929 msgid "Dwarf Error: Can't find .debug_line section." msgstr "Dwarf Hatasý: .debug_line bölümü bulunamadý." -#: dwarf2.c:806 -#, c-format -msgid "Dwarf Error: Line offset (%u) bigger than line size (%u)." -msgstr "Dwarf Hatasý: Satýr göreli konumu (%u) satýr boyutundan (%u) daha büyük." +#: dwarf2.c:952 +#, fuzzy, c-format +msgid "" +"Dwarf Error: Line offset (%u) greater than or equal to .debug_line size (%u)." +msgstr "" +"Dwarf Hatasý: Satýr göreli konumu (%u) satýr boyutundan (%u) daha büyük." -#: dwarf2.c:973 +#: dwarf2.c:1143 msgid "Dwarf Error: mangled line number section." msgstr "Dwarf Hatasý: bozuk satýr numarasý bölümü." -#: dwarf2.c:1152 dwarf2.c:1306 +#: dwarf2.c:1318 dwarf2.c:1529 #, c-format msgid "Dwarf Error: Could not find abbrev number %d." msgstr "Dwarf Hatasý: Kýsaltma numarasý %d bulunamadý." -#: dwarf2.c:1267 +#: dwarf2.c:1490 #, c-format -msgid "Dwarf Error: found dwarf version '%hu', this reader only handles version 2 information." -msgstr "Dwarf Hatasý: dwarf sürümü '%hu' bulundu, bu okuyucu yalnýzca sürüm 2 bilgisini anlayabiliyor." +msgid "" +"Dwarf Error: found dwarf version '%hu', this reader only handles version 2 " +"information." +msgstr "" +"Dwarf Hatasý: dwarf sürümü '%hu' bulundu, bu okuyucu yalnýzca sürüm 2 " +"bilgisini anlayabiliyor." -#: dwarf2.c:1274 +#: dwarf2.c:1497 #, c-format -msgid "Dwarf Error: found address size '%u', this reader can not handle sizes greater than '%u'." -msgstr "Dwarf Hatasý: adres boyu '%u' bulundu, bu okuyucu '%u'dan daha büyük boylarý okuyamýyor." +msgid "" +"Dwarf Error: found address size '%u', this reader can not handle sizes " +"greater than '%u'." +msgstr "" +"Dwarf Hatasý: adres boyu '%u' bulundu, bu okuyucu '%u'dan daha büyük boylarý " +"okuyamýyor." -#: dwarf2.c:1297 +#: dwarf2.c:1520 #, c-format msgid "Dwarf Error: Bad abbrev number: %d." msgstr "Dwarf Hatasý: Geçersiz kýsaltma numarasý: %d." -#: ecoff.c:1323 +#: ecoff.c:1328 #, c-format msgid "Unknown basic type %d" msgstr "Bilinmeyen temel tür %d" -#: ecoff.c:1592 +#: ecoff.c:1597 #, c-format -msgid "\n End+1 symbol: %ld" -msgstr "\n Son+1 sembolü: %ld" - -#: ecoff.c:1599 ecoff.c:1602 -#, c-format -msgid "\n First symbol: %ld" -msgstr "\n Ýlk sembol: %ld" +msgid "" +"\n" +" End+1 symbol: %ld" +msgstr "" +"\n" +" Son+1 sembolü: %ld" -#: ecoff.c:1614 +#: ecoff.c:1604 ecoff.c:1607 #, c-format -msgid "\n End+1 symbol: %-7ld Type: %s" -msgstr "\n Son+1 sembolü: %-7ld Tür: %s" +msgid "" +"\n" +" First symbol: %ld" +msgstr "" +"\n" +" Ýlk sembol: %ld" -#: ecoff.c:1621 +#: ecoff.c:1619 #, c-format -msgid "\n Local symbol: %ld" -msgstr "\n Yerel sembol: %ld" +msgid "" +"\n" +" End+1 symbol: %-7ld Type: %s" +msgstr "" +"\n" +" Son+1 sembolü: %-7ld Tür: %s" -#: ecoff.c:1629 +#: ecoff.c:1626 #, c-format -msgid "\n struct; End+1 symbol: %ld" -msgstr "\n yapý; Son+1 sembolü: %ld" +msgid "" +"\n" +" Local symbol: %ld" +msgstr "" +"\n" +" Yerel sembol: %ld" #: ecoff.c:1634 #, c-format -msgid "\n union; End+1 symbol: %ld" -msgstr "\n birleþim; Son+1 sembolü: %ld" +msgid "" +"\n" +" struct; End+1 symbol: %ld" +msgstr "" +"\n" +" yapý; Son+1 sembolü: %ld" #: ecoff.c:1639 #, c-format -msgid "\n enum; End+1 symbol: %ld" -msgstr "\n enum; Son+1 sembolü: %ld" - -#: ecoff.c:1645 -#, c-format -msgid "\n Type: %s" -msgstr "\n Tür: %s" +msgid "" +"\n" +" union; End+1 symbol: %ld" +msgstr "" +"\n" +" birleþim; Son+1 sembolü: %ld" -#: elf32-arm.h:1179 +#: ecoff.c:1644 #, c-format -msgid "%s: Warning: Arm BLX instruction targets Arm function '%s'." -msgstr "%s: Uyarý: Arm BLX iþlemi Arm iþlevi '%s' hedefliyor." +msgid "" +"\n" +" enum; End+1 symbol: %ld" +msgstr "" +"\n" +" enum; Son+1 sembolü: %ld" -#: elf32-arm.h:1375 +#: ecoff.c:1650 #, c-format -msgid "%s: Warning: Thumb BLX instruction targets thumb function '%s'." -msgstr "%s: Uyarý: Thumb BLX iþlemi thumb iþlevi '%s'ý hedefliyor." +msgid "" +"\n" +" Type: %s" +msgstr "" +"\n" +" Tür: %s" -#: elf-hppa.h:1369 elf-hppa.h:1402 elf32-arm.h:1853 elf32-i386.c:1428 -#: elf32-ppc.c:3096 elf32-sh.c:2997 elf64-x86-64.c:271 +#: elf-hppa.h:1366 elf-hppa.h:1399 elf32-ppc.c:3062 elf32-sh.c:3201 +#: elf64-x86-64.c:1275 #, c-format -msgid "%s: warning: unresolvable relocation against symbol `%s' from %s section" -msgstr "%1$s: uyarý: %3$s bölümünden `%2$s' sembolüne çözümlenemeyen yer deðiþimi" +msgid "" +"%s: warning: unresolvable relocation against symbol `%s' from %s section" +msgstr "" +"%1$s: uyarý: %3$s bölümünden `%2$s' sembolüne çözümlenemeyen yer deðiþimi" -#: elf-m10200.c:455 elf-m10300.c:669 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-m32r.c:1265 elf32-v850.c:1672 +#: elf-m10200.c:463 elf-m10300.c:673 elf32-arm.h:2074 elf32-avr.c:835 +#: elf32-cris.c:1406 elf32-d10v.c:482 elf32-fr30.c:653 elf32-h8300.c:547 +#: elf32-i860.c:1048 elf32-m32r.c:1280 elf32-openrisc.c:455 elf32-v850.c:1691 +#: elf32-xstormy16.c:976 elf64-mmix.c:1164 msgid "internal error: out of range error" msgstr "iç hata: kapsam dýþý hatasý" -#: elf-m10200.c:459 elf-m10300.c:673 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-m32r.c:1269 elf32-v850.c:1676 +#: elf-m10200.c:467 elf-m10300.c:677 elf32-arm.h:2078 elf32-avr.c:839 +#: elf32-cris.c:1410 elf32-d10v.c:486 elf32-fr30.c:657 elf32-h8300.c:551 +#: elf32-i860.c:1052 elf32-m32r.c:1284 elf32-mips.c:7587 elf32-openrisc.c:459 +#: elf32-v850.c:1695 elf32-xstormy16.c:980 elf64-mips.c:4464 elf64-mmix.c:1168 msgid "internal error: unsupported relocation error" msgstr "iç hata: desteklenmeyen yer deðiþim hatasý" -#: elf-m10200.c:463 elf-m10300.c:677 elf32-arm.h:1935 elf32-d10v.c:486 -#: elf32-m32r.c:1273 +#: elf-m10200.c:471 elf-m10300.c:681 elf32-arm.h:2082 elf32-d10v.c:490 +#: elf32-h8300.c:555 elf32-m32r.c:1288 msgid "internal error: dangerous error" msgstr "iç hata: ölümcül hata" -#: elf-m10200.c:467 elf-m10300.c:681 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-m32r.c:1277 elf32-v850.c:1696 +#: elf-m10200.c:475 elf-m10300.c:685 elf32-arm.h:2086 elf32-avr.c:847 +#: elf32-cris.c:1418 elf32-d10v.c:494 elf32-fr30.c:665 elf32-h8300.c:559 +#: elf32-i860.c:1060 elf32-m32r.c:1292 elf32-openrisc.c:467 elf32-v850.c:1715 +#: elf32-xstormy16.c:988 elf64-mmix.c:1176 msgid "internal error: unknown error" msgstr "iç hata: bilinmeyen hata" -#: elf32-arm.h:1967 +#: elf.c:343 +#, c-format +msgid "%s: invalid string offset %u >= %lu for section `%s'" +msgstr "%1$s: `%4$s' bölümünde geçersiz dizge göreli konumu %2$u >= %3$lu" + +#: elf.c:448 +#, c-format +msgid "%s: invalid SHT_GROUP entry" +msgstr "" + +#: elf.c:529 +#, fuzzy, c-format +msgid "%s: no group info for section %s" +msgstr "%s: %s salt-okunur bölümünde yükleyici yerdeðiþimi" + +#: elf.c:840 +msgid "" +"\n" +"Program Header:\n" +msgstr "" +"\n" +"Yazýlým Baþlýðý:\n" + +#: elf.c:889 +msgid "" +"\n" +"Dynamic Section:\n" +msgstr "" +"\n" +"Dinamik Bölüm:\n" + +#: elf.c:1018 +msgid "" +"\n" +"Version definitions:\n" +msgstr "" +"\n" +"Sürüm tanýmlarý:\n" + +#: elf.c:1041 +msgid "" +"\n" +"Version References:\n" +msgstr "" +"\n" +"Sürüm Referanslarý:\n" + +#: elf.c:1046 #, c-format -msgid "Warning: Not setting interwork flag of %s since it has already been specified as non-interworking" -msgstr "Uyarý: beraber çalýþmaz diye önceden belirtilmiþ olduðundan %s'nin beraber çalýþma bayraðý atanmadý" +msgid " required from %s:\n" +msgstr " %s'den isteniyor:\n" -#: elf32-arm.h:1971 +#: elf.c:1682 #, c-format -msgid "Warning: Clearing the interwork flag of %s due to outside request" -msgstr "Uyarý: Dýþ isteðe uyularak %s'nin beraber çalýþma bayraðý temizlendi" +msgid "%s: invalid link %lu for reloc section %s (index %u)" +msgstr "%1$s: yerdeðiþim bölümü %3$s (indeks %4$u) için geçersiz bað %2$lu" -#: elf32-arm.h:2019 +#: elf.c:3296 #, c-format -msgid "Warning: Clearing the interwork flag in %s because non-interworking code in %s has been linked with it" -msgstr "Uyarý: %2$s'deki beraber çalýþmaz kod ona baðlandýðý için %1$s'nin beraber çalýþma bayraðý temizlendi" +msgid "%s: Not enough room for program headers (allocated %u, need %u)" +msgstr "%s: Yazýlým baþlýklarý için yeterli yer yok (%u ayrýldý, %u gerekli)" -#: elf32-arm.h:2113 +#: elf.c:3400 #, c-format -msgid "Error: %s compiled for EABI version %d, whereas %s is compiled for version %d" -msgstr "Hata: %s EABI sürüm %d için derlenmiþ, fakat %s %d sürümü için derlenmiþ" +msgid "%s: Not enough room for program headers, try linking with -N" +msgstr "%s: yazýlým baþlýklarý için gerekli yer yok, -N ile baðlamayý deneyin" + +#: elf.c:3525 +#, fuzzy, c-format +msgid "" +"Error: First section in segment (%s) starts at 0x%x whereas the segment " +"starts at 0x%x" +msgstr "Hata: Parçadaki (%s) ilk bölüm 0x%x'de baþlýyor" -#: elf32-arm.h:2127 +#: elf.c:3811 #, c-format -msgid "Error: %s compiled for APCS-%d, whereas %s is compiled for APCS-%d" -msgstr "Hata: %s APCS-%d için derlenmiþ, fakat %s APCS-%d için derlenmiþ" +msgid "%s: warning: allocated section `%s' not in segment" +msgstr "%s: uyarý: ayrýlmýþ `%s' bölümü parça içinde deðil" + +#: elf.c:4142 +#, c-format +msgid "%s: symbol `%s' required but not present" +msgstr "%s: `%s' sembolü gerekli fakat mevcut deðil" -#: elf32-arm.h:2138 +#: elf.c:4395 #, c-format -msgid "Error: %s passes floats in %s registers, whereas %s passes them in %s registers" -msgstr "Hata: %s kayan sayýlarý %s yazmaçlarýnda geçiriyor, fakat %s %s yazmaçlarýnda geçiriyor" +msgid "%s: warning: Empty loadable segment detected\n" +msgstr "%s: uyarý: Boþ yüklenebilir parça bulundu\n" -#: elf32-arm.h:2141 elf32-arm.h:2143 -msgid "float" -msgstr "kayan" +#: elf.c:5808 +#, c-format +msgid "%s: unsupported relocation type %s" +msgstr "%s: desteklenmeyen yerdeðiþim türü %s" -#: elf32-arm.h:2141 elf32-arm.h:2143 -msgid "integer" -msgstr "tamsayý" +#: elf32-arm.h:1224 +#, c-format +msgid "%s: Warning: Arm BLX instruction targets Arm function '%s'." +msgstr "%s: Uyarý: Arm BLX iþlemi Arm iþlevi '%s' hedefliyor." -#: elf32-arm.h:2150 +#: elf32-arm.h:1420 #, c-format -msgid "Error: %s uses %s floating point, whereas %s uses %s floating point" -msgstr "Hata: %s %s kayan sayý kullanýyor, fakat %s %s kayan sayý kullanýyor" +msgid "%s: Warning: Thumb BLX instruction targets thumb function '%s'." +msgstr "%s: Uyarý: Thumb BLX iþlemi thumb iþlevi '%s'ý hedefliyor." + +#: elf32-arm.h:1904 elf32-i386.c:1778 elf32-sh.c:3133 +#, c-format +msgid "%s(%s+0x%lx): %s relocation against SEC_MERGE section" +msgstr "" -#: elf32-arm.h:2153 elf32-arm.h:2155 -msgid "soft" -msgstr "soft" +#: elf32-arm.h:1998 +#, fuzzy, c-format +msgid "" +"%s: warning: unresolvable relocation %d against symbol `%s' from %s section" +msgstr "" +"%1$s: uyarý: %3$s bölümünden `%2$s' sembolüne çözümlenemeyen yer deðiþimi" -#: elf32-arm.h:2153 elf32-arm.h:2155 -msgid "hard" -msgstr "hard" +#: elf32-arm.h:2166 +#, fuzzy, c-format +msgid "" +"Warning: Clearing the interworking flag of %s because non-interworking code " +"in %s has been linked with it" +msgstr "" +"Uyarý: %2$s'deki beraber çalýþmaz kod ona baðlandýðý için %1$s'nin beraber " +"çalýþma bayraðý temizlendi" -#: elf32-arm.h:2162 +#: elf32-arm.h:2261 #, c-format -msgid "Warning: %s %s interworking, whereas %s %s" -msgstr "Uyarý: %s %s beraber çalýþýr, fakat %s %s" +msgid "" +"Error: %s compiled for EABI version %d, whereas %s is compiled for version %d" +msgstr "" +"Hata: %s EABI sürüm %d için derlenmiþ, fakat %s %d sürümü için derlenmiþ" -#: elf32-arm.h:2165 -msgid "supports" -msgstr "destekler" +#: elf32-arm.h:2275 +#, c-format +msgid "Error: %s compiled for APCS-%d, whereas %s is compiled for APCS-%d" +msgstr "Hata: %s APCS-%d için derlenmiþ, fakat %s APCS-%d için derlenmiþ" -#: elf32-arm.h:2165 -msgid "does not support" -msgstr "desteklemez" +#: elf32-arm.h:2287 +#, fuzzy, c-format +msgid "" +"Error: %s passes floats in FP registers, whereas %s passes them in integer " +"registers" +msgstr "" +"Hata: %s kayan sayýlarý %s yazmaçlarýnda geçiriyor, fakat %s %s " +"yazmaçlarýnda geçiriyor" -#: elf32-arm.h:2167 -msgid "does not" -msgstr "yapmaz" +#: elf32-arm.h:2292 +#, fuzzy, c-format +msgid "" +"Error: %s passes floats in integer registers, whereas %s passes them in FP " +"registers" +msgstr "" +"Hata: %s kayan sayýlarý %s yazmaçlarýnda geçiriyor, fakat %s %s " +"yazmaçlarýnda geçiriyor" + +#: elf32-arm.h:2303 +#, fuzzy, c-format +msgid "Error: %s uses VFP instructions, whereas %s uses FPA instructions" +msgstr "Hata: %s %s kayan sayý kullanýyor, fakat %s %s kayan sayý kullanýyor" + +#: elf32-arm.h:2308 +#, fuzzy, c-format +msgid "Error: %s uses FPA instructions, whereas %s uses VFP instructions" +msgstr "Hata: %s %s kayan sayý kullanýyor, fakat %s %s kayan sayý kullanýyor" + +#: elf32-arm.h:2328 +#, fuzzy, c-format +msgid "Error: %s uses software FP, whereas %s uses hardware FP" +msgstr "Hata: %s %s kayan sayý kullanýyor, fakat %s %s kayan sayý kullanýyor" -#: elf32-arm.h:2167 -msgid "does" -msgstr "yapar" +#: elf32-arm.h:2333 +#, fuzzy, c-format +msgid "Error: %s uses hardware FP, whereas %s uses software FP" +msgstr "Hata: %s %s kayan sayý kullanýyor, fakat %s %s kayan sayý kullanýyor" + +#: elf32-arm.h:2348 +#, fuzzy, c-format +msgid "Warning: %s supports interworking, whereas %s does not" +msgstr "" +"Uyarý: %s girdi dosyasý beraber çalýþmayý destekliyor, fakat %s " +"desteklemiyor." + +#: elf32-arm.h:2355 +#, fuzzy, c-format +msgid "Warning: %s does not support interworking, whereas %s does" +msgstr "" +"Uyarý: %s girdi dosyasý beraber çalýþmayý desteklemiyor, fakat %s " +"destekliyor." #. Ignore init flag - it may not be set, despite the flags field #. containing valid data. -#: elf32-arm.h:2193 elf32-cris.c:615 elf32-m68k.c:430 elf32-mips.c:2695 +#: elf32-arm.h:2386 elf32-cris.c:2991 elf32-m68k.c:410 elf32-mips.c:3242 #, c-format msgid "private flags = %lx:" msgstr "özel bayraklar = %lx:" -#: elf32-arm.h:2202 +#: elf32-arm.h:2395 msgid " [interworking enabled]" msgstr " [beraber çalýþma etkinleþtirilmiþ]" -#: elf32-arm.h:2205 +#: elf32-arm.h:2398 msgid " [APCS-26]" msgstr " [APCS-26]" -#: elf32-arm.h:2207 +#: elf32-arm.h:2400 msgid " [APCS-32]" msgstr " [APCS-32]" -#: elf32-arm.h:2216 -msgid " [new ABI]" -msgstr " [yeni ABI]" +#: elf32-arm.h:2403 +msgid " [VFP float format]" +msgstr "" -#: elf32-arm.h:2219 +#: elf32-arm.h:2405 +msgid " [FPA float format]" +msgstr "" + +#: elf32-arm.h:2414 +msgid " [new ABI]" +msgstr " [yeni ABI]" + +#: elf32-arm.h:2417 msgid " [old ABI]" msgstr " [eski ABI]" -#: elf32-arm.h:2222 +#: elf32-arm.h:2420 msgid " [software FP]" msgstr " [yazýlým FP]" -#: elf32-arm.h:2229 +#: elf32-arm.h:2428 msgid " [Version1 EABI]" msgstr " [Sürüm1 EABI]" -#: elf32-arm.h:2232 +#: elf32-arm.h:2431 elf32-arm.h:2442 msgid " [sorted symbol table]" msgstr " [sýralanmýþ sembol tablosu]" -#: elf32-arm.h:2234 +#: elf32-arm.h:2433 elf32-arm.h:2444 msgid " [unsorted symbol table]" msgstr " [sýralanmamýþ sembol tablosu]" -#: elf32-arm.h:2240 +#: elf32-arm.h:2439 +#, fuzzy +msgid " [Version2 EABI]" +msgstr " [Sürüm1 EABI]" + +#: elf32-arm.h:2447 +msgid " [dynamic symbols use segment index]" +msgstr "" + +#: elf32-arm.h:2450 +msgid " [mapping symbols precede others]" +msgstr "" + +#: elf32-arm.h:2457 msgid " " msgstr " " -#: elf32-arm.h:2247 +#: elf32-arm.h:2464 msgid " [relocatable executable]" msgstr " [yer deðiþtirebilir uygulama]" -#: elf32-arm.h:2250 +#: elf32-arm.h:2467 msgid " [has entry point]" msgstr " [girdi noktasý var]" -#: elf32-arm.h:2255 +#: elf32-arm.h:2472 msgid "" msgstr "" -#: elf32-avr.c:850 elf32-cris.c:439 elf32-fr30.c:659 elf32-i860.c:1059 -#: elf32-v850.c:1680 +#: elf32-avr.c:843 elf32-cris.c:1414 elf32-fr30.c:661 elf32-i860.c:1056 +#: elf32-openrisc.c:463 elf32-v850.c:1699 elf32-xstormy16.c:984 +#: elf64-mmix.c:1172 msgid "internal error: dangerous relocation" msgstr "iç hata: tehlikeli yer deðiþim" -#: elf32-cris.c:618 +#: elf32-cris.c:949 +#, fuzzy, c-format +msgid "%s: unresolvable relocation %s against symbol `%s' from %s section" +msgstr "" +"%1$s: uyarý: %3$s bölümünden `%2$s' sembolüne çözümlenemeyen yer deðiþimi" + +#: elf32-cris.c:1012 +#, fuzzy, c-format +msgid "" +"%s: No PLT nor GOT for relocation %s against symbol `%s' from %s section" +msgstr "" +"%1$s: uyarý: %3$s bölümünden `%2$s' sembolüne çözümlenemeyen yer deðiþimi" + +#: elf32-cris.c:1015 elf32-cris.c:1142 +msgid "[whose name is lost]" +msgstr "" + +#: elf32-cris.c:1131 +#, fuzzy, c-format +msgid "" +"%s: relocation %s with non-zero addend %d against local symbol from %s " +"section" +msgstr "" +"%1$s: uyarý: %3$s bölümünden `%2$s' sembolüne çözümlenemeyen yer deðiþimi" + +#: elf32-cris.c:1138 +#, fuzzy, c-format +msgid "" +"%s: relocation %s with non-zero addend %d against symbol `%s' from %s section" +msgstr "" +"%1$s: uyarý: %3$s bölümünden `%2$s' sembolüne çözümlenemeyen yer deðiþimi" + +#: elf32-cris.c:1156 +#, fuzzy, c-format +msgid "" +"%s: relocation %s is not allowed for global symbol: `%s' from %s section" +msgstr "%s: %s yerdeðiþimi %s sembolü için henüz desteklenmiyor." + +#: elf32-cris.c:1171 +#, fuzzy, c-format +msgid "%s: relocation %s in section %s with no GOT created" +msgstr "%s: `%s' bölümünde yer deðiþtirmeler mevcut, fakat içi boþ" + +#: elf32-cris.c:1289 +#, fuzzy, c-format +msgid "%s: Internal inconsistency; no relocation section %s" +msgstr "%s için yer deðiþtirme bölümü bulunamadý" + +#: elf32-cris.c:2523 +#, fuzzy, c-format +msgid "" +"%s, section %s:\n" +" relocation %s should not be used in a shared object; recompile with -fPIC" +msgstr "" +"%s: %s yer deðiþimi paylaþýmlý nesne oluþtururken kullanýlamaz; -fPIC ile " +"yeniden derleyin" + +#: elf32-cris.c:2994 msgid " [symbols have a _ prefix]" msgstr " [semboller _ önekine sahip]" -#: elf32-cris.c:657 +#: elf32-cris.c:3033 #, c-format msgid "%s: uses _-prefixed symbols, but writing file with non-prefixed symbols" -msgstr "%s: _-önekli sembolleri kullanýyor, fakat dosyaya öneksiz sembolleri yazýyor" +msgstr "" +"%s: _-önekli sembolleri kullanýyor, fakat dosyaya öneksiz sembolleri yazýyor" -#: elf32-cris.c:658 +#: elf32-cris.c:3034 #, c-format msgid "%s: uses non-prefixed symbols, but writing file with _-prefixed symbols" -msgstr "%s: öneksiz sembolleri kullanýyor, fakat dosyaya _-önekli sembolleri yazýyor" +msgstr "" +"%s: öneksiz sembolleri kullanýyor, fakat dosyaya _-önekli sembolleri yazýyor" -#: elf32-hppa.c:606 +#: elf32-gen.c:82 elf64-gen.c:82 #, c-format -msgid "%s(%s+0x%lx): cannot find stub entry %s" -msgstr "%s(%s+0x%lx): koçan giriþi %s bulunamadý" +msgid "%s: Relocations in generic ELF (EM: %d)" +msgstr "" -#: elf32-hppa.c:667 +#: elf32-hppa.c:646 #, c-format msgid "%s: cannot create stub entry %s" msgstr "%s: koçan giriþi %s oluþturulamadý" -#: elf32-hppa.c:859 -#, c-format -msgid "%s(%s+0x%lx): cannot relocate %s, recompile with -ffunction-sections" -msgstr "%s(%s+0x%lx): %s yer deðiþtirtilemez, -ffunction-sections ile yeniden derleyin" - -#: elf32-hppa.c:872 elf32-hppa.c:1568 -#, c-format -msgid "Could not find relocation section for %s" -msgstr "%s için yer deðiþtirme bölümü bulunamadý" - -#: elf32-hppa.c:1011 elf32-hppa.c:3362 +#: elf32-hppa.c:937 elf32-hppa.c:3545 #, c-format msgid "%s(%s+0x%lx): cannot reach %s, recompile with -ffunction-sections" msgstr "%s(%s+0x%lx): %s'e ulaþýlamadý, -ffunction-sections ile derleyin" -#: elf32-hppa.c:1323 +#: elf32-hppa.c:1312 +#, c-format +msgid "" +"%s: relocation %s can not be used when making a shared object; recompile " +"with -fPIC" +msgstr "" +"%s: %s yer deðiþimi paylaþýmlý nesne oluþturulurken kullanýlamaz; -fPIC ile " +"yeniden derleyin" + +#: elf32-hppa.c:1332 #, c-format -msgid "%s: relocation %s can not be used when making a shared object; recompile with -fPIC" -msgstr "%s: %s yer deðiþimi paylaþýmlý nesne oluþturulurken kullanýlamaz; -fPIC ile yeniden derleyin" +msgid "" +"%s: relocation %s should not be used when making a shared object; recompile " +"with -fPIC" +msgstr "" +"%s: %s yer deðiþimi paylaþýmlý nesne oluþtururken kullanýlamaz; -fPIC ile " +"yeniden derleyin" -#: elf32-hppa.c:1343 +#: elf32-hppa.c:1525 #, c-format -msgid "%s: relocation %s should not be used when making a shared object; recompile with -fPIC" -msgstr "%s: %s yer deðiþimi paylaþýmlý nesne oluþtururken kullanýlamaz; -fPIC ile yeniden derleyin" +msgid "Could not find relocation section for %s" +msgstr "%s için yer deðiþtirme bölümü bulunamadý" -#: elf32-hppa.c:2755 +#: elf32-hppa.c:2867 #, c-format msgid "%s: duplicate export stub %s" msgstr "%s: birden fazla ihraç koçaný %s" -#: elf32-hppa.c:3253 +#: elf32-hppa.c:3429 #, c-format msgid "%s(%s+0x%lx): fixing %s" msgstr "%s(%s+0x%lx): %s düzeltiliyor" -#: elf32-hppa.c:3856 +#: elf32-hppa.c:4069 #, c-format msgid "%s(%s+0x%lx): cannot handle %s for %s" msgstr "%1$s(%2$s+0x%3$lx): %5$s için %4$s iþlenemedi" -#: elf32-hppa.c:4173 +#: elf32-hppa.c:4408 msgid ".got section not immediately after .plt section" msgstr ".got bölümü .plt bölümünün hemen arkasýnda deðil" -#: elf32-i386.c:273 +#: elf32-i386.c:298 #, c-format msgid "%s: invalid relocation type %d" msgstr "%s: geçersiz yer deðiþim türü %d" -#: elf32-m32r.c:916 +#: elf32-i386.c:718 elf32-s390.c:636 elf64-s390.c:595 +#, fuzzy, c-format +msgid "%s: bad symbol index: %d" +msgstr "%s: yer deðiþtirmede geçersiz sembol indeksi: %d" + +#: elf32-i386.c:863 elf32-s390.c:790 elf64-ppc.c:2198 elf64-s390.c:759 +#, fuzzy, c-format +msgid "%s: bad relocation section name `%s'" +msgstr "%s: geçersiz bölüm adý `%s'" + +#: elf32-i386.c:2069 elf32-s390.c:1951 elf64-ppc.c:4124 elf64-s390.c:1955 +#, fuzzy, c-format +msgid "%s(%s+0x%lx): unresolvable relocation against symbol `%s'" +msgstr "" +"%1$s: uyarý: %3$s bölümünden `%2$s' sembolüne çözümlenemeyen yer deðiþimi" + +#: elf32-i386.c:2107 elf32-s390.c:1989 elf64-s390.c:1993 +#, fuzzy, c-format +msgid "%s(%s+0x%lx): reloc against `%s': error %d" +msgstr "%1$s(%2$s+0x%3$lx): %5$s için %4$s iþlenemedi" + +#: elf32-m32r.c:923 msgid "SDA relocation when _SDA_BASE_ not defined" msgstr "_SDA_BASE_ tanýmlanmamýþ iken SDA yer deðiþimi" -#: elf32-m32r.c:1000 elf32-ppc.c:2963 +#: elf32-ia64.c:3537 elf32-m32r.c:1007 elf32-ppc.c:2930 elf64-ia64.c:3537 #, c-format msgid "%s: unknown relocation type %d" msgstr "%s: bilinmeyen yer deðiþim türü %d" -#: elf32-m32r.c:1208 +#: elf32-m32r.c:1223 #, c-format msgid "%s: The target (%s) of an %s relocation is in the wrong section (%s)" msgstr "%1$s: Bir %3$s yer deðiþiminin hedefi (%2$s) yanlýþ bölümde (%4$s)" -#: elf32-m32r.c:2010 +#: elf32-m32r.c:2000 #, c-format msgid "%s: Instruction set mismatch with previous modules" msgstr "%s: Önceki modüllerle iþlem uyuþmazlýðý" -#: elf32-m32r.c:2033 +#: elf32-m32r.c:2023 #, c-format msgid "private flags = %lx" msgstr "özel bayraklar = %lx" -#: elf32-m32r.c:2038 +#: elf32-m32r.c:2028 msgid ": m32r instructions" msgstr ": m32r iþlemleri" -#: elf32-m32r.c:2039 +#: elf32-m32r.c:2029 msgid ": m32rx instructions" msgstr ": m32rx iþlemleri" -#: elf32-m68k.c:433 +#: elf32-m68k.c:413 msgid " [cpu32]" msgstr " [cpu32]" -#: elf32-mcore.c:366 elf32-mcore.c:493 +#: elf32-mcore.c:353 elf32-mcore.c:479 #, c-format msgid "%s: Relocation %s (%d) is not currently supported.\n" msgstr "%s: %s (%d) yer deðiþimi henüz desteklenmiyor.\n" -#: elf32-mcore.c:452 +#: elf32-mcore.c:438 #, c-format msgid "%s: Unknown relocation type %d\n" msgstr "%s: Bilinmeyen yer deðiþim türü %d\n" -#: elf32-mips.c:1576 +#: elf32-mips.c:2156 elf64-mips.c:1972 msgid "32bits gp relative relocation occurs for an external symbol" msgstr "32 bitlik gp göreceli yer deðiþim bir dýþ sembol için yapýlýyor" -#: elf32-mips.c:1725 +#: elf32-mips.c:2305 #, c-format msgid "Linking mips16 objects into %s format is not supported" msgstr "mips16 nesnelerini %s biçemine baðlamak desteklenmiyor" -#: elf32-mips.c:2582 +#: elf32-mips.c:3129 #, c-format msgid "%s: linking PIC files with non-PIC files" msgstr "%s: PIC dosyalarý PIC olmayan dosyalarla baðlanýyor" -#: elf32-mips.c:2592 +#: elf32-mips.c:3139 #, c-format msgid "%s: linking abicalls files with non-abicalls files" msgstr "%s: abicalls dosyalarý abicalls olmayan dosyalarla baðlanýyor" -#: elf32-mips.c:2621 +#: elf32-mips.c:3168 #, c-format msgid "%s: ISA mismatch (-mips%d) with previous modules (-mips%d)" msgstr "%1$s: Önceki modüllerle (-mips%3$d) ile ISA uyumsuzluðu (-mips%2$d)" -#: elf32-mips.c:2630 +#: elf32-mips.c:3177 #, c-format msgid "%s: ISA mismatch (%d) with previous modules (%d)" msgstr "%1$s: Önceki modüllerle (%3$d) ile ISA uyumsuzluðu (%2$d)" -#: elf32-mips.c:2653 +#: elf32-mips.c:3200 #, c-format msgid "%s: ABI mismatch: linking %s module with previous %s modules" msgstr "%s: ABI uyumsuzluðu: %s modülü önceki %s modülle baðlanýyor" -#: elf32-mips.c:2667 elf32-ppc.c:1477 elf64-sparc.c:2971 +#: elf32-mips.c:3214 elf32-ppc.c:1470 elf64-ppc.c:1556 elf64-sparc.c:3027 #, c-format msgid "%s: uses different e_flags (0x%lx) fields than previous modules (0x%lx)" -msgstr "%1$s: önceki modüllerden (0x%3$lx) farklý e_flags (0x%2$lx) alanlarý kullanýlýyor" +msgstr "" +"%1$s: önceki modüllerden (0x%3$lx) farklý e_flags (0x%2$lx) alanlarý " +"kullanýlýyor" -#: elf32-mips.c:2698 +#: elf32-mips.c:3245 msgid " [abi=O32]" msgstr " [abi=O32]" -#: elf32-mips.c:2700 +#: elf32-mips.c:3247 msgid " [abi=O64]" msgstr " [abi=O64]" -#: elf32-mips.c:2702 +#: elf32-mips.c:3249 msgid " [abi=EABI32]" msgstr " [abi=EABI32]" -#: elf32-mips.c:2704 +#: elf32-mips.c:3251 msgid " [abi=EABI64]" msgstr " [abi=EABI64]" -#: elf32-mips.c:2706 +#: elf32-mips.c:3253 msgid " [abi unknown]" msgstr " [abi bilinmiyor]" -#: elf32-mips.c:2708 +#: elf32-mips.c:3255 msgid " [abi=N32]" msgstr " [abi=N32]" -#: elf32-mips.c:2710 +#: elf32-mips.c:3257 msgid " [abi=64]" msgstr " [abi=64]" -#: elf32-mips.c:2712 +#: elf32-mips.c:3259 msgid " [no abi set]" msgstr " [abi atanmamýþ]" -#: elf32-mips.c:2715 +#: elf32-mips.c:3262 msgid " [mips1]" msgstr " [mips1]" -#: elf32-mips.c:2717 +#: elf32-mips.c:3264 msgid " [mips2]" msgstr " [mips2]" -#: elf32-mips.c:2719 +#: elf32-mips.c:3266 msgid " [mips3]" msgstr " [mips3]" -#: elf32-mips.c:2721 +#: elf32-mips.c:3268 msgid " [mips4]" msgstr " [mips4]" -#: elf32-mips.c:2723 +#: elf32-mips.c:3270 msgid " [mips5]" msgstr " [mips5]" -#: elf32-mips.c:2725 +#: elf32-mips.c:3272 msgid " [mips32]" msgstr " [mips32]" -#: elf32-mips.c:2727 +#: elf32-mips.c:3274 msgid " [mips64]" msgstr " [mips64]" -#: elf32-mips.c:2729 +#: elf32-mips.c:3276 msgid " [unknown ISA]" msgstr " [bilinmeyen ISA]" -#: elf32-mips.c:2732 +#: elf32-mips.c:3279 msgid " [32bitmode]" msgstr " [32bitkipi]" -#: elf32-mips.c:2734 +#: elf32-mips.c:3281 msgid " [not 32bitmode]" msgstr " [32bitkipi deðil]" -#: elf32-mips.c:4388 +#: elf32-mips.c:4954 msgid "static procedure (no name)" msgstr "statik altyordam (isimsiz)" -#: elf32-mips.c:5005 elf64-alpha.c:4377 +#: elf32-mips.c:5572 elf64-mips.c:6694 #, c-format msgid "%s: illegal section name `%s'" msgstr "%s: geçersiz bölüm adý `%s'" -#: elf32-mips.c:5570 +#: elf32-mips.c:6139 elf64-mips.c:3150 msgid "not enough GOT space for local GOT entries" msgstr "yerel GOT girdileri için yeterli GOT yeri yok" -#: elf32-mips.c:6686 +#: elf32-mips.c:7250 elf64-mips.c:4203 #, c-format msgid "%s: %s+0x%lx: jump to stub routine which is not jal" msgstr "%s: %s+0x%lx: jal olmayan koçan yordamýna sýçrama" -#: elf32-mips.c:7673 -#, c-format -msgid "Malformed reloc detected for section %s" +#: elf32-mips.c:8259 elf64-mips.c:5891 +#, fuzzy, c-format +msgid "%s: Malformed reloc detected for section %s" msgstr "%s bölümü için geçersiz yer deðiþim bulundu" -#: elf32-mips.c:7750 +#: elf32-mips.c:8337 elf64-mips.c:5969 #, c-format msgid "%s: CALL16 reloc at 0x%lx not against global symbol" msgstr "%s: 0x%lx'deki CALL16 yerdeðiþimi evrensel sembole göre deðil" -#: elf32-ppc.c:1443 +#: elf32-ppc.c:1436 elf64-ppc.c:1521 #, c-format -msgid "%s: compiled with -mrelocatable and linked with modules compiled normally" +msgid "" +"%s: compiled with -mrelocatable and linked with modules compiled normally" msgstr "%s: -mrelocatable ile derlendi ve normal derlenmiþ modüllerle baðlandý" -#: elf32-ppc.c:1451 +#: elf32-ppc.c:1444 elf64-ppc.c:1529 #, c-format -msgid "%s: compiled normally and linked with modules compiled with -mrelocatable" +msgid "" +"%s: compiled normally and linked with modules compiled with -mrelocatable" msgstr "%s: normal derlendi ve -mrelocatable ile derlenmiþ modüllere baðlandý" -#: elf32-ppc.c:1578 +#: elf32-ppc.c:1568 #, c-format msgid "%s: Unknown special linker type %d" msgstr "%s: Bilinmeyen özel baðlayýcý türü %d" -#: elf32-ppc.c:2245 elf32-ppc.c:2279 elf32-ppc.c:2314 +#: elf32-ppc.c:2218 elf32-ppc.c:2252 elf32-ppc.c:2287 #, c-format msgid "%s: relocation %s cannot be used when making a shared object" msgstr "%s: %s yerdeðiþimi paylaþýmlý nesne oluþturulurken kullanýlamaz" -#: elf32-ppc.c:3129 +#: elf32-ppc.c:3097 elf64-ppc.c:3716 #, c-format msgid "%s: unknown relocation type %d for symbol %s" msgstr "%1$s: %3$s sembolü için bilinmeyen %2$d türünde yerdeðiþimi" -#: elf32-ppc.c:3493 elf32-ppc.c:3514 elf32-ppc.c:3564 +#: elf32-ppc.c:3452 elf32-ppc.c:3473 elf32-ppc.c:3523 #, c-format -msgid "%s: The target (%s) of a %s relocation is in the wrong output section (%s)" +msgid "" +"%s: The target (%s) of a %s relocation is in the wrong output section (%s)" msgstr "%1$s: %3$s yerdeðiþiminin hedefi (%2$s) yanlýþ çýktý bölümünde (%4$s)" -#: elf32-ppc.c:3630 +#: elf32-ppc.c:3589 #, c-format msgid "%s: Relocation %s is not yet supported for symbol %s." msgstr "%s: %s yerdeðiþimi %s sembolü için henüz desteklenmiyor." -#: elf32-sh.c:1084 +#: elf32-sh.c:1101 #, c-format msgid "%s: 0x%lx: warning: bad R_SH_USES offset" msgstr "%s: 0x%lx: uyarý: hatalý R_SH_USES göreli konumu" -#: elf32-sh.c:1096 +#: elf32-sh.c:1113 #, c-format msgid "%s: 0x%lx: warning: R_SH_USES points to unrecognized insn 0x%x" msgstr "%s: 0x%lx: uyarý: R_SH_USES bilinmeyen insn 0x%x'ý imliyor" -#: elf32-sh.c:1113 +#: elf32-sh.c:1130 #, c-format msgid "%s: 0x%lx: warning: bad R_SH_USES load offset" msgstr "%s: 0x%lx: uyarý: hatalý R_SH_USES yükleme göreli konumu" -#: elf32-sh.c:1128 +#: elf32-sh.c:1145 #, c-format msgid "%s: 0x%lx: warning: could not find expected reloc" msgstr "%s: 0x%lx: uyarý: beklenen yerdeðiþim bulunamadý" -#: elf32-sh.c:1165 +#: elf32-sh.c:1202 #, c-format msgid "%s: 0x%lx: warning: symbol in unexpected section" msgstr "%s: 0x%lx: uyarý: beklenmeyen bölümde sembol" -#: elf32-sh.c:1287 +#: elf32-sh.c:1323 #, c-format msgid "%s: 0x%lx: warning: could not find expected COUNT reloc" msgstr "%s: 0x%lx: uyarý: beklenen COUNT yerdeðiþimi bulunamadý" -#: elf32-sh.c:1296 +#: elf32-sh.c:1332 #, c-format msgid "%s: 0x%lx: warning: bad count" msgstr "%s: 0x%lx: uyarý: hatalý sayým" -#: elf32-sh.c:1689 elf32-sh.c:2076 +#: elf32-sh.c:1741 elf32-sh.c:2132 #, c-format msgid "%s: 0x%lx: fatal: reloc overflow while relaxing" msgstr "%s: 0x%lx: ölümcül: gevþetilirken yerdeðiþim taþmasý" -#: elf32-sparc.c:1512 elf64-sparc.c:2262 +#: elf32-sh.c:3267 +#, c-format +msgid "%s: 0x%lx: fatal: unaligned branch target for relax-support relocation" +msgstr "" + +#: elf32-sparc.c:1554 elf64-sparc.c:2280 #, c-format msgid "%s: probably compiled without -fPIC?" msgstr "%s: acaba -fPIC olmaksýzýn mý derlenmiþ?" -#: elf32-sparc.c:1962 +#: elf32-sparc.c:2007 #, c-format msgid "%s: compiled for a 64 bit system and target is 32 bit" msgstr "%s: 64 bitlik sistem için derlenmiþ ve hedef 32 bit" -#: elf32-sparc.c:1976 +#: elf32-sparc.c:2021 #, c-format msgid "%s: linking little endian files with big endian files" msgstr "%s: küçük sonlu dosyalar büyük sonlu dosyalarla baðlanýyor" -#: elf32-v850.c:677 +#: elf32-v850.c:682 #, c-format msgid "Variable `%s' cannot occupy in multiple small data regions" msgstr "`%s' deðiþkeni birden fazla küçük veri sahasýný kapsayamaz" -#: elf32-v850.c:680 +#: elf32-v850.c:685 #, c-format -msgid "Variable `%s' can only be in one of the small, zero, and tiny data regions" -msgstr "`%s' deðiþkeni küçük, sýfýr ve ufak veri sahalarýndan yalnýz birinde olabilir" +msgid "" +"Variable `%s' can only be in one of the small, zero, and tiny data regions" +msgstr "" +"`%s' deðiþkeni küçük, sýfýr ve ufak veri sahalarýndan yalnýz birinde olabilir" -#: elf32-v850.c:683 +#: elf32-v850.c:688 #, c-format -msgid "Variable `%s' cannot be in both small and zero data regions simultaneously" -msgstr "`%s' deðiþkeni ayný anda hem küçük hem sýfýr veri sahalarýnda bulunamaz" +msgid "" +"Variable `%s' cannot be in both small and zero data regions simultaneously" +msgstr "" +"`%s' deðiþkeni ayný anda hem küçük hem sýfýr veri sahalarýnda bulunamaz" -#: elf32-v850.c:686 +#: elf32-v850.c:691 #, c-format -msgid "Variable `%s' cannot be in both small and tiny data regions simultaneously" +msgid "" +"Variable `%s' cannot be in both small and tiny data regions simultaneously" msgstr "`%s' deðiþkeni ayný anda hem küçük hem ufak veri sahalarýnda bulunamaz" -#: elf32-v850.c:689 +#: elf32-v850.c:694 #, c-format -msgid "Variable `%s' cannot be in both zero and tiny data regions simultaneously" +msgid "" +"Variable `%s' cannot be in both zero and tiny data regions simultaneously" msgstr "`%s' deðiþkeni ayný anda hem sýfýr hem ufak veri sahalarýnda bulunamaz" -#: elf32-v850.c:1066 +#: elf32-v850.c:1072 msgid "FAILED to find previous HI16 reloc\n" msgstr "önceki HI16 yerdeðiþimi BULUNAMADI\n" -#: elf32-v850.c:1684 +#: elf32-v850.c:1703 msgid "could not locate special linker symbol __gp" msgstr "özel baðlayýcý sembolü __gp bulunamadý" -#: elf32-v850.c:1688 +#: elf32-v850.c:1707 msgid "could not locate special linker symbol __ep" msgstr "özel baðlayýcý sembolü __ep bulunamadý" -#: elf32-v850.c:1692 +#: elf32-v850.c:1711 msgid "could not locate special linker symbol __ctbp" msgstr "özel baðlayýcý sembolü __ctbp bulunamadý" -#: elf32-v850.c:1881 +#: elf32-v850.c:1877 #, c-format msgid "%s: Architecture mismatch with previous modules" msgstr "%s: Önceki modüllerle platform uyumsuzluðu" -#: elf32-v850.c:1900 +#: elf32-v850.c:1897 #, c-format msgid "private flags = %lx: " msgstr "özel bayraklar = %lx:" -#: elf32-v850.c:1905 +#: elf32-v850.c:1902 msgid "v850 architecture" msgstr "v850 platformu" -#: elf32-v850.c:1906 +#: elf32-v850.c:1903 msgid "v850e architecture" msgstr "v850e platformu" -#: elf32-v850.c:1907 +#: elf32-v850.c:1904 msgid "v850ea architecture" msgstr "v850ea platformu" -#: elf64-alpha.c:951 +#: elf32-ia64.c:2247 elf32-xstormy16.c:414 elf64-ia64.c:2247 +msgid "non-zero addend in @fptr reloc" +msgstr "" + +#: elf64-alpha.c:858 msgid "GPDISP relocation did not find ldah and lda instructions" msgstr "GPDISP yerdeðiþimi ldah ve lda iþlemlerini bulamadý" -#: elf64-alpha.c:3014 +#: elf64-alpha.c:2934 #, c-format msgid "%s: .got subsegment exceeds 64K (size %d)" msgstr "%s: .got alt parçasý 64K'yý aþýyor (boy %d)" -#: elf64-sparc.c:1248 -#, c-format -msgid "%s: check_relocs: unhandled reloc type %d" -msgstr "%s: check_relocs: desteklenmeyen yerdeðiþim türü %d" - -#: elf64-sparc.c:1285 -msgid "%s: Only registers %%g[2367] can be declared using STT_REGISTER" -msgstr "%s: Yalnýz %%g[2367] yazmaçlarý STT_REGISTER ile bildirilebilir" - -#: elf64-sparc.c:1305 -msgid "Register %%g%d used incompatibly: previously declared in %s to %s, in %s redefined to %s" -msgstr "%%g%d yazmacý uyumsuz kullanýlmýþ: daha önce %s'de %s olarak bildirilmiþ, %s'de %s olarak yeniden tanýmlanmýþ" +#: elf64-alpha.c:3518 elf64-alpha.c:3530 +#, fuzzy, c-format +msgid "%s: gp-relative relocation against dynamic symbol %s" +msgstr "32 bitlik gp göreceli yer deðiþim bir dýþ sembol için yapýlýyor" -#: elf64-sparc.c:1328 +#: elf64-hppa.c:2070 #, c-format -msgid "Symbol `%s' has differing types: previously %s, REGISTER in %s" -msgstr "`%s' sembolünün farklý türleri var: önce %s, %s'de YAZMAÇ" +msgid "stub entry for %s cannot load .plt, dp offset = %ld" +msgstr "" -#: elf64-sparc.c:1374 +#: elf64-mmix.c:1271 #, c-format -msgid "Symbol `%s' has differing types: REGISTER in %s, %s in %s" -msgstr "`%s' sembolünün farklý türleri var: %s'de YAZMAÇ, %s'de %s" +msgid "%s: register relocation against non-register symbol: (unknown) in %s" +msgstr "" -#: elf64-sparc.c:2952 -#, c-format -msgid "%s: linking UltraSPARC specific with HAL specific code" -msgstr "%s: UltraSPARC'a özel kod HAL'e özel kod ile baðlanýyor" +#: elf64-mmix.c:1276 +#, fuzzy, c-format +msgid "%s: register relocation against non-register symbol: %s in %s" +msgstr "" +"%1$s: uyarý: %3$s bölümünden `%2$s' sembolüne çözümlenemeyen yer deðiþimi" -#: elf.c:325 +#: elf64-mmix.c:1312 #, c-format -msgid "%s: invalid string offset %u >= %lu for section `%s'" -msgstr "%1$s: `%4$s' bölümünde geçersiz dizge göreli konumu %2$u >= %3$lu" - -#: elf.c:566 -msgid "\nProgram Header:\n" -msgstr "\nYazýlým Baþlýðý:\n" +msgid "%s: directive LOCAL valid only with a register or absolute value" +msgstr "" -#: elf.c:614 -msgid "\nDynamic Section:\n" -msgstr "\nDinamik Bölüm:\n" +#: elf64-mmix.c:1340 +#, c-format +msgid "" +"%s: LOCAL directive: Register $%ld is not a local register. First global " +"register is $%ld." +msgstr "" -#: elf.c:743 -msgid "\nVersion definitions:\n" -msgstr "\nSürüm tanýmlarý:\n" +#: elf64-mmix.c:1615 +#, c-format +msgid "" +"%s: Error: multiple definition of `%s'; start of %s is set in a earlier " +"linked file\n" +msgstr "" -#: elf.c:766 -msgid "\nVersion References:\n" -msgstr "\nSürüm Referanslarý:\n" +#: elf64-mmix.c:1674 +#, fuzzy +msgid "Register section has contents\n" +msgstr "Bölümde içerik yok" -#: elf.c:771 +#: elf64-ppc.c:1484 libbfd.c:1436 #, c-format -msgid " required from %s:\n" -msgstr " %s'den isteniyor:\n" +msgid "%s: compiled for a big endian system and target is little endian" +msgstr "%s: büyük sonlu sistem için derlenmiþ ve hedef küçük sonlu" -#: elf.c:1359 +#: elf64-ppc.c:1486 libbfd.c:1438 #, c-format -msgid "%s: invalid link %lu for reloc section %s (index %u)" -msgstr "%1$s: yerdeðiþim bölümü %3$s (indeks %4$u) için geçersiz bað %2$lu" +msgid "%s: compiled for a little endian system and target is big endian" +msgstr "%s: küçük sonlu sistem için derlenmiþ ve hedef büyük sonlu" -#: elf.c:2113 +#: elf64-ppc.c:3350 #, c-format -msgid "creating section symbol, name = %s, value = 0x%.8lx, index = %d, section = 0x%.8lx\n" -msgstr "bölüm sembolü, isim = %s, deðer = 0x%.8lx, indeks = %d, bölüm = 0x%.8lx oluþturuluyor\n" +msgid "linkage table error against `%s'" +msgstr "" -#: elf.c:2716 -#, c-format -msgid "%s: Not enough room for program headers (allocated %u, need %u)" -msgstr "%s: Yazýlým baþlýklarý için yeterli yer yok (%u ayrýldý, %u gerekli)" +#: elf64-ppc.c:3432 +msgid "stub section size doesn't match calculated size" +msgstr "" -#: elf.c:2815 -#, c-format -msgid "%s: Not enough room for program headers, try linking with -N" -msgstr "%s: yazýlým baþlýklarý için gerekli yer yok, -N ile baðlamayý deneyin" +#: elf64-ppc.c:4061 +#, fuzzy, c-format +msgid "%s: Relocation %s is not supported for symbol %s." +msgstr "%s: %s yerdeðiþimi %s sembolü için henüz desteklenmiyor." -#: elf.c:2941 +#: elf64-ppc.c:4105 #, c-format -msgid "Error: First section in segment (%s) starts at 0x%x" -msgstr "Hata: Parçadaki (%s) ilk bölüm 0x%x'de baþlýyor" +msgid "%s: error: relocation %s not a multiple of 4" +msgstr "" -#: elf.c:2944 +#: elf64-sparc.c:1277 #, c-format -msgid " whereas segment starts at 0x%x" -msgstr " fakat parça 0x%x'de baþlýyor" +msgid "%s: check_relocs: unhandled reloc type %d" +msgstr "%s: check_relocs: desteklenmeyen yerdeðiþim türü %d" -#: elf.c:3217 +#: elf64-sparc.c:1314 #, c-format -msgid "%s: warning: allocated section `%s' not in segment" -msgstr "%s: uyarý: ayrýlmýþ `%s' bölümü parça içinde deðil" +msgid "%s: Only registers %%g[2367] can be declared using STT_REGISTER" +msgstr "%s: Yalnýz %%g[2367] yazmaçlarý STT_REGISTER ile bildirilebilir" -#: elf.c:3616 -#, c-format -msgid "%s: symbol `%s' required but not present" -msgstr "%s: `%s' sembolü gerekli fakat mevcut deðil" +#: elf64-sparc.c:1334 +#, fuzzy, c-format +msgid "Register %%g%d used incompatibly: %s in %s, previously %s in %s" +msgstr "" +"%%g%d yazmacý uyumsuz kullanýlmýþ: daha önce %s'de %s olarak bildirilmiþ, %" +"s'de %s olarak yeniden tanýmlanmýþ" -#: elf.c:3625 -#, c-format -msgid "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x%.8lx%s\n" -msgstr "bfd sembolünden elf sembolü:0x%.8lx, isim= %s, sem num = %d, bayrak = 0x%.8lx%s\n" +#: elf64-sparc.c:1357 +#, fuzzy, c-format +msgid "Symbol `%s' has differing types: REGISTER in %s, previously %s in %s" +msgstr "`%s' sembolünün farklý türleri var: %s'de YAZMAÇ, %s'de %s" -#: elf.c:3866 -#, c-format -msgid "%s: warning: Empty loadable segment detected\n" -msgstr "%s: uyarý: Boþ yüklenebilir parça bulundu\n" +#: elf64-sparc.c:1404 +#, fuzzy, c-format +msgid "Symbol `%s' has differing types: %s in %s, previously REGISTER in %s" +msgstr "`%s' sembolünün farklý türleri var: önce %s, %s'de YAZMAÇ" -#: elf.c:5213 +#: elf64-sparc.c:3008 #, c-format -msgid "%s: unsupported relocation type %s" -msgstr "%s: desteklenmeyen yerdeðiþim türü %s" +msgid "%s: linking UltraSPARC specific with HAL specific code" +msgstr "%s: UltraSPARC'a özel kod HAL'e özel kod ile baðlanýyor" -#: elfcode.h:1084 +#: elfcode.h:1218 #, c-format msgid "%s: version count (%ld) does not match symbol count (%ld)" msgstr "%s: sürüm sayýsý (%ld) sembol sayýsý (%ld) ile eþleþmiyor" -#: elflink.c:432 -#, c-format -msgid "%s: Section %s is already to large to put hole of %ld bytes in" +#: elflink.c:434 +#, fuzzy, c-format +msgid "%s: Section %s is too large to add hole of %ld bytes" msgstr "%s: %s bölümü içine %ld baytlýk bir delik koymak için fazla büyük" -#: elflink.h:1465 +#: elflink.h:1113 +#, c-format +msgid "%s: warning: unexpected redefinition of `%s'" +msgstr "%s: uyarý: `%s' için beklenmeyen yeniden tanýmlama" + +#: elflink.h:1784 #, c-format msgid "%s: %s: invalid version %u (max %d)" msgstr "%s: %s: geçersiz sürüm %u (maksimum %d)" -#: elflink.h:1506 +#: elflink.h:1825 #, c-format msgid "%s: %s: invalid needed version %d" msgstr "%s: %s: geçersiz gerekli sürüm %d" -#: elflink.h:1626 +#: elflink.h:1945 #, c-format msgid "Warning: size of symbol `%s' changed from %lu to %lu in %s" msgstr "Uyarý: `%s' sembolünün boyu %lu'dan %lu'ya %s içerisinde deðiþti" -#: elflink.h:1872 -#, c-format -msgid "%s: warning: unexpected redefinition of `%s'" -msgstr "%s: uyarý: `%s' için beklenmeyen yeniden tanýmlama" - -#: elflink.h:3659 +#: elflink.h:4014 #, c-format msgid "warning: type and size of dynamic symbol `%s' are not defined" msgstr "uyarý: `%s' dinamik sembolünün türü ve boyu tanýmlý deðil" -#: elflink.h:3931 +#: elflink.h:4320 #, c-format msgid "%s: undefined versioned symbol name %s" msgstr "%s: sürümlü sembol ismi %s tanýmlý deðil" -#: elflink.h:5180 +#: elflink.h:4544 elflink.h:4552 elflink.h:6203 elflink.h:7280 +msgid "Error: out of memory" +msgstr "" + +#: elflink.h:4714 +msgid "Not enough memory to sort relocations" +msgstr "" + +#: elflink.h:5980 #, c-format msgid "%s: could not find output section %s for input section %s" msgstr "%1$s: girdi bölümü %3$s için çýktý bölümü %2$s bulunamadý" -#: i386linux.c:450 m68klinux.c:454 sparclinux.c:452 +#: elflink.h:6553 +#, fuzzy +msgid "warning: relocation against removed section; zeroing" +msgstr "" +"%1$s: uyarý: %3$s bölümünden `%2$s' sembolüne çözümlenemeyen yer deðiþimi" + +#: elflink.h:6583 +#, fuzzy +msgid "warning: relocation against removed section" +msgstr "" +"%1$s: uyarý: %3$s bölümünden `%2$s' sembolüne çözümlenemeyen yer deðiþimi" + +#: elflink.h:6596 +#, c-format +msgid "local symbols in discarded section %s" +msgstr "" + +#: i386linux.c:455 m68klinux.c:459 sparclinux.c:456 #, c-format msgid "Output file requires shared library `%s'\n" msgstr "Çýktý dosyasý için paylaþýmlý kitaplýk `%s' gerekli\n" -#: i386linux.c:458 m68klinux.c:462 sparclinux.c:460 +#: i386linux.c:463 m68klinux.c:467 sparclinux.c:464 #, c-format msgid "Output file requires shared library `%s.so.%s'\n" msgstr "Çýktý dosyasý için paylaþýmlý kitaplýk `%s.so.%s' gerekli\n" -#: i386linux.c:646 i386linux.c:696 m68klinux.c:653 m68klinux.c:701 -#: sparclinux.c:649 sparclinux.c:699 +#: i386linux.c:653 i386linux.c:703 m68klinux.c:660 m68klinux.c:708 +#: sparclinux.c:655 sparclinux.c:705 #, c-format msgid "Symbol %s not defined for fixups\n" msgstr "%s sembolü düzeltmeler için tanýmlý deðil\n" -#: i386linux.c:720 m68klinux.c:725 sparclinux.c:723 +#: i386linux.c:727 m68klinux.c:732 sparclinux.c:729 msgid "Warning: fixup count mismatch\n" msgstr "Uyarý: düzeltme sayý uyumsuzluðu\n" -#: ieee.c:167 +#: ieee.c:235 #, c-format msgid "%s: string too long (%d chars, max 65535)" msgstr "%s: dizge fazla uzun (%d karakter, en fazla 65535)" -#: ieee.c:297 +#: ieee.c:365 #, c-format msgid "%s: unrecognized symbol `%s' flags 0x%x" msgstr "%s: bilinmeyen `%s' sembol bayraklarý 0x%x" -#: ieee.c:793 -#, c-format -msgid "%s: unimplemented ATI record %u for symbol %u" +#: ieee.c:877 +#, fuzzy, c-format +msgid "%s: unimplemented ATI record %u for symbol %u" msgstr "%1$s: %3$u için desteklenmeyen ATI kaydý %2$u" -#: ieee.c:818 +#: ieee.c:902 #, c-format msgid "%s: unexpected ATN type %d in external part" msgstr "%s: dýþ parçada beklenmeyen ATN türü %d" -#: ieee.c:840 +#: ieee.c:924 #, c-format msgid "%s: unexpected type after ATN" msgstr "%s: ATN'den sonra beklenmeyen tür" -#: ihex.c:259 +#: ihex.c:258 #, c-format msgid "%s:%d: unexpected character `%s' in Intel Hex file\n" msgstr "%s:%d: Intel Onaltýlýk dosyasýnda beklenmeyen `%s' karakteri\n" -#: ihex.c:369 -#, c-format -msgid "%s:%d: bad checksum in Intel Hex file (expected %u, found %u)" -msgstr "%s:%d: Intel Onaltýlýk dosyasýnda hatalý saðlama toplamý (%u beklendi, %u bulundu)" +#: ihex.c:368 +#, fuzzy, c-format +msgid "%s:%u: bad checksum in Intel Hex file (expected %u, found %u)" +msgstr "" +"%s:%d: Intel Onaltýlýk dosyasýnda hatalý saðlama toplamý (%u beklendi, %u " +"bulundu)" -#: ihex.c:421 -#, c-format -msgid "%s:%d: bad extended address record length in Intel Hex file" +#: ihex.c:422 +#, fuzzy, c-format +msgid "%s:%u: bad extended address record length in Intel Hex file" msgstr "%s:%d: Intel Onaltýlýk dosyasýnda hatalý uzun adres kaydý uzunluðu" -#: ihex.c:438 -#, c-format -msgid "%s:%d: bad extended start address length in Intel Hex file" -msgstr "%s:%d: Intel Onaltýlýk dosyasýnda hatalý uzun baþlangýç adresi uzunluðu" +#: ihex.c:439 +#, fuzzy, c-format +msgid "%s:%u: bad extended start address length in Intel Hex file" +msgstr "" +"%s:%d: Intel Onaltýlýk dosyasýnda hatalý uzun baþlangýç adresi uzunluðu" -#: ihex.c:455 -#, c-format -msgid "%s:%d: bad extended linear address record length in Intel Hex file" -msgstr "%s:%d: Intel Onaltýlýk dosyasýnda hatalý uzun lineer adres kaydý uzunluðu" +#: ihex.c:456 +#, fuzzy, c-format +msgid "%s:%u: bad extended linear address record length in Intel Hex file" +msgstr "" +"%s:%d: Intel Onaltýlýk dosyasýnda hatalý uzun lineer adres kaydý uzunluðu" -#: ihex.c:472 -#, c-format -msgid "%s:%d: bad extended linear start address length in Intel Hex file" -msgstr "%s:%d: Intel Onaltýlýk dosyasýnda hatalý uzun lineer baþlangýç adres uzunluðu" +#: ihex.c:473 +#, fuzzy, c-format +msgid "%s:%u: bad extended linear start address length in Intel Hex file" +msgstr "" +"%s:%d: Intel Onaltýlýk dosyasýnda hatalý uzun lineer baþlangýç adres uzunluðu" -#: ihex.c:489 -#, c-format -msgid "%s:%d: unrecognized ihex type %u in Intel Hex file\n" +#: ihex.c:490 +#, fuzzy, c-format +msgid "%s:%u: unrecognized ihex type %u in Intel Hex file\n" msgstr "%s:%d: Intel Onaltýlýk dosyasýnda bilinmeyen onaltýlýk türü %u\n" -#: ihex.c:609 +#: ihex.c:610 #, c-format msgid "%s: internal error in ihex_read_section" msgstr "%s: ihex_read_section'da iç hata" -#: ihex.c:644 +#: ihex.c:645 #, c-format msgid "%s: bad section length in ihex_read_section" msgstr "%s: ihex_read_section'da hatalý bölüm uzunluðu" -#: ihex.c:858 -#, c-format -msgid "%s: address 0x%s out of range for Intex Hex file" +#: ihex.c:863 +#, fuzzy, c-format +msgid "%s: address 0x%s out of range for Intel Hex file" msgstr "%s: Intex Onaltýlýk dosyasý için 0x%s adresi kapsamdýþý" -#: libbfd.c:471 +#: libbfd.c:492 #, c-format msgid "not mapping: data=%lx mapped=%d\n" msgstr "eþlenmeyen: veri=%lx eþleþen=%d\n" -#: libbfd.c:474 +#: libbfd.c:495 msgid "not mapping: env var not set\n" msgstr "eþlenmeyen: çevre deðiþkeni atanmamýþ\n" -#: libbfd.c:1370 +#: libbfd.c:1467 +#, fuzzy, c-format +msgid "Deprecated %s called at %s line %d in %s\n" +msgstr "BFD iç hatasý, %s, %d satýrý, %s içerisinde iþlem durduruldu\n" + +#: libbfd.c:1470 #, c-format -msgid "%s: compiled for a big endian system and target is little endian" -msgstr "%s: büyük sonlu sistem için derlenmiþ ve hedef küçük sonlu" +msgid "Deprecated %s called\n" +msgstr "" -#: libbfd.c:1372 +#: linker.c:1849 #, c-format -msgid "%s: compiled for a little endian system and target is big endian" -msgstr "%s: küçük sonlu sistem için derlenmiþ ve hedef büyük sonlu" +msgid "%s: indirect symbol `%s' to `%s' is a loop" +msgstr "" -#: linker.c:2678 +#: linker.c:2745 #, c-format msgid "Attempt to do relocateable link with %s input and %s output" msgstr "%s girdi ve %s çýktýsý ile yerdeðiþimli bað deneniyor" -#: oasys.c:1016 +#: merge.c:897 #, c-format -msgid "%s: can not represent section `%s' in oasys" -msgstr "%s: oasys'de `%s' bölümü gösterilemiyor" +msgid "%s: access beyond end of merged section (%ld + %ld)" +msgstr "" -#: osf-core.c:146 -#, c-format -msgid "Unhandled OSF/1 core file section type %d\n" -msgstr "Desteklenmeyen OSF/1 core dosyasý bölüm türü %d\n" +#: mmo.c:460 +#, fuzzy, c-format +msgid "%s: No core to allocate section name %s\n" +msgstr "%s: geçersiz bölüm adý `%s'" -#. XXX code yet to be written. -#: peicode.h:807 +#: mmo.c:537 #, c-format -msgid "%s: Unhandled import type; %x" -msgstr "%s: Desteklenmeyen ithal türü; %x" +msgid "%s: No core to allocate a symbol %d bytes long\n" +msgstr "" -#: peicode.h:812 +#: mmo.c:1190 #, c-format -msgid "%s: Unrecognised import type; %x" -msgstr "%s: Tanýnmayan ithal türü; %x" +msgid "%s: invalid mmo file: initialization value for $255 is not `Main'\n" +msgstr "" -#: peicode.h:826 +#: mmo.c:1336 #, c-format -msgid "%s: Unrecognised import name type; %x" -msgstr "%s: Tanýnmayan ithal isim türü; %x" +msgid "" +"%s: unsupported wide character sequence 0x%02X 0x%02X after symbol name " +"starting with `%s'\n" +msgstr "" -#: peicode.h:1183 +#: mmo.c:1571 #, c-format -msgid "%s: Unrecognised machine type (0x%x) in Import Library Format archive" -msgstr "%s: Ýthal Kitaplýk Biçem (ILF) arþivinde tanýnmayan makina türü (0x%x) " +msgid "%s: invalid mmo file: unsupported lopcode `%d'\n" +msgstr "" -#: peicode.h:1195 +#: mmo.c:1581 #, c-format -msgid "%s: Recognised but unhandled machine type (0x%x) in Import Library Format archive" -msgstr "%s: Ýthal Kitaplýk Biçem (ILF) arþivinde bilinen fakat desteklenmeyen makina türü (0x%x)" +msgid "%s: invalid mmo file: expected YZ = 1 got YZ = %d for lop_quote\n" +msgstr "" -#: peicode.h:1212 +#: mmo.c:1617 #, c-format -msgid "%s: size field is zero in Import Library Format header" -msgstr "%s: Ýthal Kitaplýk Biçem (ILF) baþlýðýnda boy alaný sýfýr" +msgid "%s: invalid mmo file: expected z = 1 or z = 2, got z = %d for lop_loc\n" +msgstr "" -#: peicode.h:1240 +#: mmo.c:1663 #, c-format -msgid "%s: string not null terminated in ILF object file." -msgstr "%s: ILF nesne dosyasýnda dizge boþ deðerle sonlanmamýþ." +msgid "" +"%s: invalid mmo file: expected z = 1 or z = 2, got z = %d for lop_fixo\n" +msgstr "" -#: peigen.c:993 +#: mmo.c:1702 #, c-format -msgid "%s: line number overflow: 0x%lx > 0xffff" -msgstr "%s: satýr numarasý taþmasý: 0x%lx > 0xffff" +msgid "%s: invalid mmo file: expected y = 0, got y = %d for lop_fixrx\n" +msgstr "" -#: peigen.c:1011 +#: mmo.c:1711 #, c-format -msgid "%s: reloc overflow 1: 0x%lx > 0xffff" -msgstr "%s: yerdeðiþim taþmasý 1: 0x%lx > 0xffff" +msgid "" +"%s: invalid mmo file: expected z = 16 or z = 24, got z = %d for lop_fixrx\n" +msgstr "" -#: peigen.c:1024 -msgid "Export Directory [.edata (or where ever we found it)]" -msgstr "Ýhraç Dizini [.edata (veya nerede bulundu ise)]" +#: mmo.c:1734 +#, c-format +msgid "" +"%s: invalid mmo file: leading byte of operand word must be 0 or 1, got %d " +"for lop_fixrx\n" +msgstr "" -#: peigen.c:1025 -msgid "Import Directory [parts of .idata]" -msgstr "Ýthal Dizini [.idata'nýn parçalarý]" +#: mmo.c:1757 +#, c-format +msgid "%s: cannot allocate file name for file number %d, %d bytes\n" +msgstr "" -#: peigen.c:1026 -msgid "Resource Directory [.rsrc]" -msgstr "Kaynak Dizini [.rsrc]" +#: mmo.c:1777 +#, c-format +msgid "" +"%s: invalid mmo file: file number %d `%s', was already entered as `%s'\n" +msgstr "" -#: peigen.c:1027 -msgid "Exception Directory [.pdata]" -msgstr "Ýstisna Dizini [.pdata]" +#: mmo.c:1790 +#, c-format +msgid "" +"%s: invalid mmo file: file name for number %d was not specified before use\n" +msgstr "" -#: peigen.c:1028 -msgid "Security Directory" -msgstr "Güvenlik Dizini" +#: mmo.c:1896 +#, c-format +msgid "" +"%s: invalid mmo file: fields y and z of lop_stab non-zero, y: %d, z: %d\n" +msgstr "" -#: peigen.c:1029 -msgid "Base Relocation Directory [.reloc]" -msgstr "Temel Yerdeðiþim Dizini [.reloc]" +#: mmo.c:1932 +#, c-format +msgid "%s: invalid mmo file: lop_end not last item in file\n" +msgstr "" -#: peigen.c:1030 -msgid "Debug Directory" -msgstr "Hata Ayýklama Dizini" +#: mmo.c:1945 +#, c-format +msgid "" +"%s: invalid mmo file: YZ of lop_end (%ld) not equal to the number of tetras " +"to the preceding lop_stab (%ld)\n" +msgstr "" -#: peigen.c:1031 -msgid "Description Directory" -msgstr "Açýklama Dizini" +#: mmo.c:2610 +#, c-format +msgid "%s: invalid symbol table: duplicate symbol `%s'\n" +msgstr "" -#: peigen.c:1032 -msgid "Special Directory" -msgstr "Özel Dizin" - -#: peigen.c:1033 -msgid "Thread Storage Directory [.tls]" -msgstr "Dal Saklama Dizini [.tls]" - -#: peigen.c:1034 -msgid "Load Configuration Directory" -msgstr "Ayar Yükleme Dizini" - -#: peigen.c:1035 -msgid "Bound Import Directory" -msgstr "Sýnýr Ýthal Dizini" - -#: peigen.c:1036 -msgid "Import Address Table Directory" -msgstr "Adres Tablosu Ýthal Dizini" - -#: peigen.c:1037 -msgid "Delay Import Directory" -msgstr "Gecikmeli Ýthal Dizini" - -#: peigen.c:1038 peigen.c:1039 -msgid "Reserved" -msgstr "Ayrýlmýþ" - -#: peigen.c:1103 -msgid "\nThere is an import table, but the section containing it could not be found\n" -msgstr "\nBir ithal tablosu var, fakat onu içeren bölüm bulunamadý\n" - -#: peigen.c:1108 -#, c-format -msgid "\nThere is an import table in %s at 0x%lx\n" -msgstr "\n%s içerisinde 0x%lx'de bir ithal tablosu var\n" - -#: peigen.c:1147 +#: mmo.c:2898 #, c-format -msgid "\nFunction descriptor located at the start address: %04lx\n" -msgstr "\nBaþlangýç adresinde iþlev betimleyicisi bulundu: %04lx\n" - -#: peigen.c:1150 -#, c-format -msgid "\tcode-base %08lx toc (loadable/actual) %08lx/%08lx\n" -msgstr "\tkod temeli %08lx toc (yüklenebilir/gerçek) %08lx/%08lx\n" - -#: peigen.c:1156 -msgid "\nNo reldata section! Function descriptor not decoded.\n" -msgstr "\nReldata bölümü yok! Ýþlev betimleyicisi çözümlenemedi.\n" - -#: peigen.c:1161 -#, c-format -msgid "\nThe Import Tables (interpreted %s section contents)\n" -msgstr "\nÝthal Tablolarý (%s bölüm içeriði çözümlendi)\n" - -#: peigen.c:1164 -msgid " vma: Hint Time Forward DLL First\n" -msgstr " vma: Ýpucu Zaman Ýleri DLL Ýlk\n" - -#: peigen.c:1166 -msgid " Table Stamp Chain Name Thunk\n" -msgstr " Tablo Damga Zincir Ýsim Parça\n" +msgid "" +"%s: Bad symbol definition: `Main' set to %s rather than the start address %" +"s\n" +msgstr "" -#: peigen.c:1216 +#: mmo.c:2932 #, c-format -msgid "\n\tDLL Name: %s\n" -msgstr "\n\tDLL Adý: %s\n" - -#: peigen.c:1220 peigen.c:1283 -msgid "\tvma: Hint/Ord Member-Name\n" -msgstr "\tvma: Ýpucu/Sýra Üye-Adý\n" - -#: peigen.c:1282 -msgid "\tThe Import Address Table (difference found)\n" -msgstr "\tÝthal Adres Tablosu (fark bulundu)\n" - -#: peigen.c:1289 -msgid "\t>>> Ran out of IAT members!\n" -msgstr "\t>>> IAT üyeleri bitti!\n" - -#: peigen.c:1308 -msgid "\tThe Import Address Table is identical\n" -msgstr "\tÝthal Adres Tablosu ayný\n" +msgid "" +"%s: warning: symbol table too large for mmo, larger than 65535 32-bit words: " +"%d. Only `Main' will be emitted.\n" +msgstr "" -#: peigen.c:1381 -msgid "\nThere is an export table, but the section containing it could not be found\n" -msgstr "\nBir ihraç tablosu var, fakat onu içeren bölüm bulunamadý\n" +#: mmo.c:2977 +#, fuzzy, c-format +msgid "%s: internal error, symbol table changed size from %d to %d words\n" +msgstr "" +"Uyarý: %4$s içerisinde `%1$s' sembolünün türü %2$d'den %3$d'e deðiþtirildi" -#: peigen.c:1386 -#, c-format -msgid "\nThere is an export table in %s at 0x%lx\n" -msgstr "\n%s içinde 0x%lx'de bir ihraç tablosu var\n" +#: mmo.c:3032 +#, fuzzy, c-format +msgid "%s: internal error, internal register section %s had contents\n" +msgstr "%s: ihex_read_section'da iç hata" -#: peigen.c:1417 +#: mmo.c:3084 #, c-format -msgid "\nThe Export Tables (interpreted %s section contents)\n\n" -msgstr "\nÝhraç Tablolarý (%s bölüm içeriði çözümlendi)\n\n" +msgid "%s: no initialized registers; section length 0\n" +msgstr "" -#: peigen.c:1421 +#: mmo.c:3090 #, c-format -msgid "Export Flags \t\t\t%lx\n" -msgstr "Ýhraç Bayraklarý \t\t\t%lx\n" +msgid "%s: too many initialized registers; section length %ld\n" +msgstr "" -#: peigen.c:1424 +#: mmo.c:3095 #, c-format -msgid "Time/Date stamp \t\t%lx\n" -msgstr "Saat/Tarih damgasý \t\t%lx\n" +msgid "" +"%s: invalid start address for initialized registers of length %ld: 0x%lx%" +"08lx\n" +msgstr "" -#: peigen.c:1427 +#: oasys.c:1036 #, c-format -msgid "Major/Minor \t\t\t%d/%d\n" -msgstr "Majör/Minör \t\t\t%d/%d\n" - -#: peigen.c:1430 -msgid "Name \t\t\t\t" -msgstr "Ýsim \t\t\t\t" +msgid "%s: can not represent section `%s' in oasys" +msgstr "%s: oasys'de `%s' bölümü gösterilemiyor" -#: peigen.c:1436 +#: osf-core.c:132 #, c-format -msgid "Ordinal Base \t\t\t%ld\n" -msgstr "Onluk Sistem \t\t\t%ld\n" - -#: peigen.c:1439 -msgid "Number in:\n" -msgstr "Sayý içinde:\n" +msgid "Unhandled OSF/1 core file section type %d\n" +msgstr "Desteklenmeyen OSF/1 core dosyasý bölüm türü %d\n" -#: peigen.c:1442 +#: pe-mips.c:658 #, c-format -msgid "\tExport Address Table \t\t%08lx\n" -msgstr "\tÝhraç Adres Tablosu \t\t%08lx\n" +msgid "%s: `ld -r' not supported with PE MIPS objects\n" +msgstr "%s: `ld -r' PE MIPS nesneleri ile birlikte desteklenmiyor\n" -#: peigen.c:1446 +#. OK, at this point the following variables are set up: +#. src = VMA of the memory we're fixing up +#. mem = pointer to memory we're fixing up +#. val = VMA of what we need to refer to +#. +#: pe-mips.c:794 #, c-format -msgid "\t[Name Pointer/Ordinal] Table\t%08lx\n" -msgstr "\t[Ýsim Gösterge/Onluk] Tablo\t%08lx\n" - -#: peigen.c:1449 -msgid "Table Addresses\n" -msgstr "Tablo Adresleri\n" - -#: peigen.c:1452 -msgid "\tExport Address Table \t\t" -msgstr "\tÝhraç Adres Tablosu \t\t" - -#: peigen.c:1457 -msgid "\tName Pointer Table \t\t" -msgstr "\tÝsim Gösterge Tablosu \t\t" - -#: peigen.c:1462 -msgid "\tOrdinal Table \t\t\t" -msgstr "\tOnluk Tablo \t\t\t" +msgid "%s: unimplemented %s\n" +msgstr "%s: tamamlanmamýþ %s\n" -#: peigen.c:1476 +#: pe-mips.c:820 #, c-format -msgid "\nExport Address Table -- Ordinal Base %ld\n" -msgstr "\nÝhraç Adres Tablosu -- Onluk Sistem %ld\n" - -#: peigen.c:1495 -msgid "Forwarder RVA" -msgstr "RVA Yönlendiricisi" - -#: peigen.c:1506 -msgid "Export RVA" -msgstr "RVA Ýhracý" - -#: peigen.c:1513 -msgid "\n[Ordinal/Name Pointer] Table\n" -msgstr "\n[Onluk/Ýsim Gösterge] Tablosu\n" +msgid "%s: jump too far away\n" +msgstr "%s: sýçrama fazla uzak\n" -#: peigen.c:1568 +#: pe-mips.c:847 #, c-format -msgid "Warning, .pdata section size (%ld) is not a multiple of %d\n" -msgstr "Uyarý, .pdata bölüm boyu (%ld) %d'nin katý deðil\n" - -#: peigen.c:1572 -msgid "\nThe Function Table (interpreted .pdata section contents)\n" -msgstr "\nÝþlev Tablosu (.pdata bölüm içeriði çözümlendi)\n" - -#: peigen.c:1575 -msgid " vma:\t\t\tBegin Address End Address Unwind Info\n" -msgstr " vma:\t\t\tBaþlangýç Adresi Sonlanma Adresi Geri Al Bilgisi\n" - -#: peigen.c:1578 -msgid " vma:\t\tBegin End EH EH PrologEnd Exception\n" -msgstr " vma:\t\tBaþl. Son EH EH PrologSon Ýstisna\n" - -#: peigen.c:1580 -msgid " \t\tAddress Address Handler Data Address Mask\n" -msgstr " \t\tAdres Adres Yön. Veri Adres Mask\n" - -#: peigen.c:1652 -msgid " Register save millicode" -msgstr " Yazma milikodunu kaydet" - -#: peigen.c:1655 -msgid " Register restore millicode" -msgstr " Geri alma milikodunu kaydet" - -#: peigen.c:1658 -msgid " Glue code sequence" -msgstr " Birleþtirici kod dizisi" - -#: peigen.c:1709 -msgid "\n\nPE File Base Relocations (interpreted .reloc section contents)\n" -msgstr "\n\nPE Dosya Temel Yerdeðiþimi (.reloc bölüm içeriði çözümlendi)\n" +msgid "%s: bad pair/reflo after refhi\n" +msgstr "%s: refhi'den sonra hatalý çift/reflo\n" -#: peigen.c:1744 +#. XXX code yet to be written. +#: peicode.h:785 #, c-format -msgid "\nVirtual Address: %08lx Chunk size %ld (0x%lx) Number of fixups %ld\n" -msgstr "\nSanal Adres: %08lx Parça boyu %ld (0x%lx) Düzeltme Sayýsý %ld\n" +msgid "%s: Unhandled import type; %x" +msgstr "%s: Desteklenmeyen ithal türü; %x" -#: peigen.c:1757 +#: peicode.h:790 #, c-format -msgid "\treloc %4d offset %4x [%4lx] %s" -msgstr "\tyer deðiþim %4d göreli konum %4x [%4lx] %s" +msgid "%s: Unrecognised import type; %x" +msgstr "%s: Tanýnmayan ithal türü; %x" -#. The MS dumpbin program reportedly ands with 0xff0f before -#. printing the characteristics field. Not sure why. No reason to -#. emulate it here. -#: peigen.c:1796 +#: peicode.h:804 #, c-format -msgid "\nCharacteristics 0x%x\n" -msgstr "\nÖzellikler 0x%x\n" +msgid "%s: Unrecognised import name type; %x" +msgstr "%s: Tanýnmayan ithal isim türü; %x" -#: pe-mips.c:653 +#: peicode.h:1162 #, c-format -msgid "%s: `ld -r' not supported with PE MIPS objects\n" -msgstr "%s: `ld -r' PE MIPS nesneleri ile birlikte desteklenmiyor\n" +msgid "%s: Unrecognised machine type (0x%x) in Import Library Format archive" +msgstr "" +"%s: Ýthal Kitaplýk Biçem (ILF) arþivinde tanýnmayan makina türü (0x%x) " -#. OK, at this point the following variables are set up: -#. src = VMA of the memory we're fixing up -#. mem = pointer to memory we're fixing up -#. val = VMA of what we need to refer to -#. -#: pe-mips.c:789 +#: peicode.h:1174 #, c-format -msgid "%s: unimplemented %s\n" -msgstr "%s: tamamlanmamýþ %s\n" +msgid "" +"%s: Recognised but unhandled machine type (0x%x) in Import Library Format " +"archive" +msgstr "" +"%s: Ýthal Kitaplýk Biçem (ILF) arþivinde bilinen fakat desteklenmeyen makina " +"türü (0x%x)" -#: pe-mips.c:815 +#: peicode.h:1191 #, c-format -msgid "%s: jump too far away\n" -msgstr "%s: sýçrama fazla uzak\n" +msgid "%s: size field is zero in Import Library Format header" +msgstr "%s: Ýthal Kitaplýk Biçem (ILF) baþlýðýnda boy alaný sýfýr" -#: pe-mips.c:842 +#: peicode.h:1219 #, c-format -msgid "%s: bad pair/reflo after refhi\n" -msgstr "%s: refhi'den sonra hatalý çift/reflo\n" +msgid "%s: string not null terminated in ILF object file." +msgstr "%s: ILF nesne dosyasýnda dizge boþ deðerle sonlanmamýþ." -#: ppcboot.c:422 -msgid "\nppcboot header:\n" -msgstr "\nppcboot baþlýðý:\n" +#: ppcboot.c:416 +msgid "" +"\n" +"ppcboot header:\n" +msgstr "" +"\n" +"ppcboot baþlýðý:\n" -#: ppcboot.c:423 +#: ppcboot.c:417 #, c-format msgid "Entry offset = 0x%.8lx (%ld)\n" msgstr "Girdi göreli konumu = 0x%.8lx (%ld)\n" -#: ppcboot.c:424 +#: ppcboot.c:418 #, c-format msgid "Length = 0x%.8lx (%ld)\n" msgstr "Uzunluk = 0x%.8lx (%ld)\n" -#: ppcboot.c:427 +#: ppcboot.c:421 #, c-format msgid "Flag field = 0x%.2x\n" msgstr "Bayrak alaný = 0x%.2x\n" -#: ppcboot.c:433 +#: ppcboot.c:427 #, c-format msgid "Partition name = \"%s\"\n" msgstr "Bölüm adý = \"%s\"\n" -#: ppcboot.c:452 +#: ppcboot.c:446 #, c-format -msgid "\nPartition[%d] start = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" -msgstr "\nBölüm[%d] baþlangýcý = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" +msgid "" +"\n" +"Partition[%d] start = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" +msgstr "" +"\n" +"Bölüm[%d] baþlangýcý = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" -#: ppcboot.c:458 +#: ppcboot.c:452 #, c-format msgid "Partition[%d] end = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" msgstr "Bölüm[%d] sonu = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }\n" -#: ppcboot.c:464 +#: ppcboot.c:458 #, c-format msgid "Partition[%d] sector = 0x%.8lx (%ld)\n" msgstr "Bölüm[%d] sektörü = 0x%.8lx (%ld)\n" -#: ppcboot.c:465 +#: ppcboot.c:459 #, c-format msgid "Partition[%d] length = 0x%.8lx (%ld)\n" msgstr "Bölüm[%d] uzunluðu = 0x%.8lx (%ld)\n" -#: som.c:5355 +#: som.c:5402 msgid "som_sizeof_headers unimplemented" msgstr "som_sizeof_headers tamamlanmamýþ" -#: srec.c:300 +#: srec.c:301 #, c-format msgid "%s:%d: Unexpected character `%s' in S-record file\n" msgstr "%s:%d: S-kayýt dosyasýnda beklenmeyen `%s' karakteri\n" -#: syms.c:968 +#: syms.c:998 msgid "Unsupported .stab relocation" msgstr "Desteklenmeyen .stab yerdeðiþimi" -#: vms-gsd.c:354 +#: vms-gsd.c:356 #, c-format msgid "bfd_make_section (%s) failed" msgstr "bfd_make_section (%s) baþarýsýz" -#: vms-gsd.c:368 +#: vms-gsd.c:371 #, c-format msgid "bfd_set_section_flags (%s, %x) failed" msgstr "bfd_set_section_flags (%s, %x) baþarýsýz" -#: vms-gsd.c:404 +#: vms-gsd.c:407 #, c-format msgid "Size mismatch section %s=%lx, %s=%lx" msgstr "Boy uyumsuzluðu bölümü %s=%lx, %s=%lx" -#: vms-gsd.c:699 +#: vms-gsd.c:704 #, c-format msgid "unknown gsd/egsd subtype %d" msgstr "bilinmeyen gsd/egsd alt türü %d" -#: vms-hdr.c:403 +#: vms-hdr.c:406 msgid "Object module NOT error-free !\n" msgstr "Nesne modülü hatasýz DEÐÝL !\n" -#: vms-misc.c:539 +#: vms-misc.c:543 #, c-format msgid "Stack overflow (%d) in _bfd_vms_push" msgstr "_bfd_vms_push'da yýðýt taþmasý (%d)" -#: vms-misc.c:557 +#: vms-misc.c:561 msgid "Stack underflow in _bfd_vms_pop" msgstr "_bfd_vms_pop'da yýðýt alt taþmasý" -#: vms-misc.c:915 +#: vms-misc.c:919 msgid "_bfd_vms_output_counted called with zero bytes" msgstr "_bfd_vms_output_counted sýfýr bayt ile çaðrýldý" -#: vms-misc.c:920 +#: vms-misc.c:924 msgid "_bfd_vms_output_counted called with too many bytes" msgstr "_bfd_vms_output_counted fazla bayt ile çaðrýldý" -#: vms-misc.c:1051 +#: vms-misc.c:1055 #, c-format msgid "Symbol %s replaced by %s\n" msgstr "%s sembolü %s ile deðiþtirildi\n" -#: vms-misc.c:1113 +#: vms-misc.c:1117 #, c-format msgid "failed to enter %s" msgstr "%s'e giriþ baþarýsýz" -#: vms-tir.c:68 +#: vms-tir.c:81 msgid "No Mem !" msgstr "Hafýza Yok !" -#: vms-tir.c:302 -msgid "Bad section index in ETIR_S_C_STA_PQ" +#: vms-tir.c:362 +#, fuzzy, c-format +msgid "bad section index in %s" msgstr "ETIR_S_C_STA_PQ'de hatalý bölüm indeksi" -#: vms-tir.c:317 -#, c-format -msgid "Unsupported STA cmd %d" +#: vms-tir.c:375 +#, fuzzy, c-format +msgid "unsupported STA cmd %s" msgstr "Desteklenmeyen STA komutu %d" -#: vms-tir.c:322 vms-tir.c:1274 -#, c-format -msgid "Reserved STA cmd %d" +#: vms-tir.c:380 vms-tir.c:1240 +#, fuzzy, c-format +msgid "reserved STA cmd %d" msgstr "Ayrýlmýþ STA komutu %d" -#: vms-tir.c:428 -#, c-format -msgid "ETIR_S_C_STO_GBL: no symbol \"%s\"" -msgstr "ETIR_S_C_STO_GBL: sembol yok \"%s\"" - -#: vms-tir.c:449 -#, c-format -msgid "ETIR_S_C_STO_CA: no symbol \"%s\"" -msgstr "ETIR_S_C_STO_CA: sembol yok \"%s\"" - -#: vms-tir.c:462 -msgid "ETIR_S_C_STO_RB/AB: Not supported" -msgstr "ETIR_S_C_STO_RB/AB: Desteklenmiyor" - -#: vms-tir.c:520 -msgid "ETIR_S_C_STO_LP_PSB: Not supported" -msgstr "ETIR_S_C_STO_LP_PSB: Desteklenmiyor" +#: vms-tir.c:491 vms-tir.c:514 +#, fuzzy, c-format +msgid "%s: no symbol \"%s\"" +msgstr "%s: böyle bir sembol yok" -#: vms-tir.c:526 -msgid "ETIR_S_C_STO_HINT_GBL: not implemented" -msgstr "ETIR_S_C_STO_HINT_GBL: tamamlanmamýþ" +#. unsigned shift +#. rotate +#. Redefine symbol to current location. +#. Define a literal. +#: vms-tir.c:581 vms-tir.c:693 vms-tir.c:803 vms-tir.c:821 vms-tir.c:829 +#: vms-tir.c:838 vms-tir.c:1563 +#, fuzzy, c-format +msgid "%s: not supported" +msgstr "desteklemez" -#: vms-tir.c:532 -msgid "ETIR_S_C_STO_HINT_PS: not implemented" -msgstr "ETIR_S_C_STO_HINT_PS: tamamlanmamýþ" +#: vms-tir.c:586 vms-tir.c:1418 +#, fuzzy, c-format +msgid "%s: not implemented" +msgstr "%s: tamamlanmamýþ %s\n" -#: vms-tir.c:536 vms-tir.c:1446 -#, c-format -msgid "Reserved STO cmd %d" +#: vms-tir.c:590 vms-tir.c:1422 +#, fuzzy, c-format +msgid "reserved STO cmd %d" msgstr "Ayrýlmýþ STO komutu %d" -#: vms-tir.c:649 -msgid "ETIR_S_C_OPR_INSV: Not supported" -msgstr "ETIR_S_C_OPR_INSV: Desteklenmiyor" - -#: vms-tir.c:667 -msgid "ETIR_S_C_OPR_USH: Not supported" -msgstr "ETIR_S_C_OPR_USH: Desteklenmiyor" - -#: vms-tir.c:673 -msgid "ETIR_S_C_OPR_ROT: Not supported" -msgstr "ETIR_S_C_OPR_ROT: Desteklenmiyor" - -#: vms-tir.c:692 -msgid "ETIR_S_C_OPR_REDEF: Not supported" -msgstr "ETIR_S_C_OPR_REDEF: Desteklenmiyor" - -#: vms-tir.c:698 -msgid "ETIR_S_C_OPR_DFLIT: Not supported" -msgstr "ETIR_S_C_OPR_DFLIT: Desteklenmiyor" - -#: vms-tir.c:702 vms-tir.c:1641 -#, c-format -msgid "Reserved OPR cmd %d" +#: vms-tir.c:708 vms-tir.c:1568 +#, fuzzy, c-format +msgid "reserved OPR cmd %d" msgstr "Ayrýlmýþ OPR komutu %d" -#: vms-tir.c:770 vms-tir.c:1710 -#, c-format -msgid "Reserved CTL cmd %d" +#: vms-tir.c:776 vms-tir.c:1632 +#, fuzzy, c-format +msgid "reserved CTL cmd %d" msgstr "Ayrýlmýþ CTL komutu %d" -#: vms-tir.c:798 -msgid "ETIR_S_C_STC_LP: not supported" -msgstr "ETIR_S_C_STC_LP: desteklenmiyor" - -#: vms-tir.c:816 -msgid "ETIR_S_C_STC_GBL: not supported" -msgstr "ETIR_S_C_STC_GBL: desteklenmiyor" - -#: vms-tir.c:824 -msgid "ETIR_S_C_STC_GCA: not supported" -msgstr "ETIR_S_C_STC_GCA: desteklenmiyor" - -#: vms-tir.c:833 -msgid "ETIR_S_C_STC_PS: not supported" -msgstr "ETIR_S_C_STC_PS: desteklenmiyor" - -#. -#. * stack byte from image -#. * arg: - -#. * -#. -#: vms-tir.c:1174 -msgid "Stack-from-image not implemented" +#. stack byte from image +#. arg: none. +#: vms-tir.c:1148 +#, fuzzy +msgid "stack-from-image not implemented" msgstr "Görüntüden-yýðýt tamamlanmamýþ" -#: vms-tir.c:1194 -msgid "Stack-entry-mask not fully implemented" +#: vms-tir.c:1166 +#, fuzzy +msgid "stack-entry-mask not fully implemented" msgstr "Yýðýn girdi maský tamamlanmamýþ" +#. compare procedure argument +#. arg: cs symbol name +#. by argument index +#. da argument descriptor #. -#. * compare procedure argument -#. * arg: cs symbol name -#. * by argument index -#. * da argument descriptor -#. * -#. * compare argument descriptor with symbol argument (ARG$V_PASSMECH) -#. * and stack TRUE (args match) or FALSE (args dont match) value -#. -#: vms-tir.c:1210 +#. compare argument descriptor with symbol argument (ARG$V_PASSMECH) +#. and stack TRUE (args match) or FALSE (args dont match) value. +#: vms-tir.c:1180 msgid "PASSMECH not fully implemented" msgstr "PASSMECH tamamlanmamýþ" -#: vms-tir.c:1230 -msgid "Stack-local-symbol not fully implemented" +#: vms-tir.c:1199 +#, fuzzy +msgid "stack-local-symbol not fully implemented" msgstr "Yerel sembol yýðýtý tamamlanmamýþ" -#: vms-tir.c:1245 -msgid "Stack-literal not fully implemented" +#: vms-tir.c:1212 +#, fuzzy +msgid "stack-literal not fully implemented" msgstr "Yýðýt sabiti tamamlanmamýþ" -#: vms-tir.c:1267 -msgid "Stack-local-symbol-entry-point-mask not fully implemented" +#: vms-tir.c:1233 +#, fuzzy +msgid "stack-local-symbol-entry-point-mask not fully implemented" msgstr "Yýðýn yerel sembol girdi nokta maský tamamlanmamýþ" -#: vms-tir.c:1442 -#, c-format -msgid "Unimplemented STO cmd %d" -msgstr "Tamamlanmamýþ STO komutu %d" - -#: vms-tir.c:1581 -msgid "TIR_S_C_OPR_ASH incomplete" -msgstr "TIR_S_C_OPR_ASH tamamlanmamýþ" - -#: vms-tir.c:1595 -msgid "TIR_S_C_OPR_USH incomplete" -msgstr "TIR_S_C_OPR_USH tamamlanmamýþ" - -#: vms-tir.c:1609 -msgid "TIR_S_C_OPR_ROT incomplete" -msgstr "TIR_S_C_OPR_ROT tamamlanmamýþ" - -#. -#. * redefine symbol to current location -#. -#: vms-tir.c:1630 -msgid "TIR_S_C_OPR_REDEF not supported" -msgstr "TIR_S_C_OPR_REDEF desteklenmiyor" - -#. -#. * define a literal -#. -#: vms-tir.c:1637 -msgid "TIR_S_C_OPR_DFLIT not supported" -msgstr "TIR_S_C_OPR_DFLIT desteklenmiyor" - -#: vms-tir.c:1691 -msgid "TIR_S_C_CTL_DFLOC not fully implemented" -msgstr "TIR_S_C_CTL_DFLOC tamamlanmamýþ" - -#: vms-tir.c:1699 -msgid "TIR_S_C_CTL_STLOC not fully implemented" -msgstr "TIR_S_C_CTL_STLOC tamamlanmamýþ" - -#: vms-tir.c:1707 -msgid "TIR_S_C_CTL_STKDL not fully implemented" -msgstr "TIR_S_C_CTL_STKDL tamamlanmamýþ" +#: vms-tir.c:1510 vms-tir.c:1522 vms-tir.c:1534 vms-tir.c:1546 vms-tir.c:1611 +#: vms-tir.c:1619 vms-tir.c:1627 +#, fuzzy, c-format +msgid "%s: not fully implemented" +msgstr "PASSMECH tamamlanmamýþ" -#: vms-tir.c:1761 -#, c-format -msgid "Obj code %d not found" +#: vms-tir.c:1684 +#, fuzzy, c-format +msgid "obj code %d not found" msgstr "Nesne kodu %d bulunmadý" -#: vms-tir.c:2102 +#: vms-tir.c:2019 #, c-format msgid "SEC_RELOC with no relocs in section %s" msgstr "%s bölümünde yerdeðiþim olmaksýzýn SEC_RELOC" -#: vms-tir.c:2376 +#: vms-tir.c:2307 #, c-format msgid "Unhandled relocation %s" msgstr "Desteklenmeyen yerdeðiþim %s" -#: xcofflink.c:1634 +#: xcofflink.c:1241 #, c-format msgid "%s: `%s' has line numbers but no enclosing section" msgstr "%s: `%s' satýr numaralarýna sahip fakat onu içeren bölümü yok" -#: xcofflink.c:1686 +#: xcofflink.c:1294 #, c-format msgid "%s: class %d symbol `%s' has no aux entries" msgstr "%s: sýnýf %d sembol `%s'un alternatif girdileri yok" -#: xcofflink.c:1709 +#: xcofflink.c:1317 #, c-format msgid "%s: symbol `%s' has unrecognized csect type %d" msgstr "%s: `%s' sembolünde bilinmeyen csect türü %d var" -#: xcofflink.c:1721 +#: xcofflink.c:1329 #, c-format msgid "%s: bad XTY_ER symbol `%s': class %d scnum %d scnlen %d" msgstr "%s: hatalý XTY_ER sembolü `%s': sýnýf %d scnum %d scnlen %d" -#: xcofflink.c:1760 +#: xcofflink.c:1365 #, c-format msgid "%s: XMC_TC0 symbol `%s' is class %d scnlen %d" msgstr "%s: XMC_TC0 sembolü `%s': sýnýf %d scnlen %d" -#: xcofflink.c:1883 -#, c-format -msgid "%s: symbol `%s' has unrecognized smclas %d" -msgstr "%s: `%s' sembolünde bilinmeyen %d var" - -#: xcofflink.c:1902 +#: xcofflink.c:1517 #, c-format msgid "%s: csect `%s' not in enclosing section" msgstr "%s: csect `%s' onu içeren bölümde deðil" -#: xcofflink.c:2006 +#: xcofflink.c:1624 #, c-format msgid "%s: misplaced XTY_LD `%s'" msgstr "%s: XTY_LD `%s'yanlýþ yerde" -#: xcofflink.c:2317 +#: xcofflink.c:1948 #, c-format msgid "%s: reloc %s:%d not in csect" msgstr "%s: yerdeðiþim %s:%d csect içinde deðil" -#: xcofflink.c:2452 +#: xcofflink.c:2083 #, c-format msgid "%s: XCOFF shared object when not producing XCOFF output" msgstr "%s: XCOFF çýktýsý oluþturulmazken XCOFF paylaþýmlý nesnesi" -#: xcofflink.c:2473 +#: xcofflink.c:2104 #, c-format msgid "%s: dynamic object with no .loader section" msgstr "%s: .loader bölümü olmayan dinamik nesne" -#: xcofflink.c:3113 +#: xcofflink.c:2749 #, c-format msgid "%s: no such symbol" msgstr "%s: böyle bir sembol yok" -#: xcofflink.c:3704 +#: xcofflink.c:2890 +msgid "error: undefined symbol __rtinit" +msgstr "" + +#: xcofflink.c:3458 #, c-format msgid "warning: attempt to export undefined symbol `%s'" msgstr "uyarý: tanýmlanmamýþ `%s' sembolünü ihraç denemesi" -#: xcofflink.c:4698 +#: xcofflink.c:4452 #, c-format msgid "TOC overflow: 0x%lx > 0x10000; try -mminimal-toc when compiling" msgstr "TOC taþmasý: 0x%lx > 0x10000; -mminimal-toc ile derlemeyi deneyin" -#: xcofflink.c:5523 xcofflink.c:5879 xcofflink.c:5916 xcofflink.c:6233 +#: xcofflink.c:5292 xcofflink.c:5754 xcofflink.c:5816 xcofflink.c:6117 #, c-format msgid "%s: loader reloc in unrecognized section `%s'" msgstr "%s: bilinmeyen `%s' bölümünde yükleyici yerdeðiþimi" -#: xcofflink.c:5545 xcofflink.c:6244 +#: xcofflink.c:5314 xcofflink.c:6128 #, c-format msgid "%s: `%s' in loader reloc but not loader sym" msgstr "%s: `%s' yükleyici yerdeðiþiminde fakat yükleyici sembolü deðil" -#: xcofflink.c:5560 +#: xcofflink.c:5329 #, c-format msgid "%s: loader reloc in read-only section %s" msgstr "%s: %s salt-okunur bölümünde yükleyici yerdeðiþimi" -#: xcofflink.c:6440 +#: elf32-ia64.c:2189 elf64-ia64.c:2189 +#, fuzzy +msgid "@pltoff reloc against local symbol" +msgstr "%s: 0x%lx'deki CALL16 yerdeðiþimi evrensel sembole göre deðil" + +#: elf32-ia64.c:3413 elf64-ia64.c:3413 #, c-format -msgid "%s: unsupported relocation type 0x%02x" -msgstr "%s: desteklenmeyen yükleyici yerdeðiþimi 0x%02x" +msgid "%s: short data segment overflowed (0x%lx >= 0x400000)" +msgstr "" -#: xcofflink.c:6486 +#: elf32-ia64.c:3424 elf64-ia64.c:3424 #, c-format -msgid "%s: TOC reloc at 0x%x to symbol `%s' with no TOC entry" -msgstr "%s: 0x%x'da TOC girdisi olmayan `%s' sembolüne TOC yerdeðiþimi" +msgid "%s: __gp does not cover short data segment" +msgstr "" + +#: elf32-ia64.c:3728 elf64-ia64.c:3728 +#, c-format +msgid "%s: linking non-pic code in a shared library" +msgstr "" + +#: elf32-ia64.c:3761 elf64-ia64.c:3761 +#, fuzzy, c-format +msgid "%s: @gprel relocation against dynamic symbol %s" +msgstr "%1$s: %3$s sembolü için bilinmeyen %2$d türünde yerdeðiþimi" + +#: elf32-ia64.c:3900 elf64-ia64.c:3900 +#, fuzzy, c-format +msgid "%s: dynamic relocation against speculation fixup" +msgstr "%s: .loader bölümü olmayan dinamik nesne" + +#: elf32-ia64.c:3908 elf64-ia64.c:3908 +#, c-format +msgid "%s: speculation fixup against undefined weak symbol" +msgstr "" + +#: elf32-ia64.c:4092 elf64-ia64.c:4092 +#, fuzzy +msgid "unsupported reloc" +msgstr "desteklenmeyen yer deðiþtirme türü" + +#: elf32-ia64.c:4372 elf64-ia64.c:4372 +#, fuzzy, c-format +msgid "%s: linking trap-on-NULL-dereference with non-trapping files" +msgstr "%s: abicalls dosyalarý abicalls olmayan dosyalarla baðlanýyor" + +#: elf32-ia64.c:4381 elf64-ia64.c:4381 +#, fuzzy, c-format +msgid "%s: linking big-endian files with little-endian files" +msgstr "%s: küçük sonlu dosyalar büyük sonlu dosyalarla baðlanýyor" + +#: elf32-ia64.c:4390 elf64-ia64.c:4390 +#, fuzzy, c-format +msgid "%s: linking 64-bit files with 32-bit files" +msgstr "%s: abicalls dosyalarý abicalls olmayan dosyalarla baðlanýyor" + +#: elf32-ia64.c:4399 elf64-ia64.c:4399 +#, fuzzy, c-format +msgid "%s: linking constant-gp files with non-constant-gp files" +msgstr "%s: abicalls dosyalarý abicalls olmayan dosyalarla baðlanýyor" + +#: elf32-ia64.c:4409 elf64-ia64.c:4409 +#, fuzzy, c-format +msgid "%s: linking auto-pic files with non-auto-pic files" +msgstr "%s: abicalls dosyalarý abicalls olmayan dosyalarla baðlanýyor" + +#: peigen.c:962 pepigen.c:962 +#, c-format +msgid "%s: line number overflow: 0x%lx > 0xffff" +msgstr "%s: satýr numarasý taþmasý: 0x%lx > 0xffff" + +#: peigen.c:979 pepigen.c:979 +#, c-format +msgid "%s: reloc overflow 1: 0x%lx > 0xffff" +msgstr "%s: yerdeðiþim taþmasý 1: 0x%lx > 0xffff" + +#: peigen.c:993 pepigen.c:993 +msgid "Export Directory [.edata (or where ever we found it)]" +msgstr "Ýhraç Dizini [.edata (veya nerede bulundu ise)]" + +#: peigen.c:994 pepigen.c:994 +msgid "Import Directory [parts of .idata]" +msgstr "Ýthal Dizini [.idata'nýn parçalarý]" + +#: peigen.c:995 pepigen.c:995 +msgid "Resource Directory [.rsrc]" +msgstr "Kaynak Dizini [.rsrc]" + +#: peigen.c:996 pepigen.c:996 +msgid "Exception Directory [.pdata]" +msgstr "Ýstisna Dizini [.pdata]" + +#: peigen.c:997 pepigen.c:997 +msgid "Security Directory" +msgstr "Güvenlik Dizini" + +#: peigen.c:998 pepigen.c:998 +msgid "Base Relocation Directory [.reloc]" +msgstr "Temel Yerdeðiþim Dizini [.reloc]" + +#: peigen.c:999 pepigen.c:999 +msgid "Debug Directory" +msgstr "Hata Ayýklama Dizini" + +#: peigen.c:1000 pepigen.c:1000 +msgid "Description Directory" +msgstr "Açýklama Dizini" + +#: peigen.c:1001 pepigen.c:1001 +msgid "Special Directory" +msgstr "Özel Dizin" + +#: peigen.c:1002 pepigen.c:1002 +msgid "Thread Storage Directory [.tls]" +msgstr "Dal Saklama Dizini [.tls]" + +#: peigen.c:1003 pepigen.c:1003 +msgid "Load Configuration Directory" +msgstr "Ayar Yükleme Dizini" + +#: peigen.c:1004 pepigen.c:1004 +msgid "Bound Import Directory" +msgstr "Sýnýr Ýthal Dizini" + +#: peigen.c:1005 pepigen.c:1005 +msgid "Import Address Table Directory" +msgstr "Adres Tablosu Ýthal Dizini" + +#: peigen.c:1006 pepigen.c:1006 +msgid "Delay Import Directory" +msgstr "Gecikmeli Ýthal Dizini" + +#: peigen.c:1007 peigen.c:1008 pepigen.c:1007 pepigen.c:1008 +msgid "Reserved" +msgstr "Ayrýlmýþ" + +#: peigen.c:1071 pepigen.c:1071 +msgid "" +"\n" +"There is an import table, but the section containing it could not be found\n" +msgstr "" +"\n" +"Bir ithal tablosu var, fakat onu içeren bölüm bulunamadý\n" + +#: peigen.c:1076 pepigen.c:1076 +#, c-format +msgid "" +"\n" +"There is an import table in %s at 0x%lx\n" +msgstr "" +"\n" +"%s içerisinde 0x%lx'de bir ithal tablosu var\n" + +#: peigen.c:1113 pepigen.c:1113 +#, c-format +msgid "" +"\n" +"Function descriptor located at the start address: %04lx\n" +msgstr "" +"\n" +"Baþlangýç adresinde iþlev betimleyicisi bulundu: %04lx\n" + +#: peigen.c:1116 pepigen.c:1116 +#, c-format +msgid "\tcode-base %08lx toc (loadable/actual) %08lx/%08lx\n" +msgstr "\tkod temeli %08lx toc (yüklenebilir/gerçek) %08lx/%08lx\n" + +#: peigen.c:1122 pepigen.c:1122 +msgid "" +"\n" +"No reldata section! Function descriptor not decoded.\n" +msgstr "" +"\n" +"Reldata bölümü yok! Ýþlev betimleyicisi çözümlenemedi.\n" + +#: peigen.c:1127 pepigen.c:1127 +#, c-format +msgid "" +"\n" +"The Import Tables (interpreted %s section contents)\n" +msgstr "" +"\n" +"Ýthal Tablolarý (%s bölüm içeriði çözümlendi)\n" + +#: peigen.c:1130 pepigen.c:1130 +#, fuzzy +msgid "" +" vma: Hint Time Forward DLL First\n" +" Table Stamp Chain Name Thunk\n" +msgstr " Tablo Damga Zincir Ýsim Parça\n" + +#: peigen.c:1180 pepigen.c:1180 +#, c-format +msgid "" +"\n" +"\tDLL Name: %s\n" +msgstr "" +"\n" +"\tDLL Adý: %s\n" + +#: peigen.c:1184 peigen.c:1247 pepigen.c:1184 pepigen.c:1247 +msgid "\tvma: Hint/Ord Member-Name\n" +msgstr "\tvma: Ýpucu/Sýra Üye-Adý\n" + +#: peigen.c:1246 pepigen.c:1246 +msgid "\tThe Import Address Table (difference found)\n" +msgstr "\tÝthal Adres Tablosu (fark bulundu)\n" + +#: peigen.c:1253 pepigen.c:1253 +msgid "\t>>> Ran out of IAT members!\n" +msgstr "\t>>> IAT üyeleri bitti!\n" + +#: peigen.c:1271 pepigen.c:1271 +msgid "\tThe Import Address Table is identical\n" +msgstr "\tÝthal Adres Tablosu ayný\n" + +#: peigen.c:1343 pepigen.c:1343 +msgid "" +"\n" +"There is an export table, but the section containing it could not be found\n" +msgstr "" +"\n" +"Bir ihraç tablosu var, fakat onu içeren bölüm bulunamadý\n" + +#: peigen.c:1348 pepigen.c:1348 +#, c-format +msgid "" +"\n" +"There is an export table in %s at 0x%lx\n" +msgstr "" +"\n" +"%s içinde 0x%lx'de bir ihraç tablosu var\n" + +#: peigen.c:1379 pepigen.c:1379 +#, c-format +msgid "" +"\n" +"The Export Tables (interpreted %s section contents)\n" +"\n" +msgstr "" +"\n" +"Ýhraç Tablolarý (%s bölüm içeriði çözümlendi)\n" +"\n" + +#: peigen.c:1383 pepigen.c:1383 +#, c-format +msgid "Export Flags \t\t\t%lx\n" +msgstr "Ýhraç Bayraklarý \t\t\t%lx\n" + +#: peigen.c:1386 pepigen.c:1386 +#, c-format +msgid "Time/Date stamp \t\t%lx\n" +msgstr "Saat/Tarih damgasý \t\t%lx\n" + +#: peigen.c:1389 pepigen.c:1389 +#, c-format +msgid "Major/Minor \t\t\t%d/%d\n" +msgstr "Majör/Minör \t\t\t%d/%d\n" + +#: peigen.c:1392 pepigen.c:1392 +msgid "Name \t\t\t\t" +msgstr "Ýsim \t\t\t\t" + +#: peigen.c:1398 pepigen.c:1398 +#, c-format +msgid "Ordinal Base \t\t\t%ld\n" +msgstr "Onluk Sistem \t\t\t%ld\n" + +#: peigen.c:1401 pepigen.c:1401 +msgid "Number in:\n" +msgstr "Sayý içinde:\n" + +#: peigen.c:1404 pepigen.c:1404 +#, c-format +msgid "\tExport Address Table \t\t%08lx\n" +msgstr "\tÝhraç Adres Tablosu \t\t%08lx\n" + +#: peigen.c:1408 pepigen.c:1408 +#, c-format +msgid "\t[Name Pointer/Ordinal] Table\t%08lx\n" +msgstr "\t[Ýsim Gösterge/Onluk] Tablo\t%08lx\n" + +#: peigen.c:1411 pepigen.c:1411 +msgid "Table Addresses\n" +msgstr "Tablo Adresleri\n" + +#: peigen.c:1414 pepigen.c:1414 +msgid "\tExport Address Table \t\t" +msgstr "\tÝhraç Adres Tablosu \t\t" + +#: peigen.c:1419 pepigen.c:1419 +msgid "\tName Pointer Table \t\t" +msgstr "\tÝsim Gösterge Tablosu \t\t" + +#: peigen.c:1424 pepigen.c:1424 +msgid "\tOrdinal Table \t\t\t" +msgstr "\tOnluk Tablo \t\t\t" + +#: peigen.c:1439 pepigen.c:1439 +#, c-format +msgid "" +"\n" +"Export Address Table -- Ordinal Base %ld\n" +msgstr "" +"\n" +"Ýhraç Adres Tablosu -- Onluk Sistem %ld\n" + +#: peigen.c:1458 pepigen.c:1458 +msgid "Forwarder RVA" +msgstr "RVA Yönlendiricisi" + +#: peigen.c:1469 pepigen.c:1469 +msgid "Export RVA" +msgstr "RVA Ýhracý" + +#: peigen.c:1476 pepigen.c:1476 +msgid "" +"\n" +"[Ordinal/Name Pointer] Table\n" +msgstr "" +"\n" +"[Onluk/Ýsim Gösterge] Tablosu\n" + +#: peigen.c:1531 pepigen.c:1531 +#, c-format +msgid "Warning, .pdata section size (%ld) is not a multiple of %d\n" +msgstr "Uyarý, .pdata bölüm boyu (%ld) %d'nin katý deðil\n" + +#: peigen.c:1535 pepigen.c:1535 +msgid "" +"\n" +"The Function Table (interpreted .pdata section contents)\n" +msgstr "" +"\n" +"Ýþlev Tablosu (.pdata bölüm içeriði çözümlendi)\n" + +#: peigen.c:1538 pepigen.c:1538 +msgid " vma:\t\t\tBegin Address End Address Unwind Info\n" +msgstr " vma:\t\t\tBaþlangýç Adresi Sonlanma Adresi Geri Al Bilgisi\n" + +#: peigen.c:1540 pepigen.c:1540 +#, fuzzy +msgid "" +" vma:\t\tBegin End EH EH PrologEnd Exception\n" +" \t\tAddress Address Handler Data Address Mask\n" +msgstr " vma:\t\tBaþl. Son EH EH PrologSon Ýstisna\n" + +#: peigen.c:1610 pepigen.c:1610 +msgid " Register save millicode" +msgstr " Yazma milikodunu kaydet" + +#: peigen.c:1613 pepigen.c:1613 +msgid " Register restore millicode" +msgstr " Geri alma milikodunu kaydet" + +#: peigen.c:1616 pepigen.c:1616 +msgid " Glue code sequence" +msgstr " Birleþtirici kod dizisi" + +#: peigen.c:1668 pepigen.c:1668 +msgid "" +"\n" +"\n" +"PE File Base Relocations (interpreted .reloc section contents)\n" +msgstr "" +"\n" +"\n" +"PE Dosya Temel Yerdeðiþimi (.reloc bölüm içeriði çözümlendi)\n" + +#: peigen.c:1698 pepigen.c:1698 +#, c-format +msgid "" +"\n" +"Virtual Address: %08lx Chunk size %ld (0x%lx) Number of fixups %ld\n" +msgstr "" +"\n" +"Sanal Adres: %08lx Parça boyu %ld (0x%lx) Düzeltme Sayýsý %ld\n" + +#: peigen.c:1711 pepigen.c:1711 +#, c-format +msgid "\treloc %4d offset %4x [%4lx] %s" +msgstr "\tyer deðiþim %4d göreli konum %4x [%4lx] %s" + +#. The MS dumpbin program reportedly ands with 0xff0f before +#. printing the characteristics field. Not sure why. No reason to +#. emulate it here. +#: peigen.c:1751 pepigen.c:1751 +#, c-format +msgid "" +"\n" +"Characteristics 0x%x\n" +msgstr "" +"\n" +"Özellikler 0x%x\n" + +#~ msgid "GP relative relocation when GP not defined" +#~ msgstr "GP tanýmlanmamýþken GP göreli yer deðiþtirmesi" + +#~ msgid "AUX tagndx %ld ttlsiz 0x%lx lnnos %ld next %ld" +#~ msgstr "AUX tagndx %ld ttlsiz 0x%lx lnnos %ld sonraki %ld" + +#~ msgid "" +#~ "Warning: Not setting interwork flag of %s since it has already been " +#~ "specified as non-interworking" +#~ msgstr "" +#~ "Uyarý: beraber çalýþmaz diye önceden belirtilmiþ olduðundan %s'nin " +#~ "beraber çalýþma bayraðý atanmadý" + +#~ msgid "Warning: Clearing the interwork flag of %s due to outside request" +#~ msgstr "" +#~ "Uyarý: Dýþ isteðe uyularak %s'nin beraber çalýþma bayraðý temizlendi" + +#~ msgid "float" +#~ msgstr "kayan" + +#~ msgid "integer" +#~ msgstr "tamsayý" + +#~ msgid "soft" +#~ msgstr "soft" + +#~ msgid "hard" +#~ msgstr "hard" + +#~ msgid "Warning: %s %s interworking, whereas %s %s" +#~ msgstr "Uyarý: %s %s beraber çalýþýr, fakat %s %s" + +#~ msgid "supports" +#~ msgstr "destekler" + +#~ msgid "does not" +#~ msgstr "yapmaz" + +#~ msgid "does" +#~ msgstr "yapar" + +#~ msgid "%s(%s+0x%lx): cannot find stub entry %s" +#~ msgstr "%s(%s+0x%lx): koçan giriþi %s bulunamadý" + +#~ msgid "%s(%s+0x%lx): cannot relocate %s, recompile with -ffunction-sections" +#~ msgstr "" +#~ "%s(%s+0x%lx): %s yer deðiþtirtilemez, -ffunction-sections ile yeniden " +#~ "derleyin" + +#~ msgid "" +#~ "creating section symbol, name = %s, value = 0x%.8lx, index = %d, section " +#~ "= 0x%.8lx\n" +#~ msgstr "" +#~ "bölüm sembolü, isim = %s, deðer = 0x%.8lx, indeks = %d, bölüm = 0x%.8lx " +#~ "oluþturuluyor\n" + +#~ msgid " whereas segment starts at 0x%x" +#~ msgstr " fakat parça 0x%x'de baþlýyor" + +#~ msgid "" +#~ "elf_symbol_from_bfd_symbol 0x%.8lx, name = %s, sym num = %d, flags = 0x" +#~ "%.8lx%s\n" +#~ msgstr "" +#~ "bfd sembolünden elf sembolü:0x%.8lx, isim= %s, sem num = %d, bayrak = 0x" +#~ "%.8lx%s\n" + +#~ msgid " vma: Hint Time Forward DLL First\n" +#~ msgstr " vma: Ýpucu Zaman Ýleri DLL Ýlk\n" + +#~ msgid " \t\tAddress Address Handler Data Address Mask\n" +#~ msgstr " \t\tAdres Adres Yön. Veri Adres Mask\n" + +#~ msgid "ETIR_S_C_STO_GBL: no symbol \"%s\"" +#~ msgstr "ETIR_S_C_STO_GBL: sembol yok \"%s\"" + +#~ msgid "ETIR_S_C_STO_CA: no symbol \"%s\"" +#~ msgstr "ETIR_S_C_STO_CA: sembol yok \"%s\"" + +#~ msgid "ETIR_S_C_STO_RB/AB: Not supported" +#~ msgstr "ETIR_S_C_STO_RB/AB: Desteklenmiyor" + +#~ msgid "ETIR_S_C_STO_LP_PSB: Not supported" +#~ msgstr "ETIR_S_C_STO_LP_PSB: Desteklenmiyor" + +#~ msgid "ETIR_S_C_STO_HINT_GBL: not implemented" +#~ msgstr "ETIR_S_C_STO_HINT_GBL: tamamlanmamýþ" + +#~ msgid "ETIR_S_C_STO_HINT_PS: not implemented" +#~ msgstr "ETIR_S_C_STO_HINT_PS: tamamlanmamýþ" + +#~ msgid "ETIR_S_C_OPR_INSV: Not supported" +#~ msgstr "ETIR_S_C_OPR_INSV: Desteklenmiyor" + +#~ msgid "ETIR_S_C_OPR_USH: Not supported" +#~ msgstr "ETIR_S_C_OPR_USH: Desteklenmiyor" + +#~ msgid "ETIR_S_C_OPR_ROT: Not supported" +#~ msgstr "ETIR_S_C_OPR_ROT: Desteklenmiyor" + +#~ msgid "ETIR_S_C_OPR_REDEF: Not supported" +#~ msgstr "ETIR_S_C_OPR_REDEF: Desteklenmiyor" + +#~ msgid "ETIR_S_C_OPR_DFLIT: Not supported" +#~ msgstr "ETIR_S_C_OPR_DFLIT: Desteklenmiyor" + +#~ msgid "ETIR_S_C_STC_LP: not supported" +#~ msgstr "ETIR_S_C_STC_LP: desteklenmiyor" + +#~ msgid "ETIR_S_C_STC_GBL: not supported" +#~ msgstr "ETIR_S_C_STC_GBL: desteklenmiyor" + +#~ msgid "ETIR_S_C_STC_GCA: not supported" +#~ msgstr "ETIR_S_C_STC_GCA: desteklenmiyor" + +#~ msgid "ETIR_S_C_STC_PS: not supported" +#~ msgstr "ETIR_S_C_STC_PS: desteklenmiyor" + +#~ msgid "Unimplemented STO cmd %d" +#~ msgstr "Tamamlanmamýþ STO komutu %d" + +#~ msgid "TIR_S_C_OPR_ASH incomplete" +#~ msgstr "TIR_S_C_OPR_ASH tamamlanmamýþ" + +#~ msgid "TIR_S_C_OPR_USH incomplete" +#~ msgstr "TIR_S_C_OPR_USH tamamlanmamýþ" + +#~ msgid "TIR_S_C_OPR_ROT incomplete" +#~ msgstr "TIR_S_C_OPR_ROT tamamlanmamýþ" + +#~ msgid "TIR_S_C_OPR_REDEF not supported" +#~ msgstr "TIR_S_C_OPR_REDEF desteklenmiyor" + +#~ msgid "TIR_S_C_OPR_DFLIT not supported" +#~ msgstr "TIR_S_C_OPR_DFLIT desteklenmiyor" + +#~ msgid "TIR_S_C_CTL_DFLOC not fully implemented" +#~ msgstr "TIR_S_C_CTL_DFLOC tamamlanmamýþ" + +#~ msgid "TIR_S_C_CTL_STLOC not fully implemented" +#~ msgstr "TIR_S_C_CTL_STLOC tamamlanmamýþ" + +#~ msgid "TIR_S_C_CTL_STKDL not fully implemented" +#~ msgstr "TIR_S_C_CTL_STKDL tamamlanmamýþ" diff --git a/bfd/targets.c b/bfd/targets.c index 12bda78ff..b4fba9623 100644 --- a/bfd/targets.c +++ b/bfd/targets.c @@ -525,6 +525,7 @@ extern const bfd_target bfd_elf32_mcore_little_vec; extern const bfd_target bfd_elf32_mn10200_vec; extern const bfd_target bfd_elf32_mn10300_vec; extern const bfd_target bfd_elf32_openrisc_vec; +extern const bfd_target bfd_elf32_or32_big_vec; extern const bfd_target bfd_elf32_pj_vec; extern const bfd_target bfd_elf32_pjl_vec; extern const bfd_target bfd_elf32_powerpc_vec; @@ -621,6 +622,7 @@ extern const bfd_target nlm32_i386_vec; extern const bfd_target nlm32_powerpc_vec; extern const bfd_target nlm32_sparc_vec; extern const bfd_target oasys_vec; +extern const bfd_target or32coff_big_vec; extern const bfd_target pc532machaout_vec; extern const bfd_target pc532netbsd_vec; extern const bfd_target pdp11_aout_vec; @@ -770,6 +772,7 @@ static const bfd_target * const _bfd_target_vector[] = { &bfd_elf32_mn10200_vec, &bfd_elf32_mn10300_vec, &bfd_elf32_openrisc_vec, + &bfd_elf32_or32_big_vec, &bfd_elf32_pj_vec, &bfd_elf32_pjl_vec, &bfd_elf32_powerpc_vec, @@ -903,6 +906,9 @@ static const bfd_target * const _bfd_target_vector[] = { can be annoying target mis-matches. */ &oasys_vec, #endif + /* Entry for the OpenRISC family. */ + &or32coff_big_vec, + &pc532machaout_vec, &pc532netbsd_vec, &pdp11_aout_vec, diff --git a/binutils/readelf.c b/binutils/readelf.c index 2480c7659..e80a69d72 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -49,34 +49,35 @@ #define RELOC_MACROS_GEN_FUNC -#include "elf/i386.h" -#include "elf/v850.h" -#include "elf/ppc.h" -#include "elf/mips.h" #include "elf/alpha.h" +#include "elf/arc.h" #include "elf/arm.h" -#include "elf/m68k.h" -#include "elf/sparc.h" -#include "elf/m32r.h" +#include "elf/avr.h" +#include "elf/cris.h" #include "elf/d10v.h" #include "elf/d30v.h" -#include "elf/sh.h" -#include "elf/mn10200.h" -#include "elf/mn10300.h" -#include "elf/hppa.h" -#include "elf/h8.h" -#include "elf/arc.h" #include "elf/fr30.h" +#include "elf/h8.h" +#include "elf/hppa.h" +#include "elf/i386.h" +#include "elf/i860.h" +#include "elf/i960.h" +#include "elf/ia64.h" +#include "elf/m32r.h" +#include "elf/m68k.h" #include "elf/mcore.h" +#include "elf/mips.h" #include "elf/mmix.h" -#include "elf/i960.h" +#include "elf/mn10200.h" +#include "elf/mn10300.h" +#include "elf/or32.h" #include "elf/pj.h" -#include "elf/avr.h" -#include "elf/ia64.h" -#include "elf/cris.h" -#include "elf/i860.h" -#include "elf/x86-64.h" +#include "elf/ppc.h" #include "elf/s390.h" +#include "elf/sh.h" +#include "elf/sparc.h" +#include "elf/v850.h" +#include "elf/x86-64.h" #include "elf/xstormy16.h" #include "bucomm.h" @@ -596,6 +597,8 @@ guess_is_rela (e_machine) case EM_386: case EM_486: case EM_960: + case EM_OPENRISC: + case EM_OR32: case EM_M32R: case EM_CYGNUS_M32R: case EM_D10V: @@ -1027,6 +1030,11 @@ dump_relocations (file, rel_offset, rel_size, symtab, nsyms, strtab, is_rela) rtype = elf_h8_reloc_type (type); break; + case EM_OPENRISC: + case EM_OR32: + rtype = elf_or32_reloc_type (type); + break; + case EM_PJ: case EM_PJ_OLD: rtype = elf_pj_reloc_type (type); @@ -1458,6 +1466,8 @@ get_machine_name (e_machine) case EM_S390_OLD: case EM_S390: return "IBM S/390"; case EM_XSTORMY16: return "Sanyo Xstormy16 CPU core"; + case EM_OPENRISC: + case EM_OR32: return "OpenRISC"; default: sprintf (buff, _(": %x"), e_machine); return buff; diff --git a/gas/ChangeLog b/gas/ChangeLog index 6747d4c19..43d1f7344 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,18 @@ +2002-01-31 Ivan Guzvinec + + * config/tc-or32.c: New file. + * config/tc-or32.h: New file. + * configure.in: Add support for or32 targets. + * configure: Regenerate. + * config/obj-coff.c: Add support for or32 targets. + * config/obj-coff.h: Add support for or32 targets. + * Makefile.am: Add support for or32 targets. + * Makefile.in: Regenerate. + * NEWS: Mention support for OpenRISC. + * doc/Makefile.in: Regenerate. + * po/POTFILES.in: Regenerate. + * po/gas.pot: Regenerate. + 2002-01-30 Richard Sandiford * config/tc-sh.c (parse_reg): Fix end-of-word check for is, ix, iy diff --git a/gas/Makefile.am b/gas/Makefile.am index 304189dcf..8b64d639f 100644 --- a/gas/Makefile.am +++ b/gas/Makefile.am @@ -65,6 +65,7 @@ CPU_TYPES = \ mn10300 \ ns32k \ openrisc \ + or32 \ pdp11 \ pj \ ppc \ @@ -251,6 +252,7 @@ TARGET_CPU_CFILES = \ config/tc-mn10300.c \ config/tc-ns32k.c \ config/tc-openrisc.c \ + config/tc-or32.c \ config/tc-pdp11.c \ config/tc-pj.c \ config/tc-ppc.c \ @@ -296,6 +298,7 @@ TARGET_CPU_HFILES = \ config/tc-mn10300.h \ config/tc-ns32k.h \ config/tc-openrisc.h \ + config/tc-or32.h \ config/tc-pdp11.h \ config/tc-pj.h \ config/tc-ppc.h \ diff --git a/gas/Makefile.in b/gas/Makefile.in index 566497990..4be8550cc 100644 --- a/gas/Makefile.in +++ b/gas/Makefile.in @@ -1,6 +1,6 @@ -# Makefile.in generated automatically by automake 1.4 from Makefile.am +# Makefile.in generated automatically by automake 1.4-p5 from Makefile.am -# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc. +# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -176,6 +176,7 @@ CPU_TYPES = \ mn10300 \ ns32k \ openrisc \ + or32 \ pdp11 \ pj \ ppc \ @@ -368,6 +369,7 @@ TARGET_CPU_CFILES = \ config/tc-mn10300.c \ config/tc-ns32k.c \ config/tc-openrisc.c \ + config/tc-or32.c \ config/tc-pdp11.c \ config/tc-pj.c \ config/tc-ppc.c \ @@ -414,6 +416,7 @@ TARGET_CPU_HFILES = \ config/tc-mn10300.h \ config/tc-ns32k.h \ config/tc-openrisc.h \ + config/tc-or32.h \ config/tc-pdp11.h \ config/tc-pj.h \ config/tc-ppc.h \ @@ -2228,7 +2231,7 @@ configure configure.in gdbinit.in itbl-lex.c itbl-parse.c DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) -TAR = tar +TAR = gtar GZIP_ENV = --best SOURCES = $(itbl_test_SOURCES) $(as_new_SOURCES) $(EXTRA_as_new_SOURCES) $(gasp_new_SOURCES) OBJECTS = $(itbl_test_OBJECTS) $(as_new_OBJECTS) $(gasp_new_OBJECTS) @@ -2389,7 +2392,7 @@ maintainer-clean-recursive: dot_seen=no; \ rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \ rev="$$subdir $$rev"; \ - test "$$subdir" = "." && dot_seen=yes; \ + test "$$subdir" != "." || dot_seen=yes; \ done; \ test "$$dot_seen" = "no" && rev=". $$rev"; \ target=`echo $@ | sed s/-recursive//`; \ diff --git a/gas/NEWS b/gas/NEWS index 950f63b0a..227dba56d 100644 --- a/gas/NEWS +++ b/gas/NEWS @@ -1,4 +1,6 @@ -*- text -*- +Support for the OpenRISC 32-bit embedded processor by OpenCores. + The ARM assembler now accepts -march=..., -mcpu=... and -mfpu=... for specifying the target instruction set. The old method of specifying the target processor has been deprecated, but is still accepted for diff --git a/gas/config/obj-coff.c b/gas/config/obj-coff.c index 759389acd..c956d62d5 100644 --- a/gas/config/obj-coff.c +++ b/gas/config/obj-coff.c @@ -1,6 +1,6 @@ /* coff object file format Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, - 1999, 2000, 2001 + 1999, 2000, 2001, 2002 Free Software Foundation, Inc. This file is part of GAS. @@ -1889,7 +1889,7 @@ count_entries_in_chain (idx) { if (fixup_ptr->fx_done == 0 && TC_COUNT_RELOC (fixup_ptr)) { -#ifdef TC_A29K +#if defined(TC_A29K) || defined(TC_OR32) if (fixup_ptr->fx_r_type == RELOC_CONSTH) nrelocs += 2; else @@ -2048,6 +2048,20 @@ do_relocs_for (abfd, h, file_cursor) ext_ptr++; } #endif +#if defined(TC_OR32) + /* The or32 has a special kludge for the high 16 bit + reloc. Two relocations are emited, R_IHIHALF, + and R_IHCONST. The second one doesn't contain a + symbol, but uses the value for offset. */ + if (intr.r_type == R_IHIHALF) + { + /* Now emit the second bit. */ + intr.r_type = R_IHCONST; + intr.r_symndx = fix_ptr->fx_addnumber; + (void) bfd_coff_swap_reloc_out (abfd, & intr, ext_ptr); + ext_ptr ++; + } +#endif } fix_ptr = fix_ptr->fx_next; @@ -2127,6 +2141,7 @@ fill_section (abfd, h, file_cursor) COFF_NOLOAD_PROBLEM, and have only one test here. */ #ifndef TC_I386 #ifndef TC_A29K +#ifndef TC_OR32 #ifndef COFF_NOLOAD_PROBLEM /* Apparently the SVR3 linker (and exec syscall) and UDI mondfe progrem are confused by noload sections. */ @@ -2134,6 +2149,7 @@ fill_section (abfd, h, file_cursor) #endif #endif #endif +#endif } else if (strcmp (s->s_name, ".lit") == 0) s->s_flags = STYP_LIT | STYP_TEXT; @@ -4420,7 +4436,7 @@ fixup_segment (segP, this_segment_type) break; default: -#if defined(TC_A29K) || (defined(TE_PE) && defined(TC_I386)) || defined(TC_M88K) +#if defined(TC_A29K) || (defined(TE_PE) && defined(TC_I386)) || defined(TC_M88K) || defined(TC_OR32) /* This really should be handled in the linker, but backward compatibility forbids. */ add_number += S_GET_VALUE (add_symbolP); @@ -4466,7 +4482,7 @@ fixup_segment (segP, this_segment_type) if (pcrel) { -#if !defined(TC_M88K) && !(defined(TE_PE) && defined(TC_I386)) && !defined(TC_A29K) +#if !defined(TC_M88K) && !(defined(TE_PE) && defined(TC_I386)) && !defined(TC_A29K) && !defined(TC_OR32) /* This adjustment is not correct on the m88k, for which the linker does all the computation. */ add_number -= md_pcrel_from (fixP); diff --git a/gas/config/obj-coff.h b/gas/config/obj-coff.h index 98948bea5..1a50359b3 100644 --- a/gas/config/obj-coff.h +++ b/gas/config/obj-coff.h @@ -1,6 +1,6 @@ /* coff object file format Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, - 1999, 2000 + 1999, 2000, 2002 Free Software Foundation, Inc. This file is part of GAS. @@ -90,6 +90,11 @@ #define TARGET_FORMAT "coff-a29k-big" #endif +#ifdef TC_OR32 +#include "coff/or32.h" +#define TARGET_FORMAT "coff-or32-big" +#endif + #ifdef TC_I960 #include "coff/i960.h" #define TARGET_FORMAT "coff-Intel-little" @@ -190,9 +195,7 @@ extern void coff_obj_symbol_new_hook PARAMS ((symbolS *)); extern void coff_obj_read_begin_hook PARAMS ((void)); #define obj_read_begin_hook coff_obj_read_begin_hook -/* *********************************************************************** - - This file really contains two implementations of the COFF back end. +/* This file really contains two implementations of the COFF back end. They are in the process of being merged, but this is only a preliminary, mechanical merging. Many definitions that are identical between the two are still found in both versions. @@ -226,9 +229,7 @@ extern void coff_obj_read_begin_hook PARAMS ((void)); See doc/internals.texi for a brief discussion of the history, if you care. - Ken Raeburn, 5 May 1994 - - *********************************************************************** */ + Ken Raeburn, 5 May 1994. */ #ifdef BFD_ASSEMBLER @@ -257,10 +258,10 @@ extern void coff_obj_read_begin_hook PARAMS ((void)); extern void obj_coff_section PARAMS ((int)); -/* The number of auxiliary entries */ +/* The number of auxiliary entries. */ #define S_GET_NUMBER_AUXILIARY(s) \ (coffsymbol (symbol_get_bfdsym (s))->native->u.syment.n_numaux) -/* The number of auxiliary entries */ +/* The number of auxiliary entries. */ #define S_SET_NUMBER_AUXILIARY(s,v) (S_GET_NUMBER_AUXILIARY (s) = (v)) /* True if a symbol name is in the string table, i.e. its length is > 8. */ @@ -271,9 +272,9 @@ extern int S_SET_STORAGE_CLASS PARAMS ((symbolS *, int)); extern int S_GET_STORAGE_CLASS PARAMS ((symbolS *)); extern void SA_SET_SYM_ENDNDX PARAMS ((symbolS *, symbolS *)); -/* Auxiliary entry macros. SA_ stands for symbol auxiliary */ -/* Omit the tv related fields */ -/* Accessors */ +/* Auxiliary entry macros. SA_ stands for symbol auxiliary. */ +/* Omit the tv related fields. */ +/* Accessors. */ #define SA_GET_SYM_TAGNDX(s) (SYM_AUXENT (s)->x_sym.x_tagndx.l) #define SA_GET_SYM_LNNO(s) (SYM_AUXENT (s)->x_sym.x_misc.x_lnsz.x_lnno) @@ -297,15 +298,13 @@ extern void SA_SET_SYM_ENDNDX PARAMS ((symbolS *, symbolS *)); #define SA_SET_SCN_NRELOC(s,v) (SYM_AUXENT (s)->x_scn.x_nreloc=(v)) #define SA_SET_SCN_NLINNO(s,v) (SYM_AUXENT (s)->x_scn.x_nlinno=(v)) -/* - * Internal use only definitions. SF_ stands for symbol flags. - * - * These values can be assigned to sy_symbol.ost_flags field of a symbolS. - * - * You'll break i960 if you shift the SYSPROC bits anywhere else. for - * more on the balname/callname hack, see tc-i960.h. b.out is done - * differently. - */ +/* Internal use only definitions. SF_ stands for symbol flags. + + These values can be assigned to sy_symbol.ost_flags field of a symbolS. + + You'll break i960 if you shift the SYSPROC bits anywhere else. for + more on the balname/callname hack, see tc-i960.h. b.out is done + differently. */ #define SF_I960_MASK (0x000001ff) /* Bits 0-8 are used by the i960 port. */ #define SF_SYSPROC (0x0000003f) /* bits 0-5 are used to store the sysproc number */ @@ -330,7 +329,7 @@ extern void SA_SET_SYM_ENDNDX PARAMS ((symbolS *, symbolS *)); #define SF_GET_SEGMENT (0x00200000) /* Get the section of the forward symbol. */ /* All other bits are unused. */ -/* Accessors */ +/* Accessors. */ #define SF_GET(s) (*symbol_get_obj (s)) #define SF_GET_DEBUG(s) (symbol_get_bfdsym (s)->flags & BSF_DEBUGGING) #define SF_SET_DEBUG(s) (symbol_get_bfdsym (s)->flags |= BSF_DEBUGGING) @@ -352,7 +351,7 @@ extern void SA_SET_SYM_ENDNDX PARAMS ((symbolS *, symbolS *)); #define SF_GET_IS_SYSPROC(s) (SF_GET (s) & SF_IS_SYSPROC) /* used by i960 */ #define SF_GET_SYSPROC(s) (SF_GET (s) & SF_SYSPROC) /* used by i960 */ -/* Modifiers */ +/* Modifiers. */ #define SF_SET(s,v) (SF_GET (s) = (v)) #define SF_SET_NORMAL_FIELD(s,v) (SF_GET (s) |= ((v) & SF_NORMAL_MASK)) #define SF_SET_DEBUG_FIELD(s,v) (SF_GET (s) |= ((v) & SF_DEBUG_MASK)) @@ -414,7 +413,7 @@ extern symbolS *coff_last_function; #endif #endif -/* sanity check */ +/* Sanity check. */ #ifdef TC_I960 #ifndef C_LEAFSTAT @@ -424,8 +423,8 @@ hey ! Where is the C_LEAFSTAT definition ? i960 - coff support is depending on i #else /* not BFD_ASSEMBLER */ -#ifdef TC_A29K -/* Allow translate from aout relocs to coff relocs */ +#if defined TC_A29K || defined TC_OR32 +/* Allow translate from aout relocs to coff relocs. */ #define NO_RELOC 20 #define RELOC_32 1 #define RELOC_8 2 @@ -447,7 +446,7 @@ extern const segT N_TYPE_seg[]; /* SYMBOL TABLE */ -/* Symbol table entry data type */ +/* Symbol table entry data type. */ typedef struct { @@ -455,18 +454,17 @@ typedef struct struct internal_syment ost_entry; /* Auxiliary entry. */ union internal_auxent ost_auxent[OBJ_COFF_MAX_AUXENTRIES]; - /* obj_coff internal use only flags */ + /* obj_coff internal use only flags. */ unsigned int ost_flags; } obj_symbol_type; #ifndef DO_NOT_STRIP #define DO_NOT_STRIP 0 #endif -/* Symbol table macros and constants */ +/* Symbol table macros and constants. */ /* Possible and usefull section number in symbol table - * The values of TEXT, DATA and BSS may not be portable. - */ + The values of TEXT, DATA and BSS may not be portable. */ #define C_ABS_SECTION N_ABS #define C_UNDEF_SECTION N_UNDEF @@ -475,27 +473,25 @@ typedef struct #define C_PTV_SECTION P_TV #define C_REGISTER_SECTION 50 -/* - * Macros to extract information from a symbol table entry. - * This syntaxic indirection allows independence regarding a.out or coff. - * The argument (s) of all these macros is a pointer to a symbol table entry. - */ +/* Macros to extract information from a symbol table entry. + This syntaxic indirection allows independence regarding a.out or coff. + The argument (s) of all these macros is a pointer to a symbol table entry. */ -/* Predicates */ -/* True if the symbol is external */ +/* Predicates. */ +/* True if the symbol is external. */ #define S_IS_EXTERNAL(s) ((s)->sy_symbol.ost_entry.n_scnum == C_UNDEF_SECTION) /* True if symbol has been defined, ie : section > 0 (DATA, TEXT or BSS) - section == 0 and value > 0 (external bss symbol) */ + section == 0 and value > 0 (external bss symbol). */ #define S_IS_DEFINED(s) \ ((s)->sy_symbol.ost_entry.n_scnum > C_UNDEF_SECTION \ || ((s)->sy_symbol.ost_entry.n_scnum == C_UNDEF_SECTION \ && S_GET_VALUE (s) > 0) \ || ((s)->sy_symbol.ost_entry.n_scnum == C_ABS_SECTION)) -/* True if a debug special symbol entry */ +/* True if a debug special symbol entry. */ #define S_IS_DEBUG(s) ((s)->sy_symbol.ost_entry.n_scnum == C_DEBUG_SECTION) -/* True if a symbol is local symbol name */ -/* A symbol name whose name includes ^A is a gas internal pseudo symbol */ +/* True if a symbol is local symbol name. */ +/* A symbol name whose name includes ^A is a gas internal pseudo symbol. */ #define S_IS_LOCAL(s) \ ((s)->sy_symbol.ost_entry.n_scnum == C_REGISTER_SECTION \ || (S_LOCAL_NAME(s) && ! flag_keep_locals && ! S_IS_DEBUG (s)) \ @@ -504,13 +500,11 @@ typedef struct || (flag_strip_local_absolute \ && !S_IS_EXTERNAL(s) \ && (s)->sy_symbol.ost_entry.n_scnum == C_ABS_SECTION)) -/* True if a symbol is not defined in this file */ +/* True if a symbol is not defined in this file. */ #define S_IS_EXTERN(s) ((s)->sy_symbol.ost_entry.n_scnum == 0 \ && S_GET_VALUE (s) == 0) -/* - * True if a symbol can be multiply defined (bss symbols have this def - * though it is bad practice) - */ +/* True if a symbol can be multiply defined (bss symbols have this def + though it is bad practice). */ #define S_IS_COMMON(s) ((s)->sy_symbol.ost_entry.n_scnum == 0 \ && S_GET_VALUE (s) != 0) /* True if a symbol name is in the string table, i.e. its length is > 8. */ @@ -526,41 +520,41 @@ typedef struct ((s)->sy_symbol.ost_entry.n_sclass == C_WEAKEXT) #endif -/* Accessors */ -/* The name of the symbol */ +/* Accessors. */ +/* The name of the symbol. */ #define S_GET_NAME(s) ((char*) (s)->sy_symbol.ost_entry.n_offset) -/* The pointer to the string table */ +/* The pointer to the string table. */ #define S_GET_OFFSET(s) ((s)->sy_symbol.ost_entry.n_offset) -/* The numeric value of the segment */ +/* The numeric value of the segment. */ #define S_GET_SEGMENT(s) s_get_segment(s) -/* The data type */ +/* The data type. */ #define S_GET_DATA_TYPE(s) ((s)->sy_symbol.ost_entry.n_type) -/* The storage class */ +/* The storage class. */ #define S_GET_STORAGE_CLASS(s) ((s)->sy_symbol.ost_entry.n_sclass) -/* The number of auxiliary entries */ +/* The number of auxiliary entries. */ #define S_GET_NUMBER_AUXILIARY(s) ((s)->sy_symbol.ost_entry.n_numaux) -/* Modifiers */ -/* Set the name of the symbol */ +/* Modifiers. */ +/* Set the name of the symbol. */ #define S_SET_NAME(s,v) ((s)->sy_symbol.ost_entry.n_offset = (unsigned long) (v)) -/* Set the offset of the symbol */ +/* Set the offset of the symbol. */ #define S_SET_OFFSET(s,v) ((s)->sy_symbol.ost_entry.n_offset = (v)) -/* The numeric value of the segment */ +/* The numeric value of the segment. */ #define S_SET_SEGMENT(s,v) ((s)->sy_symbol.ost_entry.n_scnum = SEGMENT_TO_SYMBOL_TYPE(v)) -/* The data type */ +/* The data type. */ #define S_SET_DATA_TYPE(s,v) ((s)->sy_symbol.ost_entry.n_type = (v)) -/* The storage class */ +/* The storage class. */ #define S_SET_STORAGE_CLASS(s,v) ((s)->sy_symbol.ost_entry.n_sclass = (v)) -/* The number of auxiliary entries */ +/* The number of auxiliary entries. */ #define S_SET_NUMBER_AUXILIARY(s,v) ((s)->sy_symbol.ost_entry.n_numaux = (v)) -/* Additional modifiers */ -/* The symbol is external (does not mean undefined) */ +/* Additional modifiers. */ +/* The symbol is external (does not mean undefined). */ #define S_SET_EXTERNAL(s) { S_SET_STORAGE_CLASS(s, C_EXT) ; SF_CLEAR_LOCAL(s); } -/* Auxiliary entry macros. SA_ stands for symbol auxiliary */ -/* Omit the tv related fields */ -/* Accessors */ +/* Auxiliary entry macros. SA_ stands for symbol auxiliary. */ +/* Omit the tv related fields. */ +/* Accessors. */ #define SYM_AUXENT(S) (&(S)->sy_symbol.ost_auxent[0]) #define SA_GET_SYM_TAGNDX(s) (SYM_AUXENT (s)->x_sym.x_tagndx.l) @@ -577,7 +571,7 @@ typedef struct #define SA_GET_SCN_NRELOC(s) (SYM_AUXENT (s)->x_scn.x_nreloc) #define SA_GET_SCN_NLINNO(s) (SYM_AUXENT (s)->x_scn.x_nlinno) -/* Modifiers */ +/* Modifiers. */ #define SA_SET_SYM_TAGNDX(s,v) (SYM_AUXENT (s)->x_sym.x_tagndx.l=(v)) #define SA_SET_SYM_LNNO(s,v) (SYM_AUXENT (s)->x_sym.x_misc.x_lnsz.x_lnno=(v)) #define SA_SET_SYM_SIZE(s,v) (SYM_AUXENT (s)->x_sym.x_misc.x_lnsz.x_size=(v)) @@ -592,15 +586,13 @@ typedef struct #define SA_SET_SCN_NRELOC(s,v) (SYM_AUXENT (s)->x_scn.x_nreloc=(v)) #define SA_SET_SCN_NLINNO(s,v) (SYM_AUXENT (s)->x_scn.x_nlinno=(v)) -/* - * Internal use only definitions. SF_ stands for symbol flags. - * - * These values can be assigned to sy_symbol.ost_flags field of a symbolS. - * - * You'll break i960 if you shift the SYSPROC bits anywhere else. for - * more on the balname/callname hack, see tc-i960.h. b.out is done - * differently. - */ +/* Internal use only definitions. SF_ stands for symbol flags. + + These values can be assigned to sy_symbol.ost_flags field of a symbolS. + + You'll break i960 if you shift the SYSPROC bits anywhere else. for + more on the balname/callname hack, see tc-i960.h. b.out is done + differently. */ #define SF_I960_MASK (0x000001ff) /* Bits 0-8 are used by the i960 port. */ #define SF_SYSPROC (0x0000003f) /* bits 0-5 are used to store the sysproc number */ @@ -626,7 +618,7 @@ typedef struct #define SF_ADJ_LNNOPTR (0x00400000) /* Has a lnnoptr */ /* All other bits are unused. */ -/* Accessors */ +/* Accessors. */ #define SF_GET(s) ((s)->sy_symbol.ost_flags) #define SF_GET_NORMAL_FIELD(s) (SF_GET (s) & SF_NORMAL_MASK) #define SF_GET_DEBUG_FIELD(s) (SF_GET (s) & SF_DEBUG_MASK) @@ -648,7 +640,7 @@ typedef struct #define SF_GET_IS_SYSPROC(s) (SF_GET (s) & SF_IS_SYSPROC) /* used by i960 */ #define SF_GET_SYSPROC(s) (SF_GET (s) & SF_SYSPROC) /* used by i960 */ -/* Modifiers */ +/* Modifiers. */ #define SF_SET(s,v) (SF_GET (s) = (v)) #define SF_SET_NORMAL_FIELD(s,v) (SF_GET (s) |= ((v) & SF_NORMAL_MASK)) #define SF_SET_DEBUG_FIELD(s,v) (SF_GET (s) |= ((v) & SF_DEBUG_MASK)) @@ -671,12 +663,10 @@ typedef struct #define SF_SET_IS_SYSPROC(s) (SF_GET (s) |= SF_IS_SYSPROC) /* used by i960 */ #define SF_SET_SYSPROC(s,v) (SF_GET (s) |= ((v) & SF_SYSPROC)) /* used by i960 */ -/* File header macro and type definition */ +/* File header macro and type definition. */ -/* - * File position calculators. Beware to use them when all the - * appropriate fields are set in the header. - */ +/* File position calculators. Beware to use them when all the + appropriate fields are set in the header. */ #ifdef OBJ_COFF_OMIT_OPTIONAL_HEADER #define OBJ_COFF_AOUTHDRSZ (0) @@ -714,8 +704,8 @@ typedef struct H_GET_TEXT_SIZE(h) + H_GET_DATA_SIZE(h) + \ H_GET_RELOCATION_SIZE(h) + H_GET_LINENO_SIZE(h)) -/* Accessors */ -/* aouthdr */ +/* Accessors. */ +/* aouthdr. */ #define H_GET_MAGIC_NUMBER(h) ((h)->aouthdr.magic) #define H_GET_VERSION_STAMP(h) ((h)->aouthdr.vstamp) #define H_GET_TEXT_SIZE(h) ((h)->aouthdr.tsize) @@ -724,7 +714,7 @@ typedef struct #define H_GET_ENTRY_POINT(h) ((h)->aouthdr.entry) #define H_GET_TEXT_START(h) ((h)->aouthdr.text_start) #define H_GET_DATA_START(h) ((h)->aouthdr.data_start) -/* filehdr */ +/* filehdr. */ #define H_GET_FILE_MAGIC_NUMBER(h) ((h)->filehdr.f_magic) #define H_GET_NUMBER_OF_SECTIONS(h) ((h)->filehdr.f_nscns) #define H_GET_TIME_STAMP(h) ((h)->filehdr.f_timdat) @@ -733,7 +723,7 @@ typedef struct #define H_GET_SYMBOL_TABLE_SIZE(h) (H_GET_SYMBOL_COUNT(h) * SYMESZ) #define H_GET_SIZEOF_OPTIONAL_HEADER(h) ((h)->filehdr.f_opthdr) #define H_GET_FLAGS(h) ((h)->filehdr.f_flags) -/* Extra fields to achieve bsd a.out compatibility and for convenience */ +/* Extra fields to achieve bsd a.out compatibility and for convenience. */ #define H_GET_RELOCATION_SIZE(h) ((h)->relocation_size) #define H_GET_STRING_SIZE(h) ((h)->string_table_size) #define H_GET_LINENO_SIZE(h) ((h)->lineno_size) @@ -750,8 +740,8 @@ typedef struct #define H_GET_TEXT_RELOCATION_SIZE(h) (text_section_header.s_nreloc * RELSZ) #define H_GET_DATA_RELOCATION_SIZE(h) (data_section_header.s_nreloc * RELSZ) -/* Modifiers */ -/* aouthdr */ +/* Modifiers. */ +/* aouthdr. */ #define H_SET_MAGIC_NUMBER(h,v) ((h)->aouthdr.magic = (v)) #define H_SET_VERSION_STAMP(h,v) ((h)->aouthdr.vstamp = (v)) #define H_SET_TEXT_SIZE(h,v) ((h)->aouthdr.tsize = (v)) @@ -760,7 +750,7 @@ typedef struct #define H_SET_ENTRY_POINT(h,v) ((h)->aouthdr.entry = (v)) #define H_SET_TEXT_START(h,v) ((h)->aouthdr.text_start = (v)) #define H_SET_DATA_START(h,v) ((h)->aouthdr.data_start = (v)) -/* filehdr */ +/* filehdr. */ #define H_SET_FILE_MAGIC_NUMBER(h,v) ((h)->filehdr.f_magic = (v)) #define H_SET_NUMBER_OF_SECTIONS(h,v) ((h)->filehdr.f_nscns = (v)) #define H_SET_TIME_STAMP(h,v) ((h)->filehdr.f_timdat = (v)) @@ -768,30 +758,30 @@ typedef struct #define H_SET_SYMBOL_TABLE_SIZE(h,v) ((h)->filehdr.f_nsyms = (v)) #define H_SET_SIZEOF_OPTIONAL_HEADER(h,v) ((h)->filehdr.f_opthdr = (v)) #define H_SET_FLAGS(h,v) ((h)->filehdr.f_flags = (v)) -/* Extra fields to achieve bsd a.out compatibility and for convinience */ +/* Extra fields to achieve bsd a.out compatibility and for convinience. */ #define H_SET_RELOCATION_SIZE(h,t,d) ((h)->relocation_size = (t)+(d)) #define H_SET_STRING_SIZE(h,v) ((h)->string_table_size = (v)) #define H_SET_LINENO_SIZE(h,v) ((h)->lineno_size = (v)) -/* Segment flipping */ +/* Segment flipping. */ typedef struct { struct internal_aouthdr aouthdr; /* a.out header */ struct internal_filehdr filehdr; /* File header, not machine dep. */ - long string_table_size; /* names + '\0' + sizeof (int) */ - long relocation_size; /* Cumulated size of relocation - information for all sections in - bytes. */ - long lineno_size; /* Size of the line number information - table in bytes */ + long string_table_size; /* names + '\0' + sizeof (int) */ + long relocation_size; /* Cumulated size of relocation + information for all sections in + bytes. */ + long lineno_size; /* Size of the line number information + table in bytes. */ } object_headers; struct lineno_list { struct bfd_internal_lineno line; - char *frag; /* Frag to which the line number is related */ - struct lineno_list *next; /* Forward chain pointer */ + char *frag; /* Frag to which the line number is related. */ + struct lineno_list *next; /* Forward chain pointer. */ }; #define obj_segment_name(i) (segment_info[(int) (i)].scnhdr.s_name) @@ -823,7 +813,7 @@ extern void c_section_header PARAMS ((struct internal_scnhdr * header, void tc_coff_symbol_emit_hook PARAMS ((symbolS *)); #endif -/* sanity check */ +/* Sanity check. */ #ifdef TC_I960 #ifndef C_LEAFSTAT diff --git a/gas/config/tc-or32.c b/gas/config/tc-or32.c new file mode 100644 index 000000000..4f0c2ecdb --- /dev/null +++ b/gas/config/tc-or32.c @@ -0,0 +1,1636 @@ +/* Assembly backend for the OpenRISC 1000. + Copyright (C) 2002 Free Software Foundation, Inc. + Contributed by Damjan Lampret . + Modified bu Johan Rydberg, . + Based upon a29k port. + + This file is part of GAS, the GNU Assembler. + + GAS is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. + + GAS is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with GAS; see the file COPYING. If not, write to + the Free Software Foundation, 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. */ + +/* tc-a29k.c used as a template. */ + +#include "safe-ctype.h" +#include "as.h" +#include "opcode/or32.h" + +#ifdef BFD_ASSEMBLER +#include "elf/or32.h" +#endif + +#define DEBUG 0 + +#ifndef REGISTER_PREFIX +#define REGISTER_PREFIX '%' +#endif + +/* Make it easier to clone this machine desc into another one. */ +#define machine_opcode or32_opcode +#define machine_opcodes or32_opcodes +#define machine_ip or32_ip +#define machine_it or32_it + +/* Handle of the OPCODE hash table. */ +static struct hash_control *op_hash = NULL; + +struct machine_it + { + char * error; + unsigned long opcode; + struct nlist * nlistp; + expressionS exp; + int pcrel; + int reloc_offset; /* Offset of reloc within insn. */ + int reloc; + } +the_insn; + +static void machine_ip PARAMS ((char *)); + +const pseudo_typeS md_pseudo_table[] = + { + {"align", s_align_bytes, 4 }, + {"space", s_space, 0 }, + {"cputype", s_ignore, 0 }, + {"reg", s_lsym, 0 }, /* Register equate, same as equ. */ + {"sect", s_ignore, 0 }, /* Creation of coff sections. */ + {"proc", s_ignore, 0 }, /* Start of a function. */ + {"endproc", s_ignore, 0 }, /* Function end. */ + {"word", cons, 4 }, + {NULL, 0, 0 }, + }; + +int md_short_jump_size = 4; +int md_long_jump_size = 4; + +#if defined(BFD_HEADERS) +#ifdef RELSZ +const int md_reloc_size = RELSZ; /* Coff headers. */ +#else +const int md_reloc_size = 12; /* Something else headers. */ +#endif +#else +const int md_reloc_size = 12; /* Not bfdized. */ +#endif + +/* This array holds the chars that always start a comment. + If the pre-processor is disabled, these aren't very useful. */ +const char comment_chars[] = "#"; + +/* This array holds the chars that only start a comment at the beginning of + a line. If the line seems to have the form '# 123 filename' + .line and .file directives will appear in the pre-processed output. */ +/* Note that input_file.c hand checks for '#' at the beginning of the + first line of the input file. This is because the compiler outputs + #NO_APP at the beginning of its output. */ +/* Also note that comments like this one will always work. */ +const char line_comment_chars[] = "#"; + +/* We needed an unused char for line separation to work around the + lack of macros, using sed and such. */ +const char line_separator_chars[] = ";"; + +/* Chars that can be used to separate mant from exp in floating point nums. */ +const char EXP_CHARS[] = "eE"; + +/* Chars that mean this number is a floating point constant. + As in 0f12.456 + or 0d1.2345e12. */ +const char FLT_CHARS[] = "rRsSfFdDxXpP"; + +/* "l.jalr r9" precalculated opcode. */ +static unsigned long jalr_r9_opcode; + + +static int check_invalid_opcode PARAMS ((unsigned long)); +static void encode PARAMS ((const struct machine_opcode *, unsigned long *, signed long, char)); +#ifdef BFD_ASSEMBLER +static char * parse_operand PARAMS ((char *, expressionS *, int)); +#endif + +/* Set bits in machine opcode according to insn->encoding + description and passed operand. */ + +static void +encode (insn, opcode, param_val, param_ch) + const struct machine_opcode *insn; + unsigned long *opcode; + signed long param_val; + char param_ch; +{ + int opc_pos = 0; + int param_pos = 0; + char *enc; + +#if DEBUG + printf (" encode: opcode=%.8lx param_val=%.8lx abs=%.8lx param_ch=%c\n", + *opcode, param_val, abs (param_val), param_ch); +#endif + for (enc = insn->encoding; *enc != '\0'; enc++) + if (*enc == param_ch) + { + if (enc - 2 >= insn->encoding && (*(enc - 2) == '0') && (*(enc - 1) == 'x')) + continue; + else + param_pos ++; + } + + opc_pos = 32; + + for (enc = insn->encoding; *enc != '\0';) + { + if ((*enc == '0') && (*(enc + 1) == 'x')) + { + int tmp = strtol (enc, NULL, 16); + + opc_pos -= 4; + *opcode |= tmp << opc_pos; + enc += 3; + } + else if ((*enc == '0') || (*enc == '-')) + { + opc_pos--; + enc++; + } + else if (*enc == '1') + { + opc_pos--; + *opcode |= 1 << opc_pos; + enc++; + } + else if (*enc == param_ch) + { + opc_pos--; + param_pos--; + *opcode |= ((param_val >> param_pos) & 0x1) << opc_pos; + enc++; + } + else if (ISALPHA (*enc)) + { + opc_pos--; + enc++; + } + else + enc++; + } + +#if DEBUG + printf (" opcode=%.8lx\n", *opcode); +#endif +} + +/* This function is called once, at assembler startup time. It should + set up all the tables, etc., that the MD part of the assembler will + need. */ + +void +md_begin () +{ + const char *retval = NULL; + int lose = 0; + int skipnext = 0; + unsigned int i; + + /* Hash up all the opcodes for fast use later. */ + op_hash = hash_new (); + + for (i = 0; i < or32_num_opcodes; i++) + { + const char *name = machine_opcodes[i].name; + + if (skipnext) + { + skipnext = 0; + continue; + } + + retval = hash_insert (op_hash, name, (PTR) &machine_opcodes[i]); + if (retval != NULL) + { + fprintf (stderr, "internal error: can't hash `%s': %s\n", + machine_opcodes[i].name, retval); + lose = 1; + } + } + + if (lose) + as_fatal (_("Broken assembler. No assembly attempted.")); + + encode (&machine_opcodes[insn_index ("l.jalr")], &jalr_r9_opcode, 9, 'B'); +} + +/* Returs non zero if instruction is to be used. */ + +static int +check_invalid_opcode (opcode) + unsigned long opcode; +{ + return opcode == jalr_r9_opcode; +} + +/* Assemble a single instruction. Its label has already been handled + by the generic front end. We just parse opcode and operands, and + produce the bytes of data and relocation. */ + +void +md_assemble (str) + char *str; +{ + char *toP; + +#if DEBUG + printf ("NEW INSTRUCTION\n"); +#endif + + know (str); + machine_ip (str); + toP = frag_more (4); + + /* Put out the opcode. */ + md_number_to_chars (toP, the_insn.opcode, 4); + + /* Put out the symbol-dependent stuff. */ +#ifdef BFD_ASSEMBLER + if (the_insn.reloc != BFD_RELOC_NONE) +#else + if (the_insn.reloc != NO_RELOC) +#endif + { + fix_new_exp (frag_now, + (toP - frag_now->fr_literal + the_insn.reloc_offset), + 4, /* size */ + &the_insn.exp, + the_insn.pcrel, + the_insn.reloc); + } +} + +/* This is true of the we have issued a "lo(" or "hi"(. */ +static int waiting_for_shift = 0; + +static int mask_or_shift = 0; + +#ifdef BFD_ASSEMBLER +static char * +parse_operand (s, operandp, opt) + char *s; + expressionS *operandp; + int opt; +{ + char *save = input_line_pointer; + char *new; + +#if DEBUG + printf (" PROCESS NEW OPERAND(%s) == %c (%d)\n", s, opt ? opt : '!', opt); +#endif + + input_line_pointer = s; + + if (strncasecmp (s, "HI(", 3) == 0) + { + waiting_for_shift = 1; + mask_or_shift = BFD_RELOC_HI16; + + input_line_pointer += 3; + } + else if (strncasecmp (s, "LO(", 3) == 0) + { + mask_or_shift = BFD_RELOC_LO16; + + input_line_pointer += 3; + } + else + mask_or_shift = 0; + + if ((*s == '(') && (*(s+1) == 'r')) + s++; + + if ((*s == 'r') && ISDIGIT (*(s + 1))) + { + operandp->X_add_number = strtol (s + 1, NULL, 10); + operandp->X_op = O_register; + for (; (*s != ',') && (*s != '\0');) + s++; + input_line_pointer = save; + return s; + } + + expression (operandp); + + if (operandp->X_op == O_absent) + { + if (! opt) + as_bad (_("missing operand")); + else + { + operandp->X_add_number = 0; + operandp->X_op = O_constant; + } + } + + new = input_line_pointer; + input_line_pointer = save; + +#if DEBUG + printf (" %s=parse_operand(%s): operandp->X_op = %u\n", new, s, operandp->X_op); +#endif + + return new; +} +#else + +char * +parse_operand (s, operandp, opt) + char *s; + expressionS *operandp; + int opt; +{ + char *save = input_line_pointer; + char *new; + +#if DEBUG + printf (" PROCESS NEW OPERAND(%s) == %c (%d)\n", s, opt ? opt : '!', opt); +#endif + + input_line_pointer = s; + + if (strncasecmp (s, "HI(", 3) == 0) + { + waiting_for_shift = 1; + mask_or_shift = RELOC_CONSTH; + + input_line_pointer += 3; + } + else if (strncasecmp (s, "LO(", 3) == 0) + { + mask_or_shift = RELOC_CONST; + + input_line_pointer += 3; + } + else + mask_or_shift = 0; + + + expression (operandp); + + if (operandp->X_op == O_absent) + { + if (! opt) + as_bad (_("missing operand")); + else + { + operandp->X_add_number = 0; + operandp->X_op = O_constant; + } + } + + new = input_line_pointer; + input_line_pointer = save; + + if ((operandp->X_op == O_symbol) && (*s != '_')) + { +#if DEBUG + printf ("symbol: '%s'\n", save); +#endif + + for (save = s; s < new; s++) + if ((*s == REGISTER_PREFIX) && (*(s + 1) == 'r')) /* Register prefix. */ + s++; + + if ((*s == 'r') && ISDIGIT (*(s + 1))) + { + operandp->X_add_number = strtol (s + 1, NULL, 10); + operandp->X_op = O_register; + } + s = save; + } + +#if DEBUG + printf (" %s=parse_operand(%s): operandp->X_op = %u\n", new, s, operandp->X_op); +#endif + + return new; +} +#endif + +/* Instruction parsing. Takes a string containing the opcode. + Operands are at input_line_pointer. Output is in the_insn. + Warnings or errors are generated. */ + +#ifdef BFD_ASSEMBLER +static void +machine_ip (str) + char *str; +{ + char *s; + const char *args; + const struct machine_opcode *insn; + char *argsStart; + unsigned long opcode; + expressionS the_operand; + expressionS *operand = &the_operand; + unsigned int regno; + int reloc = BFD_RELOC_NONE; + +#if DEBUG + printf ("machine_ip(%s)\n", str); +#endif + + s = str; + for (; ISALNUM (*s) || *s == '.'; ++s) + if (ISUPPER (*s)) + *s = TOLOWER (*s); + + switch (*s) + { + case '\0': + break; + + case ' ': /* FIXME-SOMEDAY more whitespace. */ + *s++ = '\0'; + break; + + default: + as_bad (_("unknown opcode1: `%s'"), str); + return; + } + + if ((insn = (struct machine_opcode *) hash_find (op_hash, str)) == NULL) + { + as_bad (_("unknown opcode2 `%s'."), str); + return; + } + + argsStart = s; + opcode = 0; + memset (&the_insn, '\0', sizeof (the_insn)); + the_insn.reloc = BFD_RELOC_NONE; + + reloc = BFD_RELOC_NONE; + + /* Build the opcode, checking as we go to make sure that the + operands match. + + If an operand matches, we modify the_insn or opcode appropriately, + and do a "continue". If an operand fails to match, we "break". */ + if (insn->args[0] != '\0') + { + /* Prime the pump. */ + s = parse_operand (s, operand, insn->args[0] == 'I'); + } + + for (args = insn->args;; ++args) + { +#if DEBUG + printf (" args = %s\n", args); +#endif + switch (*args) + { + case '\0': /* End of args. */ + /* We have have 0 args, do the bazoooka! */ + if (args == insn->args) + encode (insn, &opcode, 0, 0); + + if (*s == '\0') + { + /* We are truly done. */ + the_insn.opcode = opcode; + if (check_invalid_opcode (opcode)) + as_bad (_("instruction not allowed: %s"), str); + return; + } + as_bad (_("too many operands: %s"), s); + break; + + case ',': /* Must match a comma. */ + if (*s++ == ',') + { + reloc = BFD_RELOC_NONE; + + /* Parse next operand. */ + s = parse_operand (s, operand, args[1] == 'I'); +#if DEBUG + printf (" ',' case: operand->X_add_number = %d, *args = %s, *s = %s\n", + operand->X_add_number, args, s); +#endif + continue; + } + break; + + case '(': /* Must match a (. */ + s = parse_operand (s, operand, args[1] == 'I'); + continue; + + case ')': /* Must match a ). */ + continue; + + case 'r': /* A general register. */ + args++; + + if (operand->X_op != O_register) + break; /* Only registers. */ + + know (operand->X_add_symbol == 0); + know (operand->X_op_symbol == 0); + regno = operand->X_add_number; + encode (insn, &opcode, regno, *args); +#if DEBUG + printf (" r: operand->X_op = %d\n", operand->X_op); +#endif + continue; + + default: + /* if (! ISALPHA (*args)) + break; */ /* Only immediate values. */ + + if (mask_or_shift) + { +#if DEBUG + printf ("mask_or_shift = %d\n", mask_or_shift); +#endif + reloc = mask_or_shift; + } + mask_or_shift = 0; + + if (strncasecmp (args, "LO(", 3) == 0) + { +#if DEBUG + printf ("reloc_const\n"); +#endif + reloc = BFD_RELOC_LO16; + } + else if (strncasecmp (args, "HI(", 3) == 0) + { +#if DEBUG + printf ("reloc_consth\n"); +#endif + reloc = BFD_RELOC_HI16; + } + + if (*s == '(') + { + operand->X_op = O_constant; +#if 0 + operand->X_add_number = 0; /* ??? if enabled load/store offsets + are zero. */ +#endif + } + else if (*s == ')') + s += 1; +#if DEBUG + printf (" default case: operand->X_add_number = %d, *args = %s, *s = %s\n", operand->X_add_number, args, s); +#endif + if (operand->X_op == O_constant) + { + if (reloc == BFD_RELOC_NONE) + { + bfd_vma v, mask; + + mask = 0x3ffffff; + v = abs (operand->X_add_number) & ~ mask; + if (v) + as_bad (_("call/jmp target out of range (1)")); + } + + if (reloc == BFD_RELOC_HI16) + operand->X_add_number = ((operand->X_add_number >> 16) & 0xffff); + + the_insn.pcrel = 0; + encode (insn, &opcode, operand->X_add_number, *args); + /* the_insn.reloc = BFD_RELOC_NONE; */ + continue; + } + + if (reloc == BFD_RELOC_NONE) + the_insn.reloc = BFD_RELOC_32_GOT_PCREL; + else + the_insn.reloc = reloc; + + /* the_insn.reloc = insn->reloc; */ +#if DEBUG + printf (" reloc sym=%d\n", the_insn.reloc); + printf (" BFD_RELOC_NONE=%d\n", BFD_RELOC_NONE); +#endif + the_insn.exp = *operand; + + /* the_insn.reloc_offset = 1; */ + the_insn.pcrel = 1; /* Assume PC-relative jump. */ + + /* FIXME-SOON, Do we figure out whether abs later, after + know sym val? */ + if (reloc == BFD_RELOC_LO16 || reloc == BFD_RELOC_HI16) + the_insn.pcrel = 0; + + encode (insn, &opcode, operand->X_add_number, *args); + continue; + } + + /* Types or values of args don't match. */ + as_bad (_("invalid operands")); + return; + } +} + +#else + +static void +machine_ip (str) + char *str; +{ + char *s; + const char *args; + const struct machine_opcode *insn; + char *argsStart; + unsigned long opcode; + expressionS the_operand; + expressionS *operand = &the_operand; + unsigned int regno; + int reloc = NO_RELOC; + +#if DEBUG + printf ("machine_ip(%s)\n", str); +#endif + + s = str; + for (; ISALNUM (*s) || *s == '.'; ++s) + if (ISUPPER (*s)) + *s = TOLOWER (*s); + + switch (*s) + { + case '\0': + break; + + case ' ': /* FIXME-SOMEDAY more whitespace. */ + *s++ = '\0'; + break; + + default: + as_bad (_("unknown opcode1: `%s'"), str); + return; + } + + if ((insn = (struct machine_opcode *) hash_find (op_hash, str)) == NULL) + { + as_bad (_("unknown opcode2 `%s'."), str); + return; + } + + argsStart = s; + opcode = 0; + memset (&the_insn, '\0', sizeof (the_insn)); + the_insn.reloc = NO_RELOC; + + reloc = NO_RELOC; + + /* Build the opcode, checking as we go to make sure that the + operands match. + + If an operand matches, we modify the_insn or opcode appropriately, + and do a "continue". If an operand fails to match, we "break". */ + if (insn->args[0] != '\0') + /* Prime the pump. */ + s = parse_operand (s, operand, + insn->args[0] == 'I' + || strcmp (insn->name, "l.nop") == 0); + + for (args = insn->args;; ++args) + { +#if DEBUG + printf (" args = %s\n", args); +#endif + switch (*args) + { + case '\0': /* End of args. */ + /* We have have 0 args, do the bazoooka! */ + if (args == insn->args) + encode (insn, &opcode, 0, 0); + + if (*s == '\0') + { + /* We are truly done. */ + the_insn.opcode = opcode; + if (check_invalid_opcode (opcode)) + as_bad (_("instruction not allowed: %s"), str); + return; + } + as_bad (_("too many operands: %s"), s); + break; + + case ',': /* Must match a comma. */ + if (*s++ == ',') + { + reloc = NO_RELOC; + + /* Parse next operand. */ + s = parse_operand (s, operand, args[1] == 'I'); +#if DEBUG + printf (" ',' case: operand->X_add_number = %d, *args = %s, *s = %s\n", + operand->X_add_number, args, s); +#endif + continue; + } + break; + + case '(': /* Must match a (. */ + s = parse_operand (s, operand, args[1] == 'I'); + continue; + + case ')': /* Must match a ). */ + continue; + + case 'r': /* A general register. */ + args++; + + if (operand->X_op != O_register) + break; /* Only registers. */ + + know (operand->X_add_symbol == 0); + know (operand->X_op_symbol == 0); + regno = operand->X_add_number; + encode (insn, &opcode, regno, *args); +#if DEBUG + printf (" r: operand->X_op = %d\n", operand->X_op); +#endif + continue; + + default: + /* if (! ISALPHA (*args)) + break; */ /* Only immediate values. */ + + if (mask_or_shift) + { +#if DEBUG + printf ("mask_or_shift = %d\n", mask_or_shift); +#endif + reloc = mask_or_shift; + } + mask_or_shift = 0; + + if (strncasecmp (args, "LO(", 3) == 0) + { +#if DEBUG + printf ("reloc_const\n"); +#endif + reloc = RELOC_CONST; + } + else if (strncasecmp (args, "HI(", 3) == 0) + { +#if DEBUG + printf ("reloc_consth\n"); +#endif + reloc = RELOC_CONSTH; + } + + if (*s == '(') + { + operand->X_op = O_constant; +#if 0 + operand->X_add_number = 0; /* ??? if enabled load/store offsets + are zero. */ +#endif + } + else if (*s == ')') + s += 1; +#if DEBUG + printf (" default case: operand->X_add_number = %d, *args = %s, *s = %s\n", + operand->X_add_number, args, s); +#endif + if (operand->X_op == O_constant) + { + if (reloc == NO_RELOC) + { + unsigned long v, mask; + + mask = 0x3ffffff; + v = abs (operand->X_add_number) & ~ mask; + if (v) + as_bad (_("call/jmp target out of range (1)")); + } + + if (reloc == RELOC_CONSTH) + operand->X_add_number = ((operand->X_add_number>>16) & 0xffff); + + the_insn.pcrel = 0; + encode (insn, &opcode, operand->X_add_number, *args); + /* the_insn.reloc = NO_RELOC; */ + continue; + } + + if (reloc == NO_RELOC) + the_insn.reloc = RELOC_JUMPTARG; + else + the_insn.reloc = reloc; +#if DEBUG + printf (" reloc sym=%d\n", the_insn.reloc); + printf (" NO_RELOC=%d\n", NO_RELOC); +#endif + the_insn.exp = *operand; + + /* the_insn.reloc_offset = 1; */ + the_insn.pcrel = 1; /* Assume PC-relative jump. */ + + /* FIXME-SOON, Do we figure out whether abs later, after + know sym val? */ + if (reloc == RELOC_CONST || reloc == RELOC_CONSTH) + the_insn.pcrel = 0; + + encode (insn, &opcode, operand->X_add_number, *args); + continue; + } + + /* Types or values of args don't match. */ + as_bad (_("invalid operands")); + return; + } +} +#endif + +/* This is identical to the md_atof in m68k.c. I think this is right, + but I'm not sure. + + Turn a string in input_line_pointer into a floating point constant + of type type, and store the appropriate bytes in *litP. The number + of LITTLENUMS emitted is stored in *sizeP . An error message is + returned, or NULL on OK. */ + +/* Equal to MAX_PRECISION in atof-ieee.c. */ +#define MAX_LITTLENUMS 6 + +char * +md_atof (type, litP, sizeP) + char type; + char * litP; + int * sizeP; +{ + int prec; + LITTLENUM_TYPE words[MAX_LITTLENUMS]; + LITTLENUM_TYPE *wordP; + char *t; + + switch (type) + { + case 'f': + case 'F': + case 's': + case 'S': + prec = 2; + break; + + case 'd': + case 'D': + case 'r': + case 'R': + prec = 4; + break; + + case 'x': + case 'X': + prec = 6; + break; + + case 'p': + case 'P': + prec = 6; + break; + + default: + *sizeP = 0; + return _("Bad call to MD_ATOF()"); + } + + t = atof_ieee (input_line_pointer, type, words); + if (t) + input_line_pointer = t; + + *sizeP = prec * sizeof (LITTLENUM_TYPE); + + for (wordP = words; prec--;) + { + md_number_to_chars (litP, (valueT) (*wordP++), sizeof (LITTLENUM_TYPE)); + litP += sizeof (LITTLENUM_TYPE); + } + + return NULL; +} + +/* Write out big-endian. */ + +void +md_number_to_chars (buf, val, n) + char *buf; + valueT val; + int n; +{ + number_to_chars_bigendian (buf, val, n); +} + +#ifdef BFD_ASSEMBLER +void +md_apply_fix3 (fixP, val, seg) + fixS * fixP; + valueT * val; + segT seg ATTRIBUTE_UNUSED; +{ + char *buf = fixP->fx_where + fixP->fx_frag->fr_literal; + long t_val; + + t_val = (long) *val; + +#if DEBUG + printf ("md_apply_fix val:%x\n", t_val); +#endif + + fixP->fx_addnumber = t_val; /* Remember value for emit_reloc. */ + + know (fixP->fx_size == 4); + know (fixP->fx_r_type < BFD_RELOC_NONE); + + switch (fixP->fx_r_type) + { + case BFD_RELOC_32: /* XXXXXXXX pattern in a word. */ +#if DEBUG + printf ("reloc_const: val=%x\n", t_val); +#endif + buf[0] = t_val >> 24; + buf[1] = t_val >> 16; + buf[2] = t_val >> 8; + buf[3] = t_val; + break; + + case BFD_RELOC_16: /* XXXX0000 pattern in a word. */ +#if DEBUG + printf ("reloc_const: val=%x\n", t_val); +#endif + buf[0] = t_val >> 8; + buf[1] = t_val; + break; + + case BFD_RELOC_8: /* XX000000 pattern in a word. */ +#if DEBUG + printf ("reloc_const: val=%x\n", t_val); +#endif + buf[0] = t_val; + break; + + case BFD_RELOC_LO16: /* 0000XXXX pattern in a word. */ +#if DEBUG + printf ("reloc_const: val=%x\n", t_val); +#endif + buf[2] = t_val >> 8; /* Holds bits 0000XXXX. */ + buf[3] = t_val; + break; + + case BFD_RELOC_HI16: /* 0000XXXX pattern in a word. */ +#if DEBUG + printf ("reloc_consth: val=%x\n", t_val); +#endif + buf[2] = t_val >> 24; /* Holds bits XXXX0000. */ + buf[3] = t_val >> 16; + break; + + case BFD_RELOC_32_GOT_PCREL: /* 0000XXXX pattern in a word. */ + if (!fixP->fx_done) + { + /* The linker tries to support both AMD and old GNU style + R_IREL relocs. That means that if the addend is exactly + the negative of the address within the section, the + linker will not handle it correctly. */ +#if 0 + if (fixP->fx_pcrel + && t_val != 0 + && t_val == - (fixP->fx_frag->fr_address + fixP->fx_where)) + as_bad_where + (fixP->fx_file, fixP->fx_line, + _("the linker will not handle this relocation correctly (1)")); +#endif + } + else if (fixP->fx_pcrel) + { + long v = t_val >> 28; + + if (v != 0 && v != -1) + as_bad_where (fixP->fx_file, fixP->fx_line, + _("call/jmp target out of range (2)")); + } + else + /* This case was supposed to be handled in machine_ip. */ + abort (); + + buf[0] |= (t_val >> 26) & 0x03; /* Holds bits 0FFFFFFC of address. */ + buf[1] = t_val >> 18; + buf[2] = t_val >> 10; + buf[3] = t_val >> 2; + break; + + case BFD_RELOC_VTABLE_INHERIT: + case BFD_RELOC_VTABLE_ENTRY: + fixP->fx_done = 0; + break; + + case BFD_RELOC_NONE: + default: + as_bad (_("bad relocation type: 0x%02x"), fixP->fx_r_type); + break; + } + + if (fixP->fx_addsy == (symbolS *) NULL) + fixP->fx_done = 1; +} +#else +void +md_apply_fix3 (fixP, valP, seg) + fixS *fixP; + valueT *valP; + segT seg ATTRIBUTE_UNUSED; +{ + long val = *(long*)valP; + char *buf = fixP->fx_where + fixP->fx_frag->fr_literal; + +#if DEBUG + printf ("md_apply_fix val:%x\n", val); +#endif + + fixP->fx_addnumber = val; /* Remember value for emit_reloc. */ + + know (fixP->fx_size == 4); + know (fixP->fx_r_type < NO_RELOC); + + /* This is a hack. There should be a better way to handle this. */ + if (fixP->fx_r_type == RELOC_WDISP30 && fixP->fx_addsy) + val += fixP->fx_where + fixP->fx_frag->fr_address; + + switch (fixP->fx_r_type) + { + case RELOC_32: + buf[0] = val >> 24; + buf[1] = val >> 16; + buf[2] = val >> 8; + buf[3] = val; + break; + + case RELOC_8: + buf[0] = val; + break; + + case RELOC_WDISP30: + val = (val >>= 2) + 1; + buf[0] |= (val >> 24) & 0x3f; + buf[1] = (val >> 16); + buf[2] = val >> 8; + buf[3] = val; + break; + + case RELOC_HI22: + buf[1] |= (val >> 26) & 0x3f; + buf[2] = val >> 18; + buf[3] = val >> 10; + break; + + case RELOC_LO10: + buf[2] |= (val >> 8) & 0x03; + buf[3] = val; + break; + + case RELOC_BASE13: + buf[2] |= (val >> 8) & 0x1f; + buf[3] = val; + break; + + case RELOC_WDISP22: + val = (val >>= 2) + 1; + /* FALLTHROUGH */ + case RELOC_BASE22: + buf[1] |= (val >> 16) & 0x3f; + buf[2] = val >> 8; + buf[3] = val; + break; + + case RELOC_JUMPTARG: /* 0000XXXX pattern in a word. */ + if (!fixP->fx_done) + { + /* The linker tries to support both AMD and old GNU style + R_IREL relocs. That means that if the addend is exactly + the negative of the address within the section, the + linker will not handle it correctly. */ +#if 0 + if (fixP->fx_pcrel + && val != 0 + && val == - (fixP->fx_frag->fr_address + fixP->fx_where)) + as_bad_where + (fixP->fx_file, fixP->fx_line, + _("the linker will not handle this relocation correctly (1)")); +#endif + } + else if (fixP->fx_pcrel) + { + long v = val >> 28; +#if 1 + if (v != 0 && v != -1) + as_bad_where (fixP->fx_file, fixP->fx_line, + _("call/jmp target out of range (2)")); +#endif + } + else + /* This case was supposed to be handled in machine_ip. */ + abort (); + + buf[0] |= (val >> 26) & 0x03; /* Holds bits 0FFFFFFC of address. */ + buf[1] = val >> 18; + buf[2] = val >> 10; + buf[3] = val >> 2; + break; + + case RELOC_CONST: /* 0000XXXX pattern in a word. */ +#if DEBUG + printf ("reloc_const: val=%x\n", val); +#endif + buf[2] = val >> 8; /* Holds bits 0000XXXX. */ + buf[3] = val; + break; + + case RELOC_CONSTH: /* 0000XXXX pattern in a word. */ +#if DEBUG + printf ("reloc_consth: val=%x\n", val); +#endif + buf[2] = val >> 24; /* Holds bits XXXX0000. */ + buf[3] = val >> 16; + break; + + case BFD_RELOC_VTABLE_INHERIT: + case BFD_RELOC_VTABLE_ENTRY: + fixP->fx_done = 0; + break; + + case NO_RELOC: + default: + as_bad (_("bad relocation type: 0x%02x"), fixP->fx_r_type); + break; + } + + if (fixP->fx_addsy == (symbolS *) NULL) + fixP->fx_done = 1; +} +#endif + +#ifdef OBJ_COFF +short +tc_coff_fix2rtype (fixP) + fixS *fixP; +{ +#if DEBUG + printf ("tc_coff_fix2rtype\n"); +#endif + + switch (fixP->fx_r_type) + { + case RELOC_32: + return (R_WORD); + case RELOC_8: + return (R_BYTE); + case RELOC_CONST: + return (R_ILOHALF); + case RELOC_CONSTH: + return (R_IHIHALF); + case RELOC_JUMPTARG: + return (R_IREL); + default: + printf ("need %d\n", fixP->fx_r_type); + abort (); + } + + return 0; +} + +#endif /* OBJ_COFF */ + +/* Should never be called for or32. */ + +void +md_create_short_jump (ptr, from_addr, to_addr, frag, to_symbol) + char * ptr ATTRIBUTE_UNUSED; + addressT from_addr ATTRIBUTE_UNUSED; + addressT to_addr ATTRIBUTE_UNUSED; + fragS * frag ATTRIBUTE_UNUSED; + symbolS * to_symbol ATTRIBUTE_UNUSED; +{ + as_fatal ("or32_create_short_jmp\n"); +} + +/* Should never be called for or32. */ + +#ifndef BFD_ASSEMBLER +void +md_convert_frag (headers, seg, fragP) + object_headers * headers ATTRIBUTE_UNUSED; + segT seg ATTRIBUTE_UNUSED; + register fragS * fragP ATTRIBUTE_UNUSED; +{ + as_fatal ("or32_convert_frag\n"); +} + +#else +void +md_convert_frag (headers, seg, fragP) + bfd * headers ATTRIBUTE_UNUSED; + segT seg ATTRIBUTE_UNUSED; + fragS * fragP ATTRIBUTE_UNUSED; +{ + as_fatal ("or32_convert_frag\n"); +} +#endif + +/* Should never be called for or32. */ + +void +md_create_long_jump (ptr, from_addr, to_addr, frag, to_symbol) + char * ptr ATTRIBUTE_UNUSED; + addressT from_addr ATTRIBUTE_UNUSED; + addressT to_addr ATTRIBUTE_UNUSED; + fragS * frag ATTRIBUTE_UNUSED; + symbolS * to_symbol ATTRIBUTE_UNUSED; +{ + as_fatal ("or32_create_long_jump\n"); +} + +/* Should never be called for or32. */ + +int +md_estimate_size_before_relax (fragP, segtype) + fragS * fragP ATTRIBUTE_UNUSED; + segT segtype ATTRIBUTE_UNUSED; +{ + as_fatal ("or32_estimate_size_before_relax\n"); + return 0; +} + +/* Translate internal representation of relocation info to target format. + + On sparc/29k: first 4 bytes are normal unsigned long address, next three + bytes are index, most sig. byte first. Byte 7 is broken up with + bit 7 as external, bits 6 & 5 unused, and the lower + five bits as relocation type. Next 4 bytes are long addend. */ +/* Thanx and a tip of the hat to Michael Bloom, mb@ttidca.tti.com. */ + +#ifdef OBJ_AOUT +void +tc_aout_fix_to_chars (where, fixP, segment_address_in_file) + char *where; + fixS *fixP; + relax_addressT segment_address_in_file; +{ + long r_symbolnum; + +#if DEBUG + printf ("tc_aout_fix_to_chars\n"); +#endif + + know (fixP->fx_r_type < BFD_RELOC_NONE); + know (fixP->fx_addsy != NULL); + + md_number_to_chars + (where, + fixP->fx_frag->fr_address + fixP->fx_where - segment_address_in_file, + 4); + + r_symbolnum = (S_IS_DEFINED (fixP->fx_addsy) + ? S_GET_TYPE (fixP->fx_addsy) + : fixP->fx_addsy->sy_number); + + where[4] = (r_symbolnum >> 16) & 0x0ff; + where[5] = (r_symbolnum >> 8) & 0x0ff; + where[6] = r_symbolnum & 0x0ff; + where[7] = (((!S_IS_DEFINED (fixP->fx_addsy)) << 7) & 0x80) | (0 & 0x60) | (fixP->fx_r_type & 0x1F); + + /* Also easy. */ + md_number_to_chars (&where[8], fixP->fx_addnumber, 4); +} + +#endif /* OBJ_AOUT */ + +const char *md_shortopts = ""; + +struct option md_longopts[] = + { + { NULL, no_argument, NULL, 0 } + }; +size_t md_longopts_size = sizeof (md_longopts); + +int +md_parse_option (c, arg) + int c ATTRIBUTE_UNUSED; + char * arg ATTRIBUTE_UNUSED; +{ + return 0; +} + +void +md_show_usage (stream) + FILE * stream ATTRIBUTE_UNUSED; +{ +} + +/* This is called when a line is unrecognized. This is used to handle + definitions of or32 style local labels. */ + +int +or32_unrecognized_line (c) + int c; +{ + int lab; + char *s; + + if (c != '$' + || ! ISDIGIT ((unsigned char) input_line_pointer[0])) + return 0; + + s = input_line_pointer; + + lab = 0; + while (ISDIGIT ((unsigned char) *s)) + { + lab = lab * 10 + *s - '0'; + ++s; + } + + if (*s != ':') + /* Not a label definition. */ + return 0; + + if (dollar_label_defined (lab)) + { + as_bad (_("label \"$%d\" redefined"), lab); + return 0; + } + + define_dollar_label (lab); + colon (dollar_label_name (lab, 0)); + input_line_pointer = s + 1; + + return 1; +} + +#ifndef BFD_ASSEMBLER +/* Record a fixup for a cons expression. */ +/* + void +or32_cons_fix_new (frag, where, nbytes, exp) + fragS *frag; + int where; + int nbytes; + expressionS *exp; +{ + fix_new_exp (frag, where, nbytes, exp, 0, + nbytes == 5 ? RELOC_32 + : nbytes == 2 ? RELOC_16 + : RELOC_8); +} +void +tc_aout_pre_write_hook () +{ +#if DEBUG + printf ("In tc_aout_pre_write_hook()\n"); +#endif +} +*/ +#endif + +/* Default the values of symbols known that should be "predefined". We + don't bother to predefine them unless you actually use one, since there + are a lot of them. */ + +symbolS * +md_undefined_symbol (name) + char *name ATTRIBUTE_UNUSED; +{ +#ifndef BFD_ASSEMBLER + long regnum; + char testbuf[5 + /*SLOP*/ 5]; + +#if DEBUG + printf ("md_undefined_symbol(%s)\n", name); +#endif + + /* Register name. */ + if (name[0] == 'r' || name[0] == 'R' || name[0] == 'a' || name[0] == 'b') + { + long maxreg; + + /* Parse the number, make sure it has no extra zeroes or + trailing chars. */ + regnum = atol (& name[1]); + + if (regnum > 31) + as_fatal (_("register out of range")); + + sprintf (testbuf, "%ld", regnum); + + if (strcmp (testbuf, &name[1]) != 0) + return NULL; /* gr007 or lr7foo or whatever. */ + + /* We have a wiener! Define and return a new symbol for it. */ + return (symbol_new (name, SEG_REGISTER, (valueT) regnum, + &zero_address_frag)); + } +#endif + return NULL; +} + +/* Parse an operand that is machine-specific. */ + +void +md_operand (expressionP) + expressionS *expressionP; +{ +#if DEBUG + printf (" md_operand(input_line_pointer = %s)\n", input_line_pointer); +#endif + + if (input_line_pointer[0] == REGISTER_PREFIX && input_line_pointer[1] == 'r') + { + /* We have a numeric register expression. No biggy. */ + input_line_pointer += 2; /* Skip %r */ + (void) expression (expressionP); + + if (expressionP->X_op != O_constant + || expressionP->X_add_number > 255) + as_bad (_("Invalid expression after %%%%\n")); + expressionP->X_op = O_register; + } + else if (input_line_pointer[0] == '&') + { + /* We are taking the 'address' of a register...this one is not + in the manual, but it *is* in traps/fpsymbol.h! What they + seem to want is the register number, as an absolute number. */ + input_line_pointer++; /* Skip & */ + (void) expression (expressionP); + + if (expressionP->X_op != O_register) + as_bad (_("invalid register in & expression")); + else + expressionP->X_op = O_constant; + } + else if (input_line_pointer[0] == '$' + && ISDIGIT ((unsigned char) input_line_pointer[1])) + { + long lab; + char *name; + symbolS *sym; + + /* This is a local label. */ + ++input_line_pointer; + lab = (long) get_absolute_expression (); + + if (dollar_label_defined (lab)) + { + name = dollar_label_name (lab, 0); + sym = symbol_find (name); + } + else + { + name = dollar_label_name (lab, 1); + sym = symbol_find_or_make (name); + } + + expressionP->X_op = O_symbol; + expressionP->X_add_symbol = sym; + expressionP->X_add_number = 0; + } + else if (input_line_pointer[0] == '$') + { + char *s; + char type; + int fieldnum, fieldlimit; + LITTLENUM_TYPE floatbuf[8]; + + /* $float(), $doubleN(), or $extendN() convert floating values + to integers. */ + s = input_line_pointer; + + ++s; + + fieldnum = 0; + if (strncmp (s, "double", sizeof "double" - 1) == 0) + { + s += sizeof "double" - 1; + type = 'd'; + fieldlimit = 2; + } + else if (strncmp (s, "float", sizeof "float" - 1) == 0) + { + s += sizeof "float" - 1; + type = 'f'; + fieldlimit = 1; + } + else if (strncmp (s, "extend", sizeof "extend" - 1) == 0) + { + s += sizeof "extend" - 1; + type = 'x'; + fieldlimit = 4; + } + else + return; + + if (ISDIGIT (*s)) + { + fieldnum = *s - '0'; + ++s; + } + if (fieldnum >= fieldlimit) + return; + + SKIP_WHITESPACE (); + if (*s != '(') + return; + ++s; + SKIP_WHITESPACE (); + + s = atof_ieee (s, type, floatbuf); + if (s == NULL) + return; + s = s; + + SKIP_WHITESPACE (); + if (*s != ')') + return; + ++s; + SKIP_WHITESPACE (); + + input_line_pointer = s; + expressionP->X_op = O_constant; + expressionP->X_unsigned = 1; + expressionP->X_add_number = ((floatbuf[fieldnum * 2] + << LITTLENUM_NUMBER_OF_BITS) + + floatbuf[fieldnum * 2 + 1]); + } +} + +/* Round up a section size to the appropriate boundary. */ + +valueT +md_section_align (segment, size) + segT segment ATTRIBUTE_UNUSED; + valueT size ATTRIBUTE_UNUSED; +{ + return size; /* Byte alignment is fine. */ +} + +/* Exactly what point is a PC-relative offset relative TO? + On the 29000, they're relative to the address of the instruction, + which we have set up as the address of the fixup too. */ + +long +md_pcrel_from (fixP) + fixS *fixP; +{ + return fixP->fx_where + fixP->fx_frag->fr_address; +} + +/* Generate a reloc for a fixup. */ + +#ifdef BFD_ASSEMBLER +arelent * +tc_gen_reloc (seg, fixp) + asection *seg ATTRIBUTE_UNUSED; + fixS *fixp; +{ + arelent *reloc; + + reloc = (arelent *) xmalloc (sizeof (arelent)); + reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *)); + *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy); + reloc->address = fixp->fx_frag->fr_address + fixp->fx_where; + /* reloc->address = fixp->fx_frag->fr_address + fixp->fx_where + fixp->fx_addnumber;*/ + reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type); + + if (reloc->howto == (reloc_howto_type *) NULL) + { + as_bad_where (fixp->fx_file, fixp->fx_line, + _("reloc %d not supported by object file format"), + (int) fixp->fx_r_type); + return NULL; + } + + if ( fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY + || fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT) + reloc->addend = fixp->fx_offset; + else + reloc->addend = fixp->fx_addnumber; + + return reloc; +} +#endif + diff --git a/gas/config/tc-or32.h b/gas/config/tc-or32.h new file mode 100644 index 000000000..b78cf9384 --- /dev/null +++ b/gas/config/tc-or32.h @@ -0,0 +1,63 @@ +/* tc-or32.h -- Assemble for the OpenRISC 1000. + Copyright (C) 2002 Free Software Foundation, Inc. + Contributed by Damjan Lampret . + Based upon a29k port. + + This file is part of GAS, the GNU Assembler. + + GAS is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. + + GAS is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with GAS; see the file COPYING. If not, write to + the Free Software Foundation, 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. */ + +#define TC_OR32 + +#define TARGET_BYTES_BIG_ENDIAN 1 + +#define LEX_DOLLAR 1 + +#ifdef OBJ_ELF +#define TARGET_FORMAT "elf32-or32" +#define TARGET_ARCH bfd_arch_or32 +#endif + +#ifdef OBJ_COFF +#define TARGET_FORMAT "coff-or32-big" +#define reloc_type int +#endif + +#define tc_unrecognized_line(c) or32_unrecognized_line (c) + +extern int or32_unrecognized_line PARAMS ((int)); + +#define tc_headers_hook(a) ; /* not used */ +#define tc_headers_hook(a) ; /* not used */ +#define tc_crawl_symbol_chain(a) ; /* not used */ +#define tc_coff_symbol_emit_hook(a) ; /* not used */ + +#define AOUT_MACHTYPE 80 +#define TC_COFF_FIX2RTYPE(fix_ptr) tc_coff_fix2rtype (fix_ptr) +#define BFD_ARCH bfd_arch_or32 +#define COFF_MAGIC SIPFBOMAGIC + +/* Should the reloc be output ? + on the 29k, this is true only if there is a symbol attatched. + on the h8, this is allways true, since no fixup is done. */ +#define TC_COUNT_RELOC(x) (x->fx_addsy) +#define TC_CONS_RELOC RELOC_32 + +#define COFF_FLAGS F_AR32W +#define NEED_FX_R_TYPE + +#define ZERO_BASED_SEGMENTS + diff --git a/gas/configure b/gas/configure index 73d11706e..74ccca242 100755 --- a/gas/configure +++ b/gas/configure @@ -719,49 +719,249 @@ test "$host_alias" != "$target_alias" && NONENONEs,x,x, && program_prefix=${target_alias}- +# Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:726: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_CC="gcc" + break + fi + done + IFS="$ac_save_ifs" +fi +fi +CC="$ac_cv_prog_CC" +if test -n "$CC"; then + echo "$ac_t""$CC" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi - echo $ac_n "checking for strerror in -lcposix""... $ac_c" 1>&6 -echo "configure:725: checking for strerror in -lcposix" >&5 -ac_lib_var=`echo cposix'_'strerror | sed 'y%./+-%__p_%'` -if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:756: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else - ac_save_LIBS="$LIBS" -LIBS="-lcposix $LIBS" -cat > conftest.$ac_ext <&6 +else + echo "$ac_t""no" 1>&6 +fi + + if test -z "$CC"; then + case "`uname -s`" in + *win32* | *WIN32*) + # Extract the first word of "cl", so it can be a program name with args. +set dummy cl; ac_word=$2 +echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 +echo "configure:807: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" + ac_dummy="$PATH" + for ac_dir in $ac_dummy; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + ac_cv_prog_CC="cl" + break + fi + done + IFS="$ac_save_ifs" +fi +fi +CC="$ac_cv_prog_CC" +if test -n "$CC"; then + echo "$ac_t""$CC" 1>&6 +else + echo "$ac_t""no" 1>&6 +fi + ;; + esac + fi + test -z "$CC" && { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; } +fi + +echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 +echo "configure:839: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 + +ac_ext=c +# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. +ac_cpp='$CPP $CPPFLAGS' +ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' +ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' +cross_compiling=$ac_cv_prog_cc_cross + +cat > conftest.$ac_ext << EOF + +#line 850 "configure" #include "confdefs.h" -/* Override any gcc2 internal prototype to avoid an error. */ -/* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ -char strerror(); -int main() { -strerror() -; return 0; } +main(){return(0);} EOF -if { (eval echo configure:744: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then - rm -rf conftest* - eval "ac_cv_lib_$ac_lib_var=yes" +if { (eval echo configure:855: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + ac_cv_prog_cc_works=yes + # If we can't run a trivial program, we are probably using a cross compiler. + if (./conftest; exit) 2>/dev/null; then + ac_cv_prog_cc_cross=no + else + ac_cv_prog_cc_cross=yes + fi else echo "configure: failed program was:" >&5 cat conftest.$ac_ext >&5 - rm -rf conftest* - eval "ac_cv_lib_$ac_lib_var=no" + ac_cv_prog_cc_works=no +fi +rm -fr conftest* +ac_ext=c +# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. +ac_cpp='$CPP $CPPFLAGS' +ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' +ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' +cross_compiling=$ac_cv_prog_cc_cross + +echo "$ac_t""$ac_cv_prog_cc_works" 1>&6 +if test $ac_cv_prog_cc_works = no; then + { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } +fi +echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 +echo "configure:881: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 +cross_compiling=$ac_cv_prog_cc_cross + +echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 +echo "configure:886: checking whether we are using GNU C" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + cat > conftest.c <&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then + ac_cv_prog_gcc=yes +else + ac_cv_prog_gcc=no +fi +fi + +echo "$ac_t""$ac_cv_prog_gcc" 1>&6 + +if test $ac_cv_prog_gcc = yes; then + GCC=yes +else + GCC= +fi + +ac_test_CFLAGS="${CFLAGS+set}" +ac_save_CFLAGS="$CFLAGS" +CFLAGS= +echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 +echo "configure:914: checking whether ${CC-cc} accepts -g" >&5 +if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + echo 'void f(){}' > conftest.c +if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then + ac_cv_prog_cc_g=yes +else + ac_cv_prog_cc_g=no fi rm -f conftest* -LIBS="$ac_save_LIBS" fi -if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then + +echo "$ac_t""$ac_cv_prog_cc_g" 1>&6 +if test "$ac_test_CFLAGS" = set; then + CFLAGS="$ac_save_CFLAGS" +elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" + else + CFLAGS="-g" + fi +else + if test "$GCC" = yes; then + CFLAGS="-O2" + else + CFLAGS= + fi +fi + +echo $ac_n "checking for POSIXized ISC""... $ac_c" 1>&6 +echo "configure:946: checking for POSIXized ISC" >&5 +if test -d /etc/conf/kconfig.d && + grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1 +then echo "$ac_t""yes" 1>&6 - LIBS="$LIBS -lcposix" + ISC=yes # If later tests want to check for ISC. + cat >> confdefs.h <<\EOF +#define _POSIX_SOURCE 1 +EOF + + if test "$GCC" = yes; then + CC="$CC -posix" + else + CC="$CC -Xp" + fi else echo "$ac_t""no" 1>&6 + ISC= fi - - BFD_VERSION=`sed -n -e 's/^.._INIT_AUTOMAKE.*,[ ]*\([^ ]*\)[ ]*).*/\1/p' < ${srcdir}/../bfd/configure.in` # Find a good install program. We prefer a C program (faster), @@ -776,7 +976,7 @@ BFD_VERSION=`sed -n -e 's/^.._INIT_AUTOMAKE.*,[ ]*\([^ ]*\)[ ]*).*/\1/p' < ${ # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # ./install, which can be erroneously created by make from ./install.sh. echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 -echo "configure:780: checking for a BSD compatible install" >&5 +echo "configure:980: checking for a BSD compatible install" >&5 if test -z "$INSTALL"; then if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -829,7 +1029,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 -echo "configure:833: checking whether build environment is sane" >&5 +echo "configure:1033: checking whether build environment is sane" >&5 # Just in case sleep 1 echo timestamp > conftestfile @@ -886,7 +1086,7 @@ test "$program_suffix" != NONE && test "$program_transform_name" = "" && program_transform_name="s,x,x," echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 -echo "configure:890: checking whether ${MAKE-make} sets \${MAKE}" >&5 +echo "configure:1090: checking whether ${MAKE-make} sets \${MAKE}" >&5 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -932,7 +1132,7 @@ EOF missing_dir=`cd $ac_aux_dir && pwd` echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 -echo "configure:936: checking for working aclocal" >&5 +echo "configure:1136: checking for working aclocal" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -945,7 +1145,7 @@ else fi echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 -echo "configure:949: checking for working autoconf" >&5 +echo "configure:1149: checking for working autoconf" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -958,7 +1158,7 @@ else fi echo $ac_n "checking for working automake""... $ac_c" 1>&6 -echo "configure:962: checking for working automake" >&5 +echo "configure:1162: checking for working automake" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -971,7 +1171,7 @@ else fi echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 -echo "configure:975: checking for working autoheader" >&5 +echo "configure:1175: checking for working autoheader" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -984,7 +1184,7 @@ else fi echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 -echo "configure:988: checking for working makeinfo" >&5 +echo "configure:1188: checking for working makeinfo" >&5 # Run test in a subshell; some versions of sh will print an error if # an executable is not found, even if stderr is redirected. # Redirect stdin to placate older versions of autoconf. Sigh. @@ -1067,228 +1267,6 @@ else enable_fast_install=yes fi -# Extract the first word of "gcc", so it can be a program name with args. -set dummy gcc; ac_word=$2 -echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1074: checking for $ac_word" >&5 -if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" - ac_dummy="$PATH" - for ac_dir in $ac_dummy; do - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/$ac_word; then - ac_cv_prog_CC="gcc" - break - fi - done - IFS="$ac_save_ifs" -fi -fi -CC="$ac_cv_prog_CC" -if test -n "$CC"; then - echo "$ac_t""$CC" 1>&6 -else - echo "$ac_t""no" 1>&6 -fi - -if test -z "$CC"; then - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1104: checking for $ac_word" >&5 -if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" - ac_prog_rejected=no - ac_dummy="$PATH" - for ac_dir in $ac_dummy; do - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/$ac_word; then - if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then - ac_prog_rejected=yes - continue - fi - ac_cv_prog_CC="cc" - break - fi - done - IFS="$ac_save_ifs" -if test $ac_prog_rejected = yes; then - # We found a bogon in the path, so make sure we never use it. - set dummy $ac_cv_prog_CC - shift - if test $# -gt 0; then - # We chose a different compiler from the bogus one. - # However, it has the same basename, so the bogon will be chosen - # first if we set CC to just the basename; use the full file name. - shift - set dummy "$ac_dir/$ac_word" "$@" - shift - ac_cv_prog_CC="$@" - fi -fi -fi -fi -CC="$ac_cv_prog_CC" -if test -n "$CC"; then - echo "$ac_t""$CC" 1>&6 -else - echo "$ac_t""no" 1>&6 -fi - - if test -z "$CC"; then - case "`uname -s`" in - *win32* | *WIN32*) - # Extract the first word of "cl", so it can be a program name with args. -set dummy cl; ac_word=$2 -echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1155: checking for $ac_word" >&5 -if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" - ac_dummy="$PATH" - for ac_dir in $ac_dummy; do - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/$ac_word; then - ac_cv_prog_CC="cl" - break - fi - done - IFS="$ac_save_ifs" -fi -fi -CC="$ac_cv_prog_CC" -if test -n "$CC"; then - echo "$ac_t""$CC" 1>&6 -else - echo "$ac_t""no" 1>&6 -fi - ;; - esac - fi - test -z "$CC" && { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; } -fi - -echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 -echo "configure:1187: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 - -ac_ext=c -# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. -ac_cpp='$CPP $CPPFLAGS' -ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' -ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' -cross_compiling=$ac_cv_prog_cc_cross - -cat > conftest.$ac_ext << EOF - -#line 1198 "configure" -#include "confdefs.h" - -main(){return(0);} -EOF -if { (eval echo configure:1203: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then - ac_cv_prog_cc_works=yes - # If we can't run a trivial program, we are probably using a cross compiler. - if (./conftest; exit) 2>/dev/null; then - ac_cv_prog_cc_cross=no - else - ac_cv_prog_cc_cross=yes - fi -else - echo "configure: failed program was:" >&5 - cat conftest.$ac_ext >&5 - ac_cv_prog_cc_works=no -fi -rm -fr conftest* -ac_ext=c -# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. -ac_cpp='$CPP $CPPFLAGS' -ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' -ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' -cross_compiling=$ac_cv_prog_cc_cross - -echo "$ac_t""$ac_cv_prog_cc_works" 1>&6 -if test $ac_cv_prog_cc_works = no; then - { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } -fi -echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 -echo "configure:1229: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 -echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 -cross_compiling=$ac_cv_prog_cc_cross - -echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 -echo "configure:1234: checking whether we are using GNU C" >&5 -if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - cat > conftest.c <&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then - ac_cv_prog_gcc=yes -else - ac_cv_prog_gcc=no -fi -fi - -echo "$ac_t""$ac_cv_prog_gcc" 1>&6 - -if test $ac_cv_prog_gcc = yes; then - GCC=yes -else - GCC= -fi - -ac_test_CFLAGS="${CFLAGS+set}" -ac_save_CFLAGS="$CFLAGS" -CFLAGS= -echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 -echo "configure:1262: checking whether ${CC-cc} accepts -g" >&5 -if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - echo 'void f(){}' > conftest.c -if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then - ac_cv_prog_cc_g=yes -else - ac_cv_prog_cc_g=no -fi -rm -f conftest* - -fi - -echo "$ac_t""$ac_cv_prog_cc_g" 1>&6 -if test "$ac_test_CFLAGS" = set; then - CFLAGS="$ac_save_CFLAGS" -elif test $ac_cv_prog_cc_g = yes; then - if test "$GCC" = yes; then - CFLAGS="-g -O2" - else - CFLAGS="-g" - fi -else - if test "$GCC" = yes; then - CFLAGS="-O2" - else - CFLAGS= - fi -fi - # Check whether --with-gnu-ld or --without-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then withval="$with_gnu_ld" @@ -1301,7 +1279,7 @@ ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6 -echo "configure:1305: checking for ld used by GCC" >&5 +echo "configure:1283: checking for ld used by GCC" >&5 case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw @@ -1331,10 +1309,10 @@ echo "configure:1305: checking for ld used by GCC" >&5 esac elif test "$with_gnu_ld" = yes; then echo $ac_n "checking for GNU ld""... $ac_c" 1>&6 -echo "configure:1335: checking for GNU ld" >&5 +echo "configure:1313: checking for GNU ld" >&5 else echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6 -echo "configure:1338: checking for non-GNU ld" >&5 +echo "configure:1316: checking for non-GNU ld" >&5 fi if eval "test \"`echo '$''{'lt_cv_path_LD'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -1369,7 +1347,7 @@ else fi test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; } echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6 -echo "configure:1373: checking if the linker ($LD) is GNU ld" >&5 +echo "configure:1351: checking if the linker ($LD) is GNU ld" >&5 if eval "test \"`echo '$''{'lt_cv_prog_gnu_ld'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1386,7 +1364,7 @@ with_gnu_ld=$lt_cv_prog_gnu_ld echo $ac_n "checking for $LD option to reload object files""... $ac_c" 1>&6 -echo "configure:1390: checking for $LD option to reload object files" >&5 +echo "configure:1368: checking for $LD option to reload object files" >&5 if eval "test \"`echo '$''{'lt_cv_ld_reload_flag'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1398,7 +1376,7 @@ reload_flag=$lt_cv_ld_reload_flag test -n "$reload_flag" && reload_flag=" $reload_flag" echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6 -echo "configure:1402: checking for BSD-compatible nm" >&5 +echo "configure:1380: checking for BSD-compatible nm" >&5 if eval "test \"`echo '$''{'lt_cv_path_NM'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1436,7 +1414,7 @@ NM="$lt_cv_path_NM" echo "$ac_t""$NM" 1>&6 echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 -echo "configure:1440: checking whether ln -s works" >&5 +echo "configure:1418: checking whether ln -s works" >&5 if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1457,7 +1435,7 @@ else fi echo $ac_n "checking how to recognise dependant libraries""... $ac_c" 1>&6 -echo "configure:1461: checking how to recognise dependant libraries" >&5 +echo "configure:1439: checking how to recognise dependant libraries" >&5 if eval "test \"`echo '$''{'lt_cv_deplibs_check_method'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1630,13 +1608,13 @@ file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method echo $ac_n "checking for object suffix""... $ac_c" 1>&6 -echo "configure:1634: checking for object suffix" >&5 +echo "configure:1612: checking for object suffix" >&5 if eval "test \"`echo '$''{'ac_cv_objext'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else rm -f conftest* echo 'int i = 1;' > conftest.$ac_ext -if { (eval echo configure:1640: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1618: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then for ac_file in conftest.*; do case $ac_file in *.c) ;; @@ -1656,7 +1634,7 @@ ac_objext=$ac_cv_objext echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 -echo "configure:1660: checking for executable suffix" >&5 +echo "configure:1638: checking for executable suffix" >&5 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1666,7 +1644,7 @@ else rm -f conftest* echo 'int main () { return 0; }' > conftest.$ac_ext ac_cv_exeext= - if { (eval echo configure:1670: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then + if { (eval echo configure:1648: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then for file in conftest.*; do case $file in *.c | *.o | *.obj) ;; @@ -1699,7 +1677,7 @@ case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then echo $ac_n "checking for ${ac_tool_prefix}file""... $ac_c" 1>&6 -echo "configure:1703: checking for ${ac_tool_prefix}file" >&5 +echo "configure:1681: checking for ${ac_tool_prefix}file" >&5 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1761,7 +1739,7 @@ fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then echo $ac_n "checking for file""... $ac_c" 1>&6 -echo "configure:1765: checking for file" >&5 +echo "configure:1743: checking for file" >&5 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1832,7 +1810,7 @@ esac # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1836: checking for $ac_word" >&5 +echo "configure:1814: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1864,7 +1842,7 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1868: checking for $ac_word" >&5 +echo "configure:1846: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1899,7 +1877,7 @@ fi # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1903: checking for $ac_word" >&5 +echo "configure:1881: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1931,7 +1909,7 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1935: checking for $ac_word" >&5 +echo "configure:1913: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1998,8 +1976,8 @@ test x"$pic_mode" = xno && libtool_flags="$libtool_flags --prefer-non-pic" case $host in *-*-irix6*) # Find out which ABI we are using. - echo '#line 2002 "configure"' > conftest.$ac_ext - if { (eval echo configure:2003: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + echo '#line 1980 "configure"' > conftest.$ac_ext + if { (eval echo configure:1981: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" @@ -2018,7 +1996,7 @@ case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext - if { (eval echo configure:2022: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + if { (eval echo configure:2000: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then case "`/usr/bin/file conftest.o`" in *ELF-32*) HPUX_IA64_MODE="32" @@ -2036,7 +2014,7 @@ ia64-*-hpux*) SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6 -echo "configure:2040: checking whether the C compiler needs -belf" >&5 +echo "configure:2018: checking whether the C compiler needs -belf" >&5 if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2049,14 +2027,14 @@ ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$a cross_compiling=$ac_cv_prog_cc_cross cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2038: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* lt_cv_cc_needs_belf=yes else @@ -2309,6 +2287,7 @@ for this_target in $target $canon_targets ; do m8*) cpu_type=m88k ;; mips*el) cpu_type=mips endian=little ;; mips*) cpu_type=mips endian=big ;; + or32*) cpu_type=or32 endian=big ;; pjl*) cpu_type=pj endian=little ;; pj*) cpu_type=pj endian=big ;; powerpc*le*) cpu_type=ppc endian=little ;; @@ -2550,6 +2529,9 @@ EOF mn10200-*-*) fmt=elf bfd_gas=yes ;; mn10300-*-*) fmt=elf bfd_gas=yes ;; openrisc-*-*) fmt=elf bfd_gas=yes ;; + or32-*-rtems*) fmt=coff ;; + or32-*-coff) fmt=coff ;; + or32-*-elf) fmt=elf ;; pj*) fmt=elf ;; ppc-*-pe | ppc-*-cygwin* | ppc-*-winnt*) fmt=coff em=pe ;; @@ -3155,7 +3137,7 @@ EOF # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3159: checking for $ac_word" >&5 +echo "configure:3141: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3185,7 +3167,7 @@ if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3189: checking for $ac_word" >&5 +echo "configure:3171: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3236,7 +3218,7 @@ fi # Extract the first word of "cl", so it can be a program name with args. set dummy cl; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3240: checking for $ac_word" >&5 +echo "configure:3222: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3268,7 +3250,7 @@ fi fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 -echo "configure:3272: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 +echo "configure:3254: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 ac_ext=c # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. @@ -3279,12 +3261,12 @@ cross_compiling=$ac_cv_prog_cc_cross cat > conftest.$ac_ext << EOF -#line 3283 "configure" +#line 3265 "configure" #include "confdefs.h" main(){return(0);} EOF -if { (eval echo configure:3288: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3270: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ac_cv_prog_cc_works=yes # If we can't run a trivial program, we are probably using a cross compiler. if (./conftest; exit) 2>/dev/null; then @@ -3310,12 +3292,12 @@ if test $ac_cv_prog_cc_works = no; then { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 -echo "configure:3314: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo "configure:3296: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 cross_compiling=$ac_cv_prog_cc_cross echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 -echo "configure:3319: checking whether we are using GNU C" >&5 +echo "configure:3301: checking whether we are using GNU C" >&5 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3324,7 +3306,7 @@ else yes; #endif EOF -if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:3328: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then +if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:3310: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then ac_cv_prog_gcc=yes else ac_cv_prog_gcc=no @@ -3343,7 +3325,7 @@ ac_test_CFLAGS="${CFLAGS+set}" ac_save_CFLAGS="$CFLAGS" CFLAGS= echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 -echo "configure:3347: checking whether ${CC-cc} accepts -g" >&5 +echo "configure:3329: checking whether ${CC-cc} accepts -g" >&5 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3380,7 +3362,7 @@ do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3384: checking for $ac_word" >&5 +echo "configure:3366: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_YACC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3411,7 +3393,7 @@ done test -n "$YACC" || YACC="yacc" echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 -echo "configure:3415: checking how to run the C preprocessor" >&5 +echo "configure:3397: checking how to run the C preprocessor" >&5 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= @@ -3426,13 +3408,13 @@ else # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:3436: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3418: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -3443,13 +3425,13 @@ else rm -rf conftest* CPP="${CC-cc} -E -traditional-cpp" cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:3453: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3435: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -3460,13 +3442,13 @@ else rm -rf conftest* CPP="${CC-cc} -nologo -E" cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:3470: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3452: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -3496,7 +3478,7 @@ do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3500: checking for $ac_word" >&5 +echo "configure:3482: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_LEX'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3529,7 +3511,7 @@ test -n "$LEX" || LEX=""$missing_dir/missing flex"" # Extract the first word of "flex", so it can be a program name with args. set dummy flex; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3533: checking for $ac_word" >&5 +echo "configure:3515: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_LEX'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3563,7 +3545,7 @@ then *) ac_lib=l ;; esac echo $ac_n "checking for yywrap in -l$ac_lib""... $ac_c" 1>&6 -echo "configure:3567: checking for yywrap in -l$ac_lib" >&5 +echo "configure:3549: checking for yywrap in -l$ac_lib" >&5 ac_lib_var=`echo $ac_lib'_'yywrap | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -3571,7 +3553,7 @@ else ac_save_LIBS="$LIBS" LIBS="-l$ac_lib $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3568: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -3605,7 +3587,7 @@ fi fi echo $ac_n "checking lex output file root""... $ac_c" 1>&6 -echo "configure:3609: checking lex output file root" >&5 +echo "configure:3591: checking lex output file root" >&5 if eval "test \"`echo '$''{'ac_cv_prog_lex_root'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3626,7 +3608,7 @@ echo "$ac_t""$ac_cv_prog_lex_root" 1>&6 LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root echo $ac_n "checking whether yytext is a pointer""... $ac_c" 1>&6 -echo "configure:3630: checking whether yytext is a pointer" >&5 +echo "configure:3612: checking whether yytext is a pointer" >&5 if eval "test \"`echo '$''{'ac_cv_prog_lex_yytext_pointer'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3638,14 +3620,14 @@ echo 'extern char *yytext;' >>$LEX_OUTPUT_ROOT.c ac_save_LIBS="$LIBS" LIBS="$LIBS $LEXLIB" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3631: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_prog_lex_yytext_pointer=yes else @@ -3671,7 +3653,7 @@ ALL_LINGUAS="fr tr" # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3675: checking for $ac_word" >&5 +echo "configure:3657: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3699,12 +3681,12 @@ else fi echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 -echo "configure:3703: checking for ANSI C header files" >&5 +echo "configure:3685: checking for ANSI C header files" >&5 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -3712,7 +3694,7 @@ else #include EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:3716: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3698: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -3729,7 +3711,7 @@ rm -f conftest* if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat > conftest.$ac_ext < EOF @@ -3747,7 +3729,7 @@ fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat > conftest.$ac_ext < EOF @@ -3768,7 +3750,7 @@ if test "$cross_compiling" = yes; then : else cat > conftest.$ac_ext < #define ISLOWER(c) ('a' <= (c) && (c) <= 'z') @@ -3779,7 +3761,7 @@ if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2); exit (0); } EOF -if { (eval echo configure:3783: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3765: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then : else @@ -3803,12 +3785,12 @@ EOF fi echo $ac_n "checking for working const""... $ac_c" 1>&6 -echo "configure:3807: checking for working const" >&5 +echo "configure:3789: checking for working const" >&5 if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3843: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_const=yes else @@ -3878,21 +3860,21 @@ EOF fi echo $ac_n "checking for inline""... $ac_c" 1>&6 -echo "configure:3882: checking for inline" >&5 +echo "configure:3864: checking for inline" >&5 if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3878: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_inline=$ac_kw; break else @@ -3918,12 +3900,12 @@ EOF esac echo $ac_n "checking for off_t""... $ac_c" 1>&6 -echo "configure:3922: checking for off_t" >&5 +echo "configure:3904: checking for off_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_off_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #if STDC_HEADERS @@ -3951,12 +3933,12 @@ EOF fi echo $ac_n "checking for size_t""... $ac_c" 1>&6 -echo "configure:3955: checking for size_t" >&5 +echo "configure:3937: checking for size_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #if STDC_HEADERS @@ -3986,19 +3968,19 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6 -echo "configure:3990: checking for working alloca.h" >&5 +echo "configure:3972: checking for working alloca.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { char *p = alloca(2 * sizeof(int)); ; return 0; } EOF -if { (eval echo configure:4002: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3984: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_header_alloca_h=yes else @@ -4019,12 +4001,12 @@ EOF fi echo $ac_n "checking for alloca""... $ac_c" 1>&6 -echo "configure:4023: checking for alloca" >&5 +echo "configure:4005: checking for alloca" >&5 if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4038: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_func_alloca_works=yes else @@ -4084,12 +4066,12 @@ EOF echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6 -echo "configure:4088: checking whether alloca needs Cray hooks" >&5 +echo "configure:4070: checking whether alloca needs Cray hooks" >&5 if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&6 if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:4118: checking for $ac_func" >&5 +echo "configure:4100: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4128: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -4169,7 +4151,7 @@ done fi echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6 -echo "configure:4173: checking stack direction for C alloca" >&5 +echo "configure:4155: checking stack direction for C alloca" >&5 if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4177,7 +4159,7 @@ else ac_cv_c_stack_direction=0 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:4182: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_c_stack_direction=1 else @@ -4217,21 +4199,21 @@ EOF fi -for ac_hdr in unistd.h +for ac_hdr in stdlib.h unistd.h sys/stat.h sys/types.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:4225: checking for $ac_hdr" >&5 +echo "configure:4207: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4235: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4217: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -4260,12 +4242,12 @@ done for ac_func in getpagesize do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:4264: checking for $ac_func" >&5 +echo "configure:4246: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4274: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -4313,7 +4295,7 @@ fi done echo $ac_n "checking for working mmap""... $ac_c" 1>&6 -echo "configure:4317: checking for working mmap" >&5 +echo "configure:4299: checking for working mmap" >&5 if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4321,7 +4303,7 @@ else ac_cv_func_mmap_fixed_mapped=no else cat > conftest.$ac_ext < #include +#if HAVE_SYS_TYPES_H +# include +#endif + +#if HAVE_STDLIB_H +# include +#endif + +#if HAVE_SYS_STAT_H +# include +#endif + +#if HAVE_UNISTD_H +# include +#endif + /* This mess was copied from the GNU getpagesize.h. */ #ifndef HAVE_GETPAGESIZE -# ifdef HAVE_UNISTD_H -# include -# endif /* Assume that all systems that can run configure have sys/param.h. */ # ifndef HAVE_SYS_PARAM_H @@ -4461,7 +4456,7 @@ main() } EOF -if { (eval echo configure:4465: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:4460: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_func_mmap_fixed_mapped=yes else @@ -4489,17 +4484,17 @@ unistd.h values.h sys/param.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:4493: checking for $ac_hdr" >&5 +echo "configure:4488: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4503: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4498: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -4529,12 +4524,12 @@ done __argz_count __argz_stringify __argz_next do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:4533: checking for $ac_func" >&5 +echo "configure:4528: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4556: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -4586,12 +4581,12 @@ done for ac_func in stpcpy do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:4590: checking for $ac_func" >&5 +echo "configure:4585: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4613: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -4648,19 +4643,19 @@ EOF if test $ac_cv_header_locale_h = yes; then echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6 -echo "configure:4652: checking for LC_MESSAGES" >&5 +echo "configure:4647: checking for LC_MESSAGES" >&5 if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { return LC_MESSAGES ; return 0; } EOF -if { (eval echo configure:4664: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4659: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* am_cv_val_LC_MESSAGES=yes else @@ -4681,7 +4676,7 @@ EOF fi fi echo $ac_n "checking whether NLS is requested""... $ac_c" 1>&6 -echo "configure:4685: checking whether NLS is requested" >&5 +echo "configure:4680: checking whether NLS is requested" >&5 # Check whether --enable-nls or --disable-nls was given. if test "${enable_nls+set}" = set; then enableval="$enable_nls" @@ -4701,7 +4696,7 @@ fi EOF echo $ac_n "checking whether included gettext is requested""... $ac_c" 1>&6 -echo "configure:4705: checking whether included gettext is requested" >&5 +echo "configure:4700: checking whether included gettext is requested" >&5 # Check whether --with-included-gettext or --without-included-gettext was given. if test "${with_included_gettext+set}" = set; then withval="$with_included_gettext" @@ -4720,17 +4715,17 @@ fi ac_safe=`echo "libintl.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for libintl.h""... $ac_c" 1>&6 -echo "configure:4724: checking for libintl.h" >&5 +echo "configure:4719: checking for libintl.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4734: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4729: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -4747,19 +4742,19 @@ fi if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for gettext in libc""... $ac_c" 1>&6 -echo "configure:4751: checking for gettext in libc" >&5 +echo "configure:4746: checking for gettext in libc" >&5 if eval "test \"`echo '$''{'gt_cv_func_gettext_libc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { return (int) gettext ("") ; return 0; } EOF -if { (eval echo configure:4763: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4758: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* gt_cv_func_gettext_libc=yes else @@ -4775,7 +4770,7 @@ echo "$ac_t""$gt_cv_func_gettext_libc" 1>&6 if test "$gt_cv_func_gettext_libc" != "yes"; then echo $ac_n "checking for bindtextdomain in -lintl""... $ac_c" 1>&6 -echo "configure:4779: checking for bindtextdomain in -lintl" >&5 +echo "configure:4774: checking for bindtextdomain in -lintl" >&5 ac_lib_var=`echo intl'_'bindtextdomain | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4783,7 +4778,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lintl $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4793: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -4810,19 +4805,19 @@ fi if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for gettext in libintl""... $ac_c" 1>&6 -echo "configure:4814: checking for gettext in libintl" >&5 +echo "configure:4809: checking for gettext in libintl" >&5 if eval "test \"`echo '$''{'gt_cv_func_gettext_libintl'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4821: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* gt_cv_func_gettext_libintl=yes else @@ -4850,7 +4845,7 @@ EOF # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4854: checking for $ac_word" >&5 +echo "configure:4849: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4884,12 +4879,12 @@ fi for ac_func in dcgettext do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:4888: checking for $ac_func" >&5 +echo "configure:4883: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4911: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -4939,7 +4934,7 @@ done # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4943: checking for $ac_word" >&5 +echo "configure:4938: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4975,7 +4970,7 @@ fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4979: checking for $ac_word" >&5 +echo "configure:4974: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5007,7 +5002,7 @@ else fi cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5014: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* CATOBJEXT=.gmo DATADIRNAME=share @@ -5047,7 +5042,7 @@ fi # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5051: checking for $ac_word" >&5 +echo "configure:5046: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5081,7 +5076,7 @@ fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5085: checking for $ac_word" >&5 +echo "configure:5080: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5117,7 +5112,7 @@ fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5121: checking for $ac_word" >&5 +echo "configure:5116: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5207,7 +5202,7 @@ fi LINGUAS= else echo $ac_n "checking for catalogs to be installed""... $ac_c" 1>&6 -echo "configure:5211: checking for catalogs to be installed" >&5 +echo "configure:5206: checking for catalogs to be installed" >&5 NEW_LINGUAS= for lang in ${LINGUAS=$ALL_LINGUAS}; do case "$ALL_LINGUAS" in @@ -5235,17 +5230,17 @@ echo "configure:5211: checking for catalogs to be installed" >&5 if test "$CATOBJEXT" = ".cat"; then ac_safe=`echo "linux/version.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for linux/version.h""... $ac_c" 1>&6 -echo "configure:5239: checking for linux/version.h" >&5 +echo "configure:5234: checking for linux/version.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:5249: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:5244: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -5308,7 +5303,7 @@ fi echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 -echo "configure:5312: checking whether to enable maintainer-specific portions of Makefiles" >&5 +echo "configure:5307: checking whether to enable maintainer-specific portions of Makefiles" >&5 # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given. if test "${enable_maintainer_mode+set}" = set; then enableval="$enable_maintainer_mode" @@ -5333,7 +5328,7 @@ fi echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 -echo "configure:5337: checking for executable suffix" >&5 +echo "configure:5332: checking for executable suffix" >&5 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5343,7 +5338,7 @@ else rm -f conftest* echo 'int main () { return 0; }' > conftest.$ac_ext ac_cv_exeext= - if { (eval echo configure:5347: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then + if { (eval echo configure:5342: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then for file in conftest.*; do case $file in *.c | *.o | *.obj) ;; @@ -5368,17 +5363,17 @@ for ac_hdr in string.h stdlib.h memory.h strings.h unistd.h stdarg.h varargs.h e do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:5372: checking for $ac_hdr" >&5 +echo "configure:5367: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:5382: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:5377: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -5408,7 +5403,7 @@ done # Put this here so that autoconf's "cross-compiling" message doesn't confuse # people who are not cross-compiling but are compiling cross-assemblers. echo $ac_n "checking whether compiling a cross-assembler""... $ac_c" 1>&6 -echo "configure:5412: checking whether compiling a cross-assembler" >&5 +echo "configure:5407: checking whether compiling a cross-assembler" >&5 if test "${host}" = "${target}"; then cross_gas=no else @@ -5423,19 +5418,19 @@ echo "$ac_t""$cross_gas" 1>&6 # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6 -echo "configure:5427: checking for working alloca.h" >&5 +echo "configure:5422: checking for working alloca.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { char *p = alloca(2 * sizeof(int)); ; return 0; } EOF -if { (eval echo configure:5439: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5434: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_header_alloca_h=yes else @@ -5456,12 +5451,12 @@ EOF fi echo $ac_n "checking for alloca""... $ac_c" 1>&6 -echo "configure:5460: checking for alloca" >&5 +echo "configure:5455: checking for alloca" >&5 if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5488: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_func_alloca_works=yes else @@ -5521,12 +5516,12 @@ EOF echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6 -echo "configure:5525: checking whether alloca needs Cray hooks" >&5 +echo "configure:5520: checking whether alloca needs Cray hooks" >&5 if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&6 if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:5555: checking for $ac_func" >&5 +echo "configure:5550: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5578: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -5606,7 +5601,7 @@ done fi echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6 -echo "configure:5610: checking stack direction for C alloca" >&5 +echo "configure:5605: checking stack direction for C alloca" >&5 if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5614,7 +5609,7 @@ else ac_cv_c_stack_direction=0 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:5632: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_c_stack_direction=1 else @@ -5655,21 +5650,21 @@ EOF fi echo $ac_n "checking for inline""... $ac_c" 1>&6 -echo "configure:5659: checking for inline" >&5 +echo "configure:5654: checking for inline" >&5 if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5668: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_inline=$ac_kw; break else @@ -5699,12 +5694,12 @@ esac for ac_func in unlink remove do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:5703: checking for $ac_func" >&5 +echo "configure:5698: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5726: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -5756,12 +5751,12 @@ done for ac_func in sbrk do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:5760: checking for $ac_func" >&5 +echo "configure:5755: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5783: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -5819,7 +5814,7 @@ case $host in ;; *-ncr-sysv4.3*) echo $ac_n "checking for _mwvalidcheckl in -lmw""... $ac_c" 1>&6 -echo "configure:5823: checking for _mwvalidcheckl in -lmw" >&5 +echo "configure:5818: checking for _mwvalidcheckl in -lmw" >&5 ac_lib_var=`echo mw'_'_mwvalidcheckl | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5827,7 +5822,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lmw $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5837: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5859,7 +5854,7 @@ else fi echo $ac_n "checking for main in -lm""... $ac_c" 1>&6 -echo "configure:5863: checking for main in -lm" >&5 +echo "configure:5858: checking for main in -lm" >&5 ac_lib_var=`echo m'_'main | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5867,14 +5862,14 @@ else ac_save_LIBS="$LIBS" LIBS="-lm $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5873: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5897,7 +5892,7 @@ fi ;; *) echo $ac_n "checking for main in -lm""... $ac_c" 1>&6 -echo "configure:5901: checking for main in -lm" >&5 +echo "configure:5896: checking for main in -lm" >&5 ac_lib_var=`echo m'_'main | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5905,14 +5900,14 @@ else ac_save_LIBS="$LIBS" LIBS="-lm $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5911: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5943,12 +5938,12 @@ esac # enough, but on some of those systems, the assert macro relies on requoting # working properly! echo $ac_n "checking for working assert macro""... $ac_c" 1>&6 -echo "configure:5947: checking for working assert macro" >&5 +echo "configure:5942: checking for working assert macro" >&5 if eval "test \"`echo '$''{'gas_cv_assert_ok'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -5964,7 +5959,7 @@ assert (a == b ; return 0; } EOF -if { (eval echo configure:5968: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5963: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* gas_cv_assert_ok=yes else @@ -6005,12 +6000,12 @@ gas_test_headers=" " echo $ac_n "checking whether declaration is required for strstr""... $ac_c" 1>&6 -echo "configure:6009: checking whether declaration is required for strstr" >&5 +echo "configure:6004: checking whether declaration is required for strstr" >&5 if eval "test \"`echo '$''{'gas_cv_decl_needed_strstr'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6020: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* gas_cv_decl_needed_strstr=no else @@ -6042,12 +6037,12 @@ fi echo $ac_n "checking whether declaration is required for malloc""... $ac_c" 1>&6 -echo "configure:6046: checking whether declaration is required for malloc" >&5 +echo "configure:6041: checking whether declaration is required for malloc" >&5 if eval "test \"`echo '$''{'gas_cv_decl_needed_malloc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6057: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* gas_cv_decl_needed_malloc=no else @@ -6079,12 +6074,12 @@ fi echo $ac_n "checking whether declaration is required for free""... $ac_c" 1>&6 -echo "configure:6083: checking whether declaration is required for free" >&5 +echo "configure:6078: checking whether declaration is required for free" >&5 if eval "test \"`echo '$''{'gas_cv_decl_needed_free'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6094: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* gas_cv_decl_needed_free=no else @@ -6116,12 +6111,12 @@ fi echo $ac_n "checking whether declaration is required for sbrk""... $ac_c" 1>&6 -echo "configure:6120: checking whether declaration is required for sbrk" >&5 +echo "configure:6115: checking whether declaration is required for sbrk" >&5 if eval "test \"`echo '$''{'gas_cv_decl_needed_sbrk'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6131: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* gas_cv_decl_needed_sbrk=no else @@ -6153,12 +6148,12 @@ fi echo $ac_n "checking whether declaration is required for environ""... $ac_c" 1>&6 -echo "configure:6157: checking whether declaration is required for environ" >&5 +echo "configure:6152: checking whether declaration is required for environ" >&5 if eval "test \"`echo '$''{'gas_cv_decl_needed_environ'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6168: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* gas_cv_decl_needed_environ=no else @@ -6193,12 +6188,12 @@ fi # for it? echo $ac_n "checking whether declaration is required for errno""... $ac_c" 1>&6 -echo "configure:6197: checking whether declaration is required for errno" >&5 +echo "configure:6192: checking whether declaration is required for errno" >&5 if eval "test \"`echo '$''{'gas_cv_decl_needed_errno'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6212: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* gas_cv_decl_needed_errno=no else @@ -6383,6 +6378,7 @@ s%@build_alias@%$build_alias%g s%@build_cpu@%$build_cpu%g s%@build_vendor@%$build_vendor%g s%@build_os@%$build_os%g +s%@CC@%$CC%g s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%g s%@INSTALL_DATA@%$INSTALL_DATA%g @@ -6394,7 +6390,6 @@ s%@AUTOMAKE@%$AUTOMAKE%g s%@AUTOHEADER@%$AUTOHEADER%g s%@MAKEINFO@%$MAKEINFO%g s%@SET_MAKE@%$SET_MAKE%g -s%@CC@%$CC%g s%@LN_S@%$LN_S%g s%@OBJEXT@%$OBJEXT%g s%@EXEEXT@%$EXEEXT%g diff --git a/gas/configure.in b/gas/configure.in index 0be9d218c..3ebbe8652 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -137,6 +137,7 @@ changequote([,])dnl m8*) cpu_type=m88k ;; mips*el) cpu_type=mips endian=little ;; mips*) cpu_type=mips endian=big ;; + or32*) cpu_type=or32 endian=big ;; pjl*) cpu_type=pj endian=little ;; pj*) cpu_type=pj endian=big ;; powerpc*le*) cpu_type=ppc endian=little ;; @@ -375,6 +376,9 @@ changequote([,])dnl mn10200-*-*) fmt=elf bfd_gas=yes ;; mn10300-*-*) fmt=elf bfd_gas=yes ;; openrisc-*-*) fmt=elf bfd_gas=yes ;; + or32-*-rtems*) fmt=coff ;; + or32-*-coff) fmt=coff ;; + or32-*-elf) fmt=elf ;; pj*) fmt=elf ;; ppc-*-pe | ppc-*-cygwin* | ppc-*-winnt*) fmt=coff em=pe ;; diff --git a/gas/doc/Makefile.in b/gas/doc/Makefile.in index ec5ff26b2..456e6906c 100644 --- a/gas/doc/Makefile.in +++ b/gas/doc/Makefile.in @@ -1,6 +1,6 @@ -# Makefile.in generated automatically by automake 1.4 from Makefile.am +# Makefile.in generated automatically by automake 1.4-p5 from Makefile.am -# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc. +# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -188,7 +188,7 @@ DIST_COMMON = Makefile.am Makefile.in DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) -TAR = tar +TAR = gtar GZIP_ENV = --best all: all-redirect .SUFFIXES: @@ -278,7 +278,7 @@ uninstall-info: else ii=; fi; \ list='$(INFO_DEPS)'; \ for file in $$list; do \ - test -z "$ii" \ + test -z "$$ii" \ || install-info --info-dir=$(DESTDIR)$(infodir) --remove $$file; \ done @$(NORMAL_UNINSTALL) diff --git a/gas/po/POTFILES.in b/gas/po/POTFILES.in index d1d5c974f..0fb4fcdf8 100644 --- a/gas/po/POTFILES.in +++ b/gas/po/POTFILES.in @@ -96,6 +96,8 @@ config/tc-ns32k.c config/tc-ns32k.h config/tc-openrisc.c config/tc-openrisc.h +config/tc-or32.c +config/tc-or32.h config/tc-pdp11.c config/tc-pdp11.h config/tc-pj.c diff --git a/gas/po/gas.pot b/gas/po/gas.pot index f4775689e..3a0fd05a7 100644 --- a/gas/po/gas.pot +++ b/gas/po/gas.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2002-01-17 12:56+0000\n" +"POT-Creation-Date: 2002-01-31 17:13+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -258,7 +258,7 @@ msgid "GNU assembler %s\n" msgstr "" #: as.c:528 -msgid "Copyright 2001 Free Software Foundation, Inc.\n" +msgid "Copyright 2002 Free Software Foundation, Inc.\n" msgstr "" #: as.c:529 gasp.c:3627 @@ -444,7 +444,7 @@ msgstr "" msgid "%s: bad type for weak symbol" msgstr "" -#: config/obj-aout.c:458 config/obj-coff.c:2940 write.c:1933 +#: config/obj-aout.c:458 config/obj-coff.c:2956 write.c:1933 #, c-format msgid "%s: global symbols not supported in common sections" msgstr "" @@ -473,7 +473,7 @@ msgstr "" msgid "Line numbers must be positive integers\n" msgstr "" -#: config/obj-coff.c:503 config/obj-coff.c:2355 +#: config/obj-coff.c:503 config/obj-coff.c:2371 msgid ".ln pseudo-op inside .def/.endef: ignored." msgstr "" @@ -485,11 +485,11 @@ msgstr "" msgid ".loc pseudo-op inside .def/.endef: ignored." msgstr "" -#: config/obj-coff.c:641 config/obj-coff.c:2412 +#: config/obj-coff.c:641 config/obj-coff.c:2428 msgid ".def pseudo-op used inside of .def/.endef: ignored." msgstr "" -#: config/obj-coff.c:687 config/obj-coff.c:2464 +#: config/obj-coff.c:687 config/obj-coff.c:2480 msgid ".endef pseudo-op used outside of .def/.endef: ignored." msgstr "" @@ -498,49 +498,49 @@ msgstr "" msgid "`%s' symbol without preceding function" msgstr "" -#: config/obj-coff.c:812 config/obj-coff.c:2539 +#: config/obj-coff.c:812 config/obj-coff.c:2555 #, c-format msgid "unexpected storage class %d" msgstr "" -#: config/obj-coff.c:925 config/obj-coff.c:2646 +#: config/obj-coff.c:925 config/obj-coff.c:2662 msgid ".dim pseudo-op used outside of .def/.endef: ignored." msgstr "" -#: config/obj-coff.c:945 config/obj-coff.c:2666 +#: config/obj-coff.c:945 config/obj-coff.c:2682 msgid "badly formed .dim directive ignored" msgstr "" -#: config/obj-coff.c:996 config/obj-coff.c:2729 +#: config/obj-coff.c:996 config/obj-coff.c:2745 msgid ".size pseudo-op used outside of .def/.endef ignored." msgstr "" -#: config/obj-coff.c:1012 config/obj-coff.c:2745 +#: config/obj-coff.c:1012 config/obj-coff.c:2761 msgid ".scl pseudo-op used outside of .def/.endef ignored." msgstr "" -#: config/obj-coff.c:1030 config/obj-coff.c:2763 +#: config/obj-coff.c:1030 config/obj-coff.c:2779 msgid ".tag pseudo-op used outside of .def/.endef ignored." msgstr "" -#: config/obj-coff.c:1049 config/obj-coff.c:2781 +#: config/obj-coff.c:1049 config/obj-coff.c:2797 #, c-format msgid "tag not found for .tag %s" msgstr "" -#: config/obj-coff.c:1064 config/obj-coff.c:2796 +#: config/obj-coff.c:1064 config/obj-coff.c:2812 msgid ".type pseudo-op used outside of .def/.endef ignored." msgstr "" -#: config/obj-coff.c:1086 config/obj-coff.c:2818 +#: config/obj-coff.c:1086 config/obj-coff.c:2834 msgid ".val pseudo-op used outside of .def/.endef ignored." msgstr "" -#: config/obj-coff.c:1231 config/obj-coff.c:3013 +#: config/obj-coff.c:1231 config/obj-coff.c:3029 msgid "mismatched .eb" msgstr "" -#: config/obj-coff.c:1252 config/obj-coff.c:3053 +#: config/obj-coff.c:1252 config/obj-coff.c:3069 msgid "C_EFCN symbol out of scope" msgstr "" @@ -552,12 +552,12 @@ msgstr "" msgid "unsupported section attribute '%c'" msgstr "" -#: config/obj-coff.c:1481 config/obj-coff.c:3758 config/tc-ppc.c:4211 +#: config/obj-coff.c:1481 config/obj-coff.c:3774 config/tc-ppc.c:4211 #, c-format msgid "unknown section attribute '%c'" msgstr "" -#: config/obj-coff.c:1511 config/tc-ppc.c:4229 config/tc-tic54x.c:4130 +#: config/obj-coff.c:1511 config/tc-ppc.c:4229 config/tc-tic54x.c:4133 #: read.c:2555 #, c-format msgid "error setting flags for \"%s\": %s" @@ -577,62 +577,62 @@ msgstr "" msgid "Out of step\n" msgstr "" -#: config/obj-coff.c:2271 +#: config/obj-coff.c:2287 msgid "bfd_coff_swap_scnhdr_out failed" msgstr "" -#: config/obj-coff.c:2496 +#: config/obj-coff.c:2512 msgid "`.bf' symbol without preceding function\n" msgstr "" -#: config/obj-coff.c:3450 config/obj-ieee.c:507 +#: config/obj-coff.c:3466 config/obj-ieee.c:507 #, c-format msgid "FATAL: Can't create %s" msgstr "" -#: config/obj-coff.c:3632 +#: config/obj-coff.c:3648 #, c-format msgid "Can't close %s: %s" msgstr "" -#: config/obj-coff.c:3666 +#: config/obj-coff.c:3682 #, c-format msgid "Too many new sections; can't add \"%s\"" msgstr "" -#: config/obj-coff.c:4073 config/tc-sparc.c:3537 +#: config/obj-coff.c:4089 config/tc-sparc.c:3537 msgid "Expected comma after name" msgstr "" -#: config/obj-coff.c:4079 +#: config/obj-coff.c:4095 msgid "Missing size expression" msgstr "" -#: config/obj-coff.c:4085 +#: config/obj-coff.c:4101 #, c-format msgid "lcomm length (%d.) <0! Ignored." msgstr "" -#: config/obj-coff.c:4113 +#: config/obj-coff.c:4129 #, c-format msgid "Symbol %s already defined" msgstr "" -#: config/obj-coff.c:4208 config/tc-i960.c:3206 +#: config/obj-coff.c:4224 config/tc-i960.c:3206 #, c-format msgid "No 'bal' entry point for leafproc %s" msgstr "" -#: config/obj-coff.c:4287 +#: config/obj-coff.c:4303 #, c-format msgid "Negative of non-absolute symbol %s" msgstr "" -#: config/obj-coff.c:4308 +#: config/obj-coff.c:4324 msgid "callj to difference of 2 symbols" msgstr "" -#: config/obj-coff.c:4354 +#: config/obj-coff.c:4370 #, c-format msgid "Can't emit reloc {- %s-seg symbol \"%s\"} @ file address %ld." msgstr "" @@ -640,16 +640,16 @@ msgstr "" #. This is a COBR instruction. They have only a 13-bit #. displacement and are only to be used for local branches: #. flag as error, don't generate relocation. -#: config/obj-coff.c:4443 config/tc-i960.c:3226 write.c:2826 +#: config/obj-coff.c:4459 config/tc-i960.c:3226 write.c:2826 msgid "can't use COBR format with external label" msgstr "" -#: config/obj-coff.c:4518 +#: config/obj-coff.c:4534 #, c-format msgid "Value of %ld too large for field of %d bytes at 0x%lx" msgstr "" -#: config/obj-coff.c:4532 +#: config/obj-coff.c:4548 #, c-format msgid "Signed .word overflow; switch may be too large; %ld at 0x%lx" msgstr "" @@ -817,17 +817,17 @@ msgstr "" msgid "can't create group: %s" msgstr "" -#: config/obj-elf.c:2068 +#: config/obj-elf.c:2076 #, c-format msgid "failed to set up debugging information: %s" msgstr "" -#: config/obj-elf.c:2088 +#: config/obj-elf.c:2096 #, c-format msgid "can't start writing .mdebug section: %s" msgstr "" -#: config/obj-elf.c:2096 +#: config/obj-elf.c:2104 #, c-format msgid "could not write .mdebug section: %s" msgstr "" @@ -1011,16 +1011,17 @@ msgstr "" #. Probably a memory allocation problem? Give up now. #: config/tc-a29k.c:330 config/tc-hppa.c:1462 config/tc-mips.c:1251 -#: config/tc-mips.c:1293 config/tc-sparc.c:847 +#: config/tc-mips.c:1293 config/tc-or32.c:230 config/tc-sparc.c:847 msgid "Broken assembler. No assembly attempted." msgstr "" #: config/tc-a29k.c:375 config/tc-avr.c:1131 config/tc-d10v.c:540 #: config/tc-d30v.c:552 config/tc-h8300.c:313 config/tc-h8500.c:284 #: config/tc-mcore.c:655 config/tc-mmix.c:468 config/tc-mn10200.c:940 -#: config/tc-mn10300.c:1311 config/tc-ppc.c:2106 config/tc-s390.c:1054 -#: config/tc-sh.c:869 config/tc-tic80.c:283 config/tc-v850.c:2073 -#: config/tc-w65.c:241 config/tc-z8k.c:343 +#: config/tc-mn10300.c:1311 config/tc-or32.c:336 config/tc-or32.c:392 +#: config/tc-ppc.c:2106 config/tc-s390.c:1054 config/tc-sh.c:870 +#: config/tc-tic80.c:283 config/tc-v850.c:2073 config/tc-w65.c:241 +#: config/tc-z8k.c:343 msgid "missing operand" msgstr "" @@ -1051,7 +1052,7 @@ msgstr "" msgid "failed sanity check." msgstr "" -#: config/tc-a29k.c:889 +#: config/tc-a29k.c:889 config/tc-or32.c:1046 config/tc-or32.c:1180 #, c-format msgid "bad relocation type: 0x%02x" msgstr "" @@ -1069,12 +1070,12 @@ msgstr "" msgid "a29k_estimate_size_before_relax\n" msgstr "" -#: config/tc-a29k.c:1092 +#: config/tc-a29k.c:1092 config/tc-or32.c:1375 #, c-format msgid "label \"$%d\" redefined" msgstr "" -#: config/tc-a29k.c:1165 +#: config/tc-a29k.c:1165 config/tc-or32.c:1470 #, c-format msgid "Invalid expression after %%%%\n" msgstr "" @@ -1097,10 +1098,10 @@ msgstr "" msgid "syntax error" msgstr "" -#: config/tc-alpha.c:980 config/tc-h8300.c:1413 config/tc-h8500.c:1187 +#: config/tc-alpha.c:980 config/tc-h8300.c:1421 config/tc-h8500.c:1187 #: config/tc-hppa.c:4017 config/tc-i860.c:931 config/tc-m68hc11.c:500 #: config/tc-m68k.c:4201 config/tc-m88k.c:1011 config/tc-ns32k.c:1663 -#: config/tc-sparc.c:2831 config/tc-z8k.c:1321 +#: config/tc-or32.c:912 config/tc-sparc.c:2831 config/tc-z8k.c:1321 msgid "Bad call to MD_ATOF()" msgstr "" @@ -1432,7 +1433,7 @@ msgstr "" msgid "Bad .section directive: want a,s,w,x,M,S in string" msgstr "" -#: config/tc-arc.c:1616 config/tc-arm.c:10246 +#: config/tc-arc.c:1616 config/tc-arm.c:10344 msgid "md_estimate_size_before_relax\n" msgstr "" @@ -1440,764 +1441,1060 @@ msgstr "" msgid "md_convert_frag\n" msgstr "" -#: config/tc-arm.c:664 +#: config/tc-arm.c:681 msgid "ARM register expected" msgstr "" -#: config/tc-arm.c:665 config/tc-arm.c:2814 +#: config/tc-arm.c:682 config/tc-arm.c:2843 msgid "bad or missing co-processor number" msgstr "" #. In the few cases where we might be able to accept something else #. this error can be overridden. -#: config/tc-arm.c:666 config/tc-arm.c:2869 +#: config/tc-arm.c:683 config/tc-arm.c:2898 msgid "co-processor register expected" msgstr "" -#: config/tc-arm.c:667 +#: config/tc-arm.c:684 msgid "FPA register expected" msgstr "" -#: config/tc-arm.c:668 +#: config/tc-arm.c:685 msgid "VFP single precision register expected" msgstr "" -#: config/tc-arm.c:669 +#: config/tc-arm.c:686 msgid "VFP double precision register expected" msgstr "" -#: config/tc-arm.c:670 +#: config/tc-arm.c:687 msgid "Maverick MVF register expected" msgstr "" -#: config/tc-arm.c:671 +#: config/tc-arm.c:688 msgid "Maverick MVD register expected" msgstr "" -#: config/tc-arm.c:672 config/tc-arm.c:673 +#: config/tc-arm.c:689 config/tc-arm.c:690 msgid "Maverick MVFX register expected" msgstr "" -#: config/tc-arm.c:674 +#: config/tc-arm.c:691 msgid "Maverick MVAX register expected" msgstr "" -#: config/tc-arm.c:675 +#: config/tc-arm.c:692 msgid "Maverick DSPSC register expected" msgstr "" -#: config/tc-arm.c:2013 +#: config/tc-arm.c:2036 msgid "bad arguments to instruction" msgstr "" -#: config/tc-arm.c:2014 +#: config/tc-arm.c:2037 msgid "r15 not allowed here" msgstr "" -#: config/tc-arm.c:2015 +#: config/tc-arm.c:2038 msgid "instruction is not conditional" msgstr "" -#: config/tc-arm.c:2016 +#: config/tc-arm.c:2039 msgid "acc0 expected" msgstr "" -#: config/tc-arm.c:2155 +#: config/tc-arm.c:2184 msgid "literal pool overflow" msgstr "" -#: config/tc-arm.c:2297 +#: config/tc-arm.c:2326 msgid "invalid syntax for .req directive" msgstr "" -#: config/tc-arm.c:2372 +#: config/tc-arm.c:2401 #, c-format msgid "alignment too large: %d assumed" msgstr "" -#: config/tc-arm.c:2375 +#: config/tc-arm.c:2404 msgid "alignment negative. 0 assumed." msgstr "" -#: config/tc-arm.c:2459 +#: config/tc-arm.c:2488 #, c-format msgid "expected comma after name \"%s\"" msgstr "" -#: config/tc-arm.c:2509 config/tc-m32r.c:418 +#: config/tc-arm.c:2538 config/tc-m32r.c:418 #, c-format msgid "symbol `%s' already defined" msgstr "" -#: config/tc-arm.c:2580 +#: config/tc-arm.c:2609 msgid "selected processor does not support THUMB opcodes" msgstr "" -#: config/tc-arm.c:2593 +#: config/tc-arm.c:2622 msgid "selected processor does not support ARM opcodes" msgstr "" -#: config/tc-arm.c:2605 +#: config/tc-arm.c:2634 #, c-format msgid "invalid instruction size selected (%d)" msgstr "" -#: config/tc-arm.c:2640 +#: config/tc-arm.c:2669 #, c-format msgid "invalid operand to .code directive (%d) (expecting 16 or 32)" msgstr "" -#: config/tc-arm.c:2651 +#: config/tc-arm.c:2680 msgid "garbage following instruction" msgstr "" #. In the few cases where we might be able to accept something else #. this error can be overridden. -#: config/tc-arm.c:2701 +#: config/tc-arm.c:2730 #, c-format msgid "register expected, not '%.100s'" msgstr "" #. In the few cases where we might be able to accept #. something else this error can be overridden. -#: config/tc-arm.c:2773 +#: config/tc-arm.c:2802 msgid "flag for {c}psr instruction expected" msgstr "" -#: config/tc-arm.c:2807 +#: config/tc-arm.c:2836 msgid "illegal co-processor number" msgstr "" -#: config/tc-arm.c:2839 config/tc-arm.c:3877 config/tc-arm.c:4059 +#: config/tc-arm.c:2868 config/tc-arm.c:3928 config/tc-arm.c:4110 msgid "bad or missing expression" msgstr "" -#: config/tc-arm.c:2845 +#: config/tc-arm.c:2874 msgid "immediate co-processor expression too large" msgstr "" #. In the few cases where we might be able to accept something else #. this error can be overridden. -#: config/tc-arm.c:2892 +#: config/tc-arm.c:2921 msgid "floating point register expected" msgstr "" -#: config/tc-arm.c:2909 +#: config/tc-arm.c:2938 msgid "immediate expression expected" msgstr "" -#: config/tc-arm.c:2924 +#: config/tc-arm.c:2953 msgid "co-processor address must be word aligned" msgstr "" -#: config/tc-arm.c:2930 +#: config/tc-arm.c:2959 msgid "offset too large" msgstr "" -#: config/tc-arm.c:2979 +#: config/tc-arm.c:3008 msgid "pc may not be used in post-increment" msgstr "" -#: config/tc-arm.c:2995 config/tc-arm.c:3440 config/tc-arm.c:4228 -#: config/tc-arm.c:5095 config/tc-arm.c:5429 +#: config/tc-arm.c:3024 config/tc-arm.c:3469 config/tc-arm.c:4279 +#: config/tc-arm.c:5146 config/tc-arm.c:5480 msgid "pre-indexed expression expected" msgstr "" -#: config/tc-arm.c:3008 config/tc-arm.c:3453 config/tc-arm.c:4239 -#: config/tc-arm.c:5107 config/tc-arm.c:5441 config/tc-arm.c:5790 -#: config/tc-arm.c:8452 config/tc-arm.c:8467 +#: config/tc-arm.c:3037 config/tc-arm.c:3482 config/tc-arm.c:4290 +#: config/tc-arm.c:5158 config/tc-arm.c:5492 config/tc-arm.c:5841 +#: config/tc-arm.c:8503 config/tc-arm.c:8518 msgid "missing ]" msgstr "" -#: config/tc-arm.c:3018 +#: config/tc-arm.c:3047 msgid "pc may not be used with write-back" msgstr "" -#: config/tc-arm.c:3070 +#: config/tc-arm.c:3099 msgid "comma expected after register name" msgstr "" -#: config/tc-arm.c:3089 +#: config/tc-arm.c:3118 msgid "CPSR or SPSR expected" msgstr "" -#: config/tc-arm.c:3115 +#: config/tc-arm.c:3144 msgid "comma missing after psr flags" msgstr "" -#: config/tc-arm.c:3131 config/tc-arm.c:3141 +#: config/tc-arm.c:3160 config/tc-arm.c:3170 msgid "only a register or immediate value can follow a psr flag" msgstr "" -#: config/tc-arm.c:3152 +#: config/tc-arm.c:3181 msgid "immediate value cannot be used to set this field" msgstr "" -#: config/tc-arm.c:3170 config/tc-arm.c:4455 config/tc-arm.c:4735 -#: config/tc-arm.c:4755 config/tc-i960.c:1924 +#: config/tc-arm.c:3199 config/tc-arm.c:4506 config/tc-arm.c:4786 +#: config/tc-arm.c:4806 config/tc-i960.c:1924 msgid "invalid constant" msgstr "" -#: config/tc-arm.c:3218 +#: config/tc-arm.c:3247 msgid "rdhi, rdlo and rm must all be different" msgstr "" -#: config/tc-arm.c:3272 +#: config/tc-arm.c:3301 msgid "rd and rm should be different in mul" msgstr "" -#: config/tc-arm.c:3326 +#: config/tc-arm.c:3355 msgid "rd and rm should be different in mla" msgstr "" -#: config/tc-arm.c:3374 +#: config/tc-arm.c:3403 #, c-format msgid "acc0 expected, not '%.100s'" msgstr "" -#: config/tc-arm.c:3552 +#: config/tc-arm.c:3581 msgid "rdhi and rdlo must be different" msgstr "" -#: config/tc-arm.c:3660 +#: config/tc-arm.c:3689 msgid "Warning: instruction unpredictable when using r15" msgstr "" -#: config/tc-arm.c:3886 config/tc-arm.c:4068 config/tc-arm.c:7395 -#: config/tc-arm.c:7428 config/tc-arm.c:7438 +#: config/tc-arm.c:3904 +msgid "use of r15 in bxj is not really useful" +msgstr "" + +#: config/tc-arm.c:3937 config/tc-arm.c:4119 config/tc-arm.c:7446 +#: config/tc-arm.c:7479 config/tc-arm.c:7489 msgid "immediate value out of range" msgstr "" -#: config/tc-arm.c:4191 +#: config/tc-arm.c:4242 msgid "'[' expected after PLD mnemonic" msgstr "" -#: config/tc-arm.c:4213 +#: config/tc-arm.c:4264 msgid "post-indexed expression used in preload instruction" msgstr "" -#: config/tc-arm.c:4218 config/tc-arm.c:4248 +#: config/tc-arm.c:4269 config/tc-arm.c:4299 msgid "writeback used in preload instruction" msgstr "" -#: config/tc-arm.c:4290 +#: config/tc-arm.c:4341 msgid "destination register must be even" msgstr "" -#: config/tc-arm.c:4296 +#: config/tc-arm.c:4347 msgid "r14 not allowed here" msgstr "" -#: config/tc-arm.c:4303 +#: config/tc-arm.c:4354 msgid "pre/post-indexing used when modified address register is destination" msgstr "" -#: config/tc-arm.c:4313 +#: config/tc-arm.c:4364 msgid "ldrd destination registers must not overlap index register" msgstr "" -#: config/tc-arm.c:4439 +#: config/tc-arm.c:4490 msgid "bad_segment" msgstr "" -#: config/tc-arm.c:4476 expr.c:1314 read.c:2198 +#: config/tc-arm.c:4527 expr.c:1314 read.c:2198 msgid "bad expression" msgstr "" -#: config/tc-arm.c:4499 config/tc-arm.c:4510 +#: config/tc-arm.c:4550 config/tc-arm.c:4561 msgid "shift expression expected" msgstr "" -#: config/tc-arm.c:4534 +#: config/tc-arm.c:4585 msgid "shift requires register or #expression" msgstr "" -#: config/tc-arm.c:4535 +#: config/tc-arm.c:4586 msgid "shift requires #expression" msgstr "" -#: config/tc-arm.c:4565 +#: config/tc-arm.c:4616 msgid "shift of 0 ignored." msgstr "" -#: config/tc-arm.c:4571 +#: config/tc-arm.c:4622 msgid "invalid immediate shift" msgstr "" -#: config/tc-arm.c:4726 config/tc-arm.c:5143 config/tc-arm.c:5478 -#: config/tc-arm.c:6087 config/tc-v850.c:1956 config/tc-v850.c:1977 +#: config/tc-arm.c:4777 config/tc-arm.c:5194 config/tc-arm.c:5529 +#: config/tc-arm.c:6138 config/tc-v850.c:1956 config/tc-v850.c:1977 msgid "constant expression expected" msgstr "" -#: config/tc-arm.c:4768 +#: config/tc-arm.c:4819 msgid "register or shift expression expected" msgstr "" -#: config/tc-arm.c:4821 +#: config/tc-arm.c:4872 msgid "invalid floating point immediate expression" msgstr "" -#: config/tc-arm.c:4825 +#: config/tc-arm.c:4876 msgid "floating point register or immediate expression expected" msgstr "" -#: config/tc-arm.c:4979 config/tc-arm.c:5309 +#: config/tc-arm.c:5030 config/tc-arm.c:5360 msgid "address offset too large" msgstr "" -#: config/tc-arm.c:5037 config/tc-arm.c:5227 config/tc-arm.c:5369 +#: config/tc-arm.c:5088 config/tc-arm.c:5278 config/tc-arm.c:5420 msgid "address expected" msgstr "" -#: config/tc-arm.c:5067 config/tc-arm.c:5079 config/tc-arm.c:5116 -#: config/tc-arm.c:5245 config/tc-arm.c:5399 config/tc-arm.c:5413 -#: config/tc-arm.c:5450 +#: config/tc-arm.c:5118 config/tc-arm.c:5130 config/tc-arm.c:5167 +#: config/tc-arm.c:5296 config/tc-arm.c:5450 config/tc-arm.c:5464 +#: config/tc-arm.c:5501 #, c-format msgid "%s register same as write-back base" msgstr "" -#: config/tc-arm.c:5069 config/tc-arm.c:5081 config/tc-arm.c:5118 -#: config/tc-arm.c:5247 config/tc-arm.c:5401 config/tc-arm.c:5415 -#: config/tc-arm.c:5452 +#: config/tc-arm.c:5120 config/tc-arm.c:5132 config/tc-arm.c:5169 +#: config/tc-arm.c:5298 config/tc-arm.c:5452 config/tc-arm.c:5466 +#: config/tc-arm.c:5503 msgid "destination" msgstr "" -#: config/tc-arm.c:5069 config/tc-arm.c:5081 config/tc-arm.c:5118 -#: config/tc-arm.c:5247 config/tc-arm.c:5401 config/tc-arm.c:5415 -#: config/tc-arm.c:5452 +#: config/tc-arm.c:5120 config/tc-arm.c:5132 config/tc-arm.c:5169 +#: config/tc-arm.c:5298 config/tc-arm.c:5452 config/tc-arm.c:5466 +#: config/tc-arm.c:5503 msgid "source" msgstr "" -#: config/tc-arm.c:5128 config/tc-arm.c:5462 config/tc-arm.c:7699 +#: config/tc-arm.c:5179 config/tc-arm.c:5513 config/tc-arm.c:7750 msgid "invalid pseudo operation" msgstr "" -#: config/tc-arm.c:5180 config/tc-arm.c:5513 +#: config/tc-arm.c:5231 config/tc-arm.c:5564 msgid "literal pool insertion failed" msgstr "" -#: config/tc-arm.c:5275 config/tc-arm.c:5281 +#: config/tc-arm.c:5326 config/tc-arm.c:5332 msgid "post-indexed expression expected" msgstr "" -#: config/tc-arm.c:5579 +#: config/tc-arm.c:5630 msgid "bad range in register list" msgstr "" -#: config/tc-arm.c:5587 config/tc-arm.c:5596 config/tc-arm.c:5638 +#: config/tc-arm.c:5638 config/tc-arm.c:5647 config/tc-arm.c:5689 #, c-format msgid "Warning: duplicated register (r%d) in register list" msgstr "" -#: config/tc-arm.c:5599 +#: config/tc-arm.c:5650 msgid "Warning: register range not in ascending order" msgstr "" -#: config/tc-arm.c:5611 +#: config/tc-arm.c:5662 msgid "missing `}'" msgstr "" -#: config/tc-arm.c:5627 +#: config/tc-arm.c:5678 msgid "invalid register mask" msgstr "" -#: config/tc-arm.c:5648 config/tc-arm.c:8709 config/tc-arm.c:8809 +#: config/tc-arm.c:5699 config/tc-arm.c:8760 config/tc-arm.c:8860 #: config/tc-avr.c:860 config/tc-cris.c:3006 config/tc-d10v.c:1563 #: config/tc-d30v.c:1863 config/tc-mips.c:3641 config/tc-mips.c:4630 #: config/tc-mips.c:5486 config/tc-mips.c:6091 config/tc-ppc.c:5143 -#: config/tc-v850.c:2376 +#: config/tc-v850.c:2376 config/tc-xstormy16.c:479 msgid "expression too complex" msgstr "" -#: config/tc-arm.c:5686 +#: config/tc-arm.c:5737 msgid "r15 not allowed as base register" msgstr "" -#: config/tc-arm.c:5750 config/tc-arm.c:5764 +#: config/tc-arm.c:5801 config/tc-arm.c:5815 msgid "r15 not allowed in swap" msgstr "" -#: config/tc-arm.c:5859 +#: config/tc-arm.c:5910 msgid "use of r15 in bx in ARM mode is not really useful" msgstr "" -#: config/tc-arm.c:6093 +#: config/tc-arm.c:6144 msgid "constant value required for number of registers" msgstr "" -#: config/tc-arm.c:6101 +#: config/tc-arm.c:6152 msgid "number of registers must be in the range [1:4]" msgstr "" -#: config/tc-arm.c:6162 +#: config/tc-arm.c:6213 msgid "r15 not allowed as base register with write-back" msgstr "" -#: config/tc-arm.c:6544 +#: config/tc-arm.c:6595 msgid "only two consecutive VFP SP registers allowed here" msgstr "" -#: config/tc-arm.c:6712 +#: config/tc-arm.c:6763 msgid "VFP system register expected" msgstr "" -#: config/tc-arm.c:6850 config/tc-arm.c:6889 config/tc-arm.c:6902 -#: config/tc-arm.c:6963 config/tc-arm.c:7002 config/tc-arm.c:7015 +#: config/tc-arm.c:6901 config/tc-arm.c:6940 config/tc-arm.c:6953 +#: config/tc-arm.c:7014 config/tc-arm.c:7053 config/tc-arm.c:7066 #: config/tc-mips.c:9060 config/tc-mips.c:9090 msgid "invalid register list" msgstr "" -#: config/tc-arm.c:6856 config/tc-arm.c:6969 +#: config/tc-arm.c:6907 config/tc-arm.c:7020 msgid "register list not in ascending order" msgstr "" -#: config/tc-arm.c:6881 config/tc-arm.c:6994 +#: config/tc-arm.c:6932 config/tc-arm.c:7045 msgid "register range not in ascending order" msgstr "" -#: config/tc-arm.c:6919 config/tc-arm.c:7032 +#: config/tc-arm.c:6970 config/tc-arm.c:7083 msgid "non-contiguous register range" msgstr "" -#: config/tc-arm.c:7062 config/tc-arm.c:7099 +#: config/tc-arm.c:7113 config/tc-arm.c:7150 msgid "this addressing mode requires base-register writeback" msgstr "" -#: config/tc-arm.c:7259 +#: config/tc-arm.c:7310 msgid "lo register required" msgstr "" -#: config/tc-arm.c:7267 +#: config/tc-arm.c:7318 msgid "hi register required" msgstr "" -#: config/tc-arm.c:7337 config/tc-arm.c:8541 +#: config/tc-arm.c:7388 config/tc-arm.c:8592 msgid "dest and source1 must be the same register" msgstr "" -#: config/tc-arm.c:7344 +#: config/tc-arm.c:7395 msgid "subtract valid only on lo regs" msgstr "" -#: config/tc-arm.c:7368 +#: config/tc-arm.c:7419 msgid "invalid Hi register with immediate" msgstr "" -#: config/tc-arm.c:7406 +#: config/tc-arm.c:7457 msgid "invalid immediate value for stack adjust" msgstr "" -#: config/tc-arm.c:7417 +#: config/tc-arm.c:7468 msgid "invalid immediate for address calculation" msgstr "" -#: config/tc-arm.c:7504 +#: config/tc-arm.c:7555 msgid "source1 and dest must be same register" msgstr "" -#: config/tc-arm.c:7538 +#: config/tc-arm.c:7589 msgid "invalid immediate for shift" msgstr "" -#: config/tc-arm.c:7617 +#: config/tc-arm.c:7668 msgid "only lo regs allowed with immediate" msgstr "" -#: config/tc-arm.c:7636 +#: config/tc-arm.c:7687 msgid "invalid immediate" msgstr "" -#: config/tc-arm.c:7690 +#: config/tc-arm.c:7741 msgid "expected ']'" msgstr "" -#: config/tc-arm.c:7763 +#: config/tc-arm.c:7814 msgid "byte or halfword not valid for base register" msgstr "" -#: config/tc-arm.c:7768 +#: config/tc-arm.c:7819 msgid "r15 based store not allowed" msgstr "" -#: config/tc-arm.c:7773 +#: config/tc-arm.c:7824 msgid "invalid base register for register offset" msgstr "" -#: config/tc-arm.c:7791 config/tc-arm.c:7826 +#: config/tc-arm.c:7842 config/tc-arm.c:7877 msgid "invalid offset" msgstr "" -#: config/tc-arm.c:7802 +#: config/tc-arm.c:7853 msgid "invalid base register in load/store" msgstr "" -#: config/tc-arm.c:8345 +#: config/tc-arm.c:8396 msgid "expecting immediate, 7bit operand" msgstr "" -#: config/tc-arm.c:8360 +#: config/tc-arm.c:8411 msgid "immediate out of range" msgstr "" -#: config/tc-arm.c:8403 +#: config/tc-arm.c:8454 msgid "offset expected" msgstr "" -#: config/tc-arm.c:8412 config/tc-pj.c:528 config/tc-sh.c:3030 +#: config/tc-arm.c:8463 config/tc-pj.c:528 config/tc-sh.c:3021 msgid "offset out of range" msgstr "" -#: config/tc-arm.c:8549 +#: config/tc-arm.c:8600 msgid "Rs and Rd must be different in MUL" msgstr "" -#: config/tc-arm.c:8693 +#: config/tc-arm.c:8744 msgid "" "inserted missing '!': load/store multiple always writes back base register" msgstr "" -#: config/tc-arm.c:8715 +#: config/tc-arm.c:8766 msgid "only lo-regs valid in load/store multiple" msgstr "" -#: config/tc-arm.c:8761 +#: config/tc-arm.c:8812 msgid "syntax: ldrs[b] Rd, [Rb, Ro]" msgstr "" -#: config/tc-arm.c:8825 +#: config/tc-arm.c:8876 msgid "invalid register list to push/pop instruction" msgstr "" -#: config/tc-arm.c:8937 config/tc-arm.c:9115 +#: config/tc-arm.c:8988 config/tc-arm.c:9166 msgid "virtual memory exhausted" msgstr "" -#: config/tc-arm.c:9018 +#: config/tc-arm.c:9069 #, c-format msgid "register '%s' does not exist\n" msgstr "" -#: config/tc-arm.c:9022 +#: config/tc-arm.c:9073 #, c-format msgid "" "ignoring redefinition of register alias '%s' to non-existant register '%s'" msgstr "" -#: config/tc-arm.c:9031 +#: config/tc-arm.c:9082 #, c-format msgid "ignoring redefinition of register alias '%s'" msgstr "" -#: config/tc-arm.c:9037 +#: config/tc-arm.c:9088 msgid "ignoring incomplete .req pseuso op" msgstr "" -#: config/tc-arm.c:9312 +#: config/tc-arm.c:9190 +msgid "use of old and new-style options to set CPU type" +msgstr "" + +#: config/tc-arm.c:9200 +msgid "use of old and new-style options to set FPU type" +msgstr "" + +#: config/tc-arm.c:9410 msgid "bad call to MD_ATOF()" msgstr "" -#: config/tc-arm.c:9542 +#: config/tc-arm.c:9640 #, c-format msgid "invalid constant (%lx) after fixup" msgstr "" -#: config/tc-arm.c:9578 +#: config/tc-arm.c:9676 #, c-format msgid "unable to compute ADRL instructions for PC offset of 0x%lx" msgstr "" -#: config/tc-arm.c:9608 +#: config/tc-arm.c:9706 #, c-format msgid "bad immediate value for offset (%ld)" msgstr "" -#: config/tc-arm.c:9630 config/tc-arm.c:9652 +#: config/tc-arm.c:9728 config/tc-arm.c:9750 msgid "invalid literal constant: pool needs to be closer" msgstr "" -#: config/tc-arm.c:9632 +#: config/tc-arm.c:9730 #, c-format msgid "bad immediate value for half-word offset (%ld)" msgstr "" -#: config/tc-arm.c:9669 +#: config/tc-arm.c:9767 msgid "shift expression is too large" msgstr "" -#: config/tc-arm.c:9688 config/tc-arm.c:9697 +#: config/tc-arm.c:9786 config/tc-arm.c:9795 msgid "invalid swi expression" msgstr "" -#: config/tc-arm.c:9707 +#: config/tc-arm.c:9805 msgid "invalid expression in load/store multiple" msgstr "" -#: config/tc-arm.c:9760 +#: config/tc-arm.c:9858 msgid "GAS can't handle same-section branch dest >= 0x04000000" msgstr "" -#: config/tc-arm.c:9769 +#: config/tc-arm.c:9867 msgid "out of range branch" msgstr "" -#: config/tc-arm.c:9802 config/tc-arm.c:9818 +#: config/tc-arm.c:9900 config/tc-arm.c:9916 msgid "branch out of range" msgstr "" -#: config/tc-arm.c:9841 +#: config/tc-arm.c:9939 msgid "branch with link out of range" msgstr "" -#: config/tc-arm.c:9917 +#: config/tc-arm.c:10015 msgid "illegal value for co-processor offset" msgstr "" -#: config/tc-arm.c:9941 +#: config/tc-arm.c:10039 #, c-format msgid "invalid offset, target not word aligned (0x%08X)" msgstr "" -#: config/tc-arm.c:9947 config/tc-arm.c:9956 config/tc-arm.c:9963 -#: config/tc-arm.c:9970 config/tc-arm.c:9977 +#: config/tc-arm.c:10045 config/tc-arm.c:10054 config/tc-arm.c:10061 +#: config/tc-arm.c:10068 config/tc-arm.c:10075 #, c-format msgid "invalid offset, value too big (0x%08lX)" msgstr "" -#: config/tc-arm.c:10016 +#: config/tc-arm.c:10114 msgid "invalid immediate for stack address calculation" msgstr "" -#: config/tc-arm.c:10025 +#: config/tc-arm.c:10123 #, c-format msgid "invalid immediate for address calculation (value = 0x%08lX)" msgstr "" -#: config/tc-arm.c:10035 +#: config/tc-arm.c:10133 msgid "invalid 8bit immediate" msgstr "" -#: config/tc-arm.c:10043 +#: config/tc-arm.c:10141 msgid "invalid 3bit immediate" msgstr "" -#: config/tc-arm.c:10059 +#: config/tc-arm.c:10157 #, c-format msgid "invalid immediate: %ld is too large" msgstr "" -#: config/tc-arm.c:10074 +#: config/tc-arm.c:10172 #, c-format msgid "illegal Thumb shift value: %ld" msgstr "" -#: config/tc-arm.c:10088 +#: config/tc-arm.c:10186 #, c-format msgid "bad relocation fixup type (%d)" msgstr "" -#: config/tc-arm.c:10159 +#: config/tc-arm.c:10257 msgid "literal referenced across section boundary (Implicit dump?)" msgstr "" -#: config/tc-arm.c:10172 +#: config/tc-arm.c:10270 #, c-format msgid "internal relocation (type %d) not fixed up (IMMEDIATE)" msgstr "" -#: config/tc-arm.c:10178 +#: config/tc-arm.c:10276 msgid "ADRL used for a symbol not defined in the same file" msgstr "" -#: config/tc-arm.c:10183 +#: config/tc-arm.c:10281 #, c-format msgid "internal_relocation (type %d) not fixed up (OFFSET_IMM)" msgstr "" -#: config/tc-arm.c:10204 config/tc-cris.c:2940 config/tc-mcore.c:2104 +#: config/tc-arm.c:10302 config/tc-cris.c:2940 config/tc-mcore.c:2104 #: config/tc-mmix.c:2840 config/tc-ns32k.c:2350 msgid "" msgstr "" -#: config/tc-arm.c:10207 config/tc-arm.c:10228 +#: config/tc-arm.c:10305 config/tc-arm.c:10326 #, c-format msgid "cannot represent %s relocation in this object file format" msgstr "" -#: config/tc-arm.c:10325 +#: config/tc-arm.c:10423 #, c-format msgid "no operator -- statement `%s'\n" msgstr "" -#: config/tc-arm.c:10343 config/tc-arm.c:10368 +#: config/tc-arm.c:10441 config/tc-arm.c:10466 #, c-format msgid "selected processor does not support `%s'" msgstr "" -#: config/tc-arm.c:10385 +#: config/tc-arm.c:10483 #, c-format msgid "bad instruction `%s'" msgstr "" -#: config/tc-arm.c:10583 +#: config/tc-arm.c:10584 +msgid "generate PIC code" +msgstr "" + +#: config/tc-arm.c:10585 +msgid "assemble Thumb code" +msgstr "" + +#: config/tc-arm.c:10586 +msgid "support ARM/Thumb interworking" +msgstr "" + +#: config/tc-arm.c:10588 +msgid "use old ABI (ELF only)" +msgstr "" + +#: config/tc-arm.c:10589 +msgid "code uses 32-bit program counter" +msgstr "" + +#: config/tc-arm.c:10590 +msgid "code uses 26-bit program counter" +msgstr "" + +#: config/tc-arm.c:10591 +msgid "floating point args are in fp regs" +msgstr "" + +#: config/tc-arm.c:10593 +msgid "re-entrant code" +msgstr "" + +#: config/tc-arm.c:10594 +msgid "code is ATPCS conformant" +msgstr "" + +#: config/tc-arm.c:10595 +msgid "assemble for big-endian" +msgstr "" + +#: config/tc-arm.c:10596 +msgid "assemble for little-endian" +msgstr "" + +#. These are recognized by the assembler, but have no affect on code. +#: config/tc-arm.c:10600 +msgid "use frame pointer" +msgstr "" + +#: config/tc-arm.c:10601 +msgid "use stack size checking" +msgstr "" + +#. DON'T add any new processors to this list -- we want the whole list +#. to go away... Add them to the processors table instead. +#: config/tc-arm.c:10605 config/tc-arm.c:10606 +msgid "use -mcpu=arm1" +msgstr "" + +#: config/tc-arm.c:10607 config/tc-arm.c:10608 +msgid "use -mcpu=arm2" +msgstr "" + +#: config/tc-arm.c:10609 config/tc-arm.c:10610 +msgid "use -mcpu=arm250" +msgstr "" + +#: config/tc-arm.c:10611 config/tc-arm.c:10612 +msgid "use -mcpu=arm3" +msgstr "" + +#: config/tc-arm.c:10613 config/tc-arm.c:10614 +msgid "use -mcpu=arm6" +msgstr "" + +#: config/tc-arm.c:10615 config/tc-arm.c:10616 +msgid "use -mcpu=arm600" +msgstr "" + +#: config/tc-arm.c:10617 config/tc-arm.c:10618 +msgid "use -mcpu=arm610" +msgstr "" + +#: config/tc-arm.c:10619 config/tc-arm.c:10620 +msgid "use -mcpu=arm620" +msgstr "" + +#: config/tc-arm.c:10621 config/tc-arm.c:10622 +msgid "use -mcpu=arm7" +msgstr "" + +#: config/tc-arm.c:10623 config/tc-arm.c:10624 +msgid "use -mcpu=arm70" +msgstr "" + +#: config/tc-arm.c:10625 config/tc-arm.c:10626 +msgid "use -mcpu=arm700" +msgstr "" + +#: config/tc-arm.c:10627 config/tc-arm.c:10628 +msgid "use -mcpu=arm700i" +msgstr "" + +#: config/tc-arm.c:10629 config/tc-arm.c:10630 +msgid "use -mcpu=arm710" +msgstr "" + +#: config/tc-arm.c:10631 config/tc-arm.c:10632 +msgid "use -mcpu=arm710c" +msgstr "" + +#: config/tc-arm.c:10633 config/tc-arm.c:10634 +msgid "use -mcpu=arm720" +msgstr "" + +#: config/tc-arm.c:10635 config/tc-arm.c:10636 +msgid "use -mcpu=arm7d" +msgstr "" + +#: config/tc-arm.c:10637 config/tc-arm.c:10638 +msgid "use -mcpu=arm7di" +msgstr "" + +#: config/tc-arm.c:10639 config/tc-arm.c:10640 +msgid "use -mcpu=arm7m" +msgstr "" + +#: config/tc-arm.c:10641 config/tc-arm.c:10642 +msgid "use -mcpu=arm7dm" +msgstr "" + +#: config/tc-arm.c:10643 config/tc-arm.c:10644 +msgid "use -mcpu=arm7dmi" +msgstr "" + +#: config/tc-arm.c:10645 config/tc-arm.c:10646 +msgid "use -mcpu=arm7100" +msgstr "" + +#: config/tc-arm.c:10647 config/tc-arm.c:10648 +msgid "use -mcpu=arm7500" +msgstr "" + +#: config/tc-arm.c:10649 config/tc-arm.c:10650 +msgid "use -mcpu=arm7500fe" +msgstr "" + +#: config/tc-arm.c:10651 config/tc-arm.c:10652 config/tc-arm.c:10653 +#: config/tc-arm.c:10654 +msgid "use -mcpu=arm7tdmi" +msgstr "" + +#: config/tc-arm.c:10655 config/tc-arm.c:10656 +msgid "use -mcpu=arm710t" +msgstr "" + +#: config/tc-arm.c:10657 config/tc-arm.c:10658 +msgid "use -mcpu=arm720t" +msgstr "" + +#: config/tc-arm.c:10659 config/tc-arm.c:10660 +msgid "use -mcpu=arm740t" +msgstr "" + +#: config/tc-arm.c:10661 config/tc-arm.c:10662 +msgid "use -mcpu=arm8" +msgstr "" + +#: config/tc-arm.c:10663 config/tc-arm.c:10664 +msgid "use -mcpu=arm810" +msgstr "" + +#: config/tc-arm.c:10665 config/tc-arm.c:10666 +msgid "use -mcpu=arm9" +msgstr "" + +#: config/tc-arm.c:10667 config/tc-arm.c:10668 +msgid "use -mcpu=arm9tdmi" +msgstr "" + +#: config/tc-arm.c:10669 config/tc-arm.c:10670 +msgid "use -mcpu=arm920" +msgstr "" + +#: config/tc-arm.c:10671 config/tc-arm.c:10672 +msgid "use -mcpu=arm940" +msgstr "" + +#: config/tc-arm.c:10673 +msgid "use -mcpu=strongarm" +msgstr "" + +#: config/tc-arm.c:10675 +msgid "use -mcpu=strongarm110" +msgstr "" + +#: config/tc-arm.c:10677 +msgid "use -mcpu=strongarm1100" +msgstr "" + +#: config/tc-arm.c:10679 +msgid "use -mcpu=strongarm1110" +msgstr "" + +#: config/tc-arm.c:10680 +msgid "use -mcpu=xscale" +msgstr "" + +#: config/tc-arm.c:10681 +msgid "use -mcpu=all" +msgstr "" + +#. Architecture variants -- don't add any more to this list either. +#: config/tc-arm.c:10684 config/tc-arm.c:10685 +msgid "use -march=armv2" +msgstr "" + +#: config/tc-arm.c:10686 config/tc-arm.c:10687 +msgid "use -march=armv2a" +msgstr "" + +#: config/tc-arm.c:10688 config/tc-arm.c:10689 +msgid "use -march=armv3" +msgstr "" + +#: config/tc-arm.c:10690 config/tc-arm.c:10691 +msgid "use -march=armv3m" +msgstr "" + +#: config/tc-arm.c:10692 config/tc-arm.c:10693 +msgid "use -march=armv4" +msgstr "" + +#: config/tc-arm.c:10694 config/tc-arm.c:10695 +msgid "use -march=armv4t" +msgstr "" + +#: config/tc-arm.c:10696 config/tc-arm.c:10697 +msgid "use -march=armv5" +msgstr "" + +#: config/tc-arm.c:10698 config/tc-arm.c:10699 +msgid "use -march=armv5t" +msgstr "" + +#: config/tc-arm.c:10700 config/tc-arm.c:10701 +msgid "use -march=armv5te" +msgstr "" + +#. Floating point variants -- don't add any more to this list either. +#: config/tc-arm.c:10704 +msgid "use -mfpu=fpe" +msgstr "" + +#: config/tc-arm.c:10705 +msgid "use -mfpu=fpa10" +msgstr "" + +#: config/tc-arm.c:10706 +msgid "use -mfpu=fpa11" +msgstr "" + +#: config/tc-arm.c:10708 +msgid "use either -mfpu=softfpa or -mfpu=softvfp" +msgstr "" + +#: config/tc-arm.c:10888 +msgid "invalid architectural extension" +msgstr "" + +#: config/tc-arm.c:10902 +msgid "missing architectural extension" +msgstr "" + +#: config/tc-arm.c:10915 #, c-format -msgid "unrecognised APCS switch -m%s" +msgid "unknown architectural extnsion `%s'" msgstr "" -#: config/tc-arm.c:10738 config/tc-arm.c:10751 config/tc-arm.c:10764 -#: config/tc-arm.c:10777 config/tc-arm.c:10783 +#: config/tc-arm.c:10940 #, c-format -msgid "invalid architecture variant -m%s" +msgid "missing cpu name `%s'" msgstr "" -#: config/tc-arm.c:10790 +#: config/tc-arm.c:10956 #, c-format -msgid "invalid processor variant -m%s" +msgid "unknown cpu `%s'" msgstr "" -#: config/tc-arm.c:10813 -msgid "" -" ARM Specific Assembler Options:\n" -" -m[arm][] select processor variant\n" -" -m[arm]v[2|2a|3|3m|4|4t|5[t][e]] select architecture variant\n" -" -marm9e allow Cirrus/DSP instructions\n" -" -mthumb only allow Thumb instructions\n" -" -mthumb-interwork mark the assembled code as supporting " -"interworking\n" -" -mall allow any instruction\n" -" -mfpa10, -mfpa11 select floating point architecture\n" -" -mfpe-old don't allow floating-point multiple " -"instructions\n" -" -mvfpxd allow vfp single-precision instructions\n" -" -mvfp allow all vfp instructions\n" -" -mno-fpu don't allow any floating-point instructions.\n" -" -k generate PIC code.\n" -msgstr "" - -#: config/tc-arm.c:10828 -msgid "" -" -mapcs-32, -mapcs-26 specify which ARM Procedure Calling Standard to " -"use\n" -" -matpcs use ARM/Thumb Procedure Calling Standard\n" -" -mapcs-float floating point args are passed in FP regs\n" -" -mapcs-reentrant the code is position independent/reentrant\n" +#: config/tc-arm.c:10975 +#, c-format +msgid "missing architecture name `%s'" msgstr "" -#: config/tc-arm.c:10835 -msgid " -moabi support the old ELF ABI\n" +#: config/tc-arm.c:10992 +#, c-format +msgid "unknown architecture `%s'\n" msgstr "" -#: config/tc-arm.c:10839 -msgid "" -" -EB assemble code for a big endian cpu\n" -" -EL assemble code for a little endian cpu\n" +#: config/tc-arm.c:11009 +#, c-format +msgid "unknown floating point format `%s'\n" +msgstr "" + +#: config/tc-arm.c:11015 +msgid "\t assemble for CPU " +msgstr "" + +#: config/tc-arm.c:11017 +msgid "\t assemble for architecture " +msgstr "" + +#: config/tc-arm.c:11019 +msgid "\t assemble for FPU architecture " +msgstr "" + +#: config/tc-arm.c:11061 config/tc-arm.c:11083 +#, c-format +msgid "option `-%c%s' is deprecated: %s" +msgstr "" + +#: config/tc-arm.c:11092 +#, c-format +msgid "unrecognized option `-%c%s'" +msgstr "" + +#: config/tc-arm.c:11106 +msgid " ARM-specific assembler options:\n" +msgstr "" + +#: config/tc-arm.c:11117 +msgid " -EB assemble code for a big-endian cpu\n" msgstr "" -#: config/tc-arm.c:11023 +#: config/tc-arm.c:11122 +msgid " -EL assemble code for a little-endian cpu\n" +msgstr "" + +#: config/tc-arm.c:11305 #, c-format msgid "%s: unexpected function type: %d" msgstr "" -#: config/tc-arm.c:11389 +#: config/tc-arm.c:11671 msgid "alignments greater than 32 bytes not supported in .text sections." msgstr "" @@ -2243,7 +2540,7 @@ msgstr "" #: config/tc-avr.c:384 config/tc-d10v.c:314 config/tc-d30v.c:366 #: config/tc-mips.c:9586 config/tc-mmix.c:2233 config/tc-mn10200.c:361 -#: config/tc-pj.c:357 config/tc-ppc.c:4803 config/tc-sh.c:2090 +#: config/tc-pj.c:357 config/tc-ppc.c:4803 config/tc-sh.c:2079 #: config/tc-v850.c:1292 msgid "bad call to md_atof" msgstr "" @@ -2338,15 +2635,15 @@ msgid "only constant expression allowed" msgstr "" #: config/tc-avr.c:1067 config/tc-d10v.c:1498 config/tc-d30v.c:1807 -#: config/tc-mn10200.c:1240 config/tc-mn10300.c:1774 config/tc-ppc.c:5534 -#: config/tc-v850.c:2296 +#: config/tc-mn10200.c:1240 config/tc-mn10300.c:1774 config/tc-or32.c:1622 +#: config/tc-ppc.c:5534 config/tc-v850.c:2296 #, c-format msgid "reloc %d not supported by object file format" msgstr "" #: config/tc-avr.c:1091 config/tc-d10v.c:1100 config/tc-d10v.c:1114 -#: config/tc-h8300.c:1275 config/tc-h8500.c:1088 config/tc-mcore.c:988 -#: config/tc-pj.c:266 config/tc-sh.c:1670 config/tc-z8k.c:1192 +#: config/tc-h8300.c:1283 config/tc-h8500.c:1088 config/tc-mcore.c:988 +#: config/tc-pj.c:266 config/tc-sh.c:1677 config/tc-z8k.c:1192 msgid "can't find opcode " msgstr "" @@ -2841,7 +3138,7 @@ msgid "Addend to unresolved symbol not on word boundary." msgstr "" #: config/tc-fr30.c:540 config/tc-i960.c:773 config/tc-m32r.c:1867 -#: config/tc-openrisc.c:468 +#: config/tc-openrisc.c:468 config/tc-xstormy16.c:635 msgid "Bad call to md_atof()" msgstr "" @@ -2873,93 +3170,94 @@ msgstr "" msgid "expect :8 or :16 here" msgstr "" -#: config/tc-h8300.c:818 +#: config/tc-h8300.c:826 #, c-format msgid "operand %s0x%lx out of range." msgstr "" -#: config/tc-h8300.c:906 +#: config/tc-h8300.c:914 msgid "Can't work out size of operand.\n" msgstr "" -#: config/tc-h8300.c:954 +#: config/tc-h8300.c:962 #, c-format msgid "Opcode `%s' with these operand types not available in H8/300 mode" msgstr "" -#: config/tc-h8300.c:1005 config/tc-h8300.c:1025 +#: config/tc-h8300.c:1013 config/tc-h8300.c:1033 msgid "Need #1 or #2 here" msgstr "" -#: config/tc-h8300.c:1020 +#: config/tc-h8300.c:1028 msgid "#4 not valid on H8/300." msgstr "" -#: config/tc-h8300.c:1107 config/tc-h8300.c:1157 +#: config/tc-h8300.c:1115 config/tc-h8300.c:1165 #, c-format msgid "branch operand has odd offset (%lx)\n" msgstr "" -#: config/tc-h8300.c:1195 +#: config/tc-h8300.c:1203 msgid "destination operand must be 16 bit register" msgstr "" -#: config/tc-h8300.c:1204 +#: config/tc-h8300.c:1212 msgid "source operand must be 8 bit register" msgstr "" -#: config/tc-h8300.c:1212 +#: config/tc-h8300.c:1220 msgid "destination operand must be 16bit absolute address" msgstr "" -#: config/tc-h8300.c:1219 +#: config/tc-h8300.c:1227 msgid "destination operand must be 8 bit register" msgstr "" -#: config/tc-h8300.c:1227 +#: config/tc-h8300.c:1235 msgid "source operand must be 16bit absolute address" msgstr "" #. This seems more sane than saying "too many operands". We'll #. get here only if the trailing trash starts with a comma. -#: config/tc-h8300.c:1235 config/tc-mmix.c:452 config/tc-mmix.c:464 +#: config/tc-h8300.c:1243 config/tc-mmix.c:452 config/tc-mmix.c:464 #: config/tc-mmix.c:2485 config/tc-mmix.c:2509 config/tc-mmix.c:2774 +#: config/tc-or32.c:642 config/tc-or32.c:856 msgid "invalid operands" msgstr "" -#: config/tc-h8300.c:1286 config/tc-h8500.c:1094 config/tc-mips.c:8649 -#: config/tc-sh.c:1907 config/tc-w65.c:733 config/tc-z8k.c:1202 +#: config/tc-h8300.c:1294 config/tc-h8500.c:1094 config/tc-mips.c:8649 +#: config/tc-sh.c:1914 config/tc-w65.c:733 config/tc-z8k.c:1202 msgid "unknown opcode" msgstr "" -#: config/tc-h8300.c:1332 +#: config/tc-h8300.c:1340 msgid "mismatch between opcode size and operand size" msgstr "" -#: config/tc-h8300.c:1344 config/tc-h8500.c:1121 config/tc-sh.c:2045 +#: config/tc-h8300.c:1352 config/tc-h8500.c:1121 config/tc-sh.c:2034 #: config/tc-w65.c:763 config/tc-z8k.c:1255 msgid "call to tc_crawl_symbol_chain \n" msgstr "" -#: config/tc-h8300.c:1360 config/tc-h8500.c:1135 config/tc-sh.c:2052 +#: config/tc-h8300.c:1368 config/tc-h8500.c:1135 config/tc-sh.c:2041 #: config/tc-w65.c:777 config/tc-z8k.c:1269 msgid "call to tc_headers_hook \n" msgstr "" -#: config/tc-h8300.c:1452 config/tc-h8500.c:1225 config/tc-z8k.c:1383 +#: config/tc-h8300.c:1460 config/tc-h8500.c:1225 config/tc-z8k.c:1383 msgid "call to tc_aout_fix_to_chars \n" msgstr "" -#: config/tc-h8300.c:1466 config/tc-z8k.c:1393 +#: config/tc-h8300.c:1474 config/tc-z8k.c:1393 msgid "call to md_convert_frag \n" msgstr "" -#: config/tc-h8300.c:1528 config/tc-z8k.c:1479 +#: config/tc-h8300.c:1536 config/tc-z8k.c:1479 msgid "call tomd_estimate_size_before_relax \n" msgstr "" -#: config/tc-h8300.c:1649 config/tc-mcore.c:2413 config/tc-pj.c:572 -#: config/tc-sh.c:3367 +#: config/tc-h8300.c:1657 config/tc-mcore.c:2413 config/tc-pj.c:572 +#: config/tc-sh.c:3365 #, c-format msgid "Cannot represent relocation type %s" msgstr "" @@ -2992,7 +3290,7 @@ msgstr "" msgid "@Rn needs word register" msgstr "" -#: config/tc-h8500.c:828 config/tc-sh.c:1403 +#: config/tc-h8500.c:828 config/tc-sh.c:1410 #, c-format msgid "unhandled %d\n" msgstr "" @@ -3002,12 +3300,12 @@ msgstr "" msgid "operand must be absolute in range %d..%d" msgstr "" -#: config/tc-h8500.c:945 config/tc-sh.c:1610 +#: config/tc-h8500.c:945 config/tc-sh.c:1617 #, c-format msgid "failed for %d\n" msgstr "" -#: config/tc-h8500.c:1110 config/tc-sh.c:1711 config/tc-sh.c:1956 +#: config/tc-h8500.c:1110 config/tc-sh.c:1718 config/tc-sh.c:1963 #: config/tc-w65.c:752 msgid "invalid operands for opcode" msgstr "" @@ -3425,362 +3723,362 @@ msgstr "" msgid "No memory for symbol name." msgstr "" -#: config/tc-i386.c:594 +#: config/tc-i386.c:598 #, c-format msgid "%s shortened to %s" msgstr "" -#: config/tc-i386.c:649 +#: config/tc-i386.c:653 msgid "same type of prefix used twice" msgstr "" -#: config/tc-i386.c:667 +#: config/tc-i386.c:671 msgid "64bit mode not supported on this CPU." msgstr "" -#: config/tc-i386.c:671 +#: config/tc-i386.c:675 msgid "32bit mode not supported on this CPU." msgstr "" -#: config/tc-i386.c:704 +#: config/tc-i386.c:708 msgid "bad argument to syntax directive." msgstr "" -#: config/tc-i386.c:748 +#: config/tc-i386.c:752 #, c-format msgid "no such architecture: `%s'" msgstr "" -#: config/tc-i386.c:753 +#: config/tc-i386.c:757 msgid "missing cpu architecture" msgstr "" -#: config/tc-i386.c:767 +#: config/tc-i386.c:771 #, c-format msgid "no such architecture modifier: `%s'" msgstr "" -#: config/tc-i386.c:821 config/tc-i386.c:4628 +#: config/tc-i386.c:825 config/tc-i386.c:4632 msgid "Unknown architecture" msgstr "" -#: config/tc-i386.c:856 config/tc-i386.c:879 config/tc-m68k.c:3826 +#: config/tc-i386.c:860 config/tc-i386.c:883 config/tc-m68k.c:3826 #, c-format msgid "Internal Error: Can't hash %s: %s" msgstr "" -#: config/tc-i386.c:1132 +#: config/tc-i386.c:1136 msgid "There are no unsigned pc-relative relocations" msgstr "" -#: config/tc-i386.c:1139 config/tc-i386.c:4827 +#: config/tc-i386.c:1143 config/tc-i386.c:4831 #, c-format msgid "can not do %d byte pc-relative relocation" msgstr "" -#: config/tc-i386.c:1156 +#: config/tc-i386.c:1160 #, c-format msgid "can not do %s %d byte relocation" msgstr "" -#: config/tc-i386.c:1263 config/tc-i386.c:1357 +#: config/tc-i386.c:1267 config/tc-i386.c:1361 #, c-format msgid "no such instruction: `%s'" msgstr "" -#: config/tc-i386.c:1273 config/tc-i386.c:1389 +#: config/tc-i386.c:1277 config/tc-i386.c:1393 #, c-format msgid "invalid character %s in mnemonic" msgstr "" -#: config/tc-i386.c:1280 +#: config/tc-i386.c:1284 msgid "expecting prefix; got nothing" msgstr "" -#: config/tc-i386.c:1282 +#: config/tc-i386.c:1286 msgid "expecting mnemonic; got nothing" msgstr "" -#: config/tc-i386.c:1300 +#: config/tc-i386.c:1304 #, c-format msgid "redundant %s prefix" msgstr "" -#: config/tc-i386.c:1398 +#: config/tc-i386.c:1402 #, c-format msgid "`%s' is not supported on `%s'" msgstr "" -#: config/tc-i386.c:1403 +#: config/tc-i386.c:1407 msgid "use .code16 to ensure correct addressing mode" msgstr "" -#: config/tc-i386.c:1410 +#: config/tc-i386.c:1414 #, c-format msgid "expecting string instruction after `%s'" msgstr "" -#: config/tc-i386.c:1431 +#: config/tc-i386.c:1435 #, c-format msgid "invalid character %s before operand %d" msgstr "" -#: config/tc-i386.c:1445 +#: config/tc-i386.c:1449 #, c-format msgid "unbalanced parenthesis in operand %d." msgstr "" -#: config/tc-i386.c:1448 +#: config/tc-i386.c:1452 #, c-format msgid "unbalanced brackets in operand %d." msgstr "" -#: config/tc-i386.c:1457 +#: config/tc-i386.c:1461 #, c-format msgid "invalid character %s in operand %d" msgstr "" -#: config/tc-i386.c:1484 +#: config/tc-i386.c:1488 #, c-format msgid "spurious operands; (%d operands/instruction max)" msgstr "" -#: config/tc-i386.c:1507 +#: config/tc-i386.c:1511 msgid "expecting operand after ','; got nothing" msgstr "" -#: config/tc-i386.c:1512 +#: config/tc-i386.c:1516 msgid "expecting operand before ','; got nothing" msgstr "" #. We found no match. -#: config/tc-i386.c:1856 +#: config/tc-i386.c:1860 #, c-format msgid "suffix or operands invalid for `%s'" msgstr "" -#: config/tc-i386.c:1867 +#: config/tc-i386.c:1871 #, c-format msgid "indirect %s without `*'" msgstr "" #. Warn them that a data or address size prefix doesn't #. affect assembly of the next line of code. -#: config/tc-i386.c:1875 +#: config/tc-i386.c:1879 #, c-format msgid "stand-alone `%s' prefix" msgstr "" -#: config/tc-i386.c:1911 config/tc-i386.c:1926 +#: config/tc-i386.c:1915 config/tc-i386.c:1930 #, c-format msgid "`%s' operand %d must use `%%es' segment" msgstr "" #. Prohibit these changes in the 64bit mode, since #. the lowering is more complicated. -#: config/tc-i386.c:1999 config/tc-i386.c:2053 config/tc-i386.c:2068 -#: config/tc-i386.c:2096 config/tc-i386.c:2124 +#: config/tc-i386.c:2003 config/tc-i386.c:2057 config/tc-i386.c:2072 +#: config/tc-i386.c:2100 config/tc-i386.c:2128 #, c-format msgid "Incorrect register `%%%s' used with`%c' suffix" msgstr "" -#: config/tc-i386.c:2005 config/tc-i386.c:2058 config/tc-i386.c:2129 +#: config/tc-i386.c:2009 config/tc-i386.c:2062 config/tc-i386.c:2133 #, c-format msgid "using `%%%s' instead of `%%%s' due to `%c' suffix" msgstr "" -#: config/tc-i386.c:2021 config/tc-i386.c:2039 config/tc-i386.c:2083 -#: config/tc-i386.c:2110 +#: config/tc-i386.c:2025 config/tc-i386.c:2043 config/tc-i386.c:2087 +#: config/tc-i386.c:2114 #, c-format msgid "`%%%s' not allowed with `%s%c'" msgstr "" -#: config/tc-i386.c:2170 +#: config/tc-i386.c:2174 msgid "no instruction mnemonic suffix given; can't determine immediate size" msgstr "" -#: config/tc-i386.c:2196 +#: config/tc-i386.c:2200 #, c-format msgid "" "no instruction mnemonic suffix given; can't determine immediate size %x %c" msgstr "" -#: config/tc-i386.c:2221 +#: config/tc-i386.c:2225 msgid "" "no instruction mnemonic suffix given and no register operands; can't size " "instruction" msgstr "" -#: config/tc-i386.c:2269 +#: config/tc-i386.c:2273 msgid "64bit operations available only in 64bit modes." msgstr "" #. Reversed arguments on faddp, fsubp, etc. -#: config/tc-i386.c:2337 +#: config/tc-i386.c:2341 #, c-format msgid "translating to `%s %%%s,%%%s'" msgstr "" #. Extraneous `l' suffix on fp insn. -#: config/tc-i386.c:2344 +#: config/tc-i386.c:2348 #, c-format msgid "translating to `%s %%%s'" msgstr "" -#: config/tc-i386.c:2617 +#: config/tc-i386.c:2621 #, c-format msgid "you can't `pop %%cs'" msgstr "" #. UnixWare fsub no args is alias for fsubp, fadd -> faddp, etc. -#: config/tc-i386.c:2650 +#: config/tc-i386.c:2654 #, c-format msgid "translating to `%sp'" msgstr "" -#: config/tc-i386.c:2693 +#: config/tc-i386.c:2697 #, c-format msgid "" "Can't encode registers '%%%s' in the instruction requiring REX prefix.\n" msgstr "" -#: config/tc-i386.c:2755 config/tc-i386.c:2845 config/tc-i386.c:2881 +#: config/tc-i386.c:2759 config/tc-i386.c:2849 config/tc-i386.c:2885 msgid "skipping prefixes on this instruction" msgstr "" -#: config/tc-i386.c:2901 +#: config/tc-i386.c:2905 msgid "16-bit jump out of range" msgstr "" -#: config/tc-i386.c:2910 +#: config/tc-i386.c:2914 #, c-format msgid "can't handle non absolute segment in `%s'" msgstr "" -#: config/tc-i386.c:3217 +#: config/tc-i386.c:3221 #, c-format msgid "@%s reloc is not supported in %s bit mode" msgstr "" -#: config/tc-i386.c:3293 +#: config/tc-i386.c:3297 msgid "only 1 or 2 immediate operands are allowed" msgstr "" -#: config/tc-i386.c:3316 config/tc-i386.c:3504 +#: config/tc-i386.c:3320 config/tc-i386.c:3508 #, c-format msgid "junk `%s' after expression" msgstr "" #. Missing or bad expr becomes absolute 0. -#: config/tc-i386.c:3327 +#: config/tc-i386.c:3331 #, c-format msgid "missing or invalid immediate expression `%s' taken as 0" msgstr "" -#: config/tc-i386.c:3358 config/tc-i386.c:3565 +#: config/tc-i386.c:3362 config/tc-i386.c:3569 #, c-format msgid "unimplemented segment %s in operand" msgstr "" -#: config/tc-i386.c:3360 config/tc-i386.c:3567 +#: config/tc-i386.c:3364 config/tc-i386.c:3571 #, c-format msgid "unimplemented segment type %d in operand" msgstr "" -#: config/tc-i386.c:3404 config/tc-i386.c:5588 +#: config/tc-i386.c:3408 config/tc-i386.c:5592 #, c-format msgid "expecting scale factor of 1, 2, 4, or 8: got `%s'" msgstr "" -#: config/tc-i386.c:3411 +#: config/tc-i386.c:3415 #, c-format msgid "scale factor of %d without an index register" msgstr "" -#: config/tc-i386.c:3524 +#: config/tc-i386.c:3528 #, c-format msgid "bad expression used with @%s" msgstr "" #. Missing or bad expr becomes absolute 0. -#: config/tc-i386.c:3546 +#: config/tc-i386.c:3550 #, c-format msgid "missing or invalid displacement expression `%s' taken as 0" msgstr "" -#: config/tc-i386.c:3652 +#: config/tc-i386.c:3656 #, c-format msgid "`%s' is not a valid base/index expression" msgstr "" -#: config/tc-i386.c:3656 +#: config/tc-i386.c:3660 #, c-format msgid "`%s' is not a valid %s bit base/index expression" msgstr "" -#: config/tc-i386.c:3731 +#: config/tc-i386.c:3735 #, c-format msgid "bad memory operand `%s'" msgstr "" -#: config/tc-i386.c:3746 +#: config/tc-i386.c:3750 #, c-format msgid "junk `%s' after register" msgstr "" -#: config/tc-i386.c:3755 config/tc-i386.c:3870 config/tc-i386.c:3908 +#: config/tc-i386.c:3759 config/tc-i386.c:3874 config/tc-i386.c:3912 #, c-format msgid "bad register name `%s'" msgstr "" -#: config/tc-i386.c:3763 +#: config/tc-i386.c:3767 msgid "immediate operand illegal with absolute jump" msgstr "" -#: config/tc-i386.c:3785 +#: config/tc-i386.c:3789 #, c-format msgid "too many memory references for `%s'" msgstr "" -#: config/tc-i386.c:3863 +#: config/tc-i386.c:3867 #, c-format msgid "expecting `,' or `)' after index register in `%s'" msgstr "" -#: config/tc-i386.c:3887 +#: config/tc-i386.c:3891 #, c-format msgid "expecting `)' after scale factor in `%s'" msgstr "" -#: config/tc-i386.c:3894 +#: config/tc-i386.c:3898 #, c-format msgid "expecting index register or scale factor after `,'; got '%c'" msgstr "" -#: config/tc-i386.c:3901 +#: config/tc-i386.c:3905 #, c-format msgid "expecting `,' or `)' after base register in `%s'" msgstr "" #. It's not a memory operand; argh! -#: config/tc-i386.c:3942 +#: config/tc-i386.c:3946 #, c-format msgid "invalid char %s beginning operand %d `%s'" msgstr "" -#: config/tc-i386.c:4117 +#: config/tc-i386.c:4121 msgid "long jump required" msgstr "" -#: config/tc-i386.c:4417 +#: config/tc-i386.c:4421 msgid "Bad call to md_atof ()" msgstr "" -#: config/tc-i386.c:4581 +#: config/tc-i386.c:4585 msgid "No compiled in support for x86_64" msgstr "" -#: config/tc-i386.c:4602 +#: config/tc-i386.c:4606 msgid "" " -Q ignored\n" " -V print assembler version number\n" @@ -3789,63 +4087,63 @@ msgid "" " -s ignored\n" msgstr "" -#: config/tc-i386.c:4609 +#: config/tc-i386.c:4613 msgid " -q quieten some warnings\n" msgstr "" -#: config/tc-i386.c:4710 config/tc-s390.c:1592 +#: config/tc-i386.c:4714 config/tc-s390.c:1592 msgid "GOT already in symbol table" msgstr "" -#: config/tc-i386.c:4842 +#: config/tc-i386.c:4846 #, c-format msgid "can not do %d byte relocation" msgstr "" -#: config/tc-i386.c:4894 config/tc-s390.c:1957 +#: config/tc-i386.c:4898 config/tc-s390.c:1957 #, c-format msgid "cannot represent relocation type %s" msgstr "" -#: config/tc-i386.c:5190 +#: config/tc-i386.c:5194 #, c-format msgid "too many memory references for '%s'" msgstr "" -#: config/tc-i386.c:5353 +#: config/tc-i386.c:5357 #, c-format msgid "Unknown operand modifier `%s'\n" msgstr "" -#: config/tc-i386.c:5560 +#: config/tc-i386.c:5564 #, c-format msgid "`%s' is not a valid segment register" msgstr "" -#: config/tc-i386.c:5570 config/tc-i386.c:5691 +#: config/tc-i386.c:5574 config/tc-i386.c:5695 msgid "Register scaling only allowed in memory operands." msgstr "" -#: config/tc-i386.c:5601 +#: config/tc-i386.c:5605 msgid "Too many register references in memory operand.\n" msgstr "" -#: config/tc-i386.c:5670 +#: config/tc-i386.c:5674 #, c-format msgid "Syntax error. Expecting a constant. Got `%s'.\n" msgstr "" -#: config/tc-i386.c:5740 +#: config/tc-i386.c:5744 #, c-format msgid "Unrecognized token '%s'" msgstr "" -#: config/tc-i386.c:5757 +#: config/tc-i386.c:5761 #, c-format msgid "Unexpected token `%s'\n" msgstr "" -#: config/tc-i386.c:5901 +#: config/tc-i386.c:5905 #, c-format msgid "Unrecognized token `%s'\n" msgstr "" @@ -4753,7 +5051,7 @@ msgstr "" msgid "Unable to produce reloc against symbol '%s'" msgstr "" -#: config/tc-m68k.c:948 config/tc-mips.c:12429 +#: config/tc-m68k.c:948 config/tc-mips.c:12440 #, c-format msgid "Cannot make %s relocation PC relative" msgstr "" @@ -5435,7 +5733,7 @@ msgstr "" msgid "returned from mips_ip(%s) insn_opcode = 0x%x\n" msgstr "" -#: config/tc-mips.c:2012 config/tc-mips.c:12574 +#: config/tc-mips.c:2012 config/tc-mips.c:12585 msgid "extended instruction in delay slot" msgstr "" @@ -5979,65 +6277,65 @@ msgstr "" msgid "Double check fx_r_type in tc-mips.c:tc_gen_reloc" msgstr "" -#: config/tc-mips.c:12461 config/tc-sh.c:3218 +#: config/tc-mips.c:12472 config/tc-sh.c:3209 #, c-format msgid "Can not represent %s relocation in this object file format" msgstr "" -#: config/tc-mips.c:12800 +#: config/tc-mips.c:12811 msgid "missing .end at end of assembly" msgstr "" -#: config/tc-mips.c:12815 +#: config/tc-mips.c:12826 msgid "expected simple number" msgstr "" -#: config/tc-mips.c:12841 +#: config/tc-mips.c:12852 #, c-format msgid " *input_line_pointer == '%c' 0x%02x\n" msgstr "" -#: config/tc-mips.c:12843 +#: config/tc-mips.c:12854 msgid "invalid number" msgstr "" -#: config/tc-mips.c:12901 +#: config/tc-mips.c:12912 msgid ".end not in text section" msgstr "" -#: config/tc-mips.c:12905 +#: config/tc-mips.c:12916 msgid ".end directive without a preceding .ent directive." msgstr "" -#: config/tc-mips.c:12914 +#: config/tc-mips.c:12925 msgid ".end symbol does not match .ent symbol." msgstr "" -#: config/tc-mips.c:12917 +#: config/tc-mips.c:12928 msgid ".end directive missing or unknown symbol" msgstr "" -#: config/tc-mips.c:12990 +#: config/tc-mips.c:13001 msgid ".ent or .aent not in text section." msgstr "" -#: config/tc-mips.c:12993 +#: config/tc-mips.c:13004 msgid "missing .end" msgstr "" -#: config/tc-mips.c:13030 ecoff.c:3202 +#: config/tc-mips.c:13041 ecoff.c:3202 msgid ".frame outside of .ent" msgstr "" -#: config/tc-mips.c:13041 +#: config/tc-mips.c:13052 msgid "Bad .frame directive" msgstr "" -#: config/tc-mips.c:13071 +#: config/tc-mips.c:13082 msgid ".mask/.fmask outside of .ent" msgstr "" -#: config/tc-mips.c:13078 +#: config/tc-mips.c:13089 msgid "Bad .mask/.fmask directive" msgstr "" @@ -6486,6 +6784,46 @@ msgstr "" msgid "Cannot find relocation type for symbol %s, code %d" msgstr "" +#: config/tc-or32.c:467 config/tc-or32.c:682 +#, c-format +msgid "unknown opcode1: `%s'" +msgstr "" + +#: config/tc-or32.c:473 config/tc-or32.c:688 +#, c-format +msgid "unknown opcode2 `%s'." +msgstr "" + +#: config/tc-or32.c:512 config/tc-or32.c:727 +#, c-format +msgid "instruction not allowed: %s" +msgstr "" + +#: config/tc-or32.c:515 config/tc-or32.c:730 +#, c-format +msgid "too many operands: %s" +msgstr "" + +#: config/tc-or32.c:605 config/tc-or32.c:821 +msgid "call/jmp target out of range (1)" +msgstr "" + +#: config/tc-or32.c:1018 config/tc-or32.c:1135 +msgid "the linker will not handle this relocation correctly (1)" +msgstr "" + +#: config/tc-or32.c:1027 config/tc-or32.c:1144 +msgid "call/jmp target out of range (2)" +msgstr "" + +#: config/tc-or32.c:1437 +msgid "register out of range" +msgstr "" + +#: config/tc-or32.c:1482 +msgid "invalid register in & expression" +msgstr "" + #: config/tc-pj.c:67 config/tc-pj.c:75 msgid "confusing relocation expressions" msgstr "" @@ -6506,8 +6844,8 @@ msgid "" "-big\t\t\tgenerate big endian code\n" msgstr "" -#: config/tc-pj.c:460 config/tc-sh.c:2922 config/tc-sh.c:2929 -#: config/tc-sh.c:2936 config/tc-sh.c:2943 +#: config/tc-pj.c:460 config/tc-sh.c:2910 config/tc-sh.c:2917 +#: config/tc-sh.c:2924 config/tc-sh.c:2931 msgid "pcrel too far" msgstr "" @@ -6584,7 +6922,7 @@ msgstr "" msgid "identifier+constant@got means identifier@got+constant" msgstr "" -#: config/tc-ppc.c:1505 config/tc-sh.c:388 config/tc-sh.c:416 +#: config/tc-ppc.c:1505 #, c-format msgid "%s relocations do not fit in %d bytes\n" msgstr "" @@ -6742,6 +7080,7 @@ msgid "symbol in .toc does not match any .tc" msgstr "" #: config/tc-ppc.c:5246 config/tc-s390.c:1797 config/tc-v850.c:2420 +#: config/tc-xstormy16.c:536 msgid "unresolved expression that must be resolved" msgstr "" @@ -6864,117 +7203,130 @@ msgstr "" msgid "unsupported relocation type" msgstr "" -#: config/tc-sh.c:89 +#: config/tc-sh.c:91 msgid "directive .big encountered when option -big required" msgstr "" -#: config/tc-sh.c:100 +#: config/tc-sh.c:102 msgid "directive .little encountered when option -little required" msgstr "" -#: config/tc-sh.c:909 +#: config/tc-sh.c:383 +msgid "Invalid PIC expression." +msgstr "" + +#: config/tc-sh.c:406 read.c:3749 +#, c-format +msgid "unsupported BFD relocation size %u" +msgstr "" + +#: config/tc-sh.c:875 +msgid "misplaced PIC operand" +msgstr "" + +#: config/tc-sh.c:916 msgid "illegal register after @-" msgstr "" -#: config/tc-sh.c:925 +#: config/tc-sh.c:932 msgid "must be @(r0,...)" msgstr "" -#: config/tc-sh.c:949 +#: config/tc-sh.c:956 msgid "syntax error in @(r0,...)" msgstr "" -#: config/tc-sh.c:954 +#: config/tc-sh.c:961 msgid "syntax error in @(r0...)" msgstr "" -#: config/tc-sh.c:987 config/tc-sh.c:992 +#: config/tc-sh.c:994 config/tc-sh.c:999 msgid "syntax error in @(disp,[Rn, gbr, pc])" msgstr "" -#: config/tc-sh.c:997 +#: config/tc-sh.c:1004 msgid "expecting )" msgstr "" -#: config/tc-sh.c:1005 +#: config/tc-sh.c:1012 msgid "illegal register after @" msgstr "" -#: config/tc-sh.c:1553 +#: config/tc-sh.c:1560 #, c-format msgid "Invalid register: 'r%d'" msgstr "" -#: config/tc-sh.c:1716 +#: config/tc-sh.c:1723 msgid "insn can't be combined with parallel processing insn" msgstr "" -#: config/tc-sh.c:1723 config/tc-sh.c:1734 +#: config/tc-sh.c:1730 config/tc-sh.c:1741 msgid "multiple movx specifications" msgstr "" -#: config/tc-sh.c:1728 config/tc-sh.c:1755 +#: config/tc-sh.c:1735 config/tc-sh.c:1762 msgid "multiple movy specifications" msgstr "" -#: config/tc-sh.c:1736 +#: config/tc-sh.c:1743 msgid "invalid movx address register" msgstr "" -#: config/tc-sh.c:1742 config/tc-sh.c:1747 +#: config/tc-sh.c:1749 config/tc-sh.c:1754 msgid "invalid movx dsp register" msgstr "" -#: config/tc-sh.c:1764 config/tc-sh.c:1769 +#: config/tc-sh.c:1771 config/tc-sh.c:1776 msgid "invalid movy dsp register" msgstr "" -#: config/tc-sh.c:1773 +#: config/tc-sh.c:1780 msgid "invalid movy address register" msgstr "" -#: config/tc-sh.c:1779 +#: config/tc-sh.c:1786 msgid "dsp immediate shift value not constant" msgstr "" -#: config/tc-sh.c:1786 config/tc-sh.c:1799 +#: config/tc-sh.c:1793 config/tc-sh.c:1806 msgid "multiple parallel processing specifications" msgstr "" -#: config/tc-sh.c:1792 +#: config/tc-sh.c:1799 msgid "multiple condition specifications" msgstr "" -#: config/tc-sh.c:1808 +#: config/tc-sh.c:1815 msgid "insn cannot be combined with pmuls" msgstr "" -#: config/tc-sh.c:1825 +#: config/tc-sh.c:1832 msgid "bad padd / psub pmuls output operand" msgstr "" -#: config/tc-sh.c:1835 +#: config/tc-sh.c:1842 msgid "condition not followed by conditionalizable insn" msgstr "" -#: config/tc-sh.c:1845 +#: config/tc-sh.c:1852 msgid "unrecognized characters at end of parallel processing insn" msgstr "" -#: config/tc-sh.c:1961 +#: config/tc-sh.c:1968 #, c-format msgid "excess operands: '%s'" msgstr "" -#: config/tc-sh.c:2131 +#: config/tc-sh.c:2120 msgid ".uses pseudo-op seen when not relaxing" msgstr "" -#: config/tc-sh.c:2137 +#: config/tc-sh.c:2126 msgid "bad .uses format" msgstr "" -#: config/tc-sh.c:2203 +#: config/tc-sh.c:2192 msgid "" "SH options:\n" "-little\t\t\tgenerate little endian code\n" @@ -6984,57 +7336,57 @@ msgid "" "-dsp\t\t\tenable sh-dsp insns, and disable sh3e / sh4 insns.\n" msgstr "" -#: config/tc-sh.c:2292 +#: config/tc-sh.c:2281 msgid ".uses does not refer to a local symbol in the same section" msgstr "" -#: config/tc-sh.c:2311 +#: config/tc-sh.c:2300 msgid "can't find fixup pointed to by .uses" msgstr "" -#: config/tc-sh.c:2334 +#: config/tc-sh.c:2323 msgid ".uses target does not refer to a local symbol in the same section" msgstr "" -#: config/tc-sh.c:2432 +#: config/tc-sh.c:2421 msgid "displacement overflows 12-bit field" msgstr "" -#: config/tc-sh.c:2435 +#: config/tc-sh.c:2424 #, c-format msgid "displacement to defined symbol %s overflows 12-bit field" msgstr "" -#: config/tc-sh.c:2439 +#: config/tc-sh.c:2428 #, c-format msgid "displacement to undefined symbol %s overflows 12-bit field" msgstr "" -#: config/tc-sh.c:2517 +#: config/tc-sh.c:2506 msgid "displacement overflows 8-bit field" msgstr "" -#: config/tc-sh.c:2520 +#: config/tc-sh.c:2509 #, c-format msgid "displacement to defined symbol %s overflows 8-bit field" msgstr "" -#: config/tc-sh.c:2524 +#: config/tc-sh.c:2513 #, c-format msgid "displacement to undefined symbol %s overflows 8-bit field " msgstr "" -#: config/tc-sh.c:2537 +#: config/tc-sh.c:2526 #, c-format msgid "overflow in branch to %s; converted into longer instruction sequence" msgstr "" -#: config/tc-sh.c:2612 config/tc-sh.c:2660 config/tc-sparc.c:4093 +#: config/tc-sh.c:2601 config/tc-sh.c:2649 config/tc-sparc.c:4093 #: config/tc-sparc.c:4118 msgid "misaligned data" msgstr "" -#: config/tc-sh.c:3022 +#: config/tc-sh.c:3013 msgid "misaligned offset" msgstr "" @@ -7845,243 +8197,249 @@ msgstr "" msgid "Invalid dmad syntax '%s'" msgstr "" -#: config/tc-tic54x.c:3707 +#: config/tc-tic54x.c:3658 +#, c-format +msgid "" +"Use the .mmregs directive to use memory-mapped register names such as '%s'" +msgstr "" + +#: config/tc-tic54x.c:3710 msgid "Address mode *+ARx is write-only. Results of reading are undefined." msgstr "" -#: config/tc-tic54x.c:3727 +#: config/tc-tic54x.c:3730 #, c-format msgid "Unrecognized indirect address format \"%s\"" msgstr "" -#: config/tc-tic54x.c:3762 +#: config/tc-tic54x.c:3765 #, c-format msgid "Operand '%s' out of range (%d <= x <= %d)" msgstr "" -#: config/tc-tic54x.c:3782 +#: config/tc-tic54x.c:3785 msgid "Error in relocation handling" msgstr "" -#: config/tc-tic54x.c:3801 config/tc-tic54x.c:3863 config/tc-tic54x.c:3889 +#: config/tc-tic54x.c:3804 config/tc-tic54x.c:3866 config/tc-tic54x.c:3892 #, c-format msgid "Unrecognized condition code \"%s\"" msgstr "" -#: config/tc-tic54x.c:3818 +#: config/tc-tic54x.c:3821 #, c-format msgid "Condition \"%s\" does not match preceding group" msgstr "" -#: config/tc-tic54x.c:3826 +#: config/tc-tic54x.c:3829 #, c-format msgid "" "Condition \"%s\" uses a different accumulator from a preceding condition" msgstr "" -#: config/tc-tic54x.c:3833 +#: config/tc-tic54x.c:3836 msgid "Only one comparison conditional allowed" msgstr "" -#: config/tc-tic54x.c:3838 +#: config/tc-tic54x.c:3841 msgid "Only one overflow conditional allowed" msgstr "" -#: config/tc-tic54x.c:3846 +#: config/tc-tic54x.c:3849 #, c-format msgid "Duplicate %s conditional" msgstr "" -#: config/tc-tic54x.c:3876 +#: config/tc-tic54x.c:3879 msgid "Invalid auxiliary register (use AR0-AR7)" msgstr "" -#: config/tc-tic54x.c:3909 +#: config/tc-tic54x.c:3912 msgid "lk addressing modes are invalid for memory-mapped register addressing" msgstr "" -#: config/tc-tic54x.c:3917 +#: config/tc-tic54x.c:3920 msgid "" "Address mode *+ARx is not allowed in memory-mapped register addressing. " "Resulting behavior is undefined." msgstr "" -#: config/tc-tic54x.c:3943 +#: config/tc-tic54x.c:3946 msgid "" "Destination accumulator for each part of this parallel instruction must be " "different" msgstr "" -#: config/tc-tic54x.c:3992 +#: config/tc-tic54x.c:3995 #, c-format msgid "Memory mapped register \"%s\" out of range" msgstr "" -#: config/tc-tic54x.c:4031 +#: config/tc-tic54x.c:4034 msgid "Invalid operand (use 1, 2, or 3)" msgstr "" -#: config/tc-tic54x.c:4056 +#: config/tc-tic54x.c:4059 msgid "A status register or status bit name is required" msgstr "" -#: config/tc-tic54x.c:4066 +#: config/tc-tic54x.c:4069 #, c-format msgid "Unrecognized status bit \"%s\"" msgstr "" -#: config/tc-tic54x.c:4089 +#: config/tc-tic54x.c:4092 #, c-format msgid "Invalid status register \"%s\"" msgstr "" -#: config/tc-tic54x.c:4101 +#: config/tc-tic54x.c:4104 #, c-format msgid "Operand \"%s\" out of range (use 1 or 2)" msgstr "" -#: config/tc-tic54x.c:4302 +#: config/tc-tic54x.c:4305 #, c-format msgid "Unrecognized instruction \"%s\"" msgstr "" -#: config/tc-tic54x.c:4331 +#: config/tc-tic54x.c:4334 #, c-format msgid "Unrecognized operand list '%s' for instruction '%s'" msgstr "" -#: config/tc-tic54x.c:4360 +#: config/tc-tic54x.c:4363 #, c-format msgid "Unrecognized parallel instruction \"%s\"" msgstr "" -#: config/tc-tic54x.c:4410 +#: config/tc-tic54x.c:4413 #, c-format msgid "Invalid operand (s) for parallel instruction \"%s\"" msgstr "" -#: config/tc-tic54x.c:4413 +#: config/tc-tic54x.c:4416 #, c-format msgid "Unrecognized parallel instruction combination \"%s || %s\"" msgstr "" -#: config/tc-tic54x.c:4645 +#: config/tc-tic54x.c:4648 #, c-format msgid "%s symbol recursion stopped at second appearance of '%s'" msgstr "" -#: config/tc-tic54x.c:4684 +#: config/tc-tic54x.c:4687 msgid "Unrecognized substitution symbol function" msgstr "" -#: config/tc-tic54x.c:4689 +#: config/tc-tic54x.c:4692 msgid "Missing '(' after substitution symbol function" msgstr "" -#: config/tc-tic54x.c:4703 +#: config/tc-tic54x.c:4706 msgid "Expecting second argument" msgstr "" -#: config/tc-tic54x.c:4716 config/tc-tic54x.c:4765 +#: config/tc-tic54x.c:4719 config/tc-tic54x.c:4768 msgid "Extra junk in function call, expecting ')'" msgstr "" -#: config/tc-tic54x.c:4741 +#: config/tc-tic54x.c:4744 msgid "Function expects two arguments" msgstr "" -#: config/tc-tic54x.c:4754 +#: config/tc-tic54x.c:4757 msgid "Expecting character constant argument" msgstr "" -#: config/tc-tic54x.c:4760 +#: config/tc-tic54x.c:4763 msgid "Both arguments must be substitution symbols" msgstr "" -#: config/tc-tic54x.c:4813 +#: config/tc-tic54x.c:4816 #, c-format msgid "Invalid subscript (use 1 to %d)" msgstr "" -#: config/tc-tic54x.c:4823 +#: config/tc-tic54x.c:4826 #, c-format msgid "Invalid length (use 0 to %d" msgstr "" -#: config/tc-tic54x.c:4833 +#: config/tc-tic54x.c:4836 msgid "Missing ')' in subscripted substitution symbol expression" msgstr "" -#: config/tc-tic54x.c:4853 +#: config/tc-tic54x.c:4856 msgid "Missing forced substitution terminator ':'" msgstr "" -#: config/tc-tic54x.c:5026 +#: config/tc-tic54x.c:5029 #, c-format msgid "" "Instruction does not fit in available delay slots (%d-word insn, %d slots " "left)" msgstr "" -#: config/tc-tic54x.c:5067 +#: config/tc-tic54x.c:5070 #, c-format msgid "Unrecognized parallel instruction '%s'" msgstr "" -#: config/tc-tic54x.c:5079 +#: config/tc-tic54x.c:5082 #, c-format msgid "Instruction '%s' requires an LP cpu version" msgstr "" -#: config/tc-tic54x.c:5086 +#: config/tc-tic54x.c:5089 #, c-format msgid "Instruction '%s' requires far mode addressing" msgstr "" -#: config/tc-tic54x.c:5098 +#: config/tc-tic54x.c:5101 #, c-format msgid "" "Instruction does not fit in available delay slots (%d-word insn, %d slots " "left). Resulting behavior is undefined." msgstr "" -#: config/tc-tic54x.c:5108 +#: config/tc-tic54x.c:5111 msgid "" "Instructions which cause PC discontinuity are not allowed in a delay slot. " "Resulting behavior is undefined." msgstr "" -#: config/tc-tic54x.c:5119 +#: config/tc-tic54x.c:5122 #, c-format msgid "'%s' is not repeatable. Resulting behavior is undefined." msgstr "" -#: config/tc-tic54x.c:5123 +#: config/tc-tic54x.c:5126 msgid "" "Instructions using long offset modifiers or absolute addresses are not " "repeatable. Resulting behavior is undefined." msgstr "" -#: config/tc-tic54x.c:5314 +#: config/tc-tic54x.c:5317 #, c-format msgid "Unsupported relocation size %d" msgstr "" -#: config/tc-tic54x.c:5468 +#: config/tc-tic54x.c:5471 msgid "non-absolute value used with .space/.bes" msgstr "" -#: config/tc-tic54x.c:5472 +#: config/tc-tic54x.c:5475 #, c-format msgid "negative value ignored in %s" msgstr "" -#: config/tc-tic54x.c:5559 +#: config/tc-tic54x.c:5562 #, c-format msgid "attempt to .space/.bes backwards? (%ld)" msgstr "" -#: config/tc-tic54x.c:5592 +#: config/tc-tic54x.c:5595 #, c-format msgid "Invalid label '%s'" msgstr "" @@ -8525,6 +8883,15 @@ msgstr "" msgid "call to tc_Nout_fix_to_chars \n" msgstr "" +#: config/tc-xstormy16.c:80 +msgid " XSTORMY16 specific command line options:\n" +msgstr "" + +#: config/tc-xstormy16.c:561 +#, c-format +msgid "internal error: can't install fix for reloc type %d (`%s')" +msgstr "" + #: config/tc-z8k.c:285 #, c-format msgid "register rr%d, out of range." @@ -9681,11 +10048,6 @@ msgstr "" msgid "bignum truncated to %d bytes" msgstr "" -#: read.c:3749 -#, c-format -msgid "unsupported BFD relocation size %u" -msgstr "" - #: read.c:3839 msgid "using a bit field width of zero" msgstr "" diff --git a/include/ChangeLog b/include/ChangeLog index a21e0c75c..fc8c94ea5 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,6 +1,6 @@ -2002-01-28 Jason Merrill +2002-01-31 Ivan Guzvinec - * elf/dwarf2.h: Sync with gcc version. + * dis-asm.h : Add support for or32 targets 2002-01-28 Kaveh R. Ghazi @@ -10,11 +10,6 @@ * cgen.h (BFD_VERSION): Use BFD_VERSION_DATE instead. -2002-01-15 Richard Earnshaw - - * coff/arm.h (F_VFP_FLOAT): Define. - * elf/arm.h (F_VFP_FLOAT, EF_ARM_VFP_FLOAT): Define. - 2001-12-14 Nick Clifton * dis-asm.h (INIT_DISASSEMBLE_INFO_NO_ARCH): Initialise the @@ -22,7 +17,6 @@ 2001-12-13 Jakub Jelinek - * elf/common.h (PT_GNU_EH_FRAME): Define. * bfdlink.h (struct bfd_link_info): Add eh_frame_hdr field. 2001-12-07 Geoffrey Keating @@ -48,7 +42,7 @@ 2001-10-24 Neil Booth - * include/safe-ctype.h (_sch_isbasic, IS_ISOBASIC): New. + * safe-ctype.h (_sch_isbasic, IS_ISOBASIC): New. 2001-10-22 Kaveh R. Ghazi @@ -160,12 +154,6 @@ * libiberty.h (lbasename): Change function declaration to return a const char pointer. -2001-08-10 Richard Sandiford - - * opcode/mips.h (INSN_GP32): Remove. - (OPCODE_IS_MEMBER): Remove gp32 parameter. - (M_MOVE): New macro identifier. - 2001-08-02 Mark Kettenis * xregex.h (_REGEX_RE_COMP): Define. @@ -177,19 +165,10 @@ * bfdlink.h (struct bfd_link_info): add new boolean field pei386_auto_import. -2001-08-01 Aldy Hernandez - - * opcode/mips.h (INSN_ISA_MASK): Nuke bits 12-15. - 2001-07-18 Andreas Jaeger * xregex2.h: Place under LGPL version 2.1. -2001-07-12 Jeff Johnston - - * opcode/cgen.h (CGEN_INSN): Add regex support. - (build_insn_regex): Declare. - 2001-07-10 Jeff Johnston * xregex.h: New file to support libiberty regex. @@ -207,11 +186,6 @@ * ansidecl.h (NULL_PTR): Delete. -2001-05-11 Jakub Jelinek - - * elf/ia64.h (ELF_STRING_ia64_unwind_once): Define. - (ELF_STRING_ia64_unwind_info_once): Define. - 2001-05-07 Zack Weinberg * demangle.h: Use PARAMS for all prototypes. diff --git a/include/coff/ChangeLog b/include/coff/ChangeLog index b8882bc39..7aced1390 100644 --- a/include/coff/ChangeLog +++ b/include/coff/ChangeLog @@ -1,3 +1,7 @@ +2002-01-31 Ivan Guzvinec + + * or32.h: New file. + 2001-12-24 Tom Rix * xcoff.h (xcoff_big_format_p): Make the default archive @@ -5,7 +9,6 @@ (XCOFFARMAG_ELEMENT_SIZE, XCOFFARMAGBIG_ELEMENT_SIZE): Define for archive header ascii elements. - 2001-12-17 Tom Rix * xcoff.h : Add .except and .typchk section string and styp flags. @@ -15,6 +18,10 @@ * xcoff.h : Clean up formatting. +2002-01-15 Richard Earnshaw + + * arm.h (F_VFP_FLOAT): Define. + 2001-11-11 Timothy Wall * ti.h: Move arch-specific stuff from here... diff --git a/include/coff/or32.h b/include/coff/or32.h new file mode 100644 index 000000000..c2797aa90 --- /dev/null +++ b/include/coff/or32.h @@ -0,0 +1,287 @@ +/* COFF specification for OpenRISC 1000. + Copyright (C) 1993-2000, 2002 Free Software Foundation, Inc. + Contributed by David Wood @ New York University. + Modified by Johan Rydberg, + + This file is part of BFD, the Binary File Descriptor library. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + +#ifndef OR32 +# define OR32 +#endif + +/* File Header and related definitions. */ +struct external_filehdr +{ + char f_magic[2]; /* magic number */ + char f_nscns[2]; /* number of sections */ + char f_timdat[4]; /* time & date stamp */ + char f_symptr[4]; /* file pointer to symtab */ + char f_nsyms[4]; /* number of symtab entries */ + char f_opthdr[2]; /* sizeof(optional hdr) */ + char f_flags[2]; /* flags */ +}; + +#define FILHDR struct external_filehdr +#define FILHSZ 20 + +/* Magic numbers for OpenRISC 1000. As it is know we use the + numbers for Am29000. + + (AT&T will assign the "real" magic number). */ +#define SIPFBOMAGIC 0572 /* Am29000 (Byte 0 is MSB). */ +#define SIPRBOMAGIC 0573 /* Am29000 (Byte 0 is LSB). */ + +#define OR32_MAGIC_BIG SIPFBOMAGIC +#define OR32_MAGIC_LITTLE SIPRBOMAGIC +#define OR32BADMAG(x) (((x).f_magic!=OR32_MAGIC_BIG) && \ + ((x).f_magic!=OR32_MAGIC_LITTLE)) + +#define OMAGIC OR32_MAGIC_BIG + +/* Optional (a.out) header. */ +typedef struct external_aouthdr +{ + char magic[2]; /* type of file */ + char vstamp[2]; /* version stamp */ + char tsize[4]; /* text size in bytes, padded to FW bdry */ + char dsize[4]; /* initialized data " " */ + char bsize[4]; /* uninitialized data " " */ + char entry[4]; /* entry pt. */ + char text_start[4]; /* base of text used for this file */ + char data_start[4]; /* base of data used for this file */ +} AOUTHDR; + +#define AOUTSZ 28 +#define AOUTHDRSZ 28 + +/* aouthdr magic numbers. */ +#define NMAGIC 0410 /* separate i/d executable. */ +#define SHMAGIC 0406 /* NYU/Ultra3 shared data executable + (writable text). */ + +#define _ETEXT "_etext" + +/* Section header and related definitions. */ +struct external_scnhdr +{ + char s_name[8]; /* section name */ + char s_paddr[4]; /* physical address, aliased s_nlib */ + char s_vaddr[4]; /* virtual address */ + char s_size[4]; /* section size */ + char s_scnptr[4]; /* file ptr to raw data for section */ + char s_relptr[4]; /* file ptr to relocation */ + char s_lnnoptr[4]; /* file ptr to line numbers */ + char s_nreloc[2]; /* number of relocation entries */ + char s_nlnno[2]; /* number of line number entries */ + char s_flags[4]; /* flags */ +}; + +#define SCNHDR struct external_scnhdr +#define SCNHSZ 40 + +/* Names of "special" sections: */ +#define _TEXT ".text" +#define _DATA ".data" +#define _BSS ".bss" +#define _LIT ".lit" + +/* Section types - with additional section type for global + registers which will be relocatable for the OpenRISC 1000. + + In instances where it is necessary for a linker to produce an + output file which contains text or data not based at virtual + address 0, e.g. for a ROM, then the linker should accept + address base information as command input and use PAD sections + to skip over unused addresses. */ +#define STYP_BSSREG 0x1200 /* Global register area (like STYP_INFO) */ +#define STYP_ENVIR 0x2200 /* Environment (like STYP_INFO) */ +#define STYP_ABS 0x4000 /* Absolute (allocated, not reloc, loaded) */ + +/* Relocation information declaration and related definitions: */ +struct external_reloc +{ + char r_vaddr[4]; /* (virtual) address of reference */ + char r_symndx[4]; /* index into symbol table */ + char r_type[2]; /* relocation type */ +}; + +#define RELOC struct external_reloc +#define RELSZ 10 /* sizeof (RELOC) */ + +/* Relocation types for the OpenRISC 1000: */ + +#define R_ABS 0 /* reference is absolute */ +#define R_IREL 030 /* instruction relative (jmp/call) */ +#define R_IABS 031 /* instruction absolute (jmp/call) */ +#define R_ILOHALF 032 /* instruction low half (const) */ +#define R_IHIHALF 033 /* instruction high half (consth) part 1 */ +#define R_IHCONST 034 /* instruction high half (consth) part 2 */ + /* constant offset of R_IHIHALF relocation */ +#define R_BYTE 035 /* relocatable byte value */ +#define R_HWORD 036 /* relocatable halfword value */ +#define R_WORD 037 /* relocatable word value */ + +#define R_IGLBLRC 040 /* instruction global register RC */ +#define R_IGLBLRA 041 /* instruction global register RA */ +#define R_IGLBLRB 042 /* instruction global register RB */ + +/* + NOTE: + All the "I" forms refer to 29000 instruction formats. The linker is + expected to know how the numeric information is split and/or aligned + within the instruction word(s). R_BYTE works for instructions, too. + + If the parameter to a CONSTH instruction is a relocatable type, two + relocation records are written. The first has an r_type of R_IHIHALF + (33 octal) and a normal r_vaddr and r_symndx. The second relocation + record has an r_type of R_IHCONST (34 octal), a normal r_vaddr (which + is redundant), and an r_symndx containing the 32-bit constant offset + to the relocation instead of the actual symbol table index. This + second record is always written, even if the constant offset is zero. + The constant fields of the instruction are set to zero. */ + +/* Line number entry declaration and related definitions: */ +struct external_lineno +{ + union + { + char l_symndx[4]; /* function name symbol index, iff l_lnno == 0*/ + char l_paddr[4]; /* (physical) address of line number */ + } + l_addr; + + char l_lnno[2]; /* line number */ +}; + +#define LINENO struct external_lineno +#define LINESZ 6 /* sizeof (LINENO) */ + +/* Symbol entry declaration and related definitions: */ +#define E_SYMNMLEN 8 /* Number of characters in a symbol name */ + +struct external_syment +{ + union + { + char e_name[E_SYMNMLEN]; + struct + { + char e_zeroes[4]; + char e_offset[4]; + } + e; + } + e; + + char e_value[4]; + char e_scnum[2]; + char e_type[2]; + char e_sclass[1]; + char e_numaux[1]; +}; + +#define SYMENT struct external_syment +#define SYMESZ 18 + +/* Storage class definitions - new classes for global registers: */ +#define C_GLBLREG 19 /* global register */ +#define C_EXTREG 20 /* external global register */ +#define C_DEFREG 21 /* ext. def. of global register */ + +/* Derived symbol mask/shifts: */ +#define N_BTMASK (0xf) +#define N_BTSHFT (4) +#define N_TMASK (0x30) +#define N_TSHIFT (2) + +/* Auxiliary symbol table entry declaration and related + definitions. */ +#define E_FILNMLEN 14 /* # characters in a file name */ +#define E_DIMNUM 4 /* # array dimensions in auxiliary entry */ + +union external_auxent +{ + struct + { + char x_tagndx[4]; /* str, un, or enum tag indx */ + union + { + struct + { + char x_lnno[2]; /* declaration line number */ + char x_size[2]; /* str/union/array size */ + } + x_lnsz; + + char x_fsize[4]; /* size of function */ + } + x_misc; + + union + { + struct /* if ISFCN, tag, or .bb */ + { + char x_lnnoptr[4]; /* ptr to fcn line # */ + char x_endndx[4]; /* entry ndx past block end */ + } + x_fcn; + + struct /* if ISARY, up to 4 dimen. */ + { + char x_dimen[E_DIMNUM][2]; + } + x_ary; + } + x_fcnary; + + char x_tvndx[2]; /* tv index */ + } + x_sym; + + union + { + char x_fname[E_FILNMLEN]; + + struct + { + char x_zeroes[4]; + char x_offset[4]; + } + x_n; + } + x_file; + + struct + { + char x_scnlen[4]; /* section length */ + char x_nreloc[2]; /* # relocation entries */ + char x_nlinno[2]; /* # line numbers */ + } + x_scn; + + struct + { + char x_tvfill[4]; /* tv fill value */ + char x_tvlen[2]; /* length of .tv */ + char x_tvran[2][2]; /* tv range */ + } + x_tv; /* info about .tv section + (in auxent of symbol .tv)) */ +}; + +#define AUXENT union external_auxent +#define AUXESZ 18 diff --git a/include/dis-asm.h b/include/dis-asm.h index 4e16ed345..8cd848dbd 100644 --- a/include/dis-asm.h +++ b/include/dis-asm.h @@ -1,6 +1,6 @@ /* Interface between the opcode library and its callers. - Copyright 2001 Free Software Foundation, Inc. + Copyright 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -212,6 +212,8 @@ extern int print_insn_mn10200 PARAMS ((bfd_vma, disassemble_info*)); extern int print_insn_mn10300 PARAMS ((bfd_vma, disassemble_info*)); extern int print_insn_ns32k PARAMS ((bfd_vma, disassemble_info*)); extern int print_insn_openrisc PARAMS ((bfd_vma, disassemble_info*)); +extern int print_insn_big_or32 PARAMS ((bfd_vma, disassemble_info*)); +extern int print_insn_little_or32 PARAMS ((bfd_vma, disassemble_info*)); extern int print_insn_pdp11 PARAMS ((bfd_vma, disassemble_info*)); extern int print_insn_pj PARAMS ((bfd_vma, disassemble_info*)); extern int print_insn_big_powerpc PARAMS ((bfd_vma, disassemble_info*)); diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog index a0b4f714a..10c05d856 100644 --- a/include/elf/ChangeLog +++ b/include/elf/ChangeLog @@ -1,7 +1,20 @@ +2002-01-31 Ivan Guzvinec + + * or32.h: New file. + * common.h: Add support for or32 targets. + +2002-01-28 Jason Merrill + + * dwarf2.h: Sync with gcc version. + 2002-01-16 Alan Modra * ppc.h (DT_PPC64_GLINK): Define. +2002-01-15 Richard Earnshaw + + * arm.h (F_VFP_FLOAT, EF_ARM_VFP_FLOAT): Define. + 2002-01-09 Jason Thorpe * common.h: Update copyright years. @@ -24,6 +37,10 @@ unsigned int. * common.h (SHN_BAD): Define. +2001-12-13 Jakub Jelinek + + * elf/common.h (PT_GNU_EH_FRAME): Define. + 2001-12-11 Alan Modra * common.h (SHN_XINDEX): Comment typo fix. @@ -90,7 +107,7 @@ (E_H8_MACH_H8300, E_H8_MACH_H8300H, E_H8_MACH_H8300S): New machine types. -Tue Aug 26 23:32:34 2001 J"orn Rennecke +2001-08-26 J"orn Rennecke * h8.h: New file. @@ -118,6 +135,11 @@ Tue Aug 26 23:32:34 2001 J"orn Rennecke * common.h: Remove definition of EM_MIPS_RS4_BE. The constant was never in active use and is used otherwise by the ABI. +2001-05-11 Jakub Jelinek + + * ia64.h (ELF_STRING_ia64_unwind_once): Define. + (ELF_STRING_ia64_unwind_info_once): Define. + 2001-05-07 Thiemo Seufer * external.h: Fix typo. @@ -390,8 +412,8 @@ Tue Aug 26 23:32:34 2001 J"orn Rennecke (ELFOSABI_MODESTO): Defined. (ELFOSABI_OPENBSD): Likewise. -Fri Apr 21 13:20:53 2000 Richard Henderson - David Mosberger +2000-04-21 Richard Henderson + David Mosberger * ia64.h: New file. @@ -425,7 +447,7 @@ Fri Apr 21 13:20:53 2000 Richard Henderson (PF_ARM_PI): Define. (PF_ARM_ABS): Define. -Wed Apr 5 22:08:59 2000 J"orn Rennecke +2000-04-05 J"orn Rennecke * sh.h (R_SH_LOOP_START, R_SH_LOOP_END): New RELOC_NUMBERs. @@ -454,7 +476,7 @@ Wed Apr 5 22:08:59 2000 J"orn Rennecke * common.h (ELFOSABI_LINUX): Define. -Thu Feb 17 00:18:33 2000 J"orn Rennecke +2000-02-17 J"orn Rennecke * sh.h: (EF_SH_MACH_MASK, EF_SH_UNKNOWN, EF_SH1, EF_SH2): New macros. (EF_SH3, EF_SH_HAS_DSP, EF_SH_DSP, EF_SH3_DSP): Likewise. diff --git a/include/elf/common.h b/include/elf/common.h index 289d3f2ad..d6e45fcc5 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -199,6 +199,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Old version of PowerPC, this should be removed shortly. */ #define EM_PPC_OLD 17 +/* (Depreciated) Temporary number for the OpenRISC processor. */ +#define EM_OR32 0x8472 + /* Cygnus M32R ELF backend. Written in the absence of an ABI. */ #define EM_CYGNUS_M32R 0x9041 diff --git a/include/elf/or32.h b/include/elf/or32.h new file mode 100644 index 000000000..14884f330 --- /dev/null +++ b/include/elf/or32.h @@ -0,0 +1,62 @@ +/* OR1K ELF support for BFD. Derived from ppc.h. + Copyright (C) 2002 Free Software Foundation, Inc. + Contributed by Ivan Guzvinec + + This file is part of BFD, the Binary File Descriptor library. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + +#ifndef _ELF_OR1K_H +#define _ELF_OR1K_H + +#include "elf/reloc-macros.h" + +/* Relocations. */ +START_RELOC_NUMBERS (elf_or32_reloc_type) + RELOC_NUMBER (R_OR32_NONE, 0) + RELOC_NUMBER (R_OR32_32, 1) + RELOC_NUMBER (R_OR32_16, 2) + RELOC_NUMBER (R_OR32_8, 3) + RELOC_NUMBER (R_OR32_CONST, 4) + RELOC_NUMBER (R_OR32_CONSTH, 5) + RELOC_NUMBER (R_OR32_JUMPTARG, 6) + RELOC_NUMBER (R_OR32_GNU_VTENTRY, 7) + RELOC_NUMBER (R_OR32_GNU_VTINHERIT, 8) +END_RELOC_NUMBERS (R_OR32_max) + +/* Four bit OR32 machine type field. */ +#define EF_OR32_MACH 0x0000000f + +/* Various CPU types. */ +#define E_OR32_MACH_BASE 0x00000000 +#define E_OR32_MACH_UNUSED1 0x00000001 +#define E_OR32_MACH_UNUSED2 0x00000002 +#define E_OR32_MACH_UNUSED4 0x00000003 + +/* Processor specific section headers, sh_type field */ +#define SHT_ORDERED SHT_HIPROC /* Link editor is to sort the \ + entries in this section \ + based on the address \ + specified in the associated \ + symbol table entry. */ + +/* Processor specific section flags, sh_flags field */ +#define SHF_EXCLUDE 0x80000000 /* Link editor is to exclude \ + this section from executable \ + and shared objects that it \ + builds when those objects \ + are not to be furhter \ + relocated. */ +#endif /* _ELF_OR1K_H */ diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index dcde56b56..3c367d3c8 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,7 @@ +2002-01-31 Ivan Guzvinec + + * or32.h: New file. + 2002-01-22 Graydon Hoare * cgen.h (CGEN_MAYBE_MULTI_IFLD): New structure. @@ -118,11 +122,26 @@ Mon Dec 31 16:45:41 2001 Jeffrey A Law (law@cygnus.com) * ppc.h: Revert 2001-08-08. +2001-08-10 Richard Sandiford + + * mips.h (INSN_GP32): Remove. + (OPCODE_IS_MEMBER): Remove gp32 parameter. + (M_MOVE): New macro identifier. + 2001-08-08 Alan Modra 1999-10-25 Torbjorn Granlund * ppc.h (struct powerpc_operand): New field `reloc'. +2001-08-01 Aldy Hernandez + + * mips.h (INSN_ISA_MASK): Nuke bits 12-15. + +2001-07-12 Jeff Johnston + + * cgen.h (CGEN_INSN): Add regex support. + (build_insn_regex): Declare. + 2001-07-11 Frank Ch. Eigler * cgen.h (CGEN_MACH): Add insn_chunk_bitsize field. diff --git a/include/opcode/or32.h b/include/opcode/or32.h new file mode 100644 index 000000000..05c532667 --- /dev/null +++ b/include/opcode/or32.h @@ -0,0 +1,188 @@ +/* Table of opcodes for the OpenRISC 1000 ISA. + Copyright 2002 Free Software Foundation, Inc. + Contributed by Damjan Lampret (lampret@opencores.org). + + This file is part of or1k_gen_isa, or1ksim, GDB and GAS. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + +/* We treat all letters the same in encode/decode routines so + we need to assign some characteristics to them like signess etc. */ + +#ifndef OR32_H_ISA +#define OR32_H_ISA + +#define NUM_UNSIGNED (0) +#define NUM_SIGNED (1) + +#ifndef PARAMS +#define PARAMS(x) x +#endif + +#ifndef CONST +#define CONST const +#endif + +#define MAX_GPRS 32 +#define PAGE_SIZE 4096 +#undef __HALF_WORD_INSN__ + +#define OPERAND_DELIM (',') + +#define OR32_IF_DELAY (1) +#define OR32_W_FLAG (2) +#define OR32_R_FLAG (4) + +struct or32_letter +{ + char letter; + int sign; + /* int reloc; relocation per letter ?? */ +}; + +/* Main instruction specification array. */ +struct or32_opcode +{ + /* Name of the instruction. */ + char *name; + + /* A string of characters which describe the operands. + Valid characters are: + ,() Itself. Characters appears in the assembly code. + rA Register operand. + rB Register operand. + rD Register operand. + I An immediate operand, range -32768 to 32767. + J An immediate operand, range . (unused) + K An immediate operand, range 0 to 65535. + L An immediate operand, range 0 to 63. + M An immediate operand, range . (unused) + N An immediate operand, range -33554432 to 33554431. + O An immediate operand, range . (unused). */ + char *args; + + /* Opcode and operand encoding. */ + char *encoding; + void (*exec) PARAMS ((void)); + unsigned int flags; +}; + +#define OPTYPE_LAST (0x80000000) +#define OPTYPE_OP (0x40000000) +#define OPTYPE_REG (0x20000000) +#define OPTYPE_SIG (0x10000000) +#define OPTYPE_DIS (0x08000000) +#define OPTYPE_DST (0x04000000) +#define OPTYPE_SBIT (0x00001F00) +#define OPTYPE_SHR (0x0000001F) +#define OPTYPE_SBIT_SHR (8) + +/* MM: Data how to decode operands. */ +extern struct insn_op_struct +{ + unsigned long type; + unsigned long data; +} **op_start; + +#ifdef HAS_EXECUTION +extern void l_invalid PARAMS ((void)); +extern void l_sfne PARAMS ((void)); +extern void l_bf PARAMS ((void)); +extern void l_add PARAMS ((void)); +extern void l_sw PARAMS ((void)); +extern void l_sb PARAMS ((void)); +extern void l_sh PARAMS ((void)); +extern void l_lwz PARAMS ((void)); +extern void l_lbs PARAMS ((void)); +extern void l_lbz PARAMS ((void)); +extern void l_lhs PARAMS ((void)); +extern void l_lhz PARAMS ((void)); +extern void l_movhi PARAMS ((void)); +extern void l_and PARAMS ((void)); +extern void l_or PARAMS ((void)); +extern void l_xor PARAMS ((void)); +extern void l_sub PARAMS ((void)); +extern void l_mul PARAMS ((void)); +extern void l_div PARAMS ((void)); +extern void l_divu PARAMS ((void)); +extern void l_sll PARAMS ((void)); +extern void l_sra PARAMS ((void)); +extern void l_srl PARAMS ((void)); +extern void l_j PARAMS ((void)); +extern void l_jal PARAMS ((void)); +extern void l_jalr PARAMS ((void)); +extern void l_jr PARAMS ((void)); +extern void l_rfe PARAMS ((void)); +extern void l_nop PARAMS ((void)); +extern void l_bnf PARAMS ((void)); +extern void l_sfeq PARAMS ((void)); +extern void l_sfgts PARAMS ((void)); +extern void l_sfges PARAMS ((void)); +extern void l_sflts PARAMS ((void)); +extern void l_sfles PARAMS ((void)); +extern void l_sfgtu PARAMS ((void)); +extern void l_sfgeu PARAMS ((void)); +extern void l_sfltu PARAMS ((void)); +extern void l_sfleu PARAMS ((void)); +extern void l_mtspr PARAMS ((void)); +extern void l_mfspr PARAMS ((void)); +extern void l_sys PARAMS ((void)); +extern void l_trap PARAMS ((void)); /* CZ 21/06/01. */ +extern void l_macrc PARAMS ((void)); +extern void l_mac PARAMS ((void)); +extern void l_msb PARAMS ((void)); +extern void l_invalid PARAMS ((void)); +extern void l_cust1 PARAMS ((void)); +extern void l_cust2 PARAMS ((void)); +extern void l_cust3 PARAMS ((void)); +extern void l_cust4 PARAMS ((void)); +#endif +extern void l_none PARAMS ((void)); + +extern const struct or32_letter or32_letters[]; + +extern const struct or32_opcode or32_opcodes[]; + +extern const unsigned int or32_num_opcodes; + +/* Calculates instruction length in bytes. Always 4 for OR32. */ +extern int insn_len PARAMS ((int)); + +/* Is individual insn's operand signed or unsigned? */ +extern int letter_signed PARAMS ((char)); + +/* Number of letters in the individual lettered operand. */ +extern int letter_range PARAMS ((char)); + +/* MM: Returns index of given instruction name. */ +extern int insn_index PARAMS ((char *)); + +/* MM: Returns instruction name from index. */ +extern const char *insn_name PARAMS ((int)); + +/* MM: Constructs new FSM, based on or32_opcodes. */ +extern void build_automata PARAMS ((void)); + +/* MM: Destructs FSM. */ +extern void destruct_automata PARAMS ((void)); + +/* MM: Decodes instruction using FSM. Call build_automata first. */ +extern int insn_decode PARAMS ((unsigned int)); + +/* Disassemble one instruction from insn to disassemble. + Return the size of the instruction. */ +int disassemble_insn PARAMS ((unsigned long)); + +#endif diff --git a/ld/ChangeLog b/ld/ChangeLog index 0f4be932c..5b3eb4829 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,15 @@ +2002-01-31 Ivan Guzvinec + + * emulparams/or32.sh: New file. + * emulparams/or32elf.sh: New file. + * scripttempl/or32.sc: New file. + * configure.tgt : Add support for or32. + * configure: Regenerate + * Makefile.am: Add support for or32. + * Makefile.in: Regenerate. + * NEWS: Mention support for or32. + * po/ld.pot: Regenerate. + 2002-01-29 Chris Demetriou Mitch Lichtenberg @@ -479,7 +491,7 @@ * emultempl/elf32.em (gld${EMULATION_NAME}_finish): New. (struct ld_emulation_xfer_struct): Use it. -Tue Nov 13 11:27:14 2001 Ross Alexander +2001-11-13 Ross Alexander * emulparams/elf64hppa.sh (OTHER_BSS_END_SYMBOLS): Add additional symbols referenced by newer crt0.o files from HP. @@ -832,7 +844,7 @@ Tue Nov 13 11:27:14 2001 Ross Alexander * scripttempl/v850.sc: Add gcc_except_table sections. -Fri Sep 7 11:34:24 2001 Jeffrey A Law (law@cygnus.com) +2001-09-11 Jeffrey A Law (law@cygnus.com) * emulparams/h8300helf.sh: Move stack to a much higher memory address. * emulparams/h8300self.sh: Similarly. @@ -888,7 +900,7 @@ Fri Sep 7 11:34:24 2001 Jeffrey A Law (law@cygnus.com) ARCH specification. * emulparams/h8300self.sh: Similarly. -Wed Aug 28 13:37:20 2001 J"orn Rennecke +2001-08-28 J"orn Rennecke * Makefile.am (ALL_EMULATIONS): Add eh8300elf.o, eh8300elf.o and eh8300self.o . @@ -1989,7 +2001,7 @@ Wed Aug 28 13:37:20 2001 J"orn Rennecke * emulparams/elf32ppcsim.sh (OTHER_READWRITE_SECTIONS): Likewise. * emulparams/elf32lppcsim.sh (OTHER_READWRITE_SECTIONS): Likewise. -Mon Dec 11 14:50:33 MET 2000 Jan Hubicka +2000-12-11 Jan Hubicka * NEWS: Add note about x86_64 architecture. @@ -2058,7 +2070,7 @@ Mon Dec 11 14:50:33 MET 2000 Jan Hubicka * scripttempl/h8300h.sc: Likewise. * scripttempl/h8300s.sc: Likewise. -Tue Nov 14 00:59:19 2000 Denis Chertykov +2000-11-14 Denis Chertykov * scripttempl/elf32avr.sc: Fix bug in .eeprom segment. @@ -3017,7 +3029,7 @@ Tue Nov 14 00:59:19 2000 Denis Chertykov * lexsup.c (parse_args): `i' == `r', not `q'. -Thu May 18 10:47:57 2000 Jeffrey A Law (law@cygnus.com) +2000-05-18 Jeffrey A Law (law@cygnus.com) * configure.tgt (hppa*64*-*-*): Enable PA64 target. @@ -3058,7 +3070,7 @@ Thu May 18 10:47:57 2000 Jeffrey A Law (law@cygnus.com) * lexsup.c (set_section_start): Use bfd_scan_vma rather than strtoul. -Mon May 1 17:34:34 2000 Jim Wilson +2000-05-01 Jim Wilson * configure.host (ia64-*-linux-gnu*): Change gcc to ${CC}. @@ -3069,7 +3081,7 @@ Mon May 1 17:34:34 2000 Jim Wilson * ld.h: Correctly check GCC version. -Tue Apr 25 11:20:43 2000 Jeffrey A Law (law@cygnus.com) +2000-04-25 Jeffrey A Law (law@cygnus.com) * Makefile.am: Add PA64 support. Add missing dependencies for PA32 elf support. @@ -3108,8 +3120,8 @@ Tue Apr 25 11:20:43 2000 Jeffrey A Law (law@cygnus.com) * configure.tgt: Add NetBSD/sparc ELF, and NetBSD/sparc64 support. -Fri Apr 21 13:20:53 2000 Richard Henderson - David Mosberger +2000-04-21 Richard Henderson + David Mosberger * Makefile.am (ALL_64_EMULATIONS): Add eelf64_ia64.o. (eelf64_ia64.c): New rule. @@ -3188,7 +3200,7 @@ Fri Apr 21 13:20:53 2000 Richard Henderson * ld.texinfo (Simple Example): Remove extraneous paragraph. -Fri Apr 7 15:56:57 2000 Andrew Cagney +2000-04-07 Andrew Cagney * configure.in (WARN_CFLAGS): Set to -W -Wall by default. Add --enable-build-warnings option. @@ -3457,7 +3469,7 @@ Fri Apr 7 15:56:57 2000 Andrew Cagney being invoked by a comnpiler driver program. Fix description of the behaviour of the -n command line switch. -Wed Jan 5 08:02:12 2000 Catherine Moore +2000-01-05 Catherine Moore * ld.h (wildcard_spec): Change exclude_name to exclude_name_list. (name_list): New. diff --git a/ld/Makefile.am b/ld/Makefile.am index 7c28d65aa..7ba7d062b 100644 --- a/ld/Makefile.am +++ b/ld/Makefile.am @@ -224,6 +224,8 @@ ALL_EMULATIONS = \ emipspe.o \ enews.o \ ens32knbsd.o \ + eor32.o \ + eor32elf.o \ epc532macha.o \ epdp11.o \ epjelf.o \ @@ -793,6 +795,12 @@ enews.c: $(srcdir)/emulparams/news.sh \ ens32knbsd.c: $(srcdir)/emulparams/ns32knbsd.sh \ $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} ${GENSCRIPTS} ns32knbsd "$(tdir_ns32knbsd)" +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)" epc532macha.c: $(srcdir)/emulparams/pc532macha.sh \ $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} ${GENSCRIPTS} pc532macha "$(tdir_pc532macha)" diff --git a/ld/Makefile.in b/ld/Makefile.in index cc1cb467f..c4d35ac68 100644 --- a/ld/Makefile.in +++ b/ld/Makefile.in @@ -1,6 +1,6 @@ -# Makefile.in generated automatically by automake 1.4 from Makefile.am +# Makefile.in generated automatically by automake 1.4-p5 from Makefile.am -# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc. +# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -333,6 +333,8 @@ ALL_EMULATIONS = \ emipspe.o \ enews.o \ ens32knbsd.o \ + eor32.o \ + eor32elf.o \ epc532macha.o \ epdp11.o \ epjelf.o \ @@ -493,7 +495,7 @@ deffilep.c ldgram.c ldlex.c DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) -TAR = tar +TAR = gtar GZIP_ENV = --best SOURCES = $(ld_new_SOURCES) $(EXTRA_ld_new_SOURCES) OBJECTS = $(ld_new_OBJECTS) @@ -681,7 +683,7 @@ uninstall-info: else ii=; fi; \ list='$(INFO_DEPS)'; \ for file in $$list; do \ - test -z "$ii" \ + test -z "$$ii" \ || install-info --info-dir=$(DESTDIR)$(infodir) --remove $$file; \ done @$(NORMAL_UNINSTALL) @@ -794,7 +796,7 @@ maintainer-clean-recursive: dot_seen=no; \ rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \ rev="$$subdir $$rev"; \ - test "$$subdir" = "." && dot_seen=yes; \ + test "$$subdir" != "." || dot_seen=yes; \ done; \ test "$$dot_seen" = "no" && rev=". $$rev"; \ target=`echo $@ | sed s/-recursive//`; \ @@ -1514,6 +1516,12 @@ enews.c: $(srcdir)/emulparams/news.sh \ ens32knbsd.c: $(srcdir)/emulparams/ns32knbsd.sh \ $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} ${GENSCRIPTS} ns32knbsd "$(tdir_ns32knbsd)" +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)" epc532macha.c: $(srcdir)/emulparams/pc532macha.sh \ $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} ${GENSCRIPTS} pc532macha "$(tdir_pc532macha)" diff --git a/ld/NEWS b/ld/NEWS index 70997ef23..f5e96845b 100644 --- a/ld/NEWS +++ b/ld/NEWS @@ -1,4 +1,6 @@ -*- text -*- +* Support for the OpenRISC 32-bit embedded processor by OpenCores. + * Support for -z nocopyreloc in the x86 ELF linker, which disables production of copy relocs. Warning: using this option may result in non-sharable applications. diff --git a/ld/configure b/ld/configure index a01bb7be4..c69c7b0fe 100755 --- a/ld/configure +++ b/ld/configure @@ -3145,7 +3145,7 @@ EOF fi -for ac_hdr in unistd.h +for ac_hdr in stdlib.h unistd.h sys/stat.h sys/types.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 @@ -3277,11 +3277,24 @@ else #include #include +#if HAVE_SYS_TYPES_H +# include +#endif + +#if HAVE_STDLIB_H +# include +#endif + +#if HAVE_SYS_STAT_H +# include +#endif + +#if HAVE_UNISTD_H +# include +#endif + /* This mess was copied from the GNU getpagesize.h. */ #ifndef HAVE_GETPAGESIZE -# ifdef HAVE_UNISTD_H -# include -# endif /* Assume that all systems that can run configure have sys/param.h. */ # ifndef HAVE_SYS_PARAM_H @@ -3389,7 +3402,7 @@ main() } EOF -if { (eval echo configure:3393: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3406: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_func_mmap_fixed_mapped=yes else @@ -3417,17 +3430,17 @@ unistd.h values.h sys/param.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:3421: checking for $ac_hdr" >&5 +echo "configure:3434: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:3431: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3444: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -3457,12 +3470,12 @@ done __argz_count __argz_stringify __argz_next do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:3461: checking for $ac_func" >&5 +echo "configure:3474: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3502: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -3514,12 +3527,12 @@ done for ac_func in stpcpy do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:3518: checking for $ac_func" >&5 +echo "configure:3531: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3559: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -3576,19 +3589,19 @@ EOF if test $ac_cv_header_locale_h = yes; then echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6 -echo "configure:3580: checking for LC_MESSAGES" >&5 +echo "configure:3593: checking for LC_MESSAGES" >&5 if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { return LC_MESSAGES ; return 0; } EOF -if { (eval echo configure:3592: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3605: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* am_cv_val_LC_MESSAGES=yes else @@ -3609,7 +3622,7 @@ EOF fi fi echo $ac_n "checking whether NLS is requested""... $ac_c" 1>&6 -echo "configure:3613: checking whether NLS is requested" >&5 +echo "configure:3626: checking whether NLS is requested" >&5 # Check whether --enable-nls or --disable-nls was given. if test "${enable_nls+set}" = set; then enableval="$enable_nls" @@ -3629,7 +3642,7 @@ fi EOF echo $ac_n "checking whether included gettext is requested""... $ac_c" 1>&6 -echo "configure:3633: checking whether included gettext is requested" >&5 +echo "configure:3646: checking whether included gettext is requested" >&5 # Check whether --with-included-gettext or --without-included-gettext was given. if test "${with_included_gettext+set}" = set; then withval="$with_included_gettext" @@ -3648,17 +3661,17 @@ fi ac_safe=`echo "libintl.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for libintl.h""... $ac_c" 1>&6 -echo "configure:3652: checking for libintl.h" >&5 +echo "configure:3665: checking for libintl.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:3662: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3675: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -3675,19 +3688,19 @@ fi if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for gettext in libc""... $ac_c" 1>&6 -echo "configure:3679: checking for gettext in libc" >&5 +echo "configure:3692: checking for gettext in libc" >&5 if eval "test \"`echo '$''{'gt_cv_func_gettext_libc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { return (int) gettext ("") ; return 0; } EOF -if { (eval echo configure:3691: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3704: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* gt_cv_func_gettext_libc=yes else @@ -3703,7 +3716,7 @@ echo "$ac_t""$gt_cv_func_gettext_libc" 1>&6 if test "$gt_cv_func_gettext_libc" != "yes"; then echo $ac_n "checking for bindtextdomain in -lintl""... $ac_c" 1>&6 -echo "configure:3707: checking for bindtextdomain in -lintl" >&5 +echo "configure:3720: checking for bindtextdomain in -lintl" >&5 ac_lib_var=`echo intl'_'bindtextdomain | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -3711,7 +3724,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lintl $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3739: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -3738,19 +3751,19 @@ fi if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for gettext in libintl""... $ac_c" 1>&6 -echo "configure:3742: checking for gettext in libintl" >&5 +echo "configure:3755: checking for gettext in libintl" >&5 if eval "test \"`echo '$''{'gt_cv_func_gettext_libintl'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3767: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* gt_cv_func_gettext_libintl=yes else @@ -3778,7 +3791,7 @@ EOF # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3782: checking for $ac_word" >&5 +echo "configure:3795: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3812,12 +3825,12 @@ fi for ac_func in dcgettext do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:3816: checking for $ac_func" >&5 +echo "configure:3829: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3857: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -3867,7 +3880,7 @@ done # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3871: checking for $ac_word" >&5 +echo "configure:3884: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3903,7 +3916,7 @@ fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3907: checking for $ac_word" >&5 +echo "configure:3920: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3935,7 +3948,7 @@ else fi cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3960: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* CATOBJEXT=.gmo DATADIRNAME=share @@ -3975,7 +3988,7 @@ fi # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3979: checking for $ac_word" >&5 +echo "configure:3992: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4009,7 +4022,7 @@ fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4013: checking for $ac_word" >&5 +echo "configure:4026: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4045,7 +4058,7 @@ fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4049: checking for $ac_word" >&5 +echo "configure:4062: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4135,7 +4148,7 @@ fi LINGUAS= else echo $ac_n "checking for catalogs to be installed""... $ac_c" 1>&6 -echo "configure:4139: checking for catalogs to be installed" >&5 +echo "configure:4152: checking for catalogs to be installed" >&5 NEW_LINGUAS= for lang in ${LINGUAS=$ALL_LINGUAS}; do case "$ALL_LINGUAS" in @@ -4163,17 +4176,17 @@ echo "configure:4139: checking for catalogs to be installed" >&5 if test "$CATOBJEXT" = ".cat"; then ac_safe=`echo "linux/version.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for linux/version.h""... $ac_c" 1>&6 -echo "configure:4167: checking for linux/version.h" >&5 +echo "configure:4180: checking for linux/version.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4177: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4190: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -4238,7 +4251,7 @@ fi echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 -echo "configure:4242: checking for executable suffix" >&5 +echo "configure:4255: checking for executable suffix" >&5 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4248,7 +4261,7 @@ else rm -f conftest* echo 'int main () { return 0; }' > conftest.$ac_ext ac_cv_exeext= - if { (eval echo configure:4252: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then + if { (eval echo configure:4265: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then for file in conftest.*; do case $file in *.c | *.o | *.obj) ;; @@ -4274,7 +4287,7 @@ do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4278: checking for $ac_word" >&5 +echo "configure:4291: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_YACC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4310,7 +4323,7 @@ do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4314: checking for $ac_word" >&5 +echo "configure:4327: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_LEX'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4343,7 +4356,7 @@ test -n "$LEX" || LEX=""$missing_dir/missing flex"" # Extract the first word of "flex", so it can be a program name with args. set dummy flex; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4347: checking for $ac_word" >&5 +echo "configure:4360: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_LEX'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4377,7 +4390,7 @@ then *) ac_lib=l ;; esac echo $ac_n "checking for yywrap in -l$ac_lib""... $ac_c" 1>&6 -echo "configure:4381: checking for yywrap in -l$ac_lib" >&5 +echo "configure:4394: checking for yywrap in -l$ac_lib" >&5 ac_lib_var=`echo $ac_lib'_'yywrap | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4385,7 +4398,7 @@ else ac_save_LIBS="$LIBS" LIBS="-l$ac_lib $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4413: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -4419,7 +4432,7 @@ fi fi echo $ac_n "checking lex output file root""... $ac_c" 1>&6 -echo "configure:4423: checking lex output file root" >&5 +echo "configure:4436: checking lex output file root" >&5 if eval "test \"`echo '$''{'ac_cv_prog_lex_root'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4440,7 +4453,7 @@ echo "$ac_t""$ac_cv_prog_lex_root" 1>&6 LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root echo $ac_n "checking whether yytext is a pointer""... $ac_c" 1>&6 -echo "configure:4444: checking whether yytext is a pointer" >&5 +echo "configure:4457: checking whether yytext is a pointer" >&5 if eval "test \"`echo '$''{'ac_cv_prog_lex_yytext_pointer'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4452,14 +4465,14 @@ echo 'extern char *yytext;' >>$LEX_OUTPUT_ROOT.c ac_save_LIBS="$LIBS" LIBS="$LIBS $LEXLIB" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4476: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_prog_lex_yytext_pointer=yes else @@ -4482,7 +4495,7 @@ fi echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 -echo "configure:4486: checking whether to enable maintainer-specific portions of Makefiles" >&5 +echo "configure:4499: checking whether to enable maintainer-specific portions of Makefiles" >&5 # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given. if test "${enable_maintainer_mode+set}" = set; then enableval="$enable_maintainer_mode" @@ -4516,17 +4529,17 @@ for ac_hdr in string.h strings.h stdlib.h unistd.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:4520: checking for $ac_hdr" >&5 +echo "configure:4533: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4530: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4543: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -4555,12 +4568,12 @@ done for ac_func in sbrk do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:4559: checking for $ac_func" >&5 +echo "configure:4572: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4600: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -4612,12 +4625,12 @@ for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr that defines DIR""... $ac_c" 1>&6 -echo "configure:4616: checking for $ac_hdr that defines DIR" >&5 +echo "configure:4629: checking for $ac_hdr that defines DIR" >&5 if eval "test \"`echo '$''{'ac_cv_header_dirent_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include <$ac_hdr> @@ -4625,7 +4638,7 @@ int main() { DIR *dirp = 0; ; return 0; } EOF -if { (eval echo configure:4629: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4642: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_header_dirent_$ac_safe=yes" else @@ -4650,7 +4663,7 @@ done # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix. if test $ac_header_dirent = dirent.h; then echo $ac_n "checking for opendir in -ldir""... $ac_c" 1>&6 -echo "configure:4654: checking for opendir in -ldir" >&5 +echo "configure:4667: checking for opendir in -ldir" >&5 ac_lib_var=`echo dir'_'opendir | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4658,7 +4671,7 @@ else ac_save_LIBS="$LIBS" LIBS="-ldir $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4686: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -4691,7 +4704,7 @@ fi else echo $ac_n "checking for opendir in -lx""... $ac_c" 1>&6 -echo "configure:4695: checking for opendir in -lx" >&5 +echo "configure:4708: checking for opendir in -lx" >&5 ac_lib_var=`echo x'_'opendir | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4699,7 +4712,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lx $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4727: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -4743,12 +4756,12 @@ EOF esac echo $ac_n "checking whether strstr must be declared""... $ac_c" 1>&6 -echo "configure:4747: checking whether strstr must be declared" >&5 +echo "configure:4760: checking whether strstr must be declared" >&5 if eval "test \"`echo '$''{'bfd_cv_decl_needed_strstr'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -4769,7 +4782,7 @@ int main() { char *(*pfn) = (char *(*)) strstr ; return 0; } EOF -if { (eval echo configure:4773: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4786: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_decl_needed_strstr=no else @@ -4790,12 +4803,12 @@ EOF fi echo $ac_n "checking whether free must be declared""... $ac_c" 1>&6 -echo "configure:4794: checking whether free must be declared" >&5 +echo "configure:4807: checking whether free must be declared" >&5 if eval "test \"`echo '$''{'bfd_cv_decl_needed_free'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -4816,7 +4829,7 @@ int main() { char *(*pfn) = (char *(*)) free ; return 0; } EOF -if { (eval echo configure:4820: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4833: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_decl_needed_free=no else @@ -4837,12 +4850,12 @@ EOF fi echo $ac_n "checking whether sbrk must be declared""... $ac_c" 1>&6 -echo "configure:4841: checking whether sbrk must be declared" >&5 +echo "configure:4854: checking whether sbrk must be declared" >&5 if eval "test \"`echo '$''{'bfd_cv_decl_needed_sbrk'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -4863,7 +4876,7 @@ int main() { char *(*pfn) = (char *(*)) sbrk ; return 0; } EOF -if { (eval echo configure:4867: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4880: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_decl_needed_sbrk=no else @@ -4884,12 +4897,12 @@ EOF fi echo $ac_n "checking whether getenv must be declared""... $ac_c" 1>&6 -echo "configure:4888: checking whether getenv must be declared" >&5 +echo "configure:4901: checking whether getenv must be declared" >&5 if eval "test \"`echo '$''{'bfd_cv_decl_needed_getenv'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -4910,7 +4923,7 @@ int main() { char *(*pfn) = (char *(*)) getenv ; return 0; } EOF -if { (eval echo configure:4914: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4927: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_decl_needed_getenv=no else @@ -4931,12 +4944,12 @@ EOF fi echo $ac_n "checking whether environ must be declared""... $ac_c" 1>&6 -echo "configure:4935: checking whether environ must be declared" >&5 +echo "configure:4948: checking whether environ must be declared" >&5 if eval "test \"`echo '$''{'bfd_cv_decl_needed_environ'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -4957,7 +4970,7 @@ int main() { char *(*pfn) = (char *(*)) environ ; return 0; } EOF -if { (eval echo configure:4961: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4974: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* bfd_cv_decl_needed_environ=no else @@ -4985,19 +4998,19 @@ fi # constants, while still supporting pre-ANSI compilers which do not # support string concatenation. echo $ac_n "checking whether ANSI C string concatenation works""... $ac_c" 1>&6 -echo "configure:4989: checking whether ANSI C string concatenation works" >&5 +echo "configure:5002: checking whether ANSI C string concatenation works" >&5 if eval "test \"`echo '$''{'ld_cv_string_concatenation'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5014: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ld_cv_string_concatenation=yes else diff --git a/ld/configure.tgt b/ld/configure.tgt index deca3232e..e41bb1128 100644 --- a/ld/configure.tgt +++ b/ld/configure.tgt @@ -368,6 +368,8 @@ z8k-*-coff) targ_emul=z8002; targ_extra_emuls=z8001 ;; ns32k-pc532-mach* | ns32k-pc532-ux*) targ_emul=pc532macha ;; ns32k-pc532-netbsd* | ns32k-pc532-lites*) targ_emul=ns32knbsd ;; openrisc-*-*) targ_emul=elf32openrisc ;; +or32-*-coff) targ_emul=or32 ;; +or32-*-elf) targ_emul=or32elf ;; pdp11-*-*) targ_emul=pdp11 ;; pjl*-*-*) targ_emul=pjlelf ; targ_extra_emuls="elf_i386" ;; pj*-*-*) targ_emul=pjelf ;; diff --git a/ld/emulparams/or32.sh b/ld/emulparams/or32.sh new file mode 100644 index 000000000..0717eb7e0 --- /dev/null +++ b/ld/emulparams/or32.sh @@ -0,0 +1,6 @@ +SCRIPT_NAME=or32 +OUTPUT_FORMAT="coff-or32-big" +# OUTPUT_FORMAT="elf32-or32" +TEXT_START_ADDR=0x1000000 +TARGET_PAGE_SIZE=0x1000000 +ARCH=or32 diff --git a/ld/emulparams/or32elf.sh b/ld/emulparams/or32elf.sh new file mode 100644 index 000000000..04d163038 --- /dev/null +++ b/ld/emulparams/or32elf.sh @@ -0,0 +1,6 @@ +SCRIPT_NAME=elf +OUTPUT_FORMAT="elf32-or32" +TEXT_START_ADDR=0x1000000 +TARGET_PAGE_SIZE=0x1000000 +MAXPAGESIZE=0x1000 +ARCH=or32 diff --git a/ld/po/ld.pot b/ld/po/ld.pot index bff203ff0..e9daf04fa 100644 --- a/ld/po/ld.pot +++ b/ld/po/ld.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2002-01-17 13:58+0000\n" +"POT-Creation-Date: 2002-01-31 17:09+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -272,7 +272,7 @@ msgid "Errors encountered processing file %s for interworking" msgstr "" #: emultempl/pe.em:1297 ldlang.c:2050 ldlang.c:4441 ldlang.c:4474 -#: ldmain.c:1067 +#: ldmain.c:1069 msgid "%P%F: bfd_link_hash_lookup failed: %E\n" msgstr "" @@ -311,11 +311,11 @@ msgstr "" msgid "%B%F: could not read symbols; %E\n" msgstr "" -#: ldcref.c:469 ldmain.c:1133 ldmain.c:1137 +#: ldcref.c:469 ldmain.c:1135 ldmain.c:1139 msgid "%B%F: could not read symbols: %E\n" msgstr "" -#: ldcref.c:537 ldcref.c:544 ldmain.c:1183 ldmain.c:1190 +#: ldcref.c:537 ldcref.c:544 ldmain.c:1185 ldmain.c:1192 msgid "%B%F: could not read relocs: %E\n" msgstr "" @@ -755,222 +755,225 @@ msgstr "" msgid "%P%F: -f may not be used without -shared\n" msgstr "" -#: ldmain.c:334 -#, c-format -msgid "using %s linker script:\n" +#: ldmain.c:335 +msgid "using external linker script:" +msgstr "" + +#: ldmain.c:337 +msgid "using internal linker script:" msgstr "" -#: ldmain.c:369 +#: ldmain.c:371 msgid "%P%F: no input files\n" msgstr "" -#: ldmain.c:374 +#: ldmain.c:376 msgid "%P: mode %s\n" msgstr "" -#: ldmain.c:391 +#: ldmain.c:393 msgid "%P%F: cannot open map file %s: %E\n" msgstr "" -#: ldmain.c:438 +#: ldmain.c:440 msgid "%P: link errors found, deleting executable `%s'\n" msgstr "" -#: ldmain.c:449 +#: ldmain.c:451 msgid "%F%B: final close failed: %E\n" msgstr "" -#: ldmain.c:473 +#: ldmain.c:475 msgid "%X%P: unable to open for source of copy `%s'\n" msgstr "" -#: ldmain.c:475 +#: ldmain.c:477 msgid "%X%P: unable to open for destination of copy `%s'\n" msgstr "" -#: ldmain.c:481 +#: ldmain.c:483 msgid "%P: Error writing file `%s'\n" msgstr "" -#: ldmain.c:487 pe-dll.c:1442 +#: ldmain.c:489 pe-dll.c:1442 #, c-format msgid "%P: Error closing file `%s'\n" msgstr "" -#: ldmain.c:504 +#: ldmain.c:506 #, c-format msgid "%s: total time in link: %ld.%06ld\n" msgstr "" -#: ldmain.c:507 +#: ldmain.c:509 #, c-format msgid "%s: data size %ld\n" msgstr "" -#: ldmain.c:548 +#: ldmain.c:550 msgid "%P%F: missing argument to -m\n" msgstr "" -#: ldmain.c:676 ldmain.c:697 ldmain.c:728 +#: ldmain.c:678 ldmain.c:699 ldmain.c:730 msgid "%P%F: bfd_hash_table_init failed: %E\n" msgstr "" -#: ldmain.c:681 ldmain.c:700 +#: ldmain.c:683 ldmain.c:702 msgid "%P%F: bfd_hash_lookup failed: %E\n" msgstr "" -#: ldmain.c:715 +#: ldmain.c:717 msgid "%X%P: error: duplicate retain-symbols-file\n" msgstr "" -#: ldmain.c:759 +#: ldmain.c:761 msgid "%P%F: bfd_hash_lookup for insertion failed: %E\n" msgstr "" -#: ldmain.c:764 +#: ldmain.c:766 msgid "%P: `-retain-symbols-file' overrides `-s' and `-S'\n" msgstr "" -#: ldmain.c:840 +#: ldmain.c:842 msgid "" "Archive member included because of file (symbol)\n" "\n" msgstr "" -#: ldmain.c:911 +#: ldmain.c:913 msgid "%X%C: multiple definition of `%T'\n" msgstr "" -#: ldmain.c:914 +#: ldmain.c:916 msgid "%D: first defined here\n" msgstr "" -#: ldmain.c:918 +#: ldmain.c:920 msgid "%P: Disabling relaxation: it will not work with multiple definitions\n" msgstr "" -#: ldmain.c:949 +#: ldmain.c:951 msgid "%B: warning: definition of `%T' overriding common\n" msgstr "" -#: ldmain.c:952 +#: ldmain.c:954 msgid "%B: warning: common is here\n" msgstr "" -#: ldmain.c:959 +#: ldmain.c:961 msgid "%B: warning: common of `%T' overridden by definition\n" msgstr "" -#: ldmain.c:962 +#: ldmain.c:964 msgid "%B: warning: defined here\n" msgstr "" -#: ldmain.c:969 +#: ldmain.c:971 msgid "%B: warning: common of `%T' overridden by larger common\n" msgstr "" -#: ldmain.c:972 +#: ldmain.c:974 msgid "%B: warning: larger common is here\n" msgstr "" -#: ldmain.c:976 +#: ldmain.c:978 msgid "%B: warning: common of `%T' overriding smaller common\n" msgstr "" -#: ldmain.c:979 +#: ldmain.c:981 msgid "%B: warning: smaller common is here\n" msgstr "" -#: ldmain.c:983 +#: ldmain.c:985 msgid "%B: warning: multiple common of `%T'\n" msgstr "" -#: ldmain.c:985 +#: ldmain.c:987 msgid "%B: warning: previous common is here\n" msgstr "" -#: ldmain.c:1006 ldmain.c:1045 +#: ldmain.c:1008 ldmain.c:1047 msgid "%P: warning: global constructor %s used\n" msgstr "" -#: ldmain.c:1055 +#: ldmain.c:1057 msgid "%P%F: BFD backend error: BFD_RELOC_CTOR unsupported\n" msgstr "" -#: ldmain.c:1239 +#: ldmain.c:1241 msgid "%F%P: bfd_hash_table_init failed: %E\n" msgstr "" -#: ldmain.c:1246 +#: ldmain.c:1248 msgid "%F%P: bfd_hash_lookup failed: %E\n" msgstr "" -#: ldmain.c:1266 +#: ldmain.c:1268 msgid "%C: undefined reference to `%T'\n" msgstr "" -#: ldmain.c:1272 +#: ldmain.c:1274 msgid "%D: more undefined references to `%T' follow\n" msgstr "" -#: ldmain.c:1279 +#: ldmain.c:1281 msgid "%B: undefined reference to `%T'\n" msgstr "" -#: ldmain.c:1285 +#: ldmain.c:1287 msgid "%B: more undefined references to `%T' follow\n" msgstr "" -#: ldmain.c:1305 ldmain.c:1326 ldmain.c:1345 +#: ldmain.c:1307 ldmain.c:1328 ldmain.c:1347 msgid "%P%X: generated" msgstr "" -#: ldmain.c:1308 +#: ldmain.c:1310 msgid " relocation truncated to fit: %s %T" msgstr "" -#: ldmain.c:1329 +#: ldmain.c:1331 #, c-format msgid "dangerous relocation: %s\n" msgstr "" -#: ldmain.c:1348 +#: ldmain.c:1350 msgid " reloc refers to symbol `%T' which is not being output\n" msgstr "" -#: ldmisc.c:176 +#: ldmisc.c:179 msgid "no symbol" msgstr "" -#: ldmisc.c:240 +#: ldmisc.c:243 #, c-format msgid "built in linker script:%u" msgstr "" -#: ldmisc.c:290 ldmisc.c:294 +#: ldmisc.c:293 ldmisc.c:297 msgid "%B%F: could not read symbols\n" msgstr "" #. We use abfd->filename in this initial line, #. in case filename is a .h file or something #. similarly unhelpful. -#: ldmisc.c:330 +#: ldmisc.c:333 msgid "%B: In function `%T':\n" msgstr "" -#: ldmisc.c:439 +#: ldmisc.c:442 msgid "%F%P: internal error %s %d\n" msgstr "" -#: ldmisc.c:489 +#: ldmisc.c:492 msgid "%P: internal error: aborting at %s line %d in %s\n" msgstr "" -#: ldmisc.c:492 +#: ldmisc.c:495 msgid "%P: internal error: aborting at %s line %d\n" msgstr "" -#: ldmisc.c:494 +#: ldmisc.c:497 msgid "%P%F: please report this bug\n" msgstr "" @@ -981,7 +984,7 @@ msgid "GNU ld version %s\n" msgstr "" #: ldver.c:42 -msgid "Copyright 2001 Free Software Foundation, Inc.\n" +msgid "Copyright 2002 Free Software Foundation, Inc.\n" msgstr "" #: ldver.c:43 diff --git a/ld/scripttempl/or32.sc b/ld/scripttempl/or32.sc new file mode 100644 index 000000000..2825b1e83 --- /dev/null +++ b/ld/scripttempl/or32.sc @@ -0,0 +1,37 @@ +cat < + + * or32-dis.c: New file. + * or32-opc.c: New file. + * configure.in: Add support for or32. + * configure: Regenerate. + * Makefile.am: Add support for or32. + * Makefile.in: Regenerate. + * disassemble.c: Add support for or32. + * po/POTFILES.in: Regenerate. + * po/opcodes.pot: Regenerate. + 2002-01-27 Daniel Jacobowitz * configure: Regenerated. diff --git a/opcodes/Makefile.am b/opcodes/Makefile.am index 7c9da2ef6..adde93daf 100644 --- a/opcodes/Makefile.am +++ b/opcodes/Makefile.am @@ -106,6 +106,8 @@ CFILES = \ openrisc-dis.c \ openrisc-ibld.c \ openrisc-opc.c \ + or32-dis.c \ + or32-opc.c \ pdp11-dis.c \ pdp11-opc.c \ pj-dis.c \ @@ -195,6 +197,8 @@ ALL_MACHINES = \ openrisc-dis.lo \ openrisc-ibld.lo \ openrisc-opc.lo \ + or32-dis.lo \ + or32-opc.lo \ pdp11-dis.lo \ pdp11-opc.lo \ pj-dis.lo \ diff --git a/opcodes/Makefile.in b/opcodes/Makefile.in index 8cc2744be..b1c1cecc9 100644 --- a/opcodes/Makefile.in +++ b/opcodes/Makefile.in @@ -1,6 +1,6 @@ -# Makefile.in generated automatically by automake 1.4 from Makefile.am +# Makefile.in generated automatically by automake 1.4-p5 from Makefile.am -# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc. +# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -217,6 +217,8 @@ CFILES = \ openrisc-dis.c \ openrisc-ibld.c \ openrisc-opc.c \ + or32-dis.c \ + or32-opc.c \ pdp11-dis.c \ pdp11-opc.c \ pj-dis.c \ @@ -307,6 +309,8 @@ ALL_MACHINES = \ openrisc-dis.lo \ openrisc-ibld.lo \ openrisc-opc.lo \ + or32-dis.lo \ + or32-opc.lo \ pdp11-dis.lo \ pdp11-opc.lo \ pj-dis.lo \ @@ -407,7 +411,7 @@ acinclude.m4 aclocal.m4 config.in configure configure.in DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) -TAR = tar +TAR = gtar GZIP_ENV = --best SOURCES = libopcodes.a.c $(libopcodes_la_SOURCES) OBJECTS = libopcodes.a.$(OBJEXT) $(libopcodes_la_OBJECTS) @@ -572,7 +576,7 @@ maintainer-clean-recursive: dot_seen=no; \ rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \ rev="$$subdir $$rev"; \ - test "$$subdir" = "." && dot_seen=yes; \ + test "$$subdir" != "." || dot_seen=yes; \ done; \ test "$$dot_seen" = "no" && rev=". $$rev"; \ target=`echo $@ | sed s/-recursive//`; \ diff --git a/opcodes/configure b/opcodes/configure index 69837fd20..d4ac70519 100755 --- a/opcodes/configure +++ b/opcodes/configure @@ -3240,7 +3240,7 @@ EOF fi -for ac_hdr in unistd.h +for ac_hdr in stdlib.h unistd.h sys/stat.h sys/types.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 @@ -3372,11 +3372,24 @@ else #include #include +#if HAVE_SYS_TYPES_H +# include +#endif + +#if HAVE_STDLIB_H +# include +#endif + +#if HAVE_SYS_STAT_H +# include +#endif + +#if HAVE_UNISTD_H +# include +#endif + /* This mess was copied from the GNU getpagesize.h. */ #ifndef HAVE_GETPAGESIZE -# ifdef HAVE_UNISTD_H -# include -# endif /* Assume that all systems that can run configure have sys/param.h. */ # ifndef HAVE_SYS_PARAM_H @@ -3484,7 +3497,7 @@ main() } EOF -if { (eval echo configure:3488: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3501: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_func_mmap_fixed_mapped=yes else @@ -3512,17 +3525,17 @@ unistd.h values.h sys/param.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:3516: checking for $ac_hdr" >&5 +echo "configure:3529: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:3526: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3539: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -3552,12 +3565,12 @@ done __argz_count __argz_stringify __argz_next do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:3556: checking for $ac_func" >&5 +echo "configure:3569: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3597: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -3609,12 +3622,12 @@ done for ac_func in stpcpy do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:3613: checking for $ac_func" >&5 +echo "configure:3626: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3654: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -3671,19 +3684,19 @@ EOF if test $ac_cv_header_locale_h = yes; then echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6 -echo "configure:3675: checking for LC_MESSAGES" >&5 +echo "configure:3688: checking for LC_MESSAGES" >&5 if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { return LC_MESSAGES ; return 0; } EOF -if { (eval echo configure:3687: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3700: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* am_cv_val_LC_MESSAGES=yes else @@ -3704,7 +3717,7 @@ EOF fi fi echo $ac_n "checking whether NLS is requested""... $ac_c" 1>&6 -echo "configure:3708: checking whether NLS is requested" >&5 +echo "configure:3721: checking whether NLS is requested" >&5 # Check whether --enable-nls or --disable-nls was given. if test "${enable_nls+set}" = set; then enableval="$enable_nls" @@ -3724,7 +3737,7 @@ fi EOF echo $ac_n "checking whether included gettext is requested""... $ac_c" 1>&6 -echo "configure:3728: checking whether included gettext is requested" >&5 +echo "configure:3741: checking whether included gettext is requested" >&5 # Check whether --with-included-gettext or --without-included-gettext was given. if test "${with_included_gettext+set}" = set; then withval="$with_included_gettext" @@ -3743,17 +3756,17 @@ fi ac_safe=`echo "libintl.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for libintl.h""... $ac_c" 1>&6 -echo "configure:3747: checking for libintl.h" >&5 +echo "configure:3760: checking for libintl.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:3757: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3770: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -3770,19 +3783,19 @@ fi if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for gettext in libc""... $ac_c" 1>&6 -echo "configure:3774: checking for gettext in libc" >&5 +echo "configure:3787: checking for gettext in libc" >&5 if eval "test \"`echo '$''{'gt_cv_func_gettext_libc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { return (int) gettext ("") ; return 0; } EOF -if { (eval echo configure:3786: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3799: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* gt_cv_func_gettext_libc=yes else @@ -3798,7 +3811,7 @@ echo "$ac_t""$gt_cv_func_gettext_libc" 1>&6 if test "$gt_cv_func_gettext_libc" != "yes"; then echo $ac_n "checking for bindtextdomain in -lintl""... $ac_c" 1>&6 -echo "configure:3802: checking for bindtextdomain in -lintl" >&5 +echo "configure:3815: checking for bindtextdomain in -lintl" >&5 ac_lib_var=`echo intl'_'bindtextdomain | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -3806,7 +3819,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lintl $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3834: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -3833,19 +3846,19 @@ fi if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for gettext in libintl""... $ac_c" 1>&6 -echo "configure:3837: checking for gettext in libintl" >&5 +echo "configure:3850: checking for gettext in libintl" >&5 if eval "test \"`echo '$''{'gt_cv_func_gettext_libintl'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3862: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* gt_cv_func_gettext_libintl=yes else @@ -3873,7 +3886,7 @@ EOF # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3877: checking for $ac_word" >&5 +echo "configure:3890: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3907,12 +3920,12 @@ fi for ac_func in dcgettext do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:3911: checking for $ac_func" >&5 +echo "configure:3924: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3952: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -3962,7 +3975,7 @@ done # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3966: checking for $ac_word" >&5 +echo "configure:3979: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3998,7 +4011,7 @@ fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4002: checking for $ac_word" >&5 +echo "configure:4015: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4030,7 +4043,7 @@ else fi cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4055: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* CATOBJEXT=.gmo DATADIRNAME=share @@ -4070,7 +4083,7 @@ fi # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4074: checking for $ac_word" >&5 +echo "configure:4087: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4104,7 +4117,7 @@ fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4108: checking for $ac_word" >&5 +echo "configure:4121: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4140,7 +4153,7 @@ fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4144: checking for $ac_word" >&5 +echo "configure:4157: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4230,7 +4243,7 @@ fi LINGUAS= else echo $ac_n "checking for catalogs to be installed""... $ac_c" 1>&6 -echo "configure:4234: checking for catalogs to be installed" >&5 +echo "configure:4247: checking for catalogs to be installed" >&5 NEW_LINGUAS= for lang in ${LINGUAS=$ALL_LINGUAS}; do case "$ALL_LINGUAS" in @@ -4258,17 +4271,17 @@ echo "configure:4234: checking for catalogs to be installed" >&5 if test "$CATOBJEXT" = ".cat"; then ac_safe=`echo "linux/version.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for linux/version.h""... $ac_c" 1>&6 -echo "configure:4262: checking for linux/version.h" >&5 +echo "configure:4275: checking for linux/version.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4272: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4285: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -4346,7 +4359,7 @@ if test "x$cross_compiling" = "xno"; then EXEEXT_FOR_BUILD='$(EXEEXT)' else echo $ac_n "checking for build system executable suffix""... $ac_c" 1>&6 -echo "configure:4350: checking for build system executable suffix" >&5 +echo "configure:4363: checking for build system executable suffix" >&5 if eval "test \"`echo '$''{'bfd_cv_build_exeext'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4383,7 +4396,7 @@ fi # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # ./install, which can be erroneously created by make from ./install.sh. echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 -echo "configure:4387: checking for a BSD compatible install" >&5 +echo "configure:4400: checking for a BSD compatible install" >&5 if test -z "$INSTALL"; then if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4440,17 +4453,17 @@ for ac_hdr in string.h strings.h stdlib.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:4444: checking for $ac_hdr" >&5 +echo "configure:4457: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4454: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4467: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -4597,6 +4610,7 @@ if test x${all_targets} = xfalse ; then bfd_mn10300_arch) ta="$ta m10300-dis.lo m10300-opc.lo" ;; bfd_ns32k_arch) ta="$ta ns32k-dis.lo" ;; bfd_openrisc_arch) ta="$ta openrisc-asm.lo openrisc-desc.lo openrisc-dis.lo openrisc-ibld.lo openrisc-opc.lo" using_cgen=yes ;; + bfd_or32_arch) ta="$ta or32-dis.lo or32-opc.lo" using_cgen=yes ;; bfd_pdp11_arch) ta="$ta pdp11-dis.lo pdp11-opc.lo" ;; bfd_pj_arch) ta="$ta pj-dis.lo pj-opc.lo" ;; bfd_powerpc_arch) ta="$ta ppc-dis.lo ppc-opc.lo" ;; diff --git a/opcodes/configure.in b/opcodes/configure.in index 302cd5316..5b0e8b1bc 100644 --- a/opcodes/configure.in +++ b/opcodes/configure.in @@ -199,6 +199,7 @@ if test x${all_targets} = xfalse ; then bfd_mn10300_arch) ta="$ta m10300-dis.lo m10300-opc.lo" ;; bfd_ns32k_arch) ta="$ta ns32k-dis.lo" ;; bfd_openrisc_arch) ta="$ta openrisc-asm.lo openrisc-desc.lo openrisc-dis.lo openrisc-ibld.lo openrisc-opc.lo" using_cgen=yes ;; + bfd_or32_arch) ta="$ta or32-dis.lo or32-opc.lo" using_cgen=yes ;; bfd_pdp11_arch) ta="$ta pdp11-dis.lo pdp11-opc.lo" ;; bfd_pj_arch) ta="$ta pj-dis.lo pj-opc.lo" ;; bfd_powerpc_arch) ta="$ta ppc-dis.lo ppc-opc.lo" ;; diff --git a/opcodes/disassemble.c b/opcodes/disassemble.c index ab2363501..c8690ed64 100644 --- a/opcodes/disassemble.c +++ b/opcodes/disassemble.c @@ -1,5 +1,5 @@ /* Select disassembly routine for specified architecture. - Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 + Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify @@ -49,6 +49,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #define ARCH_mn10300 #define ARCH_ns32k #define ARCH_openrisc +#define ARCH_or32 #define ARCH_pdp11 #define ARCH_pj #define ARCH_powerpc @@ -235,6 +236,14 @@ disassembler (abfd) disassemble = print_insn_openrisc; break; #endif +#ifdef ARCH_or32 + case bfd_arch_or32: + if (bfd_big_endian (abfd)) + disassemble = print_insn_big_or32; + else + disassemble = print_insn_little_or32; + break; +#endif #ifdef ARCH_pdp11 case bfd_arch_pdp11: disassemble = print_insn_pdp11; diff --git a/opcodes/or32-dis.c b/opcodes/or32-dis.c new file mode 100644 index 000000000..cbfddcf01 --- /dev/null +++ b/opcodes/or32-dis.c @@ -0,0 +1,345 @@ +/* Instruction printing code for the OpenRISC 1000 + Copyright (C) 2002 Free Software Foundation, Inc. + Contributed by Damjan Lampret . + Modified from a29k port. + + This file is part of Binutils. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + +#define DEBUG 0 + +#include "dis-asm.h" +#include "opcode/or32.h" +#include "safe-ctype.h" +#include + +#define EXTEND29(x) ((x) & 0x10000000 ? ((x) | 0xf0000000) : ((x))) + +static void find_bytes_big PARAMS ((unsigned char *, unsigned long *)); +static void find_bytes_little PARAMS ((unsigned char *, unsigned long *)); +static unsigned long or32_extract PARAMS ((char, char *, unsigned long)); +static int or32_opcode_match PARAMS ((unsigned long, char *)); +static void or32_print_register PARAMS ((char, char *, unsigned long, struct disassemble_info *)); +static void or32_print_immediate PARAMS ((char, char *, unsigned long, struct disassemble_info *)); +static int print_insn PARAMS ((bfd_vma, struct disassemble_info *)); + +/* Now find the four bytes of INSN_CH and put them in *INSN. */ + +static void +find_bytes_big (insn_ch, insn) + unsigned char *insn_ch; + unsigned long *insn; +{ + *insn = + ((unsigned long) insn_ch[0] << 24) + + ((unsigned long) insn_ch[1] << 16) + + ((unsigned long) insn_ch[2] << 8) + + ((unsigned long) insn_ch[3]); +#if DEBUG + printf ("find_bytes_big3: %x\n", *insn); +#endif +} + +static void +find_bytes_little (insn_ch, insn) + unsigned char *insn_ch; + unsigned long *insn; +{ + *insn = + ((unsigned long) insn_ch[3] << 24) + + ((unsigned long) insn_ch[2] << 16) + + ((unsigned long) insn_ch[1] << 8) + + ((unsigned long) insn_ch[0]); +} + +typedef void (*find_byte_func_type) + PARAMS ((unsigned char *, unsigned long *)); + +static unsigned long +or32_extract (param_ch, enc_initial, insn) + char param_ch; + char *enc_initial; + unsigned long insn; +{ + char *enc; + unsigned long ret = 0; + int opc_pos = 0; + int param_pos = 0; + + for (enc = enc_initial; *enc != '\0'; enc++) + if (*enc == param_ch) + if (enc - 2 >= enc_initial && (*(enc - 2) == '0') && (*(enc - 1) == 'x')) + continue; + else + param_pos++; + +#if DEBUG + printf ("or32_extract: %c %x ", param_ch, param_pos); +#endif + opc_pos = 32; + + for (enc = enc_initial; *enc != '\0'; ) + if ((*enc == '0') && (*(enc + 1) == 'x')) + { + opc_pos -= 4; + + if ((param_ch == '0') || (param_ch == '1')) + { + unsigned long tmp = strtol (enc, NULL, 16); +#if DEBUG + printf (" enc=%s, tmp=%x ", enc, tmp); +#endif + if (param_ch == '0') + tmp = 15 - tmp; + ret |= tmp << opc_pos; + } + enc += 3; + } + else if ((*enc == '0') || (*enc == '1')) + { + opc_pos--; + if (param_ch == *enc) + ret |= 1 << opc_pos; + enc++; + } + else if (*enc == param_ch) + { + opc_pos--; + param_pos--; +#if DEBUG + printf ("\n ret=%x opc_pos=%x, param_pos=%x\n", ret, opc_pos, param_pos); +#endif + ret += ((insn >> opc_pos) & 0x1) << param_pos; + + if (!param_pos + && letter_signed (param_ch) + && ret >> letter_range (param_ch) - 1) + { +#if DEBUG + printf ("\n ret=%x opc_pos=%x, param_pos=%x\n", + ret, opc_pos, param_pos); +#endif + ret |= 0xffffffff << letter_range(param_ch); +#if DEBUG + printf ("\n after conversion to signed: ret=%x\n", ret); +#endif + } + enc++; + } + else if (ISALPHA (*enc)) + { + opc_pos--; + enc++; + } + else if (*enc == '-') + { + opc_pos--; + enc++; + } + else + enc++; + +#if DEBUG + printf ("ret=%x\n", ret); +#endif + return ret; +} + +static int +or32_opcode_match (insn, encoding) + unsigned long insn; + char *encoding; +{ + unsigned long ones, zeros; + +#if DEBUG + printf ("or32_opcode_match: %.8lx\n", insn); +#endif + ones = or32_extract ('1', encoding, insn); + zeros = or32_extract ('0', encoding, insn); + +#if DEBUG + printf ("ones: %x \n", ones); + printf ("zeros: %x \n", zeros); +#endif + if ((insn & ones) != ones) + { +#if DEBUG + printf ("ret1\n"); +#endif + return 0; + } + + if ((~insn & zeros) != zeros) + { +#if DEBUG + printf ("ret2\n"); +#endif + return 0; + } + +#if DEBUG + printf ("ret3\n"); +#endif + return 1; +} + +/* Print register to INFO->STREAM. Used only by print_insn. */ + +static void +or32_print_register (param_ch, encoding, insn, info) + char param_ch; + char *encoding; + unsigned long insn; + struct disassemble_info *info; +{ + int regnum = or32_extract (param_ch, encoding, insn); + +#if DEBUG + printf ("or32_print_register: %c, %s, %x\n", param_ch, encoding, insn); +#endif + if (param_ch == 'A') + (*info->fprintf_func) (info->stream, "r%d", regnum); + else if (param_ch == 'B') + (*info->fprintf_func) (info->stream, "r%d", regnum); + else if (param_ch == 'D') + (*info->fprintf_func) (info->stream, "r%d", regnum); + else if (regnum < 16) + (*info->fprintf_func) (info->stream, "r%d", regnum); + else if (regnum < 32) + (*info->fprintf_func) (info->stream, "r%d", regnum-16); + else + (*info->fprintf_func) (info->stream, "X%d", regnum); +} + +/* Print immediate to INFO->STREAM. Used only by print_insn. */ + +static void +or32_print_immediate (param_ch, encoding, insn, info) + char param_ch; + char *encoding; + unsigned long insn; + struct disassemble_info *info; +{ + int imm = or32_extract(param_ch, encoding, insn); + + if (letter_signed(param_ch)) + (*info->fprintf_func) (info->stream, "0x%x", imm); +/* (*info->fprintf_func) (info->stream, "%d", imm); */ + else + (*info->fprintf_func) (info->stream, "0x%x", imm); +} + +/* Print one instruction from MEMADDR on INFO->STREAM. + Return the size of the instruction (always 4 on or32). */ + +static int +print_insn (memaddr, info) + bfd_vma memaddr; + struct disassemble_info *info; +{ + /* The raw instruction. */ + unsigned char insn_ch[4]; + /* Address. Will be sign extened 27-bit. */ + int addr; + /* The four bytes of the instruction. */ + unsigned long insn; + find_byte_func_type find_byte_func = (find_byte_func_type)info->private_data; + struct or32_opcode CONST * opcode; + + { + int status = + (*info->read_memory_func) (memaddr, (bfd_byte *) &insn_ch[0], 4, info); + + if (status != 0) + { + (*info->memory_error_func) (status, memaddr, info); + return -1; + } + } + + (*find_byte_func) (&insn_ch[0], &insn); + + for (opcode = &or32_opcodes[0]; + opcode < &or32_opcodes[or32_num_opcodes]; + ++opcode) + { + if (or32_opcode_match (insn, opcode->encoding)) + { + char *s; + + (*info->fprintf_func) (info->stream, "%s ", opcode->name); + + for (s = opcode->args; *s != '\0'; ++s) + { + switch (*s) + { + case '\0': + return 4; + + case 'r': + or32_print_register (*++s, opcode->encoding, insn, info); + break; + + case 'X': + addr = or32_extract ('X', opcode->encoding, insn) << 2; + + /* Calulate the correct address. XXX is this really correct ?? */ + addr = memaddr + EXTEND29 (addr); + + (*info->print_address_func) + (addr, info); + break; + + default: + if (strchr (opcode->encoding, *s)) + or32_print_immediate (*s, opcode->encoding, insn, info); + else + (*info->fprintf_func) (info->stream, "%c", *s); + } + } + + return 4; + } + } + + /* This used to be %8x for binutils. */ + (*info->fprintf_func) + (info->stream, ".word 0x%08x", insn); + return 4; +} + +/* Disassemble a big-endian or32 instruction. */ + +int +print_insn_big_or32 (memaddr, info) + bfd_vma memaddr; + struct disassemble_info *info; +{ + info->private_data = (PTR) find_bytes_big; + return print_insn (memaddr, info); +} + +/* Disassemble a little-endian or32 instruction. */ + +int +print_insn_little_or32 (memaddr, info) + bfd_vma memaddr; + struct disassemble_info *info; +{ + info->private_data = (PTR) find_bytes_little; + return print_insn (memaddr, info); +} diff --git a/opcodes/or32-opc.c b/opcodes/or32-opc.c new file mode 100644 index 000000000..841c72f5e --- /dev/null +++ b/opcodes/or32-opc.c @@ -0,0 +1,1049 @@ +/* Table of opcodes for the OpenRISC 1000 ISA. + Copyright 2002 Free Software Foundation, Inc. + Contributed by Damjan Lampret (lampret@opencores.org). + + This file is part of gen_or1k_isa, or1k, GDB and GAS. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + +/* We treat all letters the same in encode/decode routines so + we need to assign some characteristics to them like signess etc. */ +#include +#include +#include +#include "safe-ctype.h" +#include "ansidecl.h" +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif +#include "opcode/or32.h" + +static unsigned long insn_extract PARAMS ((char, char *)); +static unsigned long * cover_insn PARAMS ((unsigned long *, int, unsigned int)); +static int num_ones PARAMS ((unsigned long)); +static struct insn_op_struct * parse_params PARAMS ((const struct or32_opcode *, struct insn_op_struct *)); +static unsigned long or32_extract PARAMS ((char, char *, unsigned long)); +static void or32_print_register PARAMS ((char, char *, unsigned long)); +static void or32_print_immediate PARAMS ((char, char *, unsigned long)); +static unsigned long extend_imm PARAMS ((unsigned long, char)); + +const struct or32_letter or32_letters[] = + { + { 'A', NUM_UNSIGNED }, + { 'B', NUM_UNSIGNED }, + { 'D', NUM_UNSIGNED }, + { 'I', NUM_SIGNED }, + { 'K', NUM_UNSIGNED }, + { 'L', NUM_UNSIGNED }, + { 'N', NUM_SIGNED }, + { '0', NUM_UNSIGNED }, + { '\0', 0 } /* Dummy entry. */ + }; + +/* Opcode encoding: + machine[31:30]: first two bits of opcode + 00 - neither of source operands is GPR + 01 - second source operand is GPR (rB) + 10 - first source operand is GPR (rA) + 11 - both source operands are GPRs (rA and rB) + machine[29:26]: next four bits of opcode + machine[25:00]: instruction operands (specific to individual instruction) + + Recommendation: irrelevant instruction bits should be set with a value of + bits in same positions of instruction preceding current instruction in the + code (when assembling). */ + +#define EFN &l_none + +#ifdef HAS_EXECUTION +#define EF(func) &(func) +#define EFI &l_invalid +#else /* HAS_EXECUTION */ +#define EF(func) EFN +#define EFI EFN +#endif /* HAS_EXECUTION */ + +const struct or32_opcode or32_opcodes[] = + { + { "l.j", "N", "00 0x0 NNNNN NNNNN NNNN NNNN NNNN NNNN", EF(l_j), OR32_IF_DELAY }, + { "l.jal", "N", "00 0x1 NNNNN NNNNN NNNN NNNN NNNN NNNN", EF(l_jal), OR32_IF_DELAY }, + { "l.bnf", "N", "00 0x3 NNNNN NNNNN NNNN NNNN NNNN NNNN", EF(l_bnf), OR32_IF_DELAY | OR32_R_FLAG}, + { "l.bf", "N", "00 0x4 NNNNN NNNNN NNNN NNNN NNNN NNNN", EF(l_bf), OR32_IF_DELAY | OR32_R_FLAG }, + { "l.nop", "K", "00 0x5 01--- ----- KKKK KKKK KKKK KKKK", EF(l_nop), 0 }, + { "l.movhi", "rD,K", "00 0x6 DDDDD ----0 KKKK KKKK KKKK KKKK", EF(l_movhi), 0 }, /*MM*/ + { "l.macrc", "rD", "00 0x6 DDDDD ----1 0000 0000 0000 0000", EF(l_macrc), 0 }, /*MM*/ + + { "l.sys", "K", "00 0x8 00000 00000 KKKK KKKK KKKK KKKK", EF(l_sys), 0 }, + { "l.trap", "K", "00 0x8 01000 00000 KKKK KKKK KKKK KKKK", EF(l_trap), 0 }, /* CZ 21/06/01 */ + { "l.msync", "", "00 0x8 10000 00000 0000 0000 0000 0000", EFN, 0 }, + { "l.psync", "", "00 0x8 10100 00000 0000 0000 0000 0000", EFN, 0 }, + { "l.csync", "", "00 0x8 11000 00000 0000 0000 0000 0000", EFN, 0 }, + { "l.rfe", "", "00 0x9 ----- ----- ---- ---- ---- ----", EF(l_rfe), OR32_IF_DELAY }, + + { "lv.all_eq.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x1 0x0", EFI, 0 }, + { "lv.all_eq.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x1 0x1", EFI, 0 }, + { "lv.all_ge.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x1 0x2", EFI, 0 }, + { "lv.all_ge.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x1 0x3", EFI, 0 }, + { "lv.all_gt.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x1 0x4", EFI, 0 }, + { "lv.all_gt.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x1 0x5", EFI, 0 }, + { "lv.all_le.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x1 0x6", EFI, 0 }, + { "lv.all_le.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x1 0x7", EFI, 0 }, + { "lv.all_lt.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x1 0x8", EFI, 0 }, + { "lv.all_lt.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x1 0x9", EFI, 0 }, + { "lv.all_ne.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x1 0xA", EFI, 0 }, + { "lv.all_ne.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x1 0xB", EFI, 0 }, + { "lv.any_eq.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x2 0x0", EFI, 0 }, + { "lv.any_eq.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x2 0x1", EFI, 0 }, + { "lv.any_ge.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x2 0x2", EFI, 0 }, + { "lv.any_ge.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x2 0x3", EFI, 0 }, + { "lv.any_gt.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x2 0x4", EFI, 0 }, + { "lv.any_gt.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x2 0x5", EFI, 0 }, + { "lv.any_le.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x2 0x6", EFI, 0 }, + { "lv.any_le.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x2 0x7", EFI, 0 }, + { "lv.any_lt.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x2 0x8", EFI, 0 }, + { "lv.any_lt.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x2 0x9", EFI, 0 }, + { "lv.any_ne.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x2 0xA", EFI, 0 }, + { "lv.any_ne.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x2 0xB", EFI, 0 }, + { "lv.add.b", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x3 0x0", EFI, 0 }, + { "lv.add.h", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x3 0x1", EFI, 0 }, + { "lv.adds.b", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x3 0x2", EFI, 0 }, + { "lv.adds.h", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x3 0x3", EFI, 0 }, + { "lv.addu.b", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x3 0x4", EFI, 0 }, + { "lv.addu.h", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x3 0x5", EFI, 0 }, + { "lv.addus.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x3 0x6", EFI, 0 }, + { "lv.addus.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x3 0x7", EFI, 0 }, + { "lv.and", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x3 0x8", EFI, 0 }, + { "lv.avg.b", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x3 0x9", EFI, 0 }, + { "lv.avg.h", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x3 0xA", EFI, 0 }, + { "lv.cmp_eq.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x4 0x0", EFI, 0 }, + { "lv.cmp_eq.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x4 0x1", EFI, 0 }, + { "lv.cmp_ge.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x4 0x2", EFI, 0 }, + { "lv.cmp_ge.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x4 0x3", EFI, 0 }, + { "lv.cmp_gt.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x4 0x4", EFI, 0 }, + { "lv.cmp_gt.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x4 0x5", EFI, 0 }, + { "lv.cmp_le.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x4 0x6", EFI, 0 }, + { "lv.cmp_le.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x4 0x7", EFI, 0 }, + { "lv.cmp_lt.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x4 0x8", EFI, 0 }, + { "lv.cmp_lt.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x4 0x9", EFI, 0 }, + { "lv.cmp_ne.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x4 0xA", EFI, 0 }, + { "lv.cmp_ne.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x4 0xB", EFI, 0 }, + { "lv.madds.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x5 0x4", EFI, 0 }, + { "lv.max.b", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x5 0x5", EFI, 0 }, + { "lv.max.h", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x5 0x6", EFI, 0 }, + { "lv.merge.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x5 0x7", EFI, 0 }, + { "lv.merge.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x5 0x8", EFI, 0 }, + { "lv.min.b", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x5 0x9", EFI, 0 }, + { "lv.min.h", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x5 0xA", EFI, 0 }, + { "lv.msubs.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x5 0xB", EFI, 0 }, + { "lv.muls.h", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x5 0xC", EFI, 0 }, + { "lv.nand", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x5 0xD", EFI, 0 }, + { "lv.nor", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x5 0xE", EFI, 0 }, + { "lv.or", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x5 0xF", EFI, 0 }, + { "lv.pack.b", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x6 0x0", EFI, 0 }, + { "lv.pack.h", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x6 0x1", EFI, 0 }, + { "lv.packs.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x6 0x2", EFI, 0 }, + { "lv.packs.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x6 0x3", EFI, 0 }, + { "lv.packus.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x6 0x4", EFI, 0 }, + { "lv.packus.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x6 0x5", EFI, 0 }, + { "lv.perm.n", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x6 0x6", EFI, 0 }, + { "lv.rl.b", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x6 0x7", EFI, 0 }, + { "lv.rl.h", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x6 0x8", EFI, 0 }, + { "lv.sll.b", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x6 0x9", EFI, 0 }, + { "lv.sll.h", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x6 0xA", EFI, 0 }, + { "lv.sll", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x6 0xB", EFI, 0 }, + { "lv.srl.b", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x6 0xC", EFI, 0 }, + { "lv.srl.h", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x6 0xD", EFI, 0 }, + { "lv.sra.b", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x6 0xE", EFI, 0 }, + { "lv.sra.h", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x6 0xF", EFI, 0 }, + { "lv.srl", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x7 0x0", EFI, 0 }, + { "lv.sub.b", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x7 0x1", EFI, 0 }, + { "lv.sub.h", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x7 0x2", EFI, 0 }, + { "lv.subs.b", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x7 0x3", EFI, 0 }, + { "lv.subs.h", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x7 0x4", EFI, 0 }, + { "lv.subu.b", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x7 0x5", EFI, 0 }, + { "lv.subu.h", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x7 0x6", EFI, 0 }, + { "lv.subus.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x7 0x7", EFI, 0 }, + { "lv.subus.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x7 0x8", EFI, 0 }, + { "lv.unpack.b","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x7 0x9", EFI, 0 }, + { "lv.unpack.h","rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x7 0xA", EFI, 0 }, + { "lv.xor", "rD,rA,rB", "00 0xA DDDDD AAAAA BBBB B--- 0x7 0xB", EFI, 0 }, + { "lv.cust1", "", "00 0xA ----- ----- ---- ---- 0xC ----", EFI, 0 }, + { "lv.cust2", "", "00 0xA ----- ----- ---- ---- 0xD ----", EFI, 0 }, + { "lv.cust3", "", "00 0xA ----- ----- ---- ---- 0xE ----", EFI, 0 }, + { "lv.cust4", "", "00 0xA ----- ----- ---- ---- 0xF ----", EFI, 0 }, + + { "lf.add.s", "rD,rA,rB", "00 0xB DDDDD AAAAA BBBB B--- 0x1 0x0", EFI, 0 }, + { "lf.sub.s", "rD,rA,rB", "00 0xB DDDDD AAAAA BBBB B--- 0x1 0x1", EFI, 0 }, + { "lf.mul.s", "rD,rA,rB", "00 0xB DDDDD AAAAA BBBB B--- 0x1 0x2", EFI, 0 }, + { "lf.div.s", "rD,rA,rB", "00 0xB DDDDD AAAAA BBBB B--- 0x1 0x3", EFI, 0 }, + { "lf.itof.s", "rD,rA", "00 0xB DDDDD AAAAA BBBB B--- 0x1 0x4", EFI, 0 }, + { "lf.ftoi.s", "rD,rA", "00 0xB DDDDD AAAAA BBBB B--- 0x1 0x5", EFI, 0 }, + { "lf.rem.s", "rD,rA,rB", "00 0xB DDDDD AAAAA BBBB B--- 0x1 0x6", EFI, 0 }, + { "lf.madd.s", "rD,rA,rB", "00 0xB DDDDD AAAAA BBBB B--- 0x1 0x7", EFI, 0 }, + { "lf.sfeq.s", "rA,rB", "00 0xB ----- AAAAA BBBB B--- 0x1 0x8", EFI, 0 }, + { "lf.sfne.s", "rA,rB", "00 0xB ----- AAAAA BBBB B--- 0x1 0x9", EFI, 0 }, + { "lf.sfgt.s", "rA,rB", "00 0xB ----- AAAAA BBBB B--- 0x1 0xA", EFI, 0 }, + { "lf.sfge.s", "rA,rB", "00 0xB ----- AAAAA BBBB B--- 0x1 0xB", EFI, 0 }, + { "lf.sflt.s", "rA,rB", "00 0xB ----- AAAAA BBBB B--- 0x1 0xC", EFI, 0 }, + { "lf.sfle.s", "rA,rB", "00 0xB ----- AAAAA BBBB B--- 0x1 0xD", EFI, 0 }, + { "lf.cust1.s", "", "00 0xB ----- ----- ---- ---- 0xE ----", EFI, 0 }, + + { "lf.add.d", "rD,rA,rB", "00 0xC DDDDD AAAAA BBBB B--- 0x1 0x0", EFI, 0 }, + { "lf.sub.d", "rD,rA,rB", "00 0xC DDDDD AAAAA BBBB B--- 0x1 0x1", EFI, 0 }, + { "lf.mul.d", "rD,rA,rB", "00 0xC DDDDD AAAAA BBBB B--- 0x1 0x2", EFI, 0 }, + { "lf.div.d", "rD,rA,rB", "00 0xC DDDDD AAAAA BBBB B--- 0x1 0x3", EFI, 0 }, + { "lf.itof.d", "rD,rA", "00 0xC DDDDD AAAAA BBBB B--- 0x1 0x4", EFI, 0 }, + { "lf.ftoi.d", "rD,rA", "00 0xC DDDDD AAAAA BBBB B--- 0x1 0x5", EFI, 0 }, + { "lf.rem.d", "rD,rA,rB", "00 0xC DDDDD AAAAA BBBB B--- 0x1 0x6", EFI, 0 }, + { "lf.madd.d", "rD,rA,rB", "00 0xC DDDDD AAAAA BBBB B--- 0x1 0x7", EFI, 0 }, + { "lf.sfeq.d", "rA,rB", "00 0xC ----- AAAAA BBBB B--- 0x1 0x8", EFI, 0 }, + { "lf.sfne.d", "rA,rB", "00 0xC ----- AAAAA BBBB B--- 0x1 0x9", EFI, 0 }, + { "lf.sfgt.d", "rA,rB", "00 0xC ----- AAAAA BBBB B--- 0x1 0xA", EFI, 0 }, + { "lf.sfge.d", "rA,rB", "00 0xC ----- AAAAA BBBB B--- 0x1 0xB", EFI, 0 }, + { "lf.sflt.d", "rA,rB", "00 0xC ----- AAAAA BBBB B--- 0x1 0xC", EFI, 0 }, + { "lf.sfle.d", "rA,rB", "00 0xC ----- AAAAA BBBB B--- 0x1 0xD", EFI, 0 }, + { "lf.cust1.d", "", "00 0xC ----- ----- ---- ---- 0xE ----", EFI, 0 }, + + { "lvf.ld", "rD,0(rA)", "00 0xD DDDDD AAAAA ---- ---- 0x0 0x0", EFI, 0 }, + { "lvf.lw", "rD,0(rA)", "00 0xD DDDDD AAAAA ---- ---- 0x0 0x1", EFI, 0 }, + { "lvf.sd", "0(rA),rB", "00 0xD ----- AAAAA BBBB B--- 0x1 0x0", EFI, 0 }, + { "lvf.sw", "0(rA),rB", "00 0xD ----- AAAAA BBBB B--- 0x1 0x1", EFI, 0 }, + + { "l.jr", "rB", "01 0x1 ----- ----- BBBB B--- ---- ----", EF(l_jr), OR32_IF_DELAY }, + { "l.jalr", "rB", "01 0x2 ----- ----- BBBB B--- ---- ----", EF(l_jalr), OR32_IF_DELAY }, + { "l.maci", "rB,I", "01 0x3 IIIII ----- BBBB BIII IIII IIII", EF(l_mac), 0 }, + { "l.cust1", "", "01 0xC ----- ----- ---- ---- ---- ----", EF(l_cust1), 0 }, + { "l.cust2", "", "01 0xD ----- ----- ---- ---- ---- ----", EF(l_cust2), 0 }, + { "l.cust3", "", "01 0xE ----- ----- ---- ---- ---- ----", EF(l_cust3), 0 }, + { "l.cust4", "", "01 0xF ----- ----- ---- ---- ---- ----", EF(l_cust4), 0 }, + + { "l.ld", "rD,I(rA)", "10 0x0 DDDDD AAAAA IIII IIII IIII IIII", EFI, 0 }, + { "l.lwz", "rD,I(rA)", "10 0x1 DDDDD AAAAA IIII IIII IIII IIII", EF(l_lwz), 0 }, + { "l.lws", "rD,I(rA)", "10 0x2 DDDDD AAAAA IIII IIII IIII IIII", EFI, 0 }, + { "l.lbz", "rD,I(rA)", "10 0x3 DDDDD AAAAA IIII IIII IIII IIII", EF(l_lbz), 0 }, + { "l.lbs", "rD,I(rA)", "10 0x4 DDDDD AAAAA IIII IIII IIII IIII", EF(l_lbs), 0 }, + { "l.lhz", "rD,I(rA)", "10 0x5 DDDDD AAAAA IIII IIII IIII IIII", EF(l_lhz), 0 }, + { "l.lhs", "rD,I(rA)", "10 0x6 DDDDD AAAAA IIII IIII IIII IIII", EF(l_lhs), 0 }, + + { "l.addi", "rD,rA,I", "10 0x7 DDDDD AAAAA IIII IIII IIII IIII", EF(l_add), 0 }, + { "l.addic", "rD,rA,I", "10 0x8 DDDDD AAAAA IIII IIII IIII IIII", EFI, 0 }, + { "l.andi", "rD,rA,K", "10 0x9 DDDDD AAAAA KKKK KKKK KKKK KKKK", EF(l_and), 0 }, + { "l.ori", "rD,rA,K", "10 0xA DDDDD AAAAA KKKK KKKK KKKK KKKK", EF(l_or), 0 }, + { "l.xori", "rD,rA,I", "10 0xB DDDDD AAAAA IIII IIII IIII IIII", EF(l_xor), 0 }, + { "l.muli", "rD,rA,I", "10 0xC DDDDD AAAAA IIII IIII IIII IIII", EFI, 0 }, + { "l.mfspr", "rD,rA,K", "10 0xD DDDDD AAAAA KKKK KKKK KKKK KKKK", EF(l_mfspr), 0 }, + { "l.slli", "rD,rA,L", "10 0xE DDDDD AAAAA ---- ---- 00LL LLLL", EF(l_sll), 0 }, + { "l.srli", "rD,rA,L", "10 0xE DDDDD AAAAA ---- ---- 01LL LLLL", EF(l_srl), 0 }, + { "l.srai", "rD,rA,L", "10 0xE DDDDD AAAAA ---- ---- 10LL LLLL", EF(l_sra), 0 }, + { "l.rori", "rD,rA,L", "10 0xE DDDDD AAAAA ---- ---- 11LL LLLL", EFI, 0 }, + + { "l.sfeqi", "rA,I", "10 0xF 00000 AAAAA IIII IIII IIII IIII", EF(l_sfeq), OR32_W_FLAG }, + { "l.sfnei", "rA,I", "10 0xF 00001 AAAAA IIII IIII IIII IIII", EF(l_sfne), OR32_W_FLAG }, + { "l.sfgtui", "rA,I", "10 0xF 00010 AAAAA IIII IIII IIII IIII", EF(l_sfgtu), OR32_W_FLAG }, + { "l.sfgeui", "rA,I", "10 0xF 00011 AAAAA IIII IIII IIII IIII", EF(l_sfgeu), OR32_W_FLAG }, + { "l.sfltui", "rA,I", "10 0xF 00100 AAAAA IIII IIII IIII IIII", EF(l_sfltu), OR32_W_FLAG }, + { "l.sfleui", "rA,I", "10 0xF 00101 AAAAA IIII IIII IIII IIII", EF(l_sfleu), OR32_W_FLAG }, + { "l.sfgtsi", "rA,I", "10 0xF 01010 AAAAA IIII IIII IIII IIII", EF(l_sfgts), OR32_W_FLAG }, + { "l.sfgesi", "rA,I", "10 0xF 01011 AAAAA IIII IIII IIII IIII", EF(l_sfges), OR32_W_FLAG }, + { "l.sfltsi", "rA,I", "10 0xF 01100 AAAAA IIII IIII IIII IIII", EF(l_sflts), OR32_W_FLAG }, + { "l.sflesi", "rA,I", "10 0xF 01101 AAAAA IIII IIII IIII IIII", EF(l_sfles), OR32_W_FLAG }, + + { "l.mtspr", "rA,rB,K", "11 0x0 KKKKK AAAAA BBBB BKKK KKKK KKKK", EF(l_mtspr), 0 }, + { "l.mac", "rA,rB", "11 0x1 ----- AAAAA BBBB B--- ---- 0x1", EF(l_mac), 0 }, /*MM*/ + { "l.msb", "rA,rB", "11 0x1 ----- AAAAA BBBB B--- ---- 0x2", EF(l_msb), 0 }, /*MM*/ + + { "l.sd", "I(rA),rB", "11 0x4 IIIII AAAAA BBBB BIII IIII IIII", EFI, 0 }, + { "l.sw", "I(rA),rB", "11 0x5 IIIII AAAAA BBBB BIII IIII IIII", EF(l_sw), 0 }, + { "l.sb", "I(rA),rB", "11 0x6 IIIII AAAAA BBBB BIII IIII IIII", EF(l_sb), 0 }, + { "l.sh", "I(rA),rB", "11 0x7 IIIII AAAAA BBBB BIII IIII IIII", EF(l_sh), 0 }, + + { "l.add", "rD,rA,rB", "11 0x8 DDDDD AAAAA BBBB B-00 ---- 0x0", EF(l_add), 0 }, + { "l.addc", "rD,rA,rB", "11 0x8 DDDDD AAAAA BBBB B-00 ---- 0x1", EFI, 0 }, + { "l.sub", "rD,rA,rB", "11 0x8 DDDDD AAAAA BBBB B-00 ---- 0x2", EF(l_sub), 0 }, + { "l.and", "rD,rA,rB", "11 0x8 DDDDD AAAAA BBBB B-00 ---- 0x3", EF(l_and), 0 }, + { "l.or", "rD,rA,rB", "11 0x8 DDDDD AAAAA BBBB B-00 ---- 0x4", EF(l_or), 0 }, + { "l.xor", "rD,rA,rB", "11 0x8 DDDDD AAAAA BBBB B-00 ---- 0x5", EF(l_xor), 0 }, + { "l.mul", "rD,rA,rB", "11 0x8 DDDDD AAAAA BBBB B-11 ---- 0x6", EF(l_mul), 0 }, + + { "l.sll", "rD,rA,rB", "11 0x8 DDDDD AAAAA BBBB B-00 00-- 0x8", EF(l_sll), 0 }, + { "l.srl", "rD,rA,rB", "11 0x8 DDDDD AAAAA BBBB B-00 01-- 0x8", EF(l_srl), 0 }, + { "l.sra", "rD,rA,rB", "11 0x8 DDDDD AAAAA BBBB B-00 10-- 0x8", EF(l_sra), 0 }, + { "l.ror", "rD,rA,rB", "11 0x8 DDDDD AAAAA BBBB B-00 11-- 0x8", EFI, 0 }, + { "l.div", "rD,rA,rB", "11 0x8 DDDDD AAAAA BBBB B-00 ---- 0x9", EF(l_div), 0 }, + { "l.divu", "rD,rA,rB", "11 0x8 DDDDD AAAAA BBBB B-00 ---- 0xA", EF(l_divu), 0 }, + { "l.mulu", "rD,rA,rB", "11 0x8 DDDDD AAAAA BBBB B-11 ---- 0xB", EFI, 0 }, + { "l.exths", "rD,rA,rB", "11 0x8 DDDDD AAAAA BBBB B-00 00-- 0xC", EFI, 0 }, + { "l.extbs", "rD,rA,rB", "11 0x8 DDDDD AAAAA BBBB B-00 01-- 0xC", EFI, 0 }, + { "l.exthz", "rD,rA,rB", "11 0x8 DDDDD AAAAA BBBB B-00 10-- 0xC", EFI, 0 }, + { "l.extbz", "rD,rA,rB", "11 0x8 DDDDD AAAAA BBBB B-00 11-- 0xC", EFI, 0 }, + { "l.extws", "rD,rA,rB", "11 0x8 DDDDD AAAAA BBBB B-00 00-- 0xD", EFI, 0 }, + { "l.extwz", "rD,rA,rB", "11 0x8 DDDDD AAAAA BBBB B-00 01-- 0xD", EFI, 0 }, + { "l.cmov", "rD,rA,rB", "11 0x8 DDDDD AAAAA BBBB B-00 ---- 0xE", EFI, 0 }, + { "l.ff1", "rD,rA,rB", "11 0x8 DDDDD AAAAA BBBB B-00 ---- 0xF", EFI, 0 }, + + { "l.sfeq", "rA,rB", "11 0x9 00000 AAAAA BBBB B--- ---- ----", EF(l_sfeq), OR32_W_FLAG }, + { "l.sfne", "rA,rB", "11 0x9 00001 AAAAA BBBB B--- ---- ----", EF(l_sfne), OR32_W_FLAG }, + { "l.sfgtu", "rA,rB", "11 0x9 00010 AAAAA BBBB B--- ---- ----", EF(l_sfgtu), OR32_W_FLAG }, + { "l.sfgeu", "rA,rB", "11 0x9 00011 AAAAA BBBB B--- ---- ----", EF(l_sfgeu), OR32_W_FLAG }, + { "l.sfltu", "rA,rB", "11 0x9 00100 AAAAA BBBB B--- ---- ----", EF(l_sfltu), OR32_W_FLAG }, + { "l.sfleu", "rA,rB", "11 0x9 00101 AAAAA BBBB B--- ---- ----", EF(l_sfleu), OR32_W_FLAG }, + { "l.sfgts", "rA,rB", "11 0x9 01010 AAAAA BBBB B--- ---- ----", EF(l_sfgts), OR32_W_FLAG }, + { "l.sfges", "rA,rB", "11 0x9 01011 AAAAA BBBB B--- ---- ----", EF(l_sfges), OR32_W_FLAG }, + { "l.sflts", "rA,rB", "11 0x9 01100 AAAAA BBBB B--- ---- ----", EF(l_sflts), OR32_W_FLAG }, + { "l.sfles", "rA,rB", "11 0x9 01101 AAAAA BBBB B--- ---- ----", EF(l_sfles), OR32_W_FLAG }, + + { "l.cust5", "", "11 0xC ----- ----- ---- ---- ---- ----", EFI, 0 }, + { "l.cust6", "", "11 0xD ----- ----- ---- ---- ---- ----", EFI, 0 }, + { "l.cust7", "", "11 0xE ----- ----- ---- ---- ---- ----", EFI, 0 }, + { "l.cust8", "", "11 0xF ----- ----- ---- ---- ---- ----", EFI, 0 }, + + /* This section should not be defined in or1ksim, since it contains duplicates, + which would cause machine builder to complain. */ +#ifdef HAS_CUST + { "l.cust5_1", "rD", "11 0xC DDDDD ----- ---- ---- ---- ----", EFI, 0 }, + { "l.cust5_2", "rD,rA" , "11 0xC DDDDD AAAAA ---- ---- ---- ----", EFI, 0 }, + { "l.cust5_3", "rD,rA,rB", "11 0xC DDDDD AAAAA BBBB B--- ---- ----", EFI, 0 }, + + { "l.cust6_1", "rD", "11 0xD DDDDD ----- ---- ---- ---- ----", EFI, 0 }, + { "l.cust6_2", "rD,rA" , "11 0xD DDDDD AAAAA ---- ---- ---- ----", EFI, 0 }, + { "l.cust6_3", "rD,rA,rB", "11 0xD DDDDD AAAAA BBBB B--- ---- ----", EFI, 0 }, + + { "l.cust7_1", "rD", "11 0xE DDDDD ----- ---- ---- ---- ----", EFI, 0 }, + { "l.cust7_2", "rD,rA" , "11 0xE DDDDD AAAAA ---- ---- ---- ----", EFI, 0 }, + { "l.cust7_3", "rD,rA,rB", "11 0xE DDDDD AAAAA BBBB B--- ---- ----", EFI, 0 }, + + { "l.cust8_1", "rD", "11 0xF DDDDD ----- ---- ---- ---- ----", EFI, 0 }, + { "l.cust8_2", "rD,rA" , "11 0xF DDDDD AAAAA ---- ---- ---- ----", EFI, 0 }, + { "l.cust8_3", "rD,rA,rB", "11 0xF DDDDD AAAAA BBBB B--- ---- ----", EFI, 0 }, +#endif + + /* Dummy entry, not included in num_opcodes. This + lets code examine entry i+1 without checking + if we've run off the end of the table. */ + { "", "", "", EFI, 0 } +}; + +#undef EFI +#undef EFN +#undef EF + +/* Define dummy, if debug is not defined. */ + +#if !defined HAS_DEBUG +static void debug PARAMS ((int, const char *, ...)); + +static void +debug (int level, const char *format, ...) +{ + /* Just to get rid of warnings. */ + format = level = 0; +} +#endif + +const unsigned int or32_num_opcodes = ((sizeof(or32_opcodes)) / (sizeof(struct or32_opcode))) - 1; + +/* Calculates instruction length in bytes. Always 4 for OR32. */ + +int +insn_len (insn_index) + int insn_index ATTRIBUTE_UNUSED; +{ + return 4; +} + +/* Is individual insn's operand signed or unsigned? */ + +int +letter_signed (l) + char l; +{ + const struct or32_letter *pletter; + + for (pletter = or32_letters; pletter->letter != '\0'; pletter++) + if (pletter->letter == l) + return pletter->sign; + + printf ("letter_signed(%c): Unknown letter.\n", l); + return 0; +} + +/* Number of letters in the individual lettered operand. */ + +int +letter_range (l) + char l; +{ + const struct or32_opcode *pinsn; + char *enc; + int range = 0; + + for (pinsn = or32_opcodes; strlen(pinsn->name); pinsn++) + { + if (strchr (pinsn->encoding,l)) + { + for (enc = pinsn->encoding; *enc != '\0'; enc++) + if ((*enc == '0') && (*(enc+1) == 'x')) + enc += 2; + else if (*enc == l) + range++; + return range; + } + } + + printf ("\nABORT: letter_range(%c): Never used letter.\n", l); + exit (1); +} + +/* MM: Returns index of given instruction name. */ + +int +insn_index (char *insn) +{ + int i, found = -1; + + for (i = 0; i < or32_num_opcodes; i++) + if (!strcmp (or32_opcodes[i].name, insn)) + { + found = i; + break; + } + return found; +} + +const char * +insn_name (index) + int index; +{ + if (index >= 0 && index < or32_num_opcodes) + return or32_opcodes[index].name; + else + return "???"; +} + +void +l_none () +{ +} + +/* Finite automata for instruction decoding building code. */ + +/* Find simbols in encoding. */ +static unsigned long +insn_extract (param_ch, enc_initial) + char param_ch; + char *enc_initial; +{ + char *enc; + unsigned long ret = 0; + unsigned opc_pos = 32; + + for (enc = enc_initial; *enc != '\0'; ) + if ((*enc == '0') && (*(enc + 1) == 'x')) + { + unsigned long tmp = strtol (enc+2, NULL, 16); + + opc_pos -= 4; + if (param_ch == '0' || param_ch == '1') + { + if (param_ch == '0') + tmp = 15 - tmp; + ret |= tmp << opc_pos; + } + enc += 3; + } + else + { + if (*enc == '0' || *enc == '1' || *enc == '-' || ISALPHA (*enc)) + { + opc_pos--; + if (param_ch == *enc) + ret |= 1 << opc_pos; + } + enc++; + } + return ret; +} + +#define MAX_AUTOMATA_SIZE (1200) +#define MAX_OP_TABLE_SIZE (1200) +#define LEAF_FLAG (0x80000000) +#define MAX_LEN (8) + +#ifndef MIN +# define MIN(x,y) ((x) < (y) ? (x) : (y)) +#endif + +unsigned long *automata; +int nuncovered; +int curpass = 0; + +/* MM: Struct that hold runtime build information about instructions. */ +struct temp_insn_struct +{ + unsigned long insn; + unsigned long insn_mask; + int in_pass; +} *ti; + +struct insn_op_struct *op_data, **op_start; + +/* Recursive utility function used to find best match and to build automata. */ + +static unsigned long * +cover_insn (cur, pass, mask) + unsigned long * cur; + int pass; + unsigned int mask; +{ + int best_first = 0, best_len = 0, i, last_match = -1, ninstr = 0; + unsigned long cur_mask = mask; + unsigned long *next; + + for (i = 0; i < or32_num_opcodes; i++) + if (ti[i].in_pass == pass) + { + cur_mask &= ti[i].insn_mask; + ninstr++; + last_match = i; + } + + debug (8, "%08X %08X\n", mask, cur_mask); + + if (ninstr == 0) + return 0; + + if (ninstr == 1) + { + /* Leaf holds instruction index. */ + debug (8, "%i>I%i %s\n", + cur - automata, last_match, or32_opcodes[last_match].name); + + *cur = LEAF_FLAG | last_match; + cur++; + nuncovered--; + } + else + { + /* Find longest match. */ + for (i = 0; i < 32; i++) + { + int len; + + for (len = best_len + 1; len < MIN (MAX_LEN, 33 - i); len++) + { + unsigned long m = (1UL << ((unsigned long)len)) - 1; + + debug (9, " (%i(%08X & %08X>>%i = %08X, %08X)", + len,m, cur_mask, i, (cur_mask >> (unsigned)i), + (cur_mask >> (unsigned)i) & m); + + if ((m & (cur_mask >> (unsigned)i)) == m) + { + best_len = len; + best_first = i; + debug (9, "!"); + } + else + break; + } + } + + debug (9, "\n"); + + if (!best_len) + { + fprintf (stderr, "%i instructions match mask 0x%08X:\n", ninstr, mask); + + for (i = 0; i < or32_num_opcodes; i++) + if (ti[i].in_pass == pass) + fprintf (stderr, "%s ", or32_opcodes[i].name); + + fprintf (stderr, "\n"); + exit (1); + } + + debug (8, "%i> #### %i << %i (%i) ####\n", + cur - automata, best_len, best_first, ninstr); + + *cur = best_first; + cur++; + *cur = (1 << best_len) - 1; + cur++; + next = cur; + + /* Allocate space for pointers. */ + cur += 1 << best_len; + cur_mask = (1 << (unsigned long)best_len) - 1; + + for (i = 0; i < (1 << (unsigned long)best_len); i++) + { + int j; + unsigned long *c; + + curpass++; + for (j = 0; j < or32_num_opcodes; j++) + if (ti[j].in_pass == pass + && ((ti[j].insn >> best_first) & cur_mask) == (unsigned long) i + && ((ti[j].insn_mask >> best_first) & cur_mask) == cur_mask) + ti[j].in_pass = curpass; + + debug (9, "%08X %08X %i\n", mask, cur_mask, best_first); + c = cover_insn (cur, curpass, mask & (~(cur_mask << best_first))); + if (c) + { + debug (8, "%i> #%X -> %u\n", next - automata, i, cur - automata); + *next = cur - automata; + cur = c; + } + else + { + debug (8, "%i> N/A\n", next - automata); + *next = 0; + } + next++; + } + } + return cur; +} + +/* Returns number of nonzero bits. */ + +static int +num_ones (value) + unsigned long value; +{ + int c = 0; + + while (value) + { + if (value & 1) + c++; + value >>= 1; + } + return c; +} + +/* Utility function, which converts parameters from or32_opcode format to more binary form. + Parameters are stored in ti struct. */ + +static struct insn_op_struct * +parse_params (opcode, cur) + const struct or32_opcode * opcode; + struct insn_op_struct * cur; +{ + char *args = opcode->args; + int i, type; + + i = 0; + type = 0; + /* In case we don't have any parameters, we add dummy read from r0. */ + + if (!(*args)) + { + cur->type = OPTYPE_REG | OPTYPE_OP | OPTYPE_LAST; + cur->data = 0; + debug (9, "#%08X %08X\n", cur->type, cur->data); + cur++; + return cur; + } + + while (*args != '\0') + { + if (*args == 'r') + { + args++; + type |= OPTYPE_REG; + } + else if (ISALPHA (*args)) + { + unsigned long arg; + + arg = insn_extract (*args, opcode->encoding); + debug (9, "%s : %08X ------\n", opcode->name, arg); + if (letter_signed (*args)) + { + type |= OPTYPE_SIG; + type |= ((num_ones (arg) - 1) << OPTYPE_SBIT_SHR) & OPTYPE_SBIT; + } + + /* Split argument to sequences of consecutive ones. */ + while (arg) + { + int shr = 0; + unsigned long tmp = arg, mask = 0; + + while ((tmp & 1) == 0) + { + shr++; + tmp >>= 1; + } + while (tmp & 1) + { + mask++; + tmp >>= 1; + } + cur->type = type | shr; + cur->data = mask; + arg &= ~(((1 << mask) - 1) << shr); + debug (6, "|%08X %08X\n", cur->type, cur->data); + cur++; + } + args++; + } + else if (*args == '(') + { + /* Next param is displacement. Later we will treat them as one operand. */ + cur--; + cur->type = type | cur->type | OPTYPE_DIS | OPTYPE_OP; + debug (9, ">%08X %08X\n", cur->type, cur->data); + cur++; + type = 0; + i++; + args++; + } + else if (*args == OPERAND_DELIM) + { + cur--; + cur->type = type | cur->type | OPTYPE_OP; + debug (9, ">%08X %08X\n", cur->type, cur->data); + cur++; + type = 0; + i++; + args++; + } + else if (*args == '0') + { + cur->type = type; + cur->data = 0; + debug (9, ">%08X %08X\n", cur->type, cur->data); + cur++; + type = 0; + i++; + args++; + } + else if (*args == ')') + args++; + else + { + fprintf (stderr, "%s : parse error in args.\n", opcode->name); + exit (1); + } + } + + cur--; + cur->type = type | cur->type | OPTYPE_OP | OPTYPE_LAST; + debug (9, "#%08X %08X\n", cur->type, cur->data); + cur++; + + return cur; +} + +/* Constructs new automata based on or32_opcodes array. */ + +void +build_automata () +{ + int i; + unsigned long *end; + struct insn_op_struct *cur; + + automata = (unsigned long *) malloc (MAX_AUTOMATA_SIZE * sizeof (unsigned long)); + ti = (struct temp_insn_struct *) malloc (sizeof (struct temp_insn_struct) * or32_num_opcodes); + + nuncovered = or32_num_opcodes; + printf ("Building automata... "); + /* Build temporary information about instructions. */ + for (i = 0; i < or32_num_opcodes; i++) + { + unsigned long ones, zeros; + char *encoding = or32_opcodes[i].encoding; + + ones = insn_extract('1', encoding); + zeros = insn_extract('0', encoding); + + ti[i].insn_mask = ones | zeros; + ti[i].insn = ones; + ti[i].in_pass = curpass = 0; + + /*debug(9, "%s: %s %08X %08X\n", or32_opcodes[i].name, + or32_opcodes[i].encoding, ti[i].insn_mask, ti[i].insn);*/ + } + + /* Until all are covered search for best criteria to separate them. */ + end = cover_insn (automata, curpass, 0xFFFFFFFF); + + if (end - automata > MAX_AUTOMATA_SIZE) + { + fprintf (stderr, "Automata too large. Increase MAX_AUTOMATA_SIZE."); + exit (1); + } + + printf ("done, num uncovered: %i/%i.\n", nuncovered, or32_num_opcodes); + printf ("Parsing operands data... "); + + op_data = (struct insn_op_struct *) malloc (MAX_OP_TABLE_SIZE * sizeof (struct insn_op_struct)); + op_start = (struct insn_op_struct **) malloc (or32_num_opcodes * sizeof (struct insn_op_struct *)); + cur = op_data; + + for (i = 0; i < or32_num_opcodes; i++) + { + op_start[i] = cur; + cur = parse_params (&or32_opcodes[i], cur); + + if (cur - op_data > MAX_OP_TABLE_SIZE) + { + fprintf (stderr, "Operands table too small, increase MAX_OP_TABLE_SIZE.\n"); + exit (1); + } + } + printf ("done.\n"); +} + +void +destruct_automata () +{ + free (ti); + free (automata); + free (op_data); + free (op_start); +} + +/* Decodes instruction and returns instruction index. */ + +int +insn_decode (insn) + unsigned int insn; +{ + unsigned long *a = automata; + int i; + + while (!(*a & LEAF_FLAG)) + { + unsigned int first = *a; + + debug (9, "%i ", a - automata); + + a++; + i = (insn >> first) & *a; + a++; + if (!*(a + i)) + { + /* Invalid instruction found? */ + debug (9, "XXX\n", i); + return -1; + } + a = automata + *(a + i); + } + + i = *a & ~LEAF_FLAG; + + debug (9, "%i\n", i); + + /* Final check - do we have direct match? + (based on or32_opcodes this should be the only possibility, + but in case of invalid/missing instruction we must perform a check) */ + if ((ti[i].insn_mask & insn) == ti[i].insn) + return i; + else + return -1; +} + +static char disassembled_str[50]; +char *disassembled = &disassembled_str[0]; + +/* Automagically does zero- or sign- extension and also finds correct + sign bit position if sign extension is correct extension. Which extension + is proper is figured out from letter description. */ + +static unsigned long +extend_imm (imm, l) + unsigned long imm; + char l; +{ + unsigned long mask; + int letter_bits; + + /* First truncate all bits above valid range for this letter + in case it is zero extend. */ + letter_bits = letter_range (l); + mask = (1 << letter_bits) - 1; + imm &= mask; + + /* Do sign extend if this is the right one. */ + if (letter_signed(l) && (imm >> (letter_bits - 1))) + imm |= (~mask); + + return imm; +} + +static unsigned long +or32_extract (param_ch, enc_initial, insn) + char param_ch; + char *enc_initial; + unsigned long insn; +{ + char *enc; + unsigned long ret = 0; + int opc_pos = 0; + int param_pos = 0; + + for (enc = enc_initial; *enc != '\0'; enc++) + if (*enc == param_ch) + { + if (enc - 2 >= enc_initial && (*(enc - 2) == '0') && (*(enc - 1) == 'x')) + continue; + else + param_pos++; + } + +#if DEBUG + printf ("or32_extract: %x ", param_pos); +#endif + opc_pos = 32; + + for (enc = enc_initial; *enc != '\0'; ) + if ((*enc == '0') && (*(enc + 1) == 'x')) + { + opc_pos -= 4; + if ((param_ch == '0') || (param_ch == '1')) + { + unsigned long tmp = strtol (enc, NULL, 16); +#if DEBUG + printf (" enc=%s, tmp=%x ", enc, tmp); +#endif + if (param_ch == '0') + tmp = 15 - tmp; + ret |= tmp << opc_pos; + } + enc += 3; + } + else if ((*enc == '0') || (*enc == '1')) + { + opc_pos--; + if (param_ch == *enc) + ret |= 1 << opc_pos; + enc++; + } + else if (*enc == param_ch) + { + opc_pos--; + param_pos--; +#if DEBUG + printf ("\n ret=%x opc_pos=%x, param_pos=%x\n", ret, opc_pos, param_pos); +#endif + if (ISLOWER (param_ch)) + ret -= ((insn >> opc_pos) & 0x1) << param_pos; + else + ret += ((insn >> opc_pos) & 0x1) << param_pos; + enc++; + } + else if (ISALPHA (*enc)) + { + opc_pos--; + enc++; + } + else if (*enc == '-') + { + opc_pos--; + enc++; + } + else + enc++; + +#if DEBUG + printf ("ret=%x\n", ret); +#endif + return ret; +} + +/* Print register. Used only by print_insn. */ + +static void +or32_print_register (param_ch, encoding, insn) + char param_ch; + char *encoding; + unsigned long insn; +{ + int regnum = or32_extract(param_ch, encoding, insn); + + sprintf (disassembled, "%sr%d", disassembled, regnum); +} + +/* Print immediate. Used only by print_insn. */ + +static void +or32_print_immediate (param_ch, encoding, insn) + char param_ch; + char *encoding; + unsigned long insn; +{ + int imm = or32_extract (param_ch, encoding, insn); + + imm = extend_imm (imm, param_ch); + + if (letter_signed (param_ch)) + { + if (imm < 0) + sprintf (disassembled, "%s%d", disassembled, imm); + else + sprintf (disassembled, "%s0x%x", disassembled, imm); + } + else + sprintf (disassembled, "%s%#x", disassembled, imm); +} + +/* Disassemble one instruction from insn to disassemble. + Return the size of the instruction. */ + +int +disassemble_insn (insn) + unsigned long insn; +{ + int index; + index = insn_decode (insn); + + if (index >= 0) + { + struct or32_opcode const *opcode = &or32_opcodes[index]; + char *s; + + sprintf (disassembled, "%s ", opcode->name); + for (s = opcode->args; *s != '\0'; ++s) + { + switch (*s) + { + case '\0': + return 4; + + case 'r': + or32_print_register (*++s, opcode->encoding, insn); + break; + + default: + if (strchr (opcode->encoding, *s)) + or32_print_immediate (*s, opcode->encoding, insn); + else + sprintf (disassembled, "%s%c", disassembled, *s); + } + } + } + else + { + /* This used to be %8x for binutils. */ + sprintf (disassembled, "%s.word 0x%08lx", disassembled, insn); + } + + return insn_len (insn); +} diff --git a/opcodes/po/POTFILES.in b/opcodes/po/POTFILES.in index e8d2ba883..43e34cd8c 100644 --- a/opcodes/po/POTFILES.in +++ b/opcodes/po/POTFILES.in @@ -78,6 +78,8 @@ openrisc-dis.c openrisc-ibld.c openrisc-opc.c openrisc-opc.h +or32-dis.c +or32-opc.c pdp11-dis.c pdp11-opc.c pj-dis.c diff --git a/opcodes/po/fr.po b/opcodes/po/fr.po index 15f77f835..385341461 100644 --- a/opcodes/po/fr.po +++ b/opcodes/po/fr.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: opcodes 2.12-pre020121\n" -"POT-Creation-Date: 2002-01-17 13:58+0000\n" +"POT-Creation-Date: 2002-01-31 17:10+0000\n" "PO-Revision-Date: 2002-01-25 08:00-0500\n" "Last-Translator: Michel Robitaille \n" "Language-Team: French \n" @@ -25,21 +25,21 @@ msgstr "saut indic msgid "Illegal limm reference in last instruction!\n" msgstr "Référence limite illégale dans la dernière instruction!\n" -#: arm-dis.c:509 +#: arm-dis.c:502 msgid "" msgstr "" -#: arm-dis.c:1019 +#: arm-dis.c:1012 #, c-format msgid "Unrecognised register name set: %s\n" msgstr "Nom de jeu de registres inconnu: %s\n" -#: arm-dis.c:1026 +#: arm-dis.c:1019 #, c-format msgid "Unrecognised disassembler option: %s\n" msgstr "Option du désassembleur non reconnue: %s\n" -#: arm-dis.c:1198 +#: arm-dis.c:1191 msgid "" "\n" "The following ARM specific disassembler options are supported for use with\n" @@ -63,6 +63,7 @@ msgid "unknown constraint `%c'" msgstr "contrainte inconnue `%c'" #: cgen-asm.c:346 fr30-ibld.c:195 m32r-ibld.c:195 openrisc-ibld.c:195 +#: xstormy16-ibld.c:195 #, c-format msgid "operand out of range (%ld not between %ld and %ld)" msgstr "opérande hors gamme (%ld n'est pas entre %ld et %ld)" @@ -88,96 +89,101 @@ msgstr "Erreur inconnue %d\n" msgid "Address 0x%x is out of bounds.\n" msgstr "Adresse 0x%x est hors gamme.\n" -#: fr30-asm.c:324 m32r-asm.c:326 openrisc-asm.c:245 +#: fr30-asm.c:323 m32r-asm.c:325 openrisc-asm.c:244 xstormy16-asm.c:231 #, c-format msgid "Unrecognized field %d while parsing.\n" msgstr "Champ non reconnu %d lors de l'analyse.\n" -#: fr30-asm.c:374 m32r-asm.c:376 openrisc-asm.c:295 +#: fr30-asm.c:373 m32r-asm.c:375 openrisc-asm.c:294 xstormy16-asm.c:281 msgid "missing mnemonic in syntax string" msgstr "mnémonique manquante dans la syntaxe de la chaîne" #. We couldn't parse it. -#: fr30-asm.c:510 fr30-asm.c:514 fr30-asm.c:601 fr30-asm.c:703 m32r-asm.c:512 -#: m32r-asm.c:516 m32r-asm.c:603 m32r-asm.c:705 openrisc-asm.c:431 -#: openrisc-asm.c:435 openrisc-asm.c:522 openrisc-asm.c:624 +#: fr30-asm.c:509 fr30-asm.c:513 fr30-asm.c:600 fr30-asm.c:702 m32r-asm.c:511 +#: m32r-asm.c:515 m32r-asm.c:602 m32r-asm.c:704 openrisc-asm.c:430 +#: openrisc-asm.c:434 openrisc-asm.c:521 openrisc-asm.c:623 +#: xstormy16-asm.c:417 xstormy16-asm.c:421 xstormy16-asm.c:508 +#: xstormy16-asm.c:610 msgid "unrecognized instruction" msgstr "instruction non reconnue" -#: fr30-asm.c:557 m32r-asm.c:559 openrisc-asm.c:478 +#: fr30-asm.c:556 m32r-asm.c:558 openrisc-asm.c:477 xstormy16-asm.c:464 #, c-format msgid "syntax error (expected char `%c', found `%c')" msgstr "erreur de syntaxe (caractère `%c' attendu, `%c' obtenu)" -#: fr30-asm.c:567 m32r-asm.c:569 openrisc-asm.c:488 +#: fr30-asm.c:566 m32r-asm.c:568 openrisc-asm.c:487 xstormy16-asm.c:474 #, c-format msgid "syntax error (expected char `%c', found end of instruction)" -msgstr "erreur de syntaxe (caractère `%c' attendu, fin de l'instruction obtenue)" +msgstr "" +"erreur de syntaxe (caractère `%c' attendu, fin de l'instruction obtenue)" -#: fr30-asm.c:595 m32r-asm.c:597 openrisc-asm.c:516 +#: fr30-asm.c:594 m32r-asm.c:596 openrisc-asm.c:515 xstormy16-asm.c:502 msgid "junk at end of line" msgstr "rebut à la fin de la ligne" -#: fr30-asm.c:702 m32r-asm.c:704 openrisc-asm.c:623 +#: fr30-asm.c:701 m32r-asm.c:703 openrisc-asm.c:622 xstormy16-asm.c:609 msgid "unrecognized form of instruction" msgstr "forme d'instruction non reconnue" -#: fr30-asm.c:714 m32r-asm.c:716 openrisc-asm.c:635 +#: fr30-asm.c:713 m32r-asm.c:715 openrisc-asm.c:634 xstormy16-asm.c:621 #, c-format msgid "bad instruction `%.50s...'" msgstr "instruction erronée `%.50s...'" -#: fr30-asm.c:717 m32r-asm.c:719 openrisc-asm.c:638 +#: fr30-asm.c:716 m32r-asm.c:718 openrisc-asm.c:637 xstormy16-asm.c:624 #, c-format msgid "bad instruction `%.50s'" msgstr "instruction erronée `%.50s'" #. Default text to print if an instruction isn't recognized. #: fr30-dis.c:39 m32r-dis.c:39 mmix-dis.c:282 openrisc-dis.c:39 +#: xstormy16-dis.c:39 msgid "*unknown*" msgstr "*inconnu*" -#: fr30-dis.c:319 m32r-dis.c:250 openrisc-dis.c:137 +#: fr30-dis.c:318 m32r-dis.c:249 openrisc-dis.c:136 xstormy16-dis.c:169 #, c-format msgid "Unrecognized field %d while printing insn.\n" msgstr "Champ non reconnu %d lors de l'impression insn.\n" -#: fr30-ibld.c:166 m32r-ibld.c:166 openrisc-ibld.c:166 +#: fr30-ibld.c:166 m32r-ibld.c:166 openrisc-ibld.c:166 xstormy16-ibld.c:166 #, c-format msgid "operand out of range (%ld not between %ld and %lu)" msgstr "opérande hors gamme (%ld n'est pas entre %ld et %lu)" -#: fr30-ibld.c:179 m32r-ibld.c:179 openrisc-ibld.c:179 +#: fr30-ibld.c:179 m32r-ibld.c:179 openrisc-ibld.c:179 xstormy16-ibld.c:179 #, c-format msgid "operand out of range (%lu not between 0 and %lu)" msgstr "opérande hors gamme (%lu n'est pas entre 0 et %lu)" -#: fr30-ibld.c:731 m32r-ibld.c:660 openrisc-ibld.c:634 +#: fr30-ibld.c:730 m32r-ibld.c:659 openrisc-ibld.c:633 xstormy16-ibld.c:678 #, c-format msgid "Unrecognized field %d while building insn.\n" msgstr "Champ non reconnu %d lors de la construction de insn.\n" -#: fr30-ibld.c:939 m32r-ibld.c:794 openrisc-ibld.c:737 +#: fr30-ibld.c:937 m32r-ibld.c:792 openrisc-ibld.c:735 xstormy16-ibld.c:826 #, c-format msgid "Unrecognized field %d while decoding insn.\n" msgstr "Champ non reconnu %d lors du décodage de insn.\n" -#: fr30-ibld.c:1088 m32r-ibld.c:904 openrisc-ibld.c:817 +#: fr30-ibld.c:1086 m32r-ibld.c:902 openrisc-ibld.c:815 xstormy16-ibld.c:939 #, c-format msgid "Unrecognized field %d while getting int operand.\n" msgstr "Champ non reconnu %d lors de la prise d'une opérande int.\n" -#: fr30-ibld.c:1217 m32r-ibld.c:994 openrisc-ibld.c:877 +#: fr30-ibld.c:1215 m32r-ibld.c:992 openrisc-ibld.c:875 xstormy16-ibld.c:1032 #, c-format msgid "Unrecognized field %d while getting vma operand.\n" msgstr "Champ non reconnu %d lors de la prise d'une opérande vma.\n" -#: fr30-ibld.c:1351 m32r-ibld.c:1092 openrisc-ibld.c:946 +#: fr30-ibld.c:1349 m32r-ibld.c:1090 openrisc-ibld.c:944 xstormy16-ibld.c:1134 #, c-format msgid "Unrecognized field %d while setting int operand.\n" msgstr "Champ non reconnu %d lors de l'initialisation d'une opérande int.\n" -#: fr30-ibld.c:1473 m32r-ibld.c:1178 openrisc-ibld.c:1003 +#: fr30-ibld.c:1471 m32r-ibld.c:1176 openrisc-ibld.c:1001 +#: xstormy16-ibld.c:1224 #, c-format msgid "Unrecognized field %d while setting vma operand.\n" msgstr "Champ non reconnu %d lors de l'initialisation d'une opérande vma.\n" @@ -283,7 +289,9 @@ msgstr "option conditionnelle invalide" #: ppc-opc.c:800 msgid "attempt to set y bit when using + or - modifier" -msgstr "tentative d'initialisation du bit y lorsque le modificateur + ou - a été utilisé" +msgstr "" +"tentative d'initialisation du bit y lorsque le modificateur + ou - a été " +"utilisé" #: ppc-opc.c:832 ppc-opc.c:884 msgid "offset not a multiple of 4" @@ -299,7 +307,9 @@ msgstr "d #: ppc-opc.c:910 msgid "ignoring least significant bits in branch offset" -msgstr "Les derniers bits les moins significatifs sont ignorés dans le décalage de branchement" +msgstr "" +"Les derniers bits les moins significatifs sont ignorés dans le décalage de " +"branchement" #: ppc-opc.c:944 ppc-opc.c:981 msgid "illegal bitmask" @@ -396,5 +406,36 @@ msgstr "La valeur imm msgid "immediate value must be even" msgstr "La valeur immédiate doit être paire." +#: xstormy16-asm.c:74 +#, fuzzy +msgid "Bad register in preincrement" +msgstr "registre index n'est pas dans la plage de chargement" + +#: xstormy16-asm.c:79 +#, fuzzy +msgid "Bad register in postincrement" +msgstr "registre invalide pour un ajustement de la pile" + +#: xstormy16-asm.c:81 +#, fuzzy +msgid "Bad register name" +msgstr "registre index n'est pas dans la plage de chargement" + +#: xstormy16-asm.c:85 +msgid "Label conflicts with register name" +msgstr "" + +#: xstormy16-asm.c:89 +msgid "Label conflicts with `Rx'" +msgstr "" + +#: xstormy16-asm.c:91 +msgid "Bad immediate expression" +msgstr "" + +#: xstormy16-asm.c:120 +msgid "Small operand was not an immediate number" +msgstr "" + #~ msgid "unrecognized keyword/register name" #~ msgstr "nom de mot clé ou de registre non reconnu" diff --git a/opcodes/po/opcodes.pot b/opcodes/po/opcodes.pot index 4e079cd45..aed28c2f8 100644 --- a/opcodes/po/opcodes.pot +++ b/opcodes/po/opcodes.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2002-01-17 13:58+0000\n" +"POT-Creation-Date: 2002-01-31 17:10+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -26,21 +26,21 @@ msgstr "" msgid "Illegal limm reference in last instruction!\n" msgstr "" -#: arm-dis.c:509 +#: arm-dis.c:502 msgid "" msgstr "" -#: arm-dis.c:1019 +#: arm-dis.c:1012 #, c-format msgid "Unrecognised register name set: %s\n" msgstr "" -#: arm-dis.c:1026 +#: arm-dis.c:1019 #, c-format msgid "Unrecognised disassembler option: %s\n" msgstr "" -#: arm-dis.c:1198 +#: arm-dis.c:1191 msgid "" "\n" "The following ARM specific disassembler options are supported for use with\n" @@ -61,6 +61,7 @@ msgid "unknown constraint `%c'" msgstr "" #: cgen-asm.c:346 fr30-ibld.c:195 m32r-ibld.c:195 openrisc-ibld.c:195 +#: xstormy16-ibld.c:195 #, c-format msgid "operand out of range (%ld not between %ld and %ld)" msgstr "" @@ -86,96 +87,100 @@ msgstr "" msgid "Address 0x%x is out of bounds.\n" msgstr "" -#: fr30-asm.c:324 m32r-asm.c:326 openrisc-asm.c:245 +#: fr30-asm.c:323 m32r-asm.c:325 openrisc-asm.c:244 xstormy16-asm.c:231 #, c-format msgid "Unrecognized field %d while parsing.\n" msgstr "" -#: fr30-asm.c:374 m32r-asm.c:376 openrisc-asm.c:295 +#: fr30-asm.c:373 m32r-asm.c:375 openrisc-asm.c:294 xstormy16-asm.c:281 msgid "missing mnemonic in syntax string" msgstr "" #. We couldn't parse it. -#: fr30-asm.c:510 fr30-asm.c:514 fr30-asm.c:601 fr30-asm.c:703 m32r-asm.c:512 -#: m32r-asm.c:516 m32r-asm.c:603 m32r-asm.c:705 openrisc-asm.c:431 -#: openrisc-asm.c:435 openrisc-asm.c:522 openrisc-asm.c:624 +#: fr30-asm.c:509 fr30-asm.c:513 fr30-asm.c:600 fr30-asm.c:702 m32r-asm.c:511 +#: m32r-asm.c:515 m32r-asm.c:602 m32r-asm.c:704 openrisc-asm.c:430 +#: openrisc-asm.c:434 openrisc-asm.c:521 openrisc-asm.c:623 +#: xstormy16-asm.c:417 xstormy16-asm.c:421 xstormy16-asm.c:508 +#: xstormy16-asm.c:610 msgid "unrecognized instruction" msgstr "" -#: fr30-asm.c:557 m32r-asm.c:559 openrisc-asm.c:478 +#: fr30-asm.c:556 m32r-asm.c:558 openrisc-asm.c:477 xstormy16-asm.c:464 #, c-format msgid "syntax error (expected char `%c', found `%c')" msgstr "" -#: fr30-asm.c:567 m32r-asm.c:569 openrisc-asm.c:488 +#: fr30-asm.c:566 m32r-asm.c:568 openrisc-asm.c:487 xstormy16-asm.c:474 #, c-format msgid "syntax error (expected char `%c', found end of instruction)" msgstr "" -#: fr30-asm.c:595 m32r-asm.c:597 openrisc-asm.c:516 +#: fr30-asm.c:594 m32r-asm.c:596 openrisc-asm.c:515 xstormy16-asm.c:502 msgid "junk at end of line" msgstr "" -#: fr30-asm.c:702 m32r-asm.c:704 openrisc-asm.c:623 +#: fr30-asm.c:701 m32r-asm.c:703 openrisc-asm.c:622 xstormy16-asm.c:609 msgid "unrecognized form of instruction" msgstr "" -#: fr30-asm.c:714 m32r-asm.c:716 openrisc-asm.c:635 +#: fr30-asm.c:713 m32r-asm.c:715 openrisc-asm.c:634 xstormy16-asm.c:621 #, c-format msgid "bad instruction `%.50s...'" msgstr "" -#: fr30-asm.c:717 m32r-asm.c:719 openrisc-asm.c:638 +#: fr30-asm.c:716 m32r-asm.c:718 openrisc-asm.c:637 xstormy16-asm.c:624 #, c-format msgid "bad instruction `%.50s'" msgstr "" #. Default text to print if an instruction isn't recognized. #: fr30-dis.c:39 m32r-dis.c:39 mmix-dis.c:282 openrisc-dis.c:39 +#: xstormy16-dis.c:39 msgid "*unknown*" msgstr "" -#: fr30-dis.c:319 m32r-dis.c:250 openrisc-dis.c:137 +#: fr30-dis.c:318 m32r-dis.c:249 openrisc-dis.c:136 xstormy16-dis.c:169 #, c-format msgid "Unrecognized field %d while printing insn.\n" msgstr "" -#: fr30-ibld.c:166 m32r-ibld.c:166 openrisc-ibld.c:166 +#: fr30-ibld.c:166 m32r-ibld.c:166 openrisc-ibld.c:166 xstormy16-ibld.c:166 #, c-format msgid "operand out of range (%ld not between %ld and %lu)" msgstr "" -#: fr30-ibld.c:179 m32r-ibld.c:179 openrisc-ibld.c:179 +#: fr30-ibld.c:179 m32r-ibld.c:179 openrisc-ibld.c:179 xstormy16-ibld.c:179 #, c-format msgid "operand out of range (%lu not between 0 and %lu)" msgstr "" -#: fr30-ibld.c:731 m32r-ibld.c:660 openrisc-ibld.c:634 +#: fr30-ibld.c:730 m32r-ibld.c:659 openrisc-ibld.c:633 xstormy16-ibld.c:678 #, c-format msgid "Unrecognized field %d while building insn.\n" msgstr "" -#: fr30-ibld.c:939 m32r-ibld.c:794 openrisc-ibld.c:737 +#: fr30-ibld.c:937 m32r-ibld.c:792 openrisc-ibld.c:735 xstormy16-ibld.c:826 #, c-format msgid "Unrecognized field %d while decoding insn.\n" msgstr "" -#: fr30-ibld.c:1088 m32r-ibld.c:904 openrisc-ibld.c:817 +#: fr30-ibld.c:1086 m32r-ibld.c:902 openrisc-ibld.c:815 xstormy16-ibld.c:939 #, c-format msgid "Unrecognized field %d while getting int operand.\n" msgstr "" -#: fr30-ibld.c:1217 m32r-ibld.c:994 openrisc-ibld.c:877 +#: fr30-ibld.c:1215 m32r-ibld.c:992 openrisc-ibld.c:875 xstormy16-ibld.c:1032 #, c-format msgid "Unrecognized field %d while getting vma operand.\n" msgstr "" -#: fr30-ibld.c:1351 m32r-ibld.c:1092 openrisc-ibld.c:946 +#: fr30-ibld.c:1349 m32r-ibld.c:1090 openrisc-ibld.c:944 xstormy16-ibld.c:1134 #, c-format msgid "Unrecognized field %d while setting int operand.\n" msgstr "" -#: fr30-ibld.c:1473 m32r-ibld.c:1178 openrisc-ibld.c:1003 +#: fr30-ibld.c:1471 m32r-ibld.c:1176 openrisc-ibld.c:1001 +#: xstormy16-ibld.c:1224 #, c-format msgid "Unrecognized field %d while setting vma operand.\n" msgstr "" @@ -392,3 +397,31 @@ msgstr "" #: v850-opc.c:375 msgid "immediate value must be even" msgstr "" + +#: xstormy16-asm.c:74 +msgid "Bad register in preincrement" +msgstr "" + +#: xstormy16-asm.c:79 +msgid "Bad register in postincrement" +msgstr "" + +#: xstormy16-asm.c:81 +msgid "Bad register name" +msgstr "" + +#: xstormy16-asm.c:85 +msgid "Label conflicts with register name" +msgstr "" + +#: xstormy16-asm.c:89 +msgid "Label conflicts with `Rx'" +msgstr "" + +#: xstormy16-asm.c:91 +msgid "Bad immediate expression" +msgstr "" + +#: xstormy16-asm.c:120 +msgid "Small operand was not an immediate number" +msgstr "" diff --git a/opcodes/po/sv.po b/opcodes/po/sv.po index 6fddbd844..a6eda077b 100644 --- a/opcodes/po/sv.po +++ b/opcodes/po/sv.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: opcodes 2.11\n" -"POT-Creation-Date: 2002-01-17 13:58+0000\n" +"POT-Creation-Date: 2002-01-31 17:10+0000\n" "PO-Revision-Date: 2001-10-23 15:35+0200\n" "Last-Translator: Christian Rose \n" "Language-Team: Swedish \n" @@ -25,21 +25,21 @@ msgstr "hopptipset ligger inte p msgid "Illegal limm reference in last instruction!\n" msgstr "Otillåten limm-referens i sista instruktionen!\n" -#: arm-dis.c:509 +#: arm-dis.c:502 msgid "" msgstr "" -#: arm-dis.c:1019 +#: arm-dis.c:1012 #, c-format msgid "Unrecognised register name set: %s\n" msgstr "Okänt registernamn är angivet: %s\n" -#: arm-dis.c:1026 +#: arm-dis.c:1019 #, c-format msgid "Unrecognised disassembler option: %s\n" msgstr "Okänt disassembleralternativ: %s\n" -#: arm-dis.c:1198 +#: arm-dis.c:1191 msgid "" "\n" "The following ARM specific disassembler options are supported for use with\n" @@ -63,6 +63,7 @@ msgid "unknown constraint `%c'" msgstr "okänd begränsning \"%c\"" #: cgen-asm.c:346 fr30-ibld.c:195 m32r-ibld.c:195 openrisc-ibld.c:195 +#: xstormy16-ibld.c:195 #, c-format msgid "operand out of range (%ld not between %ld and %ld)" msgstr "operanden är utanför intervallet (%ld är inte mellan %ld och %ld)" @@ -88,97 +89,101 @@ msgstr "Ok msgid "Address 0x%x is out of bounds.\n" msgstr "Adressen 0x%x ligger utanför tillåtna gränser.\n" -#: fr30-asm.c:324 m32r-asm.c:326 openrisc-asm.c:245 +#: fr30-asm.c:323 m32r-asm.c:325 openrisc-asm.c:244 xstormy16-asm.c:231 #, c-format msgid "Unrecognized field %d while parsing.\n" msgstr "Okänt fält %d vid tolkning.\n" -#: fr30-asm.c:374 m32r-asm.c:376 openrisc-asm.c:295 +#: fr30-asm.c:373 m32r-asm.c:375 openrisc-asm.c:294 xstormy16-asm.c:281 msgid "missing mnemonic in syntax string" msgstr "" #. We couldn't parse it. -#: fr30-asm.c:510 fr30-asm.c:514 fr30-asm.c:601 fr30-asm.c:703 m32r-asm.c:512 -#: m32r-asm.c:516 m32r-asm.c:603 m32r-asm.c:705 openrisc-asm.c:431 -#: openrisc-asm.c:435 openrisc-asm.c:522 openrisc-asm.c:624 +#: fr30-asm.c:509 fr30-asm.c:513 fr30-asm.c:600 fr30-asm.c:702 m32r-asm.c:511 +#: m32r-asm.c:515 m32r-asm.c:602 m32r-asm.c:704 openrisc-asm.c:430 +#: openrisc-asm.c:434 openrisc-asm.c:521 openrisc-asm.c:623 +#: xstormy16-asm.c:417 xstormy16-asm.c:421 xstormy16-asm.c:508 +#: xstormy16-asm.c:610 msgid "unrecognized instruction" msgstr "okänd instruktion" -#: fr30-asm.c:557 m32r-asm.c:559 openrisc-asm.c:478 +#: fr30-asm.c:556 m32r-asm.c:558 openrisc-asm.c:477 xstormy16-asm.c:464 #, c-format msgid "syntax error (expected char `%c', found `%c')" msgstr "syntaxfel (tecknet \"%c\" förväntades, hittade \"%c\")" -#: fr30-asm.c:567 m32r-asm.c:569 openrisc-asm.c:488 +#: fr30-asm.c:566 m32r-asm.c:568 openrisc-asm.c:487 xstormy16-asm.c:474 #, fuzzy, c-format msgid "syntax error (expected char `%c', found end of instruction)" msgstr "syntaxfel (tecknet \"%c\" förväntades, hittade \"%c\")" -#: fr30-asm.c:595 m32r-asm.c:597 openrisc-asm.c:516 +#: fr30-asm.c:594 m32r-asm.c:596 openrisc-asm.c:515 xstormy16-asm.c:502 msgid "junk at end of line" msgstr "skräp vid slutet på raden" -#: fr30-asm.c:702 m32r-asm.c:704 openrisc-asm.c:623 +#: fr30-asm.c:701 m32r-asm.c:703 openrisc-asm.c:622 xstormy16-asm.c:609 #, fuzzy msgid "unrecognized form of instruction" msgstr "okänd instruktion" -#: fr30-asm.c:714 m32r-asm.c:716 openrisc-asm.c:635 +#: fr30-asm.c:713 m32r-asm.c:715 openrisc-asm.c:634 xstormy16-asm.c:621 #, c-format msgid "bad instruction `%.50s...'" msgstr "felaktig instruktion \"%.50s...\"" -#: fr30-asm.c:717 m32r-asm.c:719 openrisc-asm.c:638 +#: fr30-asm.c:716 m32r-asm.c:718 openrisc-asm.c:637 xstormy16-asm.c:624 #, c-format msgid "bad instruction `%.50s'" msgstr "felaktig instruktion \"%.50s\"" #. Default text to print if an instruction isn't recognized. #: fr30-dis.c:39 m32r-dis.c:39 mmix-dis.c:282 openrisc-dis.c:39 +#: xstormy16-dis.c:39 msgid "*unknown*" msgstr "*okänd*" -#: fr30-dis.c:319 m32r-dis.c:250 openrisc-dis.c:137 +#: fr30-dis.c:318 m32r-dis.c:249 openrisc-dis.c:136 xstormy16-dis.c:169 #, c-format msgid "Unrecognized field %d while printing insn.\n" msgstr "Okänt fält %d vid utskrift av instruktion.\n" -#: fr30-ibld.c:166 m32r-ibld.c:166 openrisc-ibld.c:166 +#: fr30-ibld.c:166 m32r-ibld.c:166 openrisc-ibld.c:166 xstormy16-ibld.c:166 #, fuzzy, c-format msgid "operand out of range (%ld not between %ld and %lu)" msgstr "operanden är utanför intervallet (%ld är inte mellan %ld och %ld)" -#: fr30-ibld.c:179 m32r-ibld.c:179 openrisc-ibld.c:179 +#: fr30-ibld.c:179 m32r-ibld.c:179 openrisc-ibld.c:179 xstormy16-ibld.c:179 #, c-format msgid "operand out of range (%lu not between 0 and %lu)" msgstr "operanden utanför intervallet (%lu inte mellan 0 och %lu)" -#: fr30-ibld.c:731 m32r-ibld.c:660 openrisc-ibld.c:634 +#: fr30-ibld.c:730 m32r-ibld.c:659 openrisc-ibld.c:633 xstormy16-ibld.c:678 #, c-format msgid "Unrecognized field %d while building insn.\n" msgstr "Okänt fält %d vid konstruktion av instruktion.\n" -#: fr30-ibld.c:939 m32r-ibld.c:794 openrisc-ibld.c:737 +#: fr30-ibld.c:937 m32r-ibld.c:792 openrisc-ibld.c:735 xstormy16-ibld.c:826 #, c-format msgid "Unrecognized field %d while decoding insn.\n" msgstr "Okänt fält %d vid avkodning av instruktion.\n" -#: fr30-ibld.c:1088 m32r-ibld.c:904 openrisc-ibld.c:817 +#: fr30-ibld.c:1086 m32r-ibld.c:902 openrisc-ibld.c:815 xstormy16-ibld.c:939 #, c-format msgid "Unrecognized field %d while getting int operand.\n" msgstr "Okänt fält %d vid hämtning av heltalsoperand.\n" -#: fr30-ibld.c:1217 m32r-ibld.c:994 openrisc-ibld.c:877 +#: fr30-ibld.c:1215 m32r-ibld.c:992 openrisc-ibld.c:875 xstormy16-ibld.c:1032 #, c-format msgid "Unrecognized field %d while getting vma operand.\n" msgstr "Okänt fält %d vid hämtning av vma-operand.\n" -#: fr30-ibld.c:1351 m32r-ibld.c:1092 openrisc-ibld.c:946 +#: fr30-ibld.c:1349 m32r-ibld.c:1090 openrisc-ibld.c:944 xstormy16-ibld.c:1134 #, c-format msgid "Unrecognized field %d while setting int operand.\n" msgstr "Okänt fält %d vid inställning av heltalsoperand.\n" -#: fr30-ibld.c:1473 m32r-ibld.c:1178 openrisc-ibld.c:1003 +#: fr30-ibld.c:1471 m32r-ibld.c:1176 openrisc-ibld.c:1001 +#: xstormy16-ibld.c:1224 #, c-format msgid "Unrecognized field %d while setting vma operand.\n" msgstr "Okänt fält %d vid inställning av vma-operand.\n" @@ -398,5 +403,36 @@ msgstr "omedelbara v msgid "immediate value must be even" msgstr "omedelbara värdet måste vara jämnt" +#: xstormy16-asm.c:74 +#, fuzzy +msgid "Bad register in preincrement" +msgstr "indexregistret är i inläsningsintervallet" + +#: xstormy16-asm.c:79 +#, fuzzy +msgid "Bad register in postincrement" +msgstr "ogiltigt register för stackjustering" + +#: xstormy16-asm.c:81 +#, fuzzy +msgid "Bad register name" +msgstr "indexregistret är i inläsningsintervallet" + +#: xstormy16-asm.c:85 +msgid "Label conflicts with register name" +msgstr "" + +#: xstormy16-asm.c:89 +msgid "Label conflicts with `Rx'" +msgstr "" + +#: xstormy16-asm.c:91 +msgid "Bad immediate expression" +msgstr "" + +#: xstormy16-asm.c:120 +msgid "Small operand was not an immediate number" +msgstr "" + #~ msgid "unrecognized keyword/register name" #~ msgstr "okänt namn på nyckelord/register" diff --git a/opcodes/po/tr.po b/opcodes/po/tr.po index ecc9651bf..1f92ab372 100644 --- a/opcodes/po/tr.po +++ b/opcodes/po/tr.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: opcodes 2.11\n" -"POT-Creation-Date: 2002-01-17 13:58+0000\n" +"POT-Creation-Date: 2002-01-31 17:10+0000\n" "PO-Revision-Date: 2001-07-29 22:33EEST\n" "Last-Translator: Deniz Akkus Kanca \n" "Language-Team: Turkish \n" @@ -26,21 +26,21 @@ msgstr "atlama i msgid "Illegal limm reference in last instruction!\n" msgstr "Son iþlemde geçersiz limm referansý!\n" -#: arm-dis.c:509 +#: arm-dis.c:502 msgid "" msgstr "" -#: arm-dis.c:1019 +#: arm-dis.c:1012 #, c-format msgid "Unrecognised register name set: %s\n" msgstr "Bilinmeyen yazmaç ad kümesi: %s\n" -#: arm-dis.c:1026 +#: arm-dis.c:1019 #, c-format msgid "Unrecognised disassembler option: %s\n" msgstr "Bilinmeyen karþýt-çevirici seçeneði: %s\n" -#: arm-dis.c:1198 +#: arm-dis.c:1191 msgid "" "\n" "The following ARM specific disassembler options are supported for use with\n" @@ -64,6 +64,7 @@ msgid "unknown constraint `%c'" msgstr "`%c' bilinmeyen kýsýtý" #: cgen-asm.c:346 fr30-ibld.c:195 m32r-ibld.c:195 openrisc-ibld.c:195 +#: xstormy16-ibld.c:195 #, c-format msgid "operand out of range (%ld not between %ld and %ld)" msgstr "Kapsam dýþý terim (%ld, %ld ve %ld arasýnda deðil) " @@ -89,97 +90,101 @@ msgstr "Bilinmeyen hata %d\n" msgid "Address 0x%x is out of bounds.\n" msgstr "0x%x adresi sýnýrlarýn dýþýnda.\n" -#: fr30-asm.c:324 m32r-asm.c:326 openrisc-asm.c:245 +#: fr30-asm.c:323 m32r-asm.c:325 openrisc-asm.c:244 xstormy16-asm.c:231 #, c-format msgid "Unrecognized field %d while parsing.\n" msgstr "Ayrýþtýrma esnasýnda bilinmeyen alan %d bulundu.\n" -#: fr30-asm.c:374 m32r-asm.c:376 openrisc-asm.c:295 +#: fr30-asm.c:373 m32r-asm.c:375 openrisc-asm.c:294 xstormy16-asm.c:281 msgid "missing mnemonic in syntax string" msgstr "" #. We couldn't parse it. -#: fr30-asm.c:510 fr30-asm.c:514 fr30-asm.c:601 fr30-asm.c:703 m32r-asm.c:512 -#: m32r-asm.c:516 m32r-asm.c:603 m32r-asm.c:705 openrisc-asm.c:431 -#: openrisc-asm.c:435 openrisc-asm.c:522 openrisc-asm.c:624 +#: fr30-asm.c:509 fr30-asm.c:513 fr30-asm.c:600 fr30-asm.c:702 m32r-asm.c:511 +#: m32r-asm.c:515 m32r-asm.c:602 m32r-asm.c:704 openrisc-asm.c:430 +#: openrisc-asm.c:434 openrisc-asm.c:521 openrisc-asm.c:623 +#: xstormy16-asm.c:417 xstormy16-asm.c:421 xstormy16-asm.c:508 +#: xstormy16-asm.c:610 msgid "unrecognized instruction" msgstr "bilinmeyen iþlem" -#: fr30-asm.c:557 m32r-asm.c:559 openrisc-asm.c:478 +#: fr30-asm.c:556 m32r-asm.c:558 openrisc-asm.c:477 xstormy16-asm.c:464 #, c-format msgid "syntax error (expected char `%c', found `%c')" msgstr "biçem hatasý (char `%c' beklenirken `%c' bulundu)" -#: fr30-asm.c:567 m32r-asm.c:569 openrisc-asm.c:488 +#: fr30-asm.c:566 m32r-asm.c:568 openrisc-asm.c:487 xstormy16-asm.c:474 #, fuzzy, c-format msgid "syntax error (expected char `%c', found end of instruction)" msgstr "biçem hatasý (char `%c' beklenirken `%c' bulundu)" -#: fr30-asm.c:595 m32r-asm.c:597 openrisc-asm.c:516 +#: fr30-asm.c:594 m32r-asm.c:596 openrisc-asm.c:515 xstormy16-asm.c:502 msgid "junk at end of line" msgstr "Satýr sonu bozuk " -#: fr30-asm.c:702 m32r-asm.c:704 openrisc-asm.c:623 +#: fr30-asm.c:701 m32r-asm.c:703 openrisc-asm.c:622 xstormy16-asm.c:609 #, fuzzy msgid "unrecognized form of instruction" msgstr "bilinmeyen iþlem" -#: fr30-asm.c:714 m32r-asm.c:716 openrisc-asm.c:635 +#: fr30-asm.c:713 m32r-asm.c:715 openrisc-asm.c:634 xstormy16-asm.c:621 #, c-format msgid "bad instruction `%.50s...'" msgstr "geçersiz iþlem `%.50s...'" -#: fr30-asm.c:717 m32r-asm.c:719 openrisc-asm.c:638 +#: fr30-asm.c:716 m32r-asm.c:718 openrisc-asm.c:637 xstormy16-asm.c:624 #, c-format msgid "bad instruction `%.50s'" msgstr "geçersiz iþlem `%.50s'" #. Default text to print if an instruction isn't recognized. #: fr30-dis.c:39 m32r-dis.c:39 mmix-dis.c:282 openrisc-dis.c:39 +#: xstormy16-dis.c:39 msgid "*unknown*" msgstr "*bilinmeyen*" -#: fr30-dis.c:319 m32r-dis.c:250 openrisc-dis.c:137 +#: fr30-dis.c:318 m32r-dis.c:249 openrisc-dis.c:136 xstormy16-dis.c:169 #, c-format msgid "Unrecognized field %d while printing insn.\n" msgstr "yönerge yazdýrýlýrken bilinmeyen alan %d bulundu.\n" -#: fr30-ibld.c:166 m32r-ibld.c:166 openrisc-ibld.c:166 +#: fr30-ibld.c:166 m32r-ibld.c:166 openrisc-ibld.c:166 xstormy16-ibld.c:166 #, fuzzy, c-format msgid "operand out of range (%ld not between %ld and %lu)" msgstr "Kapsam dýþý terim (%ld, %ld ve %ld arasýnda deðil) " -#: fr30-ibld.c:179 m32r-ibld.c:179 openrisc-ibld.c:179 +#: fr30-ibld.c:179 m32r-ibld.c:179 openrisc-ibld.c:179 xstormy16-ibld.c:179 #, c-format msgid "operand out of range (%lu not between 0 and %lu)" msgstr "kapsam dýþý terim (%lu 0 ve %lu arasýnda deðil) " -#: fr30-ibld.c:731 m32r-ibld.c:660 openrisc-ibld.c:634 +#: fr30-ibld.c:730 m32r-ibld.c:659 openrisc-ibld.c:633 xstormy16-ibld.c:678 #, c-format msgid "Unrecognized field %d while building insn.\n" msgstr "Yönerge oluþturulurken bilinmeyen alan %d bulundu.\n" -#: fr30-ibld.c:939 m32r-ibld.c:794 openrisc-ibld.c:737 +#: fr30-ibld.c:937 m32r-ibld.c:792 openrisc-ibld.c:735 xstormy16-ibld.c:826 #, c-format msgid "Unrecognized field %d while decoding insn.\n" msgstr "Yönerge çözümlenirken bilinmeyen alan %d bulundu.\n" -#: fr30-ibld.c:1088 m32r-ibld.c:904 openrisc-ibld.c:817 +#: fr30-ibld.c:1086 m32r-ibld.c:902 openrisc-ibld.c:815 xstormy16-ibld.c:939 #, c-format msgid "Unrecognized field %d while getting int operand.\n" msgstr "`int' terimi alýnýrken bilinmeyen alan %d bulundu.\n" -#: fr30-ibld.c:1217 m32r-ibld.c:994 openrisc-ibld.c:877 +#: fr30-ibld.c:1215 m32r-ibld.c:992 openrisc-ibld.c:875 xstormy16-ibld.c:1032 #, c-format msgid "Unrecognized field %d while getting vma operand.\n" msgstr "`vma' terimi alýnýrken bilinmeyen alan %d bulundu.\n" -#: fr30-ibld.c:1351 m32r-ibld.c:1092 openrisc-ibld.c:946 +#: fr30-ibld.c:1349 m32r-ibld.c:1090 openrisc-ibld.c:944 xstormy16-ibld.c:1134 #, c-format msgid "Unrecognized field %d while setting int operand.\n" msgstr "`int' terimi atanýrken bilinmeyen alan %d bulundu.\n" -#: fr30-ibld.c:1473 m32r-ibld.c:1178 openrisc-ibld.c:1003 +#: fr30-ibld.c:1471 m32r-ibld.c:1176 openrisc-ibld.c:1001 +#: xstormy16-ibld.c:1224 #, c-format msgid "Unrecognized field %d while setting vma operand.\n" msgstr "`vma' terimi atanýrken bilinmeyen alan %d bulundu.\n" @@ -398,5 +403,36 @@ msgstr " msgid "immediate value must be even" msgstr "þimdiki deðer çift sayý olmalý" +#: xstormy16-asm.c:74 +#, fuzzy +msgid "Bad register in preincrement" +msgstr "yükleme aralýðýnda endeks yazmacý" + +#: xstormy16-asm.c:79 +#, fuzzy +msgid "Bad register in postincrement" +msgstr "yýðýt düzeltmesi için geçersiz yazmaç " + +#: xstormy16-asm.c:81 +#, fuzzy +msgid "Bad register name" +msgstr "yükleme aralýðýnda endeks yazmacý" + +#: xstormy16-asm.c:85 +msgid "Label conflicts with register name" +msgstr "" + +#: xstormy16-asm.c:89 +msgid "Label conflicts with `Rx'" +msgstr "" + +#: xstormy16-asm.c:91 +msgid "Bad immediate expression" +msgstr "" + +#: xstormy16-asm.c:120 +msgid "Small operand was not an immediate number" +msgstr "" + #~ msgid "unrecognized keyword/register name" #~ msgstr "Bilinmeyen anahtar/yazmaç adý" -- 2.11.4.GIT