From 8651c5e5f977db488254cdeabb65ebc063be06a4 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 9 Mar 2009 20:42:56 -0700 Subject: Fix RHBZ#489439: dwfl_module_build_id yields wrong vaddr for prelinked DSO --- libdwfl/ChangeLog | 4 ++++ libdwfl/relocate.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/libdwfl/ChangeLog b/libdwfl/ChangeLog index 9633bb5d..ef718266 100644 --- a/libdwfl/ChangeLog +++ b/libdwfl/ChangeLog @@ -1,3 +1,7 @@ +2009-03-09 Roland McGrath + + * relocate.c (__libdwfl_relocate_value): Add MOD->main.bias to sh_addr. + 2009-02-12 Roland McGrath * dwfl_module_build_id.c (__libdwfl_find_build_id): Use diff --git a/libdwfl/relocate.c b/libdwfl/relocate.c index abacc041..ef1daeee 100644 --- a/libdwfl/relocate.c +++ b/libdwfl/relocate.c @@ -1,5 +1,5 @@ /* Relocate debug information. - Copyright (C) 2005, 2006, 2007, 2008 Red Hat, Inc. + Copyright (C) 2005-2009 Red Hat, Inc. This file is part of Red Hat elfutils. Red Hat elfutils is free software; you can redistribute it and/or modify @@ -96,7 +96,7 @@ __libdwfl_relocate_value (Dwfl_Module *mod, Elf *elf, size_t *shstrndx, } /* Apply the adjustment. */ - *value += refshdr->sh_addr; + *value += refshdr->sh_addr + mod->main.bias; return DWFL_E_NOERROR; } -- cgit v1.2.1 From 329ed9f91fbc1b9ab34b5acee2e18dd620cd4d12 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 9 Mar 2009 20:49:53 -0700 Subject: __libdwfl_find_build_id optimization nit --- libdwfl/ChangeLog | 3 +++ libdwfl/dwfl_module_build_id.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/libdwfl/ChangeLog b/libdwfl/ChangeLog index ef718266..d420e3c9 100644 --- a/libdwfl/ChangeLog +++ b/libdwfl/ChangeLog @@ -1,5 +1,8 @@ 2009-03-09 Roland McGrath + * dwfl_module_build_id.c (__libdwfl_find_build_id): Move SHSTRNDX + variable to outer scope, so we cache it for the loop. + * relocate.c (__libdwfl_relocate_value): Add MOD->main.bias to sh_addr. 2009-02-12 Roland McGrath diff --git a/libdwfl/dwfl_module_build_id.c b/libdwfl/dwfl_module_build_id.c index 5d196a9d..f3fcc190 100644 --- a/libdwfl/dwfl_module_build_id.c +++ b/libdwfl/dwfl_module_build_id.c @@ -97,6 +97,7 @@ int internal_function __libdwfl_find_build_id (Dwfl_Module *mod, bool set, Elf *elf) { + size_t shstrndx = SHN_UNDEF; int result = 0; Elf_Scn *scn = elf_nextscn (elf, NULL); @@ -132,7 +133,6 @@ __libdwfl_find_build_id (Dwfl_Module *mod, bool set, Elf *elf) if (likely (shdr != NULL) && shdr->sh_type == SHT_NOTE) { /* Determine the right sh_addr in this module. */ - size_t shstrndx = SHN_UNDEF; GElf_Addr vaddr = 0; if (!(shdr->sh_flags & SHF_ALLOC) || __libdwfl_relocate_value (mod, elf, &shstrndx, -- cgit v1.2.1 From 6a4bdd9b5beb1237f75a8b14c27d58f39be559b3 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 1 Apr 2009 14:25:29 -0700 Subject: Add DW_CFA_GNU_negative_offset_extended. --- libdw/ChangeLog | 4 ++++ libdw/dwarf.h | 1 + 2 files changed, 5 insertions(+) diff --git a/libdw/ChangeLog b/libdw/ChangeLog index d66f34b0..77123b57 100644 --- a/libdw/ChangeLog +++ b/libdw/ChangeLog @@ -1,3 +1,7 @@ +2009-04-01 Roland McGrath + + * dwarf.h: Add DW_CFA_GNU_negative_offset_extended. + 2009-01-28 Roland McGrath * libdwP.h (struct Dwarf_Line_s): Move out of struct Dwarf_Lines_s diff --git a/libdw/dwarf.h b/libdw/dwarf.h index 7048d427..3b9d40c9 100644 --- a/libdw/dwarf.h +++ b/libdw/dwarf.h @@ -670,6 +670,7 @@ enum DW_CFA_MIPS_advance_loc8 = 0x1d, DW_CFA_GNU_window_save = 0x2d, DW_CFA_GNU_args_size = 0x2e, + DW_CFA_GNU_negative_offset_extended = 0x2f, DW_CFA_high_user = 0x3f }; -- cgit v1.2.1 From d5ff667894e1677f227d917cacf4b9ccc5f35b16 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 1 Apr 2009 18:28:41 -0700 Subject: Update elf.h and some tables; fill in sparc backend reloc table. --- backends/ChangeLog | 5 ++ backends/sparc_reloc.def | 164 ++++++++++++++++++++++++--------------------- libebl/ChangeLog | 6 ++ libebl/eblauxvinfo.c | 6 +- libebl/eblsymboltypename.c | 4 +- libelf/ChangeLog | 4 ++ libelf/elf.h | 21 +++++- 7 files changed, 129 insertions(+), 81 deletions(-) diff --git a/backends/ChangeLog b/backends/ChangeLog index 0dbb3eb6..4b48a8fa 100644 --- a/backends/ChangeLog +++ b/backends/ChangeLog @@ -1,3 +1,8 @@ +2009-04-01 Roland McGrath + + * sparc_reloc.def: Update table. + Data from Dave Miller . + 2009-02-15 Roland McGrath * ppc_attrs.c (ppc_check_object_attribute): Handle tag diff --git a/backends/sparc_reloc.def b/backends/sparc_reloc.def index de650974..a7ea52a3 100644 --- a/backends/sparc_reloc.def +++ b/backends/sparc_reloc.def @@ -1,5 +1,5 @@ /* List the relocation types for sparc. -*- C -*- - Copyright (C) 2005 Red Hat, Inc. + Copyright (C) 2009 Red Hat, Inc. This file is part of Red Hat elfutils. Red Hat elfutils is free software; you can redistribute it and/or modify @@ -25,82 +25,94 @@ /* NAME, REL|EXEC|DYN */ -RELOC_TYPE (NONE, 0) -RELOC_TYPE (8, 0) -RELOC_TYPE (16, 0) -RELOC_TYPE (32, 0) -RELOC_TYPE (DISP8, 0) -RELOC_TYPE (DISP16, 0) -RELOC_TYPE (DISP32, 0) -RELOC_TYPE (WDISP30, 0) -RELOC_TYPE (WDISP22, 0) -RELOC_TYPE (HI22, 0) -RELOC_TYPE (22, 0) -RELOC_TYPE (13, 0) -RELOC_TYPE (LO10, 0) -RELOC_TYPE (GOT10, 0) -RELOC_TYPE (GOT13, 0) -RELOC_TYPE (GOT22, 0) -RELOC_TYPE (PC10, 0) -RELOC_TYPE (PC22, 0) -RELOC_TYPE (WPLT30, 0) +RELOC_TYPE (NONE, REL) +RELOC_TYPE (8, REL) +RELOC_TYPE (16, REL) +RELOC_TYPE (32, REL|DYN) +RELOC_TYPE (DISP8, REL) +RELOC_TYPE (DISP16, REL) +RELOC_TYPE (DISP32, REL) +RELOC_TYPE (WDISP30, REL) +RELOC_TYPE (WDISP22, REL) +RELOC_TYPE (HI22, REL) +RELOC_TYPE (22, REL) +RELOC_TYPE (13, REL) +RELOC_TYPE (LO10, REL) +RELOC_TYPE (GOT10, REL) +RELOC_TYPE (GOT13, REL) +RELOC_TYPE (GOT22, REL) +RELOC_TYPE (PC10, REL) +RELOC_TYPE (PC22, REL) +RELOC_TYPE (WPLT30, REL) RELOC_TYPE (COPY, EXEC) RELOC_TYPE (GLOB_DAT, EXEC|DYN) RELOC_TYPE (JMP_SLOT, EXEC|DYN) RELOC_TYPE (RELATIVE, EXEC|DYN) -RELOC_TYPE (UA32, 0) -RELOC_TYPE (PLT32, 0) -RELOC_TYPE (HIPLT22, 0) -RELOC_TYPE (LOPLT10, 0) -RELOC_TYPE (PCPLT32, 0) -RELOC_TYPE (PCPLT22, 0) -RELOC_TYPE (PCPLT10, 0) -RELOC_TYPE (10, 0) -RELOC_TYPE (11, 0) -RELOC_TYPE (64, 0) -RELOC_TYPE (OLO10, 0) -RELOC_TYPE (HH22, 0) -RELOC_TYPE (HM10, 0) -RELOC_TYPE (LM22, 0) -RELOC_TYPE (PC_HH22, 0) -RELOC_TYPE (PC_HM10, 0) -RELOC_TYPE (PC_LM22, 0) -RELOC_TYPE (WDISP16, 0) -RELOC_TYPE (WDISP19, 0) -RELOC_TYPE (7, 0) -RELOC_TYPE (5, 0) -RELOC_TYPE (6, 0) -RELOC_TYPE (DISP64, 0) -RELOC_TYPE (PLT64, 0) -RELOC_TYPE (HIX22, 0) -RELOC_TYPE (LOX10, 0) -RELOC_TYPE (H44, 0) -RELOC_TYPE (M44, 0) -RELOC_TYPE (L44, 0) -RELOC_TYPE (REGISTER, 0) -RELOC_TYPE (UA64, 0) -RELOC_TYPE (UA16, 0) -RELOC_TYPE (TLS_GD_HI22, 0) -RELOC_TYPE (TLS_GD_LO10, 0) -RELOC_TYPE (TLS_GD_ADD, 0) -RELOC_TYPE (TLS_GD_CALL, 0) -RELOC_TYPE (TLS_LDM_HI22, 0) -RELOC_TYPE (TLS_LDM_LO10, 0) -RELOC_TYPE (TLS_LDM_ADD, 0) -RELOC_TYPE (TLS_LDM_CALL, 0) -RELOC_TYPE (TLS_LDO_HIX22, 0) -RELOC_TYPE (TLS_LDO_LOX10, 0) -RELOC_TYPE (TLS_LDO_ADD, 0) -RELOC_TYPE (TLS_IE_HI22, 0) -RELOC_TYPE (TLS_IE_LO10, 0) -RELOC_TYPE (TLS_IE_LD, 0) -RELOC_TYPE (TLS_IE_LDX, 0) -RELOC_TYPE (TLS_IE_ADD, 0) -RELOC_TYPE (TLS_LE_HIX22, 0) -RELOC_TYPE (TLS_LE_LOX10, 0) -RELOC_TYPE (TLS_DTPMOD32, 0) -RELOC_TYPE (TLS_DTPMOD64, 0) -RELOC_TYPE (TLS_DTPOFF32, 0) -RELOC_TYPE (TLS_DTPOFF64, 0) -RELOC_TYPE (TLS_TPOFF32, 0) -RELOC_TYPE (TLS_TPOFF64, 0) +RELOC_TYPE (UA32, REL) +RELOC_TYPE (PLT32, REL) +RELOC_TYPE (HIPLT22, REL) +RELOC_TYPE (LOPLT10, REL) +RELOC_TYPE (PCPLT32, REL) +RELOC_TYPE (PCPLT22, REL) +RELOC_TYPE (PCPLT10, REL) +RELOC_TYPE (10, REL) +RELOC_TYPE (11, REL) +RELOC_TYPE (64, REL|DYN) +RELOC_TYPE (OLO10, REL) +RELOC_TYPE (HH22, REL) +RELOC_TYPE (HM10, REL) +RELOC_TYPE (LM22, REL) +RELOC_TYPE (PC_HH22, REL) +RELOC_TYPE (PC_HM10, REL) +RELOC_TYPE (PC_LM22, REL) +RELOC_TYPE (WDISP16, REL) +RELOC_TYPE (WDISP19, REL) +RELOC_TYPE (GLOB_JMP, EXEC|DYN) +RELOC_TYPE (7, REL) +RELOC_TYPE (5, REL) +RELOC_TYPE (6, REL) +RELOC_TYPE (DISP64, REL) +RELOC_TYPE (PLT64, REL) +RELOC_TYPE (HIX22, REL) +RELOC_TYPE (LOX10, REL) +RELOC_TYPE (H44, REL) +RELOC_TYPE (M44, REL) +RELOC_TYPE (L44, REL) +RELOC_TYPE (REGISTER, REL) +RELOC_TYPE (UA64, REL) +RELOC_TYPE (UA16, REL) +RELOC_TYPE (TLS_GD_HI22, REL) +RELOC_TYPE (TLS_GD_LO10, REL) +RELOC_TYPE (TLS_GD_ADD, REL) +RELOC_TYPE (TLS_GD_CALL, REL) +RELOC_TYPE (TLS_LDM_HI22, REL) +RELOC_TYPE (TLS_LDM_LO10, REL) +RELOC_TYPE (TLS_LDM_ADD, REL) +RELOC_TYPE (TLS_LDM_CALL, REL) +RELOC_TYPE (TLS_LDO_HIX22, REL) +RELOC_TYPE (TLS_LDO_LOX10, REL) +RELOC_TYPE (TLS_LDO_ADD, REL) +RELOC_TYPE (TLS_IE_HI22, REL) +RELOC_TYPE (TLS_IE_LO10, REL) +RELOC_TYPE (TLS_IE_LD, REL) +RELOC_TYPE (TLS_IE_LDX, REL) +RELOC_TYPE (TLS_IE_ADD, REL) +RELOC_TYPE (TLS_LE_HIX22, REL) +RELOC_TYPE (TLS_LE_LOX10, REL) +RELOC_TYPE (TLS_DTPMOD32, DYN) +RELOC_TYPE (TLS_DTPMOD64, DYN) +RELOC_TYPE (TLS_DTPOFF32, DYN) +RELOC_TYPE (TLS_DTPOFF64, DYN) +RELOC_TYPE (TLS_TPOFF32, DYN) +RELOC_TYPE (TLS_TPOFF64, DYN) +RELOC_TYPE (GOTDATA_HIX22, REL) +RELOC_TYPE (GOTDATA_LOX10, REL) +RELOC_TYPE (GOTDATA_OP_HIX22, DYN) +RELOC_TYPE (GOTDATA_OP_LOX10, DYN) +RELOC_TYPE (GOTDATA_OP, DYN) +RELOC_TYPE (H34, REL) +RELOC_TYPE (SIZE32, REL) +RELOC_TYPE (SIZE64, REL) +RELOC_TYPE (GNU_VTINHERIT, REL) +RELOC_TYPE (GNU_VTENTRY, REL) +RELOC_TYPE (REV32, REL) diff --git a/libebl/ChangeLog b/libebl/ChangeLog index f1ba346a..83319c70 100644 --- a/libebl/ChangeLog +++ b/libebl/ChangeLog @@ -1,3 +1,9 @@ +2009-04-01 Roland McGrath + + * eblsymboltypename.c (ebl_symbol_type_name): Add STT_GNU_IFUNC. + + * eblauxvinfo.c (AUXV_TYPES): Add RANDOM and BASE_PLATFORM. + 2009-02-01 Ulrich Drepper * eblreloctypename.c (ebl_reloc_type_name): Return "" diff --git a/libebl/eblauxvinfo.c b/libebl/eblauxvinfo.c index af65c47b..6e02403f 100644 --- a/libebl/eblauxvinfo.c +++ b/libebl/eblauxvinfo.c @@ -1,5 +1,5 @@ /* Describe known auxv types. - Copyright (C) 2007, 2008 Red Hat, Inc. + Copyright (C) 2007, 2008, 2009 Red Hat, Inc. This file is part of Red Hat elfutils. Red Hat elfutils is free software; you can redistribute it and/or modify @@ -78,6 +78,7 @@ TYPE (EGID, "u") \ TYPE (CLKTCK, "u") \ TYPE (PLATFORM, "s") \ + TYPE (BASE_PLATFORM, "s") \ TYPE (HWCAP, "x") \ TYPE (FPUCW, "x") \ TYPE (DCACHEBSIZE, "d") \ @@ -90,7 +91,8 @@ TYPE (L1I_CACHESHAPE, "d") \ TYPE (L1D_CACHESHAPE, "d") \ TYPE (L2_CACHESHAPE, "d") \ - TYPE (L3_CACHESHAPE, "d") + TYPE (L3_CACHESHAPE, "d") \ + TYPE (RANDOM, "p") static const struct { diff --git a/libebl/eblsymboltypename.c b/libebl/eblsymboltypename.c index c7cb2cba..6aae13ee 100644 --- a/libebl/eblsymboltypename.c +++ b/libebl/eblsymboltypename.c @@ -1,5 +1,5 @@ /* Return symbol type name. - Copyright (C) 2001, 2002 Red Hat, Inc. + Copyright (C) 2001, 2002, 2009 Red Hat, Inc. This file is part of Red Hat elfutils. Written by Ulrich Drepper , 2001. @@ -86,6 +86,8 @@ ebl_symbol_type_name (ebl, symbol, buf, len) { if (symbol >= STT_LOPROC && symbol <= STT_HIPROC) snprintf (buf, len, "LOPROC+%d", symbol - STT_LOPROC); + else if (symbol == STT_GNU_IFUNC) + return "GNU_IFUNC"; else if (symbol >= STT_LOOS && symbol <= STT_HIOS) snprintf (buf, len, "LOOS+%d", symbol - STT_LOOS); else diff --git a/libelf/ChangeLog b/libelf/ChangeLog index 9b2a912f..d3b2b1e8 100644 --- a/libelf/ChangeLog +++ b/libelf/ChangeLog @@ -1,3 +1,7 @@ +2009-04-01 Roland McGrath + + * elf.h: Update from glibc. + 2009-02-10 Ulrich Drepper * elf32_updatefile.c (updatefile): For the zeroth section we still diff --git a/libelf/elf.h b/libelf/elf.h index b4d34754..62593502 100644 --- a/libelf/elf.h +++ b/libelf/elf.h @@ -1,5 +1,5 @@ /* This file defines standard ELF types, structures, and macros. - Copyright (C) 1995-2003,2004,2005,2006,2007,2008 + Copyright (C) 1995-2003,2004,2005,2006,2007,2008,2009 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -459,6 +459,7 @@ typedef struct #define STT_TLS 6 /* Symbol is thread-local data object*/ #define STT_NUM 7 /* Number of defined types. */ #define STT_LOOS 10 /* Start of OS-specific */ +#define STT_GNU_IFUNC 10 /* Symbol is indirect code object */ #define STT_HIOS 12 /* End of OS-specific */ #define STT_LOPROC 13 /* Start of processor-specific */ #define STT_HIPROC 15 /* End of processor-specific */ @@ -972,6 +973,10 @@ typedef struct #define AT_SECURE 23 /* Boolean, was exec setuid-like? */ +#define AT_BASE_PLATFORM 24 /* String identifying real platforms.*/ + +#define AT_RANDOM 25 /* Address of 16 random bytes. */ + #define AT_EXECFN 31 /* Filename of executable. */ /* Pointer to the global system page used for system calls and other @@ -1241,6 +1246,7 @@ typedef struct #define R_SPARC_PC_LM22 39 /* Low miggle 22 bits of ... */ #define R_SPARC_WDISP16 40 /* PC relative 16 bit shifted */ #define R_SPARC_WDISP19 41 /* PC relative 19 bit shifted */ +#define R_SPARC_GLOB_JMP 42 /* was part of v9 ABI but was removed */ #define R_SPARC_7 43 /* Direct 7 bit */ #define R_SPARC_5 44 /* Direct 5 bit */ #define R_SPARC_6 45 /* Direct 6 bit */ @@ -1278,8 +1284,19 @@ typedef struct #define R_SPARC_TLS_DTPOFF64 77 #define R_SPARC_TLS_TPOFF32 78 #define R_SPARC_TLS_TPOFF64 79 +#define R_SPARC_GOTDATA_HIX22 80 +#define R_SPARC_GOTDATA_LOX10 81 +#define R_SPARC_GOTDATA_OP_HIX22 82 +#define R_SPARC_GOTDATA_OP_LOX10 83 +#define R_SPARC_GOTDATA_OP 84 +#define R_SPARC_H34 85 +#define R_SPARC_SIZE32 86 +#define R_SPARC_SIZE64 87 +#define R_SPARC_GNU_VTINHERIT 250 +#define R_SPARC_GNU_VTENTRY 251 +#define R_SPARC_REV32 252 /* Keep this the last entry. */ -#define R_SPARC_NUM 80 +#define R_SPARC_NUM 253 /* For Sparc64, legal values for d_tag of Elf64_Dyn. */ -- cgit v1.2.1 From dae7be73abf6861610b95654f6858d066c12b7ab Mon Sep 17 00:00:00 2001 From: beckerde Date: Fri, 3 Apr 2009 00:00:14 +0000 Subject: Sending translation for po/es.po --- po/es.po | 5927 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 5927 insertions(+) create mode 100644 po/es.po diff --git a/po/es.po b/po/es.po new file mode 100644 index 00000000..f897a466 --- /dev/null +++ b/po/es.po @@ -0,0 +1,5927 @@ +msgid "" +msgstr "" +"Project-Id-Version: elfutils\n" +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n" +"POT-Creation-Date: 2009-04-02 19:14+0000\n" +"PO-Revision-Date: \n" +"Last-Translator: Domingo Becker \n" +"Language-Team: Fedora Spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Spanish\n" + +#: ../lib/xmalloc.c:51 +#: ../lib/xmalloc.c:65 +#: ../lib/xmalloc.c:79 +#: ../src/readelf.c:2703 +#: ../src/readelf.c:3038 +#: ../src/unstrip.c:2086 +#: ../src/unstrip.c:2294 +#, c-format +msgid "memory exhausted" +msgstr "memoria agotada" + +#: ../libelf/elf_error.c:81 +#: ../libasm/asm_error.c:62 +#: ../libdw/dwarf_error.c:79 +msgid "no error" +msgstr "ningún error" + +#: ../libelf/elf_error.c:84 +#: ../libasm/asm_error.c:81 +#: ../libdw/dwarf_error.c:80 +msgid "unknown error" +msgstr "error desconocido" + +#: ../libelf/elf_error.c:88 +#, fuzzy +msgid "unknown version" +msgstr "versión desconocida" + +#: ../libelf/elf_error.c:92 +msgid "unknown type" +msgstr "tipo desconocido" + +#: ../libelf/elf_error.c:96 +msgid "invalid `Elf' handle" +msgstr "identificador `Elf' inválido" + +#: ../libelf/elf_error.c:100 +msgid "invalid size of source operand" +msgstr "tamaño inválido del operando fuente" + +#: ../libelf/elf_error.c:104 +msgid "invalid size of destination operand" +msgstr "tamaño inválido del operando destino" + +#: ../libelf/elf_error.c:108 +#: ../src/readelf.c:4589 +#, c-format +msgid "invalid encoding" +msgstr "codificación inválida" + +#: ../libelf/elf_error.c:112 +#: ../libasm/asm_error.c:63 +#: ../libdw/dwarf_error.c:88 +msgid "out of memory" +msgstr "memoria agotada" + +#: ../libelf/elf_error.c:116 +msgid "invalid file descriptor" +msgstr "descriptor de archivo inválido" + +#: ../libelf/elf_error.c:120 +msgid "invalid operation" +msgstr "operación inválida" + +#: ../libelf/elf_error.c:124 +msgid "ELF version not set" +msgstr "no se puso la versión de ELF" + +#: ../libelf/elf_error.c:128 +#: ../libelf/elf_error.c:176 +#: ../libdw/dwarf_error.c:90 +msgid "invalid command" +msgstr "comando inválido" + +#: ../libelf/elf_error.c:132 +#: ../libelf/elf_error.c:192 +msgid "offset out of range" +msgstr "desplazamiento fuera de rango" + +#: ../libelf/elf_error.c:136 +msgid "invalid fmag field in archive header" +msgstr "" + +#: ../libelf/elf_error.c:140 +msgid "invalid archive file" +msgstr "archivo de archivado inválido" + +#: ../libelf/elf_error.c:144 +msgid "descriptor is not for an archive" +msgstr "el descriptor no es de un archivador" + +#: ../libelf/elf_error.c:148 +msgid "no index available" +msgstr "no hay índice disponible" + +#: ../libelf/elf_error.c:152 +msgid "cannot read data from file" +msgstr "no se pueden leer los datos del archivo" + +#: ../libelf/elf_error.c:156 +msgid "cannot write data to file" +msgstr "no se puede escribir los datos al archivo" + +#: ../libelf/elf_error.c:160 +msgid "invalid binary class" +msgstr "clase de binario inválida" + +#: ../libelf/elf_error.c:164 +msgid "invalid section index" +msgstr "sección de índice inválida" + +#: ../libelf/elf_error.c:168 +msgid "invalid operand" +msgstr "operando inválido" + +#: ../libelf/elf_error.c:172 +msgid "invalid section" +msgstr "sección inválida" + +#: ../libelf/elf_error.c:180 +msgid "executable header not created first" +msgstr "" + +#: ../libelf/elf_error.c:184 +msgid "file descriptor disabled" +msgstr "descriptor de archivo deshabilitada" + +#: ../libelf/elf_error.c:188 +msgid "archive/member fildes mismatch" +msgstr "descriptor archivo/miembro no coinciden" + +#: ../libelf/elf_error.c:196 +msgid "cannot manipulate null section" +msgstr "no se pudo manipular una sección nula" + +#: ../libelf/elf_error.c:200 +msgid "data/scn mismatch" +msgstr "no coinciden los datos/scn" + +#: ../libelf/elf_error.c:204 +msgid "invalid section header" +msgstr "cabecera de sección inválida" + +#: ../libelf/elf_error.c:208 +#: ../src/readelf.c:6055 +#: ../src/readelf.c:6156 +#, c-format +msgid "invalid data" +msgstr "datos inválidos" + +#: ../libelf/elf_error.c:212 +msgid "unknown data encoding" +msgstr "codificación de caracteres desconocida" + +#: ../libelf/elf_error.c:216 +msgid "section `sh_size' too small for data" +msgstr "" + +#: ../libelf/elf_error.c:220 +msgid "invalid section alignment" +msgstr "alineación de la sección inválida" + +#: ../libelf/elf_error.c:224 +msgid "invalid section entry size" +msgstr "tamaño de la entrada de la sección inválida" + +#: ../libelf/elf_error.c:228 +msgid "update() for write on read-only file" +msgstr "" + +#: ../libelf/elf_error.c:232 +msgid "no such file" +msgstr "no hay tal archivo" + +#: ../libelf/elf_error.c:236 +msgid "only relocatable files can contain section groups" +msgstr "" + +#: ../libelf/elf_error.c:241 +msgid "program header only allowed in executables, shared objects, and core files" +msgstr "" + +#: ../libelf/elf_error.c:248 +msgid "file has no program header" +msgstr "el archivo no tiene cabecera de programa" + +#: ../libelf/elf_error.c:253 +#: ../libdw/dwarf_error.c:112 +msgid "invalid offset" +msgstr "desplazamiento inválido" + +#: ../libasm/asm_error.c:64 +#: ../src/ldgeneric.c:2687 +#, c-format +msgid "cannot create output file" +msgstr "no se puede crear el archivo de salida" + +#: ../libasm/asm_error.c:65 +#, fuzzy +msgid "invalid parameter" +msgstr "PTP. Parámetro no válido" + +#: ../libasm/asm_error.c:66 +#, fuzzy +msgid "cannot change mode of output file" +msgstr "Localización del fichero de salida en modo C#:\n" + +#. Something went wrong. +#: ../libasm/asm_error.c:67 +#: ../src/ldgeneric.c:7001 +#, fuzzy, c-format +msgid "cannot rename output file" +msgstr "no se puede generar el fichero de salida" + +#: ../libasm/asm_error.c:68 +#, fuzzy +msgid "duplicate symbol" +msgstr "%s: tabla de símbolos inválida: símbolo `%s' duplicado\n" + +#: ../libasm/asm_error.c:69 +#, fuzzy +msgid "invalid section type for operation" +msgstr "sección inválida para la operación en `%s'" + +#: ../libasm/asm_error.c:70 +#, fuzzy +msgid "error during output of data" +msgstr "error en formato de datos" + +#: ../libasm/asm_error.c:71 +#, fuzzy +msgid "no backend support available" +msgstr "¡No está disponible el soporte XBM!" + +#: ../libdw/dwarf_error.c:81 +#, fuzzy +msgid "invalid access" +msgstr "Acceder a archivos" + +#: ../libdw/dwarf_error.c:82 +#, fuzzy +msgid "no regular file" +msgstr "no es un fichero regular" + +#: ../libdw/dwarf_error.c:83 +#, fuzzy +msgid "I/O error" +msgstr "Error de E/S" + +#: ../libdw/dwarf_error.c:84 +#, fuzzy +msgid "invalid ELF file" +msgstr "Versión de ABI del fichero ELF inválida" + +#: ../libdw/dwarf_error.c:85 +#, fuzzy +msgid "no DWARF information" +msgstr "Sin información sobre inodos" + +#: ../libdw/dwarf_error.c:86 +#, fuzzy +msgid "no ELF file" +msgstr "%F%P: %s (%s): No hay tal fichero: %E\n" + +#: ../libdw/dwarf_error.c:87 +#, fuzzy +msgid "cannot get ELF header" +msgstr "no se puede leer la cabecera del archivo" + +#: ../libdw/dwarf_error.c:89 +#, fuzzy +msgid "not implemented" +msgstr "%s: sin implementar" + +#: ../libdw/dwarf_error.c:91 +#, fuzzy +msgid "invalid version" +msgstr "%B: %s: versión requerida %d inválida" + +#: ../libdw/dwarf_error.c:92 +#, fuzzy +msgid "invalid file" +msgstr "Archivo no válido." + +#: ../libdw/dwarf_error.c:93 +#, fuzzy +msgid "no entries found" +msgstr "No se han encontrado documentos." + +#: ../libdw/dwarf_error.c:94 +#, fuzzy +msgid "invalid DWARF" +msgstr " Versión DWARF: %d\n" + +#: ../libdw/dwarf_error.c:95 +#, fuzzy +msgid "no string data" +msgstr "no hay datos firmados\n" + +#: ../libdw/dwarf_error.c:96 +#, fuzzy +msgid "no address value" +msgstr "(no hay valor asignado)" + +#: ../libdw/dwarf_error.c:97 +#, fuzzy +msgid "no constant value" +msgstr "se requiere un valor constante" + +#: ../libdw/dwarf_error.c:98 +#, fuzzy +msgid "no reference value" +msgstr "inicialización por valor de la referencia" + +#: ../libdw/dwarf_error.c:99 +#, fuzzy +msgid "invalid reference value" +msgstr "inicialización por valor de la referencia" + +#: ../libdw/dwarf_error.c:100 +#, fuzzy +msgid ".debug_line section missing" +msgstr "no hay sección `msgstr'" + +#: ../libdw/dwarf_error.c:101 +#, fuzzy +msgid "invalid .debug_line section" +msgstr "" +"\n" +"Volcado del contenido de depuración de la sección %s:\n" +"\n" + +#: ../libdw/dwarf_error.c:102 +#, fuzzy +msgid "debug information too big" +msgstr "ERROR: %d es demasiado grande" + +#: ../libdw/dwarf_error.c:103 +#, fuzzy +msgid "invalid DWARF version" +msgstr "%B: %s: versión requerida %d inválida" + +#: ../libdw/dwarf_error.c:104 +#, fuzzy +msgid "invalid directory index" +msgstr "GIF: Indice de gif no válido." + +#: ../libdw/dwarf_error.c:105 +#, fuzzy +msgid "address out of range" +msgstr "dirección relativa fuera de rango" + +#: ../libdw/dwarf_error.c:106 +#, fuzzy +msgid "no location list value" +msgstr "Seleccione una zona de la lista" + +#: ../libdw/dwarf_error.c:107 +#, fuzzy +msgid "no block data" +msgstr "Primer bloque de datos=%u\n" + +#: ../libdw/dwarf_error.c:108 +#, fuzzy +msgid "invalid line index" +msgstr "GIF: Indice de gif no válido." + +#: ../libdw/dwarf_error.c:109 +#, fuzzy +msgid "invalid address range index" +msgstr "desplazamiento de índice fuera de rango" + +#: ../libdw/dwarf_error.c:110 +#, fuzzy +msgid "no matching address range" +msgstr "dirección relativa fuera de rango" + +#: ../libdw/dwarf_error.c:111 +#, fuzzy +msgid "no flag value" +msgstr "(no hay valor asignado)" + +#: ../libdw/dwarf_error.c:113 +#, fuzzy +msgid ".debug_ranges section missing" +msgstr "no hay sección `msgstr'" + +#: ../libdwfl/argp-std.c:67 +#: ../src/unstrip.c:2236 +#, fuzzy +msgid "Input selection options:" +msgstr "Opciones de selección de archivo" + +#: ../libdwfl/argp-std.c:68 +#, fuzzy +msgid "Find addresses in FILE" +msgstr "directorio NULL en find_file" + +#: ../libdwfl/argp-std.c:70 +msgid "Find addresses from signatures found in COREFILE" +msgstr "" + +#: ../libdwfl/argp-std.c:72 +msgid "Find addresses in files mapped into process PID" +msgstr "" + +#: ../libdwfl/argp-std.c:74 +msgid "Find addresses in files mapped as read from FILE in Linux /proc/PID/maps format" +msgstr "" + +#: ../libdwfl/argp-std.c:76 +msgid "Find addresses in the running kernel" +msgstr "" + +#: ../libdwfl/argp-std.c:78 +#, fuzzy +msgid "Kernel with all modules" +msgstr "Reemplazar todos los &espacios con:" + +#: ../libdwfl/argp-std.c:80 +msgid "Search path for separate debuginfo files" +msgstr "" + +#: ../libdwfl/argp-std.c:163 +#, fuzzy +msgid "only one of -e, -p, -k, -K, or --core allowed" +msgstr "Sólo se permite una comparación condicional" + +#: ../libdwfl/argp-std.c:223 +#, fuzzy, c-format +msgid "cannot read ELF core file: %s" +msgstr "No se pueden leer los datos del archivo" + +#: ../libdwfl/argp-std.c:243 +#, fuzzy +msgid "No modules recognized in core file" +msgstr "No hay segmentos de notas presentes el el fichero core.\n" + +#: ../libdwfl/argp-std.c:255 +#, fuzzy +msgid "cannot load kernel symbols" +msgstr "No se puede cargar el icono de '%s'." + +#. Non-fatal to have no modules since we do have the kernel. +#: ../libdwfl/argp-std.c:259 +#, fuzzy +msgid "cannot find kernel modules" +msgstr "No se puede encontrar nodo de tipo de letra '%s'." + +#: ../libdwfl/argp-std.c:273 +msgid "cannot find kernel or modules" +msgstr "" + +#: ../libebl/eblbackendname.c:63 +#, fuzzy +msgid "No backend" +msgstr "Backend del reproductor" + +#: ../libebl/eblcorenotetypename.c:107 +#: ../libebl/eblobjecttypename.c:78 +#: ../libebl/eblobjnotetypename.c:85 +#: ../libebl/eblosabiname.c:98 +#: ../libebl/eblsectionname.c:110 +#: ../libebl/eblsectiontypename.c:140 +#: ../libebl/eblsegmenttypename.c:104 +#, fuzzy +msgid "" +msgstr "" + +#: ../libebl/ebldynamictagname.c:126 +#, fuzzy, c-format +msgid ": %#" +msgstr ": conjunto de caracteres desconocido" + +#: ../libebl/eblobjnote.c:76 +#, fuzzy, c-format +msgid " Build ID: " +msgstr "Identificador de la cámara: %s\n" + +#: ../libebl/eblobjnote.c:129 +#, fuzzy, c-format +msgid " OS: %s, ABI: " +msgstr ", ABI del SO: %s %d.%d.%d" + +#: ../libebl/eblosabiname.c:95 +#, fuzzy +msgid "Stand alone" +msgstr "prefijo `%s' por sí solo" + +#: ../libebl/eblsymbolbindingname.c:86 +#: ../libebl/eblsymboltypename.c:94 +#, fuzzy, c-format +msgid ": %d" +msgstr ": %d" + +#: ../src/ar.c:76 +#, fuzzy +msgid "Commands:" +msgstr "" +"Comandos:\n" +"\n" + +#: ../src/ar.c:77 +#, fuzzy +msgid "Delete files from archive." +msgstr "extrae ficheros de un archivo" + +#: ../src/ar.c:78 +#, fuzzy +msgid "Move files in archive." +msgstr "¿Actualizar los archivos en el archivador «%s»?" + +#: ../src/ar.c:79 +#, fuzzy +msgid "Print files in archive." +msgstr "¿Actualizar los archivos en el archivador «%s»?" + +#: ../src/ar.c:80 +#, fuzzy +msgid "Quick append files to archive." +msgstr "añade ficheros al final de un archivo" + +#: ../src/ar.c:82 +#, fuzzy +msgid "Replace existing or insert new file into archive." +msgstr " r[ab][f][u] - reemplaza fichero(s) existente(s) o inserta fichero(s) nuevo(s) en el archivo\n" + +#: ../src/ar.c:83 +#, fuzzy +msgid "Display content of archive." +msgstr "Lista el contenido del archivo" + +#: ../src/ar.c:84 +#, fuzzy +msgid "Extract files from archive." +msgstr "extrae ficheros de un archivo" + +#: ../src/ar.c:86 +#, fuzzy +msgid "Command Modifiers:" +msgstr " modificadores específicos de la orden:\n" + +#: ../src/ar.c:87 +#, fuzzy +msgid "Preserve original dates." +msgstr " [o] - conserva las fechas originales\n" + +#: ../src/ar.c:88 +#, fuzzy +msgid "Use instance [COUNT] of name." +msgstr " [N] - usa la instancia [cuenta] del nombre\n" + +#: ../src/ar.c:90 +msgid "Do not replace existing files with extracted files." +msgstr "" + +#: ../src/ar.c:91 +msgid "Allow filename to be truncated if necessary." +msgstr "" + +#: ../src/ar.c:93 +#, fuzzy +msgid "Provide verbose output." +msgstr "Activa salida detallada" + +#: ../src/ar.c:94 +#, fuzzy +msgid "Force regeneration of symbol table." +msgstr "%s: tabla de símbolos inválida: símbolo `%s' duplicado\n" + +#: ../src/ar.c:95 +#, fuzzy +msgid "Insert file after [MEMBER]." +msgstr " [a] - coloca fichero(s) despúes de [nombre-miembro]\n" + +#: ../src/ar.c:96 +#, fuzzy +msgid "Insert file before [MEMBER]." +msgstr "Introduzca la ruta al archivo" + +#: ../src/ar.c:97 +#, fuzzy +msgid "Same as -b." +msgstr "lo mismo que --format=posix" + +#: ../src/ar.c:98 +msgid "Suppress message when library has to be created." +msgstr "" + +#: ../src/ar.c:100 +#, fuzzy +msgid "Use full path for file matching." +msgstr "Ruta al archivo de base de datos a usar" + +#: ../src/ar.c:101 +#, fuzzy +msgid "Update only older files in archive." +msgstr "solamente añade ficheros más recientes que la copia del archivo" + +#. Short description of program. +#: ../src/ar.c:107 +msgid "Create, modify, and extract from archives." +msgstr "" + +#. Strings for arguments in help texts. +#: ../src/ar.c:110 +#, fuzzy +msgid "[MEMBER] [COUNT] ARCHIVE [FILE...]" +msgstr "" +"Se incluyó el miembro del archivo debido al fichero (símbolo)\n" +"\n" + +#: ../src/ar.c:192 +#, fuzzy, c-format +msgid "'a', 'b', and 'i' are only allowed with the 'm' and 'r' options" +msgstr "`N' sólo tiene significado con las opciones `x' y `d'." + +#: ../src/ar.c:197 +#, c-format +msgid "MEMBER parameter required for 'a', 'b', and 'i' modifiers" +msgstr "" + +#: ../src/ar.c:213 +#, fuzzy, c-format +msgid "'N' is only meaningful with the 'x' and 'd' options" +msgstr "`N' sólo tiene significado con las opciones `x' y `d'." + +#: ../src/ar.c:218 +#, fuzzy, c-format +msgid "COUNT parameter required" +msgstr "El parámetro '%s' no fue especificado." + +#: ../src/ar.c:230 +#, fuzzy, c-format +msgid "invalid COUNT parameter %s" +msgstr "PTP. Parámetro no válido" + +#: ../src/ar.c:237 +#, fuzzy, c-format +msgid "'%' is only meaningful with the 'x' option" +msgstr "`u' sólo tiene significado con la opción `r'." + +#: ../src/ar.c:243 +#, fuzzy, c-format +msgid "archive name required" +msgstr "%s: se requiere un nombre de señalador\n" + +#: ../src/ar.c:289 +#: ../src/nm.c:253 +#: ../src/readelf.c:432 +#: ../src/size.c:219 +#: ../src/strip.c:203 +#: ../src/ld.c:957 +#: ../src/elflint.c:238 +#: ../src/addr2line.c:180 +#: ../src/findtextrel.c:170 +#: ../src/elfcmp.c:522 +#: ../src/ranlib.c:136 +#: ../src/strings.c:227 +#: ../src/unstrip.c:233 +#: ../src/objdump.c:181 +#, c-format +msgid "" +"Copyright (C) %s Red Hat, Inc.\n" +"This is free software; see the source for copying conditions. There is NO\n" +"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" +msgstr "" + +#: ../src/ar.c:294 +#: ../src/nm.c:258 +#: ../src/readelf.c:437 +#: ../src/size.c:224 +#: ../src/strip.c:208 +#: ../src/ld.c:962 +#: ../src/elflint.c:243 +#: ../src/addr2line.c:185 +#: ../src/findtextrel.c:175 +#: ../src/elfcmp.c:527 +#: ../src/ranlib.c:141 +#: ../src/strings.c:232 +#: ../src/unstrip.c:238 +#: ../src/objdump.c:186 +#, fuzzy, c-format +msgid "Written by %s.\n" +msgstr "Escrito por %s.\n" + +#: ../src/ar.c:314 +#, fuzzy, c-format +msgid "More than one operation specified" +msgstr "%s: La opción -L se ha especificado más de una vez\n" + +#: ../src/ar.c:404 +#, fuzzy, c-format +msgid "cannot open archive '%s'" +msgstr "" +"Imposible abrir el archivo %s\n" +"%s" + +#: ../src/ar.c:414 +#, fuzzy, c-format +msgid "cannot open archive '%s': %s" +msgstr "" +"Imposible abrir el archivo %s\n" +"%s" + +#: ../src/ar.c:418 +#, fuzzy, c-format +msgid "%s: not an archive file" +msgstr "%s: el fichero %s no es un archivo\n" + +#: ../src/ar.c:422 +#, fuzzy, c-format +msgid "cannot stat archive '%s'" +msgstr "no se puede efectuar `stat' sobre el archivo de locales \"%s\"" + +#: ../src/ar.c:434 +#, fuzzy, c-format +msgid "no entry %s in archive\n" +msgstr "no existe la entrada %s en el archivo\n" + +#: ../src/ar.c:474 +#: ../src/ar.c:918 +#: ../src/ar.c:1118 +#, fuzzy, c-format +msgid "cannot create hash table" +msgstr "%P%F: Falló al crear la tabla de dispersión\n" + +#: ../src/ar.c:481 +#: ../src/ar.c:925 +#: ../src/ar.c:1127 +#, fuzzy, c-format +msgid "cannot insert into hash table" +msgstr "se inserta \"%s\" en la tabla de de dispersión de cadenas: %s" + +#: ../src/ar.c:489 +#: ../src/ranlib.c:176 +#, fuzzy, c-format +msgid "cannot stat '%s'" +msgstr "" +" Imposible identificar \"%s\"\n" +" %s " + +#: ../src/ar.c:585 +#, fuzzy, c-format +msgid "cannot read content of %s: %s" +msgstr "no se puede leer la cabecera" + +#: ../src/ar.c:629 +#, fuzzy, c-format +msgid "cannot open %.*s" +msgstr "" +" Imposible abrir \"%s\"\n" +" %s " + +#: ../src/ar.c:651 +#, fuzzy, c-format +msgid "failed to write %s" +msgstr "Falló al escribir %s." + +#: ../src/ar.c:663 +#, fuzzy, c-format +msgid "cannot change mode of %s" +msgstr "%s: No se puede cambiar el modo a %s" + +#: ../src/ar.c:679 +#, fuzzy, c-format +msgid "cannot change modification time of %s" +msgstr "# La fecha de modificación no se comprobó." + +#: ../src/ar.c:726 +#, fuzzy, c-format +msgid "cannot rename temporary file to %.*s" +msgstr "No se pudo abrir archivo temporal." + +#: ../src/ar.c:762 +#: ../src/ar.c:1010 +#: ../src/ar.c:1408 +#: ../src/ranlib.c:250 +#, fuzzy, c-format +msgid "cannot create new file" +msgstr "%s: no se puede crear un nuevo fichero de preferencias predeterminadas\n" + +#: ../src/ar.c:1209 +#, fuzzy, c-format +msgid "position member %s not found" +msgstr "no se encuentra los datos miembros C++ en el contenedor" + +#: ../src/ar.c:1219 +#, fuzzy, c-format +msgid "%s: no entry %s in archive!\n" +msgstr "No hay una entrada %s en el archivo.\n" + +#: ../src/ar.c:1248 +#: ../src/ldgeneric.c:519 +#: ../src/objdump.c:257 +#, fuzzy, c-format +msgid "cannot open %s" +msgstr "no se puede abrir %s" + +#: ../src/ar.c:1253 +#, fuzzy, c-format +msgid "cannot stat %s" +msgstr "no se puede efectuar `stat' sobre %s" + +#: ../src/ar.c:1259 +#, fuzzy, c-format +msgid "%s is no regular file" +msgstr " %s no es un archivo ordinario " + +#: ../src/ar.c:1272 +#, fuzzy, c-format +msgid "cannot get ELF descriptor for %s: %s\n" +msgstr " Imposible obtener tamaño/permisos para %s " + +#: ../src/ar.c:1291 +#, fuzzy, c-format +msgid "cannot read %s: %s" +msgstr "%s: No se pudo leer %s (%s).\n" + +#. The archive is too big. +#: ../src/arlib.c:215 +#, fuzzy, c-format +msgid "the archive '%s' is too large" +msgstr " El archivo %s es demasiado grande " + +#: ../src/arlib.c:228 +#, fuzzy, c-format +msgid "cannot read ELF header of %s(%s): %s" +msgstr "no se puede leer la cabecera del archivo" + +#: ../src/nm.c:74 +#: ../src/readelf.c:72 +#: ../src/strip.c:72 +#, fuzzy +msgid "Output selection:" +msgstr "Selección del resultado:" + +#: ../src/nm.c:75 +#, fuzzy +msgid "Display debugger-only symbols" +msgstr "Mostrar sólo cuando el adaptador esté presente" + +#: ../src/nm.c:76 +#, fuzzy +msgid "Display only defined symbols" +msgstr "Extrañamente sólo hay %d particiones definidas.\n" + +#: ../src/nm.c:79 +msgid "Display dynamic symbols instead of normal symbols" +msgstr "" + +#: ../src/nm.c:80 +#, fuzzy +msgid "Display only external symbols" +msgstr "Da a los símbolos externos un subrayado inicial" + +#: ../src/nm.c:81 +#, fuzzy +msgid "Display only undefined symbols" +msgstr "Mostrar sólo cuando el adaptador esté presente" + +#: ../src/nm.c:83 +msgid "Include index for symbols from archive members" +msgstr "" + +#: ../src/nm.c:85 +#: ../src/size.c:66 +#, fuzzy +msgid "Output format:" +msgstr "Formato de salida:\n" + +#: ../src/nm.c:87 +msgid "Print name of the input file before every symbol" +msgstr "" + +#: ../src/nm.c:90 +msgid "Use the output format FORMAT. FORMAT can be `bsd', `sysv' or `posix'. The default is `sysv'" +msgstr "" + +#: ../src/nm.c:92 +#, fuzzy +msgid "Same as --format=bsd" +msgstr "lo mismo que --format=posix" + +#: ../src/nm.c:93 +#, fuzzy +msgid "Same as --format=posix" +msgstr "lo mismo que --format=posix" + +#: ../src/nm.c:94 +#: ../src/size.c:72 +msgid "Use RADIX for printing symbol values" +msgstr "" + +#: ../src/nm.c:95 +#, fuzzy +msgid "Mark weak symbols" +msgstr "Símbolos musicales bizantinos" + +#: ../src/nm.c:96 +#, fuzzy +msgid "Print size of defined symbols" +msgstr "_Ignorar el área de impresión definido" + +#: ../src/nm.c:98 +#: ../src/size.c:80 +#: ../src/strip.c:77 +#: ../src/unstrip.c:80 +#, fuzzy +msgid "Output options:" +msgstr "las especificaciones del estilo de salida son conflictivas" + +#: ../src/nm.c:99 +#, fuzzy +msgid "Sort symbols numerically by address" +msgstr "Ordena los símbolos comunes por tamaño" + +#: ../src/nm.c:101 +#, fuzzy +msgid "Do not sort the symbols" +msgstr "%P%X: no se pueden leer símbolos: %E\n" + +#: ../src/nm.c:102 +#, fuzzy +msgid "Reverse the sense of the sort" +msgstr "_Invertir orden" + +#: ../src/nm.c:103 +#: ../src/addr2line.c:73 +#: ../src/findtextrel.c:75 +#: ../src/elfcmp.c:75 +#: ../src/strings.c:83 +#, fuzzy +msgid "Miscellaneous:" +msgstr "Misceláneos" + +#. Short description of program. +#: ../src/nm.c:108 +#, fuzzy +msgid "List symbols from FILEs (a.out by default)." +msgstr "Lista de símbolos en [fichero(s)] (a.out por defecto).\n" + +#. Strings for arguments in help texts. +#: ../src/nm.c:111 +#: ../src/size.c:92 +#: ../src/strip.c:96 +#: ../src/findtextrel.c:84 +#: ../src/strings.c:92 +#: ../src/objdump.c:80 +#, fuzzy +msgid "[FILE...]" +msgstr "[FICHERO...]" + +#: ../src/nm.c:136 +#: ../src/size.c:117 +#: ../src/strip.c:120 +#: ../src/objdump.c:105 +#, fuzzy, c-format +msgid "%s: INTERNAL ERROR %d (%s-%s): %s" +msgstr "error interno %s" + +#: ../src/nm.c:363 +#: ../src/size.c:301 +#: ../src/strip.c:432 +#: ../src/strip.c:467 +#: ../src/ldgeneric.c:1767 +#: ../src/ldgeneric.c:4257 +#: ../src/findtextrel.c:229 +#: ../src/elfcmp.c:574 +#: ../src/ranlib.c:169 +#: ../src/strings.c:183 +#: ../src/unstrip.c:1899 +#: ../src/unstrip.c:1928 +#, fuzzy, c-format +msgid "cannot open '%s'" +msgstr "" +" Imposible abrir \"%s\"\n" +" %s " + +#: ../src/nm.c:380 +#: ../src/nm.c:392 +#: ../src/size.c:317 +#: ../src/size.c:326 +#: ../src/size.c:337 +#: ../src/strip.c:1814 +#, fuzzy, c-format +msgid "while closing '%s'" +msgstr "error al cerrar la entrada `%s'" + +#: ../src/nm.c:402 +#: ../src/strip.c:358 +#: ../src/objdump.c:296 +#, fuzzy, c-format +msgid "%s: File format not recognized" +msgstr "No se reconoce el formato del fichero" + +#. Note: 0 is no valid offset. +#: ../src/nm.c:442 +#, fuzzy +msgid "" +"\n" +"Archive index:" +msgstr "" +"\n" +"Índice del archivo:\n" + +#: ../src/nm.c:451 +#, fuzzy, c-format +msgid "invalid offset %zu for symbol %s" +msgstr "%s: DSO inválido para la definición del símbolo `%s'" + +#: ../src/nm.c:456 +#, fuzzy, c-format +msgid "%s in %s\n" +msgstr "Mí_n" + +#: ../src/nm.c:464 +#, c-format +msgid "cannot reset archive offset to beginning" +msgstr "" + +#: ../src/nm.c:488 +#: ../src/objdump.c:344 +#, fuzzy, c-format +msgid "%s%s%s: file format not recognized" +msgstr "No se reconoce el formato del fichero" + +#: ../src/nm.c:700 +#, fuzzy, c-format +msgid "cannot create search tree" +msgstr "No se puede crear el componente de búsqueda" + +#: ../src/nm.c:740 +#: ../src/nm.c:1002 +#: ../src/readelf.c:850 +#: ../src/readelf.c:993 +#: ../src/readelf.c:1134 +#: ../src/readelf.c:1316 +#: ../src/readelf.c:1514 +#: ../src/readelf.c:1659 +#: ../src/readelf.c:1827 +#: ../src/readelf.c:2081 +#: ../src/readelf.c:2147 +#: ../src/readelf.c:2225 +#: ../src/readelf.c:2722 +#: ../src/readelf.c:2758 +#: ../src/readelf.c:2820 +#: ../src/readelf.c:6305 +#: ../src/readelf.c:7171 +#: ../src/readelf.c:7316 +#: ../src/readelf.c:7385 +#: ../src/size.c:425 +#: ../src/size.c:499 +#: ../src/strip.c:482 +#: ../src/objdump.c:744 +#, c-format +msgid "cannot get section header string table index" +msgstr "" + +#: ../src/nm.c:766 +#, fuzzy, c-format +msgid "" +"\n" +"\n" +"Symbols from %s:\n" +"\n" +msgstr "" +"\n" +"\n" +"Símbolos de %s:\n" +"\n" + +#: ../src/nm.c:768 +#, fuzzy, c-format +msgid "" +"\n" +"\n" +"Symbols from %s[%s]:\n" +"\n" +msgstr "" +"\n" +"\n" +"Símbolos de %s[%s]:\n" +"\n" + +#. The header line. +#: ../src/nm.c:771 +#, fuzzy, c-format +msgid "" +"%*s%-*s %-*s Class Type %-*s %*s Section\n" +"\n" +msgstr "no se reconoce el tipo de sección" + +#: ../src/nm.c:1012 +#, c-format +msgid "%s: entry size in section `%s' is not what we expect" +msgstr "" + +#: ../src/nm.c:1016 +#, fuzzy, c-format +msgid "%s: size of section `%s' is not multiple of entry size" +msgstr "Aviso, el tamaño de la sección .pdata (%ld) no es un múltiplo de %d\n" + +#. XXX Add machine specific object file types. +#: ../src/nm.c:1255 +#, fuzzy, c-format +msgid "%s%s%s%s: Invalid operation" +msgstr "Operación inválida" + +#: ../src/nm.c:1312 +#, fuzzy, c-format +msgid "%s%s%s: no symbols" +msgstr "No hay símbolos" + +#: ../src/readelf.c:73 +#, fuzzy +msgid "Equivalent to: -e -h -l" +msgstr "Copiando «%B» a «%B»" + +#: ../src/readelf.c:74 +#, fuzzy +msgid "Display the dynamic segment" +msgstr " [los símbolos dinámicos utilizan índices de segmento]" + +#: ../src/readelf.c:75 +#, fuzzy +msgid "Display the ELF file header" +msgstr "encabezado del fichero BFD versión %s\n" + +#: ../src/readelf.c:77 +msgid "Display histogram of bucket list lengths" +msgstr "" + +#: ../src/readelf.c:78 +#, fuzzy +msgid "Display the program headers" +msgstr "" +"\n" +" Inicio de encabezados de programa: " + +#: ../src/readelf.c:80 +#, fuzzy +msgid "Display relocations" +msgstr "pantalla vnc" + +#: ../src/readelf.c:81 +#, fuzzy +msgid "Display the sections' header" +msgstr "" +"\n" +"Encabezado Auxiliar de Ejecución\n" + +#: ../src/readelf.c:83 +#, fuzzy +msgid "Display the symbol table" +msgstr " [tabla de símbolos ordenados]" + +#: ../src/readelf.c:84 +#, fuzzy +msgid "Display versioning information" +msgstr "Mostrar la información de la versión." + +#: ../src/readelf.c:86 +msgid "Display DWARF section content. SECTION can be one of abbrev, aranges, frame, info, loc, line, ranges, pubnames, str, macinfo, or exception" +msgstr "" + +#: ../src/readelf.c:89 +#, fuzzy +msgid "Display the core notes" +msgstr "_Ocultar notas" + +#: ../src/readelf.c:91 +msgid "Display architecture specific information (if any)" +msgstr "" + +#: ../src/readelf.c:93 +msgid "Dump the uninterpreted contents of SECTION, by number or name" +msgstr "" + +#: ../src/readelf.c:95 +#, fuzzy +msgid "Print string contents of sections" +msgstr "Muestra una tabla del contenido de la entrada" + +#: ../src/readelf.c:98 +#, fuzzy +msgid "Display the symbol index of an archive" +msgstr " [s] - crea un índice del archivo (cf. ranlib)\n" + +#: ../src/readelf.c:99 +#, fuzzy +msgid "Display sections for exception handling" +msgstr "Sólo genera tablas de desenredo para manejo de excepciones" + +#: ../src/readelf.c:102 +#, fuzzy +msgid "Output control:" +msgstr "Control del resultado:" + +#. Short description of program. +#: ../src/readelf.c:108 +msgid "Print information from ELF file in human-readable form." +msgstr "" + +#. Strings for arguments in help texts. +#: ../src/readelf.c:112 +#: ../src/elflint.c:85 +#, fuzzy +msgid "FILE..." +msgstr "&Archivo" + +#: ../src/readelf.c:259 +#: ../src/elflint.c:158 +#, fuzzy, c-format +msgid "cannot open input file" +msgstr "no se puede abrir el fichero de entrada" + +#: ../src/readelf.c:387 +#, fuzzy, c-format +msgid "Unknown DWARF debug section `%s'.\n" +msgstr "" +"\n" +"Volcado del contenido de depuración de la sección %s:\n" +"\n" + +#: ../src/readelf.c:408 +#: ../src/elflint.c:222 +#, fuzzy +msgid "Missing file name.\n" +msgstr "Falta el nombre de archivo." + +#: ../src/readelf.c:413 +#: ../src/objdump.c:236 +#, fuzzy +msgid "No operation specified.\n" +msgstr "no se especificó una operación" + +#: ../src/readelf.c:448 +#, fuzzy, c-format +msgid "cannot generate Elf descriptor: %s" +msgstr "no se puede crear un descriptor interno" + +#: ../src/readelf.c:460 +#, c-format +msgid "'%s' is not an archive, cannot print archive index" +msgstr "" + +#: ../src/readelf.c:465 +#, fuzzy, c-format +msgid "error while closing Elf descriptor: %s" +msgstr "error al cerrar el fichero de salida" + +#: ../src/readelf.c:557 +#, fuzzy, c-format +msgid "cannot stat input file" +msgstr "stat() no pudo evaluar archivo de entrada \"%s\": %s" + +#: ../src/readelf.c:559 +#, fuzzy, c-format +msgid "input file is empty" +msgstr "ATENCIÓN `%s' es un fichero vacío\n" + +#: ../src/readelf.c:561 +#, fuzzy, c-format +msgid "failed reading '%s': %s" +msgstr "Falló al leer la sección %s de %s: %s" + +#: ../src/readelf.c:596 +#, fuzzy, c-format +msgid "cannot read ELF header: %s" +msgstr "no se puede leer la cabecera del archivo" + +#: ../src/readelf.c:604 +#, fuzzy, c-format +msgid "cannot create EBL handle" +msgstr "Nautilus no puede manejar lugares %s:" + +#: ../src/readelf.c:611 +#: ../src/strip.c:542 +#: ../src/ldgeneric.c:661 +#: ../src/ldgeneric.c:1122 +#, fuzzy, c-format +msgid "cannot determine number of sections: %s" +msgstr "no se puede determinar el carácter de escape" + +#: ../src/readelf.c:697 +#, fuzzy +msgid "NONE (None)" +msgstr "NONE (Ninguno)" + +#: ../src/readelf.c:698 +#, fuzzy +msgid "REL (Relocatable file)" +msgstr "REL (Fichero reubicable)" + +#: ../src/readelf.c:699 +#, fuzzy +msgid "EXEC (Executable file)" +msgstr "EXEC (Fichero ejecutable)" + +#: ../src/readelf.c:700 +#, fuzzy +msgid "DYN (Shared object file)" +msgstr "DYN (Fichero objeto compartido)" + +#: ../src/readelf.c:701 +#, fuzzy +msgid "CORE (Core file)" +msgstr "CORE (Fichero núcleo)" + +#: ../src/readelf.c:706 +#, fuzzy, c-format +msgid "OS Specific: (%x)\n" +msgstr ": %d" + +#. && e_type <= ET_HIPROC always true +#: ../src/readelf.c:708 +#, fuzzy, c-format +msgid "Processor Specific: (%x)\n" +msgstr " %d:" + +#: ../src/readelf.c:718 +#, fuzzy +msgid "" +"ELF Header:\n" +" Magic: " +msgstr "cabecera ELF inválida" + +#: ../src/readelf.c:722 +#, fuzzy, c-format +msgid "" +"\n" +" Class: %s\n" +msgstr "_Clase:" + +#: ../src/readelf.c:727 +#, fuzzy, c-format +msgid " Data: %s\n" +msgstr " Datos: %s\n" + +#: ../src/readelf.c:733 +#, fuzzy, c-format +msgid " Ident Version: %hhd %s\n" +msgstr " " + +#: ../src/readelf.c:735 +#: ../src/readelf.c:752 +#, fuzzy +msgid "(current)" +msgstr "Actual:" + +#: ../src/readelf.c:739 +#, fuzzy, c-format +msgid " OS/ABI: %s\n" +msgstr " OS/ABI: %s\n" + +#: ../src/readelf.c:742 +#, fuzzy, c-format +msgid " ABI Version: %hhd\n" +msgstr "No hubo coincidencia en el número de versión ABI %d.%d.x (necesitaba %d.%d.x)" + +#: ../src/readelf.c:745 +#, fuzzy +msgid " Type: " +msgstr "Tipo" + +#: ../src/readelf.c:748 +#, fuzzy, c-format +msgid " Machine: %s\n" +msgstr " Máquina: %s\n" + +#: ../src/readelf.c:750 +#, fuzzy, c-format +msgid " Version: %d %s\n" +msgstr " Versión: %d %s\n" + +#: ../src/readelf.c:754 +#, fuzzy, c-format +msgid " Entry point address: %#\n" +msgstr "dirección IP punto-a-punto" + +#: ../src/readelf.c:757 +#, fuzzy, c-format +msgid " Start of program headers: % %s\n" +msgstr " Número de encabezados de programa: %ld\n" + +#: ../src/readelf.c:758 +#: ../src/readelf.c:761 +#, fuzzy +msgid "(bytes into file)" +msgstr " (bytes en el fichero)\n" + +#: ../src/readelf.c:760 +#, fuzzy, c-format +msgid " Start of section headers: % %s\n" +msgstr "" +" (bytes en el fichero)\n" +" Inicio de encabezados de sección: " + +#: ../src/readelf.c:763 +#, fuzzy, c-format +msgid " Flags: %s\n" +msgstr "Banderas" + +#: ../src/readelf.c:766 +#, fuzzy, c-format +msgid " Size of this header: % %s\n" +msgstr " Tamaño de este encabezado: %ld (bytes)\n" + +#: ../src/readelf.c:767 +#: ../src/readelf.c:770 +#: ../src/readelf.c:776 +#, fuzzy +msgid "(bytes)" +msgstr "%s (%s bytes)" + +#: ../src/readelf.c:769 +#, c-format +msgid " Size of program header entries: % %s\n" +msgstr "" + +#: ../src/readelf.c:772 +#, c-format +msgid " Number of program headers entries: %\n" +msgstr "" + +#: ../src/readelf.c:775 +#, c-format +msgid " Size of section header entries: % %s\n" +msgstr "" + +#: ../src/readelf.c:778 +#, c-format +msgid " Number of section headers entries: %" +msgstr "" + +#: ../src/readelf.c:785 +#, fuzzy, c-format +msgid " (% in [0].sh_size)" +msgstr "El tamaño de fuente en puntos." + +#: ../src/readelf.c:788 +#: ../src/readelf.c:802 +#, fuzzy +msgid " ([0] not available)" +msgstr "no disponible: %s" + +#. We managed to get the zeroth section. +#: ../src/readelf.c:798 +#, fuzzy, c-format +msgid " (% in [0].sh_link)" +msgstr "%B: sh_link [%d] en la sección `%A', es incorrecto" + +#: ../src/readelf.c:806 +#, fuzzy, c-format +msgid "" +" Section header string table index: XINDEX%s\n" +"\n" +msgstr " Índice de tabla de cadenas de sección de encabezado: %ld" + +#: ../src/readelf.c:810 +#, fuzzy, c-format +msgid "" +" Section header string table index: %\n" +"\n" +msgstr " Índice de tabla de cadenas de sección de encabezado: %ld" + +#: ../src/readelf.c:842 +#, fuzzy, c-format +msgid "" +"There are %d section headers, starting at offset %#:\n" +"\n" +msgstr "Hay %d encabezados de sección, comenzando en el desplazamiento: 0x%lx:\n" + +#: ../src/readelf.c:852 +#, fuzzy +msgid "Section Headers:" +msgstr "encabezados de sección" + +#: ../src/readelf.c:855 +#, fuzzy +msgid "[Nr] Name Type Addr Off Size ES Flags Lk Inf Al" +msgstr " [Nr] Nombre Tipo Direc Desp Tam ES Opt En Inf Al\n" + +#: ../src/readelf.c:857 +#, fuzzy +msgid "[Nr] Name Type Addr Off Size ES Flags Lk Inf Al" +msgstr " [Nr] Nombre Tipo Direc Desp Tam ES Opt En Inf Al\n" + +#: ../src/readelf.c:864 +#: ../src/readelf.c:1017 +#, fuzzy, c-format +msgid "cannot get section: %s" +msgstr "%s: no se puede encontrar la sección %s" + +#: ../src/readelf.c:871 +#: ../src/readelf.c:1025 +#: ../src/readelf.c:7336 +#: ../src/unstrip.c:352 +#: ../src/unstrip.c:376 +#: ../src/unstrip.c:426 +#: ../src/unstrip.c:535 +#: ../src/unstrip.c:552 +#: ../src/unstrip.c:590 +#: ../src/unstrip.c:788 +#: ../src/unstrip.c:1056 +#: ../src/unstrip.c:1243 +#: ../src/unstrip.c:1304 +#: ../src/unstrip.c:1426 +#: ../src/unstrip.c:1479 +#: ../src/unstrip.c:1587 +#: ../src/unstrip.c:1777 +#, fuzzy, c-format +msgid "cannot get section header: %s" +msgstr "no se puede leer la cabecera del archivo" + +#: ../src/readelf.c:929 +#, fuzzy +msgid "Program Headers:" +msgstr "encabezados de programa" + +#: ../src/readelf.c:931 +#, fuzzy +msgid " Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align" +msgstr " Tipo Desplaz DirVirt DirFísica TamFich TamMem Opt Alin\n" + +#: ../src/readelf.c:934 +#, fuzzy +msgid " Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align" +msgstr " Tipo Desplaz DirVirt DirFísica TamFich TamMem Opt Alin\n" + +#: ../src/readelf.c:974 +#, fuzzy, c-format +msgid "\t[Requesting program interpreter: %s]\n" +msgstr "" +"\n" +" [Solicitando el programa intérprete: %s]" + +#: ../src/readelf.c:995 +#, fuzzy +msgid "" +"\n" +" Section to Segment mapping:\n" +" Segment Sections..." +msgstr "secciones múltiples remapeadas a la sección de salida %s" + +#: ../src/readelf.c:1006 +#: ../src/unstrip.c:1823 +#: ../src/unstrip.c:1862 +#: ../src/unstrip.c:1869 +#, fuzzy, c-format +msgid "cannot get program header: %s" +msgstr "no se puede asignar memoria para la cabecera del programa" + +#: ../src/readelf.c:1140 +#, c-format +msgid "" +"\n" +"COMDAT section group [%2zu] '%s' with signature '%s' contains %zu entry:\n" +msgid_plural "" +"\n" +"COMDAT section group [%2zu] '%s' with signature '%s' contains %zu entries:\n" +msgstr[0] "" +msgstr[1] "" + +#: ../src/readelf.c:1145 +#, c-format +msgid "" +"\n" +"Section group [%2zu] '%s' with signature '%s' contains %zu entry:\n" +msgid_plural "" +"\n" +"Section group [%2zu] '%s' with signature '%s' contains %zu entries:\n" +msgstr[0] "" +msgstr[1] "" + +#: ../src/readelf.c:1153 +#, fuzzy +msgid "" +msgstr "%s: tabla de símbolos inválida: símbolo `%s' duplicado\n" + +#: ../src/readelf.c:1167 +#, fuzzy +msgid "" +msgstr "%P%F: opción de ordenado de sección inválida: %s\n" + +#: ../src/readelf.c:1318 +#, c-format +msgid "" +"\n" +"Dynamic segment contains %lu entry:\n" +" Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" +msgid_plural "" +"\n" +"Dynamic segment contains %lu entries:\n" +" Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" +msgstr[0] "" +msgstr[1] "" + +#: ../src/readelf.c:1330 +#, fuzzy +msgid " Type Value\n" +msgstr " Marca Tipo Nombre/Valor\n" + +#: ../src/readelf.c:1354 +#, fuzzy, c-format +msgid "Shared library: [%s]\n" +msgstr "Biblioteca compartida: [%s]" + +#: ../src/readelf.c:1359 +#, fuzzy, c-format +msgid "Library soname: [%s]\n" +msgstr "Nombre-so de la biblioteca: [%s]" + +#: ../src/readelf.c:1364 +#, fuzzy, c-format +msgid "Library rpath: [%s]\n" +msgstr "Rpath de la biblioteca: [%s]" + +#: ../src/readelf.c:1369 +#, fuzzy, c-format +msgid "Library runpath: [%s]\n" +msgstr "Ruta de ejecución de la biblioteca: [%s]" + +#: ../src/readelf.c:1389 +#, fuzzy, c-format +msgid "% (bytes)\n" +msgstr " bytes de memoria" + +#: ../src/readelf.c:1499 +#: ../src/readelf.c:1644 +#, c-format +msgid "" +"\n" +"Invalid symbol table at offset %#0\n" +msgstr "" + +#: ../src/readelf.c:1517 +#: ../src/readelf.c:1661 +#, c-format +msgid "" +"\n" +"Relocation section [%2zu] '%s' for section [%2u] '%s' at offset %#0 contains %d entry:\n" +msgid_plural "" +"\n" +"Relocation section [%2zu] '%s' for section [%2u] '%s' at offset %#0 contains %d entries:\n" +msgstr[0] "" +msgstr[1] "" + +#. The .rel.dyn section does not refer to a specific section but +#. instead of section index zero. Do not try to print a section +#. name. +#: ../src/readelf.c:1532 +#, c-format +msgid "" +"\n" +"Relocation section [%2u] '%s' at offset %#0 contains %d entry:\n" +msgid_plural "" +"\n" +"Relocation section [%2u] '%s' at offset %#0 contains %d entries:\n" +msgstr[0] "" +msgstr[1] "" + +#: ../src/readelf.c:1542 +#, fuzzy +msgid " Offset Type Value Name\n" +msgstr " Desplaz Info Tipo Valor Símbolo Nombre Símbolo\n" + +#: ../src/readelf.c:1544 +#, fuzzy +msgid " Offset Type Value Name\n" +msgstr " Desplaz Info Tipo Valor Símbolo Nombre Símbolo\n" + +#: ../src/readelf.c:1568 +#: ../src/readelf.c:1580 +#: ../src/readelf.c:1598 +#: ../src/readelf.c:1610 +#: ../src/readelf.c:1700 +#: ../src/readelf.c:1713 +#: ../src/readelf.c:1732 +#: ../src/readelf.c:1745 +#, fuzzy +msgid "" +msgstr "%F%P: declaración inválida de reubicación\n" + +#: ../src/readelf.c:1569 +#: ../src/readelf.c:1701 +#: ../src/objdump.c:379 +#, fuzzy +msgid "INVALID SYMBOL" +msgstr "%s: tabla de símbolos inválida: símbolo `%s' duplicado\n" + +#: ../src/readelf.c:1599 +#: ../src/readelf.c:1733 +#: ../src/objdump.c:394 +#, fuzzy +msgid "INVALID SECTION" +msgstr "%P%F: opción de ordenado de sección inválida: %s\n" + +#: ../src/readelf.c:1673 +#, fuzzy +msgid " Offset Type Value Addend Name\n" +msgstr " Desplaz Info Tipo Valor Símbolo Nombre Símbolo + Adend\n" + +#: ../src/readelf.c:1675 +#, fuzzy +msgid " Offset Type Value Addend Name\n" +msgstr " Desplaz Info Tipo Valor Símbolo Nombre Símbolo + Adend\n" + +#: ../src/readelf.c:1834 +#, fuzzy, c-format +msgid "" +"\n" +"Symbol table [%2u] '%s' contains %u entry:\n" +msgid_plural "" +"\n" +"Symbol table [%2u] '%s' contains %u entries:\n" +msgstr[0] "" +"\n" +"La tabla de símbolos '%s' contiene %lu entradas:\n" +msgstr[1] "" + +#: ../src/readelf.c:1840 +#, c-format +msgid " %lu local symbol String table: [%2u] '%s'\n" +msgid_plural " %lu local symbols String table: [%2u] '%s'\n" +msgstr[0] "" +msgstr[1] "" + +#: ../src/readelf.c:1850 +#, fuzzy +msgid " Num: Value Size Type Bind Vis Ndx Name\n" +msgstr " Num: Valor Tam Tipo Unión Vis Nombre Ind\n" + +#: ../src/readelf.c:1852 +#, fuzzy +msgid " Num: Value Size Type Bind Vis Ndx Name\n" +msgstr " Num: Valor Tam Tipo Unión Vis Nombre Ind\n" + +#: ../src/readelf.c:1872 +#, c-format +msgid "%5u: %0* %6 %-7s %-6s %-9s %6s %s" +msgstr "" + +#: ../src/readelf.c:1960 +#, fuzzy, c-format +msgid "bad dynamic symbol" +msgstr "símbolo dinámico erróneo\n" + +#: ../src/readelf.c:2042 +#, fuzzy +msgid "none" +msgstr "nada" + +#: ../src/readelf.c:2059 +#, fuzzy +msgid "| " +msgstr "Desconocido" + +#: ../src/readelf.c:2084 +#, c-format +msgid "" +"\n" +"Version needs section [%2u] '%s' contains %d entry:\n" +" Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" +msgid_plural "" +"\n" +"Version needs section [%2u] '%s' contains %d entries:\n" +" Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" +msgstr[0] "" +msgstr[1] "" + +#: ../src/readelf.c:2107 +#, c-format +msgid " %#06x: Version: %hu File: %s Cnt: %hu\n" +msgstr "" + +#: ../src/readelf.c:2120 +#, c-format +msgid " %#06x: Name: %s Flags: %s Version: %hu\n" +msgstr "" + +#: ../src/readelf.c:2151 +#, c-format +msgid "" +"\n" +"Version definition section [%2u] '%s' contains %d entry:\n" +" Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" +msgid_plural "" +"\n" +"Version definition section [%2u] '%s' contains %d entries:\n" +" Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" +msgstr[0] "" +msgstr[1] "" + +#: ../src/readelf.c:2181 +#, c-format +msgid " %#06x: Version: %hd Flags: %s Index: %hd Cnt: %hd Name: %s\n" +msgstr "" + +#: ../src/readelf.c:2196 +#, fuzzy, c-format +msgid " %#06x: Parent %d: %s\n" +msgstr " %#06x: Padre %d: %s\n" + +#: ../src/readelf.c:2428 +#, c-format +msgid "" +"\n" +"Version symbols section [%2u] '%s' contains %d entry:\n" +" Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'" +msgid_plural "" +"\n" +"Version symbols section [%2u] '%s' contains %d entries:\n" +" Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'" +msgstr[0] "" +msgstr[1] "" + +#: ../src/readelf.c:2458 +#, fuzzy +msgid " 0 *local* " +msgstr "Local" + +#: ../src/readelf.c:2463 +#, fuzzy +msgid " 1 *global* " +msgstr " 1 (*global*) " + +#: ../src/readelf.c:2494 +#, c-format +msgid "" +"\n" +"Histogram for bucket list length in section [%2u] '%s' (total of %d bucket):\n" +" Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" +msgid_plural "" +"\n" +"Histogram for bucket list length in section [%2u] '%s' (total of %d buckets):\n" +" Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" +msgstr[0] "" +msgstr[1] "" + +#: ../src/readelf.c:2517 +#, fuzzy, c-format +msgid " Length Number % of total Coverage\n" +msgstr " Long Número %% del total Cobertura\n" + +#: ../src/readelf.c:2519 +#, fuzzy, c-format +msgid " 0 %6 %5.1f%%\n" +msgstr "%.1f km" + +#: ../src/readelf.c:2526 +#, fuzzy, c-format +msgid "%7d %6 %5.1f%% %5.1f%%\n" +msgstr "Fuerza Beaufort %.1f" + +#: ../src/readelf.c:2539 +#, c-format +msgid "" +" Average number of tests: successful lookup: %f\n" +" unsuccessful lookup: %f\n" +msgstr "" + +#: ../src/readelf.c:2557 +#: ../src/readelf.c:2599 +#: ../src/readelf.c:2640 +#, fuzzy, c-format +msgid "cannot get data for section %d: %s" +msgstr "" +"\n" +"No se puede obtener el ontenido de la sección '%s'.\n" + +#: ../src/readelf.c:2694 +#, c-format +msgid "" +" Symbol Bias: %u\n" +" Bitmask Size: %zu bytes %%% bits set 2nd hash shift: %u\n" +msgstr "" + +#: ../src/readelf.c:2768 +#, c-format +msgid "" +"\n" +"Library list section [%2zu] '%s' at offset %#0 contains %d entry:\n" +msgid_plural "" +"\n" +"Library list section [%2zu] '%s' at offset %#0 contains %d entries:\n" +msgstr[0] "" +msgstr[1] "" + +#: ../src/readelf.c:2782 +msgid " Library Time Stamp Checksum Version Flags" +msgstr "" + +#: ../src/readelf.c:2830 +#, c-format +msgid "" +"\n" +"Object attributes section [%2zu] '%s' of % bytes at offset %#0:\n" +msgstr "" + +#: ../src/readelf.c:2846 +#, fuzzy +msgid " Owner Size\n" +msgstr " Prop\t\tTamaño datos\tDescripción\n" + +#: ../src/readelf.c:2872 +#, fuzzy, c-format +msgid " %-13s %4\n" +msgstr "Pedido de servidor desconocida %" + +#: ../src/readelf.c:2903 +#, fuzzy, c-format +msgid " %-4u %12\n" +msgstr "12 x 11 in" + +#. Tag_File +#: ../src/readelf.c:2908 +#, fuzzy, c-format +msgid " File: %11\n" +msgstr "10 x 11 in" + +#: ../src/readelf.c:2943 +#, c-format +msgid " %s: %, %s\n" +msgstr "" + +#: ../src/readelf.c:2946 +#, c-format +msgid " %s: %\n" +msgstr "" + +#: ../src/readelf.c:2949 +#, c-format +msgid " %s: %s\n" +msgstr "" + +#: ../src/readelf.c:2956 +#, c-format +msgid " %u: %\n" +msgstr "" + +#: ../src/readelf.c:2959 +#, c-format +msgid " %u: %s\n" +msgstr "" + +#: ../src/readelf.c:2994 +#, c-format +msgid "%s+%# <%s+%#>" +msgstr "" + +#: ../src/readelf.c:2997 +#, c-format +msgid "%s+%#0* <%s+%#>" +msgstr "" + +#: ../src/readelf.c:3002 +#, c-format +msgid "%# <%s+%#>" +msgstr "" + +#: ../src/readelf.c:3005 +#, c-format +msgid "%#0* <%s+%#>" +msgstr "" + +#: ../src/readelf.c:3011 +#, c-format +msgid "%s+%# <%s>" +msgstr "" + +#: ../src/readelf.c:3014 +#, c-format +msgid "%s+%#0* <%s>" +msgstr "" + +#: ../src/readelf.c:3018 +#, c-format +msgid "%# <%s>" +msgstr "" + +#: ../src/readelf.c:3021 +#, c-format +msgid "%#0* <%s>" +msgstr "" + +#: ../src/readelf.c:3026 +#, c-format +msgid "%s+%#" +msgstr "" + +#: ../src/readelf.c:3029 +#, c-format +msgid "%s+%#0*" +msgstr "" + +#: ../src/readelf.c:3137 +#, fuzzy, c-format +msgid "unknown tag %hx" +msgstr "línea %d: etiqueta desconocida: %s\n" + +#: ../src/readelf.c:3139 +#, fuzzy, c-format +msgid "unknown user tag %hx" +msgstr "Valor TAG desconocido: %lx" + +#: ../src/readelf.c:3349 +#, fuzzy, c-format +msgid "unknown attribute %hx" +msgstr "atributo de sección '%c' desconocido" + +#: ../src/readelf.c:3352 +#, fuzzy, c-format +msgid "unknown user attribute %hx" +msgstr "Nombres de atributos de usuario predeterminados:\n" + +#: ../src/readelf.c:3398 +#, fuzzy, c-format +msgid "unknown form %" +msgstr "Valor FORM desconocido: %lx" + +#: ../src/readelf.c:4014 +#, fuzzy, c-format +msgid "%*s[%4] %s \n" +msgstr "Fichero truncado" + +#: ../src/readelf.c:4027 +#, c-format +msgid "" +"\n" +"DWARF section [%2zu] '%s' at offset %#:\n" +" [ Code]\n" +msgstr "" + +#: ../src/readelf.c:4034 +#, c-format +msgid "" +"\n" +"Abbreviation section at offset %:\n" +msgstr "" + +#: ../src/readelf.c:4047 +#, fuzzy, c-format +msgid " *** error while reading abbreviation: %s\n" +msgstr "Error al leer el disco." + +#: ../src/readelf.c:4063 +#, c-format +msgid " [%5u] offset: %, children: %s, tag: %s\n" +msgstr "" + +#: ../src/readelf.c:4066 +#, fuzzy +msgid "yes" +msgstr "sí" + +#: ../src/readelf.c:4066 +#, fuzzy +msgid "no" +msgstr "no" + +#: ../src/readelf.c:4102 +#, c-format +msgid "cannot get .debug_aranges content: %s" +msgstr "" + +#: ../src/readelf.c:4107 +#, c-format +msgid "" +"\n" +"DWARF section [%2zu] '%s' at offset %# contains %zu entry:\n" +msgid_plural "" +"\n" +"DWARF section [%2zu] '%s' at offset %# contains %zu entries:\n" +msgstr[0] "" +msgstr[1] "" + +#: ../src/readelf.c:4137 +#, c-format +msgid " [%*zu] ???\n" +msgstr "" + +#: ../src/readelf.c:4139 +#, c-format +msgid " [%*zu] start: %0#*, length: %5, CU DIE offset: %6\n" +msgstr "" + +#: ../src/readelf.c:4158 +#, c-format +msgid "cannot get .debug_ranges content: %s" +msgstr "" + +#: ../src/readelf.c:4163 +#: ../src/readelf.c:4620 +#: ../src/readelf.c:5265 +#: ../src/readelf.c:5710 +#: ../src/readelf.c:5805 +#: ../src/readelf.c:5977 +#, c-format +msgid "" +"\n" +"DWARF section [%2zu] '%s' at offset %#:\n" +msgstr "" + +#: ../src/readelf.c:4177 +#: ../src/readelf.c:5724 +#, fuzzy, c-format +msgid " [%6tx] \n" +msgstr "%F%P: declaración inválida de datos\n" + +#: ../src/readelf.c:4199 +#: ../src/readelf.c:5746 +#, fuzzy, c-format +msgid " [%6tx] base address %s\n" +msgstr " %8.8lx %8.8lx %8.8lx (dirección base)\n" + +#. We have an address range entry. +#. First address range entry in a list. +#: ../src/readelf.c:4210 +#, c-format +msgid " [%6tx] %s..%s\n" +msgstr "" + +#: ../src/readelf.c:4212 +#, c-format +msgid " %s..%s\n" +msgstr "" + +#: ../src/readelf.c:4609 +#: ../src/readelf.c:6043 +#: ../src/readelf.c:6145 +#, fuzzy, c-format +msgid "cannot get %s content: %s" +msgstr "No se puede obtener el nombre de la máquina (hostname)" + +#: ../src/readelf.c:4616 +#, c-format +msgid "" +"\n" +"Call frame information section [%2zu] '%s' at offset %#:\n" +msgstr "" + +#: ../src/readelf.c:4643 +#: ../src/readelf.c:5299 +#, fuzzy, c-format +msgid "invalid data in section [%zu] '%s'" +msgstr "La sección BOUNDS en el archivo no es válida." + +#: ../src/readelf.c:4665 +#, fuzzy, c-format +msgid "" +"\n" +" [%6tx] Zero terminator\n" +msgstr "terminador de linea desconocido" + +#: ../src/readelf.c:4739 +#, fuzzy +msgid "FDE address encoding: " +msgstr "Codificación en una sola pasada" + +#: ../src/readelf.c:4745 +#, fuzzy +msgid "LSDA pointer encoding: " +msgstr "Codificación en una sola pasada" + +#: ../src/readelf.c:4790 +#, fuzzy, c-format +msgid "invalid augmentation encoding" +msgstr "especificada una codificación inválida" + +#: ../src/readelf.c:4861 +#, fuzzy, c-format +msgid " (offset: %#)" +msgstr "Desplazamiento horizontal" + +#: ../src/readelf.c:4868 +#, fuzzy, c-format +msgid " (end offset: %#)" +msgstr " Desplaz Inicio Fin\n" + +#: ../src/readelf.c:4895 +#, fuzzy, c-format +msgid " %-26sLSDA pointer: %#\n" +msgstr "\tNombre de la Tabla de Punteros \t\t" + +#: ../src/readelf.c:4941 +#, fuzzy, c-format +msgid "cannot get attribute code: %s" +msgstr "No se puede inicializar el código de libbonoboui" + +#: ../src/readelf.c:4949 +#, fuzzy, c-format +msgid "cannot get attribute form: %s" +msgstr "No se puede añadir el atributo SMIMEEncKeyPrefs" + +#: ../src/readelf.c:4962 +#, fuzzy, c-format +msgid "cannot get attribute value: %s" +msgstr "No se puede añadir el atributo SMIMEEncKeyPrefs" + +#: ../src/readelf.c:5144 +#, c-format +msgid "" +"\n" +"DWARF section [%2zu] '%s' at offset %#:\n" +" [Offset]\n" +msgstr "" + +#: ../src/readelf.c:5169 +#, c-format +msgid "" +" Compilation unit at offset %:\n" +" Version: %, Abbreviation section offset: %, Address size: %, Offset size: %\n" +msgstr "" + +#: ../src/readelf.c:5187 +#, c-format +msgid "cannot get DIE at offset % in section '%s': %s" +msgstr "" + +#: ../src/readelf.c:5198 +#, fuzzy, c-format +msgid "cannot get DIE offset: %s" +msgstr "%s: no se puede desplazar a la posición %s" + +#: ../src/readelf.c:5206 +#, c-format +msgid "cannot get tag of DIE at offset % in section '%s': %s" +msgstr "" + +#: ../src/readelf.c:5235 +#, fuzzy, c-format +msgid "cannot get next DIE: %s\n" +msgstr "No se puede obtener el nombre oficial de la máquina (hostname)" + +#: ../src/readelf.c:5242 +#, fuzzy, c-format +msgid "cannot get next DIE: %s" +msgstr "No se puede obtener el nombre oficial de la máquina (hostname)" + +#: ../src/readelf.c:5277 +#, fuzzy, c-format +msgid "cannot get line data section data: %s" +msgstr "%C: No se puede obtener el contenido de la sección - excepción de auto-importación\n" + +#: ../src/readelf.c:5290 +#, fuzzy, c-format +msgid "" +"\n" +"Table at offset %Zu:\n" +msgstr "%s: error al escribir en el desplazamiento %s" + +#. Print what we got so far. +#: ../src/readelf.c:5342 +#, c-format +msgid "" +"\n" +" Length: %\n" +" DWARF version: %\n" +" Prologue length: %\n" +" Minimum instruction length: %\n" +" Initial value if '%s': %\n" +" Line base: %\n" +" Line range: %\n" +" Opcode base: %\n" +"\n" +"Opcodes:\n" +msgstr "" + +#: ../src/readelf.c:5361 +#, c-format +msgid "invalid data at offset %tu in section [%zu] '%s'" +msgstr "" + +#: ../src/readelf.c:5376 +#, fuzzy, c-format +msgid " [%*] %hhu argument\n" +msgid_plural " [%*] %hhu arguments\n" +msgstr[0] "argumento inválido en" +msgstr[1] "" + +#: ../src/readelf.c:5384 +#, fuzzy +msgid "" +"\n" +"Directory table:" +msgstr "Tabla del Cortafuegos:" + +#: ../src/readelf.c:5400 +msgid "" +"\n" +"File name table:\n" +" Entry Dir Time Size Name" +msgstr "" + +#: ../src/readelf.c:5429 +#, fuzzy +msgid "" +"\n" +"Line number statements:" +msgstr "" +"\n" +" Declaraciones de Número de Línea:\n" + +#: ../src/readelf.c:5490 +#, c-format +msgid " special opcode %u: address+%u = %s, line%+d = %zu\n" +msgstr "" + +#: ../src/readelf.c:5510 +#, fuzzy, c-format +msgid " extended opcode %u: " +msgstr " Código de operación extendido %d: " + +#: ../src/readelf.c:5515 +#, fuzzy +msgid "end of sequence" +msgstr "" +"Fin de la Secuencia\n" +"\n" + +#: ../src/readelf.c:5530 +#, fuzzy, c-format +msgid "set address to %s\n" +msgstr "La dirección de la sección %s se estableció a " + +#: ../src/readelf.c:5551 +#, c-format +msgid "define new file: dir=%u, mtime=%, length=%, name=%s\n" +msgstr "" + +#. Unknown, ignore it. +#: ../src/readelf.c:5560 +#, fuzzy +msgid "unknown opcode" +msgstr "código de operación desconocido" + +#. Takes no argument. +#: ../src/readelf.c:5572 +#, fuzzy +msgid " copy" +msgstr "&Copiar" + +#: ../src/readelf.c:5582 +#, fuzzy, c-format +msgid "advance address by %u to %s\n" +msgstr " Línea de Avance por %d para %d\n" + +#: ../src/readelf.c:5593 +#, fuzzy, c-format +msgid " advance line by constant %d to %\n" +msgstr " Avanzar el PC por la constante %lu a 0x%lx\n" + +#: ../src/readelf.c:5601 +#, fuzzy, c-format +msgid " set file to %\n" +msgstr "No se pudieron cambiar permisos del archivo temporal" + +#: ../src/readelf.c:5611 +#, fuzzy, c-format +msgid " set column to %\n" +msgstr " Establecer la columna a %lu\n" + +#: ../src/readelf.c:5618 +#, fuzzy, c-format +msgid " set '%s' to %\n" +msgstr "%s fijo los modos del usuario %s a: %s" + +#. Takes no argument. +#: ../src/readelf.c:5624 +#, fuzzy +msgid " set basic block flag" +msgstr "\t%d registro de cuenta de bloques básicos\n" + +#: ../src/readelf.c:5634 +#, fuzzy, c-format +msgid "advance address by constant %u to %s\n" +msgstr " Avanzar el PC por %lu para %lx\n" + +#: ../src/readelf.c:5650 +#, c-format +msgid "advance address by fixed value %u to %s\n" +msgstr "" + +#. Takes no argument. +#: ../src/readelf.c:5659 +#, fuzzy +msgid " set prologue end flag" +msgstr " Establecer prologue_end a true\n" + +#. Takes no argument. +#: ../src/readelf.c:5664 +#, fuzzy +msgid " set epilogue begin flag" +msgstr " Establecer epilogue_begin a true\n" + +#. This is a new opcode the generator but not we know about. +#. Read the parameters associated with it but then discard +#. everything. Read all the parameters for this opcode. +#: ../src/readelf.c:5673 +#, c-format +msgid " unknown opcode with % parameter:" +msgid_plural " unknown opcode with % parameters:" +msgstr[0] "" +msgstr[1] "" + +#: ../src/readelf.c:5705 +#, c-format +msgid "cannot get .debug_loc content: %s" +msgstr "" + +#. First entry in a list. +#: ../src/readelf.c:5760 +#, c-format +msgid " [%6tx] %s..%s" +msgstr "" + +#: ../src/readelf.c:5762 +#, c-format +msgid " %s..%s" +msgstr "" + +#: ../src/readelf.c:5815 +#, c-format +msgid "cannot get macro information section data: %s" +msgstr "" + +#: ../src/readelf.c:5894 +#, c-format +msgid "%*s*** non-terminated string at end of section" +msgstr "" + +#: ../src/readelf.c:5962 +#, c-format +msgid " [%5d] DIE offset: %6, CU DIE offset: %6, name: %s\n" +msgstr "" + +#: ../src/readelf.c:6001 +#, c-format +msgid "" +"\n" +"DWARF section [%2zu] '%s' at offset %#:\n" +" %*s String\n" +msgstr "" + +#: ../src/readelf.c:6015 +#, fuzzy, c-format +msgid " *** error while reading strings: %s\n" +msgstr "Error al leer el disco." + +#: ../src/readelf.c:6035 +#, c-format +msgid "" +"\n" +"Call frame search table section [%2zu] '.eh_frame_hdr':\n" +msgstr "" + +#: ../src/readelf.c:6137 +#, c-format +msgid "" +"\n" +"Exception handling table section [%2zu] '.gcc_except_table':\n" +msgstr "" + +#: ../src/readelf.c:6160 +#, fuzzy, c-format +msgid " LPStart encoding: %#x " +msgstr ": codificación desconocida" + +#: ../src/readelf.c:6172 +#, fuzzy, c-format +msgid " TType encoding: %#x " +msgstr ": codificación desconocida" + +#: ../src/readelf.c:6186 +#, fuzzy, c-format +msgid " Call site encoding: %#x " +msgstr "Codificación en una sola pasada" + +#: ../src/readelf.c:6199 +#, fuzzy +msgid "" +"\n" +" Call site table:" +msgstr "[:][:]" + +#: ../src/readelf.c:6213 +#, c-format +msgid "" +" [%4u] Call site start: %#\n" +" Call site length: %\n" +" Landing pad: %#\n" +" Action: %u\n" +msgstr "" + +#: ../src/readelf.c:6273 +#, fuzzy, c-format +msgid "invalid TType encoding" +msgstr "especificada una codificación inválida" + +#: ../src/readelf.c:6296 +#, c-format +msgid "cannot get debug context descriptor: %s" +msgstr "" + +#: ../src/readelf.c:6431 +#: ../src/readelf.c:7009 +#, c-format +msgid "cannot convert core note data: %s" +msgstr "" + +#: ../src/readelf.c:6736 +#, fuzzy, c-format +msgid "" +"\n" +"%*s... ..." +msgstr "Mostrar horas del día." + +#: ../src/readelf.c:6778 +#, fuzzy, c-format +msgid "unable to handle register number %d" +msgstr "No se puede asignar un número de partición." + +#: ../src/readelf.c:6925 +#: ../src/readelf.c:6949 +#, fuzzy, c-format +msgid "cannot register info: %s" +msgstr "No se pudo registrar el servicio" + +#: ../src/readelf.c:7107 +#, fuzzy +msgid " Owner Data size Type\n" +msgstr "Escribir un tamaño en puntos." + +#: ../src/readelf.c:7125 +#, fuzzy, c-format +msgid " %-13.*s %9 %s\n" +msgstr "13 lugares" + +#: ../src/readelf.c:7156 +#, fuzzy, c-format +msgid "cannot get content of note section: %s" +msgstr "%C: No se puede obtener el contenido de la sección - excepción de auto-importación\n" + +#: ../src/readelf.c:7183 +#, c-format +msgid "" +"\n" +"Note section [%2zu] '%s' of % bytes at offset %#0:\n" +msgstr "" + +#: ../src/readelf.c:7206 +#, c-format +msgid "" +"\n" +"Note segment of % bytes at offset %#0:\n" +msgstr "" + +#: ../src/readelf.c:7252 +#, c-format +msgid "" +"\n" +"Section [%Zu] '%s' has no data to dump.\n" +msgstr "" + +#: ../src/readelf.c:7258 +#: ../src/readelf.c:7280 +#, c-format +msgid "cannot get data for section [%Zu] '%s': %s" +msgstr "" + +#: ../src/readelf.c:7262 +#, c-format +msgid "" +"\n" +"Hex dump of section [%Zu] '%s', % bytes at offset %#0:\n" +msgstr "" + +#: ../src/readelf.c:7275 +#, fuzzy, c-format +msgid "" +"\n" +"Section [%Zu] '%s' is empty.\n" +msgstr " La historia de órdenes está vacía " + +#: ../src/readelf.c:7284 +#, c-format +msgid "" +"\n" +"String section [%Zu] '%s' contains % bytes at offset %#0:\n" +msgstr "" + +#: ../src/readelf.c:7331 +#, fuzzy, c-format +msgid "" +"\n" +"section [%lu] does not exist" +msgstr "El anclaje HTML %s no existe." + +#: ../src/readelf.c:7357 +#, fuzzy, c-format +msgid "" +"\n" +"section '%s' does not exist" +msgstr ": ¡el archivo no existe!" + +#: ../src/readelf.c:7418 +#, fuzzy, c-format +msgid "cannot get symbol index of archive '%s': %s" +msgstr "%s: no se pueden obtener las direcciones del archivo" + +#: ../src/readelf.c:7421 +#, fuzzy, c-format +msgid "" +"\n" +"Archive '%s' has no symbol index\n" +msgstr "la directiva .ent no tiene símbolo" + +#: ../src/readelf.c:7425 +#, c-format +msgid "" +"\n" +"Index of archive '%s' has %Zu entries:\n" +msgstr "" + +#: ../src/readelf.c:7443 +#, c-format +msgid "cannot extract member at offset %Zu in '%s': %s" +msgstr "" + +#: ../src/readelf.c:7448 +#, fuzzy, c-format +msgid "Archive member '%s' contains:\n" +msgstr "Comprueba si el archivador contiene errores" + +#: ../src/size.c:68 +msgid "Use the output format FORMAT. FORMAT can be `bsd' or `sysv'. The default is `bsd'" +msgstr "" + +#: ../src/size.c:70 +#, fuzzy +msgid "Same as `--format=sysv'" +msgstr "lo mismo que --format=posix" + +#: ../src/size.c:71 +#, fuzzy +msgid "Same as `--format=bsd'" +msgstr "lo mismo que --format=posix" + +#: ../src/size.c:74 +#, fuzzy +msgid "Same as `--radix=10'" +msgstr "lo mismo que --format=posix" + +#: ../src/size.c:75 +#, fuzzy +msgid "Same as `--radix=8'" +msgstr "lo mismo que --format=posix" + +#: ../src/size.c:76 +#, fuzzy +msgid "Same as `--radix=16'" +msgstr "lo mismo que --format=posix" + +#: ../src/size.c:78 +msgid "Similar to `--format=sysv' output but in one line" +msgstr "" + +#: ../src/size.c:82 +msgid "Print size and permission flags for loadable segments" +msgstr "" + +#: ../src/size.c:83 +msgid "Display the total sizes (bsd only)" +msgstr "" + +#. Short description of program. +#: ../src/size.c:88 +msgid "List section sizes of FILEs (a.out by default)." +msgstr "" + +#: ../src/size.c:269 +#, fuzzy, c-format +msgid "Invalid format: %s" +msgstr "%s: Formato de archivo inválido" + +#: ../src/size.c:280 +#, fuzzy, c-format +msgid "Invalid radix: %s" +msgstr "%s: radical inválido" + +#: ../src/size.c:339 +#, fuzzy, c-format +msgid "%s: file format not recognized" +msgstr "No se reconoce el formato del fichero" + +#: ../src/size.c:446 +#: ../src/size.c:589 +#, fuzzy, c-format +msgid " (ex %s)" +msgstr "ex" + +#: ../src/size.c:614 +#, fuzzy +msgid "(TOTALS)\n" +msgstr "calcular totales" + +#: ../src/strip.c:73 +msgid "Place stripped output into FILE" +msgstr "" + +#: ../src/strip.c:74 +#, fuzzy +msgid "Extract the removed sections into FILE" +msgstr "substituir las secciones i18n en el archivo spec" + +#: ../src/strip.c:75 +#, fuzzy +msgid "Embed name FILE instead of -f argument" +msgstr "-L NOMBRE --label=NOMBRE Usa NOMBRE en lugar del nombre de fichero." + +#: ../src/strip.c:79 +#, fuzzy +msgid "Remove all debugging symbols" +msgstr "Descarta todos los símbolos locales" + +#: ../src/strip.c:83 +msgid "Copy modified/access timestamps to the output" +msgstr "" + +#: ../src/strip.c:85 +#, fuzzy +msgid "Remove .comment section" +msgstr "Quita la traducción de nombre/comentario" + +#: ../src/strip.c:88 +msgid "Relax a few rules to handle slightly broken ELF files" +msgstr "" + +#. Short description of program. +#: ../src/strip.c:93 +#, fuzzy +msgid "Discard symbols from object files." +msgstr " Remueve símbolos y secciones de los ficheros\n" + +#: ../src/strip.c:185 +#, c-format +msgid "Only one input file allowed together with '-o' and '-f'" +msgstr "" + +#: ../src/strip.c:221 +#, fuzzy, c-format +msgid "-f option specified twice" +msgstr "se desconoce la opción -m%s= especificada: '%s'" + +#: ../src/strip.c:230 +#, fuzzy, c-format +msgid "-F option specified twice" +msgstr "se desconoce la opción -m%s= especificada: '%s'" + +#: ../src/strip.c:239 +#: ../src/unstrip.c:124 +#, fuzzy, c-format +msgid "-o option specified twice" +msgstr "se desconoce la opción -m%s= especificada: '%s'" + +#: ../src/strip.c:259 +#, c-format +msgid "-R option supports only .comment section" +msgstr "" + +#: ../src/strip.c:297 +#: ../src/strip.c:321 +#, fuzzy, c-format +msgid "cannot stat input file '%s'" +msgstr "stat() no pudo evaluar archivo de entrada \"%s\": %s" + +#: ../src/strip.c:311 +#, fuzzy, c-format +msgid "while opening '%s'" +msgstr "mientras se abría %s" + +#: ../src/strip.c:349 +#, c-format +msgid "%s: cannot use -o or -f when stripping archive" +msgstr "" + +#: ../src/strip.c:447 +#, fuzzy, c-format +msgid "cannot open EBL backend" +msgstr "No se puede abrir el documento HTML: %s" + +#: ../src/strip.c:497 +#: ../src/strip.c:521 +#, fuzzy, c-format +msgid "cannot create new file '%s': %s" +msgstr "%s: no se puede crear un nuevo fichero de preferencias predeterminadas\n" + +#: ../src/strip.c:581 +#, fuzzy, c-format +msgid "illformed file '%s'" +msgstr "Error de archivo" + +#: ../src/strip.c:867 +#: ../src/strip.c:954 +#, fuzzy, c-format +msgid "while generating output file: %s" +msgstr "error al cerrar el fichero de salida" + +#: ../src/strip.c:927 +#: ../src/strip.c:1666 +#, fuzzy, c-format +msgid "%s: error while creating ELF header: %s" +msgstr "Error al crear el enlace hacia %B." + +#: ../src/strip.c:941 +#, fuzzy, c-format +msgid "while preparing output for '%s'" +msgstr "no se puede abrir `%s' para salida: %s" + +#: ../src/strip.c:992 +#: ../src/strip.c:1048 +#, fuzzy, c-format +msgid "while create section header section: %s" +msgstr "no se puede crear el encabezado precompilado %s: %m" + +#: ../src/strip.c:998 +#, fuzzy, c-format +msgid "cannot allocate section data: %s" +msgstr "no se puede asignar espacio para los datos del símbolo" + +#: ../src/strip.c:1057 +#, fuzzy, c-format +msgid "while create section header string table: %s" +msgstr "falló la asignación de la tabla de cadenas de cabeceras de sección" + +#: ../src/strip.c:1591 +#: ../src/strip.c:1688 +#, fuzzy, c-format +msgid "while writing '%s': %s" +msgstr "%s: al escribir el resultado %s: %m:" + +#: ../src/strip.c:1602 +#, fuzzy, c-format +msgid "while creating '%s'" +msgstr "Error al crear thread" + +#: ../src/strip.c:1614 +#, c-format +msgid "while computing checksum for debug information" +msgstr "" + +#: ../src/strip.c:1674 +#, fuzzy, c-format +msgid "%s: error while reading the file: %s" +msgstr "Error al leer archivo." + +#: ../src/strip.c:1720 +#: ../src/strip.c:1727 +#, fuzzy, c-format +msgid "error while finishing '%s': %s" +msgstr "Error al copiar «%B»." + +#: ../src/strip.c:1750 +#: ../src/strip.c:1807 +#, c-format +msgid "cannot set access and modification date of '%s'" +msgstr "" + +#: ../src/ld.c:87 +#, fuzzy +msgid "Input File Control:" +msgstr "" +"-o FICHERO-SALIDA [FICHERO-ENTRADA]...\n" +"[FICHERO-SALIDA [FICHERO-ENTRADA]...]" + +#: ../src/ld.c:89 +msgid "Include whole archives in the output from now on." +msgstr "" + +#: ../src/ld.c:91 +msgid "Stop including the whole arhives in the output." +msgstr "" + +#: ../src/ld.c:92 +#: ../src/ld.c:106 +#: ../src/ld.c:184 +#, fuzzy +msgid "FILE" +msgstr "FICHERO" + +#: ../src/ld.c:93 +#, fuzzy +msgid "Start a group." +msgstr "Inicia un grupo" + +#: ../src/ld.c:94 +#, fuzzy +msgid "End a group." +msgstr "Termina un grupo" + +#: ../src/ld.c:95 +#, fuzzy +msgid "PATH" +msgstr "RUTA" + +#: ../src/ld.c:96 +msgid "Add PATH to list of directories files are searched in." +msgstr "" + +#: ../src/ld.c:98 +msgid "Only set DT_NEEDED for following dynamic libs if actually used" +msgstr "" + +#: ../src/ld.c:100 +#, fuzzy +msgid "Always set DT_NEEDED for following dynamic libs" +msgstr "Siempre establece DT_NEEDED para las siguientes bibliotecas dinámicas" + +#: ../src/ld.c:102 +msgid "Ignore LD_LIBRARY_PATH environment variable." +msgstr "" + +#: ../src/ld.c:105 +#, fuzzy +msgid "Output File Control:" +msgstr "" +"-o FICHERO-SALIDA [FICHERO-ENTRADA]...\n" +"[FICHERO-SALIDA [FICHERO-ENTRADA]...]" + +#: ../src/ld.c:106 +#, fuzzy +msgid "Place output in FILE." +msgstr " -o Coloca la salida en el \n" + +#: ../src/ld.c:109 +msgid "Object is marked to not use default search path at runtime." +msgstr "" + +#: ../src/ld.c:111 +#, fuzzy +msgid "Same as --whole-archive." +msgstr "Apaga --whole-archive" + +#: ../src/ld.c:112 +msgid "Default rules of extracting from archive; weak references are not enough." +msgstr "" + +#: ../src/ld.c:116 +msgid "Weak references cause extraction from archive." +msgstr "" + +#: ../src/ld.c:118 +msgid "Allow multiple definitions; first is used." +msgstr "" + +#: ../src/ld.c:120 +msgid "Disallow/allow undefined symbols in DSOs." +msgstr "" + +#: ../src/ld.c:123 +msgid "Object requires immediate handling of $ORIGIN." +msgstr "" + +#: ../src/ld.c:125 +#, fuzzy +msgid "Relocation will not be processed lazily." +msgstr "No se pudo procesar la búsqueda" + +#: ../src/ld.c:127 +#, fuzzy +msgid "Object cannot be unloaded at runtime." +msgstr "La constante nombrada '%s' en %L no puede ser un objeto EQUIVALENCE" + +#: ../src/ld.c:129 +msgid "Mark object to be initialized first." +msgstr "" + +#: ../src/ld.c:131 +msgid "Enable/disable lazy-loading flag for following dependencies." +msgstr "" + +#: ../src/ld.c:133 +msgid "Mark object as not loadable with 'dlopen'." +msgstr "" + +#: ../src/ld.c:135 +msgid "Ignore/record dependencies on unused DSOs." +msgstr "" + +#: ../src/ld.c:137 +msgid "Generated DSO will be a system library." +msgstr "" + +#: ../src/ld.c:138 +#, fuzzy +msgid "ADDRESS" +msgstr "DIRECCIÓN" + +#: ../src/ld.c:138 +#, fuzzy +msgid "Set entry point address." +msgstr "dirección IP punto-a-punto" + +#: ../src/ld.c:141 +#, fuzzy +msgid "Do not link against shared libraries." +msgstr "No enlaza contra bibliotecas compartidas" + +#: ../src/ld.c:144 +#, fuzzy +msgid "Prefer linking against shared libraries." +msgstr "No enlaza contra bibliotecas compartidas" + +#: ../src/ld.c:145 +#, fuzzy +msgid "Export all dynamic symbols." +msgstr "Exporta todos los símbolos dinámicos" + +#: ../src/ld.c:146 +#, fuzzy +msgid "Strip all symbols." +msgstr "Descarta todos los símbolos" + +#: ../src/ld.c:147 +#, fuzzy +msgid "Strip debugging symbols." +msgstr "Descarta los símbolos de depuración" + +#: ../src/ld.c:149 +msgid "Assume pagesize for the target system to be SIZE." +msgstr "" + +#: ../src/ld.c:151 +#, fuzzy +msgid "Set runtime DSO search path." +msgstr "Establece la ruta de búsqueda de bibliotecas compartidas en tiempo de ejecución" + +#: ../src/ld.c:154 +#, fuzzy +msgid "Set link time DSO search path." +msgstr "Establece la ruta de búsqueda de bibliotecas compartidas en tiempo de enlace" + +#: ../src/ld.c:155 +#, fuzzy +msgid "Generate dynamic shared object." +msgstr "La reapertura del objeto compartido `%s' falló" + +#: ../src/ld.c:156 +#, fuzzy +msgid "Generate relocatable object." +msgstr "Genera salida reubicable" + +#: ../src/ld.c:159 +msgid "Causes symbol not assigned to a version be reduced to local." +msgstr "" + +#: ../src/ld.c:160 +#, fuzzy +msgid "Remove unused sections." +msgstr "No elimina las secciones sin uso (por defecto)" + +#: ../src/ld.c:163 +#, fuzzy +msgid "Don't remove unused sections." +msgstr "No elimina las secciones sin uso (por defecto)" + +#: ../src/ld.c:164 +#, fuzzy +msgid "Set soname of shared object." +msgstr "La reapertura del objeto compartido `%s' falló" + +#: ../src/ld.c:165 +#, fuzzy +msgid "Set the dynamic linker name." +msgstr " -L --linker Usa como el enlazador.\n" + +#: ../src/ld.c:168 +msgid "Add/suppress addition indentifying link-editor to .comment section." +msgstr "" + +#: ../src/ld.c:171 +msgid "Create .eh_frame_hdr section" +msgstr "" + +#: ../src/ld.c:173 +msgid "Set hash style to sysv, gnu or both." +msgstr "" + +#: ../src/ld.c:175 +msgid "Generate build ID note (md5, sha1 (default), uuid)." +msgstr "" + +#: ../src/ld.c:177 +#, fuzzy +msgid "Linker Operation Control:" +msgstr "Control de volumen desconocido %d" + +#: ../src/ld.c:178 +#, fuzzy +msgid "Verbose messages." +msgstr "Genera mensajes explicativos" + +#: ../src/ld.c:179 +#, fuzzy +msgid "Trace file opens." +msgstr "Rastrea la apertura de ficheros" + +#: ../src/ld.c:181 +msgid "Trade speed for less memory usage" +msgstr "" + +#: ../src/ld.c:182 +#, fuzzy +msgid "LEVEL" +msgstr "NIVEL" + +#: ../src/ld.c:183 +#, fuzzy +msgid "Set optimization level to LEVEL." +msgstr "Establece el nivel de optimización a " + +#: ../src/ld.c:184 +#, fuzzy +msgid "Use linker script in FILE." +msgstr "%P%F: no se puede abrir el fichero de guión del enlazador %s: %E\n" + +#: ../src/ld.c:187 +msgid "Select to get parser debug information" +msgstr "" + +#: ../src/ld.c:190 +#, fuzzy +msgid "Read version information from FILE." +msgstr "Muestra la información de objeto.\n" + +#: ../src/ld.c:191 +#, fuzzy +msgid "Set emulation to NAME." +msgstr "|NOMBRE|usa el juego de caracteres NOMBRE" + +#. Short description of program. +#: ../src/ld.c:197 +msgid "Combine object and archive files." +msgstr "" + +#. Strings for arguments in help texts. +#: ../src/ld.c:200 +#, fuzzy +msgid "[FILE]..." +msgstr "[FICHERO]..." + +#: ../src/ld.c:333 +#, fuzzy, c-format +msgid "At least one input file needed" +msgstr "sólo se permite un fichero de entrada máximo" + +#: ../src/ld.c:349 +#, fuzzy, c-format +msgid "error while preparing linking" +msgstr "Error al intentar cargar «%s»." + +#: ../src/ld.c:356 +#, fuzzy, c-format +msgid "cannot open linker script '%s'" +msgstr "%P%F: no se puede abrir el fichero de guión del enlazador %s: %E\n" + +#: ../src/ld.c:397 +#, fuzzy, c-format +msgid "-( without matching -)" +msgstr "Se encontró '~%c' sin su '~%c' correspondiente." + +#: ../src/ld.c:572 +#: ../src/ld.c:610 +#, fuzzy, c-format +msgid "only one option of -G and -r is allowed" +msgstr "Solamente root puede usar esta opción" + +#: ../src/ld.c:594 +#, fuzzy, c-format +msgid "more than one '-m' parameter" +msgstr "Se ha especificado más de una fecha tope" + +#: ../src/ld.c:604 +#: ../src/ld.c:1013 +#, fuzzy, c-format +msgid "unknown option `-%c %s'" +msgstr "El parámetro '%s' es desconocido" + +#: ../src/ld.c:646 +#, fuzzy, c-format +msgid "invalid page size value '%s': ignored" +msgstr "Valor inválido %d para el tamaño de memoria" + +#: ../src/ld.c:687 +#, fuzzy, c-format +msgid "invalid hash style '%s'" +msgstr "algoritmo de distribución inválido `%s'\n" + +#: ../src/ld.c:697 +#, fuzzy, c-format +msgid "invalid build-ID style '%s'" +msgstr "estilo de numeración de cuerpo inválido: %s" + +#: ../src/ld.c:785 +#, c-format +msgid "More than one output file name given." +msgstr "" + +#: ../src/ld.c:802 +#, fuzzy, c-format +msgid "Invalid optimization level `%s'" +msgstr "[%s:%u] Nivel de log inválido '%s'." + +#: ../src/ld.c:850 +#, fuzzy, c-format +msgid "nested -( -) groups are not allowed" +msgstr "No se permiten órdenes de administrador\n" + +#: ../src/ld.c:869 +#, fuzzy, c-format +msgid "-) without matching -(" +msgstr "Se encontró '~%c' sin su '~%c' correspondiente." + +#: ../src/ld.c:1046 +#, fuzzy, c-format +msgid "unknown option '-%c %s'" +msgstr "El parámetro '%s' es desconocido" + +#: ../src/ld.c:1150 +#, c-format +msgid "could not find input file to determine output file format" +msgstr "" + +#: ../src/ld.c:1152 +#, fuzzy, c-format +msgid "try again with an appropriate '-m' parameter" +msgstr "Inténtelo con una contraseña diferente." + +#: ../src/ld.c:1446 +#, fuzzy, c-format +msgid "cannot read version script '%s'" +msgstr "Lee la información de la versión del guión" + +#. The symbol is already defined and now again +#. in the linker script. This is an error. +#: ../src/ld.c:1512 +#: ../src/ld.c:1551 +#, c-format +msgid "duplicate definition of '%s' in linker script" +msgstr "" + +#: ../src/ldgeneric.c:209 +#: ../src/ldgeneric.c:5151 +#, fuzzy, c-format +msgid "cannot create string table" +msgstr "<índice de la tabla de cadenas: %3ld>" + +#: ../src/ldgeneric.c:255 +#, c-format +msgid "cannot load ld backend library '%s': %s" +msgstr "" + +#: ../src/ldgeneric.c:265 +#, c-format +msgid "cannot find init function in ld backend library '%s': %s" +msgstr "" + +#: ../src/ldgeneric.c:310 +#, c-format +msgid "%s listed more than once as input" +msgstr "" + +#: ../src/ldgeneric.c:424 +#, fuzzy, c-format +msgid "%s (for -l%s)\n" +msgstr "durante" + +#: ../src/ldgeneric.c:425 +#, fuzzy, c-format +msgid "%s (for DT_NEEDED %s)\n" +msgstr "Se necesita IPv4 para NFS" + +#: ../src/ldgeneric.c:573 +#, fuzzy, c-format +msgid "Warning: type of `%s' changed from %s in %s to %s in %s" +msgstr "Aviso: el tipo del símbolo `%s' cambió de %d a %d en %B" + +#: ../src/ldgeneric.c:586 +#, fuzzy, c-format +msgid "Warning: size of `%s' changed from % in %s to % in %s" +msgstr "Aviso: el tamaño del símbolo `%s' cambió de %lu en %B a %lu en %B" + +#: ../src/ldgeneric.c:677 +#, fuzzy, c-format +msgid "(%s+%#): multiple definition of %s `%s'\n" +msgstr "Definición del IU combinado" + +#: ../src/ldgeneric.c:700 +#, fuzzy, c-format +msgid "(%s+%#): first defined here\n" +msgstr "%Hse requirió primero el método sintetizado %qD aquí " + +#: ../src/ldgeneric.c:819 +#, fuzzy, c-format +msgid "%s: cannot get section group data: %s" +msgstr "no se puede obtener el grupo de login de un UID numérico" + +#. If we come here no section group contained the given section +#. despite the SHF_GROUP flag. This is an error in the input +#. file. +#: ../src/ldgeneric.c:840 +#, c-format +msgid "%s: section '%s' with group flag set does not belong to any group" +msgstr "" + +#: ../src/ldgeneric.c:885 +#, c-format +msgid "%s: section [%2d] '%s' is not in the correct section group" +msgstr "" + +#. This should never happen. +#: ../src/ldgeneric.c:1156 +#: ../src/ldgeneric.c:1413 +#: ../src/ldgeneric.c:1422 +#: ../src/ldgeneric.c:1481 +#: ../src/ldgeneric.c:1490 +#: ../src/ldgeneric.c:1753 +#: ../src/ldgeneric.c:2005 +#, fuzzy, c-format +msgid "%s: invalid ELF file (%s:%d)\n" +msgstr "Versión de ABI del fichero ELF inválida" + +#: ../src/ldgeneric.c:1250 +#, c-format +msgid "%s: only files of type ET_REL might contain section groups" +msgstr "" + +#: ../src/ldgeneric.c:1302 +#, c-format +msgid "%s: cannot determine signature of section group [%2zd] '%s': %s" +msgstr "" + +#: ../src/ldgeneric.c:1314 +#, c-format +msgid "%s: cannot get content of section group [%2zd] '%s': %s'" +msgstr "" + +#: ../src/ldgeneric.c:1328 +#, c-format +msgid "%s: group member %zu of section group [%2zd] '%s' has too high index: %" +msgstr "" + +#: ../src/ldgeneric.c:1350 +#, fuzzy, c-format +msgid "%s: section '%s' has unknown type: %d" +msgstr "%s tiene un tipo de fichero desconocido" + +#: ../src/ldgeneric.c:1729 +#, c-format +msgid "cannot get descriptor for ELF file (%s:%d): %s\n" +msgstr "" + +#: ../src/ldgeneric.c:1899 +#, fuzzy, c-format +msgid "cannot read archive `%s': %s" +msgstr "no se puede leer la cabecera del archivo" + +#: ../src/ldgeneric.c:2020 +#, fuzzy, c-format +msgid "file of type %s cannot be linked in\n" +msgstr "El archivo de zona no puede ser removido desde este tipo de zona." + +#: ../src/ldgeneric.c:2032 +#, c-format +msgid "%s: input file incompatible with ELF machine type %s\n" +msgstr "" + +#: ../src/ldgeneric.c:2044 +#, c-format +msgid "%s: cannot get section header string table index: %s\n" +msgstr "" + +#: ../src/ldgeneric.c:2073 +#, c-format +msgid "cannot use DSO '%s' when generating relocatable object file" +msgstr "" + +#: ../src/ldgeneric.c:2158 +#, fuzzy, c-format +msgid "input file '%s' ignored" +msgstr "; el resto del fichero no se tiene en cuenta" + +#. XXX The error message should get better. It should use +#. the debugging information if present to tell where in the +#. sources the undefined reference is. +#: ../src/ldgeneric.c:2372 +#, fuzzy, c-format +msgid "undefined symbol `%s' in %s" +msgstr "símbolo indefinido `%s' en la operación" + +#: ../src/ldgeneric.c:2702 +#, c-format +msgid "cannot create ELF descriptor for output file: %s" +msgstr "" + +#: ../src/ldgeneric.c:2709 +#, c-format +msgid "could not create ELF header for output file: %s" +msgstr "" + +#: ../src/ldgeneric.c:3224 +#: ../src/ldgeneric.c:3294 +#: ../src/ldgeneric.c:3330 +#: ../src/ldgeneric.c:4457 +#: ../src/ldgeneric.c:4506 +#: ../src/ldgeneric.c:4538 +#: ../src/ldgeneric.c:4773 +#: ../src/ldgeneric.c:4828 +#: ../src/ldgeneric.c:5075 +#: ../src/ldgeneric.c:5131 +#: ../src/ldgeneric.c:5600 +#: ../src/ldgeneric.c:5612 +#, fuzzy, c-format +msgid "cannot create section for output file: %s" +msgstr "no se puede crear el fichero de salida `%s' para la categoría `%s'" + +#: ../src/ldgeneric.c:3444 +#, c-format +msgid "address computation expression contains variable '%s'" +msgstr "" + +#: ../src/ldgeneric.c:3489 +#, c-format +msgid "argument '%' of ALIGN in address computation expression is no power of two" +msgstr "" + +#: ../src/ldgeneric.c:3684 +#, fuzzy, c-format +msgid "cannot find entry symbol '%s': defaulting to %#0*" +msgstr "%P: aviso: no se puede encontrar el símbolo de entrada %s; se usa por defecto %V\n" + +#: ../src/ldgeneric.c:3690 +#, c-format +msgid "no entry symbol specified: defaulting to %#0*" +msgstr "" + +#: ../src/ldgeneric.c:3920 +#, c-format +msgid "cannot create GNU hash table section for output file: %s" +msgstr "" + +#: ../src/ldgeneric.c:4071 +#, c-format +msgid "cannot create hash table section for output file: %s" +msgstr "" + +#: ../src/ldgeneric.c:4114 +#, fuzzy, c-format +msgid "cannot create build ID section: %s" +msgstr "%F%P: no se puede crear la tabla de división de secciones para %s\n" + +#: ../src/ldgeneric.c:4191 +#, c-format +msgid "cannot convert section data to file format: %s" +msgstr "" + +#: ../src/ldgeneric.c:4200 +#, c-format +msgid "cannot convert section data to memory format: %s" +msgstr "" + +#: ../src/ldgeneric.c:4261 +#, c-format +msgid "cannot read enough data for UUID" +msgstr "" + +#: ../src/ldgeneric.c:4358 +#: ../src/ldgeneric.c:4379 +#: ../src/ldgeneric.c:4408 +#: ../src/ldgeneric.c:6062 +#, c-format +msgid "cannot create symbol table for output file: %s" +msgstr "" + +#: ../src/ldgeneric.c:5300 +#: ../src/ldgeneric.c:5852 +#, c-format +msgid "section index too large in dynamic symbol table" +msgstr "" + +#: ../src/ldgeneric.c:5745 +#, fuzzy, c-format +msgid "cannot create versioning section: %s" +msgstr "%F%P: no se puede crear la tabla de división de secciones para %s\n" + +#: ../src/ldgeneric.c:5818 +#, c-format +msgid "cannot create dynamic symbol table for output file: %s" +msgstr "" + +#: ../src/ldgeneric.c:5994 +#, fuzzy, c-format +msgid "cannot create versioning data: %s" +msgstr "no se pueden crear las estructuras de datos TLS" + +#: ../src/ldgeneric.c:6094 +#: ../src/ldgeneric.c:6107 +#: ../src/ldgeneric.c:6171 +#: ../src/ldgeneric.c:6179 +#, fuzzy, c-format +msgid "cannot create section header string section: %s" +msgstr "falló la asignación de la tabla de cadenas de cabeceras de sección" + +#: ../src/ldgeneric.c:6101 +#, fuzzy, c-format +msgid "cannot create section header string section" +msgstr "falló la asignación de la tabla de cadenas de cabeceras de sección" + +#: ../src/ldgeneric.c:6259 +#, fuzzy, c-format +msgid "cannot create program header: %s" +msgstr "no se puede asignar memoria para la cabecera del programa" + +#: ../src/ldgeneric.c:6267 +#, fuzzy, c-format +msgid "while determining file layout: %s" +msgstr "Error al crear el archivo %B." + +#: ../src/ldgeneric.c:6388 +#, c-format +msgid "internal error: non-nobits section follows nobits section" +msgstr "" + +#: ../src/ldgeneric.c:6925 +#, fuzzy, c-format +msgid "cannot get header of 0th section: %s" +msgstr "%C: No se puede obtener el contenido de la sección - excepción de auto-importación\n" + +#: ../src/ldgeneric.c:6941 +#: ../src/unstrip.c:1807 +#, fuzzy, c-format +msgid "cannot update ELF header: %s" +msgstr "no se puede leer la cabecera del archivo" + +#: ../src/ldgeneric.c:6972 +#, c-format +msgid "linker backend didn't specify function to relocate section" +msgstr "" + +#: ../src/ldgeneric.c:6984 +#, fuzzy, c-format +msgid "while writing output file: %s" +msgstr "Ocurrió un error al escribir el archivo de salida." + +#: ../src/ldgeneric.c:6989 +#, fuzzy, c-format +msgid "while finishing output file: %s" +msgstr "error al cerrar el fichero de salida" + +#: ../src/ldgeneric.c:6995 +#, fuzzy, c-format +msgid "cannot stat output file" +msgstr "no se puede generar el fichero de salida" + +#: ../src/ldgeneric.c:7011 +#, c-format +msgid "WARNING: temporary output file overwritten before linking finished" +msgstr "" + +#. This cannot be implemented generally. There should have been a +#. machine dependent implementation and we should never have arrived +#. here. +#: ../src/ldgeneric.c:7064 +#: ../src/ldgeneric.c:7075 +#: ../src/ldgeneric.c:7086 +#: ../src/ldgeneric.c:7097 +#: ../src/ldgeneric.c:7116 +#: ../src/ldgeneric.c:7129 +#: ../src/ldgeneric.c:7141 +#, fuzzy, c-format +msgid "no machine specific '%s' implementation" +msgstr " no hay opciones específicas de emulación.\n" + +#: ../src/i386_ld.c:210 +#, fuzzy, c-format +msgid "cannot allocate PLT section: %s" +msgstr "No se puede asignar espacio para el búfer" + +#: ../src/i386_ld.c:232 +#, fuzzy, c-format +msgid "cannot allocate PLTREL section: %s" +msgstr "No se puede asignar espacio para el búfer" + +#: ../src/i386_ld.c:253 +#, fuzzy, c-format +msgid "cannot allocate GOT section: %s" +msgstr "No se puede asignar espacio para el búfer" + +#: ../src/i386_ld.c:274 +#, fuzzy, c-format +msgid "cannot allocate GOTPLT section: %s" +msgstr "No se puede asignar espacio para el búfer" + +#: ../src/i386_ld.c:661 +#, c-format +msgid "initial-executable TLS relocation cannot be used " +msgstr "" + +#: ../src/ldscript.y:178 +#, fuzzy +msgid "mode for segment invalid\n" +msgstr "modo inválido para dlopen()" + +#: ../src/ldscript.y:465 +#, fuzzy, c-format +msgid "while reading version script '%s': %s at line %d" +msgstr "Se encontró fin de archivo en la línea %d, antes de terminar de leer los datos." + +#: ../src/ldscript.y:466 +#, fuzzy, c-format +msgid "while reading linker script '%s': %s at line %d" +msgstr "Se encontró fin de archivo en la línea %d, antes de terminar de leer los datos." + +#: ../src/ldscript.y:745 +#, c-format +msgid "symbol '%s' in declared both local and global for unnamed version" +msgstr "" + +#: ../src/ldscript.y:747 +#, c-format +msgid "symbol '%s' in declared both local and global for version '%s'" +msgstr "" + +#: ../src/ldscript.y:767 +#: ../src/ldscript.y:774 +#, c-format +msgid "default visibility set as local and global" +msgstr "" + +#: ../src/elflint.c:71 +msgid "Be extremely strict, flag level 2 features." +msgstr "" + +#: ../src/elflint.c:72 +msgid "Do not print anything if successful" +msgstr "" + +#: ../src/elflint.c:73 +msgid "Binary is a separate debuginfo file" +msgstr "" + +#: ../src/elflint.c:75 +msgid "Binary has been created with GNU ld and is therefore known to be broken in certain ways" +msgstr "" + +#. Short description of program. +#: ../src/elflint.c:81 +msgid "Pedantic checking of ELF files compliance with gABI/psABI spec." +msgstr "" + +#: ../src/elflint.c:165 +#, fuzzy, c-format +msgid "cannot generate Elf descriptor: %s\n" +msgstr "no se puede crear un descriptor interno" + +#: ../src/elflint.c:184 +#, fuzzy, c-format +msgid "error while closing Elf descriptor: %s\n" +msgstr "error al cerrar el fichero de salida" + +#: ../src/elflint.c:188 +#, fuzzy +msgid "No errors" +msgstr " NO SE HAN ENCONTRADO ERRORES\n" + +#: ../src/elflint.c:301 +#, c-format +msgid " error while freeing sub-ELF descriptor: %s\n" +msgstr "" + +#. We cannot do anything. +#: ../src/elflint.c:309 +#, fuzzy, c-format +msgid "Not an ELF file - it has the wrong magic bytes at the start\n" +msgstr "No es un fichero ELF - tiene los bytes mágicos erróneos en el inicio\n" + +#: ../src/elflint.c:368 +#, c-format +msgid "e_ident[%d] == %d is no known class\n" +msgstr "" + +#: ../src/elflint.c:373 +#, c-format +msgid "e_ident[%d] == %d is no known data encoding\n" +msgstr "" + +#: ../src/elflint.c:377 +#, c-format +msgid "unknown ELF header version number e_ident[%d] == %d\n" +msgstr "" + +#: ../src/elflint.c:382 +#, fuzzy, c-format +msgid "unsupported OS ABI e_ident[%d] == '%s'\n" +msgstr "ABI del OS del fichero ELF inválida" + +#: ../src/elflint.c:388 +#, fuzzy, c-format +msgid "unsupport ABI version e_ident[%d] == %d\n" +msgstr "No hubo coincidencia en el número de versión ABI %d.%d.x (necesitaba %d.%d.x)" + +#: ../src/elflint.c:393 +#, fuzzy, c-format +msgid "e_ident[%zu] is not zero\n" +msgstr "El 'resize_inode' no está habilitado, pero el nodo-i de cambio del tamaño no es cero. " + +#: ../src/elflint.c:398 +#, fuzzy, c-format +msgid "unknown object file type %d\n" +msgstr "%s: Tipo de fichero desconocido; no se tendrá en cuenta" + +#: ../src/elflint.c:405 +#, fuzzy, c-format +msgid "unknown machine type %d\n" +msgstr "Error interno: Tipo de máquina desconocido: %d" + +#: ../src/elflint.c:409 +#, fuzzy, c-format +msgid "unknown object file version\n" +msgstr "encabezado del fichero BFD versión %s\n" + +#: ../src/elflint.c:415 +#, fuzzy, c-format +msgid "invalid program header offset\n" +msgstr "Operando inválido para `OFFSET'" + +#: ../src/elflint.c:417 +#, c-format +msgid "executables and DSOs cannot have zero program header offset\n" +msgstr "" + +#: ../src/elflint.c:421 +#, c-format +msgid "invalid number of program header entries\n" +msgstr "" + +#: ../src/elflint.c:429 +#, fuzzy, c-format +msgid "invalid section header table offset\n" +msgstr "falló la asignación de la tabla de cadenas de cabeceras de sección" + +#: ../src/elflint.c:432 +#, c-format +msgid "section header table must be present\n" +msgstr "" + +#: ../src/elflint.c:446 +#, c-format +msgid "invalid number of section header table entries\n" +msgstr "" + +#: ../src/elflint.c:463 +#, fuzzy, c-format +msgid "invalid section header index\n" +msgstr " Índice de tabla de cadenas de sección de encabezado: %ld" + +#: ../src/elflint.c:468 +#, fuzzy, c-format +msgid "invalid machine flags: %s\n" +msgstr "%P%F: sintaxis inválida en los interruptores\n" + +#: ../src/elflint.c:475 +#: ../src/elflint.c:492 +#, c-format +msgid "invalid ELF header size: %hd\n" +msgstr "" + +#: ../src/elflint.c:478 +#: ../src/elflint.c:495 +#, c-format +msgid "invalid program header size: %hd\n" +msgstr "" + +#: ../src/elflint.c:481 +#: ../src/elflint.c:498 +#, c-format +msgid "invalid program header position or size\n" +msgstr "" + +#: ../src/elflint.c:484 +#: ../src/elflint.c:501 +#, c-format +msgid "invalid section header size: %hd\n" +msgstr "" + +#: ../src/elflint.c:487 +#: ../src/elflint.c:504 +#, c-format +msgid "invalid section header position or size\n" +msgstr "" + +#: ../src/elflint.c:548 +#, c-format +msgid "section [%2d] '%s': section with SHF_GROUP flag set not part of a section group\n" +msgstr "" + +#: ../src/elflint.c:552 +#, c-format +msgid "section [%2d] '%s': section group [%2zu] '%s' does not preceed group member\n" +msgstr "" + +#: ../src/elflint.c:568 +#: ../src/elflint.c:1393 +#: ../src/elflint.c:1443 +#: ../src/elflint.c:1552 +#: ../src/elflint.c:2146 +#: ../src/elflint.c:2660 +#: ../src/elflint.c:2821 +#: ../src/elflint.c:2951 +#: ../src/elflint.c:3123 +#: ../src/elflint.c:4020 +#, fuzzy, c-format +msgid "section [%2d] '%s': cannot get section data\n" +msgstr "%C: No se puede obtener el contenido de la sección - excepción de auto-importación\n" + +#: ../src/elflint.c:581 +#: ../src/elflint.c:1559 +#, c-format +msgid "section [%2d] '%s': referenced as string table for section [%2d] '%s' but type is not SHT_STRTAB\n" +msgstr "" + +#: ../src/elflint.c:604 +#, c-format +msgid "section [%2d] '%s': symbol table cannot have more than one extended index section\n" +msgstr "" + +#: ../src/elflint.c:615 +#, c-format +msgid "section [%2u] '%s': entry size is does not match ElfXX_Sym\n" +msgstr "" + +#: ../src/elflint.c:624 +#, fuzzy, c-format +msgid "section [%2d] '%s': cannot get symbol %d: %s\n" +msgstr "no se puede definir el símbolo `%s' en la sección absoluta" + +#: ../src/elflint.c:629 +#: ../src/elflint.c:632 +#: ../src/elflint.c:635 +#: ../src/elflint.c:638 +#: ../src/elflint.c:641 +#: ../src/elflint.c:644 +#, c-format +msgid "section [%2d] '%s': '%s' in zeroth entry not zero\n" +msgstr "" + +#: ../src/elflint.c:647 +#, c-format +msgid "section [%2d] '%s': XINDEX for zeroth entry not zero\n" +msgstr "" + +#: ../src/elflint.c:657 +#, c-format +msgid "section [%2d] '%s': cannot get symbol %zu: %s\n" +msgstr "" + +#: ../src/elflint.c:666 +#, c-format +msgid "section [%2d] '%s': symbol %zu: invalid name value\n" +msgstr "" + +#: ../src/elflint.c:679 +#, c-format +msgid "section [%2d] '%s': symbol %zu: too large section index but no extended section index section\n" +msgstr "" + +#: ../src/elflint.c:685 +#, c-format +msgid "section [%2d] '%s': symbol %zu: XINDEX used for index which would fit in st_shndx (%)\n" +msgstr "" + +#. || sym->st_shndx > SHN_HIRESERVE always false +#: ../src/elflint.c:697 +#, c-format +msgid "section [%2d] '%s': symbol %zu: invalid section index\n" +msgstr "" + +#: ../src/elflint.c:705 +#, c-format +msgid "section [%2d] '%s': symbol %zu: unknown type\n" +msgstr "" + +#: ../src/elflint.c:709 +#, c-format +msgid "section [%2d] '%s': symbol %zu: unknown symbol binding\n" +msgstr "" + +#: ../src/elflint.c:717 +#, c-format +msgid "section [%2d] '%s': symbol %zu: COMMON only allowed in relocatable files\n" +msgstr "" + +#: ../src/elflint.c:721 +#, c-format +msgid "section [%2d] '%s': symbol %zu: local COMMON symbols are nonsense\n" +msgstr "" + +#: ../src/elflint.c:725 +#, c-format +msgid "section [%2d] '%s': symbol %zu: function in COMMON section is nonsense\n" +msgstr "" + +#: ../src/elflint.c:757 +#, c-format +msgid "section [%2d] '%s': symbol %zu: st_value out of bounds\n" +msgstr "" + +#: ../src/elflint.c:763 +#: ../src/elflint.c:788 +#: ../src/elflint.c:831 +#, c-format +msgid "section [%2d] '%s': symbol %zu does not fit completely in referenced section [%2d] '%s'\n" +msgstr "" + +#: ../src/elflint.c:772 +#, c-format +msgid "section [%2d] '%s': symbol %zu: referenced section [%2d] '%s' does not have SHF_TLS flag set\n" +msgstr "" + +#: ../src/elflint.c:782 +#: ../src/elflint.c:824 +#, c-format +msgid "section [%2d] '%s': symbol %zu: st_value out of bounds of referenced section [%2d] '%s'\n" +msgstr "" + +#: ../src/elflint.c:809 +#, c-format +msgid "section [%2d] '%s': symbol %zu: TLS symbol but no TLS program header entry\n" +msgstr "" + +#: ../src/elflint.c:817 +#, c-format +msgid "section [%2d] '%s': symbol %zu: st_value short of referenced section [%2d] '%s'\n" +msgstr "" + +#: ../src/elflint.c:844 +#, c-format +msgid "section [%2d] '%s': symbol %zu: local symbol outside range described in sh_info\n" +msgstr "" + +#: ../src/elflint.c:851 +#, c-format +msgid "section [%2d] '%s': symbol %zu: non-local symbol outside range described in sh_info\n" +msgstr "" + +#: ../src/elflint.c:858 +#, c-format +msgid "section [%2d] '%s': symbol %zu: non-local section symbol\n" +msgstr "" + +#: ../src/elflint.c:908 +#, c-format +msgid "section [%2d] '%s': _GLOBAL_OFFSET_TABLE_ symbol refers to bad section [%2d]\n" +msgstr "" + +#: ../src/elflint.c:915 +#, c-format +msgid "section [%2d] '%s': _GLOBAL_OFFSET_TABLE_ symbol refers to section [%2d] '%s'\n" +msgstr "" + +#. This test is more strict than the psABIs which +#. usually allow the symbol to be in the middle of +#. the .got section, allowing negative offsets. +#: ../src/elflint.c:931 +#, c-format +msgid "section [%2d] '%s': _GLOBAL_OFFSET_TABLE_ symbol value %# does not match %s section address %#\n" +msgstr "" + +#: ../src/elflint.c:938 +#, c-format +msgid "section [%2d] '%s': _GLOBAL_OFFSET_TABLE_ symbol size % does not match %s section size %\n" +msgstr "" + +#: ../src/elflint.c:946 +#, c-format +msgid "section [%2d] '%s': _GLOBAL_OFFSET_TABLE_ symbol present, but no .got section\n" +msgstr "" + +#: ../src/elflint.c:962 +#, c-format +msgid "section [%2d] '%s': _DYNAMIC_ symbol value %# does not match dynamic segment address %#\n" +msgstr "" + +#: ../src/elflint.c:969 +#, c-format +msgid "section [%2d] '%s': _DYNAMIC symbol size % does not match dynamic segment size %\n" +msgstr "" + +#: ../src/elflint.c:1020 +#, c-format +msgid "section [%2d] '%s': DT_RELCOUNT used for this RELA section\n" +msgstr "" + +#: ../src/elflint.c:1029 +#: ../src/elflint.c:1081 +#, c-format +msgid "section [%2d] '%s': DT_RELCOUNT value %d too high for this section\n" +msgstr "" + +#: ../src/elflint.c:1054 +#: ../src/elflint.c:1106 +#, c-format +msgid "section [%2d] '%s': relative relocations after index %d as specified by DT_RELCOUNT\n" +msgstr "" + +#: ../src/elflint.c:1060 +#: ../src/elflint.c:1112 +#, c-format +msgid "section [%2d] '%s': non-relative relocation at index %zu; DT_RELCOUNT specified %d relative relocations\n" +msgstr "" + +#: ../src/elflint.c:1072 +#, c-format +msgid "section [%2d] '%s': DT_RELACOUNT used for this REL section\n" +msgstr "" + +#: ../src/elflint.c:1154 +#, fuzzy, c-format +msgid "section [%2d] '%s': invalid destination section index\n" +msgstr "%B: enlace %lu inválido para la sección de reubicación %s (índice %u)" + +#: ../src/elflint.c:1167 +#, c-format +msgid "section [%2d] '%s': invalid destination section type\n" +msgstr "" + +#: ../src/elflint.c:1175 +#, c-format +msgid "section [%2d] '%s': sh_info should be zero\n" +msgstr "" + +#: ../src/elflint.c:1182 +#, c-format +msgid "section [%2d] '%s': no relocations for merge-able sections possible\n" +msgstr "" + +#: ../src/elflint.c:1189 +#, c-format +msgid "section [%2d] '%s': section entry size does not match ElfXX_Rela\n" +msgstr "" + +#: ../src/elflint.c:1249 +#, c-format +msgid "text relocation flag set but there is no read-only segment\n" +msgstr "" + +#: ../src/elflint.c:1276 +#, c-format +msgid "section [%2d] '%s': relocation %zu: invalid type\n" +msgstr "" + +#: ../src/elflint.c:1284 +#, c-format +msgid "section [%2d] '%s': relocation %zu: relocation type invalid for the file type\n" +msgstr "" + +#: ../src/elflint.c:1292 +#, c-format +msgid "section [%2d] '%s': relocation %zu: invalid symbol index\n" +msgstr "" + +#: ../src/elflint.c:1310 +#, c-format +msgid "section [%2d] '%s': relocation %zu: only symbol '_GLOBAL_OFFSET_TABLE_' can be used with %s\n" +msgstr "" + +#: ../src/elflint.c:1327 +#, c-format +msgid "section [%2d] '%s': relocation %zu: offset out of bounds\n" +msgstr "" + +#: ../src/elflint.c:1342 +#, c-format +msgid "section [%2d] '%s': relocation %zu: copy relocation against symbol of type %s\n" +msgstr "" + +#: ../src/elflint.c:1363 +#, c-format +msgid "section [%2d] '%s': relocation %zu: read-only section modified but text relocation flag not set\n" +msgstr "" + +#: ../src/elflint.c:1378 +#, c-format +msgid "section [%2d] '%s': relocations are against loaded and unloaded data\n" +msgstr "" + +#: ../src/elflint.c:1417 +#: ../src/elflint.c:1467 +#, c-format +msgid "section [%2d] '%s': cannot get relocation %zu: %s\n" +msgstr "" + +#: ../src/elflint.c:1547 +#, fuzzy, c-format +msgid "more than one dynamic section present\n" +msgstr "Existe más de una entrada de disco completo.\n" + +#: ../src/elflint.c:1565 +#, c-format +msgid "section [%2d] '%s': section entry size does not match ElfXX_Dyn\n" +msgstr "" + +#: ../src/elflint.c:1570 +#: ../src/elflint.c:1862 +#, c-format +msgid "section [%2d] '%s': sh_info not zero\n" +msgstr "" + +#: ../src/elflint.c:1580 +#, c-format +msgid "section [%2d] '%s': cannot get dynamic section entry %zu: %s\n" +msgstr "" + +#: ../src/elflint.c:1588 +#, c-format +msgid "section [%2d] '%s': non-DT_NULL entries follow DT_NULL entry\n" +msgstr "" + +#: ../src/elflint.c:1595 +#, c-format +msgid "section [%2d] '%s': entry %zu: unknown tag\n" +msgstr "" + +#: ../src/elflint.c:1606 +#, c-format +msgid "section [%2d] '%s': entry %zu: more than one entry with tag %s\n" +msgstr "" + +#: ../src/elflint.c:1616 +#, c-format +msgid "section [%2d] '%s': entry %zu: level 2 tag %s used\n" +msgstr "" + +#: ../src/elflint.c:1634 +#, c-format +msgid "section [%2d] '%s': entry %zu: DT_PLTREL value must be DT_REL or DT_RELA\n" +msgstr "" + +#: ../src/elflint.c:1656 +#, c-format +msgid "section [%2d] '%s': entry %zu: pointer does not match address of section [%2d] '%s' referenced by sh_link\n" +msgstr "" + +#: ../src/elflint.c:1699 +#, c-format +msgid "section [%2d] '%s': entry %zu: %s value must point into loaded segment\n" +msgstr "" + +#: ../src/elflint.c:1714 +#, c-format +msgid "section [%2d] '%s': entry %zu: %s value must be valid offset in section [%2d] '%s'\n" +msgstr "" + +#: ../src/elflint.c:1734 +#: ../src/elflint.c:1762 +#, c-format +msgid "section [%2d] '%s': contains %s entry but not %s\n" +msgstr "" + +#: ../src/elflint.c:1746 +#, c-format +msgid "section [%2d] '%s': mandatory tag %s not present\n" +msgstr "" + +#: ../src/elflint.c:1755 +#, c-format +msgid "section [%2d] '%s': no hash section present\n" +msgstr "" + +#: ../src/elflint.c:1770 +#: ../src/elflint.c:1777 +#, c-format +msgid "section [%2d] '%s': not all of %s, %s, and %s are present\n" +msgstr "" + +#: ../src/elflint.c:1787 +#: ../src/elflint.c:1791 +#, c-format +msgid "section [%2d] '%s': %s tag missing in DSO marked during prelinking\n" +msgstr "" + +#: ../src/elflint.c:1797 +#, c-format +msgid "section [%2d] '%s': non-DSO file marked as dependency during prelink\n" +msgstr "" + +#: ../src/elflint.c:1808 +#: ../src/elflint.c:1812 +#: ../src/elflint.c:1816 +#: ../src/elflint.c:1820 +#, c-format +msgid "section [%2d] '%s': %s tag missing in prelinked executable\n" +msgstr "" + +#: ../src/elflint.c:1832 +#, c-format +msgid "section [%2d] '%s': only relocatable files can have extended section index\n" +msgstr "" + +#: ../src/elflint.c:1842 +#, c-format +msgid "section [%2d] '%s': extended section index section not for symbol table\n" +msgstr "" + +#: ../src/elflint.c:1847 +#, c-format +msgid "cannot get data for symbol section\n" +msgstr "" + +#: ../src/elflint.c:1850 +#, c-format +msgid "section [%2d] '%s': entry size does not match Elf32_Word\n" +msgstr "" + +#: ../src/elflint.c:1857 +#, c-format +msgid "section [%2d] '%s': extended index table too small for symbol table\n" +msgstr "" + +#: ../src/elflint.c:1872 +#, c-format +msgid "section [%2d] '%s': extended section index in section [%2zu] '%s' refers to same symbol table\n" +msgstr "" + +#: ../src/elflint.c:1883 +#, c-format +msgid "symbol 0 should have zero extended section index\n" +msgstr "" + +#: ../src/elflint.c:1895 +#, c-format +msgid "cannot get data for symbol %zu\n" +msgstr "" + +#: ../src/elflint.c:1900 +#, c-format +msgid "extended section index is % but symbol index is not XINDEX\n" +msgstr "" + +#: ../src/elflint.c:1916 +#: ../src/elflint.c:1957 +#, c-format +msgid "section [%2d] '%s': hash table section is too small (is %ld, expected %ld)\n" +msgstr "" + +#: ../src/elflint.c:1928 +#: ../src/elflint.c:1969 +#, c-format +msgid "section [%2d] '%s': chain array too large\n" +msgstr "" + +#: ../src/elflint.c:1937 +#: ../src/elflint.c:1978 +#, c-format +msgid "section [%2d] '%s': hash bucket reference %zu out of bounds\n" +msgstr "" + +#: ../src/elflint.c:1943 +#, c-format +msgid "section [%2d] '%s': hash chain reference %zu out of bounds\n" +msgstr "" + +#: ../src/elflint.c:1984 +#, c-format +msgid "section [%2d] '%s': hash chain reference % out of bounds\n" +msgstr "" + +#: ../src/elflint.c:1999 +#, c-format +msgid "section [%2d] '%s': bitmask size not power of 2: %u\n" +msgstr "" + +#: ../src/elflint.c:2010 +#, c-format +msgid "section [%2d] '%s': hash table section is too small (is %ld, expected at least%ld)\n" +msgstr "" + +#: ../src/elflint.c:2018 +#, c-format +msgid "section [%2d] '%s': 2nd hash function shift too big: %u\n" +msgstr "" + +#: ../src/elflint.c:2050 +#, c-format +msgid "section [%2d] '%s': hash chain for bucket %zu lower than symbol index bias\n" +msgstr "" + +#: ../src/elflint.c:2071 +#, c-format +msgid "section [%2d] '%s': symbol %u referenced in chain for bucket %zu is undefined\n" +msgstr "" + +#: ../src/elflint.c:2082 +#, c-format +msgid "section [%2d] '%s': hash value for symbol %u in chain for bucket %zu wrong\n" +msgstr "" + +#: ../src/elflint.c:2113 +#, c-format +msgid "section [%2d] '%s': hash chain for bucket %zu out of bounds\n" +msgstr "" + +#: ../src/elflint.c:2118 +#, c-format +msgid "section [%2d] '%s': symbol reference in chain for bucket %zu out of bounds\n" +msgstr "" + +#: ../src/elflint.c:2124 +#, c-format +msgid "section [%2d] '%s': bitmask does not match names in the hash table\n" +msgstr "" + +#: ../src/elflint.c:2137 +#, c-format +msgid "section [%2d] '%s': relocatable files cannot have hash tables\n" +msgstr "" + +#: ../src/elflint.c:2155 +#, c-format +msgid "section [%2d] '%s': hash table not for dynamic symbol table\n" +msgstr "" + +#: ../src/elflint.c:2163 +#, c-format +msgid "section [%2d] '%s': hash table entry size incorrect\n" +msgstr "" + +#: ../src/elflint.c:2168 +#, c-format +msgid "section [%2d] '%s': not marked to be allocated\n" +msgstr "" + +#: ../src/elflint.c:2173 +#, c-format +msgid "section [%2d] '%s': hash table has not even room for initial administrative entries\n" +msgstr "" + +#: ../src/elflint.c:2221 +#, c-format +msgid "sh_link in hash sections [%2zu] '%s' and [%2zu] '%s' not identical\n" +msgstr "" + +#: ../src/elflint.c:2299 +#: ../src/elflint.c:2303 +#, c-format +msgid "section [%2zu] '%s': reference to symbol index 0\n" +msgstr "" + +#: ../src/elflint.c:2310 +#, c-format +msgid "symbol %d referenced in new hash table in [%2zu] '%s' but not in old hash table in [%2zu] '%s'\n" +msgstr "" + +#: ../src/elflint.c:2322 +#, c-format +msgid "symbol %d referenced in old hash table in [%2zu] '%s' but not in new hash table in [%2zu] '%s'\n" +msgstr "" + +#: ../src/elflint.c:2338 +#, c-format +msgid "section [%2d] '%s': nonzero sh_%s for NULL section\n" +msgstr "" + +#: ../src/elflint.c:2358 +#, c-format +msgid "section [%2d] '%s': section groups only allowed in relocatable object files\n" +msgstr "" + +#: ../src/elflint.c:2369 +#, c-format +msgid "section [%2d] '%s': cannot get symbol table: %s\n" +msgstr "" + +#: ../src/elflint.c:2374 +#, c-format +msgid "section [%2d] '%s': section reference in sh_link is no symbol table\n" +msgstr "" + +#: ../src/elflint.c:2380 +#, c-format +msgid "section [%2d] '%s': invalid symbol index in sh_info\n" +msgstr "" + +#: ../src/elflint.c:2385 +#, c-format +msgid "section [%2d] '%s': sh_flags not zero\n" +msgstr "" + +#: ../src/elflint.c:2392 +#, c-format +msgid "section [%2d] '%s': cannot get symbol for signature\n" +msgstr "" + +#: ../src/elflint.c:2397 +#, c-format +msgid "section [%2d] '%s': signature symbol canot be empty string\n" +msgstr "" + +#: ../src/elflint.c:2403 +#, c-format +msgid "section [%2d] '%s': sh_flags not set correctly\n" +msgstr "" + +#: ../src/elflint.c:2409 +#, fuzzy, c-format +msgid "section [%2d] '%s': cannot get data: %s\n" +msgstr "%C: No se puede obtener el contenido de la sección - excepción de auto-importación\n" + +#: ../src/elflint.c:2418 +#, c-format +msgid "section [%2d] '%s': section size not multiple of sizeof(Elf32_Word)\n" +msgstr "" + +#: ../src/elflint.c:2423 +#, c-format +msgid "section [%2d] '%s': section group without flags word\n" +msgstr "" + +#: ../src/elflint.c:2429 +#, c-format +msgid "section [%2d] '%s': section group without member\n" +msgstr "" + +#: ../src/elflint.c:2433 +#, c-format +msgid "section [%2d] '%s': section group with only one member\n" +msgstr "" + +#: ../src/elflint.c:2444 +#, c-format +msgid "section [%2d] '%s': unknown section group flags\n" +msgstr "" + +#: ../src/elflint.c:2456 +#, c-format +msgid "section [%2d] '%s': section index %Zu out of range\n" +msgstr "" + +#: ../src/elflint.c:2465 +#, c-format +msgid "section [%2d] '%s': cannot get section header for element %zu: %s\n" +msgstr "" + +#: ../src/elflint.c:2472 +#, c-format +msgid "section [%2d] '%s': section group contains another group [%2d] '%s'\n" +msgstr "" + +#: ../src/elflint.c:2478 +#, c-format +msgid "section [%2d] '%s': element %Zu references section [%2d] '%s' without SHF_GROUP flag set\n" +msgstr "" + +#: ../src/elflint.c:2485 +#, c-format +msgid "section [%2d] '%s' is contained in more than one section group\n" +msgstr "" + +#: ../src/elflint.c:2674 +#, c-format +msgid "section [%2d] '%s' refers in sh_link to section [%2d] '%s' which is no dynamic symbol table\n" +msgstr "" + +#: ../src/elflint.c:2685 +#, c-format +msgid "section [%2d] '%s' has different number of entries than symbol table [%2d] '%s'\n" +msgstr "" + +#: ../src/elflint.c:2701 +#, c-format +msgid "section [%2d] '%s': symbol %d: cannot read version data\n" +msgstr "" + +#: ../src/elflint.c:2717 +#, c-format +msgid "section [%2d] '%s': symbol %d: local symbol with global scope\n" +msgstr "" + +#: ../src/elflint.c:2725 +#, c-format +msgid "section [%2d] '%s': symbol %d: local symbol with version\n" +msgstr "" + +#: ../src/elflint.c:2739 +#, c-format +msgid "section [%2d] '%s': symbol %d: invalid version index %d\n" +msgstr "" + +#: ../src/elflint.c:2744 +#, c-format +msgid "section [%2d] '%s': symbol %d: version index %d is for defined version\n" +msgstr "" + +#: ../src/elflint.c:2754 +#, c-format +msgid "section [%2d] '%s': symbol %d: version index %d is for requested version\n" +msgstr "" + +#: ../src/elflint.c:2806 +#, c-format +msgid "more than one version reference section present\n" +msgstr "" + +#: ../src/elflint.c:2814 +#: ../src/elflint.c:2943 +#, c-format +msgid "section [%2d] '%s': sh_link does not link to string table\n" +msgstr "" + +#: ../src/elflint.c:2837 +#: ../src/elflint.c:2995 +#, c-format +msgid "section [%2d] '%s': entry %d has wrong version %d\n" +msgstr "" + +#: ../src/elflint.c:2843 +#: ../src/elflint.c:3001 +#, c-format +msgid "section [%2d] '%s': entry %d has wrong offset of auxiliary data\n" +msgstr "" + +#: ../src/elflint.c:2851 +#, c-format +msgid "section [%2d] '%s': entry %d has invalid file reference\n" +msgstr "" + +#: ../src/elflint.c:2859 +#, c-format +msgid "section [%2d] '%s': entry %d references unknown dependency\n" +msgstr "" + +#: ../src/elflint.c:2871 +#, c-format +msgid "section [%2d] '%s': auxiliary entry %d of entry %d has unknown flag\n" +msgstr "" + +#: ../src/elflint.c:2878 +#, c-format +msgid "section [%2d] '%s': auxiliary entry %d of entry %d has invalid name reference\n" +msgstr "" + +#: ../src/elflint.c:2885 +#, c-format +msgid "section [%2d] '%s': auxiliary entry %d of entry %d has wrong hash value: %#x, expected %#x\n" +msgstr "" + +#: ../src/elflint.c:2895 +#, c-format +msgid "section [%2d] '%s': auxiliary entry %d of entry %d has duplicate version name '%s'\n" +msgstr "" + +#: ../src/elflint.c:2906 +#, c-format +msgid "section [%2d] '%s': auxiliary entry %d of entry %d has wrong next field\n" +msgstr "" + +#: ../src/elflint.c:2922 +#: ../src/elflint.c:3080 +#, c-format +msgid "section [%2d] '%s': entry %d has invalid offset to next entry\n" +msgstr "" + +#: ../src/elflint.c:2935 +#, c-format +msgid "more than one version definition section present\n" +msgstr "" + +#: ../src/elflint.c:2980 +#, c-format +msgid "section [%2d] '%s': more than one BASE definition\n" +msgstr "" + +#: ../src/elflint.c:2984 +#, c-format +msgid "section [%2d] '%s': BASE definition must have index VER_NDX_GLOBAL\n" +msgstr "" + +#: ../src/elflint.c:2990 +#, c-format +msgid "section [%2d] '%s': entry %d has unknown flag\n" +msgstr "" + +#: ../src/elflint.c:3014 +#, c-format +msgid "section [%2d] '%s': entry %d has invalid name reference\n" +msgstr "" + +#: ../src/elflint.c:3021 +#, c-format +msgid "section [%2d] '%s': entry %d has wrong hash value: %#x, expected %#x\n" +msgstr "" + +#: ../src/elflint.c:3030 +#, c-format +msgid "section [%2d] '%s': entry %d has duplicate version name '%s'\n" +msgstr "" + +#: ../src/elflint.c:3049 +#, c-format +msgid "section [%2d] '%s': entry %d has invalid name reference in auxiliary data\n" +msgstr "" + +#: ../src/elflint.c:3064 +#, c-format +msgid "section [%2d] '%s': entry %d has wrong next field in auxiliary data\n" +msgstr "" + +#: ../src/elflint.c:3086 +#, c-format +msgid "section [%2d] '%s': no BASE definition\n" +msgstr "" + +#: ../src/elflint.c:3102 +#, c-format +msgid "section [%2d] '%s': unknown parent version '%s'\n" +msgstr "" + +#: ../src/elflint.c:3115 +#, c-format +msgid "section [%2d] '%s': empty object attributes section\n" +msgstr "" + +#: ../src/elflint.c:3136 +#, c-format +msgid "section [%2d] '%s': unrecognized attribute format\n" +msgstr "" + +#: ../src/elflint.c:3152 +#, c-format +msgid "section [%2d] '%s': offset %zu: zero length field in attribute section\n" +msgstr "" + +#: ../src/elflint.c:3161 +#, c-format +msgid "section [%2d] '%s': offset %zu: invalid length in attribute section\n" +msgstr "" + +#: ../src/elflint.c:3173 +#, c-format +msgid "section [%2d] '%s': offset %zu: unterminated vendor name string\n" +msgstr "" + +#: ../src/elflint.c:3190 +#, c-format +msgid "section [%2d] '%s': offset %zu: endless ULEB128 in attribute subsection tag\n" +msgstr "" + +#: ../src/elflint.c:3199 +#, c-format +msgid "section [%2d] '%s': offset %zu: truncated attribute section\n" +msgstr "" + +#: ../src/elflint.c:3208 +#, c-format +msgid "section [%2d] '%s': offset %zu: zero length field in attribute subsection\n" +msgstr "" + +#: ../src/elflint.c:3221 +#, c-format +msgid "section [%2d] '%s': offset %zu: invalid length in attribute subsection\n" +msgstr "" + +#. Tag_File +#: ../src/elflint.c:3232 +#, c-format +msgid "section [%2d] '%s': offset %zu: attribute subsection has unexpected tag %u\n" +msgstr "" + +#: ../src/elflint.c:3250 +#, c-format +msgid "section [%2d] '%s': offset %zu: endless ULEB128 in attribute tag\n" +msgstr "" + +#: ../src/elflint.c:3261 +#, c-format +msgid "section [%2d] '%s': offset %zu: unterminated string in attribute\n" +msgstr "" + +#: ../src/elflint.c:3274 +#, c-format +msgid "section [%2d] '%s': offset %zu: unrecognized attribute tag %u\n" +msgstr "" + +#: ../src/elflint.c:3278 +#, c-format +msgid "section [%2d] '%s': offset %zu: unrecognized %s attribute value %\n" +msgstr "" + +#: ../src/elflint.c:3288 +#, c-format +msgid "section [%2d] '%s': offset %zu: vendor '%s' unknown\n" +msgstr "" + +#: ../src/elflint.c:3294 +#, c-format +msgid "section [%2d] '%s': offset %zu: extra bytes after last attribute section\n" +msgstr "" + +#: ../src/elflint.c:3383 +#, fuzzy, c-format +msgid "cannot get section header of zeroth section\n" +msgstr "%C: No se puede obtener el contenido de la sección - excepción de auto-importación\n" + +#: ../src/elflint.c:3387 +#, c-format +msgid "zeroth section has nonzero name\n" +msgstr "" + +#: ../src/elflint.c:3389 +#, c-format +msgid "zeroth section has nonzero type\n" +msgstr "" + +#: ../src/elflint.c:3391 +#, c-format +msgid "zeroth section has nonzero flags\n" +msgstr "" + +#: ../src/elflint.c:3393 +#, fuzzy, c-format +msgid "zeroth section has nonzero address\n" +msgstr "%X%P:%S: la sección tiene tanto una dirección de carga como una región de carga\n" + +#: ../src/elflint.c:3395 +#, c-format +msgid "zeroth section has nonzero offset\n" +msgstr "" + +#: ../src/elflint.c:3397 +#, c-format +msgid "zeroth section has nonzero info field\n" +msgstr "" + +#: ../src/elflint.c:3399 +#, c-format +msgid "zeroth section has nonzero align value\n" +msgstr "" + +#: ../src/elflint.c:3401 +#, c-format +msgid "zeroth section has nonzero entry size value\n" +msgstr "" + +#: ../src/elflint.c:3404 +#, c-format +msgid "zeroth section has nonzero size value while ELF header has nonzero shnum value\n" +msgstr "" + +#: ../src/elflint.c:3408 +#, c-format +msgid "zeroth section has nonzero link value while ELF header does not signal overflow in shstrndx\n" +msgstr "" + +#: ../src/elflint.c:3425 +#, c-format +msgid "cannot get section header for section [%2zu] '%s': %s\n" +msgstr "" + +#: ../src/elflint.c:3434 +#, fuzzy, c-format +msgid "section [%2zu]: invalid name\n" +msgstr "ftpfs: Nombre de máquina incorrecto" + +#: ../src/elflint.c:3461 +#, c-format +msgid "section [%2d] '%s' has wrong type: expected %s, is %s\n" +msgstr "" + +#: ../src/elflint.c:3477 +#, c-format +msgid "section [%2zu] '%s' has wrong flags: expected %s, is %s\n" +msgstr "" + +#: ../src/elflint.c:3494 +#, c-format +msgid "section [%2zu] '%s' has wrong flags: expected %s and possibly %s, is %s\n" +msgstr "" + +#: ../src/elflint.c:3512 +#, c-format +msgid "section [%2zu] '%s' present in object file\n" +msgstr "" + +#: ../src/elflint.c:3518 +#: ../src/elflint.c:3550 +#, c-format +msgid "section [%2zu] '%s' has SHF_ALLOC flag set but there is no loadable segment\n" +msgstr "" + +#: ../src/elflint.c:3523 +#: ../src/elflint.c:3555 +#, c-format +msgid "section [%2zu] '%s' has SHF_ALLOC flag not set but there are loadable segments\n" +msgstr "" + +#: ../src/elflint.c:3531 +#, c-format +msgid "section [%2zu] '%s' is extension section index table in non-object file\n" +msgstr "" + +#: ../src/elflint.c:3574 +#, fuzzy, c-format +msgid "section [%2zu] '%s': size not multiple of entry size\n" +msgstr "Aviso, el tamaño de la sección .pdata (%ld) no es un múltiplo de %d\n" + +#: ../src/elflint.c:3579 +#, fuzzy, c-format +msgid "cannot get section header\n" +msgstr "no se puede leer la cabecera del archivo" + +#: ../src/elflint.c:3589 +#, c-format +msgid "section [%2zu] '%s' has unsupported type %d\n" +msgstr "" + +#: ../src/elflint.c:3603 +#, c-format +msgid "section [%2zu] '%s' contains invalid processor-specific flag(s) %#\n" +msgstr "" + +#: ../src/elflint.c:3610 +#, c-format +msgid "section [%2zu] '%s' contains unknown flag(s) %#\n" +msgstr "" + +#: ../src/elflint.c:3618 +#, c-format +msgid "section [%2zu] '%s': thread-local data sections address not zero\n" +msgstr "" + +#: ../src/elflint.c:3626 +#, c-format +msgid "section [%2zu] '%s': invalid section reference in link value\n" +msgstr "" + +#: ../src/elflint.c:3631 +#, c-format +msgid "section [%2zu] '%s': invalid section reference in info value\n" +msgstr "" + +#: ../src/elflint.c:3638 +#, c-format +msgid "section [%2zu] '%s': strings flag set without merge flag\n" +msgstr "" + +#: ../src/elflint.c:3643 +#, c-format +msgid "section [%2zu] '%s': merge flag set but entry size is zero\n" +msgstr "" + +#: ../src/elflint.c:3661 +#, c-format +msgid "section [%2zu] '%s' has unexpected type %d for an executable section\n" +msgstr "" + +#: ../src/elflint.c:3670 +#, c-format +msgid "section [%2zu] '%s' is both executable and writable\n" +msgstr "" + +#: ../src/elflint.c:3697 +#, c-format +msgid "section [%2zu] '%s' not fully contained in segment of program header entry %d\n" +msgstr "" + +#: ../src/elflint.c:3705 +#, c-format +msgid "section [%2zu] '%s' has type NOBITS but is read from the file in segment of program header entry %d\n" +msgstr "" + +#: ../src/elflint.c:3714 +#, c-format +msgid "section [%2zu] '%s' has not type NOBITS but is not read from the file in segment of program header entry %d\n" +msgstr "" + +#: ../src/elflint.c:3725 +#, c-format +msgid "section [%2zu] '%s' is executable in nonexecutable segment %d\n" +msgstr "" + +#: ../src/elflint.c:3735 +#, c-format +msgid "section [%2zu] '%s' is writable in unwritable segment %d\n" +msgstr "" + +#: ../src/elflint.c:3745 +#, c-format +msgid "section [%2zu] '%s': alloc flag set but section not in any loaded segment\n" +msgstr "" + +#: ../src/elflint.c:3751 +#, c-format +msgid "section [%2zu] '%s': ELF header says this is the section header string table but type is not SHT_TYPE\n" +msgstr "" + +#: ../src/elflint.c:3759 +#, c-format +msgid "section [%2zu] '%s': relocatable files cannot have dynamic symbol tables\n" +msgstr "" + +#: ../src/elflint.c:3810 +#, c-format +msgid "more than one version symbol table present\n" +msgstr "" + +#: ../src/elflint.c:3833 +#, c-format +msgid "INTERP program header entry but no .interp section\n" +msgstr "" + +#: ../src/elflint.c:3844 +#, c-format +msgid "loadable segment [%u] is executable but contains no executable sections\n" +msgstr "" + +#: ../src/elflint.c:3850 +#, c-format +msgid "loadable segment [%u] is writable but contains no writable sections\n" +msgstr "" + +#: ../src/elflint.c:3861 +#, c-format +msgid "no .gnu.versym section present but .gnu.versym_d or .gnu.versym_r section exist\n" +msgstr "" + +#: ../src/elflint.c:3874 +#, fuzzy, c-format +msgid "duplicate version index %d\n" +msgstr "%X%P: marca de versión `%s' duplicada\n" + +#: ../src/elflint.c:3888 +#, c-format +msgid ".gnu.versym section present without .gnu.versym_d or .gnu.versym_r\n" +msgstr "" + +#: ../src/elflint.c:3937 +#, c-format +msgid "phdr[%d]: unknown core file note type % at offset %\n" +msgstr "" + +#: ../src/elflint.c:3941 +#, c-format +msgid "section [%2d] '%s': unknown core file note type % at offset %Zu\n" +msgstr "" + +#: ../src/elflint.c:3963 +#, c-format +msgid "phdr[%d]: unknown object file note type % at offset %Zu\n" +msgstr "" + +#: ../src/elflint.c:3967 +#, c-format +msgid "section [%2d] '%s': unknown object file note type % at offset %Zu\n" +msgstr "" + +#: ../src/elflint.c:3984 +#, c-format +msgid "phdr[%d]: no note entries defined for the type of file\n" +msgstr "" + +#: ../src/elflint.c:4003 +#, c-format +msgid "phdr[%d]: cannot get content of note section: %s\n" +msgstr "" + +#: ../src/elflint.c:4006 +#, c-format +msgid "phdr[%d]: extra % bytes after last note\n" +msgstr "" + +#: ../src/elflint.c:4027 +#, c-format +msgid "section [%2d] '%s': no note entries defined for the type of file\n" +msgstr "" + +#: ../src/elflint.c:4034 +#, c-format +msgid "section [%2d] '%s': cannot get content of note section\n" +msgstr "" + +#: ../src/elflint.c:4037 +#, c-format +msgid "section [%2d] '%s': extra % bytes after last note\n" +msgstr "" + +#: ../src/elflint.c:4055 +#, c-format +msgid "only executables, shared objects, and core files can have program headers\n" +msgstr "" + +#: ../src/elflint.c:4070 +#, fuzzy, c-format +msgid "cannot get program header entry %d: %s\n" +msgstr "no se puede asignar memoria para la cabecera del programa" + +#: ../src/elflint.c:4079 +#, c-format +msgid "program header entry %d: unknown program header entry type %#\n" +msgstr "" + +#: ../src/elflint.c:4090 +#, c-format +msgid "more than one INTERP entry in program header\n" +msgstr "" + +#: ../src/elflint.c:4098 +#, c-format +msgid "more than one TLS entry in program header\n" +msgstr "" + +#: ../src/elflint.c:4105 +#, c-format +msgid "static executable cannot have dynamic sections\n" +msgstr "" + +#: ../src/elflint.c:4119 +#, c-format +msgid "dynamic section reference in program header has wrong offset\n" +msgstr "" + +#: ../src/elflint.c:4122 +#, c-format +msgid "dynamic section size mismatch in program and section header\n" +msgstr "" + +#: ../src/elflint.c:4132 +#, c-format +msgid "more than one GNU_RELRO entry in program header\n" +msgstr "" + +#: ../src/elflint.c:4153 +#, c-format +msgid "loadable segment GNU_RELRO applies to is not writable\n" +msgstr "" + +#: ../src/elflint.c:4156 +#, c-format +msgid "loadable segment [%u] flags do not match GNU_RELRO [%u] flags\n" +msgstr "" + +#: ../src/elflint.c:4164 +#: ../src/elflint.c:4187 +#, fuzzy, c-format +msgid "%s segment not contained in a loaded segment\n" +msgstr "no se encuentra dentro de la partición %s\n" + +#: ../src/elflint.c:4193 +#, c-format +msgid "program header offset in ELF header and PHDR entry do not match" +msgstr "" + +#: ../src/elflint.c:4217 +#, c-format +msgid "call frame search table reference in program header has wrong offset\n" +msgstr "" + +#: ../src/elflint.c:4220 +#, c-format +msgid "call frame search table size mismatch in program and section header\n" +msgstr "" + +#: ../src/elflint.c:4233 +#, c-format +msgid "PT_GNU_EH_FRAME present but no .eh_frame_hdr section\n" +msgstr "" + +#: ../src/elflint.c:4241 +#, c-format +msgid "call frame search table must be allocated\n" +msgstr "" + +#: ../src/elflint.c:4244 +#, fuzzy, c-format +msgid "section [%2zu] '%s' must be allocated\n" +msgstr "%B: la sección `%A' no se puede asignar en el segmento %d" + +#: ../src/elflint.c:4248 +#, c-format +msgid "call frame search table must not be writable\n" +msgstr "" + +#: ../src/elflint.c:4251 +#, c-format +msgid "section [%2zu] '%s' must not be writable\n" +msgstr "" + +#: ../src/elflint.c:4256 +#, c-format +msgid "call frame search table must not be executable\n" +msgstr "" + +#: ../src/elflint.c:4259 +#, c-format +msgid "section [%2zu] '%s' must not be executable\n" +msgstr "" + +#: ../src/elflint.c:4270 +#, c-format +msgid "program header entry %d: file size greater than memory size\n" +msgstr "" + +#: ../src/elflint.c:4277 +#, c-format +msgid "program header entry %d: alignment not a power of 2\n" +msgstr "" + +#: ../src/elflint.c:4280 +#, c-format +msgid "program header entry %d: file offset and virtual address not module of alignment\n" +msgstr "" + +#: ../src/elflint.c:4293 +#, c-format +msgid "executable/DSO with .eh_frame_hdr section does not have a PT_GNU_EH_FRAME program header entry" +msgstr "" + +#: ../src/elflint.c:4327 +#, fuzzy, c-format +msgid "cannot read ELF header: %s\n" +msgstr "no se puede leer la cabecera del archivo" + +#: ../src/elflint.c:4353 +#, c-format +msgid "text relocation flag set but not needed\n" +msgstr "" + +#: ../src/addr2line.c:66 +#, fuzzy +msgid "Output selection options:" +msgstr "Opciones de selección de archivo" + +#: ../src/addr2line.c:67 +msgid "Show only base names of source files" +msgstr "" + +#: ../src/addr2line.c:69 +msgid "Show absolute file names using compilation directory" +msgstr "" + +#: ../src/addr2line.c:70 +#, fuzzy +msgid "Also show function names" +msgstr "Mostrar los nombres de las áreas de trabajo en lugar del contenido" + +#: ../src/addr2line.c:71 +msgid "Also show symbol or section names" +msgstr "" + +#. Short description of program. +#: ../src/addr2line.c:82 +msgid "Locate source files and line information for ADDRs (in a.out by default)." +msgstr "" + +#. Strings for arguments in help texts. +#: ../src/addr2line.c:86 +#, fuzzy +msgid "[ADDR...]" +msgstr " Dir: " + +#: ../src/addr2line.c:387 +#, c-format +msgid "Section syntax requires exactly one module" +msgstr "" + +#: ../src/addr2line.c:410 +#, c-format +msgid "offset %# lies outside section '%s'" +msgstr "" + +#: ../src/addr2line.c:428 +#, fuzzy, c-format +msgid "cannot find symbol '%s'" +msgstr "no se puede encontrar el preprocesador de C: %s \n" + +#: ../src/addr2line.c:433 +#, c-format +msgid "offset %# lies outside contents of '%s'" +msgstr "" + +#: ../src/findtextrel.c:70 +#, fuzzy +msgid "Input Selection:" +msgstr "Copiar selección" + +#: ../src/findtextrel.c:71 +#, fuzzy +msgid "Prepend PATH to all file names" +msgstr "Agrega el nombre del cpu al inicio de todos los nombres de símbolo públicos" + +#: ../src/findtextrel.c:73 +msgid "Use PATH as root of debuginfo hierarchy" +msgstr "" + +#. Short description of program. +#: ../src/findtextrel.c:80 +msgid "Locate source of text relocations in FILEs (a.out by default)." +msgstr "" + +#: ../src/findtextrel.c:236 +#: ../src/elfcmp.c:578 +#: ../src/ranlib.c:186 +#, fuzzy, c-format +msgid "cannot create ELF descriptor for '%s': %s" +msgstr "no se puede crear el descriptor del objeto compartido" + +#: ../src/findtextrel.c:246 +#, fuzzy, c-format +msgid "cannot get ELF header '%s': %s" +msgstr "no se puede leer la cabecera del archivo" + +#: ../src/findtextrel.c:257 +#, fuzzy, c-format +msgid "'%s' is not a DSO or PIE" +msgstr "el valor is_stmt no es 0 ó 1" + +#: ../src/findtextrel.c:274 +#, c-format +msgid "getting get section header of section %zu: %s" +msgstr "" + +#: ../src/findtextrel.c:292 +#, fuzzy, c-format +msgid "cannot read dynamic section: %s" +msgstr "reubicación dinámica en la sección de sólo lectura" + +#: ../src/findtextrel.c:307 +#, fuzzy, c-format +msgid "no text relocations reported in '%s'" +msgstr "" +"\n" +"No hay reubicaciones en este fichero.\n" + +#: ../src/findtextrel.c:319 +#, fuzzy, c-format +msgid "while reading ELF file" +msgstr "Error al leer archivo." + +#: ../src/findtextrel.c:328 +#: ../src/findtextrel.c:345 +#, c-format +msgid "cannot get program header index at offset %d: %s" +msgstr "" + +#: ../src/findtextrel.c:397 +#, fuzzy, c-format +msgid "cannot get section header of section %Zu: %s" +msgstr "%C: No se puede obtener el contenido de la sección - excepción de auto-importación\n" + +#: ../src/findtextrel.c:409 +#, c-format +msgid "cannot get symbol table section %zu in '%s': %s" +msgstr "" + +#: ../src/findtextrel.c:429 +#: ../src/findtextrel.c:452 +#, c-format +msgid "cannot get relocation at index %d in section %zu in '%s': %s" +msgstr "" + +#: ../src/findtextrel.c:517 +#, fuzzy, c-format +msgid "%s not compiled with -fpic/-fPIC\n" +msgstr "%B: ¿Compilado probablemente sin -fPIC?" + +#: ../src/findtextrel.c:570 +#, c-format +msgid "the file containing the function '%s' is not compiled with -fpic/-fPIC\n" +msgstr "" + +#: ../src/findtextrel.c:577 +#: ../src/findtextrel.c:597 +#, c-format +msgid "the file containing the function '%s' might not be compiled with -fpic/-fPIC\n" +msgstr "" + +#: ../src/findtextrel.c:585 +#, c-format +msgid "either the file containing the function '%s' or the file containing the function '%s' is not compiled with -fpic/-fPIC\n" +msgstr "" + +#: ../src/findtextrel.c:605 +#, c-format +msgid "a relocation modifies memory at offset %llu in a write-protected segment\n" +msgstr "" + +#: ../src/elfcmp.c:69 +#, fuzzy +msgid "Control options:" +msgstr "Las siguientes opciones controlan las optimizaciones" + +#: ../src/elfcmp.c:70 +msgid "Control treatment of gaps in loadable segments [ignore|match] (default: ignore)" +msgstr "" + +#: ../src/elfcmp.c:72 +msgid "Ignore permutation of buckets in SHT_HASH section" +msgstr "" + +#: ../src/elfcmp.c:73 +#, fuzzy +msgid "Output nothing; yield exit status only" +msgstr "-s --quiet --silent No muestra nada, sólo da un código de salida." + +#. Short description of program. +#: ../src/elfcmp.c:80 +msgid "Compare relevant parts of two ELF files for equality." +msgstr "" + +#. Strings for arguments in help texts. +#: ../src/elfcmp.c:84 +#, fuzzy +msgid "FILE1 FILE2" +msgstr "mv " + +#: ../src/elfcmp.c:140 +#, fuzzy +msgid "Invalid number of parameters.\n" +msgstr "Número de dispositivo inválido" + +#: ../src/elfcmp.c:168 +#: ../src/elfcmp.c:173 +#, fuzzy, c-format +msgid "cannot get ELF header of '%s': %s" +msgstr "no se puede leer la cabecera del archivo" + +#: ../src/elfcmp.c:190 +#, fuzzy, c-format +msgid "%s %s diff: ELF header" +msgstr "cabecera ELF inválida" + +#: ../src/elfcmp.c:248 +#, fuzzy, c-format +msgid "%s %s differ: section header" +msgstr "" +"\n" +"Encabezado Auxiliar de Ejecución\n" + +#: ../src/elfcmp.c:276 +#: ../src/elfcmp.c:282 +#, c-format +msgid "cannot get content of section %zu in '%s': %s" +msgstr "" + +#: ../src/elfcmp.c:298 +#: ../src/elfcmp.c:304 +#, fuzzy, c-format +msgid "cannot get symbol in '%s': %s" +msgstr "no se puede definir el símbolo `%s' en la sección absoluta" + +#: ../src/elfcmp.c:325 +#, fuzzy, c-format +msgid "%s %s differ: symbol table [%zu]" +msgstr "%s: tabla de símbolos inválida: símbolo `%s' duplicado\n" + +#: ../src/elfcmp.c:328 +#, fuzzy, c-format +msgid "%s %s differ: symbol table [%zu,%zu]" +msgstr "%s: tabla de símbolos inválida: símbolo `%s' duplicado\n" + +#: ../src/elfcmp.c:376 +#, c-format +msgid "%s %s differ: section [%zu] '%s' content" +msgstr "" + +#: ../src/elfcmp.c:380 +#, c-format +msgid "%s %s differ: section [%zu,%zu] '%s' content" +msgstr "" + +#: ../src/elfcmp.c:396 +#, c-format +msgid "%s %s differ: unequal amount of important sections" +msgstr "" + +#: ../src/elfcmp.c:430 +#: ../src/elfcmp.c:435 +#, fuzzy, c-format +msgid "cannot load data of '%s': %s" +msgstr "no se pueden cargar los datos de `profiling'" + +#: ../src/elfcmp.c:454 +#: ../src/elfcmp.c:460 +#, fuzzy, c-format +msgid "cannot get program header entry %d of '%s': %s" +msgstr "no se puede asignar memoria para la cabecera del programa" + +#: ../src/elfcmp.c:466 +#, fuzzy, c-format +msgid "%s %s differ: program header %d" +msgstr "" +"\n" +"Encabezado Auxiliar de Ejecución\n" + +#: ../src/elfcmp.c:491 +#, fuzzy, c-format +msgid "%s %s differ: gap" +msgstr "Porcentaje del hueco" + +#: ../src/elfcmp.c:550 +#, fuzzy, c-format +msgid "Invalid value '%s' for --gaps parameter." +msgstr "Valor inválido %d para el tamaño de memoria" + +#: ../src/elfcmp.c:583 +#, fuzzy, c-format +msgid "cannot create EBL descriptor for '%s'" +msgstr "no se puede crear el descriptor del objeto compartido" + +#: ../src/elfcmp.c:601 +#, fuzzy, c-format +msgid "cannot get section header of section %zu: %s" +msgstr "%C: No se puede obtener el contenido de la sección - excepción de auto-importación\n" + +#: ../src/elfcmp.c:611 +#, fuzzy, c-format +msgid "cannot get content of section %zu: %s" +msgstr "%C: No se puede obtener el contenido de la sección - excepción de auto-importación\n" + +#: ../src/elfcmp.c:621 +#: ../src/elfcmp.c:635 +#, fuzzy, c-format +msgid "cannot get relocation: %s" +msgstr "No se puede obtener el nombre de la máquina (hostname)" + +#. Short description of program. +#: ../src/ranlib.c:74 +#, fuzzy +msgid "Generate an index to speed access to archives." +msgstr " Generar un índice para acelerar el acceso a los archivos\n" + +#. Strings for arguments in help texts. +#: ../src/ranlib.c:77 +#, fuzzy +msgid "ARCHIVE" +msgstr "ARCHIVO" + +#: ../src/ranlib.c:116 +#, fuzzy, c-format +msgid "Archive name required" +msgstr "%s: se requiere un nombre de señalador\n" + +#: ../src/ranlib.c:194 +#, fuzzy, c-format +msgid "'%s' is no archive" +msgstr "%s: no hay un archivo abierto\n" + +#: ../src/ranlib.c:229 +#, c-format +msgid "error while freeing sub-ELF descriptor: %s" +msgstr "" + +#: ../src/strings.c:70 +#, fuzzy +msgid "Output Selection:" +msgstr "Selección del resultado:" + +#: ../src/strings.c:71 +msgid "Scan entire file, not only loaded sections" +msgstr "" + +#: ../src/strings.c:73 +msgid "Only NUL-terminated sequences of MIN-LEN characters or more are printed" +msgstr "" + +#: ../src/strings.c:74 +msgid "Select character size and endianess: s = 7-bit, S = 8-bit, {b,l} = 16-bit, {B,L} = 32-bit" +msgstr "" + +#: ../src/strings.c:78 +msgid "Print name of the file before each string." +msgstr "" + +#: ../src/strings.c:80 +msgid "Print location of the string in base 8, 10, or 16 respectively." +msgstr "" + +#: ../src/strings.c:81 +#, fuzzy +msgid "Alias for --radix=o" +msgstr "Introduzca un alias para %s." + +#. Short description of program. +#: ../src/strings.c:88 +msgid "Print the strings of printable characters in files." +msgstr "" + +#: ../src/strings.c:268 +#: ../src/strings.c:303 +#, fuzzy, c-format +msgid "invalid value '%s' for %s parameter" +msgstr "Valor inválido para la opción %s: «%s»" + +#: ../src/strings.c:314 +#, c-format +msgid "invalid minimum length of matched string size" +msgstr "" + +#: ../src/strings.c:601 +#, fuzzy, c-format +msgid "lseek64 failed" +msgstr "Error en bifurcación de proceso (fork)" + +#: ../src/strings.c:616 +#: ../src/strings.c:680 +#, fuzzy, c-format +msgid "re-mmap failed" +msgstr "falló la operación `mmap' sobre el fichero de caché.\n" + +#: ../src/strings.c:653 +#, fuzzy, c-format +msgid "mprotect failed" +msgstr "Error en bifurcación de proceso (fork)" + +#: ../src/unstrip.c:77 +msgid "Match MODULE against file names, not module names" +msgstr "" + +#: ../src/unstrip.c:78 +#, fuzzy +msgid "Silently skip unfindable files" +msgstr "omitir archivos con el componente inicial " + +#: ../src/unstrip.c:81 +#, fuzzy +msgid "Place output into FILE" +msgstr " -o Coloca la salida en el \n" + +#: ../src/unstrip.c:83 +#, fuzzy +msgid "Create multiple output files under DIRECTORY" +msgstr "no se puede crear el directorio para los ficheros de salida" + +#: ../src/unstrip.c:84 +msgid "Use module rather than file names" +msgstr "" + +#: ../src/unstrip.c:86 +msgid "Create output for modules that have no separate debug information" +msgstr "" + +#: ../src/unstrip.c:89 +msgid "Apply relocations to section contents in ET_REL files" +msgstr "" + +#: ../src/unstrip.c:91 +msgid "Only list module and file names, build IDs" +msgstr "" + +#: ../src/unstrip.c:133 +#, fuzzy, c-format +msgid "-d option specified twice" +msgstr "se desconoce la opción -m%s= especificada: '%s'" + +#: ../src/unstrip.c:165 +#, fuzzy, c-format +msgid "only one of -o or -d allowed" +msgstr "Sólo está permitido usar uno de -s, -g, -r, o -l\n" + +#: ../src/unstrip.c:174 +#, c-format +msgid "-n cannot be used with explicit files or -o or -d" +msgstr "" + +#: ../src/unstrip.c:189 +#, fuzzy, c-format +msgid "output directory '%s'" +msgstr "Crear directorio" + +#: ../src/unstrip.c:198 +#, c-format +msgid "exactly two file arguments are required" +msgstr "" + +#: ../src/unstrip.c:204 +#, c-format +msgid "-m, -a, -R, and -i options not allowed with explicit files" +msgstr "" + +#: ../src/unstrip.c:217 +#, c-format +msgid "-o or -d is required when using implicit files" +msgstr "" + +#: ../src/unstrip.c:253 +#, fuzzy, c-format +msgid "cannot create ELF header: %s" +msgstr "no se puede crear el encabezado precompilado %s: %m" + +#: ../src/unstrip.c:258 +#, fuzzy, c-format +msgid "cannot copy ELF header: %s" +msgstr "no se puede leer la cabecera del archivo" + +#: ../src/unstrip.c:263 +#: ../src/unstrip.c:1816 +#, fuzzy, c-format +msgid "cannot create program headers: %s" +msgstr " Número de encabezados de programa: %ld\n" + +#: ../src/unstrip.c:269 +#, fuzzy, c-format +msgid "cannot copy program header: %s" +msgstr "no se puede asignar memoria para la cabecera del programa" + +#: ../src/unstrip.c:279 +#, fuzzy, c-format +msgid "cannot copy section header: %s" +msgstr "no se puede leer la cabecera del archivo" + +#: ../src/unstrip.c:282 +#: ../src/unstrip.c:1504 +#, fuzzy, c-format +msgid "cannot get section data: %s" +msgstr "Establece la dirección de la sección .data" + +#: ../src/unstrip.c:284 +#: ../src/unstrip.c:1506 +#, fuzzy, c-format +msgid "cannot copy section data: %s" +msgstr "Establece la dirección de la sección .data" + +#: ../src/unstrip.c:308 +#, fuzzy, c-format +msgid "cannot create directory '%s'" +msgstr "%s: no se puede crear el directorio %s\n" + +#: ../src/unstrip.c:348 +#: ../src/unstrip.c:762 +#: ../src/unstrip.c:1539 +#, fuzzy, c-format +msgid "cannot get symbol table entry: %s" +msgstr "%P: aviso: no se puede encontrar el símbolo de entrada %s; se usa por defecto %V\n" + +#: ../src/unstrip.c:364 +#: ../src/unstrip.c:579 +#: ../src/unstrip.c:600 +#: ../src/unstrip.c:612 +#: ../src/unstrip.c:1560 +#: ../src/unstrip.c:1690 +#: ../src/unstrip.c:1714 +#, fuzzy, c-format +msgid "cannot update symbol table: %s" +msgstr "%s: tabla de símbolos inválida: símbolo `%s' duplicado\n" + +#: ../src/unstrip.c:381 +#: ../src/unstrip.c:431 +#: ../src/unstrip.c:561 +#: ../src/unstrip.c:1208 +#: ../src/unstrip.c:1524 +#: ../src/unstrip.c:1719 +#: ../src/unstrip.c:1790 +#, fuzzy, c-format +msgid "cannot update section header: %s" +msgstr "no se puede leer la cabecera del archivo" + +#: ../src/unstrip.c:407 +#: ../src/unstrip.c:418 +#, fuzzy, c-format +msgid "cannot update relocation: %s" +msgstr "%s: no se puede actualizar el fichero %s\n" + +#: ../src/unstrip.c:506 +#, fuzzy, c-format +msgid "cannot get symbol version: %s" +msgstr "Crea la versión de símbolo por defecto" + +#: ../src/unstrip.c:518 +#, c-format +msgid "unexpected section type in [%Zu] with sh_link to symtab" +msgstr "" + +#: ../src/unstrip.c:768 +#, c-format +msgid "invalid string offset in symbol [%Zu]" +msgstr "" + +#: ../src/unstrip.c:910 +#: ../src/unstrip.c:1247 +#, fuzzy, c-format +msgid "cannot read section [%Zu] name: %s" +msgstr "%F%P: no se puede crear la tabla de división de secciones para %s\n" + +#: ../src/unstrip.c:951 +#: ../src/unstrip.c:970 +#: ../src/unstrip.c:1003 +#, c-format +msgid "cannot read '.gnu.prelink_undo' section: %s" +msgstr "" + +#: ../src/unstrip.c:991 +#, fuzzy, c-format +msgid "invalid contents in '%s' section" +msgstr "La sección BOUNDS en el archivo no es válida." + +#: ../src/unstrip.c:1046 +#: ../src/unstrip.c:1369 +#, c-format +msgid "cannot find matching section for [%Zu] '%s'" +msgstr "" + +#: ../src/unstrip.c:1170 +#: ../src/unstrip.c:1185 +#: ../src/unstrip.c:1450 +#, c-format +msgid "cannot add section name to string table: %s" +msgstr "" + +#: ../src/unstrip.c:1194 +#, c-format +msgid "cannot update section header string table data: %s" +msgstr "" + +#: ../src/unstrip.c:1222 +#: ../src/unstrip.c:1226 +#, c-format +msgid "cannot get section header string table section index: %s" +msgstr "" + +#: ../src/unstrip.c:1230 +#: ../src/unstrip.c:1234 +#: ../src/unstrip.c:1465 +#, fuzzy, c-format +msgid "cannot get section count: %s" +msgstr "No se puede obtener el nombre oficial de la máquina (hostname)" + +#: ../src/unstrip.c:1292 +#: ../src/unstrip.c:1384 +#, fuzzy, c-format +msgid "cannot read section header string table: %s" +msgstr "falló la asignación de la tabla de cadenas de cabeceras de sección" + +#: ../src/unstrip.c:1444 +#, fuzzy, c-format +msgid "cannot add new section: %s" +msgstr "No se puede añadir un contacto nuevo" + +#: ../src/unstrip.c:1547 +#, fuzzy, c-format +msgid "symbol [%Zu] has invalid section index" +msgstr "%s(%s): la reubicación %d tiene un índice de símbolo %ld inválido" + +#: ../src/unstrip.c:1799 +#, fuzzy, c-format +msgid "cannot get ELF header: %s" +msgstr "no se puede leer la cabecera del archivo" + +#: ../src/unstrip.c:1826 +#, fuzzy, c-format +msgid "cannot update program header: %s" +msgstr "no se puede asignar memoria para la cabecera del programa" + +#: ../src/unstrip.c:1831 +#: ../src/unstrip.c:1910 +#, fuzzy, c-format +msgid "cannot write output file: %s" +msgstr "no se puede escribir al fichero de salida" + +#: ../src/unstrip.c:1879 +#, c-format +msgid "DWARF data not adjusted for prelinking bias; consider prelink -u" +msgstr "" + +#: ../src/unstrip.c:1882 +#, c-format +msgid "DWARF data in '%s' not adjusted for prelinking bias; consider prelink -u" +msgstr "" + +#: ../src/unstrip.c:1901 +#: ../src/unstrip.c:1941 +#: ../src/unstrip.c:1953 +#: ../src/unstrip.c:2033 +#, fuzzy, c-format +msgid "cannot create ELF descriptor: %s" +msgstr "no se puede crear un descriptor interno" + +#: ../src/unstrip.c:1959 +#, fuzzy, c-format +msgid "'%s' and '%s' do not seem to match" +msgstr "Al parecer no tiene permisos para acceder a %s." + +#: ../src/unstrip.c:1990 +#, c-format +msgid "cannot find stripped file for module '%s': %s" +msgstr "" + +#: ../src/unstrip.c:1994 +#, fuzzy, c-format +msgid "cannot open stripped file '%s' for module '%s': %s" +msgstr "¡No se puede abrir el archivo para impresión PostScript!" + +#: ../src/unstrip.c:2009 +#, c-format +msgid "cannot find debug file for module '%s': %s" +msgstr "" + +#: ../src/unstrip.c:2013 +#, fuzzy, c-format +msgid "cannot open debug file '%s' for module '%s': %s" +msgstr "¡No se puede abrir el archivo para impresión PostScript!" + +#: ../src/unstrip.c:2026 +#, fuzzy, c-format +msgid "module '%s' file '%s' is not stripped" +msgstr "El fichero '%s' abierto en %C no es un fichero de módulo GFORTRAN" + +#: ../src/unstrip.c:2057 +#, c-format +msgid "cannot cache section addresses for module '%s': %s" +msgstr "" + +#: ../src/unstrip.c:2190 +#, fuzzy, c-format +msgid "no matching modules found" +msgstr "No se encontraron usuarios que coincidan" + +#: ../src/unstrip.c:2199 +#, fuzzy, c-format +msgid "matched more than one module" +msgstr "Se ha especificado más de una fecha tope" + +#: ../src/unstrip.c:2246 +#, fuzzy +msgid "" +"STRIPPED-FILE DEBUG-FILE\n" +"[MODULE...]" +msgstr "|FICHERO|carga módulo de extensiones FICHERO" + +#: ../src/unstrip.c:2247 +msgid "" +"Combine stripped files with separate symbols and debug information.\vThe first form puts the result in DEBUG-FILE if -o was not given.\n" +"\n" +"MODULE arguments give file name patterns matching modules to process.\n" +"With -f these match the file name of the main (stripped) file (slashes are never special), otherwise they match the simple module names. With no arguments, process all modules found.\n" +"\n" +"Multiple modules are written to files under OUTPUT-DIRECTORY, creating subdirectories as needed. With -m these files have simple module names, otherwise they have the name of the main file complete with directory underneath OUTPUT-DIRECTORY.\n" +"\n" +"With -n no files are written, but one line to standard output for each module:\n" +"\tSTART+SIZE BUILDID FILE DEBUGFILE MODULENAME\n" +"START and SIZE are hexadecimal giving the address bounds of the module. BUILDID is hexadecimal for the build ID bits, or - if no ID is known; the hexadecimal may be followed by @0xADDR giving the address where the ID resides if that is known. FILE is the file name found for the module, or - if none was found, or . if an ELF image is available but not from any named file. DEBUGFILE is the separate debuginfo file name, or - if no debuginfo was found, or . if FILE contains the debug information." +msgstr "" + +#: ../src/objdump.c:61 +#, fuzzy +msgid "Mode selection:" +msgstr "Modo de selección" + +#: ../src/objdump.c:62 +#, fuzzy +msgid "Display relocation information." +msgstr "Mostrar la información de la versión." + +#: ../src/objdump.c:64 +msgid "Display the full contents of all sections requested" +msgstr "" + +#: ../src/objdump.c:66 +msgid "Display assembler code of executable sections" +msgstr "" + +#: ../src/objdump.c:68 +#, fuzzy +msgid "Output option selection:" +msgstr "Modo de empleo: %s [OPCIÓN]... [ENTRADA [SALIDA]]\n" + +#: ../src/objdump.c:70 +msgid "Only display information for section NAME." +msgstr "" + +#. Short description of program. +#: ../src/objdump.c:76 +msgid "Show information from FILEs (a.out by default)." +msgstr "" + +#: ../src/objdump.c:274 +#: ../src/objdump.c:286 +#, fuzzy, c-format +msgid "while close `%s'" +msgstr "Cerrar Todo" + +#: ../src/objdump.c:510 +#, fuzzy, c-format +msgid "" +"\n" +"RELOCATION RECORDS FOR [%s]:\n" +"%-*s TYPE VALUE\n" +msgstr "valor inválido «%s» para el tipo de icono" + +#: ../src/objdump.c:513 +#, fuzzy +msgid "OFFSET" +msgstr "Desplazamiento en X" + +#: ../src/objdump.c:576 +#, fuzzy, c-format +msgid "Contents of section %s:\n" +msgstr "Contenido de la sección %s:\n" + +#: ../src/objdump.c:676 +#, fuzzy, c-format +msgid "cannot disassemble" +msgstr "No se puede ejecutar «%s»" + -- cgit v1.2.1 From 4e1b7c9e7be61c843eb3fa26e766a33e10f6f2df Mon Sep 17 00:00:00 2001 From: tomspur Date: Sun, 5 Apr 2009 10:10:43 +0000 Subject: Sending translation for po/de.po --- po/de.po | 5557 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 5557 insertions(+) create mode 100644 po/de.po diff --git a/po/de.po b/po/de.po new file mode 100644 index 00000000..99bd44d5 --- /dev/null +++ b/po/de.po @@ -0,0 +1,5557 @@ +# German translation of elfutils. +# Copyright (C) 2009 THE elfutils'S COPYRIGHT HOLDER +# This file is distributed under the same license as the elfutils package. +# Thomas Spura , 2009. +# , fuzzy +# +# +msgid "" +msgstr "" +"Project-Id-Version: elfutils VERSION\n" +"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n" +"POT-Creation-Date: 2009-04-05 08:10+0000\n" +"PO-Revision-Date: 2009-04-05 12:08+0200\n" +"Last-Translator: Thomas Spura \n" +"Language-Team: German\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);" + +#: ../lib/xmalloc.c:51 ../lib/xmalloc.c:65 ../lib/xmalloc.c:79 +#: ../src/readelf.c:2703 ../src/readelf.c:3038 ../src/unstrip.c:2086 +#: ../src/unstrip.c:2294 +#, c-format +msgid "memory exhausted" +msgstr "Kein Speicher mehr verfügbar" + +#: ../libelf/elf_error.c:81 ../libasm/asm_error.c:62 ../libdw/dwarf_error.c:79 +msgid "no error" +msgstr "kein Fehler" + +#: ../libelf/elf_error.c:84 ../libasm/asm_error.c:81 ../libdw/dwarf_error.c:80 +msgid "unknown error" +msgstr "unbekannter Fehler" + +#: ../libelf/elf_error.c:88 +msgid "unknown version" +msgstr "unbekannte Version" + +#: ../libelf/elf_error.c:92 +msgid "unknown type" +msgstr "unbekannter Typ" + +#: ../libelf/elf_error.c:96 +msgid "invalid `Elf' handle" +msgstr "" + +#: ../libelf/elf_error.c:100 +msgid "invalid size of source operand" +msgstr "" + +#: ../libelf/elf_error.c:104 +msgid "invalid size of destination operand" +msgstr "" + +#: ../libelf/elf_error.c:108 ../src/readelf.c:4589 +#, fuzzy, c-format +msgid "invalid encoding" +msgstr "ungültige Kodierung" + +#: ../libelf/elf_error.c:112 ../libasm/asm_error.c:63 +#: ../libdw/dwarf_error.c:88 +msgid "out of memory" +msgstr "" + +#: ../libelf/elf_error.c:116 +msgid "invalid file descriptor" +msgstr "" + +#: ../libelf/elf_error.c:120 +msgid "invalid operation" +msgstr "ungültige Operation" + +#: ../libelf/elf_error.c:124 +msgid "ELF version not set" +msgstr "" + +#: ../libelf/elf_error.c:128 ../libelf/elf_error.c:176 +#: ../libdw/dwarf_error.c:90 +msgid "invalid command" +msgstr "" + +#: ../libelf/elf_error.c:132 ../libelf/elf_error.c:192 +msgid "offset out of range" +msgstr "" + +#: ../libelf/elf_error.c:136 +msgid "invalid fmag field in archive header" +msgstr "" + +#: ../libelf/elf_error.c:140 +msgid "invalid archive file" +msgstr "" + +#: ../libelf/elf_error.c:144 +msgid "descriptor is not for an archive" +msgstr "" + +#: ../libelf/elf_error.c:148 +msgid "no index available" +msgstr "" + +#: ../libelf/elf_error.c:152 +msgid "cannot read data from file" +msgstr "" + +#: ../libelf/elf_error.c:156 +msgid "cannot write data to file" +msgstr "" + +#: ../libelf/elf_error.c:160 +msgid "invalid binary class" +msgstr "" + +#: ../libelf/elf_error.c:164 +msgid "invalid section index" +msgstr "" + +#: ../libelf/elf_error.c:168 +msgid "invalid operand" +msgstr "" + +#: ../libelf/elf_error.c:172 +msgid "invalid section" +msgstr "" + +#: ../libelf/elf_error.c:180 +msgid "executable header not created first" +msgstr "" + +#: ../libelf/elf_error.c:184 +msgid "file descriptor disabled" +msgstr "" + +#: ../libelf/elf_error.c:188 +msgid "archive/member fildes mismatch" +msgstr "" + +#: ../libelf/elf_error.c:196 +msgid "cannot manipulate null section" +msgstr "" + +#: ../libelf/elf_error.c:200 +msgid "data/scn mismatch" +msgstr "" + +#: ../libelf/elf_error.c:204 +msgid "invalid section header" +msgstr "" + +#: ../libelf/elf_error.c:208 ../src/readelf.c:6055 ../src/readelf.c:6156 +#, c-format +msgid "invalid data" +msgstr "" + +#: ../libelf/elf_error.c:212 +msgid "unknown data encoding" +msgstr "" + +#: ../libelf/elf_error.c:216 +msgid "section `sh_size' too small for data" +msgstr "" + +#: ../libelf/elf_error.c:220 +msgid "invalid section alignment" +msgstr "" + +#: ../libelf/elf_error.c:224 +msgid "invalid section entry size" +msgstr "" + +#: ../libelf/elf_error.c:228 +msgid "update() for write on read-only file" +msgstr "" + +#: ../libelf/elf_error.c:232 +msgid "no such file" +msgstr "Datei nicht gefunden" + +#: ../libelf/elf_error.c:236 +msgid "only relocatable files can contain section groups" +msgstr "" + +#: ../libelf/elf_error.c:241 +msgid "" +"program header only allowed in executables, shared objects, and core files" +msgstr "" + +#: ../libelf/elf_error.c:248 +msgid "file has no program header" +msgstr "" + +#: ../libelf/elf_error.c:253 ../libdw/dwarf_error.c:112 +msgid "invalid offset" +msgstr "" + +#: ../libasm/asm_error.c:64 ../src/ldgeneric.c:2687 +#, c-format +msgid "cannot create output file" +msgstr "" + +#: ../libasm/asm_error.c:65 +msgid "invalid parameter" +msgstr "ungültiger Parameter" + +#: ../libasm/asm_error.c:66 +msgid "cannot change mode of output file" +msgstr "" + +#. Something went wrong. +#: ../libasm/asm_error.c:67 ../src/ldgeneric.c:7001 +#, c-format +msgid "cannot rename output file" +msgstr "" + +#: ../libasm/asm_error.c:68 +msgid "duplicate symbol" +msgstr "" + +#: ../libasm/asm_error.c:69 +msgid "invalid section type for operation" +msgstr "" + +#: ../libasm/asm_error.c:70 +msgid "error during output of data" +msgstr "" + +#: ../libasm/asm_error.c:71 +msgid "no backend support available" +msgstr "" + +#: ../libdw/dwarf_error.c:81 +msgid "invalid access" +msgstr "" + +#: ../libdw/dwarf_error.c:82 +msgid "no regular file" +msgstr "" + +#: ../libdw/dwarf_error.c:83 +msgid "I/O error" +msgstr "" + +#: ../libdw/dwarf_error.c:84 +msgid "invalid ELF file" +msgstr "" + +#: ../libdw/dwarf_error.c:85 +msgid "no DWARF information" +msgstr "" + +#: ../libdw/dwarf_error.c:86 +msgid "no ELF file" +msgstr "" + +#: ../libdw/dwarf_error.c:87 +msgid "cannot get ELF header" +msgstr "" + +#: ../libdw/dwarf_error.c:89 +msgid "not implemented" +msgstr "" + +#: ../libdw/dwarf_error.c:91 +msgid "invalid version" +msgstr "" + +#: ../libdw/dwarf_error.c:92 +msgid "invalid file" +msgstr "" + +#: ../libdw/dwarf_error.c:93 +msgid "no entries found" +msgstr "" + +#: ../libdw/dwarf_error.c:94 +msgid "invalid DWARF" +msgstr "" + +#: ../libdw/dwarf_error.c:95 +msgid "no string data" +msgstr "" + +#: ../libdw/dwarf_error.c:96 +msgid "no address value" +msgstr "" + +#: ../libdw/dwarf_error.c:97 +msgid "no constant value" +msgstr "" + +#: ../libdw/dwarf_error.c:98 +msgid "no reference value" +msgstr "" + +#: ../libdw/dwarf_error.c:99 +msgid "invalid reference value" +msgstr "" + +#: ../libdw/dwarf_error.c:100 +msgid ".debug_line section missing" +msgstr "" + +#: ../libdw/dwarf_error.c:101 +msgid "invalid .debug_line section" +msgstr "" + +#: ../libdw/dwarf_error.c:102 +msgid "debug information too big" +msgstr "" + +#: ../libdw/dwarf_error.c:103 +msgid "invalid DWARF version" +msgstr "" + +#: ../libdw/dwarf_error.c:104 +msgid "invalid directory index" +msgstr "" + +#: ../libdw/dwarf_error.c:105 +msgid "address out of range" +msgstr "" + +#: ../libdw/dwarf_error.c:106 +msgid "no location list value" +msgstr "" + +#: ../libdw/dwarf_error.c:107 +msgid "no block data" +msgstr "" + +#: ../libdw/dwarf_error.c:108 +msgid "invalid line index" +msgstr "" + +#: ../libdw/dwarf_error.c:109 +msgid "invalid address range index" +msgstr "" + +#: ../libdw/dwarf_error.c:110 +msgid "no matching address range" +msgstr "" + +#: ../libdw/dwarf_error.c:111 +msgid "no flag value" +msgstr "" + +#: ../libdw/dwarf_error.c:113 +msgid ".debug_ranges section missing" +msgstr "" + +#: ../libdwfl/argp-std.c:67 ../src/unstrip.c:2236 +msgid "Input selection options:" +msgstr "" + +#: ../libdwfl/argp-std.c:68 +msgid "Find addresses in FILE" +msgstr "" + +#: ../libdwfl/argp-std.c:70 +msgid "Find addresses from signatures found in COREFILE" +msgstr "" + +#: ../libdwfl/argp-std.c:72 +msgid "Find addresses in files mapped into process PID" +msgstr "" + +#: ../libdwfl/argp-std.c:74 +msgid "" +"Find addresses in files mapped as read from FILE in Linux /proc/PID/maps " +"format" +msgstr "" + +#: ../libdwfl/argp-std.c:76 +msgid "Find addresses in the running kernel" +msgstr "" + +#: ../libdwfl/argp-std.c:78 +msgid "Kernel with all modules" +msgstr "" + +#: ../libdwfl/argp-std.c:80 +msgid "Search path for separate debuginfo files" +msgstr "" + +#: ../libdwfl/argp-std.c:163 +msgid "only one of -e, -p, -k, -K, or --core allowed" +msgstr "" + +#: ../libdwfl/argp-std.c:223 +#, c-format +msgid "cannot read ELF core file: %s" +msgstr "" + +#: ../libdwfl/argp-std.c:243 +msgid "No modules recognized in core file" +msgstr "" + +#: ../libdwfl/argp-std.c:255 +msgid "cannot load kernel symbols" +msgstr "" + +#. Non-fatal to have no modules since we do have the kernel. +#: ../libdwfl/argp-std.c:259 +msgid "cannot find kernel modules" +msgstr "" + +#: ../libdwfl/argp-std.c:273 +msgid "cannot find kernel or modules" +msgstr "" + +#: ../libebl/eblbackendname.c:63 +msgid "No backend" +msgstr "" + +#: ../libebl/eblcorenotetypename.c:107 ../libebl/eblobjecttypename.c:78 +#: ../libebl/eblobjnotetypename.c:85 ../libebl/eblosabiname.c:98 +#: ../libebl/eblsectionname.c:110 ../libebl/eblsectiontypename.c:140 +#: ../libebl/eblsegmenttypename.c:104 +msgid "" +msgstr "" + +#: ../libebl/ebldynamictagname.c:126 +#, c-format +msgid ": %#" +msgstr "" + +#: ../libebl/eblobjnote.c:76 +#, c-format +msgid " Build ID: " +msgstr "" + +#: ../libebl/eblobjnote.c:129 +#, c-format +msgid " OS: %s, ABI: " +msgstr "" + +#: ../libebl/eblosabiname.c:95 +msgid "Stand alone" +msgstr "" + +#: ../libebl/eblsymbolbindingname.c:86 ../libebl/eblsymboltypename.c:94 +#, c-format +msgid ": %d" +msgstr "" + +#: ../src/ar.c:76 +msgid "Commands:" +msgstr "" + +#: ../src/ar.c:77 +msgid "Delete files from archive." +msgstr "Dateien aus dem Archiv löschen." + +#: ../src/ar.c:78 +msgid "Move files in archive." +msgstr "Dateien zum Archiv hinzufügen." + +#: ../src/ar.c:79 +msgid "Print files in archive." +msgstr "" + +#: ../src/ar.c:80 +msgid "Quick append files to archive." +msgstr "" + +#: ../src/ar.c:82 +msgid "Replace existing or insert new file into archive." +msgstr "" + +#: ../src/ar.c:83 +msgid "Display content of archive." +msgstr "" + +#: ../src/ar.c:84 +msgid "Extract files from archive." +msgstr "" + +#: ../src/ar.c:86 +msgid "Command Modifiers:" +msgstr "" + +#: ../src/ar.c:87 +msgid "Preserve original dates." +msgstr "" + +#: ../src/ar.c:88 +msgid "Use instance [COUNT] of name." +msgstr "" + +#: ../src/ar.c:90 +msgid "Do not replace existing files with extracted files." +msgstr "" + +#: ../src/ar.c:91 +msgid "Allow filename to be truncated if necessary." +msgstr "" + +#: ../src/ar.c:93 +msgid "Provide verbose output." +msgstr "" + +#: ../src/ar.c:94 +msgid "Force regeneration of symbol table." +msgstr "" + +#: ../src/ar.c:95 +msgid "Insert file after [MEMBER]." +msgstr "" + +#: ../src/ar.c:96 +msgid "Insert file before [MEMBER]." +msgstr "" + +#: ../src/ar.c:97 +msgid "Same as -b." +msgstr "" + +#: ../src/ar.c:98 +msgid "Suppress message when library has to be created." +msgstr "" + +#: ../src/ar.c:100 +msgid "Use full path for file matching." +msgstr "" + +#: ../src/ar.c:101 +msgid "Update only older files in archive." +msgstr "" + +#. Short description of program. +#: ../src/ar.c:107 +msgid "Create, modify, and extract from archives." +msgstr "" + +#. Strings for arguments in help texts. +#: ../src/ar.c:110 +msgid "[MEMBER] [COUNT] ARCHIVE [FILE...]" +msgstr "" + +#: ../src/ar.c:192 +#, c-format +msgid "'a', 'b', and 'i' are only allowed with the 'm' and 'r' options" +msgstr "" + +#: ../src/ar.c:197 +#, c-format +msgid "MEMBER parameter required for 'a', 'b', and 'i' modifiers" +msgstr "" + +#: ../src/ar.c:213 +#, c-format +msgid "'N' is only meaningful with the 'x' and 'd' options" +msgstr "" + +#: ../src/ar.c:218 +#, c-format +msgid "COUNT parameter required" +msgstr "" + +#: ../src/ar.c:230 +#, c-format +msgid "invalid COUNT parameter %s" +msgstr "" + +#: ../src/ar.c:237 +#, c-format +msgid "'%' is only meaningful with the 'x' option" +msgstr "" + +#: ../src/ar.c:243 +#, c-format +msgid "archive name required" +msgstr "" + +#: ../src/ar.c:289 ../src/nm.c:253 ../src/readelf.c:432 ../src/size.c:219 +#: ../src/strip.c:203 ../src/ld.c:957 ../src/elflint.c:238 +#: ../src/addr2line.c:180 ../src/findtextrel.c:170 ../src/elfcmp.c:522 +#: ../src/ranlib.c:136 ../src/strings.c:227 ../src/unstrip.c:233 +#: ../src/objdump.c:181 +#, c-format +msgid "" +"Copyright (C) %s Red Hat, Inc.\n" +"This is free software; see the source for copying conditions. There is NO\n" +"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" +msgstr "" + +#: ../src/ar.c:294 ../src/nm.c:258 ../src/readelf.c:437 ../src/size.c:224 +#: ../src/strip.c:208 ../src/ld.c:962 ../src/elflint.c:243 +#: ../src/addr2line.c:185 ../src/findtextrel.c:175 ../src/elfcmp.c:527 +#: ../src/ranlib.c:141 ../src/strings.c:232 ../src/unstrip.c:238 +#: ../src/objdump.c:186 +#, c-format +msgid "Written by %s.\n" +msgstr "" + +#: ../src/ar.c:314 +#, c-format +msgid "More than one operation specified" +msgstr "" + +#: ../src/ar.c:404 +#, c-format +msgid "cannot open archive '%s'" +msgstr "" + +#: ../src/ar.c:414 +#, c-format +msgid "cannot open archive '%s': %s" +msgstr "" + +#: ../src/ar.c:418 +#, c-format +msgid "%s: not an archive file" +msgstr "" + +#: ../src/ar.c:422 +#, c-format +msgid "cannot stat archive '%s'" +msgstr "" + +#: ../src/ar.c:434 +#, c-format +msgid "no entry %s in archive\n" +msgstr "" + +#: ../src/ar.c:474 ../src/ar.c:918 ../src/ar.c:1118 +#, c-format +msgid "cannot create hash table" +msgstr "" + +#: ../src/ar.c:481 ../src/ar.c:925 ../src/ar.c:1127 +#, c-format +msgid "cannot insert into hash table" +msgstr "" + +#: ../src/ar.c:489 ../src/ranlib.c:176 +#, c-format +msgid "cannot stat '%s'" +msgstr "" + +#: ../src/ar.c:585 +#, c-format +msgid "cannot read content of %s: %s" +msgstr "" + +#: ../src/ar.c:629 +#, c-format +msgid "cannot open %.*s" +msgstr "" + +#: ../src/ar.c:651 +#, c-format +msgid "failed to write %s" +msgstr "" + +#: ../src/ar.c:663 +#, c-format +msgid "cannot change mode of %s" +msgstr "" + +#: ../src/ar.c:679 +#, c-format +msgid "cannot change modification time of %s" +msgstr "" + +#: ../src/ar.c:726 +#, c-format +msgid "cannot rename temporary file to %.*s" +msgstr "" + +#: ../src/ar.c:762 ../src/ar.c:1010 ../src/ar.c:1408 ../src/ranlib.c:250 +#, c-format +msgid "cannot create new file" +msgstr "neue Datei konnte nicht angelegt werden" + +#: ../src/ar.c:1209 +#, c-format +msgid "position member %s not found" +msgstr "" + +#: ../src/ar.c:1219 +#, c-format +msgid "%s: no entry %s in archive!\n" +msgstr "%s: Kein Eintrag %s in dem Archiv!\n" + +#: ../src/ar.c:1248 ../src/ldgeneric.c:519 ../src/objdump.c:257 +#, c-format +msgid "cannot open %s" +msgstr "" + +#: ../src/ar.c:1253 +#, c-format +msgid "cannot stat %s" +msgstr "" + +#: ../src/ar.c:1259 +#, c-format +msgid "%s is no regular file" +msgstr "" + +#: ../src/ar.c:1272 +#, c-format +msgid "cannot get ELF descriptor for %s: %s\n" +msgstr "" + +#: ../src/ar.c:1291 +#, c-format +msgid "cannot read %s: %s" +msgstr "" + +#. The archive is too big. +#: ../src/arlib.c:215 +#, c-format +msgid "the archive '%s' is too large" +msgstr "" + +#: ../src/arlib.c:228 +#, c-format +msgid "cannot read ELF header of %s(%s): %s" +msgstr "" + +#: ../src/nm.c:74 ../src/readelf.c:72 ../src/strip.c:72 +msgid "Output selection:" +msgstr "" + +#: ../src/nm.c:75 +msgid "Display debugger-only symbols" +msgstr "" + +#: ../src/nm.c:76 +msgid "Display only defined symbols" +msgstr "" + +#: ../src/nm.c:79 +msgid "Display dynamic symbols instead of normal symbols" +msgstr "" + +#: ../src/nm.c:80 +msgid "Display only external symbols" +msgstr "" + +#: ../src/nm.c:81 +msgid "Display only undefined symbols" +msgstr "" + +#: ../src/nm.c:83 +msgid "Include index for symbols from archive members" +msgstr "" + +#: ../src/nm.c:85 ../src/size.c:66 +msgid "Output format:" +msgstr "" + +#: ../src/nm.c:87 +msgid "Print name of the input file before every symbol" +msgstr "" + +#: ../src/nm.c:90 +msgid "" +"Use the output format FORMAT. FORMAT can be `bsd', `sysv' or `posix'. The " +"default is `sysv'" +msgstr "" + +#: ../src/nm.c:92 +msgid "Same as --format=bsd" +msgstr "" + +#: ../src/nm.c:93 +msgid "Same as --format=posix" +msgstr "" + +#: ../src/nm.c:94 ../src/size.c:72 +msgid "Use RADIX for printing symbol values" +msgstr "" + +#: ../src/nm.c:95 +msgid "Mark weak symbols" +msgstr "" + +#: ../src/nm.c:96 +msgid "Print size of defined symbols" +msgstr "" + +#: ../src/nm.c:98 ../src/size.c:80 ../src/strip.c:77 ../src/unstrip.c:80 +msgid "Output options:" +msgstr "" + +#: ../src/nm.c:99 +msgid "Sort symbols numerically by address" +msgstr "" + +#: ../src/nm.c:101 +msgid "Do not sort the symbols" +msgstr "" + +#: ../src/nm.c:102 +msgid "Reverse the sense of the sort" +msgstr "" + +#: ../src/nm.c:103 ../src/addr2line.c:73 ../src/findtextrel.c:75 +#: ../src/elfcmp.c:75 ../src/strings.c:83 +msgid "Miscellaneous:" +msgstr "" + +#. Short description of program. +#: ../src/nm.c:108 +msgid "List symbols from FILEs (a.out by default)." +msgstr "" + +#. Strings for arguments in help texts. +#: ../src/nm.c:111 ../src/size.c:92 ../src/strip.c:96 ../src/findtextrel.c:84 +#: ../src/strings.c:92 ../src/objdump.c:80 +msgid "[FILE...]" +msgstr "" + +#: ../src/nm.c:136 ../src/size.c:117 ../src/strip.c:120 ../src/objdump.c:105 +#, c-format +msgid "%s: INTERNAL ERROR %d (%s-%s): %s" +msgstr "" + +#: ../src/nm.c:363 ../src/size.c:301 ../src/strip.c:432 ../src/strip.c:467 +#: ../src/ldgeneric.c:1767 ../src/ldgeneric.c:4257 ../src/findtextrel.c:229 +#: ../src/elfcmp.c:574 ../src/ranlib.c:169 ../src/strings.c:183 +#: ../src/unstrip.c:1899 ../src/unstrip.c:1928 +#, c-format +msgid "cannot open '%s'" +msgstr "" + +#: ../src/nm.c:380 ../src/nm.c:392 ../src/size.c:317 ../src/size.c:326 +#: ../src/size.c:337 ../src/strip.c:1814 +#, c-format +msgid "while closing '%s'" +msgstr "" + +#: ../src/nm.c:402 ../src/strip.c:358 ../src/objdump.c:296 +#, c-format +msgid "%s: File format not recognized" +msgstr "" + +#. Note: 0 is no valid offset. +#: ../src/nm.c:442 +msgid "" +"\n" +"Archive index:" +msgstr "" + +#: ../src/nm.c:451 +#, c-format +msgid "invalid offset %zu for symbol %s" +msgstr "" + +#: ../src/nm.c:456 +#, c-format +msgid "%s in %s\n" +msgstr "" + +#: ../src/nm.c:464 +#, c-format +msgid "cannot reset archive offset to beginning" +msgstr "" + +#: ../src/nm.c:488 ../src/objdump.c:344 +#, c-format +msgid "%s%s%s: file format not recognized" +msgstr "" + +#: ../src/nm.c:700 +#, c-format +msgid "cannot create search tree" +msgstr "" + +#: ../src/nm.c:740 ../src/nm.c:1002 ../src/readelf.c:850 ../src/readelf.c:993 +#: ../src/readelf.c:1134 ../src/readelf.c:1316 ../src/readelf.c:1514 +#: ../src/readelf.c:1659 ../src/readelf.c:1827 ../src/readelf.c:2081 +#: ../src/readelf.c:2147 ../src/readelf.c:2225 ../src/readelf.c:2722 +#: ../src/readelf.c:2758 ../src/readelf.c:2820 ../src/readelf.c:6305 +#: ../src/readelf.c:7171 ../src/readelf.c:7316 ../src/readelf.c:7385 +#: ../src/size.c:425 ../src/size.c:499 ../src/strip.c:482 ../src/objdump.c:744 +#, c-format +msgid "cannot get section header string table index" +msgstr "" + +#: ../src/nm.c:766 +#, fuzzy, c-format +msgid "" +"\n" +"\n" +"Symbols from %s:\n" +"\n" +msgstr "" +"\n" +"\n" +"Symbole aus %s:\n" +"\n" + +#: ../src/nm.c:768 +#, fuzzy, c-format +msgid "" +"\n" +"\n" +"Symbols from %s[%s]:\n" +"\n" +msgstr "" +"\n" +"\n" +"Symbole aus %s[%s]:\n" +"\n" + +#. The header line. +#: ../src/nm.c:771 +#, c-format +msgid "" +"%*s%-*s %-*s Class Type %-*s %*s Section\n" +"\n" +msgstr "" + +#: ../src/nm.c:1012 +#, c-format +msgid "%s: entry size in section `%s' is not what we expect" +msgstr "" + +#: ../src/nm.c:1016 +#, c-format +msgid "%s: size of section `%s' is not multiple of entry size" +msgstr "" + +#. XXX Add machine specific object file types. +#: ../src/nm.c:1255 +#, c-format +msgid "%s%s%s%s: Invalid operation" +msgstr "" + +#: ../src/nm.c:1312 +#, c-format +msgid "%s%s%s: no symbols" +msgstr "" + +#: ../src/readelf.c:73 +msgid "Equivalent to: -e -h -l" +msgstr "" + +#: ../src/readelf.c:74 +msgid "Display the dynamic segment" +msgstr "" + +#: ../src/readelf.c:75 +msgid "Display the ELF file header" +msgstr "" + +#: ../src/readelf.c:77 +msgid "Display histogram of bucket list lengths" +msgstr "" + +#: ../src/readelf.c:78 +msgid "Display the program headers" +msgstr "" + +#: ../src/readelf.c:80 +msgid "Display relocations" +msgstr "" + +#: ../src/readelf.c:81 +msgid "Display the sections' header" +msgstr "" + +#: ../src/readelf.c:83 +msgid "Display the symbol table" +msgstr "" + +#: ../src/readelf.c:84 +msgid "Display versioning information" +msgstr "" + +#: ../src/readelf.c:86 +msgid "" +"Display DWARF section content. SECTION can be one of abbrev, aranges, " +"frame, info, loc, line, ranges, pubnames, str, macinfo, or exception" +msgstr "" + +#: ../src/readelf.c:89 +msgid "Display the core notes" +msgstr "" + +#: ../src/readelf.c:91 +msgid "Display architecture specific information (if any)" +msgstr "" + +#: ../src/readelf.c:93 +msgid "Dump the uninterpreted contents of SECTION, by number or name" +msgstr "" + +#: ../src/readelf.c:95 +msgid "Print string contents of sections" +msgstr "" + +#: ../src/readelf.c:98 +msgid "Display the symbol index of an archive" +msgstr "" + +#: ../src/readelf.c:99 +msgid "Display sections for exception handling" +msgstr "" + +#: ../src/readelf.c:102 +msgid "Output control:" +msgstr "" + +#. Short description of program. +#: ../src/readelf.c:108 +msgid "Print information from ELF file in human-readable form." +msgstr "" + +#. Strings for arguments in help texts. +#: ../src/readelf.c:112 ../src/elflint.c:85 +msgid "FILE..." +msgstr "" + +#: ../src/readelf.c:259 ../src/elflint.c:158 +#, c-format +msgid "cannot open input file" +msgstr "" + +#: ../src/readelf.c:387 +#, c-format +msgid "Unknown DWARF debug section `%s'.\n" +msgstr "" + +#: ../src/readelf.c:408 ../src/elflint.c:222 +msgid "Missing file name.\n" +msgstr "" + +#: ../src/readelf.c:413 ../src/objdump.c:236 +msgid "No operation specified.\n" +msgstr "" + +#: ../src/readelf.c:448 +#, c-format +msgid "cannot generate Elf descriptor: %s" +msgstr "" + +#: ../src/readelf.c:460 +#, c-format +msgid "'%s' is not an archive, cannot print archive index" +msgstr "" + +#: ../src/readelf.c:465 +#, c-format +msgid "error while closing Elf descriptor: %s" +msgstr "" + +#: ../src/readelf.c:557 +#, c-format +msgid "cannot stat input file" +msgstr "" + +#: ../src/readelf.c:559 +#, c-format +msgid "input file is empty" +msgstr "" + +#: ../src/readelf.c:561 +#, c-format +msgid "failed reading '%s': %s" +msgstr "" + +#: ../src/readelf.c:596 +#, c-format +msgid "cannot read ELF header: %s" +msgstr "" + +#: ../src/readelf.c:604 +#, c-format +msgid "cannot create EBL handle" +msgstr "" + +#: ../src/readelf.c:611 ../src/strip.c:542 ../src/ldgeneric.c:661 +#: ../src/ldgeneric.c:1122 +#, c-format +msgid "cannot determine number of sections: %s" +msgstr "" + +#: ../src/readelf.c:697 +msgid "NONE (None)" +msgstr "" + +#: ../src/readelf.c:698 +msgid "REL (Relocatable file)" +msgstr "" + +#: ../src/readelf.c:699 +msgid "EXEC (Executable file)" +msgstr "" + +#: ../src/readelf.c:700 +msgid "DYN (Shared object file)" +msgstr "" + +#: ../src/readelf.c:701 +msgid "CORE (Core file)" +msgstr "" + +#: ../src/readelf.c:706 +#, c-format +msgid "OS Specific: (%x)\n" +msgstr "" + +#. && e_type <= ET_HIPROC always true +#: ../src/readelf.c:708 +#, c-format +msgid "Processor Specific: (%x)\n" +msgstr "" + +#: ../src/readelf.c:718 +msgid "" +"ELF Header:\n" +" Magic: " +msgstr "" + +#: ../src/readelf.c:722 +#, c-format +msgid "" +"\n" +" Class: %s\n" +msgstr "" + +#: ../src/readelf.c:727 +#, c-format +msgid " Data: %s\n" +msgstr "" + +#: ../src/readelf.c:733 +#, c-format +msgid " Ident Version: %hhd %s\n" +msgstr "" + +#: ../src/readelf.c:735 ../src/readelf.c:752 +msgid "(current)" +msgstr "" + +#: ../src/readelf.c:739 +#, c-format +msgid " OS/ABI: %s\n" +msgstr "" + +#: ../src/readelf.c:742 +#, c-format +msgid " ABI Version: %hhd\n" +msgstr "" + +#: ../src/readelf.c:745 +msgid " Type: " +msgstr "" + +#: ../src/readelf.c:748 +#, c-format +msgid " Machine: %s\n" +msgstr "" + +#: ../src/readelf.c:750 +#, c-format +msgid " Version: %d %s\n" +msgstr "" + +#: ../src/readelf.c:754 +#, c-format +msgid " Entry point address: %#\n" +msgstr "" + +#: ../src/readelf.c:757 +#, c-format +msgid " Start of program headers: % %s\n" +msgstr "" + +#: ../src/readelf.c:758 ../src/readelf.c:761 +msgid "(bytes into file)" +msgstr "" + +#: ../src/readelf.c:760 +#, c-format +msgid " Start of section headers: % %s\n" +msgstr "" + +#: ../src/readelf.c:763 +#, c-format +msgid " Flags: %s\n" +msgstr "" + +#: ../src/readelf.c:766 +#, c-format +msgid " Size of this header: % %s\n" +msgstr "" + +#: ../src/readelf.c:767 ../src/readelf.c:770 ../src/readelf.c:776 +msgid "(bytes)" +msgstr "" + +#: ../src/readelf.c:769 +#, c-format +msgid " Size of program header entries: % %s\n" +msgstr "" + +#: ../src/readelf.c:772 +#, c-format +msgid " Number of program headers entries: %\n" +msgstr "" + +#: ../src/readelf.c:775 +#, c-format +msgid " Size of section header entries: % %s\n" +msgstr "" + +#: ../src/readelf.c:778 +#, c-format +msgid " Number of section headers entries: %" +msgstr "" + +#: ../src/readelf.c:785 +#, c-format +msgid " (% in [0].sh_size)" +msgstr "" + +#: ../src/readelf.c:788 ../src/readelf.c:802 +msgid " ([0] not available)" +msgstr "" + +#. We managed to get the zeroth section. +#: ../src/readelf.c:798 +#, c-format +msgid " (% in [0].sh_link)" +msgstr "" + +#: ../src/readelf.c:806 +#, c-format +msgid "" +" Section header string table index: XINDEX%s\n" +"\n" +msgstr "" + +#: ../src/readelf.c:810 +#, c-format +msgid "" +" Section header string table index: %\n" +"\n" +msgstr "" + +#: ../src/readelf.c:842 +#, c-format +msgid "" +"There are %d section headers, starting at offset %#:\n" +"\n" +msgstr "" + +#: ../src/readelf.c:852 +msgid "Section Headers:" +msgstr "" + +#: ../src/readelf.c:855 +msgid "" +"[Nr] Name Type Addr Off Size ES Flags Lk " +"Inf Al" +msgstr "" + +#: ../src/readelf.c:857 +msgid "" +"[Nr] Name Type Addr Off Size ES " +"Flags Lk Inf Al" +msgstr "" + +#: ../src/readelf.c:864 ../src/readelf.c:1017 +#, c-format +msgid "cannot get section: %s" +msgstr "" + +#: ../src/readelf.c:871 ../src/readelf.c:1025 ../src/readelf.c:7336 +#: ../src/unstrip.c:352 ../src/unstrip.c:376 ../src/unstrip.c:426 +#: ../src/unstrip.c:535 ../src/unstrip.c:552 ../src/unstrip.c:590 +#: ../src/unstrip.c:788 ../src/unstrip.c:1056 ../src/unstrip.c:1243 +#: ../src/unstrip.c:1304 ../src/unstrip.c:1426 ../src/unstrip.c:1479 +#: ../src/unstrip.c:1587 ../src/unstrip.c:1777 +#, c-format +msgid "cannot get section header: %s" +msgstr "" + +#: ../src/readelf.c:929 +msgid "Program Headers:" +msgstr "" + +#: ../src/readelf.c:931 +msgid "" +" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align" +msgstr "" + +#: ../src/readelf.c:934 +msgid "" +" Type Offset VirtAddr PhysAddr FileSiz " +"MemSiz Flg Align" +msgstr "" + +#: ../src/readelf.c:974 +#, c-format +msgid "\t[Requesting program interpreter: %s]\n" +msgstr "" + +#: ../src/readelf.c:995 +msgid "" +"\n" +" Section to Segment mapping:\n" +" Segment Sections..." +msgstr "" + +#: ../src/readelf.c:1006 ../src/unstrip.c:1823 ../src/unstrip.c:1862 +#: ../src/unstrip.c:1869 +#, c-format +msgid "cannot get program header: %s" +msgstr "" + +#: ../src/readelf.c:1140 +#, c-format +msgid "" +"\n" +"COMDAT section group [%2zu] '%s' with signature '%s' contains %zu entry:\n" +"\n" +"COMDAT section group [%2zu] '%s' with signature '%s' contains %zu entries:\n" +msgstr "" + +#: ../src/readelf.c:1145 +#, c-format +msgid "" +"\n" +"Section group [%2zu] '%s' with signature '%s' contains %zu entry:\n" +"\n" +"Section group [%2zu] '%s' with signature '%s' contains %zu entries:\n" +msgstr "" + +#: ../src/readelf.c:1153 +msgid "" +msgstr "" + +#: ../src/readelf.c:1167 +msgid "" +msgstr "" + +#: ../src/readelf.c:1318 +#, c-format +msgid "" +"\n" +"Dynamic segment contains %lu entry:\n" +" Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" +"\n" +"Dynamic segment contains %lu entries:\n" +" Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" +msgstr "" + +#: ../src/readelf.c:1330 +msgid " Type Value\n" +msgstr "" + +#: ../src/readelf.c:1354 +#, c-format +msgid "Shared library: [%s]\n" +msgstr "" + +#: ../src/readelf.c:1359 +#, c-format +msgid "Library soname: [%s]\n" +msgstr "" + +#: ../src/readelf.c:1364 +#, c-format +msgid "Library rpath: [%s]\n" +msgstr "" + +#: ../src/readelf.c:1369 +#, c-format +msgid "Library runpath: [%s]\n" +msgstr "" + +#: ../src/readelf.c:1389 +#, c-format +msgid "% (bytes)\n" +msgstr "" + +#: ../src/readelf.c:1499 ../src/readelf.c:1644 +#, c-format +msgid "" +"\n" +"Invalid symbol table at offset %#0\n" +msgstr "" + +#: ../src/readelf.c:1517 ../src/readelf.c:1661 +#, c-format +msgid "" +"\n" +"Relocation section [%2zu] '%s' for section [%2u] '%s' at offset %#0 " +"contains %d entry:\n" +"\n" +"Relocation section [%2zu] '%s' for section [%2u] '%s' at offset %#0 " +"contains %d entries:\n" +msgstr "" + +#. The .rel.dyn section does not refer to a specific section but +#. instead of section index zero. Do not try to print a section +#. name. +#: ../src/readelf.c:1532 +#, c-format +msgid "" +"\n" +"Relocation section [%2u] '%s' at offset %#0 contains %d entry:\n" +"\n" +"Relocation section [%2u] '%s' at offset %#0 contains %d entries:\n" +msgstr "" + +#: ../src/readelf.c:1542 +msgid " Offset Type Value Name\n" +msgstr "" + +#: ../src/readelf.c:1544 +msgid " Offset Type Value Name\n" +msgstr "" + +#: ../src/readelf.c:1568 ../src/readelf.c:1580 ../src/readelf.c:1598 +#: ../src/readelf.c:1610 ../src/readelf.c:1700 ../src/readelf.c:1713 +#: ../src/readelf.c:1732 ../src/readelf.c:1745 +msgid "" +msgstr "" + +#: ../src/readelf.c:1569 ../src/readelf.c:1701 ../src/objdump.c:379 +msgid "INVALID SYMBOL" +msgstr "" + +#: ../src/readelf.c:1599 ../src/readelf.c:1733 ../src/objdump.c:394 +msgid "INVALID SECTION" +msgstr "" + +#: ../src/readelf.c:1673 +msgid " Offset Type Value Addend Name\n" +msgstr "" + +#: ../src/readelf.c:1675 +msgid " Offset Type Value Addend Name\n" +msgstr "" + +#: ../src/readelf.c:1834 +#, c-format +msgid "" +"\n" +"Symbol table [%2u] '%s' contains %u entry:\n" +"\n" +"Symbol table [%2u] '%s' contains %u entries:\n" +msgstr "" + +#: ../src/readelf.c:1840 +#, c-format +msgid " %lu local symbol String table: [%2u] '%s'\n" +msgstr "" + +#: ../src/readelf.c:1850 +msgid " Num: Value Size Type Bind Vis Ndx Name\n" +msgstr "" + +#: ../src/readelf.c:1852 +msgid " Num: Value Size Type Bind Vis Ndx Name\n" +msgstr "" + +#: ../src/readelf.c:1872 +#, c-format +msgid "%5u: %0* %6 %-7s %-6s %-9s %6s %s" +msgstr "" + +#: ../src/readelf.c:1960 +#, c-format +msgid "bad dynamic symbol" +msgstr "" + +#: ../src/readelf.c:2042 +msgid "none" +msgstr "" + +#: ../src/readelf.c:2059 +msgid "| " +msgstr "" + +#: ../src/readelf.c:2084 +#, c-format +msgid "" +"\n" +"Version needs section [%2u] '%s' contains %d entry:\n" +" Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" +"\n" +"Version needs section [%2u] '%s' contains %d entries:\n" +" Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" +msgstr "" + +#: ../src/readelf.c:2107 +#, c-format +msgid " %#06x: Version: %hu File: %s Cnt: %hu\n" +msgstr "" + +#: ../src/readelf.c:2120 +#, c-format +msgid " %#06x: Name: %s Flags: %s Version: %hu\n" +msgstr "" + +#: ../src/readelf.c:2151 +#, c-format +msgid "" +"\n" +"Version definition section [%2u] '%s' contains %d entry:\n" +" Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" +"\n" +"Version definition section [%2u] '%s' contains %d entries:\n" +" Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" +msgstr "" + +#: ../src/readelf.c:2181 +#, c-format +msgid " %#06x: Version: %hd Flags: %s Index: %hd Cnt: %hd Name: %s\n" +msgstr "" + +#: ../src/readelf.c:2196 +#, c-format +msgid " %#06x: Parent %d: %s\n" +msgstr "" + +#: ../src/readelf.c:2428 +#, c-format +msgid "" +"\n" +"Version symbols section [%2u] '%s' contains %d entry:\n" +" Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'" +"\n" +"Version symbols section [%2u] '%s' contains %d entries:\n" +" Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'" +msgstr "" + +#: ../src/readelf.c:2458 +msgid " 0 *local* " +msgstr "" + +#: ../src/readelf.c:2463 +msgid " 1 *global* " +msgstr "" + +#: ../src/readelf.c:2494 +#, c-format +msgid "" +"\n" +"Histogram for bucket list length in section [%2u] '%s' (total of %d " +"bucket):\n" +" Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" +"\n" +"Histogram for bucket list length in section [%2u] '%s' (total of %d " +"buckets):\n" +" Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" +msgstr "" + +#: ../src/readelf.c:2517 +#, c-format +msgid " Length Number % of total Coverage\n" +msgstr "" + +#: ../src/readelf.c:2519 +#, c-format +msgid " 0 %6 %5.1f%%\n" +msgstr "" + +#: ../src/readelf.c:2526 +#, c-format +msgid "%7d %6 %5.1f%% %5.1f%%\n" +msgstr "" + +#: ../src/readelf.c:2539 +#, c-format +msgid "" +" Average number of tests: successful lookup: %f\n" +" unsuccessful lookup: %f\n" +msgstr "" + +#: ../src/readelf.c:2557 ../src/readelf.c:2599 ../src/readelf.c:2640 +#, c-format +msgid "cannot get data for section %d: %s" +msgstr "" + +#: ../src/readelf.c:2694 +#, c-format +msgid "" +" Symbol Bias: %u\n" +" Bitmask Size: %zu bytes %%% bits set 2nd hash shift: %u\n" +msgstr "" + +#: ../src/readelf.c:2768 +#, c-format +msgid "" +"\n" +"Library list section [%2zu] '%s' at offset %#0 contains %d entry:\n" +"\n" +"Library list section [%2zu] '%s' at offset %#0 contains %d entries:\n" +msgstr "" + +#: ../src/readelf.c:2782 +msgid "" +" Library Time Stamp Checksum Version " +"Flags" +msgstr "" + +#: ../src/readelf.c:2830 +#, c-format +msgid "" +"\n" +"Object attributes section [%2zu] '%s' of % bytes at offset %" +"#0:\n" +msgstr "" + +#: ../src/readelf.c:2846 +msgid " Owner Size\n" +msgstr "" + +#: ../src/readelf.c:2872 +#, c-format +msgid " %-13s %4\n" +msgstr "" + +#: ../src/readelf.c:2903 +#, c-format +msgid " %-4u %12\n" +msgstr "" + +#. Tag_File +#: ../src/readelf.c:2908 +#, c-format +msgid " File: %11\n" +msgstr "" + +#: ../src/readelf.c:2943 +#, c-format +msgid " %s: %, %s\n" +msgstr "" + +#: ../src/readelf.c:2946 +#, c-format +msgid " %s: %\n" +msgstr "" + +#: ../src/readelf.c:2949 +#, c-format +msgid " %s: %s\n" +msgstr "" + +#: ../src/readelf.c:2956 +#, c-format +msgid " %u: %\n" +msgstr "" + +#: ../src/readelf.c:2959 +#, c-format +msgid " %u: %s\n" +msgstr "" + +#: ../src/readelf.c:2994 +#, c-format +msgid "%s+%# <%s+%#>" +msgstr "" + +#: ../src/readelf.c:2997 +#, c-format +msgid "%s+%#0* <%s+%#>" +msgstr "" + +#: ../src/readelf.c:3002 +#, c-format +msgid "%# <%s+%#>" +msgstr "" + +#: ../src/readelf.c:3005 +#, c-format +msgid "%#0* <%s+%#>" +msgstr "" + +#: ../src/readelf.c:3011 +#, c-format +msgid "%s+%# <%s>" +msgstr "" + +#: ../src/readelf.c:3014 +#, c-format +msgid "%s+%#0* <%s>" +msgstr "" + +#: ../src/readelf.c:3018 +#, c-format +msgid "%# <%s>" +msgstr "" + +#: ../src/readelf.c:3021 +#, c-format +msgid "%#0* <%s>" +msgstr "" + +#: ../src/readelf.c:3026 +#, c-format +msgid "%s+%#" +msgstr "" + +#: ../src/readelf.c:3029 +#, c-format +msgid "%s+%#0*" +msgstr "" + +#: ../src/readelf.c:3137 +#, c-format +msgid "unknown tag %hx" +msgstr "" + +#: ../src/readelf.c:3139 +#, c-format +msgid "unknown user tag %hx" +msgstr "" + +#: ../src/readelf.c:3349 +#, c-format +msgid "unknown attribute %hx" +msgstr "" + +#: ../src/readelf.c:3352 +#, c-format +msgid "unknown user attribute %hx" +msgstr "" + +#: ../src/readelf.c:3398 +#, c-format +msgid "unknown form %" +msgstr "" + +#: ../src/readelf.c:4014 +#, c-format +msgid "%*s[%4] %s \n" +msgstr "" + +#: ../src/readelf.c:4027 +#, c-format +msgid "" +"\n" +"DWARF section [%2zu] '%s' at offset %#:\n" +" [ Code]\n" +msgstr "" + +#: ../src/readelf.c:4034 +#, c-format +msgid "" +"\n" +"Abbreviation section at offset %:\n" +msgstr "" + +#: ../src/readelf.c:4047 +#, c-format +msgid " *** error while reading abbreviation: %s\n" +msgstr "" + +#: ../src/readelf.c:4063 +#, c-format +msgid " [%5u] offset: %, children: %s, tag: %s\n" +msgstr "" + +#: ../src/readelf.c:4066 +msgid "yes" +msgstr "" + +#: ../src/readelf.c:4066 +msgid "no" +msgstr "" + +#: ../src/readelf.c:4102 +#, c-format +msgid "cannot get .debug_aranges content: %s" +msgstr "" + +#: ../src/readelf.c:4107 +#, c-format +msgid "" +"\n" +"DWARF section [%2zu] '%s' at offset %# contains %zu entry:\n" +"\n" +"DWARF section [%2zu] '%s' at offset %# contains %zu entries:\n" +msgstr "" + +#: ../src/readelf.c:4137 +#, c-format +msgid " [%*zu] ???\n" +msgstr "" + +#: ../src/readelf.c:4139 +#, c-format +msgid "" +" [%*zu] start: %0#*, length: %5, CU DIE offset: %6\n" +msgstr "" + +#: ../src/readelf.c:4158 +#, c-format +msgid "cannot get .debug_ranges content: %s" +msgstr "" + +#: ../src/readelf.c:4163 ../src/readelf.c:4620 ../src/readelf.c:5265 +#: ../src/readelf.c:5710 ../src/readelf.c:5805 ../src/readelf.c:5977 +#, c-format +msgid "" +"\n" +"DWARF section [%2zu] '%s' at offset %#:\n" +msgstr "" + +#: ../src/readelf.c:4177 ../src/readelf.c:5724 +#, c-format +msgid " [%6tx] \n" +msgstr "" + +#: ../src/readelf.c:4199 ../src/readelf.c:5746 +#, c-format +msgid " [%6tx] base address %s\n" +msgstr "" + +#. We have an address range entry. +#. First address range entry in a list. +#: ../src/readelf.c:4210 +#, c-format +msgid " [%6tx] %s..%s\n" +msgstr "" + +#: ../src/readelf.c:4212 +#, c-format +msgid " %s..%s\n" +msgstr "" + +#: ../src/readelf.c:4609 ../src/readelf.c:6043 ../src/readelf.c:6145 +#, c-format +msgid "cannot get %s content: %s" +msgstr "" + +#: ../src/readelf.c:4616 +#, c-format +msgid "" +"\n" +"Call frame information section [%2zu] '%s' at offset %#:\n" +msgstr "" + +#: ../src/readelf.c:4643 ../src/readelf.c:5299 +#, c-format +msgid "invalid data in section [%zu] '%s'" +msgstr "" + +#: ../src/readelf.c:4665 +#, c-format +msgid "" +"\n" +" [%6tx] Zero terminator\n" +msgstr "" + +#: ../src/readelf.c:4739 +msgid "FDE address encoding: " +msgstr "" + +#: ../src/readelf.c:4745 +msgid "LSDA pointer encoding: " +msgstr "" + +#: ../src/readelf.c:4790 +#, c-format +msgid "invalid augmentation encoding" +msgstr "" + +#: ../src/readelf.c:4861 +#, c-format +msgid " (offset: %#)" +msgstr "" + +#: ../src/readelf.c:4868 +#, c-format +msgid " (end offset: %#)" +msgstr "" + +#: ../src/readelf.c:4895 +#, c-format +msgid " %-26sLSDA pointer: %#\n" +msgstr "" + +#: ../src/readelf.c:4941 +#, c-format +msgid "cannot get attribute code: %s" +msgstr "" + +#: ../src/readelf.c:4949 +#, c-format +msgid "cannot get attribute form: %s" +msgstr "" + +#: ../src/readelf.c:4962 +#, c-format +msgid "cannot get attribute value: %s" +msgstr "" + +#: ../src/readelf.c:5144 +#, c-format +msgid "" +"\n" +"DWARF section [%2zu] '%s' at offset %#:\n" +" [Offset]\n" +msgstr "" + +#: ../src/readelf.c:5169 +#, c-format +msgid "" +" Compilation unit at offset %:\n" +" Version: %, Abbreviation section offset: %, Address size: %" +", Offset size: %\n" +msgstr "" + +#: ../src/readelf.c:5187 +#, c-format +msgid "cannot get DIE at offset % in section '%s': %s" +msgstr "" + +#: ../src/readelf.c:5198 +#, c-format +msgid "cannot get DIE offset: %s" +msgstr "" + +#: ../src/readelf.c:5206 +#, c-format +msgid "cannot get tag of DIE at offset % in section '%s': %s" +msgstr "" + +#: ../src/readelf.c:5235 +#, c-format +msgid "cannot get next DIE: %s\n" +msgstr "" + +#: ../src/readelf.c:5242 +#, c-format +msgid "cannot get next DIE: %s" +msgstr "" + +#: ../src/readelf.c:5277 +#, c-format +msgid "cannot get line data section data: %s" +msgstr "" + +#: ../src/readelf.c:5290 +#, c-format +msgid "" +"\n" +"Table at offset %Zu:\n" +msgstr "" + +#. Print what we got so far. +#: ../src/readelf.c:5342 +#, c-format +msgid "" +"\n" +" Length: %\n" +" DWARF version: %\n" +" Prologue length: %\n" +" Minimum instruction length: %\n" +" Initial value if '%s': %\n" +" Line base: %\n" +" Line range: %\n" +" Opcode base: %\n" +"\n" +"Opcodes:\n" +msgstr "" + +#: ../src/readelf.c:5361 +#, c-format +msgid "invalid data at offset %tu in section [%zu] '%s'" +msgstr "" + +#: ../src/readelf.c:5376 +#, c-format +msgid " [%*] %hhu argument\n" +msgstr "" + +#: ../src/readelf.c:5384 +msgid "" +"\n" +"Directory table:" +msgstr "" + +#: ../src/readelf.c:5400 +msgid "" +"\n" +"File name table:\n" +" Entry Dir Time Size Name" +msgstr "" + +#: ../src/readelf.c:5429 +msgid "" +"\n" +"Line number statements:" +msgstr "" + +#: ../src/readelf.c:5490 +#, c-format +msgid " special opcode %u: address+%u = %s, line%+d = %zu\n" +msgstr "" + +#: ../src/readelf.c:5510 +#, c-format +msgid " extended opcode %u: " +msgstr "" + +#: ../src/readelf.c:5515 +msgid "end of sequence" +msgstr "" + +#: ../src/readelf.c:5530 +#, c-format +msgid "set address to %s\n" +msgstr "" + +#: ../src/readelf.c:5551 +#, c-format +msgid "define new file: dir=%u, mtime=%, length=%, name=%s\n" +msgstr "" + +#. Unknown, ignore it. +#: ../src/readelf.c:5560 +msgid "unknown opcode" +msgstr "" + +#. Takes no argument. +#: ../src/readelf.c:5572 +msgid " copy" +msgstr "" + +#: ../src/readelf.c:5582 +#, c-format +msgid "advance address by %u to %s\n" +msgstr "" + +#: ../src/readelf.c:5593 +#, c-format +msgid " advance line by constant %d to %\n" +msgstr "" + +#: ../src/readelf.c:5601 +#, c-format +msgid " set file to %\n" +msgstr "" + +#: ../src/readelf.c:5611 +#, c-format +msgid " set column to %\n" +msgstr "" + +#: ../src/readelf.c:5618 +#, c-format +msgid " set '%s' to %\n" +msgstr "" + +#. Takes no argument. +#: ../src/readelf.c:5624 +msgid " set basic block flag" +msgstr "" + +#: ../src/readelf.c:5634 +#, c-format +msgid "advance address by constant %u to %s\n" +msgstr "" + +#: ../src/readelf.c:5650 +#, c-format +msgid "advance address by fixed value %u to %s\n" +msgstr "" + +#. Takes no argument. +#: ../src/readelf.c:5659 +msgid " set prologue end flag" +msgstr "" + +#. Takes no argument. +#: ../src/readelf.c:5664 +msgid " set epilogue begin flag" +msgstr "" + +#. This is a new opcode the generator but not we know about. +#. Read the parameters associated with it but then discard +#. everything. Read all the parameters for this opcode. +#: ../src/readelf.c:5673 +#, c-format +msgid " unknown opcode with % parameter:" +msgstr "" + +#: ../src/readelf.c:5705 +#, c-format +msgid "cannot get .debug_loc content: %s" +msgstr "" + +#. First entry in a list. +#: ../src/readelf.c:5760 +#, c-format +msgid " [%6tx] %s..%s" +msgstr "" + +#: ../src/readelf.c:5762 +#, c-format +msgid " %s..%s" +msgstr "" + +#: ../src/readelf.c:5815 +#, c-format +msgid "cannot get macro information section data: %s" +msgstr "" + +#: ../src/readelf.c:5894 +#, c-format +msgid "%*s*** non-terminated string at end of section" +msgstr "" + +#: ../src/readelf.c:5962 +#, c-format +msgid " [%5d] DIE offset: %6, CU DIE offset: %6, name: %s\n" +msgstr "" + +#: ../src/readelf.c:6001 +#, c-format +msgid "" +"\n" +"DWARF section [%2zu] '%s' at offset %#:\n" +" %*s String\n" +msgstr "" + +#: ../src/readelf.c:6015 +#, c-format +msgid " *** error while reading strings: %s\n" +msgstr "" + +#: ../src/readelf.c:6035 +#, c-format +msgid "" +"\n" +"Call frame search table section [%2zu] '.eh_frame_hdr':\n" +msgstr "" + +#: ../src/readelf.c:6137 +#, c-format +msgid "" +"\n" +"Exception handling table section [%2zu] '.gcc_except_table':\n" +msgstr "" + +#: ../src/readelf.c:6160 +#, c-format +msgid " LPStart encoding: %#x " +msgstr "" + +#: ../src/readelf.c:6172 +#, c-format +msgid " TType encoding: %#x " +msgstr "" + +#: ../src/readelf.c:6186 +#, c-format +msgid " Call site encoding: %#x " +msgstr "" + +#: ../src/readelf.c:6199 +msgid "" +"\n" +" Call site table:" +msgstr "" + +#: ../src/readelf.c:6213 +#, c-format +msgid "" +" [%4u] Call site start: %#\n" +" Call site length: %\n" +" Landing pad: %#\n" +" Action: %u\n" +msgstr "" + +#: ../src/readelf.c:6273 +#, c-format +msgid "invalid TType encoding" +msgstr "" + +#: ../src/readelf.c:6296 +#, c-format +msgid "cannot get debug context descriptor: %s" +msgstr "" + +#: ../src/readelf.c:6431 ../src/readelf.c:7009 +#, c-format +msgid "cannot convert core note data: %s" +msgstr "" + +#: ../src/readelf.c:6736 +#, c-format +msgid "" +"\n" +"%*s... ..." +msgstr "" + +#: ../src/readelf.c:6778 +#, c-format +msgid "unable to handle register number %d" +msgstr "" + +#: ../src/readelf.c:6925 ../src/readelf.c:6949 +#, c-format +msgid "cannot register info: %s" +msgstr "" + +#: ../src/readelf.c:7107 +msgid " Owner Data size Type\n" +msgstr "" + +#: ../src/readelf.c:7125 +#, c-format +msgid " %-13.*s %9 %s\n" +msgstr "" + +#: ../src/readelf.c:7156 +#, c-format +msgid "cannot get content of note section: %s" +msgstr "" + +#: ../src/readelf.c:7183 +#, c-format +msgid "" +"\n" +"Note section [%2zu] '%s' of % bytes at offset %#0:\n" +msgstr "" + +#: ../src/readelf.c:7206 +#, c-format +msgid "" +"\n" +"Note segment of % bytes at offset %#0:\n" +msgstr "" + +#: ../src/readelf.c:7252 +#, c-format +msgid "" +"\n" +"Section [%Zu] '%s' has no data to dump.\n" +msgstr "" + +#: ../src/readelf.c:7258 ../src/readelf.c:7280 +#, c-format +msgid "cannot get data for section [%Zu] '%s': %s" +msgstr "" + +#: ../src/readelf.c:7262 +#, c-format +msgid "" +"\n" +"Hex dump of section [%Zu] '%s', % bytes at offset %#0:\n" +msgstr "" + +#: ../src/readelf.c:7275 +#, c-format +msgid "" +"\n" +"Section [%Zu] '%s' is empty.\n" +msgstr "" + +#: ../src/readelf.c:7284 +#, c-format +msgid "" +"\n" +"String section [%Zu] '%s' contains % bytes at offset %#0:\n" +msgstr "" + +#: ../src/readelf.c:7331 +#, c-format +msgid "" +"\n" +"section [%lu] does not exist" +msgstr "" + +#: ../src/readelf.c:7357 +#, c-format +msgid "" +"\n" +"section '%s' does not exist" +msgstr "" + +#: ../src/readelf.c:7418 +#, c-format +msgid "cannot get symbol index of archive '%s': %s" +msgstr "" + +#: ../src/readelf.c:7421 +#, c-format +msgid "" +"\n" +"Archive '%s' has no symbol index\n" +msgstr "" + +#: ../src/readelf.c:7425 +#, c-format +msgid "" +"\n" +"Index of archive '%s' has %Zu entries:\n" +msgstr "" + +#: ../src/readelf.c:7443 +#, c-format +msgid "cannot extract member at offset %Zu in '%s': %s" +msgstr "" + +#: ../src/readelf.c:7448 +#, c-format +msgid "Archive member '%s' contains:\n" +msgstr "" + +#: ../src/size.c:68 +msgid "" +"Use the output format FORMAT. FORMAT can be `bsd' or `sysv'. The default " +"is `bsd'" +msgstr "" + +#: ../src/size.c:70 +msgid "Same as `--format=sysv'" +msgstr "" + +#: ../src/size.c:71 +msgid "Same as `--format=bsd'" +msgstr "" + +#: ../src/size.c:74 +msgid "Same as `--radix=10'" +msgstr "" + +#: ../src/size.c:75 +msgid "Same as `--radix=8'" +msgstr "" + +#: ../src/size.c:76 +msgid "Same as `--radix=16'" +msgstr "" + +#: ../src/size.c:78 +msgid "Similar to `--format=sysv' output but in one line" +msgstr "" + +#: ../src/size.c:82 +msgid "Print size and permission flags for loadable segments" +msgstr "" + +#: ../src/size.c:83 +msgid "Display the total sizes (bsd only)" +msgstr "" + +#. Short description of program. +#: ../src/size.c:88 +msgid "List section sizes of FILEs (a.out by default)." +msgstr "" + +#: ../src/size.c:269 +#, c-format +msgid "Invalid format: %s" +msgstr "" + +#: ../src/size.c:280 +#, c-format +msgid "Invalid radix: %s" +msgstr "" + +#: ../src/size.c:339 +#, c-format +msgid "%s: file format not recognized" +msgstr "" + +#: ../src/size.c:446 ../src/size.c:589 +#, c-format +msgid " (ex %s)" +msgstr "" + +#: ../src/size.c:614 +msgid "(TOTALS)\n" +msgstr "" + +#: ../src/strip.c:73 +msgid "Place stripped output into FILE" +msgstr "" + +#: ../src/strip.c:74 +msgid "Extract the removed sections into FILE" +msgstr "" + +#: ../src/strip.c:75 +msgid "Embed name FILE instead of -f argument" +msgstr "" + +#: ../src/strip.c:79 +msgid "Remove all debugging symbols" +msgstr "" + +#: ../src/strip.c:83 +msgid "Copy modified/access timestamps to the output" +msgstr "" + +#: ../src/strip.c:85 +msgid "Remove .comment section" +msgstr "" + +#: ../src/strip.c:88 +msgid "Relax a few rules to handle slightly broken ELF files" +msgstr "" + +#. Short description of program. +#: ../src/strip.c:93 +msgid "Discard symbols from object files." +msgstr "" + +#: ../src/strip.c:185 +#, c-format +msgid "Only one input file allowed together with '-o' and '-f'" +msgstr "" + +#: ../src/strip.c:221 +#, c-format +msgid "-f option specified twice" +msgstr "" + +#: ../src/strip.c:230 +#, c-format +msgid "-F option specified twice" +msgstr "" + +#: ../src/strip.c:239 ../src/unstrip.c:124 +#, c-format +msgid "-o option specified twice" +msgstr "" + +#: ../src/strip.c:259 +#, c-format +msgid "-R option supports only .comment section" +msgstr "" + +#: ../src/strip.c:297 ../src/strip.c:321 +#, c-format +msgid "cannot stat input file '%s'" +msgstr "" + +#: ../src/strip.c:311 +#, c-format +msgid "while opening '%s'" +msgstr "" + +#: ../src/strip.c:349 +#, c-format +msgid "%s: cannot use -o or -f when stripping archive" +msgstr "" + +#: ../src/strip.c:447 +#, c-format +msgid "cannot open EBL backend" +msgstr "" + +#: ../src/strip.c:497 ../src/strip.c:521 +#, c-format +msgid "cannot create new file '%s': %s" +msgstr "" + +#: ../src/strip.c:581 +#, c-format +msgid "illformed file '%s'" +msgstr "" + +#: ../src/strip.c:867 ../src/strip.c:954 +#, c-format +msgid "while generating output file: %s" +msgstr "" + +#: ../src/strip.c:927 ../src/strip.c:1666 +#, c-format +msgid "%s: error while creating ELF header: %s" +msgstr "" + +#: ../src/strip.c:941 +#, c-format +msgid "while preparing output for '%s'" +msgstr "" + +#: ../src/strip.c:992 ../src/strip.c:1048 +#, c-format +msgid "while create section header section: %s" +msgstr "" + +#: ../src/strip.c:998 +#, c-format +msgid "cannot allocate section data: %s" +msgstr "" + +#: ../src/strip.c:1057 +#, c-format +msgid "while create section header string table: %s" +msgstr "" + +#: ../src/strip.c:1591 ../src/strip.c:1688 +#, c-format +msgid "while writing '%s': %s" +msgstr "" + +#: ../src/strip.c:1602 +#, c-format +msgid "while creating '%s'" +msgstr "" + +#: ../src/strip.c:1614 +#, c-format +msgid "while computing checksum for debug information" +msgstr "" + +#: ../src/strip.c:1674 +#, c-format +msgid "%s: error while reading the file: %s" +msgstr "" + +#: ../src/strip.c:1720 ../src/strip.c:1727 +#, c-format +msgid "error while finishing '%s': %s" +msgstr "" + +#: ../src/strip.c:1750 ../src/strip.c:1807 +#, c-format +msgid "cannot set access and modification date of '%s'" +msgstr "" + +#: ../src/ld.c:87 +msgid "Input File Control:" +msgstr "" + +#: ../src/ld.c:89 +msgid "Include whole archives in the output from now on." +msgstr "" + +#: ../src/ld.c:91 +msgid "Stop including the whole arhives in the output." +msgstr "" + +#: ../src/ld.c:92 ../src/ld.c:106 ../src/ld.c:184 +msgid "FILE" +msgstr "" + +#: ../src/ld.c:93 +msgid "Start a group." +msgstr "" + +#: ../src/ld.c:94 +msgid "End a group." +msgstr "" + +#: ../src/ld.c:95 +msgid "PATH" +msgstr "" + +#: ../src/ld.c:96 +msgid "Add PATH to list of directories files are searched in." +msgstr "" + +#: ../src/ld.c:98 +msgid "Only set DT_NEEDED for following dynamic libs if actually used" +msgstr "" + +#: ../src/ld.c:100 +msgid "Always set DT_NEEDED for following dynamic libs" +msgstr "" + +#: ../src/ld.c:102 +msgid "Ignore LD_LIBRARY_PATH environment variable." +msgstr "" + +#: ../src/ld.c:105 +msgid "Output File Control:" +msgstr "" + +#: ../src/ld.c:106 +msgid "Place output in FILE." +msgstr "" + +#: ../src/ld.c:109 +msgid "Object is marked to not use default search path at runtime." +msgstr "" + +#: ../src/ld.c:111 +msgid "Same as --whole-archive." +msgstr "" + +#: ../src/ld.c:112 +msgid "" +"Default rules of extracting from archive; weak references are not enough." +msgstr "" + +#: ../src/ld.c:116 +msgid "Weak references cause extraction from archive." +msgstr "" + +#: ../src/ld.c:118 +msgid "Allow multiple definitions; first is used." +msgstr "" + +#: ../src/ld.c:120 +msgid "Disallow/allow undefined symbols in DSOs." +msgstr "" + +#: ../src/ld.c:123 +msgid "Object requires immediate handling of $ORIGIN." +msgstr "" + +#: ../src/ld.c:125 +msgid "Relocation will not be processed lazily." +msgstr "" + +#: ../src/ld.c:127 +msgid "Object cannot be unloaded at runtime." +msgstr "" + +#: ../src/ld.c:129 +msgid "Mark object to be initialized first." +msgstr "" + +#: ../src/ld.c:131 +msgid "Enable/disable lazy-loading flag for following dependencies." +msgstr "" + +#: ../src/ld.c:133 +msgid "Mark object as not loadable with 'dlopen'." +msgstr "" + +#: ../src/ld.c:135 +msgid "Ignore/record dependencies on unused DSOs." +msgstr "" + +#: ../src/ld.c:137 +msgid "Generated DSO will be a system library." +msgstr "" + +#: ../src/ld.c:138 +msgid "ADDRESS" +msgstr "" + +#: ../src/ld.c:138 +msgid "Set entry point address." +msgstr "" + +#: ../src/ld.c:141 +msgid "Do not link against shared libraries." +msgstr "" + +#: ../src/ld.c:144 +msgid "Prefer linking against shared libraries." +msgstr "" + +#: ../src/ld.c:145 +msgid "Export all dynamic symbols." +msgstr "" + +#: ../src/ld.c:146 +msgid "Strip all symbols." +msgstr "" + +#: ../src/ld.c:147 +msgid "Strip debugging symbols." +msgstr "" + +#: ../src/ld.c:149 +msgid "Assume pagesize for the target system to be SIZE." +msgstr "" + +#: ../src/ld.c:151 +msgid "Set runtime DSO search path." +msgstr "" + +#: ../src/ld.c:154 +msgid "Set link time DSO search path." +msgstr "" + +#: ../src/ld.c:155 +msgid "Generate dynamic shared object." +msgstr "" + +#: ../src/ld.c:156 +msgid "Generate relocatable object." +msgstr "" + +#: ../src/ld.c:159 +msgid "Causes symbol not assigned to a version be reduced to local." +msgstr "" + +#: ../src/ld.c:160 +msgid "Remove unused sections." +msgstr "" + +#: ../src/ld.c:163 +msgid "Don't remove unused sections." +msgstr "" + +#: ../src/ld.c:164 +msgid "Set soname of shared object." +msgstr "" + +#: ../src/ld.c:165 +msgid "Set the dynamic linker name." +msgstr "" + +#: ../src/ld.c:168 +msgid "Add/suppress addition indentifying link-editor to .comment section." +msgstr "" + +#: ../src/ld.c:171 +msgid "Create .eh_frame_hdr section" +msgstr "" + +#: ../src/ld.c:173 +msgid "Set hash style to sysv, gnu or both." +msgstr "" + +#: ../src/ld.c:175 +msgid "Generate build ID note (md5, sha1 (default), uuid)." +msgstr "" + +#: ../src/ld.c:177 +msgid "Linker Operation Control:" +msgstr "" + +#: ../src/ld.c:178 +msgid "Verbose messages." +msgstr "" + +#: ../src/ld.c:179 +msgid "Trace file opens." +msgstr "" + +#: ../src/ld.c:181 +msgid "Trade speed for less memory usage" +msgstr "" + +#: ../src/ld.c:182 +msgid "LEVEL" +msgstr "" + +#: ../src/ld.c:183 +msgid "Set optimization level to LEVEL." +msgstr "" + +#: ../src/ld.c:184 +msgid "Use linker script in FILE." +msgstr "" + +#: ../src/ld.c:187 +msgid "Select to get parser debug information" +msgstr "" + +#: ../src/ld.c:190 +msgid "Read version information from FILE." +msgstr "" + +#: ../src/ld.c:191 +msgid "Set emulation to NAME." +msgstr "" + +#. Short description of program. +#: ../src/ld.c:197 +msgid "Combine object and archive files." +msgstr "" + +#. Strings for arguments in help texts. +#: ../src/ld.c:200 +msgid "[FILE]..." +msgstr "" + +#: ../src/ld.c:333 +#, c-format +msgid "At least one input file needed" +msgstr "" + +#: ../src/ld.c:349 +#, c-format +msgid "error while preparing linking" +msgstr "" + +#: ../src/ld.c:356 +#, c-format +msgid "cannot open linker script '%s'" +msgstr "" + +#: ../src/ld.c:397 +#, c-format +msgid "-( without matching -)" +msgstr "" + +#: ../src/ld.c:572 ../src/ld.c:610 +#, c-format +msgid "only one option of -G and -r is allowed" +msgstr "" + +#: ../src/ld.c:594 +#, c-format +msgid "more than one '-m' parameter" +msgstr "" + +#: ../src/ld.c:604 ../src/ld.c:1013 +#, c-format +msgid "unknown option `-%c %s'" +msgstr "" + +#: ../src/ld.c:646 +#, c-format +msgid "invalid page size value '%s': ignored" +msgstr "" + +#: ../src/ld.c:687 +#, c-format +msgid "invalid hash style '%s'" +msgstr "" + +#: ../src/ld.c:697 +#, c-format +msgid "invalid build-ID style '%s'" +msgstr "" + +#: ../src/ld.c:785 +#, c-format +msgid "More than one output file name given." +msgstr "" + +#: ../src/ld.c:802 +#, c-format +msgid "Invalid optimization level `%s'" +msgstr "" + +#: ../src/ld.c:850 +#, c-format +msgid "nested -( -) groups are not allowed" +msgstr "" + +#: ../src/ld.c:869 +#, c-format +msgid "-) without matching -(" +msgstr "" + +#: ../src/ld.c:1046 +#, c-format +msgid "unknown option '-%c %s'" +msgstr "" + +#: ../src/ld.c:1150 +#, c-format +msgid "could not find input file to determine output file format" +msgstr "" + +#: ../src/ld.c:1152 +#, c-format +msgid "try again with an appropriate '-m' parameter" +msgstr "" + +#: ../src/ld.c:1446 +#, c-format +msgid "cannot read version script '%s'" +msgstr "" + +#. The symbol is already defined and now again +#. in the linker script. This is an error. +#: ../src/ld.c:1512 ../src/ld.c:1551 +#, c-format +msgid "duplicate definition of '%s' in linker script" +msgstr "" + +#: ../src/ldgeneric.c:209 ../src/ldgeneric.c:5151 +#, c-format +msgid "cannot create string table" +msgstr "" + +#: ../src/ldgeneric.c:255 +#, c-format +msgid "cannot load ld backend library '%s': %s" +msgstr "" + +#: ../src/ldgeneric.c:265 +#, c-format +msgid "cannot find init function in ld backend library '%s': %s" +msgstr "" + +#: ../src/ldgeneric.c:310 +#, c-format +msgid "%s listed more than once as input" +msgstr "" + +#: ../src/ldgeneric.c:424 +#, c-format +msgid "%s (for -l%s)\n" +msgstr "" + +#: ../src/ldgeneric.c:425 +#, c-format +msgid "%s (for DT_NEEDED %s)\n" +msgstr "" + +#: ../src/ldgeneric.c:573 +#, c-format +msgid "Warning: type of `%s' changed from %s in %s to %s in %s" +msgstr "" + +#: ../src/ldgeneric.c:586 +#, c-format +msgid "Warning: size of `%s' changed from % in %s to % in %s" +msgstr "" + +#: ../src/ldgeneric.c:677 +#, c-format +msgid "(%s+%#): multiple definition of %s `%s'\n" +msgstr "" + +#: ../src/ldgeneric.c:700 +#, c-format +msgid "(%s+%#): first defined here\n" +msgstr "" + +#: ../src/ldgeneric.c:819 +#, c-format +msgid "%s: cannot get section group data: %s" +msgstr "" + +#. If we come here no section group contained the given section +#. despite the SHF_GROUP flag. This is an error in the input +#. file. +#: ../src/ldgeneric.c:840 +#, c-format +msgid "%s: section '%s' with group flag set does not belong to any group" +msgstr "" + +#: ../src/ldgeneric.c:885 +#, c-format +msgid "%s: section [%2d] '%s' is not in the correct section group" +msgstr "" + +#. This should never happen. +#: ../src/ldgeneric.c:1156 ../src/ldgeneric.c:1413 ../src/ldgeneric.c:1422 +#: ../src/ldgeneric.c:1481 ../src/ldgeneric.c:1490 ../src/ldgeneric.c:1753 +#: ../src/ldgeneric.c:2005 +#, c-format +msgid "%s: invalid ELF file (%s:%d)\n" +msgstr "" + +#: ../src/ldgeneric.c:1250 +#, c-format +msgid "%s: only files of type ET_REL might contain section groups" +msgstr "" + +#: ../src/ldgeneric.c:1302 +#, c-format +msgid "%s: cannot determine signature of section group [%2zd] '%s': %s" +msgstr "" + +#: ../src/ldgeneric.c:1314 +#, c-format +msgid "%s: cannot get content of section group [%2zd] '%s': %s'" +msgstr "" + +#: ../src/ldgeneric.c:1328 +#, c-format +msgid "" +"%s: group member %zu of section group [%2zd] '%s' has too high index: %" +"" +msgstr "" + +#: ../src/ldgeneric.c:1350 +#, c-format +msgid "%s: section '%s' has unknown type: %d" +msgstr "" + +#: ../src/ldgeneric.c:1729 +#, c-format +msgid "cannot get descriptor for ELF file (%s:%d): %s\n" +msgstr "" + +#: ../src/ldgeneric.c:1899 +#, c-format +msgid "cannot read archive `%s': %s" +msgstr "" + +#: ../src/ldgeneric.c:2020 +#, c-format +msgid "file of type %s cannot be linked in\n" +msgstr "" + +#: ../src/ldgeneric.c:2032 +#, c-format +msgid "%s: input file incompatible with ELF machine type %s\n" +msgstr "" + +#: ../src/ldgeneric.c:2044 +#, c-format +msgid "%s: cannot get section header string table index: %s\n" +msgstr "" + +#: ../src/ldgeneric.c:2073 +#, c-format +msgid "cannot use DSO '%s' when generating relocatable object file" +msgstr "" + +#: ../src/ldgeneric.c:2158 +#, c-format +msgid "input file '%s' ignored" +msgstr "" + +#. XXX The error message should get better. It should use +#. the debugging information if present to tell where in the +#. sources the undefined reference is. +#: ../src/ldgeneric.c:2372 +#, c-format +msgid "undefined symbol `%s' in %s" +msgstr "" + +#: ../src/ldgeneric.c:2702 +#, c-format +msgid "cannot create ELF descriptor for output file: %s" +msgstr "" + +#: ../src/ldgeneric.c:2709 +#, c-format +msgid "could not create ELF header for output file: %s" +msgstr "" + +#: ../src/ldgeneric.c:3224 ../src/ldgeneric.c:3294 ../src/ldgeneric.c:3330 +#: ../src/ldgeneric.c:4457 ../src/ldgeneric.c:4506 ../src/ldgeneric.c:4538 +#: ../src/ldgeneric.c:4773 ../src/ldgeneric.c:4828 ../src/ldgeneric.c:5075 +#: ../src/ldgeneric.c:5131 ../src/ldgeneric.c:5600 ../src/ldgeneric.c:5612 +#, c-format +msgid "cannot create section for output file: %s" +msgstr "" + +#: ../src/ldgeneric.c:3444 +#, c-format +msgid "address computation expression contains variable '%s'" +msgstr "" + +#: ../src/ldgeneric.c:3489 +#, c-format +msgid "" +"argument '%' of ALIGN in address computation expression is no power " +"of two" +msgstr "" + +#: ../src/ldgeneric.c:3684 +#, c-format +msgid "cannot find entry symbol '%s': defaulting to %#0*" +msgstr "" + +#: ../src/ldgeneric.c:3690 +#, c-format +msgid "no entry symbol specified: defaulting to %#0*" +msgstr "" + +#: ../src/ldgeneric.c:3920 +#, c-format +msgid "cannot create GNU hash table section for output file: %s" +msgstr "" + +#: ../src/ldgeneric.c:4071 +#, c-format +msgid "cannot create hash table section for output file: %s" +msgstr "" + +#: ../src/ldgeneric.c:4114 +#, c-format +msgid "cannot create build ID section: %s" +msgstr "" + +#: ../src/ldgeneric.c:4191 +#, c-format +msgid "cannot convert section data to file format: %s" +msgstr "" + +#: ../src/ldgeneric.c:4200 +#, c-format +msgid "cannot convert section data to memory format: %s" +msgstr "" + +#: ../src/ldgeneric.c:4261 +#, c-format +msgid "cannot read enough data for UUID" +msgstr "" + +#: ../src/ldgeneric.c:4358 ../src/ldgeneric.c:4379 ../src/ldgeneric.c:4408 +#: ../src/ldgeneric.c:6062 +#, c-format +msgid "cannot create symbol table for output file: %s" +msgstr "" + +#: ../src/ldgeneric.c:5300 ../src/ldgeneric.c:5852 +#, c-format +msgid "section index too large in dynamic symbol table" +msgstr "" + +#: ../src/ldgeneric.c:5745 +#, c-format +msgid "cannot create versioning section: %s" +msgstr "" + +#: ../src/ldgeneric.c:5818 +#, c-format +msgid "cannot create dynamic symbol table for output file: %s" +msgstr "" + +#: ../src/ldgeneric.c:5994 +#, c-format +msgid "cannot create versioning data: %s" +msgstr "" + +#: ../src/ldgeneric.c:6094 ../src/ldgeneric.c:6107 ../src/ldgeneric.c:6171 +#: ../src/ldgeneric.c:6179 +#, c-format +msgid "cannot create section header string section: %s" +msgstr "" + +#: ../src/ldgeneric.c:6101 +#, c-format +msgid "cannot create section header string section" +msgstr "" + +#: ../src/ldgeneric.c:6259 +#, c-format +msgid "cannot create program header: %s" +msgstr "" + +#: ../src/ldgeneric.c:6267 +#, c-format +msgid "while determining file layout: %s" +msgstr "" + +#: ../src/ldgeneric.c:6388 +#, c-format +msgid "internal error: non-nobits section follows nobits section" +msgstr "" + +#: ../src/ldgeneric.c:6925 +#, c-format +msgid "cannot get header of 0th section: %s" +msgstr "" + +#: ../src/ldgeneric.c:6941 ../src/unstrip.c:1807 +#, c-format +msgid "cannot update ELF header: %s" +msgstr "" + +#: ../src/ldgeneric.c:6972 +#, c-format +msgid "linker backend didn't specify function to relocate section" +msgstr "" + +#: ../src/ldgeneric.c:6984 +#, c-format +msgid "while writing output file: %s" +msgstr "" + +#: ../src/ldgeneric.c:6989 +#, c-format +msgid "while finishing output file: %s" +msgstr "" + +#: ../src/ldgeneric.c:6995 +#, c-format +msgid "cannot stat output file" +msgstr "" + +#: ../src/ldgeneric.c:7011 +#, c-format +msgid "WARNING: temporary output file overwritten before linking finished" +msgstr "" + +#. This cannot be implemented generally. There should have been a +#. machine dependent implementation and we should never have arrived +#. here. +#: ../src/ldgeneric.c:7064 ../src/ldgeneric.c:7075 ../src/ldgeneric.c:7086 +#: ../src/ldgeneric.c:7097 ../src/ldgeneric.c:7116 ../src/ldgeneric.c:7129 +#: ../src/ldgeneric.c:7141 +#, c-format +msgid "no machine specific '%s' implementation" +msgstr "" + +#: ../src/i386_ld.c:210 +#, c-format +msgid "cannot allocate PLT section: %s" +msgstr "" + +#: ../src/i386_ld.c:232 +#, c-format +msgid "cannot allocate PLTREL section: %s" +msgstr "" + +#: ../src/i386_ld.c:253 +#, c-format +msgid "cannot allocate GOT section: %s" +msgstr "" + +#: ../src/i386_ld.c:274 +#, c-format +msgid "cannot allocate GOTPLT section: %s" +msgstr "" + +#: ../src/i386_ld.c:661 +#, c-format +msgid "initial-executable TLS relocation cannot be used " +msgstr "" + +#: ../src/ldscript.y:178 +msgid "mode for segment invalid\n" +msgstr "" + +#: ../src/ldscript.y:465 +#, c-format +msgid "while reading version script '%s': %s at line %d" +msgstr "" + +#: ../src/ldscript.y:466 +#, c-format +msgid "while reading linker script '%s': %s at line %d" +msgstr "" + +#: ../src/ldscript.y:745 +#, c-format +msgid "symbol '%s' in declared both local and global for unnamed version" +msgstr "" + +#: ../src/ldscript.y:747 +#, c-format +msgid "symbol '%s' in declared both local and global for version '%s'" +msgstr "" + +#: ../src/ldscript.y:767 ../src/ldscript.y:774 +#, c-format +msgid "default visibility set as local and global" +msgstr "" + +#: ../src/elflint.c:71 +msgid "Be extremely strict, flag level 2 features." +msgstr "" + +#: ../src/elflint.c:72 +msgid "Do not print anything if successful" +msgstr "" + +#: ../src/elflint.c:73 +msgid "Binary is a separate debuginfo file" +msgstr "" + +#: ../src/elflint.c:75 +msgid "" +"Binary has been created with GNU ld and is therefore known to be broken in " +"certain ways" +msgstr "" + +#. Short description of program. +#: ../src/elflint.c:81 +msgid "Pedantic checking of ELF files compliance with gABI/psABI spec." +msgstr "" + +#: ../src/elflint.c:165 +#, c-format +msgid "cannot generate Elf descriptor: %s\n" +msgstr "" + +#: ../src/elflint.c:184 +#, c-format +msgid "error while closing Elf descriptor: %s\n" +msgstr "" + +#: ../src/elflint.c:188 +msgid "No errors" +msgstr "" + +#: ../src/elflint.c:301 +#, c-format +msgid " error while freeing sub-ELF descriptor: %s\n" +msgstr "" + +#. We cannot do anything. +#: ../src/elflint.c:309 +#, c-format +msgid "Not an ELF file - it has the wrong magic bytes at the start\n" +msgstr "" + +#: ../src/elflint.c:368 +#, c-format +msgid "e_ident[%d] == %d is no known class\n" +msgstr "" + +#: ../src/elflint.c:373 +#, c-format +msgid "e_ident[%d] == %d is no known data encoding\n" +msgstr "" + +#: ../src/elflint.c:377 +#, c-format +msgid "unknown ELF header version number e_ident[%d] == %d\n" +msgstr "" + +#: ../src/elflint.c:382 +#, c-format +msgid "unsupported OS ABI e_ident[%d] == '%s'\n" +msgstr "" + +#: ../src/elflint.c:388 +#, c-format +msgid "unsupport ABI version e_ident[%d] == %d\n" +msgstr "" + +#: ../src/elflint.c:393 +#, c-format +msgid "e_ident[%zu] is not zero\n" +msgstr "" + +#: ../src/elflint.c:398 +#, c-format +msgid "unknown object file type %d\n" +msgstr "" + +#: ../src/elflint.c:405 +#, c-format +msgid "unknown machine type %d\n" +msgstr "" + +#: ../src/elflint.c:409 +#, c-format +msgid "unknown object file version\n" +msgstr "" + +#: ../src/elflint.c:415 +#, c-format +msgid "invalid program header offset\n" +msgstr "" + +#: ../src/elflint.c:417 +#, c-format +msgid "executables and DSOs cannot have zero program header offset\n" +msgstr "" + +#: ../src/elflint.c:421 +#, c-format +msgid "invalid number of program header entries\n" +msgstr "" + +#: ../src/elflint.c:429 +#, c-format +msgid "invalid section header table offset\n" +msgstr "" + +#: ../src/elflint.c:432 +#, c-format +msgid "section header table must be present\n" +msgstr "" + +#: ../src/elflint.c:446 +#, c-format +msgid "invalid number of section header table entries\n" +msgstr "" + +#: ../src/elflint.c:463 +#, c-format +msgid "invalid section header index\n" +msgstr "" + +#: ../src/elflint.c:468 +#, c-format +msgid "invalid machine flags: %s\n" +msgstr "" + +#: ../src/elflint.c:475 ../src/elflint.c:492 +#, c-format +msgid "invalid ELF header size: %hd\n" +msgstr "" + +#: ../src/elflint.c:478 ../src/elflint.c:495 +#, c-format +msgid "invalid program header size: %hd\n" +msgstr "" + +#: ../src/elflint.c:481 ../src/elflint.c:498 +#, c-format +msgid "invalid program header position or size\n" +msgstr "" + +#: ../src/elflint.c:484 ../src/elflint.c:501 +#, c-format +msgid "invalid section header size: %hd\n" +msgstr "" + +#: ../src/elflint.c:487 ../src/elflint.c:504 +#, c-format +msgid "invalid section header position or size\n" +msgstr "" + +#: ../src/elflint.c:548 +#, c-format +msgid "" +"section [%2d] '%s': section with SHF_GROUP flag set not part of a section " +"group\n" +msgstr "" + +#: ../src/elflint.c:552 +#, c-format +msgid "" +"section [%2d] '%s': section group [%2zu] '%s' does not preceed group member\n" +msgstr "" + +#: ../src/elflint.c:568 ../src/elflint.c:1393 ../src/elflint.c:1443 +#: ../src/elflint.c:1552 ../src/elflint.c:2146 ../src/elflint.c:2660 +#: ../src/elflint.c:2821 ../src/elflint.c:2951 ../src/elflint.c:3123 +#: ../src/elflint.c:4020 +#, c-format +msgid "section [%2d] '%s': cannot get section data\n" +msgstr "" + +#: ../src/elflint.c:581 ../src/elflint.c:1559 +#, c-format +msgid "" +"section [%2d] '%s': referenced as string table for section [%2d] '%s' but " +"type is not SHT_STRTAB\n" +msgstr "" + +#: ../src/elflint.c:604 +#, c-format +msgid "" +"section [%2d] '%s': symbol table cannot have more than one extended index " +"section\n" +msgstr "" + +#: ../src/elflint.c:615 +#, c-format +msgid "section [%2u] '%s': entry size is does not match ElfXX_Sym\n" +msgstr "" + +#: ../src/elflint.c:624 +#, c-format +msgid "section [%2d] '%s': cannot get symbol %d: %s\n" +msgstr "" + +#: ../src/elflint.c:629 ../src/elflint.c:632 ../src/elflint.c:635 +#: ../src/elflint.c:638 ../src/elflint.c:641 ../src/elflint.c:644 +#, c-format +msgid "section [%2d] '%s': '%s' in zeroth entry not zero\n" +msgstr "" + +#: ../src/elflint.c:647 +#, c-format +msgid "section [%2d] '%s': XINDEX for zeroth entry not zero\n" +msgstr "" + +#: ../src/elflint.c:657 +#, c-format +msgid "section [%2d] '%s': cannot get symbol %zu: %s\n" +msgstr "" + +#: ../src/elflint.c:666 +#, c-format +msgid "section [%2d] '%s': symbol %zu: invalid name value\n" +msgstr "" + +#: ../src/elflint.c:679 +#, c-format +msgid "" +"section [%2d] '%s': symbol %zu: too large section index but no extended " +"section index section\n" +msgstr "" + +#: ../src/elflint.c:685 +#, c-format +msgid "" +"section [%2d] '%s': symbol %zu: XINDEX used for index which would fit in " +"st_shndx (%)\n" +msgstr "" + +#. || sym->st_shndx > SHN_HIRESERVE always false +#: ../src/elflint.c:697 +#, c-format +msgid "section [%2d] '%s': symbol %zu: invalid section index\n" +msgstr "" + +#: ../src/elflint.c:705 +#, c-format +msgid "section [%2d] '%s': symbol %zu: unknown type\n" +msgstr "" + +#: ../src/elflint.c:709 +#, c-format +msgid "section [%2d] '%s': symbol %zu: unknown symbol binding\n" +msgstr "" + +#: ../src/elflint.c:717 +#, c-format +msgid "" +"section [%2d] '%s': symbol %zu: COMMON only allowed in relocatable files\n" +msgstr "" + +#: ../src/elflint.c:721 +#, c-format +msgid "section [%2d] '%s': symbol %zu: local COMMON symbols are nonsense\n" +msgstr "" + +#: ../src/elflint.c:725 +#, c-format +msgid "" +"section [%2d] '%s': symbol %zu: function in COMMON section is nonsense\n" +msgstr "" + +#: ../src/elflint.c:757 +#, c-format +msgid "section [%2d] '%s': symbol %zu: st_value out of bounds\n" +msgstr "" + +#: ../src/elflint.c:763 ../src/elflint.c:788 ../src/elflint.c:831 +#, c-format +msgid "" +"section [%2d] '%s': symbol %zu does not fit completely in referenced section " +"[%2d] '%s'\n" +msgstr "" + +#: ../src/elflint.c:772 +#, c-format +msgid "" +"section [%2d] '%s': symbol %zu: referenced section [%2d] '%s' does not have " +"SHF_TLS flag set\n" +msgstr "" + +#: ../src/elflint.c:782 ../src/elflint.c:824 +#, c-format +msgid "" +"section [%2d] '%s': symbol %zu: st_value out of bounds of referenced section " +"[%2d] '%s'\n" +msgstr "" + +#: ../src/elflint.c:809 +#, c-format +msgid "" +"section [%2d] '%s': symbol %zu: TLS symbol but no TLS program header entry\n" +msgstr "" + +#: ../src/elflint.c:817 +#, c-format +msgid "" +"section [%2d] '%s': symbol %zu: st_value short of referenced section [%2d] '%" +"s'\n" +msgstr "" + +#: ../src/elflint.c:844 +#, c-format +msgid "" +"section [%2d] '%s': symbol %zu: local symbol outside range described in " +"sh_info\n" +msgstr "" + +#: ../src/elflint.c:851 +#, c-format +msgid "" +"section [%2d] '%s': symbol %zu: non-local symbol outside range described in " +"sh_info\n" +msgstr "" + +#: ../src/elflint.c:858 +#, c-format +msgid "section [%2d] '%s': symbol %zu: non-local section symbol\n" +msgstr "" + +#: ../src/elflint.c:908 +#, c-format +msgid "" +"section [%2d] '%s': _GLOBAL_OFFSET_TABLE_ symbol refers to bad section [%" +"2d]\n" +msgstr "" + +#: ../src/elflint.c:915 +#, c-format +msgid "" +"section [%2d] '%s': _GLOBAL_OFFSET_TABLE_ symbol refers to section [%2d] '%" +"s'\n" +msgstr "" + +#. This test is more strict than the psABIs which +#. usually allow the symbol to be in the middle of +#. the .got section, allowing negative offsets. +#: ../src/elflint.c:931 +#, c-format +msgid "" +"section [%2d] '%s': _GLOBAL_OFFSET_TABLE_ symbol value %# does not " +"match %s section address %#\n" +msgstr "" + +#: ../src/elflint.c:938 +#, c-format +msgid "" +"section [%2d] '%s': _GLOBAL_OFFSET_TABLE_ symbol size % does not " +"match %s section size %\n" +msgstr "" + +#: ../src/elflint.c:946 +#, c-format +msgid "" +"section [%2d] '%s': _GLOBAL_OFFSET_TABLE_ symbol present, but no .got " +"section\n" +msgstr "" + +#: ../src/elflint.c:962 +#, c-format +msgid "" +"section [%2d] '%s': _DYNAMIC_ symbol value %# does not match dynamic " +"segment address %#\n" +msgstr "" + +#: ../src/elflint.c:969 +#, c-format +msgid "" +"section [%2d] '%s': _DYNAMIC symbol size % does not match dynamic " +"segment size %\n" +msgstr "" + +#: ../src/elflint.c:1020 +#, c-format +msgid "section [%2d] '%s': DT_RELCOUNT used for this RELA section\n" +msgstr "" + +#: ../src/elflint.c:1029 ../src/elflint.c:1081 +#, c-format +msgid "section [%2d] '%s': DT_RELCOUNT value %d too high for this section\n" +msgstr "" + +#: ../src/elflint.c:1054 ../src/elflint.c:1106 +#, c-format +msgid "" +"section [%2d] '%s': relative relocations after index %d as specified by " +"DT_RELCOUNT\n" +msgstr "" + +#: ../src/elflint.c:1060 ../src/elflint.c:1112 +#, c-format +msgid "" +"section [%2d] '%s': non-relative relocation at index %zu; DT_RELCOUNT " +"specified %d relative relocations\n" +msgstr "" + +#: ../src/elflint.c:1072 +#, c-format +msgid "section [%2d] '%s': DT_RELACOUNT used for this REL section\n" +msgstr "" + +#: ../src/elflint.c:1154 +#, c-format +msgid "section [%2d] '%s': invalid destination section index\n" +msgstr "" + +#: ../src/elflint.c:1167 +#, c-format +msgid "section [%2d] '%s': invalid destination section type\n" +msgstr "" + +#: ../src/elflint.c:1175 +#, c-format +msgid "section [%2d] '%s': sh_info should be zero\n" +msgstr "" + +#: ../src/elflint.c:1182 +#, c-format +msgid "section [%2d] '%s': no relocations for merge-able sections possible\n" +msgstr "" + +#: ../src/elflint.c:1189 +#, c-format +msgid "section [%2d] '%s': section entry size does not match ElfXX_Rela\n" +msgstr "" + +#: ../src/elflint.c:1249 +#, c-format +msgid "text relocation flag set but there is no read-only segment\n" +msgstr "" + +#: ../src/elflint.c:1276 +#, c-format +msgid "section [%2d] '%s': relocation %zu: invalid type\n" +msgstr "" + +#: ../src/elflint.c:1284 +#, c-format +msgid "" +"section [%2d] '%s': relocation %zu: relocation type invalid for the file " +"type\n" +msgstr "" + +#: ../src/elflint.c:1292 +#, c-format +msgid "section [%2d] '%s': relocation %zu: invalid symbol index\n" +msgstr "" + +#: ../src/elflint.c:1310 +#, c-format +msgid "" +"section [%2d] '%s': relocation %zu: only symbol '_GLOBAL_OFFSET_TABLE_' can " +"be used with %s\n" +msgstr "" + +#: ../src/elflint.c:1327 +#, c-format +msgid "section [%2d] '%s': relocation %zu: offset out of bounds\n" +msgstr "" + +#: ../src/elflint.c:1342 +#, c-format +msgid "" +"section [%2d] '%s': relocation %zu: copy relocation against symbol of type %" +"s\n" +msgstr "" + +#: ../src/elflint.c:1363 +#, c-format +msgid "" +"section [%2d] '%s': relocation %zu: read-only section modified but text " +"relocation flag not set\n" +msgstr "" + +#: ../src/elflint.c:1378 +#, c-format +msgid "section [%2d] '%s': relocations are against loaded and unloaded data\n" +msgstr "" + +#: ../src/elflint.c:1417 ../src/elflint.c:1467 +#, c-format +msgid "section [%2d] '%s': cannot get relocation %zu: %s\n" +msgstr "" + +#: ../src/elflint.c:1547 +#, c-format +msgid "more than one dynamic section present\n" +msgstr "" + +#: ../src/elflint.c:1565 +#, c-format +msgid "section [%2d] '%s': section entry size does not match ElfXX_Dyn\n" +msgstr "" + +#: ../src/elflint.c:1570 ../src/elflint.c:1862 +#, c-format +msgid "section [%2d] '%s': sh_info not zero\n" +msgstr "" + +#: ../src/elflint.c:1580 +#, c-format +msgid "section [%2d] '%s': cannot get dynamic section entry %zu: %s\n" +msgstr "" + +#: ../src/elflint.c:1588 +#, c-format +msgid "section [%2d] '%s': non-DT_NULL entries follow DT_NULL entry\n" +msgstr "" + +#: ../src/elflint.c:1595 +#, c-format +msgid "section [%2d] '%s': entry %zu: unknown tag\n" +msgstr "" + +#: ../src/elflint.c:1606 +#, c-format +msgid "section [%2d] '%s': entry %zu: more than one entry with tag %s\n" +msgstr "" + +#: ../src/elflint.c:1616 +#, c-format +msgid "section [%2d] '%s': entry %zu: level 2 tag %s used\n" +msgstr "" + +#: ../src/elflint.c:1634 +#, c-format +msgid "" +"section [%2d] '%s': entry %zu: DT_PLTREL value must be DT_REL or DT_RELA\n" +msgstr "" + +#: ../src/elflint.c:1656 +#, c-format +msgid "" +"section [%2d] '%s': entry %zu: pointer does not match address of section [%" +"2d] '%s' referenced by sh_link\n" +msgstr "" + +#: ../src/elflint.c:1699 +#, c-format +msgid "" +"section [%2d] '%s': entry %zu: %s value must point into loaded segment\n" +msgstr "" + +#: ../src/elflint.c:1714 +#, c-format +msgid "" +"section [%2d] '%s': entry %zu: %s value must be valid offset in section [%" +"2d] '%s'\n" +msgstr "" + +#: ../src/elflint.c:1734 ../src/elflint.c:1762 +#, c-format +msgid "section [%2d] '%s': contains %s entry but not %s\n" +msgstr "" + +#: ../src/elflint.c:1746 +#, c-format +msgid "section [%2d] '%s': mandatory tag %s not present\n" +msgstr "" + +#: ../src/elflint.c:1755 +#, c-format +msgid "section [%2d] '%s': no hash section present\n" +msgstr "" + +#: ../src/elflint.c:1770 ../src/elflint.c:1777 +#, c-format +msgid "section [%2d] '%s': not all of %s, %s, and %s are present\n" +msgstr "" + +#: ../src/elflint.c:1787 ../src/elflint.c:1791 +#, c-format +msgid "section [%2d] '%s': %s tag missing in DSO marked during prelinking\n" +msgstr "" + +#: ../src/elflint.c:1797 +#, c-format +msgid "section [%2d] '%s': non-DSO file marked as dependency during prelink\n" +msgstr "" + +#: ../src/elflint.c:1808 ../src/elflint.c:1812 ../src/elflint.c:1816 +#: ../src/elflint.c:1820 +#, c-format +msgid "section [%2d] '%s': %s tag missing in prelinked executable\n" +msgstr "" + +#: ../src/elflint.c:1832 +#, c-format +msgid "" +"section [%2d] '%s': only relocatable files can have extended section index\n" +msgstr "" + +#: ../src/elflint.c:1842 +#, c-format +msgid "" +"section [%2d] '%s': extended section index section not for symbol table\n" +msgstr "" + +#: ../src/elflint.c:1847 +#, c-format +msgid "cannot get data for symbol section\n" +msgstr "" + +#: ../src/elflint.c:1850 +#, c-format +msgid "section [%2d] '%s': entry size does not match Elf32_Word\n" +msgstr "" + +#: ../src/elflint.c:1857 +#, c-format +msgid "section [%2d] '%s': extended index table too small for symbol table\n" +msgstr "" + +#: ../src/elflint.c:1872 +#, c-format +msgid "" +"section [%2d] '%s': extended section index in section [%2zu] '%s' refers to " +"same symbol table\n" +msgstr "" + +#: ../src/elflint.c:1883 +#, c-format +msgid "symbol 0 should have zero extended section index\n" +msgstr "" + +#: ../src/elflint.c:1895 +#, c-format +msgid "cannot get data for symbol %zu\n" +msgstr "" + +#: ../src/elflint.c:1900 +#, c-format +msgid "extended section index is % but symbol index is not XINDEX\n" +msgstr "" + +#: ../src/elflint.c:1916 ../src/elflint.c:1957 +#, c-format +msgid "" +"section [%2d] '%s': hash table section is too small (is %ld, expected %ld)\n" +msgstr "" + +#: ../src/elflint.c:1928 ../src/elflint.c:1969 +#, c-format +msgid "section [%2d] '%s': chain array too large\n" +msgstr "" + +#: ../src/elflint.c:1937 ../src/elflint.c:1978 +#, c-format +msgid "section [%2d] '%s': hash bucket reference %zu out of bounds\n" +msgstr "" + +#: ../src/elflint.c:1943 +#, c-format +msgid "section [%2d] '%s': hash chain reference %zu out of bounds\n" +msgstr "" + +#: ../src/elflint.c:1984 +#, c-format +msgid "section [%2d] '%s': hash chain reference % out of bounds\n" +msgstr "" + +#: ../src/elflint.c:1999 +#, c-format +msgid "section [%2d] '%s': bitmask size not power of 2: %u\n" +msgstr "" + +#: ../src/elflint.c:2010 +#, c-format +msgid "" +"section [%2d] '%s': hash table section is too small (is %ld, expected at " +"least%ld)\n" +msgstr "" + +#: ../src/elflint.c:2018 +#, c-format +msgid "section [%2d] '%s': 2nd hash function shift too big: %u\n" +msgstr "" + +#: ../src/elflint.c:2050 +#, c-format +msgid "" +"section [%2d] '%s': hash chain for bucket %zu lower than symbol index bias\n" +msgstr "" + +#: ../src/elflint.c:2071 +#, c-format +msgid "" +"section [%2d] '%s': symbol %u referenced in chain for bucket %zu is " +"undefined\n" +msgstr "" + +#: ../src/elflint.c:2082 +#, c-format +msgid "" +"section [%2d] '%s': hash value for symbol %u in chain for bucket %zu wrong\n" +msgstr "" + +#: ../src/elflint.c:2113 +#, c-format +msgid "section [%2d] '%s': hash chain for bucket %zu out of bounds\n" +msgstr "" + +#: ../src/elflint.c:2118 +#, c-format +msgid "" +"section [%2d] '%s': symbol reference in chain for bucket %zu out of bounds\n" +msgstr "" + +#: ../src/elflint.c:2124 +#, c-format +msgid "section [%2d] '%s': bitmask does not match names in the hash table\n" +msgstr "" + +#: ../src/elflint.c:2137 +#, c-format +msgid "section [%2d] '%s': relocatable files cannot have hash tables\n" +msgstr "" + +#: ../src/elflint.c:2155 +#, c-format +msgid "section [%2d] '%s': hash table not for dynamic symbol table\n" +msgstr "" + +#: ../src/elflint.c:2163 +#, c-format +msgid "section [%2d] '%s': hash table entry size incorrect\n" +msgstr "" + +#: ../src/elflint.c:2168 +#, c-format +msgid "section [%2d] '%s': not marked to be allocated\n" +msgstr "" + +#: ../src/elflint.c:2173 +#, c-format +msgid "" +"section [%2d] '%s': hash table has not even room for initial administrative " +"entries\n" +msgstr "" + +#: ../src/elflint.c:2221 +#, c-format +msgid "sh_link in hash sections [%2zu] '%s' and [%2zu] '%s' not identical\n" +msgstr "" + +#: ../src/elflint.c:2299 ../src/elflint.c:2303 +#, c-format +msgid "section [%2zu] '%s': reference to symbol index 0\n" +msgstr "" + +#: ../src/elflint.c:2310 +#, c-format +msgid "" +"symbol %d referenced in new hash table in [%2zu] '%s' but not in old hash " +"table in [%2zu] '%s'\n" +msgstr "" + +#: ../src/elflint.c:2322 +#, c-format +msgid "" +"symbol %d referenced in old hash table in [%2zu] '%s' but not in new hash " +"table in [%2zu] '%s'\n" +msgstr "" + +#: ../src/elflint.c:2338 +#, c-format +msgid "section [%2d] '%s': nonzero sh_%s for NULL section\n" +msgstr "" + +#: ../src/elflint.c:2358 +#, c-format +msgid "" +"section [%2d] '%s': section groups only allowed in relocatable object files\n" +msgstr "" + +#: ../src/elflint.c:2369 +#, c-format +msgid "section [%2d] '%s': cannot get symbol table: %s\n" +msgstr "" + +#: ../src/elflint.c:2374 +#, c-format +msgid "section [%2d] '%s': section reference in sh_link is no symbol table\n" +msgstr "" + +#: ../src/elflint.c:2380 +#, c-format +msgid "section [%2d] '%s': invalid symbol index in sh_info\n" +msgstr "" + +#: ../src/elflint.c:2385 +#, c-format +msgid "section [%2d] '%s': sh_flags not zero\n" +msgstr "" + +#: ../src/elflint.c:2392 +#, c-format +msgid "section [%2d] '%s': cannot get symbol for signature\n" +msgstr "" + +#: ../src/elflint.c:2397 +#, c-format +msgid "section [%2d] '%s': signature symbol canot be empty string\n" +msgstr "" + +#: ../src/elflint.c:2403 +#, c-format +msgid "section [%2d] '%s': sh_flags not set correctly\n" +msgstr "" + +#: ../src/elflint.c:2409 +#, c-format +msgid "section [%2d] '%s': cannot get data: %s\n" +msgstr "" + +#: ../src/elflint.c:2418 +#, c-format +msgid "section [%2d] '%s': section size not multiple of sizeof(Elf32_Word)\n" +msgstr "" + +#: ../src/elflint.c:2423 +#, c-format +msgid "section [%2d] '%s': section group without flags word\n" +msgstr "" + +#: ../src/elflint.c:2429 +#, c-format +msgid "section [%2d] '%s': section group without member\n" +msgstr "" + +#: ../src/elflint.c:2433 +#, c-format +msgid "section [%2d] '%s': section group with only one member\n" +msgstr "" + +#: ../src/elflint.c:2444 +#, c-format +msgid "section [%2d] '%s': unknown section group flags\n" +msgstr "" + +#: ../src/elflint.c:2456 +#, c-format +msgid "section [%2d] '%s': section index %Zu out of range\n" +msgstr "" + +#: ../src/elflint.c:2465 +#, c-format +msgid "section [%2d] '%s': cannot get section header for element %zu: %s\n" +msgstr "" + +#: ../src/elflint.c:2472 +#, c-format +msgid "section [%2d] '%s': section group contains another group [%2d] '%s'\n" +msgstr "" + +#: ../src/elflint.c:2478 +#, c-format +msgid "" +"section [%2d] '%s': element %Zu references section [%2d] '%s' without " +"SHF_GROUP flag set\n" +msgstr "" + +#: ../src/elflint.c:2485 +#, c-format +msgid "section [%2d] '%s' is contained in more than one section group\n" +msgstr "" + +#: ../src/elflint.c:2674 +#, c-format +msgid "" +"section [%2d] '%s' refers in sh_link to section [%2d] '%s' which is no " +"dynamic symbol table\n" +msgstr "" + +#: ../src/elflint.c:2685 +#, c-format +msgid "" +"section [%2d] '%s' has different number of entries than symbol table [%2d] '%" +"s'\n" +msgstr "" + +#: ../src/elflint.c:2701 +#, c-format +msgid "section [%2d] '%s': symbol %d: cannot read version data\n" +msgstr "" + +#: ../src/elflint.c:2717 +#, c-format +msgid "section [%2d] '%s': symbol %d: local symbol with global scope\n" +msgstr "" + +#: ../src/elflint.c:2725 +#, c-format +msgid "section [%2d] '%s': symbol %d: local symbol with version\n" +msgstr "" + +#: ../src/elflint.c:2739 +#, c-format +msgid "section [%2d] '%s': symbol %d: invalid version index %d\n" +msgstr "" + +#: ../src/elflint.c:2744 +#, c-format +msgid "" +"section [%2d] '%s': symbol %d: version index %d is for defined version\n" +msgstr "" + +#: ../src/elflint.c:2754 +#, c-format +msgid "" +"section [%2d] '%s': symbol %d: version index %d is for requested version\n" +msgstr "" + +#: ../src/elflint.c:2806 +#, c-format +msgid "more than one version reference section present\n" +msgstr "" + +#: ../src/elflint.c:2814 ../src/elflint.c:2943 +#, c-format +msgid "section [%2d] '%s': sh_link does not link to string table\n" +msgstr "" + +#: ../src/elflint.c:2837 ../src/elflint.c:2995 +#, c-format +msgid "section [%2d] '%s': entry %d has wrong version %d\n" +msgstr "" + +#: ../src/elflint.c:2843 ../src/elflint.c:3001 +#, c-format +msgid "section [%2d] '%s': entry %d has wrong offset of auxiliary data\n" +msgstr "" + +#: ../src/elflint.c:2851 +#, c-format +msgid "section [%2d] '%s': entry %d has invalid file reference\n" +msgstr "" + +#: ../src/elflint.c:2859 +#, c-format +msgid "section [%2d] '%s': entry %d references unknown dependency\n" +msgstr "" + +#: ../src/elflint.c:2871 +#, c-format +msgid "section [%2d] '%s': auxiliary entry %d of entry %d has unknown flag\n" +msgstr "" + +#: ../src/elflint.c:2878 +#, c-format +msgid "" +"section [%2d] '%s': auxiliary entry %d of entry %d has invalid name " +"reference\n" +msgstr "" + +#: ../src/elflint.c:2885 +#, c-format +msgid "" +"section [%2d] '%s': auxiliary entry %d of entry %d has wrong hash value: %" +"#x, expected %#x\n" +msgstr "" + +#: ../src/elflint.c:2895 +#, c-format +msgid "" +"section [%2d] '%s': auxiliary entry %d of entry %d has duplicate version " +"name '%s'\n" +msgstr "" + +#: ../src/elflint.c:2906 +#, c-format +msgid "" +"section [%2d] '%s': auxiliary entry %d of entry %d has wrong next field\n" +msgstr "" + +#: ../src/elflint.c:2922 ../src/elflint.c:3080 +#, c-format +msgid "section [%2d] '%s': entry %d has invalid offset to next entry\n" +msgstr "" + +#: ../src/elflint.c:2935 +#, c-format +msgid "more than one version definition section present\n" +msgstr "" + +#: ../src/elflint.c:2980 +#, c-format +msgid "section [%2d] '%s': more than one BASE definition\n" +msgstr "" + +#: ../src/elflint.c:2984 +#, c-format +msgid "section [%2d] '%s': BASE definition must have index VER_NDX_GLOBAL\n" +msgstr "" + +#: ../src/elflint.c:2990 +#, c-format +msgid "section [%2d] '%s': entry %d has unknown flag\n" +msgstr "" + +#: ../src/elflint.c:3014 +#, c-format +msgid "section [%2d] '%s': entry %d has invalid name reference\n" +msgstr "" + +#: ../src/elflint.c:3021 +#, c-format +msgid "section [%2d] '%s': entry %d has wrong hash value: %#x, expected %#x\n" +msgstr "" + +#: ../src/elflint.c:3030 +#, c-format +msgid "section [%2d] '%s': entry %d has duplicate version name '%s'\n" +msgstr "" + +#: ../src/elflint.c:3049 +#, c-format +msgid "" +"section [%2d] '%s': entry %d has invalid name reference in auxiliary data\n" +msgstr "" + +#: ../src/elflint.c:3064 +#, c-format +msgid "section [%2d] '%s': entry %d has wrong next field in auxiliary data\n" +msgstr "" + +#: ../src/elflint.c:3086 +#, c-format +msgid "section [%2d] '%s': no BASE definition\n" +msgstr "" + +#: ../src/elflint.c:3102 +#, c-format +msgid "section [%2d] '%s': unknown parent version '%s'\n" +msgstr "" + +#: ../src/elflint.c:3115 +#, c-format +msgid "section [%2d] '%s': empty object attributes section\n" +msgstr "" + +#: ../src/elflint.c:3136 +#, c-format +msgid "section [%2d] '%s': unrecognized attribute format\n" +msgstr "" + +#: ../src/elflint.c:3152 +#, c-format +msgid "" +"section [%2d] '%s': offset %zu: zero length field in attribute section\n" +msgstr "" + +#: ../src/elflint.c:3161 +#, c-format +msgid "section [%2d] '%s': offset %zu: invalid length in attribute section\n" +msgstr "" + +#: ../src/elflint.c:3173 +#, c-format +msgid "section [%2d] '%s': offset %zu: unterminated vendor name string\n" +msgstr "" + +#: ../src/elflint.c:3190 +#, c-format +msgid "" +"section [%2d] '%s': offset %zu: endless ULEB128 in attribute subsection tag\n" +msgstr "" + +#: ../src/elflint.c:3199 +#, c-format +msgid "section [%2d] '%s': offset %zu: truncated attribute section\n" +msgstr "" + +#: ../src/elflint.c:3208 +#, c-format +msgid "" +"section [%2d] '%s': offset %zu: zero length field in attribute subsection\n" +msgstr "" + +#: ../src/elflint.c:3221 +#, c-format +msgid "" +"section [%2d] '%s': offset %zu: invalid length in attribute subsection\n" +msgstr "" + +#. Tag_File +#: ../src/elflint.c:3232 +#, c-format +msgid "" +"section [%2d] '%s': offset %zu: attribute subsection has unexpected tag %u\n" +msgstr "" + +#: ../src/elflint.c:3250 +#, c-format +msgid "section [%2d] '%s': offset %zu: endless ULEB128 in attribute tag\n" +msgstr "" + +#: ../src/elflint.c:3261 +#, c-format +msgid "section [%2d] '%s': offset %zu: unterminated string in attribute\n" +msgstr "" + +#: ../src/elflint.c:3274 +#, c-format +msgid "section [%2d] '%s': offset %zu: unrecognized attribute tag %u\n" +msgstr "" + +#: ../src/elflint.c:3278 +#, c-format +msgid "" +"section [%2d] '%s': offset %zu: unrecognized %s attribute value %\n" +msgstr "" + +#: ../src/elflint.c:3288 +#, c-format +msgid "section [%2d] '%s': offset %zu: vendor '%s' unknown\n" +msgstr "" + +#: ../src/elflint.c:3294 +#, c-format +msgid "" +"section [%2d] '%s': offset %zu: extra bytes after last attribute section\n" +msgstr "" + +#: ../src/elflint.c:3383 +#, c-format +msgid "cannot get section header of zeroth section\n" +msgstr "" + +#: ../src/elflint.c:3387 +#, c-format +msgid "zeroth section has nonzero name\n" +msgstr "" + +#: ../src/elflint.c:3389 +#, c-format +msgid "zeroth section has nonzero type\n" +msgstr "" + +#: ../src/elflint.c:3391 +#, c-format +msgid "zeroth section has nonzero flags\n" +msgstr "" + +#: ../src/elflint.c:3393 +#, c-format +msgid "zeroth section has nonzero address\n" +msgstr "" + +#: ../src/elflint.c:3395 +#, c-format +msgid "zeroth section has nonzero offset\n" +msgstr "" + +#: ../src/elflint.c:3397 +#, c-format +msgid "zeroth section has nonzero info field\n" +msgstr "" + +#: ../src/elflint.c:3399 +#, c-format +msgid "zeroth section has nonzero align value\n" +msgstr "" + +#: ../src/elflint.c:3401 +#, c-format +msgid "zeroth section has nonzero entry size value\n" +msgstr "" + +#: ../src/elflint.c:3404 +#, c-format +msgid "" +"zeroth section has nonzero size value while ELF header has nonzero shnum " +"value\n" +msgstr "" + +#: ../src/elflint.c:3408 +#, c-format +msgid "" +"zeroth section has nonzero link value while ELF header does not signal " +"overflow in shstrndx\n" +msgstr "" + +#: ../src/elflint.c:3425 +#, c-format +msgid "cannot get section header for section [%2zu] '%s': %s\n" +msgstr "" + +#: ../src/elflint.c:3434 +#, c-format +msgid "section [%2zu]: invalid name\n" +msgstr "" + +#: ../src/elflint.c:3461 +#, c-format +msgid "section [%2d] '%s' has wrong type: expected %s, is %s\n" +msgstr "" + +#: ../src/elflint.c:3477 +#, c-format +msgid "section [%2zu] '%s' has wrong flags: expected %s, is %s\n" +msgstr "" + +#: ../src/elflint.c:3494 +#, c-format +msgid "" +"section [%2zu] '%s' has wrong flags: expected %s and possibly %s, is %s\n" +msgstr "" + +#: ../src/elflint.c:3512 +#, c-format +msgid "section [%2zu] '%s' present in object file\n" +msgstr "" + +#: ../src/elflint.c:3518 ../src/elflint.c:3550 +#, c-format +msgid "" +"section [%2zu] '%s' has SHF_ALLOC flag set but there is no loadable segment\n" +msgstr "" + +#: ../src/elflint.c:3523 ../src/elflint.c:3555 +#, c-format +msgid "" +"section [%2zu] '%s' has SHF_ALLOC flag not set but there are loadable " +"segments\n" +msgstr "" + +#: ../src/elflint.c:3531 +#, c-format +msgid "" +"section [%2zu] '%s' is extension section index table in non-object file\n" +msgstr "" + +#: ../src/elflint.c:3574 +#, c-format +msgid "section [%2zu] '%s': size not multiple of entry size\n" +msgstr "" + +#: ../src/elflint.c:3579 +#, c-format +msgid "cannot get section header\n" +msgstr "" + +#: ../src/elflint.c:3589 +#, c-format +msgid "section [%2zu] '%s' has unsupported type %d\n" +msgstr "" + +#: ../src/elflint.c:3603 +#, c-format +msgid "" +"section [%2zu] '%s' contains invalid processor-specific flag(s) %#\n" +msgstr "" + +#: ../src/elflint.c:3610 +#, c-format +msgid "section [%2zu] '%s' contains unknown flag(s) %#\n" +msgstr "" + +#: ../src/elflint.c:3618 +#, c-format +msgid "section [%2zu] '%s': thread-local data sections address not zero\n" +msgstr "" + +#: ../src/elflint.c:3626 +#, c-format +msgid "section [%2zu] '%s': invalid section reference in link value\n" +msgstr "" + +#: ../src/elflint.c:3631 +#, c-format +msgid "section [%2zu] '%s': invalid section reference in info value\n" +msgstr "" + +#: ../src/elflint.c:3638 +#, c-format +msgid "section [%2zu] '%s': strings flag set without merge flag\n" +msgstr "" + +#: ../src/elflint.c:3643 +#, c-format +msgid "section [%2zu] '%s': merge flag set but entry size is zero\n" +msgstr "" + +#: ../src/elflint.c:3661 +#, c-format +msgid "section [%2zu] '%s' has unexpected type %d for an executable section\n" +msgstr "" + +#: ../src/elflint.c:3670 +#, c-format +msgid "section [%2zu] '%s' is both executable and writable\n" +msgstr "" + +#: ../src/elflint.c:3697 +#, c-format +msgid "" +"section [%2zu] '%s' not fully contained in segment of program header entry %" +"d\n" +msgstr "" + +#: ../src/elflint.c:3705 +#, c-format +msgid "" +"section [%2zu] '%s' has type NOBITS but is read from the file in segment of " +"program header entry %d\n" +msgstr "" + +#: ../src/elflint.c:3714 +#, c-format +msgid "" +"section [%2zu] '%s' has not type NOBITS but is not read from the file in " +"segment of program header entry %d\n" +msgstr "" + +#: ../src/elflint.c:3725 +#, c-format +msgid "section [%2zu] '%s' is executable in nonexecutable segment %d\n" +msgstr "" + +#: ../src/elflint.c:3735 +#, c-format +msgid "section [%2zu] '%s' is writable in unwritable segment %d\n" +msgstr "" + +#: ../src/elflint.c:3745 +#, c-format +msgid "" +"section [%2zu] '%s': alloc flag set but section not in any loaded segment\n" +msgstr "" + +#: ../src/elflint.c:3751 +#, c-format +msgid "" +"section [%2zu] '%s': ELF header says this is the section header string table " +"but type is not SHT_TYPE\n" +msgstr "" + +#: ../src/elflint.c:3759 +#, c-format +msgid "" +"section [%2zu] '%s': relocatable files cannot have dynamic symbol tables\n" +msgstr "" + +#: ../src/elflint.c:3810 +#, c-format +msgid "more than one version symbol table present\n" +msgstr "" + +#: ../src/elflint.c:3833 +#, c-format +msgid "INTERP program header entry but no .interp section\n" +msgstr "" + +#: ../src/elflint.c:3844 +#, c-format +msgid "" +"loadable segment [%u] is executable but contains no executable sections\n" +msgstr "" + +#: ../src/elflint.c:3850 +#, c-format +msgid "loadable segment [%u] is writable but contains no writable sections\n" +msgstr "" + +#: ../src/elflint.c:3861 +#, c-format +msgid "" +"no .gnu.versym section present but .gnu.versym_d or .gnu.versym_r section " +"exist\n" +msgstr "" + +#: ../src/elflint.c:3874 +#, c-format +msgid "duplicate version index %d\n" +msgstr "" + +#: ../src/elflint.c:3888 +#, c-format +msgid ".gnu.versym section present without .gnu.versym_d or .gnu.versym_r\n" +msgstr "" + +#: ../src/elflint.c:3937 +#, c-format +msgid "phdr[%d]: unknown core file note type % at offset %\n" +msgstr "" + +#: ../src/elflint.c:3941 +#, c-format +msgid "" +"section [%2d] '%s': unknown core file note type % at offset %Zu\n" +msgstr "" + +#: ../src/elflint.c:3963 +#, c-format +msgid "phdr[%d]: unknown object file note type % at offset %Zu\n" +msgstr "" + +#: ../src/elflint.c:3967 +#, c-format +msgid "" +"section [%2d] '%s': unknown object file note type % at offset %Zu\n" +msgstr "" + +#: ../src/elflint.c:3984 +#, c-format +msgid "phdr[%d]: no note entries defined for the type of file\n" +msgstr "" + +#: ../src/elflint.c:4003 +#, c-format +msgid "phdr[%d]: cannot get content of note section: %s\n" +msgstr "" + +#: ../src/elflint.c:4006 +#, c-format +msgid "phdr[%d]: extra % bytes after last note\n" +msgstr "" + +#: ../src/elflint.c:4027 +#, c-format +msgid "section [%2d] '%s': no note entries defined for the type of file\n" +msgstr "" + +#: ../src/elflint.c:4034 +#, c-format +msgid "section [%2d] '%s': cannot get content of note section\n" +msgstr "" + +#: ../src/elflint.c:4037 +#, c-format +msgid "section [%2d] '%s': extra % bytes after last note\n" +msgstr "" + +#: ../src/elflint.c:4055 +#, c-format +msgid "" +"only executables, shared objects, and core files can have program headers\n" +msgstr "" + +#: ../src/elflint.c:4070 +#, c-format +msgid "cannot get program header entry %d: %s\n" +msgstr "" + +#: ../src/elflint.c:4079 +#, c-format +msgid "program header entry %d: unknown program header entry type %#\n" +msgstr "" + +#: ../src/elflint.c:4090 +#, c-format +msgid "more than one INTERP entry in program header\n" +msgstr "" + +#: ../src/elflint.c:4098 +#, c-format +msgid "more than one TLS entry in program header\n" +msgstr "" + +#: ../src/elflint.c:4105 +#, c-format +msgid "static executable cannot have dynamic sections\n" +msgstr "" + +#: ../src/elflint.c:4119 +#, c-format +msgid "dynamic section reference in program header has wrong offset\n" +msgstr "" + +#: ../src/elflint.c:4122 +#, c-format +msgid "dynamic section size mismatch in program and section header\n" +msgstr "" + +#: ../src/elflint.c:4132 +#, c-format +msgid "more than one GNU_RELRO entry in program header\n" +msgstr "" + +#: ../src/elflint.c:4153 +#, c-format +msgid "loadable segment GNU_RELRO applies to is not writable\n" +msgstr "" + +#: ../src/elflint.c:4156 +#, c-format +msgid "loadable segment [%u] flags do not match GNU_RELRO [%u] flags\n" +msgstr "" + +#: ../src/elflint.c:4164 ../src/elflint.c:4187 +#, c-format +msgid "%s segment not contained in a loaded segment\n" +msgstr "" + +#: ../src/elflint.c:4193 +#, c-format +msgid "program header offset in ELF header and PHDR entry do not match" +msgstr "" + +#: ../src/elflint.c:4217 +#, c-format +msgid "call frame search table reference in program header has wrong offset\n" +msgstr "" + +#: ../src/elflint.c:4220 +#, c-format +msgid "call frame search table size mismatch in program and section header\n" +msgstr "" + +#: ../src/elflint.c:4233 +#, c-format +msgid "PT_GNU_EH_FRAME present but no .eh_frame_hdr section\n" +msgstr "" + +#: ../src/elflint.c:4241 +#, c-format +msgid "call frame search table must be allocated\n" +msgstr "" + +#: ../src/elflint.c:4244 +#, c-format +msgid "section [%2zu] '%s' must be allocated\n" +msgstr "" + +#: ../src/elflint.c:4248 +#, c-format +msgid "call frame search table must not be writable\n" +msgstr "" + +#: ../src/elflint.c:4251 +#, c-format +msgid "section [%2zu] '%s' must not be writable\n" +msgstr "" + +#: ../src/elflint.c:4256 +#, c-format +msgid "call frame search table must not be executable\n" +msgstr "" + +#: ../src/elflint.c:4259 +#, c-format +msgid "section [%2zu] '%s' must not be executable\n" +msgstr "" + +#: ../src/elflint.c:4270 +#, c-format +msgid "program header entry %d: file size greater than memory size\n" +msgstr "" + +#: ../src/elflint.c:4277 +#, c-format +msgid "program header entry %d: alignment not a power of 2\n" +msgstr "" + +#: ../src/elflint.c:4280 +#, c-format +msgid "" +"program header entry %d: file offset and virtual address not module of " +"alignment\n" +msgstr "" + +#: ../src/elflint.c:4293 +#, c-format +msgid "" +"executable/DSO with .eh_frame_hdr section does not have a PT_GNU_EH_FRAME " +"program header entry" +msgstr "" + +#: ../src/elflint.c:4327 +#, c-format +msgid "cannot read ELF header: %s\n" +msgstr "" + +#: ../src/elflint.c:4353 +#, c-format +msgid "text relocation flag set but not needed\n" +msgstr "" + +#: ../src/addr2line.c:66 +msgid "Output selection options:" +msgstr "" + +#: ../src/addr2line.c:67 +msgid "Show only base names of source files" +msgstr "" + +#: ../src/addr2line.c:69 +msgid "Show absolute file names using compilation directory" +msgstr "" + +#: ../src/addr2line.c:70 +msgid "Also show function names" +msgstr "" + +#: ../src/addr2line.c:71 +msgid "Also show symbol or section names" +msgstr "" + +#. Short description of program. +#: ../src/addr2line.c:82 +msgid "" +"Locate source files and line information for ADDRs (in a.out by default)." +msgstr "" + +#. Strings for arguments in help texts. +#: ../src/addr2line.c:86 +msgid "[ADDR...]" +msgstr "" + +#: ../src/addr2line.c:387 +#, c-format +msgid "Section syntax requires exactly one module" +msgstr "" + +#: ../src/addr2line.c:410 +#, c-format +msgid "offset %# lies outside section '%s'" +msgstr "" + +#: ../src/addr2line.c:428 +#, c-format +msgid "cannot find symbol '%s'" +msgstr "" + +#: ../src/addr2line.c:433 +#, c-format +msgid "offset %# lies outside contents of '%s'" +msgstr "" + +#: ../src/findtextrel.c:70 +msgid "Input Selection:" +msgstr "" + +#: ../src/findtextrel.c:71 +msgid "Prepend PATH to all file names" +msgstr "" + +#: ../src/findtextrel.c:73 +msgid "Use PATH as root of debuginfo hierarchy" +msgstr "" + +#. Short description of program. +#: ../src/findtextrel.c:80 +msgid "Locate source of text relocations in FILEs (a.out by default)." +msgstr "" + +#: ../src/findtextrel.c:236 ../src/elfcmp.c:578 ../src/ranlib.c:186 +#, c-format +msgid "cannot create ELF descriptor for '%s': %s" +msgstr "" + +#: ../src/findtextrel.c:246 +#, c-format +msgid "cannot get ELF header '%s': %s" +msgstr "" + +#: ../src/findtextrel.c:257 +#, c-format +msgid "'%s' is not a DSO or PIE" +msgstr "" + +#: ../src/findtextrel.c:274 +#, c-format +msgid "getting get section header of section %zu: %s" +msgstr "" + +#: ../src/findtextrel.c:292 +#, c-format +msgid "cannot read dynamic section: %s" +msgstr "" + +#: ../src/findtextrel.c:307 +#, c-format +msgid "no text relocations reported in '%s'" +msgstr "" + +#: ../src/findtextrel.c:319 +#, c-format +msgid "while reading ELF file" +msgstr "" + +#: ../src/findtextrel.c:328 ../src/findtextrel.c:345 +#, c-format +msgid "cannot get program header index at offset %d: %s" +msgstr "" + +#: ../src/findtextrel.c:397 +#, c-format +msgid "cannot get section header of section %Zu: %s" +msgstr "" + +#: ../src/findtextrel.c:409 +#, c-format +msgid "cannot get symbol table section %zu in '%s': %s" +msgstr "" + +#: ../src/findtextrel.c:429 ../src/findtextrel.c:452 +#, c-format +msgid "cannot get relocation at index %d in section %zu in '%s': %s" +msgstr "" + +#: ../src/findtextrel.c:517 +#, c-format +msgid "%s not compiled with -fpic/-fPIC\n" +msgstr "" + +#: ../src/findtextrel.c:570 +#, c-format +msgid "" +"the file containing the function '%s' is not compiled with -fpic/-fPIC\n" +msgstr "" + +#: ../src/findtextrel.c:577 ../src/findtextrel.c:597 +#, c-format +msgid "" +"the file containing the function '%s' might not be compiled with -fpic/-" +"fPIC\n" +msgstr "" + +#: ../src/findtextrel.c:585 +#, c-format +msgid "" +"either the file containing the function '%s' or the file containing the " +"function '%s' is not compiled with -fpic/-fPIC\n" +msgstr "" + +#: ../src/findtextrel.c:605 +#, c-format +msgid "" +"a relocation modifies memory at offset %llu in a write-protected segment\n" +msgstr "" + +#: ../src/elfcmp.c:69 +msgid "Control options:" +msgstr "" + +#: ../src/elfcmp.c:70 +msgid "" +"Control treatment of gaps in loadable segments [ignore|match] (default: " +"ignore)" +msgstr "" + +#: ../src/elfcmp.c:72 +msgid "Ignore permutation of buckets in SHT_HASH section" +msgstr "" + +#: ../src/elfcmp.c:73 +msgid "Output nothing; yield exit status only" +msgstr "" + +#. Short description of program. +#: ../src/elfcmp.c:80 +msgid "Compare relevant parts of two ELF files for equality." +msgstr "" + +#. Strings for arguments in help texts. +#: ../src/elfcmp.c:84 +msgid "FILE1 FILE2" +msgstr "" + +#: ../src/elfcmp.c:140 +msgid "Invalid number of parameters.\n" +msgstr "" + +#: ../src/elfcmp.c:168 ../src/elfcmp.c:173 +#, c-format +msgid "cannot get ELF header of '%s': %s" +msgstr "" + +#: ../src/elfcmp.c:190 +#, c-format +msgid "%s %s diff: ELF header" +msgstr "" + +#: ../src/elfcmp.c:248 +#, c-format +msgid "%s %s differ: section header" +msgstr "" + +#: ../src/elfcmp.c:276 ../src/elfcmp.c:282 +#, c-format +msgid "cannot get content of section %zu in '%s': %s" +msgstr "" + +#: ../src/elfcmp.c:298 ../src/elfcmp.c:304 +#, c-format +msgid "cannot get symbol in '%s': %s" +msgstr "" + +#: ../src/elfcmp.c:325 +#, c-format +msgid "%s %s differ: symbol table [%zu]" +msgstr "" + +#: ../src/elfcmp.c:328 +#, c-format +msgid "%s %s differ: symbol table [%zu,%zu]" +msgstr "" + +#: ../src/elfcmp.c:376 +#, c-format +msgid "%s %s differ: section [%zu] '%s' content" +msgstr "" + +#: ../src/elfcmp.c:380 +#, c-format +msgid "%s %s differ: section [%zu,%zu] '%s' content" +msgstr "" + +#: ../src/elfcmp.c:396 +#, c-format +msgid "%s %s differ: unequal amount of important sections" +msgstr "" + +#: ../src/elfcmp.c:430 ../src/elfcmp.c:435 +#, c-format +msgid "cannot load data of '%s': %s" +msgstr "" + +#: ../src/elfcmp.c:454 ../src/elfcmp.c:460 +#, c-format +msgid "cannot get program header entry %d of '%s': %s" +msgstr "" + +#: ../src/elfcmp.c:466 +#, c-format +msgid "%s %s differ: program header %d" +msgstr "" + +#: ../src/elfcmp.c:491 +#, c-format +msgid "%s %s differ: gap" +msgstr "" + +#: ../src/elfcmp.c:550 +#, c-format +msgid "Invalid value '%s' for --gaps parameter." +msgstr "" + +#: ../src/elfcmp.c:583 +#, c-format +msgid "cannot create EBL descriptor for '%s'" +msgstr "" + +#: ../src/elfcmp.c:601 +#, c-format +msgid "cannot get section header of section %zu: %s" +msgstr "" + +#: ../src/elfcmp.c:611 +#, c-format +msgid "cannot get content of section %zu: %s" +msgstr "" + +#: ../src/elfcmp.c:621 ../src/elfcmp.c:635 +#, c-format +msgid "cannot get relocation: %s" +msgstr "" + +#. Short description of program. +#: ../src/ranlib.c:74 +msgid "Generate an index to speed access to archives." +msgstr "" + +#. Strings for arguments in help texts. +#: ../src/ranlib.c:77 +msgid "ARCHIVE" +msgstr "" + +#: ../src/ranlib.c:116 +#, c-format +msgid "Archive name required" +msgstr "" + +#: ../src/ranlib.c:194 +#, c-format +msgid "'%s' is no archive" +msgstr "" + +#: ../src/ranlib.c:229 +#, c-format +msgid "error while freeing sub-ELF descriptor: %s" +msgstr "" + +#: ../src/strings.c:70 +msgid "Output Selection:" +msgstr "" + +#: ../src/strings.c:71 +msgid "Scan entire file, not only loaded sections" +msgstr "" + +#: ../src/strings.c:73 +msgid "Only NUL-terminated sequences of MIN-LEN characters or more are printed" +msgstr "" + +#: ../src/strings.c:74 +msgid "" +"Select character size and endianess: s = 7-bit, S = 8-bit, {b,l} = 16-bit, " +"{B,L} = 32-bit" +msgstr "" + +#: ../src/strings.c:78 +msgid "Print name of the file before each string." +msgstr "" + +#: ../src/strings.c:80 +msgid "Print location of the string in base 8, 10, or 16 respectively." +msgstr "" + +#: ../src/strings.c:81 +msgid "Alias for --radix=o" +msgstr "" + +#. Short description of program. +#: ../src/strings.c:88 +msgid "Print the strings of printable characters in files." +msgstr "" + +#: ../src/strings.c:268 ../src/strings.c:303 +#, c-format +msgid "invalid value '%s' for %s parameter" +msgstr "" + +#: ../src/strings.c:314 +#, c-format +msgid "invalid minimum length of matched string size" +msgstr "" + +#: ../src/strings.c:601 +#, c-format +msgid "lseek64 failed" +msgstr "" + +#: ../src/strings.c:616 ../src/strings.c:680 +#, c-format +msgid "re-mmap failed" +msgstr "" + +#: ../src/strings.c:653 +#, c-format +msgid "mprotect failed" +msgstr "" + +#: ../src/unstrip.c:77 +msgid "Match MODULE against file names, not module names" +msgstr "" + +#: ../src/unstrip.c:78 +msgid "Silently skip unfindable files" +msgstr "" + +#: ../src/unstrip.c:81 +msgid "Place output into FILE" +msgstr "" + +#: ../src/unstrip.c:83 +msgid "Create multiple output files under DIRECTORY" +msgstr "" + +#: ../src/unstrip.c:84 +msgid "Use module rather than file names" +msgstr "" + +#: ../src/unstrip.c:86 +msgid "Create output for modules that have no separate debug information" +msgstr "" + +#: ../src/unstrip.c:89 +msgid "Apply relocations to section contents in ET_REL files" +msgstr "" + +#: ../src/unstrip.c:91 +msgid "Only list module and file names, build IDs" +msgstr "" + +#: ../src/unstrip.c:133 +#, c-format +msgid "-d option specified twice" +msgstr "" + +#: ../src/unstrip.c:165 +#, c-format +msgid "only one of -o or -d allowed" +msgstr "" + +#: ../src/unstrip.c:174 +#, c-format +msgid "-n cannot be used with explicit files or -o or -d" +msgstr "" + +#: ../src/unstrip.c:189 +#, c-format +msgid "output directory '%s'" +msgstr "" + +#: ../src/unstrip.c:198 +#, c-format +msgid "exactly two file arguments are required" +msgstr "" + +#: ../src/unstrip.c:204 +#, c-format +msgid "-m, -a, -R, and -i options not allowed with explicit files" +msgstr "" + +#: ../src/unstrip.c:217 +#, c-format +msgid "-o or -d is required when using implicit files" +msgstr "" + +#: ../src/unstrip.c:253 +#, c-format +msgid "cannot create ELF header: %s" +msgstr "" + +#: ../src/unstrip.c:258 +#, c-format +msgid "cannot copy ELF header: %s" +msgstr "" + +#: ../src/unstrip.c:263 ../src/unstrip.c:1816 +#, c-format +msgid "cannot create program headers: %s" +msgstr "" + +#: ../src/unstrip.c:269 +#, c-format +msgid "cannot copy program header: %s" +msgstr "" + +#: ../src/unstrip.c:279 +#, c-format +msgid "cannot copy section header: %s" +msgstr "" + +#: ../src/unstrip.c:282 ../src/unstrip.c:1504 +#, c-format +msgid "cannot get section data: %s" +msgstr "" + +#: ../src/unstrip.c:284 ../src/unstrip.c:1506 +#, c-format +msgid "cannot copy section data: %s" +msgstr "" + +#: ../src/unstrip.c:308 +#, c-format +msgid "cannot create directory '%s'" +msgstr "" + +#: ../src/unstrip.c:348 ../src/unstrip.c:762 ../src/unstrip.c:1539 +#, c-format +msgid "cannot get symbol table entry: %s" +msgstr "" + +#: ../src/unstrip.c:364 ../src/unstrip.c:579 ../src/unstrip.c:600 +#: ../src/unstrip.c:612 ../src/unstrip.c:1560 ../src/unstrip.c:1690 +#: ../src/unstrip.c:1714 +#, c-format +msgid "cannot update symbol table: %s" +msgstr "" + +#: ../src/unstrip.c:381 ../src/unstrip.c:431 ../src/unstrip.c:561 +#: ../src/unstrip.c:1208 ../src/unstrip.c:1524 ../src/unstrip.c:1719 +#: ../src/unstrip.c:1790 +#, c-format +msgid "cannot update section header: %s" +msgstr "" + +#: ../src/unstrip.c:407 ../src/unstrip.c:418 +#, c-format +msgid "cannot update relocation: %s" +msgstr "" + +#: ../src/unstrip.c:506 +#, c-format +msgid "cannot get symbol version: %s" +msgstr "" + +#: ../src/unstrip.c:518 +#, c-format +msgid "unexpected section type in [%Zu] with sh_link to symtab" +msgstr "" + +#: ../src/unstrip.c:768 +#, c-format +msgid "invalid string offset in symbol [%Zu]" +msgstr "" + +#: ../src/unstrip.c:910 ../src/unstrip.c:1247 +#, c-format +msgid "cannot read section [%Zu] name: %s" +msgstr "" + +#: ../src/unstrip.c:951 ../src/unstrip.c:970 ../src/unstrip.c:1003 +#, c-format +msgid "cannot read '.gnu.prelink_undo' section: %s" +msgstr "" + +#: ../src/unstrip.c:991 +#, c-format +msgid "invalid contents in '%s' section" +msgstr "" + +#: ../src/unstrip.c:1046 ../src/unstrip.c:1369 +#, c-format +msgid "cannot find matching section for [%Zu] '%s'" +msgstr "" + +#: ../src/unstrip.c:1170 ../src/unstrip.c:1185 ../src/unstrip.c:1450 +#, c-format +msgid "cannot add section name to string table: %s" +msgstr "" + +#: ../src/unstrip.c:1194 +#, c-format +msgid "cannot update section header string table data: %s" +msgstr "" + +#: ../src/unstrip.c:1222 ../src/unstrip.c:1226 +#, c-format +msgid "cannot get section header string table section index: %s" +msgstr "" + +#: ../src/unstrip.c:1230 ../src/unstrip.c:1234 ../src/unstrip.c:1465 +#, c-format +msgid "cannot get section count: %s" +msgstr "" + +#: ../src/unstrip.c:1292 ../src/unstrip.c:1384 +#, c-format +msgid "cannot read section header string table: %s" +msgstr "" + +#: ../src/unstrip.c:1444 +#, c-format +msgid "cannot add new section: %s" +msgstr "" + +#: ../src/unstrip.c:1547 +#, c-format +msgid "symbol [%Zu] has invalid section index" +msgstr "" + +#: ../src/unstrip.c:1799 +#, c-format +msgid "cannot get ELF header: %s" +msgstr "" + +#: ../src/unstrip.c:1826 +#, c-format +msgid "cannot update program header: %s" +msgstr "" + +#: ../src/unstrip.c:1831 ../src/unstrip.c:1910 +#, c-format +msgid "cannot write output file: %s" +msgstr "" + +#: ../src/unstrip.c:1879 +#, c-format +msgid "DWARF data not adjusted for prelinking bias; consider prelink -u" +msgstr "" + +#: ../src/unstrip.c:1882 +#, c-format +msgid "" +"DWARF data in '%s' not adjusted for prelinking bias; consider prelink -u" +msgstr "" + +#: ../src/unstrip.c:1901 ../src/unstrip.c:1941 ../src/unstrip.c:1953 +#: ../src/unstrip.c:2033 +#, c-format +msgid "cannot create ELF descriptor: %s" +msgstr "" + +#: ../src/unstrip.c:1959 +#, c-format +msgid "'%s' and '%s' do not seem to match" +msgstr "" + +#: ../src/unstrip.c:1990 +#, c-format +msgid "cannot find stripped file for module '%s': %s" +msgstr "" + +#: ../src/unstrip.c:1994 +#, c-format +msgid "cannot open stripped file '%s' for module '%s': %s" +msgstr "" + +#: ../src/unstrip.c:2009 +#, c-format +msgid "cannot find debug file for module '%s': %s" +msgstr "" + +#: ../src/unstrip.c:2013 +#, c-format +msgid "cannot open debug file '%s' for module '%s': %s" +msgstr "" + +#: ../src/unstrip.c:2026 +#, c-format +msgid "module '%s' file '%s' is not stripped" +msgstr "" + +#: ../src/unstrip.c:2057 +#, c-format +msgid "cannot cache section addresses for module '%s': %s" +msgstr "" + +#: ../src/unstrip.c:2190 +#, c-format +msgid "no matching modules found" +msgstr "" + +#: ../src/unstrip.c:2199 +#, c-format +msgid "matched more than one module" +msgstr "" + +#: ../src/unstrip.c:2246 +msgid "" +"STRIPPED-FILE DEBUG-FILE\n" +"[MODULE...]" +msgstr "" + +#: ../src/unstrip.c:2247 +msgid "" +"Combine stripped files with separate symbols and debug information.\vThe " +"first form puts the result in DEBUG-FILE if -o was not given.\n" +"\n" +"MODULE arguments give file name patterns matching modules to process.\n" +"With -f these match the file name of the main (stripped) file (slashes are " +"never special), otherwise they match the simple module names. With no " +"arguments, process all modules found.\n" +"\n" +"Multiple modules are written to files under OUTPUT-DIRECTORY, creating " +"subdirectories as needed. With -m these files have simple module names, " +"otherwise they have the name of the main file complete with directory " +"underneath OUTPUT-DIRECTORY.\n" +"\n" +"With -n no files are written, but one line to standard output for each " +"module:\n" +"\tSTART+SIZE BUILDID FILE DEBUGFILE MODULENAME\n" +"START and SIZE are hexadecimal giving the address bounds of the module. " +"BUILDID is hexadecimal for the build ID bits, or - if no ID is known; the " +"hexadecimal may be followed by @0xADDR giving the address where the ID " +"resides if that is known. FILE is the file name found for the module, or - " +"if none was found, or . if an ELF image is available but not from any named " +"file. DEBUGFILE is the separate debuginfo file name, or - if no debuginfo " +"was found, or . if FILE contains the debug information." +msgstr "" + +#: ../src/objdump.c:61 +msgid "Mode selection:" +msgstr "" + +#: ../src/objdump.c:62 +msgid "Display relocation information." +msgstr "" + +#: ../src/objdump.c:64 +msgid "Display the full contents of all sections requested" +msgstr "" + +#: ../src/objdump.c:66 +msgid "Display assembler code of executable sections" +msgstr "" + +#: ../src/objdump.c:68 +msgid "Output option selection:" +msgstr "" + +#: ../src/objdump.c:70 +msgid "Only display information for section NAME." +msgstr "" + +#. Short description of program. +#: ../src/objdump.c:76 +msgid "Show information from FILEs (a.out by default)." +msgstr "" + +#: ../src/objdump.c:274 ../src/objdump.c:286 +#, c-format +msgid "while close `%s'" +msgstr "" + +#: ../src/objdump.c:510 +#, c-format +msgid "" +"\n" +"RELOCATION RECORDS FOR [%s]:\n" +"%-*s TYPE VALUE\n" +msgstr "" + +#: ../src/objdump.c:513 +msgid "OFFSET" +msgstr "" + +#: ../src/objdump.c:576 +#, c-format +msgid "Contents of section %s:\n" +msgstr "" + +#: ../src/objdump.c:676 +#, c-format +msgid "cannot disassemble" +msgstr "" + -- cgit v1.2.1 From 243fa26f307a43b30fbfb01cadffec1002c3889e Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 8 Apr 2009 17:05:43 -0700 Subject: dwfl_module_getsym should not adjust symbols from non-SHF_ALLOC sections. --- libdwfl/ChangeLog | 7 +++++++ libdwfl/dwfl_module_getsym.c | 4 ++-- libdwfl/relocate.c | 8 +++++--- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/libdwfl/ChangeLog b/libdwfl/ChangeLog index d420e3c9..91c2f315 100644 --- a/libdwfl/ChangeLog +++ b/libdwfl/ChangeLog @@ -1,3 +1,10 @@ +2009-04-08 Roland McGrath + + * relocate.c (__libdwfl_relocate_value): Don't adjust a value from + a non-SHF_ALLOC section. + (relocate_getsym): Test st_shndx for SHN_* values, not *SHNDX. + * dwfl_module_getsym.c (dwfl_module_getsym): Likewise. + 2009-03-09 Roland McGrath * dwfl_module_build_id.c (__libdwfl_find_build_id): Move SHSTRNDX diff --git a/libdwfl/dwfl_module_getsym.c b/libdwfl/dwfl_module_getsym.c index 5f289ccb..a4ce2844 100644 --- a/libdwfl/dwfl_module_getsym.c +++ b/libdwfl/dwfl_module_getsym.c @@ -1,5 +1,5 @@ /* Find debugging and symbol information for a module in libdwfl. - Copyright (C) 2006,2007 Red Hat, Inc. + Copyright (C) 2006,2007,2009 Red Hat, Inc. This file is part of Red Hat elfutils. Red Hat elfutils is free software; you can redistribute it and/or modify @@ -77,7 +77,7 @@ dwfl_module_getsym (Dwfl_Module *mod, int ndx, if (shndxp != NULL) *shndxp = shndx; - switch (shndx) + switch (sym->st_shndx) { case SHN_ABS: case SHN_UNDEF: diff --git a/libdwfl/relocate.c b/libdwfl/relocate.c index ef1daeee..e809a979 100644 --- a/libdwfl/relocate.c +++ b/libdwfl/relocate.c @@ -95,8 +95,10 @@ __libdwfl_relocate_value (Dwfl_Module *mod, Elf *elf, size_t *shstrndx, return DWFL_E_LIBELF; } - /* Apply the adjustment. */ - *value += refshdr->sh_addr + mod->main.bias; + if (refshdr->sh_flags & SHF_ALLOC) + /* Apply the adjustment. */ + *value += refshdr->sh_addr + mod->main.bias; + return DWFL_E_NOERROR; } @@ -183,7 +185,7 @@ relocate_getsym (Dwfl_Module *mod, if (sym->st_shndx != SHN_XINDEX) *shndx = sym->st_shndx; - switch (*shndx) + switch (sym->st_shndx) { case SHN_ABS: case SHN_UNDEF: -- cgit v1.2.1 From 785dbb11eddd5d802a183552704be33f7493b671 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 8 Apr 2009 17:15:01 -0700 Subject: Fix double-adjust for ET_REL. --- libdwfl/ChangeLog | 3 +++ libdwfl/dwfl_module_getsym.c | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/libdwfl/ChangeLog b/libdwfl/ChangeLog index 91c2f315..a2487ed0 100644 --- a/libdwfl/ChangeLog +++ b/libdwfl/ChangeLog @@ -1,5 +1,8 @@ 2009-04-08 Roland McGrath + * dwfl_module_getsym.c: Don't adjust for bias again after + __libdwfl_relocate_value. + * relocate.c (__libdwfl_relocate_value): Don't adjust a value from a non-SHF_ALLOC section. (relocate_getsym): Test st_shndx for SHN_* values, not *SHNDX. diff --git a/libdwfl/dwfl_module_getsym.c b/libdwfl/dwfl_module_getsym.c index a4ce2844..8f02d71f 100644 --- a/libdwfl/dwfl_module_getsym.c +++ b/libdwfl/dwfl_module_getsym.c @@ -99,8 +99,9 @@ dwfl_module_getsym (Dwfl_Module *mod, int ndx, return NULL; } } - /* Apply the bias to the symbol value. */ - sym->st_value += mod->symfile->bias; + else + /* Apply the bias to the symbol value. */ + sym->st_value += mod->symfile->bias; break; } -- cgit v1.2.1 From 68f29f9019cc75044394eb5572e9ab0157cfb707 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 8 Apr 2009 17:52:33 -0700 Subject: Make dwfl_module_getsym yield shndx -1 for any non-allocated section. --- libdwfl/dwfl_module_getsym.c | 15 ++++++++++++++- libdwfl/libdwfl.h | 11 ++++++----- 2 files changed, 20 insertions(+), 6 deletions(-) diff --git a/libdwfl/dwfl_module_getsym.c b/libdwfl/dwfl_module_getsym.c index 8f02d71f..816d2143 100644 --- a/libdwfl/dwfl_module_getsym.c +++ b/libdwfl/dwfl_module_getsym.c @@ -75,7 +75,20 @@ dwfl_module_getsym (Dwfl_Module *mod, int ndx, shndx = sym->st_shndx; if (shndxp != NULL) - *shndxp = shndx; + { + *shndxp = shndx; + + /* Yield -1 in case of a non-SHF_ALLOC section. */ + if (sym->st_shndx == SHN_XINDEX + || (sym->st_shndx < SHN_LORESERVE && sym->st_shndx != SHN_UNDEF)) + { + GElf_Shdr shdr_mem; + GElf_Shdr *shdr = gelf_getshdr (elf_getscn (mod->symfile->elf, shndx), + &shdr_mem); + if (unlikely (shdr == NULL) || !(shdr->sh_flags & SHF_ALLOC)) + *shndxp = (GElf_Word) -1; + } + } switch (sym->st_shndx) { diff --git a/libdwfl/libdwfl.h b/libdwfl/libdwfl.h index b6ae7765..91d43802 100644 --- a/libdwfl/libdwfl.h +++ b/libdwfl/libdwfl.h @@ -1,5 +1,5 @@ /* Interfaces for libdwfl. - Copyright (C) 2005, 2006, 2007, 2008 Red Hat, Inc. + Copyright (C) 2005-2009 Red Hat, Inc. This file is part of Red Hat elfutils. Red Hat elfutils is free software; you can redistribute it and/or modify @@ -423,10 +423,11 @@ extern int dwfl_module_getsymtab (Dwfl_Module *mod); /* Fetch one entry from the module's symbol table. On errors, returns NULL. If successful, fills in *SYM and returns the string for st_name. - This works like gelf_getsym except that st_value is always adjusted - to an absolute value based on the module's location. If SHNDXP is - non-null, it's set with the section index (whether from st_shndx or - extended index table). */ + This works like gelf_getsym except that st_value is always adjusted to + an absolute value based on the module's location, when the symbol is in + an SHF_ALLOC section. If SHNDXP is non-null, it's set with the section + index (whether from st_shndx or extended index table); in case of a + symbol in a non-allocated section, *SHNDXP is instead set to -1. */ extern const char *dwfl_module_getsym (Dwfl_Module *mod, int ndx, GElf_Sym *sym, GElf_Word *shndxp) __nonnull_attribute__ (3); -- cgit v1.2.1 From ec843233c6e563c59ba03947a9ceb0bc285779d6 Mon Sep 17 00:00:00 2001 From: elsupergomez Date: Thu, 9 Apr 2009 15:37:35 +0000 Subject: Sending translation for Spanish --- po/es.po | 58 +++++++++++++++++++++++++++++----------------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/po/es.po b/po/es.po index f897a466..4a0b45a1 100644 --- a/po/es.po +++ b/po/es.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: elfutils\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n" -"POT-Creation-Date: 2009-04-02 19:14+0000\n" +"POT-Creation-Date: 2009-04-09 14:04+0000\n" "PO-Revision-Date: \n" -"Last-Translator: Domingo Becker \n" +"Last-Translator: Claudio Rodrigo Pereyra Diaz \n" "Language-Team: Fedora Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -462,7 +462,7 @@ msgstr "No se puede encontrar nodo de tipo de letra '%s'." #: ../libdwfl/argp-std.c:273 msgid "cannot find kernel or modules" -msgstr "" +msgstr "imposible encontrar kernel o modulos" #: ../libebl/eblbackendname.c:63 #, fuzzy @@ -565,11 +565,11 @@ msgstr " [N] - usa la instancia [cuenta] del nombre\n" #: ../src/ar.c:90 msgid "Do not replace existing files with extracted files." -msgstr "" +msgstr "No reemplazar los archivos existentes con los archivos extraídos." #: ../src/ar.c:91 msgid "Allow filename to be truncated if necessary." -msgstr "" +msgstr "Permitir truncamiento del nombre de archivo de ser necesario" #: ../src/ar.c:93 #, fuzzy @@ -598,7 +598,7 @@ msgstr "lo mismo que --format=posix" #: ../src/ar.c:98 msgid "Suppress message when library has to be created." -msgstr "" +msgstr "Suprimir mensaje cuando se alla creado la libreria" #: ../src/ar.c:100 #, fuzzy @@ -613,7 +613,7 @@ msgstr "solamente añade ficheros más recientes que la copia del archivo" #. Short description of program. #: ../src/ar.c:107 msgid "Create, modify, and extract from archives." -msgstr "" +msgstr "Crear, modificar, y extraer desde archivos." #. Strings for arguments in help texts. #: ../src/ar.c:110 @@ -884,7 +884,7 @@ msgstr "Formato de salida:\n" #: ../src/nm.c:87 msgid "Print name of the input file before every symbol" -msgstr "" +msgstr "Imprimir el nombre del archivo de entrada antes de cada símbolo" #: ../src/nm.c:90 msgid "Use the output format FORMAT. FORMAT can be `bsd', `sysv' or `posix'. The default is `sysv'" @@ -1030,7 +1030,7 @@ msgstr "Mí_n" #: ../src/nm.c:464 #, c-format msgid "cannot reset archive offset to beginning" -msgstr "" +msgstr "imposible restablecer archivo compensar al inicio" #: ../src/nm.c:488 #: ../src/objdump.c:344 @@ -1936,77 +1936,77 @@ msgstr "10 x 11 in" #: ../src/readelf.c:2943 #, c-format msgid " %s: %, %s\n" -msgstr "" +msgstr " %s: %, %s\n" #: ../src/readelf.c:2946 #, c-format msgid " %s: %\n" -msgstr "" +msgstr " %s: %\n" #: ../src/readelf.c:2949 #, c-format msgid " %s: %s\n" -msgstr "" +msgstr " %s: %s\n" #: ../src/readelf.c:2956 #, c-format msgid " %u: %\n" -msgstr "" +msgstr " %u: %\n" #: ../src/readelf.c:2959 #, c-format msgid " %u: %s\n" -msgstr "" +msgstr " %u: %s\n" #: ../src/readelf.c:2994 #, c-format msgid "%s+%# <%s+%#>" -msgstr "" +msgstr "%s+%# <%s+%#>" #: ../src/readelf.c:2997 #, c-format msgid "%s+%#0* <%s+%#>" -msgstr "" +msgstr "%s+%#0* <%s+%#>" #: ../src/readelf.c:3002 #, c-format msgid "%# <%s+%#>" -msgstr "" +msgstr "%# <%s+%#>" #: ../src/readelf.c:3005 #, c-format msgid "%#0* <%s+%#>" -msgstr "" +msgstr "%#0* <%s+%#>" #: ../src/readelf.c:3011 #, c-format msgid "%s+%# <%s>" -msgstr "" +msgstr "%s+%# <%s>" #: ../src/readelf.c:3014 #, c-format msgid "%s+%#0* <%s>" -msgstr "" +msgstr "%s+%#0* <%s>" #: ../src/readelf.c:3018 #, c-format msgid "%# <%s>" -msgstr "" +msgstr "%# <%s>" #: ../src/readelf.c:3021 #, c-format msgid "%#0* <%s>" -msgstr "" +msgstr "%#0* <%s>" #: ../src/readelf.c:3026 #, c-format msgid "%s+%#" -msgstr "" +msgstr "%s+%#" #: ../src/readelf.c:3029 #, c-format msgid "%s+%#0*" -msgstr "" +msgstr "%s+%#0*" #: ../src/readelf.c:3137 #, fuzzy, c-format @@ -2092,7 +2092,7 @@ msgstr[1] "" #: ../src/readelf.c:4137 #, c-format msgid " [%*zu] ???\n" -msgstr "" +msgstr " [%*zu] ???\n" #: ../src/readelf.c:4139 #, c-format @@ -2133,12 +2133,12 @@ msgstr " %8.8lx %8.8lx %8.8lx (dirección base)\n" #: ../src/readelf.c:4210 #, c-format msgid " [%6tx] %s..%s\n" -msgstr "" +msgstr " [%6tx] %s..%s\n" #: ../src/readelf.c:4212 #, c-format msgid " %s..%s\n" -msgstr "" +msgstr " %s..%s\n" #: ../src/readelf.c:4609 #: ../src/readelf.c:6043 @@ -2427,12 +2427,12 @@ msgstr "" #: ../src/readelf.c:5760 #, c-format msgid " [%6tx] %s..%s" -msgstr "" +msgstr " [%6tx] %s..%s" #: ../src/readelf.c:5762 #, c-format msgid " %s..%s" -msgstr "" +msgstr " %s..%s" #: ../src/readelf.c:5815 #, c-format -- cgit v1.2.1 From 04a14163323bc4d2d335909a2af7259bc53ddf8b Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Tue, 14 Apr 2009 01:02:17 -0700 Subject: Fix strip -f infinite loop when coping with some extra kooky object sections. --- src/ChangeLog | 5 +++++ src/strip.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 88dd78a9..87c7d7d8 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2009-04-14 Roland McGrath + + * strip.c (handle_elf: check_preserved): Don't note any change when + .debug_data is already filled from a previous pass. + 2009-02-05 Ulrich Drepper * objdump.c (show_relocs_x): Minor cleanups. diff --git a/src/strip.c b/src/strip.c index 27eb2106..d788ebf2 100644 --- a/src/strip.c +++ b/src/strip.c @@ -835,7 +835,8 @@ handle_elf (int fd, Elf *elf, const char *prefix, const char *fname, inline void check_preserved (size_t i) { - if (i != 0 && shdr_info[i].idx != 0) + if (i != 0 && shdr_info[i].idx != 0 + && shdr_info[i].debug_data == NULL) { if (shdr_info[i].data == NULL) shdr_info[i].data = elf_getdata (shdr_info[i].scn, NULL); -- cgit v1.2.1 From fa25326f44d65e0b1ee849cbd0da99c2808e1089 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Tue, 14 Apr 2009 02:38:19 -0700 Subject: Fix RHBZ#494858: fix bad address checks in core file support. --- libdwfl/ChangeLog | 10 ++++++++++ libdwfl/core-file.c | 14 ++++++++++---- libdwfl/dwfl_segment_report_module.c | 21 ++++++++++++++++++--- libdwfl/link_map.c | 1 - 4 files changed, 38 insertions(+), 8 deletions(-) diff --git a/libdwfl/ChangeLog b/libdwfl/ChangeLog index a2487ed0..d2c823fa 100644 --- a/libdwfl/ChangeLog +++ b/libdwfl/ChangeLog @@ -1,3 +1,13 @@ +2009-04-14 Roland McGrath + + * dwfl_segment_report_module.c: Handle DT_STRTAB value being either + absolute (already adjusted in place) or needing load bias adjustment. + + * core-file.c (dwfl_elf_phdr_memory_callback): Fix return value for + gelf_getphdr failure. Fix file size limit checks. + + * dwfl_segment_report_module.c: Fix underflow in DYNSTRSZ check. + 2009-04-08 Roland McGrath * dwfl_module_getsym.c: Don't adjust for bias again after diff --git a/libdwfl/core-file.c b/libdwfl/core-file.c index bc881eb9..77f208cc 100644 --- a/libdwfl/core-file.c +++ b/libdwfl/core-file.c @@ -1,5 +1,5 @@ /* Core file handling. - Copyright (C) 2008 Red Hat, Inc. + Copyright (C) 2008, 2009 Red Hat, Inc. This file is part of Red Hat elfutils. Red Hat elfutils is free software; you can redistribute it and/or modify @@ -278,7 +278,7 @@ dwfl_elf_phdr_memory_callback (Dwfl *dwfl, int ndx, do if (unlikely (gelf_getphdr (elf, ndx++, &phdr) == NULL)) - return true; + return false; while (phdr.p_type != PT_LOAD || ((phdr.p_vaddr + phdr.p_memsz + align - 1) & -align) <= vaddr); @@ -320,8 +320,14 @@ dwfl_elf_phdr_memory_callback (Dwfl *dwfl, int ndx, if (elf->map_address != NULL) (void) more (elf->maximum_size - start); - if (unlikely (end - start > elf->maximum_size)) - end = start + elf->maximum_size; + /* Make sure we don't look past the end of the actual file, + even if the headers tell us to. */ + if (unlikely (end > elf->maximum_size)) + end = elf->maximum_size; + + /* If the file is too small, there is nothing at all to get. */ + if (unlikely (start >= end)) + return false; if (elf->map_address != NULL) { diff --git a/libdwfl/dwfl_segment_report_module.c b/libdwfl/dwfl_segment_report_module.c index a6639be5..10787bdc 100644 --- a/libdwfl/dwfl_segment_report_module.c +++ b/libdwfl/dwfl_segment_report_module.c @@ -519,13 +519,28 @@ dwfl_segment_report_module (Dwfl *dwfl, int ndx, const char *name, size_t soname_size = 0; if (dynstrsz != 0 && dynstr_vaddr != 0) { - /* We know the bounds of the .dynstr section. */ - dynstr_vaddr += bias; + /* We know the bounds of the .dynstr section. + + The DYNSTR_VADDR pointer comes from the .dynamic section + (DT_STRTAB, detected above). Ordinarily the dynamic linker + will have adjusted this pointer in place so it's now an + absolute address. But sometimes .dynamic is read-only (in + vDSOs and odd architectures), and sometimes the adjustment + just hasn't happened yet in the memory image we looked at. + So treat DYNSTR_VADDR as an absolute address if it falls + within the module bounds, or try applying the phdr bias + when that adjusts it to fall within the module bounds. */ + + if ((dynstr_vaddr < module_start || dynstr_vaddr >= module_end) + && dynstr_vaddr + bias >= module_start + && dynstr_vaddr + bias < module_end) + dynstr_vaddr += bias; + if (unlikely (dynstr_vaddr + dynstrsz > module_end)) dynstrsz = 0; /* Try to get the DT_SONAME string. */ - if (soname_stroff != 0 && soname_stroff < dynstrsz - 1 + if (soname_stroff != 0 && soname_stroff + 1 < dynstrsz && ! read_portion (&soname, &soname_size, dynstr_vaddr + soname_stroff, 0)) name = soname; diff --git a/libdwfl/link_map.c b/libdwfl/link_map.c index 30fb445a..2d4d75f1 100644 --- a/libdwfl/link_map.c +++ b/libdwfl/link_map.c @@ -585,7 +585,6 @@ consider_executable (Dwfl_Module *mod, GElf_Addr at_phdr, GElf_Addr at_entry, (*memory_callback) (mod->dwfl, -1, &buffer, &buffer_available, 0, 0, memory_callback_arg); - if (*elfclass == ELFCLASSNONE) *elfclass = ehdr.e_ident[EI_CLASS]; else if (*elfclass != ehdr.e_ident[EI_CLASS]) -- cgit v1.2.1 From 54eb890e4475fcfc1a5444eaf73f44ab4cf7bb03 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Tue, 14 Apr 2009 03:18:10 -0700 Subject: NEWS items for notable changes since 0.140 --- NEWS | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/NEWS b/NEWS index 93ebc81d..98c26ea6 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,11 @@ +Version 0.141: + +libebl: sparc backend fixes +libdwfl: fix dwfl_module_build_id for prelinked DSO case; + fixes in core file support; + dwfl_module_getsym interface improved for non-address symbols +strip: fix infinite loop on strange inputs with -f + Version 0.140: libelf: Fix regression in creation of section header -- cgit v1.2.1 From 94f438311f24a11c17ab4d9ed73c6fdc9b059e3e Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Tue, 14 Apr 2009 04:39:32 -0700 Subject: Fix error message. --- src/ChangeLog | 2 ++ src/readelf.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 87c7d7d8..1bbc075a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2009-04-14 Roland McGrath + * readelf.c (handle_core_registers): Fix error message. + * strip.c (handle_elf: check_preserved): Don't note any change when .debug_data is already filled from a previous pass. diff --git a/src/readelf.c b/src/readelf.c index f4ed033e..05382239 100644 --- a/src/readelf.c +++ b/src/readelf.c @@ -6922,7 +6922,7 @@ handle_core_registers (Ebl *ebl, Elf *core, const void *desc, ssize_t maxnreg = ebl_register_info (ebl, 0, NULL, 0, NULL, NULL, NULL, NULL); if (maxnreg <= 0) error (EXIT_FAILURE, 0, - gettext ("cannot register info: %s"), elf_errmsg (-1)); + gettext ("cannot get register info: %s"), elf_errmsg (-1)); struct register_info regs[maxnreg]; memset (regs, 0, sizeof regs); -- cgit v1.2.1 From eb9ba470ff1f65a85f47cd6c325acf836abd2af8 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Tue, 14 Apr 2009 18:44:45 -0700 Subject: Nominal ARM support. --- NEWS | 3 +- backends/ChangeLog | 19 ++++ backends/Makefile.am | 5 +- backends/arm_attrs.c | 242 ++++++++++++++++++++++++++++++++++++++++++++++++ backends/arm_auxv.c | 46 +++++++++ backends/arm_corenote.c | 73 +++++++++++++++ backends/arm_init.c | 10 +- backends/arm_regs.c | 98 ++++++++++++++++++++ backends/arm_retval.c | 138 +++++++++++++++++++++++++++ backends/arm_symbol.c | 73 ++++++++++++++- backends/ia64_symbol.c | 6 +- libcpu/ChangeLog | 5 + libcpu/Makefile.am | 1 + libelf/ChangeLog | 4 + libelf/elf.h | 64 ++++++++----- src/ChangeLog | 3 + src/readelf.c | 9 +- 17 files changed, 765 insertions(+), 34 deletions(-) create mode 100644 backends/arm_attrs.c create mode 100644 backends/arm_auxv.c create mode 100644 backends/arm_corenote.c create mode 100644 backends/arm_regs.c create mode 100644 backends/arm_retval.c diff --git a/NEWS b/NEWS index 98c26ea6..5effc77a 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,7 @@ Version 0.141: -libebl: sparc backend fixes +libebl: sparc backend fixes; + some more arm backend support libdwfl: fix dwfl_module_build_id for prelinked DSO case; fixes in core file support; dwfl_module_getsym interface improved for non-address symbols diff --git a/backends/ChangeLog b/backends/ChangeLog index 4b48a8fa..d5afa1b6 100644 --- a/backends/ChangeLog +++ b/backends/ChangeLog @@ -1,3 +1,22 @@ +2009-04-14 Roland McGrath + + * arm_retval.c: New file. + * arm_attrs.c: New file. + * Makefile.am (arm_SRCS): Add them. + * arm_symbol.c (arm_segment_type_name): New function. + (arm_section_type_name): New function. + (arm_machine_flag_check): New function. + * arm_init.c (arm_init): Initialize those hooks. + + * arm_regs.c: New file. + * arm_corenote.c: New file. + * arm_auxv.c: New file. + * Makefile.am (arm_SRCS): Add them. + * arm_init.c (arm_init): Initialize core_note, register_info, + and auxv_info hooks. + + * ia64_symbol.c (ia64_section_type_name): Remove "SHT_" prefixes. + 2009-04-01 Roland McGrath * sparc_reloc.def: Update table. diff --git a/backends/Makefile.am b/backends/Makefile.am index 5b552946..6d7eb667 100644 --- a/backends/Makefile.am +++ b/backends/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to create Makefile.in ## -## Copyright (C) 2000-2006, 2007, 2008 Red Hat, Inc. +## Copyright (C) 2000-2009 Red Hat, Inc. ## This file is part of Red Hat elfutils. ## ## Red Hat elfutils is free software; you can redistribute it and/or modify @@ -85,7 +85,8 @@ alpha_SRCS = alpha_init.c alpha_symbol.c alpha_retval.c alpha_regs.c \ libebl_alpha_pic_a_SOURCES = $(alpha_SRCS) am_libebl_alpha_pic_a_OBJECTS = $(alpha_SRCS:.c=.os) -arm_SRCS = arm_init.c arm_symbol.c +arm_SRCS = arm_init.c arm_symbol.c arm_regs.c arm_corenote.c \ + arm_auxv.c arm_attrs.c arm_retval.c libebl_arm_pic_a_SOURCES = $(arm_SRCS) am_libebl_arm_pic_a_OBJECTS = $(arm_SRCS:.c=.os) diff --git a/backends/arm_attrs.c b/backends/arm_attrs.c new file mode 100644 index 00000000..84f4d451 --- /dev/null +++ b/backends/arm_attrs.c @@ -0,0 +1,242 @@ +/* Object attribute tags for ARM. + Copyright (C) 2009 Red Hat, Inc. + This file is part of Red Hat elfutils. + + Red Hat elfutils 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; version 2 of the License. + + Red Hat elfutils 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 Red Hat elfutils; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA. + + Red Hat elfutils is an included package of the Open Invention Network. + An included package of the Open Invention Network is a package for which + Open Invention Network licensees cross-license their patents. No patent + license is granted, either expressly or impliedly, by designation as an + included package. Should you wish to participate in the Open Invention + Network licensing program, please visit www.openinventionnetwork.com + . */ + +#ifdef HAVE_CONFIG_H +# include +#endif + +#include +#include + +#define BACKEND arm_ +#include "libebl_CPU.h" + +#define KNOWN_VALUES(...) do \ + { \ + static const char *table[] = { __VA_ARGS__ }; \ + if (value < sizeof table / sizeof table[0]) \ + *value_name = table[value]; \ + } while (0) + +bool +arm_check_object_attribute (ebl, vendor, tag, value, tag_name, value_name) + Ebl *ebl __attribute__ ((unused)); + const char *vendor; + int tag; + uint64_t value __attribute__ ((unused)); + const char **tag_name; + const char **value_name; +{ + if (!strcmp (vendor, "aeabi")) + switch (tag) + { + case 4: + *tag_name = "CPU_raw_name"; + return true; + case 5: + *tag_name = "CPU_name"; + return true; + case 6: + *tag_name = "CPU_arch"; + KNOWN_VALUES ("Pre-v4", + "v4", + "v4T", + "v5T", + "v5TE", + "v5TEJ", + "v6", + "v6KZ", + "v6T2", + "v6K", + "v7", + "v6-M", + "v6S-M"); + return true; + case 7: + *tag_name = "CPU_arch_profile"; + switch (value) + { + case 'A': + *value_name = "Application"; + break; + case 'R': + *value_name = "Realtime"; + break; + case 'M': + *value_name = "Microcontroller"; + break; + } + return true; + case 8: + *tag_name = "ARM_ISA_use"; + KNOWN_VALUES ("No", "Yes"); + return true; + case 9: + *tag_name = "THUMB_ISA_use"; + KNOWN_VALUES ("No", "Thumb-1", "Thumb-2"); + return true; + case 10: + *tag_name = "VFP_arch"; + KNOWN_VALUES ("No", "VFPv1", "VFPv2", "VFPv3", "VFPv3-D16"); + return true; + case 11: + *tag_name = "WMMX_arch"; + KNOWN_VALUES ("No", "WMMXv1", "WMMXv2"); + return true; + case 12: + *tag_name = "Advanced_SIMD_arch"; + KNOWN_VALUES ("No", "NEONv1"); + return true; + case 13: + *tag_name = "PCS_config"; + KNOWN_VALUES ("None", + "Bare platform", + "Linux application", + "Linux DSO", + "PalmOS 2004", + "PalmOS (reserved)", + "SymbianOS 2004", + "SymbianOS (reserved)"); + return true; + case 14: + *tag_name = "ABI_PCS_R9_use"; + KNOWN_VALUES ("V6", "SB", "TLS", "Unused"); + return true; + case 15: + *tag_name = "ABI_PCS_RW_data"; + KNOWN_VALUES ("Absolute", "PC-relative", "SB-relative", "None"); + return true; + case 16: + *tag_name = "ABI_PCS_RO_data"; + KNOWN_VALUES ("Absolute", "PC-relative", "None"); + return true; + case 17: + *tag_name = "ABI_PCS_GOT_use"; + KNOWN_VALUES ("None", "direct", "GOT-indirect"); + return true; + case 18: + *tag_name = "ABI_PCS_wchar_t"; + return true; + case 19: + *tag_name = "ABI_FP_rounding"; + KNOWN_VALUES ("Unused", "Needed"); + return true; + case 20: + *tag_name = "ABI_FP_denormal"; + KNOWN_VALUES ("Unused", "Needed", "Sign only"); + return true; + case 21: + *tag_name = "ABI_FP_exceptions"; + KNOWN_VALUES ("Unused", "Needed"); + return true; + case 22: + *tag_name = "ABI_FP_user_exceptions"; + KNOWN_VALUES ("Unused", "Needed"); + return true; + case 23: + *tag_name = "ABI_FP_number_model"; + KNOWN_VALUES ("Unused", "Finite", "RTABI", "IEEE 754"); + return true; + case 24: + *tag_name = "ABI_align8_needed"; + KNOWN_VALUES ("No", "Yes", "4-byte"); + return true; + case 25: + *tag_name = "ABI_align8_preserved"; + KNOWN_VALUES ("No", "Yes, except leaf SP", "Yes"); + return true; + case 26: + *tag_name = "ABI_enum_size"; + KNOWN_VALUES ("Unused", "small", "int", "forced to int"); + return true; + case 27: + *tag_name = "ABI_HardFP_use"; + KNOWN_VALUES ("as VFP_arch", "SP only", "DP only", "SP and DP"); + return true; + case 28: + *tag_name = "ABI_VFP_args"; + KNOWN_VALUES ("AAPCS", "VFP registers", "custom"); + return true; + case 29: + *tag_name = "ABI_WMMX_args"; + KNOWN_VALUES ("AAPCS", "WMMX registers", "custom"); + return true; + case 30: + *tag_name = "ABI_optimization_goals"; + KNOWN_VALUES ("None", + "Prefer Speed", + "Aggressive Speed", + "Prefer Size", + "Aggressive Size", + "Prefer Debug", + "Aggressive Debug"); + return true; + case 31: + *tag_name = "ABI_FP_optimization_goals"; + KNOWN_VALUES ("None", + "Prefer Speed", + "Aggressive Speed", + "Prefer Size", + "Aggressive Size", + "Prefer Accuracy", + "Aggressive Accuracy"); + return true; + case 34: + *tag_name = "CPU_unaligned_access"; + KNOWN_VALUES ("None", "v6"); + return true; + case 36: + *tag_name = "VFP_HP_extension"; + KNOWN_VALUES ("Not Allowed", "Allowed"); + return true; + case 38: + *tag_name = "ABI_FP_16bit_format"; + KNOWN_VALUES ("None", "IEEE 754", "Alternative Format"); + return true; + case 64: + *tag_name = "nodefaults"; + return true; + case 65: + *tag_name = "also_compatible_with"; + return true; + case 66: + *tag_name = "T2EE_use"; + KNOWN_VALUES ("Not Allowed", "Allowed"); + return true; + case 67: + *tag_name = "conformance"; + return true; + case 68: + *tag_name = "Virtualization_use"; + KNOWN_VALUES ("Not Allowed", "Allowed"); + return true; + case 70: + *tag_name = "MPextension_use"; + KNOWN_VALUES ("Not Allowed", "Allowed"); + return true; + } + + return false; +} diff --git a/backends/arm_auxv.c b/backends/arm_auxv.c new file mode 100644 index 00000000..728f940d --- /dev/null +++ b/backends/arm_auxv.c @@ -0,0 +1,46 @@ +/* ARM-specific auxv handling. + Copyright (C) 2009 Red Hat, Inc. + This file is part of Red Hat elfutils. + + Red Hat elfutils 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; version 2 of the License. + + Red Hat elfutils 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 Red Hat elfutils; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA. + + Red Hat elfutils is an included package of the Open Invention Network. + An included package of the Open Invention Network is a package for which + Open Invention Network licensees cross-license their patents. No patent + license is granted, either expressly or impliedly, by designation as an + included package. Should you wish to participate in the Open Invention + Network licensing program, please visit www.openinventionnetwork.com + . */ + +#ifdef HAVE_CONFIG_H +# include +#endif + +#define BACKEND arm_ +#include "libebl_CPU.h" + +int +EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) +{ + if (a_type != AT_HWCAP) + return 0; + + *name = "HWCAP"; + *format = "b" + "swp\0" "half\0" "thumb\0" "26bit\0" + "fast-mult\0" "fpa\0" "vfp\0" "edsp\0" + "java\0" "iwmmxt\0" + "\0"; + return 1; +} diff --git a/backends/arm_corenote.c b/backends/arm_corenote.c new file mode 100644 index 00000000..6f2d3a3e --- /dev/null +++ b/backends/arm_corenote.c @@ -0,0 +1,73 @@ +/* ARM specific core note handling. + Copyright (C) 2009 Red Hat, Inc. + This file is part of Red Hat elfutils. + + Red Hat elfutils 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; version 2 of the License. + + Red Hat elfutils 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 Red Hat elfutils; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA. + + Red Hat elfutils is an included package of the Open Invention Network. + An included package of the Open Invention Network is a package for which + Open Invention Network licensees cross-license their patents. No patent + license is granted, either expressly or impliedly, by designation as an + included package. Should you wish to participate in the Open Invention + Network licensing program, please visit www.openinventionnetwork.com + . */ + +#ifdef HAVE_CONFIG_H +# include +#endif + +#include +#include +#include +#include +#include + +#define BACKEND arm_ +#include "libebl_CPU.h" + + +static const Ebl_Register_Location prstatus_regs[] = + { + { .offset = 0, .regno = 0, .count = 16, .bits = 32 }, /* r0..r15 */ + { .offset = 16 * 4, .regno = 128, .count = 1, .bits = 32 }, /* cpsr */ + }; +#define PRSTATUS_REGS_SIZE (18 * 4) + +#define PRSTATUS_REGSET_ITEMS \ + { \ + .name = "orig_r0", .type = ELF_T_SWORD, .format = 'd', \ + .offset = offsetof (struct EBLHOOK(prstatus), pr_reg) + (4 * 17), \ + .group = "register" \ + } + +static const Ebl_Register_Location fpregset_regs[] = + { + { .offset = 0, .regno = 96, .count = 8, .bits = 96 }, /* f0..f7 */ + }; +#define FPREGSET_SIZE 140 + +#define ULONG uint32_t +#define PID_T int32_t +#define UID_T uint16_t +#define GID_T uint16_t +#define ALIGN_ULONG 4 +#define ALIGN_PID_T 4 +#define ALIGN_UID_T 2 +#define ALIGN_GID_T 2 +#define TYPE_ULONG ELF_T_WORD +#define TYPE_PID_T ELF_T_SWORD +#define TYPE_UID_T ELF_T_HALF +#define TYPE_GID_T ELF_T_HALF + +#include "linux-core-note.c" diff --git a/backends/arm_init.c b/backends/arm_init.c index 172af198..15c0ee67 100644 --- a/backends/arm_init.c +++ b/backends/arm_init.c @@ -1,5 +1,5 @@ /* Initialization of Arm specific backend library. - Copyright (C) 2002, 2005 Red Hat, Inc. + Copyright (C) 2002, 2005, 2009 Red Hat, Inc. This file is part of Red Hat elfutils. Written by Ulrich Drepper , 2002. @@ -50,7 +50,15 @@ arm_init (elf, machine, eh, ehlen) /* We handle it. */ eh->name = "ARM"; arm_init_reloc (eh); + HOOK (eh, segment_type_name); + HOOK (eh, section_type_name); + HOOK (eh, machine_flag_check); HOOK (eh, reloc_simple_type); + HOOK (eh, register_info); + HOOK (eh, core_note); + HOOK (eh, auxv_info); + HOOK (eh, check_object_attribute); + HOOK (eh, return_value_location); return MODVERSION; } diff --git a/backends/arm_regs.c b/backends/arm_regs.c new file mode 100644 index 00000000..b7351ce2 --- /dev/null +++ b/backends/arm_regs.c @@ -0,0 +1,98 @@ +/* Register names and numbers for ARM DWARF. + Copyright (C) 2009 Red Hat, Inc. + This file is part of Red Hat elfutils. + + Red Hat elfutils 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; version 2 of the License. + + Red Hat elfutils 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 Red Hat elfutils; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA. + + Red Hat elfutils is an included package of the Open Invention Network. + An included package of the Open Invention Network is a package for which + Open Invention Network licensees cross-license their patents. No patent + license is granted, either expressly or impliedly, by designation as an + included package. Should you wish to participate in the Open Invention + Network licensing program, please visit www.openinventionnetwork.com + . */ + +#ifdef HAVE_CONFIG_H +# include +#endif + +#include +#include + +#define BACKEND arm_ +#include "libebl_CPU.h" + +ssize_t +arm_register_info (Ebl *ebl __attribute__ ((unused)), + int regno, char *name, size_t namelen, + const char **prefix, const char **setname, + int *bits, int *type) +{ + if (name == NULL) + return 129; + + if (regno < 0 || regno > 128 || namelen < 5) + return -1; + + *prefix = NULL; + *bits = 32; + *type = DW_ATE_signed; + *setname = "integer"; + + switch (regno) + { + case 0 ... 9: + name[0] = 'r'; + name[1] = regno + '0'; + namelen = 2; + break; + + case 10 ... 12: + name[0] = 'r'; + name[1] = '1'; + name[2] = regno % 10 + '0'; + namelen = 3; + break; + + case 13 ... 15: + *type = DW_ATE_address; + name[0] = "slp"[regno - 13]; + name[1] = "prc"[regno - 13]; + namelen = 2; + break; + + case 16 + 0 ... 16 + 7: + regno += 96 - 16; + /* Fall through. */ + case 96 + 0 ... 96 + 7: + *setname = "FPA"; + *type = DW_ATE_float; + *bits = 96; + name[0] = 'f'; + name[1] = regno - 96 + '0'; + namelen = 2; + break; + + case 128: + *type = DW_ATE_unsigned; + return stpcpy (name, "spsr") + 1 - name; + + default: + *setname = NULL; + return 0; + } + + name[namelen++] = '\0'; + return namelen; +} diff --git a/backends/arm_retval.c b/backends/arm_retval.c new file mode 100644 index 00000000..4ffc6e7c --- /dev/null +++ b/backends/arm_retval.c @@ -0,0 +1,138 @@ +/* Function return value location for ARM EABI. + Copyright (C) 2009 Red Hat, Inc. + This file is part of Red Hat elfutils. + + Red Hat elfutils 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; version 2 of the License. + + Red Hat elfutils 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 Red Hat elfutils; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA. + + Red Hat elfutils is an included package of the Open Invention Network. + An included package of the Open Invention Network is a package for which + Open Invention Network licensees cross-license their patents. No patent + license is granted, either expressly or impliedly, by designation as an + included package. Should you wish to participate in the Open Invention + Network licensing program, please visit www.openinventionnetwork.com + . */ + +#ifdef HAVE_CONFIG_H +# include +#endif + +#include +#include + +#define BACKEND arm_ +#include "libebl_CPU.h" + + +/* r0, or pair r0, r1, or aggregate up to r0-r3. */ +static const Dwarf_Op loc_intreg[] = + { + { .atom = DW_OP_reg0 }, { .atom = DW_OP_piece, .number = 4 }, + { .atom = DW_OP_reg1 }, { .atom = DW_OP_piece, .number = 4 }, + { .atom = DW_OP_reg2 }, { .atom = DW_OP_piece, .number = 4 }, + { .atom = DW_OP_reg3 }, { .atom = DW_OP_piece, .number = 4 }, + }; +#define nloc_intreg 1 +#define nloc_intregs(n) (2 * (n)) + +/* The return value is a structure and is actually stored in stack space + passed in a hidden argument by the caller. But, the compiler + helpfully returns the address of that space in r0. */ +static const Dwarf_Op loc_aggregate[] = + { + { .atom = DW_OP_breg0, .number = 0 } + }; +#define nloc_aggregate 1 + + +int +arm_return_value_location (Dwarf_Die *functypedie, const Dwarf_Op **locp) +{ + /* Start with the function's type, and get the DW_AT_type attribute, + which is the type of the return value. */ + + Dwarf_Attribute attr_mem; + Dwarf_Attribute *attr = dwarf_attr_integrate (functypedie, DW_AT_type, + &attr_mem); + if (attr == NULL) + /* The function has no return value, like a `void' function in C. */ + return 0; + + Dwarf_Die die_mem; + Dwarf_Die *typedie = dwarf_formref_die (attr, &die_mem); + int tag = dwarf_tag (typedie); + + /* Follow typedefs and qualifiers to get to the actual type. */ + while (tag == DW_TAG_typedef + || tag == DW_TAG_const_type || tag == DW_TAG_volatile_type + || tag == DW_TAG_restrict_type || tag == DW_TAG_mutable_type) + { + attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem); + typedie = dwarf_formref_die (attr, &die_mem); + tag = dwarf_tag (typedie); + } + + Dwarf_Word size; + switch (tag) + { + case -1: + return -1; + + case DW_TAG_subrange_type: + if (! dwarf_hasattr_integrate (typedie, DW_AT_byte_size)) + { + attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem); + typedie = dwarf_formref_die (attr, &die_mem); + tag = dwarf_tag (typedie); + } + /* Fall through. */ + + case DW_TAG_base_type: + case DW_TAG_enumeration_type: + case DW_TAG_pointer_type: + case DW_TAG_ptr_to_member_type: + if (dwarf_formudata (dwarf_attr_integrate (typedie, DW_AT_byte_size, + &attr_mem), &size) != 0) + { + if (tag == DW_TAG_pointer_type || tag == DW_TAG_ptr_to_member_type) + size = 4; + else + return -1; + } + if (size <= 16) + { + intreg: + *locp = loc_intreg; + return size <= 4 ? nloc_intreg : nloc_intregs ((size + 3) / 4); + } + + aggregate: + *locp = loc_aggregate; + return nloc_aggregate; + + case DW_TAG_structure_type: + case DW_TAG_class_type: + case DW_TAG_union_type: + case DW_TAG_array_type: + if (dwarf_formudata (dwarf_attr_integrate (typedie, DW_AT_byte_size, + &attr_mem), &size) == 0 + && size > 0 && size <= 4) + goto intreg; + goto aggregate; + } + + /* XXX We don't have a good way to return specific errors from ebl calls. + This value means we do not understand the type, but it is well-formed + DWARF and might be valid. */ + return -2; +} diff --git a/backends/arm_symbol.c b/backends/arm_symbol.c index 6d2f56d3..e08874bb 100644 --- a/backends/arm_symbol.c +++ b/backends/arm_symbol.c @@ -1,7 +1,6 @@ /* Arm specific symbolic name handling. - Copyright (C) 2002, 2005 Red Hat, Inc. + Copyright (C) 2002-2009 Red Hat, Inc. This file is part of Red Hat elfutils. - Written by Ulrich Drepper , 2002. Red Hat elfutils is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the @@ -34,6 +33,76 @@ #define BACKEND arm_ #include "libebl_CPU.h" + +const char * +arm_segment_type_name (int segment, char *buf __attribute__ ((unused)), + size_t len __attribute__ ((unused))) +{ + switch (segment) + { + case PT_ARM_EXIDX: + return "ARM_EXIDX"; + } + return NULL; +} + +/* Return symbolic representation of section type. */ +const char * +arm_section_type_name (int type, + char *buf __attribute__ ((unused)), + size_t len __attribute__ ((unused))) +{ + switch (type) + { + case SHT_ARM_EXIDX: + return "ARM_EXIDX"; + case SHT_ARM_PREEMPTMAP: + return "ARM_PREEMPTMAP"; + case SHT_ARM_ATTRIBUTES: + return "ARM_ATTRIBUTES"; + } + + return NULL; +} + +/* Check whether machine flags are valid. */ +bool +arm_machine_flag_check (GElf_Word flags) +{ + switch (flags & EF_ARM_EABIMASK) + { + case EF_ARM_EABI_UNKNOWN: + case EF_ARM_EABI_VER1: + case EF_ARM_EABI_VER2: + case EF_ARM_EABI_VER3: + case EF_ARM_EABI_VER4: + case EF_ARM_EABI_VER5: + break; + default: + return false; + } + + return ((flags &~ (EF_ARM_EABIMASK + | EF_ARM_RELEXEC + | EF_ARM_HASENTRY + | EF_ARM_INTERWORK + | EF_ARM_APCS_26 + | EF_ARM_APCS_FLOAT + | EF_ARM_PIC + | EF_ARM_ALIGN8 + | EF_ARM_NEW_ABI + | EF_ARM_OLD_ABI + | EF_ARM_SOFT_FLOAT + | EF_ARM_VFP_FLOAT + | EF_ARM_MAVERICK_FLOAT + | EF_ARM_SYMSARESORTED + | EF_ARM_DYNSYMSUSESEGIDX + | EF_ARM_MAPSYMSFIRST + | EF_ARM_EABIMASK + | EF_ARM_BE8 + | EF_ARM_LE8)) == 0); +} + /* Check for the simple reloc types. */ Elf_Type arm_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type) diff --git a/backends/ia64_symbol.c b/backends/ia64_symbol.c index 2609db0f..1edef8b5 100644 --- a/backends/ia64_symbol.c +++ b/backends/ia64_symbol.c @@ -1,5 +1,5 @@ /* IA-64 specific symbolic name handling. - Copyright (C) 2002, 2003, 2005, 2006, 2007 Red Hat, Inc. + Copyright (C) 2002-2009 Red Hat, Inc. This file is part of Red Hat elfutils. Written by Ulrich Drepper , 2002. @@ -102,9 +102,9 @@ ia64_section_type_name (int type, switch (type) { case SHT_IA_64_EXT: - return "SHT_IA_64_EXT"; + return "IA_64_EXT"; case SHT_IA_64_UNWIND: - return "SHT_IA_64_UNWIND"; + return "IA_64_UNWIND"; } return NULL; diff --git a/libcpu/ChangeLog b/libcpu/ChangeLog index 12400f6b..738af57a 100644 --- a/libcpu/ChangeLog +++ b/libcpu/ChangeLog @@ -1,3 +1,8 @@ +2009-04-14 Roland McGrath + + * Makefile.am (AM_CFLAGS): Add -fdollars-in-identifiers; it is not the + default on every machine. + 2009-01-23 Roland McGrath * Makefile.am (i386_parse_CFLAGS): Use quotes around command diff --git a/libcpu/Makefile.am b/libcpu/Makefile.am index e47dc0b0..923556f6 100644 --- a/libcpu/Makefile.am +++ b/libcpu/Makefile.am @@ -31,6 +31,7 @@ else AM_CFLAGS = endif AM_CFLAGS += -Wall -Wshadow -Wunused -Wextra -std=gnu99 -fpic \ + -fdollars-in-identifiers \ $($(*F)_CFLAGS) \ $(if $($(*F)_no_Werror),,-Werror) INCLUDES = -I$(srcdir) -I$(srcdir)/../lib -I$(srcdir)/../libelf \ diff --git a/libelf/ChangeLog b/libelf/ChangeLog index d3b2b1e8..bfc3ee5f 100644 --- a/libelf/ChangeLog +++ b/libelf/ChangeLog @@ -1,3 +1,7 @@ +2009-04-14 Roland McGrath + + * elf.h: Update from glibc. + 2009-04-01 Roland McGrath * elf.h: Update from glibc. diff --git a/libelf/elf.h b/libelf/elf.h index 62593502..062ef00f 100644 --- a/libelf/elf.h +++ b/libelf/elf.h @@ -2205,42 +2205,62 @@ typedef Elf32_Addr Elf32_Conflict; /* ARM specific declarations */ /* Processor specific flags for the ELF header e_flags field. */ -#define EF_ARM_RELEXEC 0x01 -#define EF_ARM_HASENTRY 0x02 -#define EF_ARM_INTERWORK 0x04 -#define EF_ARM_APCS_26 0x08 -#define EF_ARM_APCS_FLOAT 0x10 -#define EF_ARM_PIC 0x20 -#define EF_ARM_ALIGN8 0x40 /* 8-bit structure alignment is in use */ -#define EF_ARM_NEW_ABI 0x80 -#define EF_ARM_OLD_ABI 0x100 +#define EF_ARM_RELEXEC 0x01 +#define EF_ARM_HASENTRY 0x02 +#define EF_ARM_INTERWORK 0x04 +#define EF_ARM_APCS_26 0x08 +#define EF_ARM_APCS_FLOAT 0x10 +#define EF_ARM_PIC 0x20 +#define EF_ARM_ALIGN8 0x40 /* 8-bit structure alignment is in use */ +#define EF_ARM_NEW_ABI 0x80 +#define EF_ARM_OLD_ABI 0x100 +#define EF_ARM_SOFT_FLOAT 0x200 +#define EF_ARM_VFP_FLOAT 0x400 +#define EF_ARM_MAVERICK_FLOAT 0x800 + /* Other constants defined in the ARM ELF spec. version B-01. */ /* NB. These conflict with values defined above. */ #define EF_ARM_SYMSARESORTED 0x04 -#define EF_ARM_DYNSYMSUSESEGIDX 0x08 +#define EF_ARM_DYNSYMSUSESEGIDX 0x08 #define EF_ARM_MAPSYMSFIRST 0x10 #define EF_ARM_EABIMASK 0XFF000000 -#define EF_ARM_EABI_VERSION(flags) ((flags) & EF_ARM_EABIMASK) -#define EF_ARM_EABI_UNKNOWN 0x00000000 -#define EF_ARM_EABI_VER1 0x01000000 -#define EF_ARM_EABI_VER2 0x02000000 +/* Constants defined in AAELF. */ +#define EF_ARM_BE8 0x00800000 +#define EF_ARM_LE8 0x00400000 + +#define EF_ARM_EABI_VERSION(flags) ((flags) & EF_ARM_EABIMASK) +#define EF_ARM_EABI_UNKNOWN 0x00000000 +#define EF_ARM_EABI_VER1 0x01000000 +#define EF_ARM_EABI_VER2 0x02000000 +#define EF_ARM_EABI_VER3 0x03000000 +#define EF_ARM_EABI_VER4 0x04000000 +#define EF_ARM_EABI_VER5 0x05000000 -/* Additional symbol types for Thumb */ -#define STT_ARM_TFUNC 0xd +/* Additional symbol types for Thumb. */ +#define STT_ARM_TFUNC STT_LOPROC /* A Thumb function. */ +#define STT_ARM_16BIT STT_HIPROC /* A Thumb label. */ /* ARM-specific values for sh_flags */ -#define SHF_ARM_ENTRYSECT 0x10000000 /* Section contains an entry point */ -#define SHF_ARM_COMDEF 0x80000000 /* Section may be multiply defined - in the input to a link step */ +#define SHF_ARM_ENTRYSECT 0x10000000 /* Section contains an entry point */ +#define SHF_ARM_COMDEF 0x80000000 /* Section may be multiply defined + in the input to a link step. */ /* ARM-specific program header flags */ -#define PF_ARM_SB 0x10000000 /* Segment contains the location - addressed by the static base */ +#define PF_ARM_SB 0x10000000 /* Segment contains the location + addressed by the static base. */ +#define PF_ARM_PI 0x20000000 /* Position-independent segment. */ +#define PF_ARM_ABS 0x40000000 /* Absolute segment. */ /* Processor specific values for the Phdr p_type field. */ -#define PT_ARM_EXIDX 0x70000001 /* .ARM.exidx segment */ +#define PT_ARM_EXIDX (PT_LOPROC + 1) /* ARM unwind segment. */ + +/* Processor specific values for the Shdr sh_type field. */ +#define SHT_ARM_EXIDX (SHT_LOPROC + 1) /* ARM unwind section. */ +#define SHT_ARM_PREEMPTMAP (SHT_LOPROC + 2) /* Preemption details. */ +#define SHT_ARM_ATTRIBUTES (SHT_LOPROC + 3) /* ARM attributes section. */ + /* ARM relocs. */ diff --git a/src/ChangeLog b/src/ChangeLog index 1bbc075a..16673f14 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2009-04-14 Roland McGrath + * readelf.c (print_attributes): Treat SHT_ARM_ATTRIBUTES on EM_ARM + like SHT_GNU_ATTRIBUTES. + * readelf.c (handle_core_registers): Fix error message. * strip.c (handle_elf: check_preserved): Don't note any change when diff --git a/src/readelf.c b/src/readelf.c index 05382239..773fc7d7 100644 --- a/src/readelf.c +++ b/src/readelf.c @@ -2824,7 +2824,9 @@ print_attributes (Ebl *ebl, const GElf_Ehdr *ehdr) GElf_Shdr shdr_mem; GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem); - if (shdr == NULL || shdr->sh_type != SHT_GNU_ATTRIBUTES) + if (shdr == NULL || (shdr->sh_type != SHT_GNU_ATTRIBUTES + && (shdr->sh_type != SHT_ARM_ATTRIBUTES + || ehdr->e_machine != EM_ARM))) continue; printf (gettext ("\ @@ -2871,8 +2873,9 @@ print_attributes (Ebl *ebl, const GElf_Ehdr *ehdr) printf (gettext (" %-13s %4" PRIu32 "\n"), name, len); - if (q - name == sizeof "gnu" - && !memcmp (name, "gnu", sizeof "gnu")) + if (shdr->sh_type != SHT_GNU_ATTRIBUTES + || (q - name == sizeof "gnu" + && !memcmp (name, "gnu", sizeof "gnu"))) while (q < p) { const unsigned char *const sub = q; -- cgit v1.2.1 From 2fb9051edd6addafe902669ba0bd47f3921a31d1 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 15 Apr 2009 14:47:13 -0700 Subject: Fix 32/64 CIE header format CIE_id matching. --- libdw/ChangeLog | 5 +++++ libdw/dwarf.h | 3 ++- src/ChangeLog | 5 +++++ src/readelf.c | 10 +++++++--- 4 files changed, 19 insertions(+), 4 deletions(-) diff --git a/libdw/ChangeLog b/libdw/ChangeLog index 77123b57..93a59673 100644 --- a/libdw/ChangeLog +++ b/libdw/ChangeLog @@ -1,3 +1,8 @@ +2009-04-15 Roland McGrath + + * dwarf.h (DW_CIE_ID): Removed. + (DW_CIE_ID_32, DW_CIE_ID_64): New constants replace it. + 2009-04-01 Roland McGrath * dwarf.h: Add DW_CFA_GNU_negative_offset_extended. diff --git a/libdw/dwarf.h b/libdw/dwarf.h index 3b9d40c9..0546e3eb 100644 --- a/libdw/dwarf.h +++ b/libdw/dwarf.h @@ -677,7 +677,8 @@ enum /* ID indicating CIE as opposed to FDE in .debug_frame. */ enum { - DW_CIE_ID = 0xffffffff + DW_CIE_ID_32 = 0xffffffffU, /* In 32-bit format CIE header. */ + DW_CIE_ID_64 = 0xffffffffffffffffULL /* In 64-bit format CIE header. */ }; diff --git a/src/ChangeLog b/src/ChangeLog index 16673f14..fe8b0362 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2009-04-15 Roland McGrath + + * readelf.c (print_debug_frame_section): Check for DW_CIE_ID_64 in + 64-bit format header, DW_CIE_ID_32 in 32-bit format header. + 2009-04-14 Roland McGrath * readelf.c (print_attributes): Treat SHT_ARM_ATTRIBUTES on EM_ARM diff --git a/src/readelf.c b/src/readelf.c index 773fc7d7..1c790650 100644 --- a/src/readelf.c +++ b/src/readelf.c @@ -4676,9 +4676,13 @@ print_debug_frame_section (Dwfl_Module *dwflmod, Ebl *ebl, GElf_Ehdr *ehdr, if (unlikely (cieend > dataend || readp + 8 > dataend)) goto invalid_data; - Dwarf_Word cie_id; + Dwarf_Off cie_id; if (length == 4) - cie_id = read_4ubyte_unaligned_inc (dbg, readp); + { + cie_id = read_4ubyte_unaligned_inc (dbg, readp); + if (!is_eh_frame && cie_id == DW_CIE_ID_32) + cie_id = DW_CIE_ID_64; + } else cie_id = read_8ubyte_unaligned_inc (dbg, readp); @@ -4689,7 +4693,7 @@ print_debug_frame_section (Dwfl_Module *dwflmod, Ebl *ebl, GElf_Ehdr *ehdr, Dwarf_Word initial_location = 0; Dwarf_Word vma_base = 0; - if (cie_id == (is_eh_frame ? 0 : DW_CIE_ID)) + if (cie_id == (is_eh_frame ? 0 : DW_CIE_ID_64)) { uint_fast8_t version = *readp++; const char *const augmentation = (const char *) readp; -- cgit v1.2.1 From 8ec82157be1d8ea52f8cc43a22b8cedbade41986 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Thu, 16 Apr 2009 20:31:59 -0700 Subject: NT_PRXFPREG -> NT_PRXFPREG --- backends/ChangeLog | 4 ++++ backends/i386_corenote.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/backends/ChangeLog b/backends/ChangeLog index d5afa1b6..21b8c739 100644 --- a/backends/ChangeLog +++ b/backends/ChangeLog @@ -1,3 +1,7 @@ +2009-04-16 Roland McGrath + + * i386_corenote.c (EXTRA_NOTES): NT_PRXFPREG -> NT_PRXFPREG + 2009-04-14 Roland McGrath * arm_retval.c: New file. diff --git a/backends/i386_corenote.c b/backends/i386_corenote.c index c371c4c3..89890252 100644 --- a/backends/i386_corenote.c +++ b/backends/i386_corenote.c @@ -1,5 +1,5 @@ /* i386 specific core note handling. - Copyright (C) 2007, 2008 Red Hat, Inc. + Copyright (C) 2007-2009 Red Hat, Inc. This file is part of Red Hat elfutils. Red Hat elfutils is free software; you can redistribute it and/or modify @@ -101,7 +101,7 @@ static const Ebl_Register_Location prxfpreg_regs[] = }; #define EXTRA_NOTES \ - EXTRA_REGSET (NT_PRFPXREG, 512, prxfpreg_regs) \ + EXTRA_REGSET (NT_PRXFPREG, 512, prxfpreg_regs) \ case NT_386_TLS: \ return tls_info (descsz, regs_offset, nregloc, reglocs, nitems, items); \ EXTRA_NOTES_IOPERM -- cgit v1.2.1 From c6f20e44e767f43219accd53f3211fd980dd2660 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Thu, 16 Apr 2009 20:32:42 -0700 Subject: Handle ARM VFP register names. --- backends/ChangeLog | 2 ++ backends/arm_regs.c | 23 +++++++++++++++++++++-- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/backends/ChangeLog b/backends/ChangeLog index 21b8c739..c764f9ef 100644 --- a/backends/ChangeLog +++ b/backends/ChangeLog @@ -1,5 +1,7 @@ 2009-04-16 Roland McGrath + * arm_regs.c (arm_register_info): Handle VFP registers. + * i386_corenote.c (EXTRA_NOTES): NT_PRXFPREG -> NT_PRXFPREG 2009-04-14 Roland McGrath diff --git a/backends/arm_regs.c b/backends/arm_regs.c index b7351ce2..0a9536d4 100644 --- a/backends/arm_regs.c +++ b/backends/arm_regs.c @@ -40,9 +40,9 @@ arm_register_info (Ebl *ebl __attribute__ ((unused)), int *bits, int *type) { if (name == NULL) - return 129; + return 320; - if (regno < 0 || regno > 128 || namelen < 5) + if (regno < 0 || regno > 320 || namelen < 5) return -1; *prefix = NULL; @@ -88,6 +88,25 @@ arm_register_info (Ebl *ebl __attribute__ ((unused)), *type = DW_ATE_unsigned; return stpcpy (name, "spsr") + 1 - name; + case 256 + 0 ... 256 + 9: + *setname = "VFP"; + *type = DW_ATE_float; + *bits = 64; + name[0] = 'd'; + name[1] = regno - 256 + '0'; + namelen = 2; + break; + + case 256 + 10 ... 256 + 31: + *setname = "VFP"; + *type = DW_ATE_float; + *bits = 64; + name[0] = 'd'; + name[1] = (regno - 256) / 10 + '0'; + name[2] = (regno - 256) % 10 + '0'; + namelen = 3; + break; + default: *setname = NULL; return 0; -- cgit v1.2.1 From ee9d60de465261fd1c1ee275c89b4f486854c9ec Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Fri, 17 Apr 2009 13:18:35 -0700 Subject: _ELFUTILS_PREREQ magic update for 0.y.z numbers --- ChangeLog | 5 +++++ config/ChangeLog | 5 +++++ config/version.h.in | 4 ++-- configure.ac | 39 +++++++++++++++++++++++++++++++-------- 4 files changed, 43 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index f6d54aaa..c0e71bd7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-04-17 Roland McGrath + + * configure.ac (eu_version): Compute number 1000 times larger, + let $PACKAGE_VERSION be x.y.z as well as x.y (implied x.y.0). + 2009-01-23 Roland McGrath * configure.ac (zlib check): Check for gzdirect, need zlib >= 1.2.2.3. diff --git a/config/ChangeLog b/config/ChangeLog index 1ac65534..327e5c1c 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,8 @@ +2009-04-17 Roland McGrath + + * version.h.in (_ELFUTILS_PREREQ): Multiple major by 1000000 and minor + by 1000; now _ELFUTILS_VERSION is 789000 for version 0.789. + 2009-01-22 Ulrich Drepper * elfutils.spec.in: Distribute in diff --git a/config/version.h.in b/config/version.h.in index 82c846e9..3de32a34 100644 --- a/config/version.h.in +++ b/config/version.h.in @@ -1,5 +1,5 @@ /* Version information about elfutils development libraries. - Copyright (C) 2008 Red Hat, Inc. + Copyright (C) 2008-2009 Red Hat, Inc. This file is part of Red Hat elfutils. Red Hat elfutils is free software; you can redistribute it and/or modify @@ -53,6 +53,6 @@ #define _ELFUTILS_VERSION @eu_version@ #define _ELFUTILS_PREREQ(major, minor) \ - (_ELFUTILS_VERSION >= ((major) * 1000 + (minor))) + (_ELFUTILS_VERSION >= ((major) * 1000000 + (minor) * 1000)) #endif /* elfutils/version.h */ diff --git a/configure.ac b/configure.ac index 9013c9a5..c074e973 100644 --- a/configure.ac +++ b/configure.ac @@ -16,13 +16,13 @@ dnl You should have received a copy of the GNU General Public License dnl along with this program; if not, write to the Free Software Foundation, dnl Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. dnl -AC_INIT([Red Hat elfutils],[0.140],[http://bugzilla.redhat.com/bugzilla/], +AC_INIT([Red Hat elfutils],[0.140.90],[http://bugzilla.redhat.com/bugzilla/], [elfutils]) AC_CONFIG_AUX_DIR([config]) AC_CONFIG_FILES([config/Makefile]) -AC_COPYRIGHT([Copyright (C) 1996-2008, 2009 Red Hat, Inc.]) +AC_COPYRIGHT([Copyright (C) 1996-2009 Red Hat, Inc.]) AC_PREREQ(2.59) dnl Minimum Autoconf version required. dnl We use GNU make extensions; automake 1.10 defaults to -Wportability. @@ -259,12 +259,35 @@ AH_BOTTOM([#include ]) dnl Version compatibility header. AC_CONFIG_FILES([version.h:config/version.h.in]) AC_SUBST([eu_version]) -case $PACKAGE_VERSION in -0.???) eu_version=${PACKAGE_VERSION#0.} ;; -?.???) eu_version=${PACKAGE_VERSION/./} ;; -?.??) eu_version=${PACKAGE_VERSION/./}0 ;; -?.?) eu_version=${PACKAGE_VERSION/./}00 ;; -*) AC_MSG_ERROR([confused by version number '$PACKAGE_VERSION']) ;; + +# 1.234 -> 1234 +case "$PACKAGE_VERSION" in +[[0-9]].*) eu_version="${PACKAGE_VERSION/./}" ;; +*) AC_MSG_ERROR([confused by version number '$PACKAGE_VERSION']) ;; +esac +case "$eu_version" in +*.*) + # 1234.567 -> "1234", "567" + eu_extra_version="${eu_version#*.}" + eu_version="${eu_version%%.*}" + case "$eu_extra_version" in + [[0-9]][[0-9]][[0-9]]) ;; + [[0-9]][[0-9]]) eu_extra_version="${eu_extra_version}0" ;; + [[0-9]]) eu_extra_version="${eu_extra_version}00" ;; + *) AC_MSG_ERROR([confused by version number '$PACKAGE_VERSION']) ;; + esac + ;; +*) + eu_extra_version=000 + ;; +esac + +case "$eu_version" in + 0[[0-9]][[0-9]][[0-9]]) eu_version="${eu_version#0}$eu_extra_version" ;; +[[0-9]][[0-9]][[0-9]][[0-9]]) eu_version="${eu_version}$eu_extra_version" ;; +[[0-9]][[0-9]][[0-9]]) eu_version="${eu_version}0$eu_extra_version" ;; +[[0-9]][[0-9]]) eu_version="${eu_version}00$eu_extra_version";; +*) AC_MSG_ERROR([confused by version number '$PACKAGE_VERSION']) ;; esac AC_OUTPUT -- cgit v1.2.1 From 8df65867e2980c7b17131ed81e75535d85e06026 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Fri, 17 Apr 2009 13:24:01 -0700 Subject: Arithmetic is hard. --- config/version.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/version.h.in b/config/version.h.in index 3de32a34..f678c696 100644 --- a/config/version.h.in +++ b/config/version.h.in @@ -53,6 +53,6 @@ #define _ELFUTILS_VERSION @eu_version@ #define _ELFUTILS_PREREQ(major, minor) \ - (_ELFUTILS_VERSION >= ((major) * 1000000 + (minor) * 1000)) + ((_ELFUTILS_VERSION + 999) / 1000 >= ((major) * 1000 + (minor))) #endif /* elfutils/version.h */ -- cgit v1.2.1 From 6efdf25763bce261ca3f99e235bfbef87bf6eb98 Mon Sep 17 00:00:00 2001 From: tbull Date: Sat, 18 Apr 2009 20:44:43 +0000 Subject: Sending translation for German --- po/de.po | 1561 +++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 840 insertions(+), 721 deletions(-) diff --git a/po/de.po b/po/de.po index 99bd44d5..fd9917a4 100644 --- a/po/de.po +++ b/po/de.po @@ -2,34 +2,43 @@ # Copyright (C) 2009 THE elfutils'S COPYRIGHT HOLDER # This file is distributed under the same license as the elfutils package. # Thomas Spura , 2009. +# Cornelius Neckenig , 2009. # , fuzzy -# -# +# +# msgid "" msgstr "" "Project-Id-Version: elfutils VERSION\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n" -"POT-Creation-Date: 2009-04-05 08:10+0000\n" -"PO-Revision-Date: 2009-04-05 12:08+0200\n" -"Last-Translator: Thomas Spura \n" +"POT-Creation-Date: 2009-04-18 19:12+0000\n" +"PO-Revision-Date: 2009-04-18 22:42+0100\n" +"Last-Translator: Cornelius Neckenig \n" "Language-Team: German\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);" - -#: ../lib/xmalloc.c:51 ../lib/xmalloc.c:65 ../lib/xmalloc.c:79 -#: ../src/readelf.c:2703 ../src/readelf.c:3038 ../src/unstrip.c:2086 +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../lib/xmalloc.c:51 +#: ../lib/xmalloc.c:65 +#: ../lib/xmalloc.c:79 +#: ../src/readelf.c:2703 +#: ../src/readelf.c:3041 +#: ../src/unstrip.c:2086 #: ../src/unstrip.c:2294 #, c-format msgid "memory exhausted" msgstr "Kein Speicher mehr verfügbar" -#: ../libelf/elf_error.c:81 ../libasm/asm_error.c:62 ../libdw/dwarf_error.c:79 +#: ../libelf/elf_error.c:81 +#: ../libasm/asm_error.c:62 +#: ../libdw/dwarf_error.c:79 msgid "no error" msgstr "kein Fehler" -#: ../libelf/elf_error.c:84 ../libasm/asm_error.c:81 ../libdw/dwarf_error.c:80 +#: ../libelf/elf_error.c:84 +#: ../libasm/asm_error.c:81 +#: ../libdw/dwarf_error.c:80 msgid "unknown error" msgstr "unbekannter Fehler" @@ -53,12 +62,14 @@ msgstr "" msgid "invalid size of destination operand" msgstr "" -#: ../libelf/elf_error.c:108 ../src/readelf.c:4589 -#, fuzzy, c-format +#: ../libelf/elf_error.c:108 +#: ../src/readelf.c:4592 +#, c-format msgid "invalid encoding" msgstr "ungültige Kodierung" -#: ../libelf/elf_error.c:112 ../libasm/asm_error.c:63 +#: ../libelf/elf_error.c:112 +#: ../libasm/asm_error.c:63 #: ../libdw/dwarf_error.c:88 msgid "out of memory" msgstr "" @@ -75,12 +86,14 @@ msgstr "ungültige Operation" msgid "ELF version not set" msgstr "" -#: ../libelf/elf_error.c:128 ../libelf/elf_error.c:176 +#: ../libelf/elf_error.c:128 +#: ../libelf/elf_error.c:176 #: ../libdw/dwarf_error.c:90 msgid "invalid command" -msgstr "" +msgstr "Ungültiger Befehl" -#: ../libelf/elf_error.c:132 ../libelf/elf_error.c:192 +#: ../libelf/elf_error.c:132 +#: ../libelf/elf_error.c:192 msgid "offset out of range" msgstr "" @@ -90,7 +103,7 @@ msgstr "" #: ../libelf/elf_error.c:140 msgid "invalid archive file" -msgstr "" +msgstr "Ungültige Archiv-Datei" #: ../libelf/elf_error.c:144 msgid "descriptor is not for an archive" @@ -102,11 +115,11 @@ msgstr "" #: ../libelf/elf_error.c:152 msgid "cannot read data from file" -msgstr "" +msgstr "Daten aus der Datei konnten nicht gelesen werden" #: ../libelf/elf_error.c:156 msgid "cannot write data to file" -msgstr "" +msgstr "Daten konnten nicht in die Datei geschrieben werden" #: ../libelf/elf_error.c:160 msgid "invalid binary class" @@ -148,14 +161,16 @@ msgstr "" msgid "invalid section header" msgstr "" -#: ../libelf/elf_error.c:208 ../src/readelf.c:6055 ../src/readelf.c:6156 +#: ../libelf/elf_error.c:208 +#: ../src/readelf.c:6062 +#: ../src/readelf.c:6163 #, c-format msgid "invalid data" -msgstr "" +msgstr "Ungültige Daten" #: ../libelf/elf_error.c:212 msgid "unknown data encoding" -msgstr "" +msgstr "Unbekannte Datenkodierung" #: ../libelf/elf_error.c:216 msgid "section `sh_size' too small for data" @@ -182,22 +197,23 @@ msgid "only relocatable files can contain section groups" msgstr "" #: ../libelf/elf_error.c:241 -msgid "" -"program header only allowed in executables, shared objects, and core files" +msgid "program header only allowed in executables, shared objects, and core files" msgstr "" #: ../libelf/elf_error.c:248 msgid "file has no program header" -msgstr "" +msgstr "Datei hat keinen Programm-Kopf" -#: ../libelf/elf_error.c:253 ../libdw/dwarf_error.c:112 +#: ../libelf/elf_error.c:253 +#: ../libdw/dwarf_error.c:112 msgid "invalid offset" msgstr "" -#: ../libasm/asm_error.c:64 ../src/ldgeneric.c:2687 +#: ../libasm/asm_error.c:64 +#: ../src/ldgeneric.c:2687 #, c-format msgid "cannot create output file" -msgstr "" +msgstr "Ausgangsdatei konnte nicht erstellt werden" #: ../libasm/asm_error.c:65 msgid "invalid parameter" @@ -208,14 +224,15 @@ msgid "cannot change mode of output file" msgstr "" #. Something went wrong. -#: ../libasm/asm_error.c:67 ../src/ldgeneric.c:7001 +#: ../libasm/asm_error.c:67 +#: ../src/ldgeneric.c:7001 #, c-format msgid "cannot rename output file" -msgstr "" +msgstr "Ausgangsdatei konnte nicht umbenannt werden" #: ../libasm/asm_error.c:68 msgid "duplicate symbol" -msgstr "" +msgstr "Symbol doppelt vorhanden" #: ../libasm/asm_error.c:69 msgid "invalid section type for operation" @@ -223,7 +240,7 @@ msgstr "" #: ../libasm/asm_error.c:70 msgid "error during output of data" -msgstr "" +msgstr "Fehler bei Datenausgabe" #: ../libasm/asm_error.c:71 msgid "no backend support available" @@ -231,51 +248,51 @@ msgstr "" #: ../libdw/dwarf_error.c:81 msgid "invalid access" -msgstr "" +msgstr "Ungültiger Zugriff" #: ../libdw/dwarf_error.c:82 msgid "no regular file" -msgstr "" +msgstr "Keine reguläre Date" #: ../libdw/dwarf_error.c:83 msgid "I/O error" -msgstr "" +msgstr "I/O Fehler" #: ../libdw/dwarf_error.c:84 msgid "invalid ELF file" -msgstr "" +msgstr "Ungültige ELF Datei" #: ../libdw/dwarf_error.c:85 msgid "no DWARF information" -msgstr "" +msgstr "keine DWARF Information" #: ../libdw/dwarf_error.c:86 msgid "no ELF file" -msgstr "" +msgstr "keine ELF Datei" #: ../libdw/dwarf_error.c:87 msgid "cannot get ELF header" -msgstr "" +msgstr "ELF Kopf konnte nicht ausgelesen werden" #: ../libdw/dwarf_error.c:89 msgid "not implemented" -msgstr "" +msgstr "Nicht implementiert" #: ../libdw/dwarf_error.c:91 msgid "invalid version" -msgstr "" +msgstr "Ungültige Version" #: ../libdw/dwarf_error.c:92 msgid "invalid file" -msgstr "" +msgstr "Ungültige Datei" #: ../libdw/dwarf_error.c:93 msgid "no entries found" -msgstr "" +msgstr "Keine Einträge gefunden" #: ../libdw/dwarf_error.c:94 msgid "invalid DWARF" -msgstr "" +msgstr "DWARF ungültig" #: ../libdw/dwarf_error.c:95 msgid "no string data" @@ -283,35 +300,35 @@ msgstr "" #: ../libdw/dwarf_error.c:96 msgid "no address value" -msgstr "" +msgstr "Kein Adress-Wert" #: ../libdw/dwarf_error.c:97 msgid "no constant value" -msgstr "" +msgstr "Kein Konstanten-Wert" #: ../libdw/dwarf_error.c:98 msgid "no reference value" -msgstr "" +msgstr "Kein Referenz-Wert" #: ../libdw/dwarf_error.c:99 msgid "invalid reference value" -msgstr "" +msgstr "Ungültiger Referenz-Wert" #: ../libdw/dwarf_error.c:100 msgid ".debug_line section missing" -msgstr "" +msgstr ".debug_line Sektion fehlt" #: ../libdw/dwarf_error.c:101 msgid "invalid .debug_line section" -msgstr "" +msgstr "ungültige .debug_line Sektion" #: ../libdw/dwarf_error.c:102 msgid "debug information too big" -msgstr "" +msgstr "Debug Information zu groß" #: ../libdw/dwarf_error.c:103 msgid "invalid DWARF version" -msgstr "" +msgstr "Ungültige DWARF Version" #: ../libdw/dwarf_error.c:104 msgid "invalid directory index" @@ -319,7 +336,7 @@ msgstr "" #: ../libdw/dwarf_error.c:105 msgid "address out of range" -msgstr "" +msgstr "Außerhalb des Adressbereiches" #: ../libdw/dwarf_error.c:106 msgid "no location list value" @@ -331,15 +348,15 @@ msgstr "" #: ../libdw/dwarf_error.c:108 msgid "invalid line index" -msgstr "" +msgstr "Ungültiger Zeilenindex" #: ../libdw/dwarf_error.c:109 msgid "invalid address range index" -msgstr "" +msgstr "Ungültiger Adressbereichs Index" #: ../libdw/dwarf_error.c:110 msgid "no matching address range" -msgstr "" +msgstr "Kein passender Adressbereich" #: ../libdw/dwarf_error.c:111 msgid "no flag value" @@ -349,104 +366,107 @@ msgstr "" msgid ".debug_ranges section missing" msgstr "" -#: ../libdwfl/argp-std.c:67 ../src/unstrip.c:2236 +#: ../libdwfl/argp-std.c:67 +#: ../src/unstrip.c:2236 msgid "Input selection options:" -msgstr "" +msgstr "Eingabeauswahloptionen:" #: ../libdwfl/argp-std.c:68 msgid "Find addresses in FILE" -msgstr "" +msgstr "Finde Adressen in FILE" #: ../libdwfl/argp-std.c:70 msgid "Find addresses from signatures found in COREFILE" -msgstr "" +msgstr "Finde Adressen von Signatur aus COREFILE" #: ../libdwfl/argp-std.c:72 msgid "Find addresses in files mapped into process PID" msgstr "" #: ../libdwfl/argp-std.c:74 -msgid "" -"Find addresses in files mapped as read from FILE in Linux /proc/PID/maps " -"format" +msgid "Find addresses in files mapped as read from FILE in Linux /proc/PID/maps format" msgstr "" #: ../libdwfl/argp-std.c:76 msgid "Find addresses in the running kernel" -msgstr "" +msgstr "Finde Adressen im laufnenden Kernel" #: ../libdwfl/argp-std.c:78 msgid "Kernel with all modules" -msgstr "" +msgstr "Kernel mit allen Modulen" #: ../libdwfl/argp-std.c:80 msgid "Search path for separate debuginfo files" -msgstr "" +msgstr "Dateisuchpfad für separate Debug-Informationen" #: ../libdwfl/argp-std.c:163 msgid "only one of -e, -p, -k, -K, or --core allowed" -msgstr "" +msgstr "Nur eine Option von -e, -p, -k, -K, oder --core erlaubt" #: ../libdwfl/argp-std.c:223 #, c-format msgid "cannot read ELF core file: %s" -msgstr "" +msgstr "Konnte ELF Kerndatei %s nicht lesen" #: ../libdwfl/argp-std.c:243 msgid "No modules recognized in core file" -msgstr "" +msgstr "Keine Module in der Kerndatei gefunden" #: ../libdwfl/argp-std.c:255 msgid "cannot load kernel symbols" -msgstr "" +msgstr "Konnte Kernel Symbole nicht laden" #. Non-fatal to have no modules since we do have the kernel. #: ../libdwfl/argp-std.c:259 msgid "cannot find kernel modules" -msgstr "" +msgstr "Konnte Kernel Module nicht finden" #: ../libdwfl/argp-std.c:273 msgid "cannot find kernel or modules" -msgstr "" +msgstr "Konnte Kernel oder Module nicht finden" #: ../libebl/eblbackendname.c:63 msgid "No backend" msgstr "" -#: ../libebl/eblcorenotetypename.c:107 ../libebl/eblobjecttypename.c:78 -#: ../libebl/eblobjnotetypename.c:85 ../libebl/eblosabiname.c:98 -#: ../libebl/eblsectionname.c:110 ../libebl/eblsectiontypename.c:140 +#: ../libebl/eblcorenotetypename.c:107 +#: ../libebl/eblobjecttypename.c:78 +#: ../libebl/eblobjnotetypename.c:85 +#: ../libebl/eblosabiname.c:98 +#: ../libebl/eblsectionname.c:110 +#: ../libebl/eblsectiontypename.c:140 #: ../libebl/eblsegmenttypename.c:104 msgid "" -msgstr "" +msgstr "" #: ../libebl/ebldynamictagname.c:126 #, c-format msgid ": %#" -msgstr "" +msgstr ": %#" #: ../libebl/eblobjnote.c:76 #, c-format msgid " Build ID: " -msgstr "" +msgstr " Build ID: " #: ../libebl/eblobjnote.c:129 #, c-format msgid " OS: %s, ABI: " -msgstr "" +msgstr " OS: %s, ABI: " #: ../libebl/eblosabiname.c:95 msgid "Stand alone" msgstr "" -#: ../libebl/eblsymbolbindingname.c:86 ../libebl/eblsymboltypename.c:94 +#: ../libebl/eblsymbolbindingname.c:86 +#: ../libebl/eblsymboltypename.c:94 #, c-format msgid ": %d" -msgstr "" +msgstr ": %d" #: ../src/ar.c:76 msgid "Commands:" -msgstr "" +msgstr "Befehle:" #: ../src/ar.c:77 msgid "Delete files from archive." @@ -458,23 +478,23 @@ msgstr "Dateien zum Archiv hinzufügen." #: ../src/ar.c:79 msgid "Print files in archive." -msgstr "" +msgstr "Packe Dateien in Archiv" #: ../src/ar.c:80 msgid "Quick append files to archive." -msgstr "" +msgstr "Hänge Dateien an ein Archiv" #: ../src/ar.c:82 msgid "Replace existing or insert new file into archive." -msgstr "" +msgstr "Ersetze existierende oder füge neue Datei in das Archiv ein." #: ../src/ar.c:83 msgid "Display content of archive." -msgstr "" +msgstr "Zeige Archivinhalt an." #: ../src/ar.c:84 msgid "Extract files from archive." -msgstr "" +msgstr "Entpacke Dateien aus dem Archiv" #: ../src/ar.c:86 msgid "Command Modifiers:" @@ -490,11 +510,11 @@ msgstr "" #: ../src/ar.c:90 msgid "Do not replace existing files with extracted files." -msgstr "" +msgstr "Ersetze existierende Dateien nicht mit entpackten Dateien" #: ../src/ar.c:91 msgid "Allow filename to be truncated if necessary." -msgstr "" +msgstr "Erlaube angehängte Dateinamen, wenn nötig" #: ../src/ar.c:93 msgid "Provide verbose output." @@ -506,15 +526,15 @@ msgstr "" #: ../src/ar.c:95 msgid "Insert file after [MEMBER]." -msgstr "" +msgstr "Füge Datei nach [MEMBER] ein." #: ../src/ar.c:96 msgid "Insert file before [MEMBER]." -msgstr "" +msgstr "Füge Datei vor [MEMBER] ein." #: ../src/ar.c:97 msgid "Same as -b." -msgstr "" +msgstr "Genau wie -b." #: ../src/ar.c:98 msgid "Suppress message when library has to be created." @@ -526,22 +546,22 @@ msgstr "" #: ../src/ar.c:101 msgid "Update only older files in archive." -msgstr "" +msgstr "Nur ältere Datein im Archiv aktualisieren" #. Short description of program. #: ../src/ar.c:107 msgid "Create, modify, and extract from archives." -msgstr "" +msgstr "Erstelle, ändere, extrahiere von Archiven" #. Strings for arguments in help texts. #: ../src/ar.c:110 msgid "[MEMBER] [COUNT] ARCHIVE [FILE...]" -msgstr "" +msgstr "[MEMBER] [COUNT] ARCHIVE [FILE...]" #: ../src/ar.c:192 #, c-format msgid "'a', 'b', and 'i' are only allowed with the 'm' and 'r' options" -msgstr "" +msgstr "'a', 'b', und 'i' nur zusammen mit 'm' and 'r Optionen" #: ../src/ar.c:197 #, c-format @@ -556,12 +576,12 @@ msgstr "" #: ../src/ar.c:218 #, c-format msgid "COUNT parameter required" -msgstr "" +msgstr "COUNT Parameter erforderlich" #: ../src/ar.c:230 #, c-format msgid "invalid COUNT parameter %s" -msgstr "" +msgstr "Ungültiger COUNT Parameter %s" #: ../src/ar.c:237 #, c-format @@ -571,12 +591,21 @@ msgstr "" #: ../src/ar.c:243 #, c-format msgid "archive name required" -msgstr "" - -#: ../src/ar.c:289 ../src/nm.c:253 ../src/readelf.c:432 ../src/size.c:219 -#: ../src/strip.c:203 ../src/ld.c:957 ../src/elflint.c:238 -#: ../src/addr2line.c:180 ../src/findtextrel.c:170 ../src/elfcmp.c:522 -#: ../src/ranlib.c:136 ../src/strings.c:227 ../src/unstrip.c:233 +msgstr "Archivname erforderlich" + +#: ../src/ar.c:289 +#: ../src/nm.c:253 +#: ../src/readelf.c:432 +#: ../src/size.c:219 +#: ../src/strip.c:203 +#: ../src/ld.c:957 +#: ../src/elflint.c:238 +#: ../src/addr2line.c:180 +#: ../src/findtextrel.c:170 +#: ../src/elfcmp.c:522 +#: ../src/ranlib.c:136 +#: ../src/strings.c:227 +#: ../src/unstrip.c:233 #: ../src/objdump.c:181 #, c-format msgid "" @@ -584,15 +613,27 @@ msgid "" "This is free software; see the source for copying conditions. There is NO\n" "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" msgstr "" - -#: ../src/ar.c:294 ../src/nm.c:258 ../src/readelf.c:437 ../src/size.c:224 -#: ../src/strip.c:208 ../src/ld.c:962 ../src/elflint.c:243 -#: ../src/addr2line.c:185 ../src/findtextrel.c:175 ../src/elfcmp.c:527 -#: ../src/ranlib.c:141 ../src/strings.c:232 ../src/unstrip.c:238 +"Copyright (C) %s Red Hat, Inc.\n" +"Dies ist freie Software, siehe Quellcode für Kopierbedingungen. KEINE GARANTIE,\n" +"auch nicht für Marktgängigkeit oder Eignung für einen Bestimmten Zweck.\n" + +#: ../src/ar.c:294 +#: ../src/nm.c:258 +#: ../src/readelf.c:437 +#: ../src/size.c:224 +#: ../src/strip.c:208 +#: ../src/ld.c:962 +#: ../src/elflint.c:243 +#: ../src/addr2line.c:185 +#: ../src/findtextrel.c:175 +#: ../src/elfcmp.c:527 +#: ../src/ranlib.c:141 +#: ../src/strings.c:232 +#: ../src/unstrip.c:238 #: ../src/objdump.c:186 #, c-format msgid "Written by %s.\n" -msgstr "" +msgstr "Geschrieben von %s.\n" #: ../src/ar.c:314 #, c-format @@ -602,17 +643,17 @@ msgstr "" #: ../src/ar.c:404 #, c-format msgid "cannot open archive '%s'" -msgstr "" +msgstr "Konnte Archiv '%s' nicht öffnen" #: ../src/ar.c:414 #, c-format msgid "cannot open archive '%s': %s" -msgstr "" +msgstr "Konnte Archiv '%s': %s nicht öffnen" #: ../src/ar.c:418 #, c-format msgid "%s: not an archive file" -msgstr "" +msgstr "%s: Keine Archiv-Datei" #: ../src/ar.c:422 #, c-format @@ -622,19 +663,24 @@ msgstr "" #: ../src/ar.c:434 #, c-format msgid "no entry %s in archive\n" -msgstr "" +msgstr "Kein Eintrag %s in Archiv\n" -#: ../src/ar.c:474 ../src/ar.c:918 ../src/ar.c:1118 +#: ../src/ar.c:474 +#: ../src/ar.c:918 +#: ../src/ar.c:1118 #, c-format msgid "cannot create hash table" -msgstr "" +msgstr "Konnte Hash-Tabelle nicht erstellen" -#: ../src/ar.c:481 ../src/ar.c:925 ../src/ar.c:1127 +#: ../src/ar.c:481 +#: ../src/ar.c:925 +#: ../src/ar.c:1127 #, c-format msgid "cannot insert into hash table" -msgstr "" +msgstr "Konnte nicht in Hash-Tabelle einfügen" -#: ../src/ar.c:489 ../src/ranlib.c:176 +#: ../src/ar.c:489 +#: ../src/ranlib.c:176 #, c-format msgid "cannot stat '%s'" msgstr "" @@ -642,17 +688,17 @@ msgstr "" #: ../src/ar.c:585 #, c-format msgid "cannot read content of %s: %s" -msgstr "" +msgstr "Konnte Inhalt von %s: %s nicht lesen" #: ../src/ar.c:629 #, c-format msgid "cannot open %.*s" -msgstr "" +msgstr "Konnte %.*s nicht öffnen" #: ../src/ar.c:651 #, c-format msgid "failed to write %s" -msgstr "" +msgstr "Konnte %s nicht schreiben" #: ../src/ar.c:663 #, c-format @@ -662,14 +708,17 @@ msgstr "" #: ../src/ar.c:679 #, c-format msgid "cannot change modification time of %s" -msgstr "" +msgstr "Konnte Bearbeitungszeit von %s nicht ändern" #: ../src/ar.c:726 #, c-format msgid "cannot rename temporary file to %.*s" -msgstr "" +msgstr "Konnte temporäre Datei nicht in %.*s umbenennen" -#: ../src/ar.c:762 ../src/ar.c:1010 ../src/ar.c:1408 ../src/ranlib.c:250 +#: ../src/ar.c:762 +#: ../src/ar.c:1010 +#: ../src/ar.c:1408 +#: ../src/ranlib.c:250 #, c-format msgid "cannot create new file" msgstr "neue Datei konnte nicht angelegt werden" @@ -684,10 +733,12 @@ msgstr "" msgid "%s: no entry %s in archive!\n" msgstr "%s: Kein Eintrag %s in dem Archiv!\n" -#: ../src/ar.c:1248 ../src/ldgeneric.c:519 ../src/objdump.c:257 +#: ../src/ar.c:1248 +#: ../src/ldgeneric.c:519 +#: ../src/objdump.c:257 #, c-format msgid "cannot open %s" -msgstr "" +msgstr "Konnte %s nicht öffnen" #: ../src/ar.c:1253 #, c-format @@ -697,7 +748,7 @@ msgstr "" #: ../src/ar.c:1259 #, c-format msgid "%s is no regular file" -msgstr "" +msgstr "%s ist keine reguläre Datei" #: ../src/ar.c:1272 #, c-format @@ -707,20 +758,22 @@ msgstr "" #: ../src/ar.c:1291 #, c-format msgid "cannot read %s: %s" -msgstr "" +msgstr "Konnte %s: %s nicht lesen" #. The archive is too big. #: ../src/arlib.c:215 #, c-format msgid "the archive '%s' is too large" -msgstr "" +msgstr "Das Archiv '%s' ist zu groß" #: ../src/arlib.c:228 #, c-format msgid "cannot read ELF header of %s(%s): %s" -msgstr "" +msgstr "\"Konnte ELF-Kopf von %s(%s): %s nicht lesen" -#: ../src/nm.c:74 ../src/readelf.c:72 ../src/strip.c:72 +#: ../src/nm.c:74 +#: ../src/readelf.c:72 +#: ../src/strip.c:72 msgid "Output selection:" msgstr "" @@ -748,7 +801,8 @@ msgstr "" msgid "Include index for symbols from archive members" msgstr "" -#: ../src/nm.c:85 ../src/size.c:66 +#: ../src/nm.c:85 +#: ../src/size.c:66 msgid "Output format:" msgstr "" @@ -757,9 +811,7 @@ msgid "Print name of the input file before every symbol" msgstr "" #: ../src/nm.c:90 -msgid "" -"Use the output format FORMAT. FORMAT can be `bsd', `sysv' or `posix'. The " -"default is `sysv'" +msgid "Use the output format FORMAT. FORMAT can be `bsd', `sysv' or `posix'. The default is `sysv'" msgstr "" #: ../src/nm.c:92 @@ -770,7 +822,8 @@ msgstr "" msgid "Same as --format=posix" msgstr "" -#: ../src/nm.c:94 ../src/size.c:72 +#: ../src/nm.c:94 +#: ../src/size.c:72 msgid "Use RADIX for printing symbol values" msgstr "" @@ -782,7 +835,10 @@ msgstr "" msgid "Print size of defined symbols" msgstr "" -#: ../src/nm.c:98 ../src/size.c:80 ../src/strip.c:77 ../src/unstrip.c:80 +#: ../src/nm.c:98 +#: ../src/size.c:80 +#: ../src/strip.c:77 +#: ../src/unstrip.c:80 msgid "Output options:" msgstr "" @@ -798,8 +854,11 @@ msgstr "" msgid "Reverse the sense of the sort" msgstr "" -#: ../src/nm.c:103 ../src/addr2line.c:73 ../src/findtextrel.c:75 -#: ../src/elfcmp.c:75 ../src/strings.c:83 +#: ../src/nm.c:103 +#: ../src/addr2line.c:73 +#: ../src/findtextrel.c:75 +#: ../src/elfcmp.c:75 +#: ../src/strings.c:83 msgid "Miscellaneous:" msgstr "" @@ -809,31 +868,52 @@ msgid "List symbols from FILEs (a.out by default)." msgstr "" #. Strings for arguments in help texts. -#: ../src/nm.c:111 ../src/size.c:92 ../src/strip.c:96 ../src/findtextrel.c:84 -#: ../src/strings.c:92 ../src/objdump.c:80 +#: ../src/nm.c:111 +#: ../src/size.c:92 +#: ../src/strip.c:96 +#: ../src/findtextrel.c:84 +#: ../src/strings.c:92 +#: ../src/objdump.c:80 msgid "[FILE...]" msgstr "" -#: ../src/nm.c:136 ../src/size.c:117 ../src/strip.c:120 ../src/objdump.c:105 +#: ../src/nm.c:136 +#: ../src/size.c:117 +#: ../src/strip.c:120 +#: ../src/objdump.c:105 #, c-format msgid "%s: INTERNAL ERROR %d (%s-%s): %s" msgstr "" -#: ../src/nm.c:363 ../src/size.c:301 ../src/strip.c:432 ../src/strip.c:467 -#: ../src/ldgeneric.c:1767 ../src/ldgeneric.c:4257 ../src/findtextrel.c:229 -#: ../src/elfcmp.c:574 ../src/ranlib.c:169 ../src/strings.c:183 -#: ../src/unstrip.c:1899 ../src/unstrip.c:1928 +#: ../src/nm.c:363 +#: ../src/size.c:301 +#: ../src/strip.c:432 +#: ../src/strip.c:467 +#: ../src/ldgeneric.c:1767 +#: ../src/ldgeneric.c:4257 +#: ../src/findtextrel.c:229 +#: ../src/elfcmp.c:574 +#: ../src/ranlib.c:169 +#: ../src/strings.c:183 +#: ../src/unstrip.c:1899 +#: ../src/unstrip.c:1928 #, c-format msgid "cannot open '%s'" msgstr "" -#: ../src/nm.c:380 ../src/nm.c:392 ../src/size.c:317 ../src/size.c:326 -#: ../src/size.c:337 ../src/strip.c:1814 +#: ../src/nm.c:380 +#: ../src/nm.c:392 +#: ../src/size.c:317 +#: ../src/size.c:326 +#: ../src/size.c:337 +#: ../src/strip.c:1815 #, c-format msgid "while closing '%s'" msgstr "" -#: ../src/nm.c:402 ../src/strip.c:358 ../src/objdump.c:296 +#: ../src/nm.c:402 +#: ../src/strip.c:358 +#: ../src/objdump.c:296 #, c-format msgid "%s: File format not recognized" msgstr "" @@ -860,7 +940,8 @@ msgstr "" msgid "cannot reset archive offset to beginning" msgstr "" -#: ../src/nm.c:488 ../src/objdump.c:344 +#: ../src/nm.c:488 +#: ../src/objdump.c:344 #, c-format msgid "%s%s%s: file format not recognized" msgstr "" @@ -870,19 +951,35 @@ msgstr "" msgid "cannot create search tree" msgstr "" -#: ../src/nm.c:740 ../src/nm.c:1002 ../src/readelf.c:850 ../src/readelf.c:993 -#: ../src/readelf.c:1134 ../src/readelf.c:1316 ../src/readelf.c:1514 -#: ../src/readelf.c:1659 ../src/readelf.c:1827 ../src/readelf.c:2081 -#: ../src/readelf.c:2147 ../src/readelf.c:2225 ../src/readelf.c:2722 -#: ../src/readelf.c:2758 ../src/readelf.c:2820 ../src/readelf.c:6305 -#: ../src/readelf.c:7171 ../src/readelf.c:7316 ../src/readelf.c:7385 -#: ../src/size.c:425 ../src/size.c:499 ../src/strip.c:482 ../src/objdump.c:744 +#: ../src/nm.c:740 +#: ../src/nm.c:1002 +#: ../src/readelf.c:850 +#: ../src/readelf.c:993 +#: ../src/readelf.c:1134 +#: ../src/readelf.c:1316 +#: ../src/readelf.c:1514 +#: ../src/readelf.c:1659 +#: ../src/readelf.c:1827 +#: ../src/readelf.c:2081 +#: ../src/readelf.c:2147 +#: ../src/readelf.c:2225 +#: ../src/readelf.c:2722 +#: ../src/readelf.c:2758 +#: ../src/readelf.c:2820 +#: ../src/readelf.c:6312 +#: ../src/readelf.c:7178 +#: ../src/readelf.c:7323 +#: ../src/readelf.c:7392 +#: ../src/size.c:425 +#: ../src/size.c:499 +#: ../src/strip.c:482 +#: ../src/objdump.c:744 #, c-format msgid "cannot get section header string table index" msgstr "" #: ../src/nm.c:766 -#, fuzzy, c-format +#, c-format msgid "" "\n" "\n" @@ -895,7 +992,7 @@ msgstr "" "\n" #: ../src/nm.c:768 -#, fuzzy, c-format +#, c-format msgid "" "\n" "\n" @@ -973,9 +1070,7 @@ msgid "Display versioning information" msgstr "" #: ../src/readelf.c:86 -msgid "" -"Display DWARF section content. SECTION can be one of abbrev, aranges, " -"frame, info, loc, line, ranges, pubnames, str, macinfo, or exception" +msgid "Display DWARF section content. SECTION can be one of abbrev, aranges, frame, info, loc, line, ranges, pubnames, str, macinfo, or exception" msgstr "" #: ../src/readelf.c:89 @@ -1012,11 +1107,13 @@ msgid "Print information from ELF file in human-readable form." msgstr "" #. Strings for arguments in help texts. -#: ../src/readelf.c:112 ../src/elflint.c:85 +#: ../src/readelf.c:112 +#: ../src/elflint.c:85 msgid "FILE..." msgstr "" -#: ../src/readelf.c:259 ../src/elflint.c:158 +#: ../src/readelf.c:259 +#: ../src/elflint.c:158 #, c-format msgid "cannot open input file" msgstr "" @@ -1026,11 +1123,13 @@ msgstr "" msgid "Unknown DWARF debug section `%s'.\n" msgstr "" -#: ../src/readelf.c:408 ../src/elflint.c:222 +#: ../src/readelf.c:408 +#: ../src/elflint.c:222 msgid "Missing file name.\n" msgstr "" -#: ../src/readelf.c:413 ../src/objdump.c:236 +#: ../src/readelf.c:413 +#: ../src/objdump.c:236 msgid "No operation specified.\n" msgstr "" @@ -1074,7 +1173,9 @@ msgstr "" msgid "cannot create EBL handle" msgstr "" -#: ../src/readelf.c:611 ../src/strip.c:542 ../src/ldgeneric.c:661 +#: ../src/readelf.c:611 +#: ../src/strip.c:542 +#: ../src/ldgeneric.c:661 #: ../src/ldgeneric.c:1122 #, c-format msgid "cannot determine number of sections: %s" @@ -1134,7 +1235,8 @@ msgstr "" msgid " Ident Version: %hhd %s\n" msgstr "" -#: ../src/readelf.c:735 ../src/readelf.c:752 +#: ../src/readelf.c:735 +#: ../src/readelf.c:752 msgid "(current)" msgstr "" @@ -1172,7 +1274,8 @@ msgstr "" msgid " Start of program headers: % %s\n" msgstr "" -#: ../src/readelf.c:758 ../src/readelf.c:761 +#: ../src/readelf.c:758 +#: ../src/readelf.c:761 msgid "(bytes into file)" msgstr "" @@ -1191,7 +1294,9 @@ msgstr "" msgid " Size of this header: % %s\n" msgstr "" -#: ../src/readelf.c:767 ../src/readelf.c:770 ../src/readelf.c:776 +#: ../src/readelf.c:767 +#: ../src/readelf.c:770 +#: ../src/readelf.c:776 msgid "(bytes)" msgstr "" @@ -1220,7 +1325,8 @@ msgstr "" msgid " (% in [0].sh_size)" msgstr "" -#: ../src/readelf.c:788 ../src/readelf.c:802 +#: ../src/readelf.c:788 +#: ../src/readelf.c:802 msgid " ([0] not available)" msgstr "" @@ -1256,28 +1362,36 @@ msgid "Section Headers:" msgstr "" #: ../src/readelf.c:855 -msgid "" -"[Nr] Name Type Addr Off Size ES Flags Lk " -"Inf Al" +msgid "[Nr] Name Type Addr Off Size ES Flags Lk Inf Al" msgstr "" #: ../src/readelf.c:857 -msgid "" -"[Nr] Name Type Addr Off Size ES " -"Flags Lk Inf Al" +msgid "[Nr] Name Type Addr Off Size ES Flags Lk Inf Al" msgstr "" -#: ../src/readelf.c:864 ../src/readelf.c:1017 +#: ../src/readelf.c:864 +#: ../src/readelf.c:1017 #, c-format msgid "cannot get section: %s" msgstr "" -#: ../src/readelf.c:871 ../src/readelf.c:1025 ../src/readelf.c:7336 -#: ../src/unstrip.c:352 ../src/unstrip.c:376 ../src/unstrip.c:426 -#: ../src/unstrip.c:535 ../src/unstrip.c:552 ../src/unstrip.c:590 -#: ../src/unstrip.c:788 ../src/unstrip.c:1056 ../src/unstrip.c:1243 -#: ../src/unstrip.c:1304 ../src/unstrip.c:1426 ../src/unstrip.c:1479 -#: ../src/unstrip.c:1587 ../src/unstrip.c:1777 +#: ../src/readelf.c:871 +#: ../src/readelf.c:1025 +#: ../src/readelf.c:7343 +#: ../src/unstrip.c:352 +#: ../src/unstrip.c:376 +#: ../src/unstrip.c:426 +#: ../src/unstrip.c:535 +#: ../src/unstrip.c:552 +#: ../src/unstrip.c:590 +#: ../src/unstrip.c:788 +#: ../src/unstrip.c:1056 +#: ../src/unstrip.c:1243 +#: ../src/unstrip.c:1304 +#: ../src/unstrip.c:1426 +#: ../src/unstrip.c:1479 +#: ../src/unstrip.c:1587 +#: ../src/unstrip.c:1777 #, c-format msgid "cannot get section header: %s" msgstr "" @@ -1287,14 +1401,11 @@ msgid "Program Headers:" msgstr "" #: ../src/readelf.c:931 -msgid "" -" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align" +msgid " Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align" msgstr "" #: ../src/readelf.c:934 -msgid "" -" Type Offset VirtAddr PhysAddr FileSiz " -"MemSiz Flg Align" +msgid " Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align" msgstr "" #: ../src/readelf.c:974 @@ -1309,7 +1420,9 @@ msgid "" " Segment Sections..." msgstr "" -#: ../src/readelf.c:1006 ../src/unstrip.c:1823 ../src/unstrip.c:1862 +#: ../src/readelf.c:1006 +#: ../src/unstrip.c:1823 +#: ../src/unstrip.c:1862 #: ../src/unstrip.c:1869 #, c-format msgid "cannot get program header: %s" @@ -1320,18 +1433,22 @@ msgstr "" msgid "" "\n" "COMDAT section group [%2zu] '%s' with signature '%s' contains %zu entry:\n" +msgid_plural "" "\n" "COMDAT section group [%2zu] '%s' with signature '%s' contains %zu entries:\n" -msgstr "" +msgstr[0] "" +msgstr[1] "" #: ../src/readelf.c:1145 #, c-format msgid "" "\n" "Section group [%2zu] '%s' with signature '%s' contains %zu entry:\n" +msgid_plural "" "\n" "Section group [%2zu] '%s' with signature '%s' contains %zu entries:\n" -msgstr "" +msgstr[0] "" +msgstr[1] "" #: ../src/readelf.c:1153 msgid "" @@ -1347,10 +1464,12 @@ msgid "" "\n" "Dynamic segment contains %lu entry:\n" " Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" +msgid_plural "" "\n" "Dynamic segment contains %lu entries:\n" " Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" -msgstr "" +msgstr[0] "" +msgstr[1] "" #: ../src/readelf.c:1330 msgid " Type Value\n" @@ -1381,23 +1500,25 @@ msgstr "" msgid "% (bytes)\n" msgstr "" -#: ../src/readelf.c:1499 ../src/readelf.c:1644 +#: ../src/readelf.c:1499 +#: ../src/readelf.c:1644 #, c-format msgid "" "\n" "Invalid symbol table at offset %#0\n" msgstr "" -#: ../src/readelf.c:1517 ../src/readelf.c:1661 +#: ../src/readelf.c:1517 +#: ../src/readelf.c:1661 #, c-format msgid "" "\n" -"Relocation section [%2zu] '%s' for section [%2u] '%s' at offset %#0 " -"contains %d entry:\n" +"Relocation section [%2zu] '%s' for section [%2u] '%s' at offset %#0 contains %d entry:\n" +msgid_plural "" "\n" -"Relocation section [%2zu] '%s' for section [%2u] '%s' at offset %#0 " -"contains %d entries:\n" -msgstr "" +"Relocation section [%2zu] '%s' for section [%2u] '%s' at offset %#0 contains %d entries:\n" +msgstr[0] "" +msgstr[1] "" #. The .rel.dyn section does not refer to a specific section but #. instead of section index zero. Do not try to print a section @@ -1407,9 +1528,11 @@ msgstr "" msgid "" "\n" "Relocation section [%2u] '%s' at offset %#0 contains %d entry:\n" +msgid_plural "" "\n" "Relocation section [%2u] '%s' at offset %#0 contains %d entries:\n" -msgstr "" +msgstr[0] "" +msgstr[1] "" #: ../src/readelf.c:1542 msgid " Offset Type Value Name\n" @@ -1419,17 +1542,26 @@ msgstr "" msgid " Offset Type Value Name\n" msgstr "" -#: ../src/readelf.c:1568 ../src/readelf.c:1580 ../src/readelf.c:1598 -#: ../src/readelf.c:1610 ../src/readelf.c:1700 ../src/readelf.c:1713 -#: ../src/readelf.c:1732 ../src/readelf.c:1745 +#: ../src/readelf.c:1568 +#: ../src/readelf.c:1580 +#: ../src/readelf.c:1598 +#: ../src/readelf.c:1610 +#: ../src/readelf.c:1700 +#: ../src/readelf.c:1713 +#: ../src/readelf.c:1732 +#: ../src/readelf.c:1745 msgid "" msgstr "" -#: ../src/readelf.c:1569 ../src/readelf.c:1701 ../src/objdump.c:379 +#: ../src/readelf.c:1569 +#: ../src/readelf.c:1701 +#: ../src/objdump.c:379 msgid "INVALID SYMBOL" msgstr "" -#: ../src/readelf.c:1599 ../src/readelf.c:1733 ../src/objdump.c:394 +#: ../src/readelf.c:1599 +#: ../src/readelf.c:1733 +#: ../src/objdump.c:394 msgid "INVALID SECTION" msgstr "" @@ -1446,14 +1578,18 @@ msgstr "" msgid "" "\n" "Symbol table [%2u] '%s' contains %u entry:\n" +msgid_plural "" "\n" "Symbol table [%2u] '%s' contains %u entries:\n" -msgstr "" +msgstr[0] "" +msgstr[1] "" #: ../src/readelf.c:1840 #, c-format msgid " %lu local symbol String table: [%2u] '%s'\n" -msgstr "" +msgid_plural " %lu local symbols String table: [%2u] '%s'\n" +msgstr[0] "" +msgstr[1] "" #: ../src/readelf.c:1850 msgid " Num: Value Size Type Bind Vis Ndx Name\n" @@ -1487,10 +1623,12 @@ msgid "" "\n" "Version needs section [%2u] '%s' contains %d entry:\n" " Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" +msgid_plural "" "\n" "Version needs section [%2u] '%s' contains %d entries:\n" " Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" -msgstr "" +msgstr[0] "" +msgstr[1] "" #: ../src/readelf.c:2107 #, c-format @@ -1508,10 +1646,12 @@ msgid "" "\n" "Version definition section [%2u] '%s' contains %d entry:\n" " Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" +msgid_plural "" "\n" "Version definition section [%2u] '%s' contains %d entries:\n" " Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" -msgstr "" +msgstr[0] "" +msgstr[1] "" #: ../src/readelf.c:2181 #, c-format @@ -1529,10 +1669,12 @@ msgid "" "\n" "Version symbols section [%2u] '%s' contains %d entry:\n" " Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'" +msgid_plural "" "\n" "Version symbols section [%2u] '%s' contains %d entries:\n" " Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'" -msgstr "" +msgstr[0] "" +msgstr[1] "" #: ../src/readelf.c:2458 msgid " 0 *local* " @@ -1546,14 +1688,14 @@ msgstr "" #, c-format msgid "" "\n" -"Histogram for bucket list length in section [%2u] '%s' (total of %d " -"bucket):\n" +"Histogram for bucket list length in section [%2u] '%s' (total of %d bucket):\n" " Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" +msgid_plural "" "\n" -"Histogram for bucket list length in section [%2u] '%s' (total of %d " -"buckets):\n" +"Histogram for bucket list length in section [%2u] '%s' (total of %d buckets):\n" " Addr: %#0* Offset: %#08 Link to section: [%2u] '%s'\n" -msgstr "" +msgstr[0] "" +msgstr[1] "" #: ../src/readelf.c:2517 #, c-format @@ -1577,7 +1719,9 @@ msgid "" " unsuccessful lookup: %f\n" msgstr "" -#: ../src/readelf.c:2557 ../src/readelf.c:2599 ../src/readelf.c:2640 +#: ../src/readelf.c:2557 +#: ../src/readelf.c:2599 +#: ../src/readelf.c:2640 #, c-format msgid "cannot get data for section %d: %s" msgstr "" @@ -1594,150 +1738,149 @@ msgstr "" msgid "" "\n" "Library list section [%2zu] '%s' at offset %#0 contains %d entry:\n" +msgid_plural "" "\n" "Library list section [%2zu] '%s' at offset %#0 contains %d entries:\n" -msgstr "" +msgstr[0] "" +msgstr[1] "" #: ../src/readelf.c:2782 -msgid "" -" Library Time Stamp Checksum Version " -"Flags" +msgid " Library Time Stamp Checksum Version Flags" msgstr "" -#: ../src/readelf.c:2830 +#: ../src/readelf.c:2832 #, c-format msgid "" "\n" -"Object attributes section [%2zu] '%s' of % bytes at offset %" -"#0:\n" +"Object attributes section [%2zu] '%s' of % bytes at offset %#0:\n" msgstr "" -#: ../src/readelf.c:2846 +#: ../src/readelf.c:2848 msgid " Owner Size\n" msgstr "" -#: ../src/readelf.c:2872 +#: ../src/readelf.c:2874 #, c-format msgid " %-13s %4\n" msgstr "" -#: ../src/readelf.c:2903 +#: ../src/readelf.c:2906 #, c-format msgid " %-4u %12\n" msgstr "" #. Tag_File -#: ../src/readelf.c:2908 +#: ../src/readelf.c:2911 #, c-format msgid " File: %11\n" msgstr "" -#: ../src/readelf.c:2943 +#: ../src/readelf.c:2946 #, c-format msgid " %s: %, %s\n" msgstr "" -#: ../src/readelf.c:2946 +#: ../src/readelf.c:2949 #, c-format msgid " %s: %\n" msgstr "" -#: ../src/readelf.c:2949 +#: ../src/readelf.c:2952 #, c-format msgid " %s: %s\n" msgstr "" -#: ../src/readelf.c:2956 +#: ../src/readelf.c:2959 #, c-format msgid " %u: %\n" msgstr "" -#: ../src/readelf.c:2959 +#: ../src/readelf.c:2962 #, c-format msgid " %u: %s\n" msgstr "" -#: ../src/readelf.c:2994 +#: ../src/readelf.c:2997 #, c-format msgid "%s+%# <%s+%#>" msgstr "" -#: ../src/readelf.c:2997 +#: ../src/readelf.c:3000 #, c-format msgid "%s+%#0* <%s+%#>" msgstr "" -#: ../src/readelf.c:3002 +#: ../src/readelf.c:3005 #, c-format msgid "%# <%s+%#>" msgstr "" -#: ../src/readelf.c:3005 +#: ../src/readelf.c:3008 #, c-format msgid "%#0* <%s+%#>" msgstr "" -#: ../src/readelf.c:3011 +#: ../src/readelf.c:3014 #, c-format msgid "%s+%# <%s>" msgstr "" -#: ../src/readelf.c:3014 +#: ../src/readelf.c:3017 #, c-format msgid "%s+%#0* <%s>" msgstr "" -#: ../src/readelf.c:3018 +#: ../src/readelf.c:3021 #, c-format msgid "%# <%s>" msgstr "" -#: ../src/readelf.c:3021 +#: ../src/readelf.c:3024 #, c-format msgid "%#0* <%s>" msgstr "" -#: ../src/readelf.c:3026 +#: ../src/readelf.c:3029 #, c-format msgid "%s+%#" msgstr "" -#: ../src/readelf.c:3029 +#: ../src/readelf.c:3032 #, c-format msgid "%s+%#0*" msgstr "" -#: ../src/readelf.c:3137 +#: ../src/readelf.c:3140 #, c-format msgid "unknown tag %hx" msgstr "" -#: ../src/readelf.c:3139 +#: ../src/readelf.c:3142 #, c-format msgid "unknown user tag %hx" msgstr "" -#: ../src/readelf.c:3349 +#: ../src/readelf.c:3352 #, c-format msgid "unknown attribute %hx" msgstr "" -#: ../src/readelf.c:3352 +#: ../src/readelf.c:3355 #, c-format msgid "unknown user attribute %hx" msgstr "" -#: ../src/readelf.c:3398 +#: ../src/readelf.c:3401 #, c-format msgid "unknown form %" msgstr "" -#: ../src/readelf.c:4014 +#: ../src/readelf.c:4017 #, c-format msgid "%*s[%4] %s \n" msgstr "" -#: ../src/readelf.c:4027 +#: ../src/readelf.c:4030 #, c-format msgid "" "\n" @@ -1745,159 +1888,169 @@ msgid "" " [ Code]\n" msgstr "" -#: ../src/readelf.c:4034 +#: ../src/readelf.c:4037 #, c-format msgid "" "\n" "Abbreviation section at offset %:\n" msgstr "" -#: ../src/readelf.c:4047 +#: ../src/readelf.c:4050 #, c-format msgid " *** error while reading abbreviation: %s\n" msgstr "" -#: ../src/readelf.c:4063 +#: ../src/readelf.c:4066 #, c-format msgid " [%5u] offset: %, children: %s, tag: %s\n" msgstr "" -#: ../src/readelf.c:4066 +#: ../src/readelf.c:4069 msgid "yes" msgstr "" -#: ../src/readelf.c:4066 +#: ../src/readelf.c:4069 msgid "no" msgstr "" -#: ../src/readelf.c:4102 +#: ../src/readelf.c:4105 #, c-format msgid "cannot get .debug_aranges content: %s" msgstr "" -#: ../src/readelf.c:4107 +#: ../src/readelf.c:4110 #, c-format msgid "" "\n" "DWARF section [%2zu] '%s' at offset %# contains %zu entry:\n" +msgid_plural "" "\n" "DWARF section [%2zu] '%s' at offset %# contains %zu entries:\n" -msgstr "" +msgstr[0] "" +msgstr[1] "" -#: ../src/readelf.c:4137 +#: ../src/readelf.c:4140 #, c-format msgid " [%*zu] ???\n" msgstr "" -#: ../src/readelf.c:4139 +#: ../src/readelf.c:4142 #, c-format -msgid "" -" [%*zu] start: %0#*, length: %5, CU DIE offset: %6\n" +msgid " [%*zu] start: %0#*, length: %5, CU DIE offset: %6\n" msgstr "" -#: ../src/readelf.c:4158 +#: ../src/readelf.c:4161 #, c-format msgid "cannot get .debug_ranges content: %s" msgstr "" -#: ../src/readelf.c:4163 ../src/readelf.c:4620 ../src/readelf.c:5265 -#: ../src/readelf.c:5710 ../src/readelf.c:5805 ../src/readelf.c:5977 +#: ../src/readelf.c:4166 +#: ../src/readelf.c:4623 +#: ../src/readelf.c:5272 +#: ../src/readelf.c:5717 +#: ../src/readelf.c:5812 +#: ../src/readelf.c:5984 #, c-format msgid "" "\n" "DWARF section [%2zu] '%s' at offset %#:\n" msgstr "" -#: ../src/readelf.c:4177 ../src/readelf.c:5724 +#: ../src/readelf.c:4180 +#: ../src/readelf.c:5731 #, c-format msgid " [%6tx] \n" msgstr "" -#: ../src/readelf.c:4199 ../src/readelf.c:5746 +#: ../src/readelf.c:4202 +#: ../src/readelf.c:5753 #, c-format msgid " [%6tx] base address %s\n" msgstr "" #. We have an address range entry. #. First address range entry in a list. -#: ../src/readelf.c:4210 +#: ../src/readelf.c:4213 #, c-format msgid " [%6tx] %s..%s\n" msgstr "" -#: ../src/readelf.c:4212 +#: ../src/readelf.c:4215 #, c-format msgid " %s..%s\n" msgstr "" -#: ../src/readelf.c:4609 ../src/readelf.c:6043 ../src/readelf.c:6145 +#: ../src/readelf.c:4612 +#: ../src/readelf.c:6050 +#: ../src/readelf.c:6152 #, c-format msgid "cannot get %s content: %s" msgstr "" -#: ../src/readelf.c:4616 +#: ../src/readelf.c:4619 #, c-format msgid "" "\n" "Call frame information section [%2zu] '%s' at offset %#:\n" msgstr "" -#: ../src/readelf.c:4643 ../src/readelf.c:5299 +#: ../src/readelf.c:4646 +#: ../src/readelf.c:5306 #, c-format msgid "invalid data in section [%zu] '%s'" msgstr "" -#: ../src/readelf.c:4665 +#: ../src/readelf.c:4668 #, c-format msgid "" "\n" " [%6tx] Zero terminator\n" msgstr "" -#: ../src/readelf.c:4739 +#: ../src/readelf.c:4746 msgid "FDE address encoding: " msgstr "" -#: ../src/readelf.c:4745 +#: ../src/readelf.c:4752 msgid "LSDA pointer encoding: " msgstr "" -#: ../src/readelf.c:4790 +#: ../src/readelf.c:4797 #, c-format msgid "invalid augmentation encoding" msgstr "" -#: ../src/readelf.c:4861 +#: ../src/readelf.c:4868 #, c-format msgid " (offset: %#)" msgstr "" -#: ../src/readelf.c:4868 +#: ../src/readelf.c:4875 #, c-format msgid " (end offset: %#)" msgstr "" -#: ../src/readelf.c:4895 +#: ../src/readelf.c:4902 #, c-format msgid " %-26sLSDA pointer: %#\n" msgstr "" -#: ../src/readelf.c:4941 +#: ../src/readelf.c:4948 #, c-format msgid "cannot get attribute code: %s" msgstr "" -#: ../src/readelf.c:4949 +#: ../src/readelf.c:4956 #, c-format msgid "cannot get attribute form: %s" msgstr "" -#: ../src/readelf.c:4962 +#: ../src/readelf.c:4969 #, c-format msgid "cannot get attribute value: %s" msgstr "" -#: ../src/readelf.c:5144 +#: ../src/readelf.c:5151 #, c-format msgid "" "\n" @@ -1905,45 +2058,44 @@ msgid "" " [Offset]\n" msgstr "" -#: ../src/readelf.c:5169 +#: ../src/readelf.c:5176 #, c-format msgid "" " Compilation unit at offset %:\n" -" Version: %, Abbreviation section offset: %, Address size: %" -", Offset size: %\n" +" Version: %, Abbreviation section offset: %, Address size: %, Offset size: %\n" msgstr "" -#: ../src/readelf.c:5187 +#: ../src/readelf.c:5194 #, c-format msgid "cannot get DIE at offset % in section '%s': %s" msgstr "" -#: ../src/readelf.c:5198 +#: ../src/readelf.c:5205 #, c-format msgid "cannot get DIE offset: %s" msgstr "" -#: ../src/readelf.c:5206 +#: ../src/readelf.c:5213 #, c-format msgid "cannot get tag of DIE at offset % in section '%s': %s" msgstr "" -#: ../src/readelf.c:5235 +#: ../src/readelf.c:5242 #, c-format msgid "cannot get next DIE: %s\n" msgstr "" -#: ../src/readelf.c:5242 +#: ../src/readelf.c:5249 #, c-format msgid "cannot get next DIE: %s" msgstr "" -#: ../src/readelf.c:5277 +#: ../src/readelf.c:5284 #, c-format msgid "cannot get line data section data: %s" msgstr "" -#: ../src/readelf.c:5290 +#: ../src/readelf.c:5297 #, c-format msgid "" "\n" @@ -1951,7 +2103,7 @@ msgid "" msgstr "" #. Print what we got so far. -#: ../src/readelf.c:5342 +#: ../src/readelf.c:5349 #, c-format msgid "" "\n" @@ -1967,159 +2119,163 @@ msgid "" "Opcodes:\n" msgstr "" -#: ../src/readelf.c:5361 +#: ../src/readelf.c:5368 #, c-format msgid "invalid data at offset %tu in section [%zu] '%s'" msgstr "" -#: ../src/readelf.c:5376 +#: ../src/readelf.c:5383 #, c-format msgid " [%*] %hhu argument\n" -msgstr "" +msgid_plural " [%*] %hhu arguments\n" +msgstr[0] "" +msgstr[1] "" -#: ../src/readelf.c:5384 +#: ../src/readelf.c:5391 msgid "" "\n" "Directory table:" msgstr "" -#: ../src/readelf.c:5400 +#: ../src/readelf.c:5407 msgid "" "\n" "File name table:\n" " Entry Dir Time Size Name" msgstr "" -#: ../src/readelf.c:5429 +#: ../src/readelf.c:5436 msgid "" "\n" "Line number statements:" msgstr "" -#: ../src/readelf.c:5490 +#: ../src/readelf.c:5497 #, c-format msgid " special opcode %u: address+%u = %s, line%+d = %zu\n" msgstr "" -#: ../src/readelf.c:5510 +#: ../src/readelf.c:5517 #, c-format msgid " extended opcode %u: " msgstr "" -#: ../src/readelf.c:5515 +#: ../src/readelf.c:5522 msgid "end of sequence" msgstr "" -#: ../src/readelf.c:5530 +#: ../src/readelf.c:5537 #, c-format msgid "set address to %s\n" msgstr "" -#: ../src/readelf.c:5551 +#: ../src/readelf.c:5558 #, c-format msgid "define new file: dir=%u, mtime=%, length=%, name=%s\n" msgstr "" #. Unknown, ignore it. -#: ../src/readelf.c:5560 +#: ../src/readelf.c:5567 msgid "unknown opcode" msgstr "" #. Takes no argument. -#: ../src/readelf.c:5572 +#: ../src/readelf.c:5579 msgid " copy" msgstr "" -#: ../src/readelf.c:5582 +#: ../src/readelf.c:5589 #, c-format msgid "advance address by %u to %s\n" msgstr "" -#: ../src/readelf.c:5593 +#: ../src/readelf.c:5600 #, c-format msgid " advance line by constant %d to %\n" msgstr "" -#: ../src/readelf.c:5601 +#: ../src/readelf.c:5608 #, c-format msgid " set file to %\n" msgstr "" -#: ../src/readelf.c:5611 +#: ../src/readelf.c:5618 #, c-format msgid " set column to %\n" msgstr "" -#: ../src/readelf.c:5618 +#: ../src/readelf.c:5625 #, c-format msgid " set '%s' to %\n" msgstr "" #. Takes no argument. -#: ../src/readelf.c:5624 +#: ../src/readelf.c:5631 msgid " set basic block flag" msgstr "" -#: ../src/readelf.c:5634 +#: ../src/readelf.c:5641 #, c-format msgid "advance address by constant %u to %s\n" msgstr "" -#: ../src/readelf.c:5650 +#: ../src/readelf.c:5657 #, c-format msgid "advance address by fixed value %u to %s\n" msgstr "" #. Takes no argument. -#: ../src/readelf.c:5659 +#: ../src/readelf.c:5666 msgid " set prologue end flag" msgstr "" #. Takes no argument. -#: ../src/readelf.c:5664 +#: ../src/readelf.c:5671 msgid " set epilogue begin flag" msgstr "" #. This is a new opcode the generator but not we know about. #. Read the parameters associated with it but then discard #. everything. Read all the parameters for this opcode. -#: ../src/readelf.c:5673 +#: ../src/readelf.c:5680 #, c-format msgid " unknown opcode with % parameter:" -msgstr "" +msgid_plural " unknown opcode with % parameters:" +msgstr[0] "" +msgstr[1] "" -#: ../src/readelf.c:5705 +#: ../src/readelf.c:5712 #, c-format msgid "cannot get .debug_loc content: %s" msgstr "" #. First entry in a list. -#: ../src/readelf.c:5760 +#: ../src/readelf.c:5767 #, c-format msgid " [%6tx] %s..%s" msgstr "" -#: ../src/readelf.c:5762 +#: ../src/readelf.c:5769 #, c-format msgid " %s..%s" msgstr "" -#: ../src/readelf.c:5815 +#: ../src/readelf.c:5822 #, c-format msgid "cannot get macro information section data: %s" msgstr "" -#: ../src/readelf.c:5894 +#: ../src/readelf.c:5901 #, c-format msgid "%*s*** non-terminated string at end of section" msgstr "" -#: ../src/readelf.c:5962 +#: ../src/readelf.c:5969 #, c-format msgid " [%5d] DIE offset: %6, CU DIE offset: %6, name: %s\n" msgstr "" -#: ../src/readelf.c:6001 +#: ../src/readelf.c:6008 #, c-format msgid "" "\n" @@ -2127,47 +2283,47 @@ msgid "" " %*s String\n" msgstr "" -#: ../src/readelf.c:6015 +#: ../src/readelf.c:6022 #, c-format msgid " *** error while reading strings: %s\n" msgstr "" -#: ../src/readelf.c:6035 +#: ../src/readelf.c:6042 #, c-format msgid "" "\n" "Call frame search table section [%2zu] '.eh_frame_hdr':\n" msgstr "" -#: ../src/readelf.c:6137 +#: ../src/readelf.c:6144 #, c-format msgid "" "\n" "Exception handling table section [%2zu] '.gcc_except_table':\n" msgstr "" -#: ../src/readelf.c:6160 +#: ../src/readelf.c:6167 #, c-format msgid " LPStart encoding: %#x " msgstr "" -#: ../src/readelf.c:6172 +#: ../src/readelf.c:6179 #, c-format msgid " TType encoding: %#x " msgstr "" -#: ../src/readelf.c:6186 +#: ../src/readelf.c:6193 #, c-format msgid " Call site encoding: %#x " msgstr "" -#: ../src/readelf.c:6199 +#: ../src/readelf.c:6206 msgid "" "\n" " Call site table:" msgstr "" -#: ../src/readelf.c:6213 +#: ../src/readelf.c:6220 #, c-format msgid "" " [%4u] Call site start: %#\n" @@ -2176,146 +2332,151 @@ msgid "" " Action: %u\n" msgstr "" -#: ../src/readelf.c:6273 +#: ../src/readelf.c:6280 #, c-format msgid "invalid TType encoding" msgstr "" -#: ../src/readelf.c:6296 +#: ../src/readelf.c:6303 #, c-format msgid "cannot get debug context descriptor: %s" msgstr "" -#: ../src/readelf.c:6431 ../src/readelf.c:7009 +#: ../src/readelf.c:6438 +#: ../src/readelf.c:7016 #, c-format msgid "cannot convert core note data: %s" msgstr "" -#: ../src/readelf.c:6736 +#: ../src/readelf.c:6743 #, c-format msgid "" "\n" "%*s... ..." msgstr "" -#: ../src/readelf.c:6778 +#: ../src/readelf.c:6785 #, c-format msgid "unable to handle register number %d" msgstr "" -#: ../src/readelf.c:6925 ../src/readelf.c:6949 +#: ../src/readelf.c:6932 +#, c-format +msgid "cannot get register info: %s" +msgstr "" + +#: ../src/readelf.c:6956 #, c-format msgid "cannot register info: %s" msgstr "" -#: ../src/readelf.c:7107 +#: ../src/readelf.c:7114 msgid " Owner Data size Type\n" msgstr "" -#: ../src/readelf.c:7125 +#: ../src/readelf.c:7132 #, c-format msgid " %-13.*s %9 %s\n" msgstr "" -#: ../src/readelf.c:7156 +#: ../src/readelf.c:7163 #, c-format msgid "cannot get content of note section: %s" msgstr "" -#: ../src/readelf.c:7183 +#: ../src/readelf.c:7190 #, c-format msgid "" "\n" "Note section [%2zu] '%s' of % bytes at offset %#0:\n" msgstr "" -#: ../src/readelf.c:7206 +#: ../src/readelf.c:7213 #, c-format msgid "" "\n" "Note segment of % bytes at offset %#0:\n" msgstr "" -#: ../src/readelf.c:7252 +#: ../src/readelf.c:7259 #, c-format msgid "" "\n" "Section [%Zu] '%s' has no data to dump.\n" msgstr "" -#: ../src/readelf.c:7258 ../src/readelf.c:7280 +#: ../src/readelf.c:7265 +#: ../src/readelf.c:7287 #, c-format msgid "cannot get data for section [%Zu] '%s': %s" msgstr "" -#: ../src/readelf.c:7262 +#: ../src/readelf.c:7269 #, c-format msgid "" "\n" "Hex dump of section [%Zu] '%s', % bytes at offset %#0:\n" msgstr "" -#: ../src/readelf.c:7275 +#: ../src/readelf.c:7282 #, c-format msgid "" "\n" "Section [%Zu] '%s' is empty.\n" msgstr "" -#: ../src/readelf.c:7284 +#: ../src/readelf.c:7291 #, c-format msgid "" "\n" "String section [%Zu] '%s' contains % bytes at offset %#0:\n" msgstr "" -#: ../src/readelf.c:7331 +#: ../src/readelf.c:7338 #, c-format msgid "" "\n" "section [%lu] does not exist" msgstr "" -#: ../src/readelf.c:7357 +#: ../src/readelf.c:7364 #, c-format msgid "" "\n" "section '%s' does not exist" msgstr "" -#: ../src/readelf.c:7418 +#: ../src/readelf.c:7425 #, c-format msgid "cannot get symbol index of archive '%s': %s" msgstr "" -#: ../src/readelf.c:7421 +#: ../src/readelf.c:7428 #, c-format msgid "" "\n" "Archive '%s' has no symbol index\n" msgstr "" -#: ../src/readelf.c:7425 +#: ../src/readelf.c:7432 #, c-format msgid "" "\n" "Index of archive '%s' has %Zu entries:\n" msgstr "" -#: ../src/readelf.c:7443 +#: ../src/readelf.c:7450 #, c-format msgid "cannot extract member at offset %Zu in '%s': %s" msgstr "" -#: ../src/readelf.c:7448 +#: ../src/readelf.c:7455 #, c-format msgid "Archive member '%s' contains:\n" msgstr "" #: ../src/size.c:68 -msgid "" -"Use the output format FORMAT. FORMAT can be `bsd' or `sysv'. The default " -"is `bsd'" +msgid "Use the output format FORMAT. FORMAT can be `bsd' or `sysv'. The default is `bsd'" msgstr "" #: ../src/size.c:70 @@ -2370,7 +2531,8 @@ msgstr "" msgid "%s: file format not recognized" msgstr "" -#: ../src/size.c:446 ../src/size.c:589 +#: ../src/size.c:446 +#: ../src/size.c:589 #, c-format msgid " (ex %s)" msgstr "" @@ -2427,7 +2589,8 @@ msgstr "" msgid "-F option specified twice" msgstr "" -#: ../src/strip.c:239 ../src/unstrip.c:124 +#: ../src/strip.c:239 +#: ../src/unstrip.c:124 #, c-format msgid "-o option specified twice" msgstr "" @@ -2437,7 +2600,8 @@ msgstr "" msgid "-R option supports only .comment section" msgstr "" -#: ../src/strip.c:297 ../src/strip.c:321 +#: ../src/strip.c:297 +#: ../src/strip.c:321 #, c-format msgid "cannot stat input file '%s'" msgstr "" @@ -2457,7 +2621,8 @@ msgstr "" msgid "cannot open EBL backend" msgstr "" -#: ../src/strip.c:497 ../src/strip.c:521 +#: ../src/strip.c:497 +#: ../src/strip.c:521 #, c-format msgid "cannot create new file '%s': %s" msgstr "" @@ -2467,62 +2632,68 @@ msgstr "" msgid "illformed file '%s'" msgstr "" -#: ../src/strip.c:867 ../src/strip.c:954 +#: ../src/strip.c:868 +#: ../src/strip.c:955 #, c-format msgid "while generating output file: %s" msgstr "" -#: ../src/strip.c:927 ../src/strip.c:1666 +#: ../src/strip.c:928 +#: ../src/strip.c:1667 #, c-format msgid "%s: error while creating ELF header: %s" msgstr "" -#: ../src/strip.c:941 +#: ../src/strip.c:942 #, c-format msgid "while preparing output for '%s'" msgstr "" -#: ../src/strip.c:992 ../src/strip.c:1048 +#: ../src/strip.c:993 +#: ../src/strip.c:1049 #, c-format msgid "while create section header section: %s" msgstr "" -#: ../src/strip.c:998 +#: ../src/strip.c:999 #, c-format msgid "cannot allocate section data: %s" msgstr "" -#: ../src/strip.c:1057 +#: ../src/strip.c:1058 #, c-format msgid "while create section header string table: %s" msgstr "" -#: ../src/strip.c:1591 ../src/strip.c:1688 +#: ../src/strip.c:1592 +#: ../src/strip.c:1689 #, c-format msgid "while writing '%s': %s" msgstr "" -#: ../src/strip.c:1602 +#: ../src/strip.c:1603 #, c-format msgid "while creating '%s'" msgstr "" -#: ../src/strip.c:1614 +#: ../src/strip.c:1615 #, c-format msgid "while computing checksum for debug information" msgstr "" -#: ../src/strip.c:1674 +#: ../src/strip.c:1675 #, c-format msgid "%s: error while reading the file: %s" msgstr "" -#: ../src/strip.c:1720 ../src/strip.c:1727 +#: ../src/strip.c:1721 +#: ../src/strip.c:1728 #, c-format msgid "error while finishing '%s': %s" msgstr "" -#: ../src/strip.c:1750 ../src/strip.c:1807 +#: ../src/strip.c:1751 +#: ../src/strip.c:1808 #, c-format msgid "cannot set access and modification date of '%s'" msgstr "" @@ -2539,7 +2710,9 @@ msgstr "" msgid "Stop including the whole arhives in the output." msgstr "" -#: ../src/ld.c:92 ../src/ld.c:106 ../src/ld.c:184 +#: ../src/ld.c:92 +#: ../src/ld.c:106 +#: ../src/ld.c:184 msgid "FILE" msgstr "" @@ -2588,8 +2761,7 @@ msgid "Same as --whole-archive." msgstr "" #: ../src/ld.c:112 -msgid "" -"Default rules of extracting from archive; weak references are not enough." +msgid "Default rules of extracting from archive; weak references are not enough." msgstr "" #: ../src/ld.c:116 @@ -2790,7 +2962,8 @@ msgstr "" msgid "-( without matching -)" msgstr "" -#: ../src/ld.c:572 ../src/ld.c:610 +#: ../src/ld.c:572 +#: ../src/ld.c:610 #, c-format msgid "only one option of -G and -r is allowed" msgstr "" @@ -2800,7 +2973,8 @@ msgstr "" msgid "more than one '-m' parameter" msgstr "" -#: ../src/ld.c:604 ../src/ld.c:1013 +#: ../src/ld.c:604 +#: ../src/ld.c:1013 #, c-format msgid "unknown option `-%c %s'" msgstr "" @@ -2862,12 +3036,14 @@ msgstr "" #. The symbol is already defined and now again #. in the linker script. This is an error. -#: ../src/ld.c:1512 ../src/ld.c:1551 +#: ../src/ld.c:1512 +#: ../src/ld.c:1551 #, c-format msgid "duplicate definition of '%s' in linker script" msgstr "" -#: ../src/ldgeneric.c:209 ../src/ldgeneric.c:5151 +#: ../src/ldgeneric.c:209 +#: ../src/ldgeneric.c:5151 #, c-format msgid "cannot create string table" msgstr "" @@ -2936,8 +3112,12 @@ msgid "%s: section [%2d] '%s' is not in the correct section group" msgstr "" #. This should never happen. -#: ../src/ldgeneric.c:1156 ../src/ldgeneric.c:1413 ../src/ldgeneric.c:1422 -#: ../src/ldgeneric.c:1481 ../src/ldgeneric.c:1490 ../src/ldgeneric.c:1753 +#: ../src/ldgeneric.c:1156 +#: ../src/ldgeneric.c:1413 +#: ../src/ldgeneric.c:1422 +#: ../src/ldgeneric.c:1481 +#: ../src/ldgeneric.c:1490 +#: ../src/ldgeneric.c:1753 #: ../src/ldgeneric.c:2005 #, c-format msgid "%s: invalid ELF file (%s:%d)\n" @@ -2960,9 +3140,7 @@ msgstr "" #: ../src/ldgeneric.c:1328 #, c-format -msgid "" -"%s: group member %zu of section group [%2zd] '%s' has too high index: %" -"" +msgid "%s: group member %zu of section group [%2zd] '%s' has too high index: %" msgstr "" #: ../src/ldgeneric.c:1350 @@ -3023,10 +3201,18 @@ msgstr "" msgid "could not create ELF header for output file: %s" msgstr "" -#: ../src/ldgeneric.c:3224 ../src/ldgeneric.c:3294 ../src/ldgeneric.c:3330 -#: ../src/ldgeneric.c:4457 ../src/ldgeneric.c:4506 ../src/ldgeneric.c:4538 -#: ../src/ldgeneric.c:4773 ../src/ldgeneric.c:4828 ../src/ldgeneric.c:5075 -#: ../src/ldgeneric.c:5131 ../src/ldgeneric.c:5600 ../src/ldgeneric.c:5612 +#: ../src/ldgeneric.c:3224 +#: ../src/ldgeneric.c:3294 +#: ../src/ldgeneric.c:3330 +#: ../src/ldgeneric.c:4457 +#: ../src/ldgeneric.c:4506 +#: ../src/ldgeneric.c:4538 +#: ../src/ldgeneric.c:4773 +#: ../src/ldgeneric.c:4828 +#: ../src/ldgeneric.c:5075 +#: ../src/ldgeneric.c:5131 +#: ../src/ldgeneric.c:5600 +#: ../src/ldgeneric.c:5612 #, c-format msgid "cannot create section for output file: %s" msgstr "" @@ -3038,9 +3224,7 @@ msgstr "" #: ../src/ldgeneric.c:3489 #, c-format -msgid "" -"argument '%' of ALIGN in address computation expression is no power " -"of two" +msgid "argument '%' of ALIGN in address computation expression is no power of two" msgstr "" #: ../src/ldgeneric.c:3684 @@ -3083,13 +3267,16 @@ msgstr "" msgid "cannot read enough data for UUID" msgstr "" -#: ../src/ldgeneric.c:4358 ../src/ldgeneric.c:4379 ../src/ldgeneric.c:4408 +#: ../src/ldgeneric.c:4358 +#: ../src/ldgeneric.c:4379 +#: ../src/ldgeneric.c:4408 #: ../src/ldgeneric.c:6062 #, c-format msgid "cannot create symbol table for output file: %s" msgstr "" -#: ../src/ldgeneric.c:5300 ../src/ldgeneric.c:5852 +#: ../src/ldgeneric.c:5300 +#: ../src/ldgeneric.c:5852 #, c-format msgid "section index too large in dynamic symbol table" msgstr "" @@ -3109,7 +3296,9 @@ msgstr "" msgid "cannot create versioning data: %s" msgstr "" -#: ../src/ldgeneric.c:6094 ../src/ldgeneric.c:6107 ../src/ldgeneric.c:6171 +#: ../src/ldgeneric.c:6094 +#: ../src/ldgeneric.c:6107 +#: ../src/ldgeneric.c:6171 #: ../src/ldgeneric.c:6179 #, c-format msgid "cannot create section header string section: %s" @@ -3140,7 +3329,8 @@ msgstr "" msgid "cannot get header of 0th section: %s" msgstr "" -#: ../src/ldgeneric.c:6941 ../src/unstrip.c:1807 +#: ../src/ldgeneric.c:6941 +#: ../src/unstrip.c:1807 #, c-format msgid "cannot update ELF header: %s" msgstr "" @@ -3173,8 +3363,12 @@ msgstr "" #. This cannot be implemented generally. There should have been a #. machine dependent implementation and we should never have arrived #. here. -#: ../src/ldgeneric.c:7064 ../src/ldgeneric.c:7075 ../src/ldgeneric.c:7086 -#: ../src/ldgeneric.c:7097 ../src/ldgeneric.c:7116 ../src/ldgeneric.c:7129 +#: ../src/ldgeneric.c:7064 +#: ../src/ldgeneric.c:7075 +#: ../src/ldgeneric.c:7086 +#: ../src/ldgeneric.c:7097 +#: ../src/ldgeneric.c:7116 +#: ../src/ldgeneric.c:7129 #: ../src/ldgeneric.c:7141 #, c-format msgid "no machine specific '%s' implementation" @@ -3229,7 +3423,8 @@ msgstr "" msgid "symbol '%s' in declared both local and global for version '%s'" msgstr "" -#: ../src/ldscript.y:767 ../src/ldscript.y:774 +#: ../src/ldscript.y:767 +#: ../src/ldscript.y:774 #, c-format msgid "default visibility set as local and global" msgstr "" @@ -3247,9 +3442,7 @@ msgid "Binary is a separate debuginfo file" msgstr "" #: ../src/elflint.c:75 -msgid "" -"Binary has been created with GNU ld and is therefore known to be broken in " -"certain ways" +msgid "Binary has been created with GNU ld and is therefore known to be broken in certain ways" msgstr "" #. Short description of program. @@ -3367,64 +3560,69 @@ msgstr "" msgid "invalid machine flags: %s\n" msgstr "" -#: ../src/elflint.c:475 ../src/elflint.c:492 +#: ../src/elflint.c:475 +#: ../src/elflint.c:492 #, c-format msgid "invalid ELF header size: %hd\n" msgstr "" -#: ../src/elflint.c:478 ../src/elflint.c:495 +#: ../src/elflint.c:478 +#: ../src/elflint.c:495 #, c-format msgid "invalid program header size: %hd\n" msgstr "" -#: ../src/elflint.c:481 ../src/elflint.c:498 +#: ../src/elflint.c:481 +#: ../src/elflint.c:498 #, c-format msgid "invalid program header position or size\n" msgstr "" -#: ../src/elflint.c:484 ../src/elflint.c:501 +#: ../src/elflint.c:484 +#: ../src/elflint.c:501 #, c-format msgid "invalid section header size: %hd\n" msgstr "" -#: ../src/elflint.c:487 ../src/elflint.c:504 +#: ../src/elflint.c:487 +#: ../src/elflint.c:504 #, c-format msgid "invalid section header position or size\n" msgstr "" #: ../src/elflint.c:548 #, c-format -msgid "" -"section [%2d] '%s': section with SHF_GROUP flag set not part of a section " -"group\n" +msgid "section [%2d] '%s': section with SHF_GROUP flag set not part of a section group\n" msgstr "" #: ../src/elflint.c:552 #, c-format -msgid "" -"section [%2d] '%s': section group [%2zu] '%s' does not preceed group member\n" +msgid "section [%2d] '%s': section group [%2zu] '%s' does not preceed group member\n" msgstr "" -#: ../src/elflint.c:568 ../src/elflint.c:1393 ../src/elflint.c:1443 -#: ../src/elflint.c:1552 ../src/elflint.c:2146 ../src/elflint.c:2660 -#: ../src/elflint.c:2821 ../src/elflint.c:2951 ../src/elflint.c:3123 +#: ../src/elflint.c:568 +#: ../src/elflint.c:1393 +#: ../src/elflint.c:1443 +#: ../src/elflint.c:1552 +#: ../src/elflint.c:2146 +#: ../src/elflint.c:2660 +#: ../src/elflint.c:2821 +#: ../src/elflint.c:2951 +#: ../src/elflint.c:3123 #: ../src/elflint.c:4020 #, c-format msgid "section [%2d] '%s': cannot get section data\n" msgstr "" -#: ../src/elflint.c:581 ../src/elflint.c:1559 +#: ../src/elflint.c:581 +#: ../src/elflint.c:1559 #, c-format -msgid "" -"section [%2d] '%s': referenced as string table for section [%2d] '%s' but " -"type is not SHT_STRTAB\n" +msgid "section [%2d] '%s': referenced as string table for section [%2d] '%s' but type is not SHT_STRTAB\n" msgstr "" #: ../src/elflint.c:604 #, c-format -msgid "" -"section [%2d] '%s': symbol table cannot have more than one extended index " -"section\n" +msgid "section [%2d] '%s': symbol table cannot have more than one extended index section\n" msgstr "" #: ../src/elflint.c:615 @@ -3437,8 +3635,12 @@ msgstr "" msgid "section [%2d] '%s': cannot get symbol %d: %s\n" msgstr "" -#: ../src/elflint.c:629 ../src/elflint.c:632 ../src/elflint.c:635 -#: ../src/elflint.c:638 ../src/elflint.c:641 ../src/elflint.c:644 +#: ../src/elflint.c:629 +#: ../src/elflint.c:632 +#: ../src/elflint.c:635 +#: ../src/elflint.c:638 +#: ../src/elflint.c:641 +#: ../src/elflint.c:644 #, c-format msgid "section [%2d] '%s': '%s' in zeroth entry not zero\n" msgstr "" @@ -3460,16 +3662,12 @@ msgstr "" #: ../src/elflint.c:679 #, c-format -msgid "" -"section [%2d] '%s': symbol %zu: too large section index but no extended " -"section index section\n" +msgid "section [%2d] '%s': symbol %zu: too large section index but no extended section index section\n" msgstr "" #: ../src/elflint.c:685 #, c-format -msgid "" -"section [%2d] '%s': symbol %zu: XINDEX used for index which would fit in " -"st_shndx (%)\n" +msgid "section [%2d] '%s': symbol %zu: XINDEX used for index which would fit in st_shndx (%)\n" msgstr "" #. || sym->st_shndx > SHN_HIRESERVE always false @@ -3490,8 +3688,7 @@ msgstr "" #: ../src/elflint.c:717 #, c-format -msgid "" -"section [%2d] '%s': symbol %zu: COMMON only allowed in relocatable files\n" +msgid "section [%2d] '%s': symbol %zu: COMMON only allowed in relocatable files\n" msgstr "" #: ../src/elflint.c:721 @@ -3501,8 +3698,7 @@ msgstr "" #: ../src/elflint.c:725 #, c-format -msgid "" -"section [%2d] '%s': symbol %zu: function in COMMON section is nonsense\n" +msgid "section [%2d] '%s': symbol %zu: function in COMMON section is nonsense\n" msgstr "" #: ../src/elflint.c:757 @@ -3510,52 +3706,42 @@ msgstr "" msgid "section [%2d] '%s': symbol %zu: st_value out of bounds\n" msgstr "" -#: ../src/elflint.c:763 ../src/elflint.c:788 ../src/elflint.c:831 +#: ../src/elflint.c:763 +#: ../src/elflint.c:788 +#: ../src/elflint.c:831 #, c-format -msgid "" -"section [%2d] '%s': symbol %zu does not fit completely in referenced section " -"[%2d] '%s'\n" +msgid "section [%2d] '%s': symbol %zu does not fit completely in referenced section [%2d] '%s'\n" msgstr "" #: ../src/elflint.c:772 #, c-format -msgid "" -"section [%2d] '%s': symbol %zu: referenced section [%2d] '%s' does not have " -"SHF_TLS flag set\n" +msgid "section [%2d] '%s': symbol %zu: referenced section [%2d] '%s' does not have SHF_TLS flag set\n" msgstr "" -#: ../src/elflint.c:782 ../src/elflint.c:824 +#: ../src/elflint.c:782 +#: ../src/elflint.c:824 #, c-format -msgid "" -"section [%2d] '%s': symbol %zu: st_value out of bounds of referenced section " -"[%2d] '%s'\n" +msgid "section [%2d] '%s': symbol %zu: st_value out of bounds of referenced section [%2d] '%s'\n" msgstr "" #: ../src/elflint.c:809 #, c-format -msgid "" -"section [%2d] '%s': symbol %zu: TLS symbol but no TLS program header entry\n" +msgid "section [%2d] '%s': symbol %zu: TLS symbol but no TLS program header entry\n" msgstr "" #: ../src/elflint.c:817 #, c-format -msgid "" -"section [%2d] '%s': symbol %zu: st_value short of referenced section [%2d] '%" -"s'\n" +msgid "section [%2d] '%s': symbol %zu: st_value short of referenced section [%2d] '%s'\n" msgstr "" #: ../src/elflint.c:844 #, c-format -msgid "" -"section [%2d] '%s': symbol %zu: local symbol outside range described in " -"sh_info\n" +msgid "section [%2d] '%s': symbol %zu: local symbol outside range described in sh_info\n" msgstr "" #: ../src/elflint.c:851 #, c-format -msgid "" -"section [%2d] '%s': symbol %zu: non-local symbol outside range described in " -"sh_info\n" +msgid "section [%2d] '%s': symbol %zu: non-local symbol outside range described in sh_info\n" msgstr "" #: ../src/elflint.c:858 @@ -3565,16 +3751,12 @@ msgstr "" #: ../src/elflint.c:908 #, c-format -msgid "" -"section [%2d] '%s': _GLOBAL_OFFSET_TABLE_ symbol refers to bad section [%" -"2d]\n" +msgid "section [%2d] '%s': _GLOBAL_OFFSET_TABLE_ symbol refers to bad section [%2d]\n" msgstr "" #: ../src/elflint.c:915 #, c-format -msgid "" -"section [%2d] '%s': _GLOBAL_OFFSET_TABLE_ symbol refers to section [%2d] '%" -"s'\n" +msgid "section [%2d] '%s': _GLOBAL_OFFSET_TABLE_ symbol refers to section [%2d] '%s'\n" msgstr "" #. This test is more strict than the psABIs which @@ -3582,37 +3764,27 @@ msgstr "" #. the .got section, allowing negative offsets. #: ../src/elflint.c:931 #, c-format -msgid "" -"section [%2d] '%s': _GLOBAL_OFFSET_TABLE_ symbol value %# does not " -"match %s section address %#\n" +msgid "section [%2d] '%s': _GLOBAL_OFFSET_TABLE_ symbol value %# does not match %s section address %#\n" msgstr "" #: ../src/elflint.c:938 #, c-format -msgid "" -"section [%2d] '%s': _GLOBAL_OFFSET_TABLE_ symbol size % does not " -"match %s section size %\n" +msgid "section [%2d] '%s': _GLOBAL_OFFSET_TABLE_ symbol size % does not match %s section size %\n" msgstr "" #: ../src/elflint.c:946 #, c-format -msgid "" -"section [%2d] '%s': _GLOBAL_OFFSET_TABLE_ symbol present, but no .got " -"section\n" +msgid "section [%2d] '%s': _GLOBAL_OFFSET_TABLE_ symbol present, but no .got section\n" msgstr "" #: ../src/elflint.c:962 #, c-format -msgid "" -"section [%2d] '%s': _DYNAMIC_ symbol value %# does not match dynamic " -"segment address %#\n" +msgid "section [%2d] '%s': _DYNAMIC_ symbol value %# does not match dynamic segment address %#\n" msgstr "" #: ../src/elflint.c:969 #, c-format -msgid "" -"section [%2d] '%s': _DYNAMIC symbol size % does not match dynamic " -"segment size %\n" +msgid "section [%2d] '%s': _DYNAMIC symbol size % does not match dynamic segment size %\n" msgstr "" #: ../src/elflint.c:1020 @@ -3620,23 +3792,22 @@ msgstr "" msgid "section [%2d] '%s': DT_RELCOUNT used for this RELA section\n" msgstr "" -#: ../src/elflint.c:1029 ../src/elflint.c:1081 +#: ../src/elflint.c:1029 +#: ../src/elflint.c:1081 #, c-format msgid "section [%2d] '%s': DT_RELCOUNT value %d too high for this section\n" msgstr "" -#: ../src/elflint.c:1054 ../src/elflint.c:1106 +#: ../src/elflint.c:1054 +#: ../src/elflint.c:1106 #, c-format -msgid "" -"section [%2d] '%s': relative relocations after index %d as specified by " -"DT_RELCOUNT\n" +msgid "section [%2d] '%s': relative relocations after index %d as specified by DT_RELCOUNT\n" msgstr "" -#: ../src/elflint.c:1060 ../src/elflint.c:1112 +#: ../src/elflint.c:1060 +#: ../src/elflint.c:1112 #, c-format -msgid "" -"section [%2d] '%s': non-relative relocation at index %zu; DT_RELCOUNT " -"specified %d relative relocations\n" +msgid "section [%2d] '%s': non-relative relocation at index %zu; DT_RELCOUNT specified %d relative relocations\n" msgstr "" #: ../src/elflint.c:1072 @@ -3681,9 +3852,7 @@ msgstr "" #: ../src/elflint.c:1284 #, c-format -msgid "" -"section [%2d] '%s': relocation %zu: relocation type invalid for the file " -"type\n" +msgid "section [%2d] '%s': relocation %zu: relocation type invalid for the file type\n" msgstr "" #: ../src/elflint.c:1292 @@ -3693,9 +3862,7 @@ msgstr "" #: ../src/elflint.c:1310 #, c-format -msgid "" -"section [%2d] '%s': relocation %zu: only symbol '_GLOBAL_OFFSET_TABLE_' can " -"be used with %s\n" +msgid "section [%2d] '%s': relocation %zu: only symbol '_GLOBAL_OFFSET_TABLE_' can be used with %s\n" msgstr "" #: ../src/elflint.c:1327 @@ -3705,16 +3872,12 @@ msgstr "" #: ../src/elflint.c:1342 #, c-format -msgid "" -"section [%2d] '%s': relocation %zu: copy relocation against symbol of type %" -"s\n" +msgid "section [%2d] '%s': relocation %zu: copy relocation against symbol of type %s\n" msgstr "" #: ../src/elflint.c:1363 #, c-format -msgid "" -"section [%2d] '%s': relocation %zu: read-only section modified but text " -"relocation flag not set\n" +msgid "section [%2d] '%s': relocation %zu: read-only section modified but text relocation flag not set\n" msgstr "" #: ../src/elflint.c:1378 @@ -3722,7 +3885,8 @@ msgstr "" msgid "section [%2d] '%s': relocations are against loaded and unloaded data\n" msgstr "" -#: ../src/elflint.c:1417 ../src/elflint.c:1467 +#: ../src/elflint.c:1417 +#: ../src/elflint.c:1467 #, c-format msgid "section [%2d] '%s': cannot get relocation %zu: %s\n" msgstr "" @@ -3737,7 +3901,8 @@ msgstr "" msgid "section [%2d] '%s': section entry size does not match ElfXX_Dyn\n" msgstr "" -#: ../src/elflint.c:1570 ../src/elflint.c:1862 +#: ../src/elflint.c:1570 +#: ../src/elflint.c:1862 #, c-format msgid "section [%2d] '%s': sh_info not zero\n" msgstr "" @@ -3769,31 +3934,26 @@ msgstr "" #: ../src/elflint.c:1634 #, c-format -msgid "" -"section [%2d] '%s': entry %zu: DT_PLTREL value must be DT_REL or DT_RELA\n" +msgid "section [%2d] '%s': entry %zu: DT_PLTREL value must be DT_REL or DT_RELA\n" msgstr "" #: ../src/elflint.c:1656 #, c-format -msgid "" -"section [%2d] '%s': entry %zu: pointer does not match address of section [%" -"2d] '%s' referenced by sh_link\n" +msgid "section [%2d] '%s': entry %zu: pointer does not match address of section [%2d] '%s' referenced by sh_link\n" msgstr "" #: ../src/elflint.c:1699 #, c-format -msgid "" -"section [%2d] '%s': entry %zu: %s value must point into loaded segment\n" +msgid "section [%2d] '%s': entry %zu: %s value must point into loaded segment\n" msgstr "" #: ../src/elflint.c:1714 #, c-format -msgid "" -"section [%2d] '%s': entry %zu: %s value must be valid offset in section [%" -"2d] '%s'\n" +msgid "section [%2d] '%s': entry %zu: %s value must be valid offset in section [%2d] '%s'\n" msgstr "" -#: ../src/elflint.c:1734 ../src/elflint.c:1762 +#: ../src/elflint.c:1734 +#: ../src/elflint.c:1762 #, c-format msgid "section [%2d] '%s': contains %s entry but not %s\n" msgstr "" @@ -3808,12 +3968,14 @@ msgstr "" msgid "section [%2d] '%s': no hash section present\n" msgstr "" -#: ../src/elflint.c:1770 ../src/elflint.c:1777 +#: ../src/elflint.c:1770 +#: ../src/elflint.c:1777 #, c-format msgid "section [%2d] '%s': not all of %s, %s, and %s are present\n" msgstr "" -#: ../src/elflint.c:1787 ../src/elflint.c:1791 +#: ../src/elflint.c:1787 +#: ../src/elflint.c:1791 #, c-format msgid "section [%2d] '%s': %s tag missing in DSO marked during prelinking\n" msgstr "" @@ -3823,7 +3985,9 @@ msgstr "" msgid "section [%2d] '%s': non-DSO file marked as dependency during prelink\n" msgstr "" -#: ../src/elflint.c:1808 ../src/elflint.c:1812 ../src/elflint.c:1816 +#: ../src/elflint.c:1808 +#: ../src/elflint.c:1812 +#: ../src/elflint.c:1816 #: ../src/elflint.c:1820 #, c-format msgid "section [%2d] '%s': %s tag missing in prelinked executable\n" @@ -3831,14 +3995,12 @@ msgstr "" #: ../src/elflint.c:1832 #, c-format -msgid "" -"section [%2d] '%s': only relocatable files can have extended section index\n" +msgid "section [%2d] '%s': only relocatable files can have extended section index\n" msgstr "" #: ../src/elflint.c:1842 #, c-format -msgid "" -"section [%2d] '%s': extended section index section not for symbol table\n" +msgid "section [%2d] '%s': extended section index section not for symbol table\n" msgstr "" #: ../src/elflint.c:1847 @@ -3858,9 +4020,7 @@ msgstr "" #: ../src/elflint.c:1872 #, c-format -msgid "" -"section [%2d] '%s': extended section index in section [%2zu] '%s' refers to " -"same symbol table\n" +msgid "section [%2d] '%s': extended section index in section [%2zu] '%s' refers to same symbol table\n" msgstr "" #: ../src/elflint.c:1883 @@ -3878,18 +4038,20 @@ msgstr "" msgid "extended section index is % but symbol index is not XINDEX\n" msgstr "" -#: ../src/elflint.c:1916 ../src/elflint.c:1957 +#: ../src/elflint.c:1916 +#: ../src/elflint.c:1957 #, c-format -msgid "" -"section [%2d] '%s': hash table section is too small (is %ld, expected %ld)\n" +msgid "section [%2d] '%s': hash table section is too small (is %ld, expected %ld)\n" msgstr "" -#: ../src/elflint.c:1928 ../src/elflint.c:1969 +#: ../src/elflint.c:1928 +#: ../src/elflint.c:1969 #, c-format msgid "section [%2d] '%s': chain array too large\n" msgstr "" -#: ../src/elflint.c:1937 ../src/elflint.c:1978 +#: ../src/elflint.c:1937 +#: ../src/elflint.c:1978 #, c-format msgid "section [%2d] '%s': hash bucket reference %zu out of bounds\n" msgstr "" @@ -3911,9 +4073,7 @@ msgstr "" #: ../src/elflint.c:2010 #, c-format -msgid "" -"section [%2d] '%s': hash table section is too small (is %ld, expected at " -"least%ld)\n" +msgid "section [%2d] '%s': hash table section is too small (is %ld, expected at least%ld)\n" msgstr "" #: ../src/elflint.c:2018 @@ -3923,21 +4083,17 @@ msgstr "" #: ../src/elflint.c:2050 #, c-format -msgid "" -"section [%2d] '%s': hash chain for bucket %zu lower than symbol index bias\n" +msgid "section [%2d] '%s': hash chain for bucket %zu lower than symbol index bias\n" msgstr "" #: ../src/elflint.c:2071 #, c-format -msgid "" -"section [%2d] '%s': symbol %u referenced in chain for bucket %zu is " -"undefined\n" +msgid "section [%2d] '%s': symbol %u referenced in chain for bucket %zu is undefined\n" msgstr "" #: ../src/elflint.c:2082 #, c-format -msgid "" -"section [%2d] '%s': hash value for symbol %u in chain for bucket %zu wrong\n" +msgid "section [%2d] '%s': hash value for symbol %u in chain for bucket %zu wrong\n" msgstr "" #: ../src/elflint.c:2113 @@ -3947,8 +4103,7 @@ msgstr "" #: ../src/elflint.c:2118 #, c-format -msgid "" -"section [%2d] '%s': symbol reference in chain for bucket %zu out of bounds\n" +msgid "section [%2d] '%s': symbol reference in chain for bucket %zu out of bounds\n" msgstr "" #: ../src/elflint.c:2124 @@ -3978,9 +4133,7 @@ msgstr "" #: ../src/elflint.c:2173 #, c-format -msgid "" -"section [%2d] '%s': hash table has not even room for initial administrative " -"entries\n" +msgid "section [%2d] '%s': hash table has not even room for initial administrative entries\n" msgstr "" #: ../src/elflint.c:2221 @@ -3988,23 +4141,20 @@ msgstr "" msgid "sh_link in hash sections [%2zu] '%s' and [%2zu] '%s' not identical\n" msgstr "" -#: ../src/elflint.c:2299 ../src/elflint.c:2303 +#: ../src/elflint.c:2299 +#: ../src/elflint.c:2303 #, c-format msgid "section [%2zu] '%s': reference to symbol index 0\n" msgstr "" #: ../src/elflint.c:2310 #, c-format -msgid "" -"symbol %d referenced in new hash table in [%2zu] '%s' but not in old hash " -"table in [%2zu] '%s'\n" +msgid "symbol %d referenced in new hash table in [%2zu] '%s' but not in old hash table in [%2zu] '%s'\n" msgstr "" #: ../src/elflint.c:2322 #, c-format -msgid "" -"symbol %d referenced in old hash table in [%2zu] '%s' but not in new hash " -"table in [%2zu] '%s'\n" +msgid "symbol %d referenced in old hash table in [%2zu] '%s' but not in new hash table in [%2zu] '%s'\n" msgstr "" #: ../src/elflint.c:2338 @@ -4014,8 +4164,7 @@ msgstr "" #: ../src/elflint.c:2358 #, c-format -msgid "" -"section [%2d] '%s': section groups only allowed in relocatable object files\n" +msgid "section [%2d] '%s': section groups only allowed in relocatable object files\n" msgstr "" #: ../src/elflint.c:2369 @@ -4100,9 +4249,7 @@ msgstr "" #: ../src/elflint.c:2478 #, c-format -msgid "" -"section [%2d] '%s': element %Zu references section [%2d] '%s' without " -"SHF_GROUP flag set\n" +msgid "section [%2d] '%s': element %Zu references section [%2d] '%s' without SHF_GROUP flag set\n" msgstr "" #: ../src/elflint.c:2485 @@ -4112,16 +4259,12 @@ msgstr "" #: ../src/elflint.c:2674 #, c-format -msgid "" -"section [%2d] '%s' refers in sh_link to section [%2d] '%s' which is no " -"dynamic symbol table\n" +msgid "section [%2d] '%s' refers in sh_link to section [%2d] '%s' which is no dynamic symbol table\n" msgstr "" #: ../src/elflint.c:2685 #, c-format -msgid "" -"section [%2d] '%s' has different number of entries than symbol table [%2d] '%" -"s'\n" +msgid "section [%2d] '%s' has different number of entries than symbol table [%2d] '%s'\n" msgstr "" #: ../src/elflint.c:2701 @@ -4146,14 +4289,12 @@ msgstr "" #: ../src/elflint.c:2744 #, c-format -msgid "" -"section [%2d] '%s': symbol %d: version index %d is for defined version\n" +msgid "section [%2d] '%s': symbol %d: version index %d is for defined version\n" msgstr "" #: ../src/elflint.c:2754 #, c-format -msgid "" -"section [%2d] '%s': symbol %d: version index %d is for requested version\n" +msgid "section [%2d] '%s': symbol %d: version index %d is for requested version\n" msgstr "" #: ../src/elflint.c:2806 @@ -4161,17 +4302,20 @@ msgstr "" msgid "more than one version reference section present\n" msgstr "" -#: ../src/elflint.c:2814 ../src/elflint.c:2943 +#: ../src/elflint.c:2814 +#: ../src/elflint.c:2943 #, c-format msgid "section [%2d] '%s': sh_link does not link to string table\n" msgstr "" -#: ../src/elflint.c:2837 ../src/elflint.c:2995 +#: ../src/elflint.c:2837 +#: ../src/elflint.c:2995 #, c-format msgid "section [%2d] '%s': entry %d has wrong version %d\n" msgstr "" -#: ../src/elflint.c:2843 ../src/elflint.c:3001 +#: ../src/elflint.c:2843 +#: ../src/elflint.c:3001 #, c-format msgid "section [%2d] '%s': entry %d has wrong offset of auxiliary data\n" msgstr "" @@ -4193,32 +4337,26 @@ msgstr "" #: ../src/elflint.c:2878 #, c-format -msgid "" -"section [%2d] '%s': auxiliary entry %d of entry %d has invalid name " -"reference\n" +msgid "section [%2d] '%s': auxiliary entry %d of entry %d has invalid name reference\n" msgstr "" #: ../src/elflint.c:2885 #, c-format -msgid "" -"section [%2d] '%s': auxiliary entry %d of entry %d has wrong hash value: %" -"#x, expected %#x\n" +msgid "section [%2d] '%s': auxiliary entry %d of entry %d has wrong hash value: %#x, expected %#x\n" msgstr "" #: ../src/elflint.c:2895 #, c-format -msgid "" -"section [%2d] '%s': auxiliary entry %d of entry %d has duplicate version " -"name '%s'\n" +msgid "section [%2d] '%s': auxiliary entry %d of entry %d has duplicate version name '%s'\n" msgstr "" #: ../src/elflint.c:2906 #, c-format -msgid "" -"section [%2d] '%s': auxiliary entry %d of entry %d has wrong next field\n" +msgid "section [%2d] '%s': auxiliary entry %d of entry %d has wrong next field\n" msgstr "" -#: ../src/elflint.c:2922 ../src/elflint.c:3080 +#: ../src/elflint.c:2922 +#: ../src/elflint.c:3080 #, c-format msgid "section [%2d] '%s': entry %d has invalid offset to next entry\n" msgstr "" @@ -4260,8 +4398,7 @@ msgstr "" #: ../src/elflint.c:3049 #, c-format -msgid "" -"section [%2d] '%s': entry %d has invalid name reference in auxiliary data\n" +msgid "section [%2d] '%s': entry %d has invalid name reference in auxiliary data\n" msgstr "" #: ../src/elflint.c:3064 @@ -4291,8 +4428,7 @@ msgstr "" #: ../src/elflint.c:3152 #, c-format -msgid "" -"section [%2d] '%s': offset %zu: zero length field in attribute section\n" +msgid "section [%2d] '%s': offset %zu: zero length field in attribute section\n" msgstr "" #: ../src/elflint.c:3161 @@ -4307,8 +4443,7 @@ msgstr "" #: ../src/elflint.c:3190 #, c-format -msgid "" -"section [%2d] '%s': offset %zu: endless ULEB128 in attribute subsection tag\n" +msgid "section [%2d] '%s': offset %zu: endless ULEB128 in attribute subsection tag\n" msgstr "" #: ../src/elflint.c:3199 @@ -4318,21 +4453,18 @@ msgstr "" #: ../src/elflint.c:3208 #, c-format -msgid "" -"section [%2d] '%s': offset %zu: zero length field in attribute subsection\n" +msgid "section [%2d] '%s': offset %zu: zero length field in attribute subsection\n" msgstr "" #: ../src/elflint.c:3221 #, c-format -msgid "" -"section [%2d] '%s': offset %zu: invalid length in attribute subsection\n" +msgid "section [%2d] '%s': offset %zu: invalid length in attribute subsection\n" msgstr "" #. Tag_File #: ../src/elflint.c:3232 #, c-format -msgid "" -"section [%2d] '%s': offset %zu: attribute subsection has unexpected tag %u\n" +msgid "section [%2d] '%s': offset %zu: attribute subsection has unexpected tag %u\n" msgstr "" #: ../src/elflint.c:3250 @@ -4352,8 +4484,7 @@ msgstr "" #: ../src/elflint.c:3278 #, c-format -msgid "" -"section [%2d] '%s': offset %zu: unrecognized %s attribute value %\n" +msgid "section [%2d] '%s': offset %zu: unrecognized %s attribute value %\n" msgstr "" #: ../src/elflint.c:3288 @@ -4363,8 +4494,7 @@ msgstr "" #: ../src/elflint.c:3294 #, c-format -msgid "" -"section [%2d] '%s': offset %zu: extra bytes after last attribute section\n" +msgid "section [%2d] '%s': offset %zu: extra bytes after last attribute section\n" msgstr "" #: ../src/elflint.c:3383 @@ -4414,16 +4544,12 @@ msgstr "" #: ../src/elflint.c:3404 #, c-format -msgid "" -"zeroth section has nonzero size value while ELF header has nonzero shnum " -"value\n" +msgid "zeroth section has nonzero size value while ELF header has nonzero shnum value\n" msgstr "" #: ../src/elflint.c:3408 #, c-format -msgid "" -"zeroth section has nonzero link value while ELF header does not signal " -"overflow in shstrndx\n" +msgid "zeroth section has nonzero link value while ELF header does not signal overflow in shstrndx\n" msgstr "" #: ../src/elflint.c:3425 @@ -4448,8 +4574,7 @@ msgstr "" #: ../src/elflint.c:3494 #, c-format -msgid "" -"section [%2zu] '%s' has wrong flags: expected %s and possibly %s, is %s\n" +msgid "section [%2zu] '%s' has wrong flags: expected %s and possibly %s, is %s\n" msgstr "" #: ../src/elflint.c:3512 @@ -4457,23 +4582,21 @@ msgstr "" msgid "section [%2zu] '%s' present in object file\n" msgstr "" -#: ../src/elflint.c:3518 ../src/elflint.c:3550 +#: ../src/elflint.c:3518 +#: ../src/elflint.c:3550 #, c-format -msgid "" -"section [%2zu] '%s' has SHF_ALLOC flag set but there is no loadable segment\n" +msgid "section [%2zu] '%s' has SHF_ALLOC flag set but there is no loadable segment\n" msgstr "" -#: ../src/elflint.c:3523 ../src/elflint.c:3555 +#: ../src/elflint.c:3523 +#: ../src/elflint.c:3555 #, c-format -msgid "" -"section [%2zu] '%s' has SHF_ALLOC flag not set but there are loadable " -"segments\n" +msgid "section [%2zu] '%s' has SHF_ALLOC flag not set but there are loadable segments\n" msgstr "" #: ../src/elflint.c:3531 #, c-format -msgid "" -"section [%2zu] '%s' is extension section index table in non-object file\n" +msgid "section [%2zu] '%s' is extension section index table in non-object file\n" msgstr "" #: ../src/elflint.c:3574 @@ -4493,8 +4616,7 @@ msgstr "" #: ../src/elflint.c:3603 #, c-format -msgid "" -"section [%2zu] '%s' contains invalid processor-specific flag(s) %#\n" +msgid "section [%2zu] '%s' contains invalid processor-specific flag(s) %#\n" msgstr "" #: ../src/elflint.c:3610 @@ -4539,23 +4661,17 @@ msgstr "" #: ../src/elflint.c:3697 #, c-format -msgid "" -"section [%2zu] '%s' not fully contained in segment of program header entry %" -"d\n" +msgid "section [%2zu] '%s' not fully contained in segment of program header entry %d\n" msgstr "" #: ../src/elflint.c:3705 #, c-format -msgid "" -"section [%2zu] '%s' has type NOBITS but is read from the file in segment of " -"program header entry %d\n" +msgid "section [%2zu] '%s' has type NOBITS but is read from the file in segment of program header entry %d\n" msgstr "" #: ../src/elflint.c:3714 #, c-format -msgid "" -"section [%2zu] '%s' has not type NOBITS but is not read from the file in " -"segment of program header entry %d\n" +msgid "section [%2zu] '%s' has not type NOBITS but is not read from the file in segment of program header entry %d\n" msgstr "" #: ../src/elflint.c:3725 @@ -4570,21 +4686,17 @@ msgstr "" #: ../src/elflint.c:3745 #, c-format -msgid "" -"section [%2zu] '%s': alloc flag set but section not in any loaded segment\n" +msgid "section [%2zu] '%s': alloc flag set but section not in any loaded segment\n" msgstr "" #: ../src/elflint.c:3751 #, c-format -msgid "" -"section [%2zu] '%s': ELF header says this is the section header string table " -"but type is not SHT_TYPE\n" +msgid "section [%2zu] '%s': ELF header says this is the section header string table but type is not SHT_TYPE\n" msgstr "" #: ../src/elflint.c:3759 #, c-format -msgid "" -"section [%2zu] '%s': relocatable files cannot have dynamic symbol tables\n" +msgid "section [%2zu] '%s': relocatable files cannot have dynamic symbol tables\n" msgstr "" #: ../src/elflint.c:3810 @@ -4599,8 +4711,7 @@ msgstr "" #: ../src/elflint.c:3844 #, c-format -msgid "" -"loadable segment [%u] is executable but contains no executable sections\n" +msgid "loadable segment [%u] is executable but contains no executable sections\n" msgstr "" #: ../src/elflint.c:3850 @@ -4610,9 +4721,7 @@ msgstr "" #: ../src/elflint.c:3861 #, c-format -msgid "" -"no .gnu.versym section present but .gnu.versym_d or .gnu.versym_r section " -"exist\n" +msgid "no .gnu.versym section present but .gnu.versym_d or .gnu.versym_r section exist\n" msgstr "" #: ../src/elflint.c:3874 @@ -4632,8 +4741,7 @@ msgstr "" #: ../src/elflint.c:3941 #, c-format -msgid "" -"section [%2d] '%s': unknown core file note type % at offset %Zu\n" +msgid "section [%2d] '%s': unknown core file note type % at offset %Zu\n" msgstr "" #: ../src/elflint.c:3963 @@ -4643,8 +4751,7 @@ msgstr "" #: ../src/elflint.c:3967 #, c-format -msgid "" -"section [%2d] '%s': unknown object file note type % at offset %Zu\n" +msgid "section [%2d] '%s': unknown object file note type % at offset %Zu\n" msgstr "" #: ../src/elflint.c:3984 @@ -4679,8 +4786,7 @@ msgstr "" #: ../src/elflint.c:4055 #, c-format -msgid "" -"only executables, shared objects, and core files can have program headers\n" +msgid "only executables, shared objects, and core files can have program headers\n" msgstr "" #: ../src/elflint.c:4070 @@ -4733,7 +4839,8 @@ msgstr "" msgid "loadable segment [%u] flags do not match GNU_RELRO [%u] flags\n" msgstr "" -#: ../src/elflint.c:4164 ../src/elflint.c:4187 +#: ../src/elflint.c:4164 +#: ../src/elflint.c:4187 #, c-format msgid "%s segment not contained in a loaded segment\n" msgstr "" @@ -4800,16 +4907,12 @@ msgstr "" #: ../src/elflint.c:4280 #, c-format -msgid "" -"program header entry %d: file offset and virtual address not module of " -"alignment\n" +msgid "program header entry %d: file offset and virtual address not module of alignment\n" msgstr "" #: ../src/elflint.c:4293 #, c-format -msgid "" -"executable/DSO with .eh_frame_hdr section does not have a PT_GNU_EH_FRAME " -"program header entry" +msgid "executable/DSO with .eh_frame_hdr section does not have a PT_GNU_EH_FRAME program header entry" msgstr "" #: ../src/elflint.c:4327 @@ -4844,8 +4947,7 @@ msgstr "" #. Short description of program. #: ../src/addr2line.c:82 -msgid "" -"Locate source files and line information for ADDRs (in a.out by default)." +msgid "Locate source files and line information for ADDRs (in a.out by default)." msgstr "" #. Strings for arguments in help texts. @@ -4890,7 +4992,9 @@ msgstr "" msgid "Locate source of text relocations in FILEs (a.out by default)." msgstr "" -#: ../src/findtextrel.c:236 ../src/elfcmp.c:578 ../src/ranlib.c:186 +#: ../src/findtextrel.c:236 +#: ../src/elfcmp.c:578 +#: ../src/ranlib.c:186 #, c-format msgid "cannot create ELF descriptor for '%s': %s" msgstr "" @@ -4925,7 +5029,8 @@ msgstr "" msgid "while reading ELF file" msgstr "" -#: ../src/findtextrel.c:328 ../src/findtextrel.c:345 +#: ../src/findtextrel.c:328 +#: ../src/findtextrel.c:345 #, c-format msgid "cannot get program header index at offset %d: %s" msgstr "" @@ -4940,7 +5045,8 @@ msgstr "" msgid "cannot get symbol table section %zu in '%s': %s" msgstr "" -#: ../src/findtextrel.c:429 ../src/findtextrel.c:452 +#: ../src/findtextrel.c:429 +#: ../src/findtextrel.c:452 #, c-format msgid "cannot get relocation at index %d in section %zu in '%s': %s" msgstr "" @@ -4952,28 +5058,23 @@ msgstr "" #: ../src/findtextrel.c:570 #, c-format -msgid "" -"the file containing the function '%s' is not compiled with -fpic/-fPIC\n" +msgid "the file containing the function '%s' is not compiled with -fpic/-fPIC\n" msgstr "" -#: ../src/findtextrel.c:577 ../src/findtextrel.c:597 +#: ../src/findtextrel.c:577 +#: ../src/findtextrel.c:597 #, c-format -msgid "" -"the file containing the function '%s' might not be compiled with -fpic/-" -"fPIC\n" +msgid "the file containing the function '%s' might not be compiled with -fpic/-fPIC\n" msgstr "" #: ../src/findtextrel.c:585 #, c-format -msgid "" -"either the file containing the function '%s' or the file containing the " -"function '%s' is not compiled with -fpic/-fPIC\n" +msgid "either the file containing the function '%s' or the file containing the function '%s' is not compiled with -fpic/-fPIC\n" msgstr "" #: ../src/findtextrel.c:605 #, c-format -msgid "" -"a relocation modifies memory at offset %llu in a write-protected segment\n" +msgid "a relocation modifies memory at offset %llu in a write-protected segment\n" msgstr "" #: ../src/elfcmp.c:69 @@ -4981,9 +5082,7 @@ msgid "Control options:" msgstr "" #: ../src/elfcmp.c:70 -msgid "" -"Control treatment of gaps in loadable segments [ignore|match] (default: " -"ignore)" +msgid "Control treatment of gaps in loadable segments [ignore|match] (default: ignore)" msgstr "" #: ../src/elfcmp.c:72 @@ -5008,7 +5107,8 @@ msgstr "" msgid "Invalid number of parameters.\n" msgstr "" -#: ../src/elfcmp.c:168 ../src/elfcmp.c:173 +#: ../src/elfcmp.c:168 +#: ../src/elfcmp.c:173 #, c-format msgid "cannot get ELF header of '%s': %s" msgstr "" @@ -5023,12 +5123,14 @@ msgstr "" msgid "%s %s differ: section header" msgstr "" -#: ../src/elfcmp.c:276 ../src/elfcmp.c:282 +#: ../src/elfcmp.c:276 +#: ../src/elfcmp.c:282 #, c-format msgid "cannot get content of section %zu in '%s': %s" msgstr "" -#: ../src/elfcmp.c:298 ../src/elfcmp.c:304 +#: ../src/elfcmp.c:298 +#: ../src/elfcmp.c:304 #, c-format msgid "cannot get symbol in '%s': %s" msgstr "" @@ -5058,12 +5160,14 @@ msgstr "" msgid "%s %s differ: unequal amount of important sections" msgstr "" -#: ../src/elfcmp.c:430 ../src/elfcmp.c:435 +#: ../src/elfcmp.c:430 +#: ../src/elfcmp.c:435 #, c-format msgid "cannot load data of '%s': %s" msgstr "" -#: ../src/elfcmp.c:454 ../src/elfcmp.c:460 +#: ../src/elfcmp.c:454 +#: ../src/elfcmp.c:460 #, c-format msgid "cannot get program header entry %d of '%s': %s" msgstr "" @@ -5098,7 +5202,8 @@ msgstr "" msgid "cannot get content of section %zu: %s" msgstr "" -#: ../src/elfcmp.c:621 ../src/elfcmp.c:635 +#: ../src/elfcmp.c:621 +#: ../src/elfcmp.c:635 #, c-format msgid "cannot get relocation: %s" msgstr "" @@ -5141,9 +5246,7 @@ msgid "Only NUL-terminated sequences of MIN-LEN characters or more are printed" msgstr "" #: ../src/strings.c:74 -msgid "" -"Select character size and endianess: s = 7-bit, S = 8-bit, {b,l} = 16-bit, " -"{B,L} = 32-bit" +msgid "Select character size and endianess: s = 7-bit, S = 8-bit, {b,l} = 16-bit, {B,L} = 32-bit" msgstr "" #: ../src/strings.c:78 @@ -5163,7 +5266,8 @@ msgstr "" msgid "Print the strings of printable characters in files." msgstr "" -#: ../src/strings.c:268 ../src/strings.c:303 +#: ../src/strings.c:268 +#: ../src/strings.c:303 #, c-format msgid "invalid value '%s' for %s parameter" msgstr "" @@ -5178,7 +5282,8 @@ msgstr "" msgid "lseek64 failed" msgstr "" -#: ../src/strings.c:616 ../src/strings.c:680 +#: ../src/strings.c:616 +#: ../src/strings.c:680 #, c-format msgid "re-mmap failed" msgstr "" @@ -5265,7 +5370,8 @@ msgstr "" msgid "cannot copy ELF header: %s" msgstr "" -#: ../src/unstrip.c:263 ../src/unstrip.c:1816 +#: ../src/unstrip.c:263 +#: ../src/unstrip.c:1816 #, c-format msgid "cannot create program headers: %s" msgstr "" @@ -5280,12 +5386,14 @@ msgstr "" msgid "cannot copy section header: %s" msgstr "" -#: ../src/unstrip.c:282 ../src/unstrip.c:1504 +#: ../src/unstrip.c:282 +#: ../src/unstrip.c:1504 #, c-format msgid "cannot get section data: %s" msgstr "" -#: ../src/unstrip.c:284 ../src/unstrip.c:1506 +#: ../src/unstrip.c:284 +#: ../src/unstrip.c:1506 #, c-format msgid "cannot copy section data: %s" msgstr "" @@ -5295,26 +5403,37 @@ msgstr "" msgid "cannot create directory '%s'" msgstr "" -#: ../src/unstrip.c:348 ../src/unstrip.c:762 ../src/unstrip.c:1539 +#: ../src/unstrip.c:348 +#: ../src/unstrip.c:762 +#: ../src/unstrip.c:1539 #, c-format msgid "cannot get symbol table entry: %s" msgstr "" -#: ../src/unstrip.c:364 ../src/unstrip.c:579 ../src/unstrip.c:600 -#: ../src/unstrip.c:612 ../src/unstrip.c:1560 ../src/unstrip.c:1690 +#: ../src/unstrip.c:364 +#: ../src/unstrip.c:579 +#: ../src/unstrip.c:600 +#: ../src/unstrip.c:612 +#: ../src/unstrip.c:1560 +#: ../src/unstrip.c:1690 #: ../src/unstrip.c:1714 #, c-format msgid "cannot update symbol table: %s" msgstr "" -#: ../src/unstrip.c:381 ../src/unstrip.c:431 ../src/unstrip.c:561 -#: ../src/unstrip.c:1208 ../src/unstrip.c:1524 ../src/unstrip.c:1719 +#: ../src/unstrip.c:381 +#: ../src/unstrip.c:431 +#: ../src/unstrip.c:561 +#: ../src/unstrip.c:1208 +#: ../src/unstrip.c:1524 +#: ../src/unstrip.c:1719 #: ../src/unstrip.c:1790 #, c-format msgid "cannot update section header: %s" msgstr "" -#: ../src/unstrip.c:407 ../src/unstrip.c:418 +#: ../src/unstrip.c:407 +#: ../src/unstrip.c:418 #, c-format msgid "cannot update relocation: %s" msgstr "" @@ -5334,12 +5453,15 @@ msgstr "" msgid "invalid string offset in symbol [%Zu]" msgstr "" -#: ../src/unstrip.c:910 ../src/unstrip.c:1247 +#: ../src/unstrip.c:910 +#: ../src/unstrip.c:1247 #, c-format msgid "cannot read section [%Zu] name: %s" msgstr "" -#: ../src/unstrip.c:951 ../src/unstrip.c:970 ../src/unstrip.c:1003 +#: ../src/unstrip.c:951 +#: ../src/unstrip.c:970 +#: ../src/unstrip.c:1003 #, c-format msgid "cannot read '.gnu.prelink_undo' section: %s" msgstr "" @@ -5349,12 +5471,15 @@ msgstr "" msgid "invalid contents in '%s' section" msgstr "" -#: ../src/unstrip.c:1046 ../src/unstrip.c:1369 +#: ../src/unstrip.c:1046 +#: ../src/unstrip.c:1369 #, c-format msgid "cannot find matching section for [%Zu] '%s'" msgstr "" -#: ../src/unstrip.c:1170 ../src/unstrip.c:1185 ../src/unstrip.c:1450 +#: ../src/unstrip.c:1170 +#: ../src/unstrip.c:1185 +#: ../src/unstrip.c:1450 #, c-format msgid "cannot add section name to string table: %s" msgstr "" @@ -5364,17 +5489,21 @@ msgstr "" msgid "cannot update section header string table data: %s" msgstr "" -#: ../src/unstrip.c:1222 ../src/unstrip.c:1226 +#: ../src/unstrip.c:1222 +#: ../src/unstrip.c:1226 #, c-format msgid "cannot get section header string table section index: %s" msgstr "" -#: ../src/unstrip.c:1230 ../src/unstrip.c:1234 ../src/unstrip.c:1465 +#: ../src/unstrip.c:1230 +#: ../src/unstrip.c:1234 +#: ../src/unstrip.c:1465 #, c-format msgid "cannot get section count: %s" msgstr "" -#: ../src/unstrip.c:1292 ../src/unstrip.c:1384 +#: ../src/unstrip.c:1292 +#: ../src/unstrip.c:1384 #, c-format msgid "cannot read section header string table: %s" msgstr "" @@ -5399,7 +5528,8 @@ msgstr "" msgid "cannot update program header: %s" msgstr "" -#: ../src/unstrip.c:1831 ../src/unstrip.c:1910 +#: ../src/unstrip.c:1831 +#: ../src/unstrip.c:1910 #, c-format msgid "cannot write output file: %s" msgstr "" @@ -5411,11 +5541,12 @@ msgstr "" #: ../src/unstrip.c:1882 #, c-format -msgid "" -"DWARF data in '%s' not adjusted for prelinking bias; consider prelink -u" +msgid "DWARF data in '%s' not adjusted for prelinking bias; consider prelink -u" msgstr "" -#: ../src/unstrip.c:1901 ../src/unstrip.c:1941 ../src/unstrip.c:1953 +#: ../src/unstrip.c:1901 +#: ../src/unstrip.c:1941 +#: ../src/unstrip.c:1953 #: ../src/unstrip.c:2033 #, c-format msgid "cannot create ELF descriptor: %s" @@ -5474,29 +5605,16 @@ msgstr "" #: ../src/unstrip.c:2247 msgid "" -"Combine stripped files with separate symbols and debug information.\vThe " -"first form puts the result in DEBUG-FILE if -o was not given.\n" +"Combine stripped files with separate symbols and debug information.\vThe first form puts the result in DEBUG-FILE if -o was not given.\n" "\n" "MODULE arguments give file name patterns matching modules to process.\n" -"With -f these match the file name of the main (stripped) file (slashes are " -"never special), otherwise they match the simple module names. With no " -"arguments, process all modules found.\n" +"With -f these match the file name of the main (stripped) file (slashes are never special), otherwise they match the simple module names. With no arguments, process all modules found.\n" "\n" -"Multiple modules are written to files under OUTPUT-DIRECTORY, creating " -"subdirectories as needed. With -m these files have simple module names, " -"otherwise they have the name of the main file complete with directory " -"underneath OUTPUT-DIRECTORY.\n" +"Multiple modules are written to files under OUTPUT-DIRECTORY, creating subdirectories as needed. With -m these files have simple module names, otherwise they have the name of the main file complete with directory underneath OUTPUT-DIRECTORY.\n" "\n" -"With -n no files are written, but one line to standard output for each " -"module:\n" +"With -n no files are written, but one line to standard output for each module:\n" "\tSTART+SIZE BUILDID FILE DEBUGFILE MODULENAME\n" -"START and SIZE are hexadecimal giving the address bounds of the module. " -"BUILDID is hexadecimal for the build ID bits, or - if no ID is known; the " -"hexadecimal may be followed by @0xADDR giving the address where the ID " -"resides if that is known. FILE is the file name found for the module, or - " -"if none was found, or . if an ELF image is available but not from any named " -"file. DEBUGFILE is the separate debuginfo file name, or - if no debuginfo " -"was found, or . if FILE contains the debug information." +"START and SIZE are hexadecimal giving the address bounds of the module. BUILDID is hexadecimal for the build ID bits, or - if no ID is known; the hexadecimal may be followed by @0xADDR giving the address where the ID resides if that is known. FILE is the file name found for the module, or - if none was found, or . if an ELF image is available but not from any named file. DEBUGFILE is the separate debuginfo file name, or - if no debuginfo was found, or . if FILE contains the debug information." msgstr "" #: ../src/objdump.c:61 @@ -5528,7 +5646,8 @@ msgstr "" msgid "Show information from FILEs (a.out by default)." msgstr "" -#: ../src/objdump.c:274 ../src/objdump.c:286 +#: ../src/objdump.c:274 +#: ../src/objdump.c:286 #, c-format msgid "while close `%s'" msgstr "" -- cgit v1.2.1 From 105e3984c2dc5f8f60875dc80e9e06480e186900 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sun, 19 Apr 2009 16:07:45 -0700 Subject: Fiddle version.h magic back, so all the computation is in configure. --- ChangeLog | 4 ++++ config/ChangeLog | 4 ++++ config/version.h.in | 4 ++-- configure.ac | 3 +++ 4 files changed, 13 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index c0e71bd7..7b8c4438 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-04-19 Roland McGrath + + * configure.ac (eu_version): Round down here, not in version.h macros. + 2009-04-17 Roland McGrath * configure.ac (eu_version): Compute number 1000 times larger, diff --git a/config/ChangeLog b/config/ChangeLog index 327e5c1c..798a2f93 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,7 @@ +2009-04-19 Roland McGrath + + * version.h.in: Revert last change. + 2009-04-17 Roland McGrath * version.h.in (_ELFUTILS_PREREQ): Multiple major by 1000000 and minor diff --git a/config/version.h.in b/config/version.h.in index f678c696..82c846e9 100644 --- a/config/version.h.in +++ b/config/version.h.in @@ -1,5 +1,5 @@ /* Version information about elfutils development libraries. - Copyright (C) 2008-2009 Red Hat, Inc. + Copyright (C) 2008 Red Hat, Inc. This file is part of Red Hat elfutils. Red Hat elfutils is free software; you can redistribute it and/or modify @@ -53,6 +53,6 @@ #define _ELFUTILS_VERSION @eu_version@ #define _ELFUTILS_PREREQ(major, minor) \ - ((_ELFUTILS_VERSION + 999) / 1000 >= ((major) * 1000 + (minor))) + (_ELFUTILS_VERSION >= ((major) * 1000 + (minor))) #endif /* elfutils/version.h */ diff --git a/configure.ac b/configure.ac index c074e973..aeb40d11 100644 --- a/configure.ac +++ b/configure.ac @@ -290,4 +290,7 @@ case "$eu_version" in *) AC_MSG_ERROR([confused by version number '$PACKAGE_VERSION']) ;; esac +# Round up to the next release API (x.y) version. +[eu_version=$[($eu_version + 999) / 1000]] + AC_OUTPUT -- cgit v1.2.1 From a605a3c8f354895f4cca56aca8f8aa468b506fdf Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sun, 19 Apr 2009 18:27:01 -0700 Subject: Break out __libdwfl_getelf internal function. --- libdwfl/ChangeLog | 10 +++++ libdwfl/Makefile.am | 4 +- libdwfl/dwfl_module_getdwarf.c | 50 +++--------------------- libdwfl/dwfl_module_getelf.c | 88 ++++++++++++++++++++++++++++++++++++++++++ libdwfl/libdwflP.h | 2 + 5 files changed, 107 insertions(+), 47 deletions(-) create mode 100644 libdwfl/dwfl_module_getelf.c diff --git a/libdwfl/ChangeLog b/libdwfl/ChangeLog index d2c823fa..7f42b43e 100644 --- a/libdwfl/ChangeLog +++ b/libdwfl/ChangeLog @@ -1,3 +1,13 @@ +2009-04-19 Roland McGrath + + * dwfl_module_getdwarf.c (find_file): Renamed to ... + (__libdwfl_getelf): ... this. Make it global. + (find_symtab, find_dw): Update callers. + (dwfl_module_getelf): Functions moved ... + * dwfl_module_getelf.c: ... here, new file. + * Makefile.am (libdwfl_a_SOURCES): Add it. + * libdwflP.h: Declare __libdwfl_getelf. + 2009-04-14 Roland McGrath * dwfl_segment_report_module.c: Handle DT_STRTAB value being either diff --git a/libdwfl/Makefile.am b/libdwfl/Makefile.am index 605f9243..ebcb072a 100644 --- a/libdwfl/Makefile.am +++ b/libdwfl/Makefile.am @@ -51,8 +51,8 @@ libdwfl_a_SOURCES = dwfl_begin.c dwfl_end.c dwfl_error.c dwfl_version.c \ dwfl_module.c dwfl_report_elf.c relocate.c \ dwfl_module_build_id.c dwfl_module_report_build_id.c \ derelocate.c offline.c segment.c \ - dwfl_module_info.c dwfl_getmodules.c \ - dwfl_module_getdwarf.c dwfl_getdwarf.c \ + dwfl_module_info.c dwfl_getmodules.c dwfl_getdwarf.c \ + dwfl_module_getdwarf.c dwfl_module_getelf.c \ dwfl_validate_address.c \ argp-std.c find-debuginfo.c \ dwfl_build_id_find_elf.c \ diff --git a/libdwfl/dwfl_module_getdwarf.c b/libdwfl/dwfl_module_getdwarf.c index e99aa1f8..0441eb31 100644 --- a/libdwfl/dwfl_module_getdwarf.c +++ b/libdwfl/dwfl_module_getdwarf.c @@ -120,8 +120,8 @@ open_elf (Dwfl_Module *mod, struct dwfl_file *file) /* Find the main ELF file for this module and open libelf on it. When we return success, MOD->main.elf and MOD->main.bias are set up. */ -static void -find_file (Dwfl_Module *mod) +void +__libdwfl_getelf (Dwfl_Module *mod) { if (mod->main.elf != NULL /* Already done. */ || mod->elferr != DWFL_E_NOERROR) /* Cached failure. */ @@ -496,7 +496,7 @@ find_symtab (Dwfl_Module *mod) || mod->symerr != DWFL_E_NOERROR) /* Cached previous failure. */ return; - find_file (mod); + __libdwfl_getelf (mod); mod->symerr = mod->elferr; if (mod->symerr != DWFL_E_NOERROR) return; @@ -592,7 +592,7 @@ __libdwfl_module_getebl (Dwfl_Module *mod) { if (mod->ebl == NULL) { - find_file (mod); + __libdwfl_getelf (mod); if (mod->elferr != DWFL_E_NOERROR) return mod->elferr; @@ -660,7 +660,7 @@ find_dw (Dwfl_Module *mod) || mod->dwerr != DWFL_E_NOERROR) /* Cached previous failure. */ return; - find_file (mod); + __libdwfl_getelf (mod); mod->dwerr = mod->elferr; if (mod->dwerr != DWFL_E_NOERROR) return; @@ -701,46 +701,6 @@ find_dw (Dwfl_Module *mod) mod->dwerr = __libdwfl_canon_error (mod->dwerr); } - -Elf * -dwfl_module_getelf (Dwfl_Module *mod, GElf_Addr *loadbase) -{ - if (mod == NULL) - return NULL; - - find_file (mod); - if (mod->elferr == DWFL_E_NOERROR) - { - if (mod->e_type == ET_REL && ! mod->main.relocated) - { - /* Before letting them get at the Elf handle, - apply all the relocations we know how to. */ - - mod->main.relocated = true; - if (likely (__libdwfl_module_getebl (mod) == DWFL_E_NOERROR)) - { - (void) __libdwfl_relocate (mod, mod->main.elf, false); - - if (mod->debug.elf == mod->main.elf) - mod->debug.relocated = true; - else if (mod->debug.elf != NULL && ! mod->debug.relocated) - { - mod->debug.relocated = true; - (void) __libdwfl_relocate (mod, mod->debug.elf, false); - } - } - } - - *loadbase = mod->main.bias; - return mod->main.elf; - } - - __libdwfl_seterrno (mod->elferr); - return NULL; -} -INTDEF (dwfl_module_getelf) - - Dwarf * dwfl_module_getdwarf (Dwfl_Module *mod, Dwarf_Addr *bias) { diff --git a/libdwfl/dwfl_module_getelf.c b/libdwfl/dwfl_module_getelf.c new file mode 100644 index 00000000..6414a9d3 --- /dev/null +++ b/libdwfl/dwfl_module_getelf.c @@ -0,0 +1,88 @@ +/* Find debugging and symbol information for a module in libdwfl. + Copyright (C) 2009 Red Hat, Inc. + This file is part of Red Hat elfutils. + + Red Hat elfutils 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; version 2 of the License. + + Red Hat elfutils 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 Red Hat elfutils; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA. + + In addition, as a special exception, Red Hat, Inc. gives You the + additional right to link the code of Red Hat elfutils with code licensed + under any Open Source Initiative certified open source license + (http://www.opensource.org/licenses/index.php) which requires the + distribution of source code with any binary distribution and to + distribute linked combinations of the two. Non-GPL Code permitted under + this exception must only link to the code of Red Hat elfutils through + those well defined interfaces identified in the file named EXCEPTION + found in the source code files (the "Approved Interfaces"). The files + of Non-GPL Code may instantiate templates or use macros or inline + functions from the Approved Interfaces without causing the resulting + work to be covered by the GNU General Public License. Only Red Hat, + Inc. may make changes or additions to the list of Approved Interfaces. + Red Hat's grant of this exception is conditioned upon your not adding + any new exceptions. If you wish to add a new Approved Interface or + exception, please contact Red Hat. You must obey the GNU General Public + License in all respects for all of the Red Hat elfutils code and other + code used in conjunction with Red Hat elfutils except the Non-GPL Code + covered by this exception. If you modify this file, you may extend this + exception to your version of the file, but you are not obligated to do + so. If you do not wish to provide this exception without modification, + you must delete this exception statement from your version and license + this file solely under the GPL without exception. + + Red Hat elfutils is an included package of the Open Invention Network. + An included package of the Open Invention Network is a package for which + Open Invention Network licensees cross-license their patents. No patent + license is granted, either expressly or impliedly, by designation as an + included package. Should you wish to participate in the Open Invention + Network licensing program, please visit www.openinventionnetwork.com + . */ + +#include "libdwflP.h" + +Elf * +dwfl_module_getelf (Dwfl_Module *mod, GElf_Addr *loadbase) +{ + if (mod == NULL) + return NULL; + + __libdwfl_getelf (mod); + if (mod->elferr == DWFL_E_NOERROR) + { + if (mod->e_type == ET_REL && ! mod->main.relocated) + { + /* Before letting them get at the Elf handle, + apply all the relocations we know how to. */ + + mod->main.relocated = true; + if (likely (__libdwfl_module_getebl (mod) == DWFL_E_NOERROR)) + { + (void) __libdwfl_relocate (mod, mod->main.elf, false); + + if (mod->debug.elf == mod->main.elf) + mod->debug.relocated = true; + else if (mod->debug.elf != NULL && ! mod->debug.relocated) + { + mod->debug.relocated = true; + (void) __libdwfl_relocate (mod, mod->debug.elf, false); + } + } + } + + *loadbase = mod->main.bias; + return mod->main.elf; + } + + __libdwfl_seterrno (mod->elferr); + return NULL; +} +INTDEF (dwfl_module_getelf) diff --git a/libdwfl/libdwflP.h b/libdwfl/libdwflP.h index 45eac21c..be2ad828 100644 --- a/libdwfl/libdwflP.h +++ b/libdwfl/libdwflP.h @@ -241,6 +241,8 @@ struct dwfl_arange extern void __libdwfl_module_free (Dwfl_Module *mod) internal_function; +/* Find the main ELF file, update MOD->elferr and/or MOD->main.elf. */ +extern void __libdwfl_getelf (Dwfl_Module *mod) internal_function; /* Process relocations in debugging sections in an ET_REL file. FILE must be opened with ELF_C_READ_MMAP_PRIVATE or ELF_C_READ, -- cgit v1.2.1 From d86e183403704a287d33c99badcf8bea303c0fd7 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 20 Apr 2009 00:49:33 -0700 Subject: Support -j option in addr2line to match binutils. --- NEWS | 5 +++ src/ChangeLog | 7 +++++ src/addr2line.c | 98 +++++++++++++++++++++++++++++++++------------------------ 3 files changed, 69 insertions(+), 41 deletions(-) diff --git a/NEWS b/NEWS index 5effc77a..c0f60bca 100644 --- a/NEWS +++ b/NEWS @@ -2,11 +2,16 @@ Version 0.141: libebl: sparc backend fixes; some more arm backend support + libdwfl: fix dwfl_module_build_id for prelinked DSO case; fixes in core file support; dwfl_module_getsym interface improved for non-address symbols + strip: fix infinite loop on strange inputs with -f +addr2line: take -j/--section=NAME option for binutils compatibility + (same effect as '(NAME)0x123' syntax already supported) + Version 0.140: libelf: Fix regression in creation of section header diff --git a/src/ChangeLog b/src/ChangeLog index fe8b0362..20f5d987 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,10 @@ +2009-04-20 Roland McGrath + + * addr2line.c (just_section): New variable. + (adjust_to_section): New function, broken out of ... + (handle_address): ... here. + (options, parse_opt): Add -j/--section=NAME to set it. + 2009-04-15 Roland McGrath * readelf.c (print_debug_frame_section): Check for DW_CIE_ID_64 in diff --git a/src/addr2line.c b/src/addr2line.c index 5a7b0456..ccc10e8f 100644 --- a/src/addr2line.c +++ b/src/addr2line.c @@ -69,6 +69,8 @@ static const struct argp_option options[] = N_("Show absolute file names using compilation directory"), 0 }, { "functions", 'f', NULL, 0, N_("Also show function names"), 0 }, { "symbols", 'S', NULL, 0, N_("Also show symbol or section names"), 0 }, + { "section", 'j', "NAME", 0, + N_("Treat addresses as offsets relative to NAME section."), 0 }, { NULL, 0, NULL, 0, N_("Miscellaneous:"), 0 }, /* Unsupported options. */ @@ -113,6 +115,9 @@ static bool show_functions; /* True if ELF symbol or section info should be shown. */ static bool show_symbols; +/* If non-null, take address parameters as relative to named section. */ +static const char *just_section; + int main (int argc, char *argv[]) @@ -188,8 +193,7 @@ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\ /* Handle program arguments. */ static error_t -parse_opt (int key, char *arg __attribute__ ((unused)), - struct argp_state *state) +parse_opt (int key, char *arg, struct argp_state *state) { switch (key) { @@ -219,6 +223,10 @@ parse_opt (int key, char *arg __attribute__ ((unused)), show_symbols = true; break; + case 'j': + just_section = arg; + break; + default: return ARGP_ERR_UNKNOWN; } @@ -366,6 +374,49 @@ find_symbol (Dwfl_Module *mod, return DWARF_CB_OK; } +static bool +adjust_to_section (const char *name, uintmax_t *addr, Dwfl *dwfl) +{ + /* It was (section)+offset. This makes sense if there is + only one module to look in for a section. */ + Dwfl_Module *mod = NULL; + if (dwfl_getmodules (dwfl, &see_one_module, &mod, 0) != 0 + || mod == NULL) + error (EXIT_FAILURE, 0, gettext ("Section syntax requires" + " exactly one module")); + + int nscn = dwfl_module_relocations (mod); + for (int i = 0; i < nscn; ++i) + { + GElf_Word shndx; + const char *scn = dwfl_module_relocation_info (mod, i, &shndx); + if (unlikely (scn == NULL)) + break; + if (!strcmp (scn, name)) + { + /* Found the section. */ + GElf_Shdr shdr_mem; + GElf_Addr shdr_bias; + GElf_Shdr *shdr = gelf_getshdr + (elf_getscn (dwfl_module_getelf (mod, &shdr_bias), shndx), + &shdr_mem); + if (unlikely (shdr == NULL)) + break; + + if (*addr >= shdr->sh_size) + error (0, 0, + gettext ("offset %#" PRIxMAX " lies outside" + " section '%s'"), + *addr, scn); + + *addr += shdr->sh_addr + shdr_bias; + return true; + } + } + + return false; +} + static int handle_address (const char *string, Dwfl *dwfl) { @@ -378,45 +429,7 @@ handle_address (const char *string, Dwfl *dwfl) char *name = NULL; if (sscanf (string, "(%m[^)])%" PRIiMAX "%n", &name, &addr, &n) == 2 && string[n] == '\0') - { - /* It was (section)+offset. This makes sense if there is - only one module to look in for a section. */ - Dwfl_Module *mod = NULL; - if (dwfl_getmodules (dwfl, &see_one_module, &mod, 0) != 0 - || mod == NULL) - error (EXIT_FAILURE, 0, gettext ("Section syntax requires" - " exactly one module")); - - int nscn = dwfl_module_relocations (mod); - for (int i = 0; i < nscn; ++i) - { - GElf_Word shndx; - const char *scn = dwfl_module_relocation_info (mod, i, &shndx); - if (unlikely (scn == NULL)) - break; - if (!strcmp (scn, name)) - { - /* Found the section. */ - GElf_Shdr shdr_mem; - GElf_Addr shdr_bias; - GElf_Shdr *shdr = gelf_getshdr - (elf_getscn (dwfl_module_getelf (mod, &shdr_bias), shndx), - &shdr_mem); - if (unlikely (shdr == NULL)) - break; - - if (addr >= shdr->sh_size) - error (0, 0, - gettext ("offset %#" PRIxMAX " lies outside" - " section '%s'"), - addr, scn); - - addr += shdr->sh_addr + shdr_bias; - parsed = true; - break; - } - } - } + parsed = adjust_to_section (name, &addr, dwfl); else if (sscanf (string, "%m[^-+]%" PRIiMAX "%n", &name, &addr, &n) == 2 && string[n] == '\0') { @@ -442,6 +455,9 @@ handle_address (const char *string, Dwfl *dwfl) if (!parsed) return 1; } + else if (just_section != NULL + && !adjust_to_section (just_section, &addr, dwfl)) + return 1; Dwfl_Module *mod = dwfl_addrmodule (dwfl, addr); -- cgit v1.2.1 From 8a59241b0cee642d16398d19adeab75f25768aca Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 20 Apr 2009 01:20:44 -0700 Subject: addr2line: Honor -s and -A for file names of inline call sites. --- src/ChangeLog | 3 +++ src/addr2line.c | 30 +++++++++++++++++++++++++----- 2 files changed, 28 insertions(+), 5 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 20f5d987..a2e209a1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2009-04-20 Roland McGrath + * addr2line.c (print_dwarf_function): Honor -s and -A for file names + of inline call sites. + * addr2line.c (just_section): New variable. (adjust_to_section): New function, broken out of ... (handle_address): ... here. diff --git a/src/addr2line.c b/src/addr2line.c index ccc10e8f..99264b01 100644 --- a/src/addr2line.c +++ b/src/addr2line.c @@ -284,15 +284,35 @@ print_dwarf_function (Dwfl_Module *mod, Dwarf_Addr addr) DW_AT_call_column, &attr_mem), &val) == 0) colno = val; - if (lineno == 0) + + const char *comp_dir = ""; + const char *comp_dir_sep = ""; + + if (file == NULL) + file = "???"; + else if (only_basenames) + file = basename (file); + else if (use_comp_dir && file[0] != '/') { - if (file != NULL) - printf (" from %s", file); + const char *const *dirs; + size_t ndirs; + if (dwarf_getsrcdirs (files, &dirs, &ndirs) == 0 + && dirs[0] != NULL) + { + comp_dir = dirs[0]; + comp_dir_sep = "/"; + } } + + if (lineno == 0) + printf (" from %s%s%s", + comp_dir, comp_dir_sep, file); else if (colno == 0) - printf (" at %s:%u", file, lineno); + printf (" at %s%s%s:%u", + comp_dir, comp_dir_sep, file, lineno); else - printf (" at %s:%u:%u", file, lineno, colno); + printf (" at %s%s%s:%u:%u", + comp_dir, comp_dir_sep, file, lineno, colno); } } printf (" in "); -- cgit v1.2.1 From 1036157150672569a79d30c9b59cc7623e3e8e60 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 20 Apr 2009 11:50:50 -0700 Subject: Add missing internal_function attribute. --- libdwfl/ChangeLog | 4 ++++ libdwfl/dwfl_module_getdwarf.c | 1 + 2 files changed, 5 insertions(+) diff --git a/libdwfl/ChangeLog b/libdwfl/ChangeLog index 7f42b43e..c2eb39d9 100644 --- a/libdwfl/ChangeLog +++ b/libdwfl/ChangeLog @@ -1,3 +1,7 @@ +2009-04-20 Roland McGrath + + * dwfl_module_getdwarf.c (__libdwfl_getelf): Add internal_function. + 2009-04-19 Roland McGrath * dwfl_module_getdwarf.c (find_file): Renamed to ... diff --git a/libdwfl/dwfl_module_getdwarf.c b/libdwfl/dwfl_module_getdwarf.c index 0441eb31..06cb4917 100644 --- a/libdwfl/dwfl_module_getdwarf.c +++ b/libdwfl/dwfl_module_getdwarf.c @@ -121,6 +121,7 @@ open_elf (Dwfl_Module *mod, struct dwfl_file *file) /* Find the main ELF file for this module and open libelf on it. When we return success, MOD->main.elf and MOD->main.bias are set up. */ void +internal_function __libdwfl_getelf (Dwfl_Module *mod) { if (mod->main.elf != NULL /* Already done. */ -- cgit v1.2.1 From 19a8e4dbd8268b8f0add9803d80d0266eac1aaa9 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Tue, 21 Apr 2009 15:44:07 -0700 Subject: Fix derelocate crash for non-ET_REL file with some sh_addr at 0. --- libdwfl/ChangeLog | 9 +++++++++ libdwfl/derelocate.c | 5 +++-- libdwfl/dwfl_module_build_id.c | 5 +++-- libdwfl/dwfl_module_getsym.c | 30 +++++++++++++++--------------- libdwfl/relocate.c | 2 ++ tests/ChangeLog | 6 ++++++ tests/Makefile.am | 4 ++-- tests/run-addrname-test.sh | 1 + tests/run-dwfl-addr-sect.sh | 8 ++++++-- tests/testfile50.bz2 | Bin 0 -> 229 bytes 10 files changed, 47 insertions(+), 23 deletions(-) create mode 100644 tests/testfile50.bz2 diff --git a/libdwfl/ChangeLog b/libdwfl/ChangeLog index c2eb39d9..bc4344c3 100644 --- a/libdwfl/ChangeLog +++ b/libdwfl/ChangeLog @@ -1,3 +1,12 @@ +2009-04-21 Roland McGrath + + * dwfl_module_getsym.c: Apply non-ET_REL bias only if SHF_ALLOC. + + * relocate.c (__libdwfl_relocate_value): Assert that MOD is ET_REL. + * derelocate.c (cache_sections): Call __libdwfl_relocate_value only + for ET_REL. + * dwfl_module_build_id.c (__libdwfl_find_build_id): Likewise. + 2009-04-20 Roland McGrath * dwfl_module_getdwarf.c (__libdwfl_getelf): Add internal_function. diff --git a/libdwfl/derelocate.c b/libdwfl/derelocate.c index f2a64675..c300f84b 100644 --- a/libdwfl/derelocate.c +++ b/libdwfl/derelocate.c @@ -1,5 +1,5 @@ /* Recover relocatibility for addresses computed from debug information. - Copyright (C) 2005, 2006, 2007, 2008 Red Hat, Inc. + Copyright (C) 2005-2009 Red Hat, Inc. This file is part of Red Hat elfutils. Red Hat elfutils is free software; you can redistribute it and/or modify @@ -110,7 +110,8 @@ cache_sections (Dwfl_Module *mod) if (shdr == NULL) goto elf_error; - if ((shdr->sh_flags & SHF_ALLOC) && shdr->sh_addr == 0) + if ((shdr->sh_flags & SHF_ALLOC) && shdr->sh_addr == 0 + && mod->e_type == ET_REL) { /* This section might not yet have been looked at. */ if (__libdwfl_relocate_value (mod, mod->main.elf, &shstrndx, diff --git a/libdwfl/dwfl_module_build_id.c b/libdwfl/dwfl_module_build_id.c index f3fcc190..a3797a5a 100644 --- a/libdwfl/dwfl_module_build_id.c +++ b/libdwfl/dwfl_module_build_id.c @@ -135,8 +135,9 @@ __libdwfl_find_build_id (Dwfl_Module *mod, bool set, Elf *elf) /* Determine the right sh_addr in this module. */ GElf_Addr vaddr = 0; if (!(shdr->sh_flags & SHF_ALLOC) - || __libdwfl_relocate_value (mod, elf, &shstrndx, - elf_ndxscn (scn), &vaddr)) + || (mod->e_type == ET_REL + && __libdwfl_relocate_value (mod, elf, &shstrndx, + elf_ndxscn (scn), &vaddr))) vaddr = NO_VADDR; result = check_notes (mod, set, elf_getdata (scn, NULL), vaddr); } diff --git a/libdwfl/dwfl_module_getsym.c b/libdwfl/dwfl_module_getsym.c index 816d2143..f78e6ec0 100644 --- a/libdwfl/dwfl_module_getsym.c +++ b/libdwfl/dwfl_module_getsym.c @@ -74,25 +74,25 @@ dwfl_module_getsym (Dwfl_Module *mod, int ndx, if (sym->st_shndx != SHN_XINDEX) shndx = sym->st_shndx; - if (shndxp != NULL) + /* Figure out whether this symbol points into an SHF_ALLOC section. */ + bool alloc = true; + if ((shndxp != NULL || mod->e_type != ET_REL) + && (sym->st_shndx == SHN_XINDEX + || (sym->st_shndx < SHN_LORESERVE && sym->st_shndx != SHN_UNDEF))) { - *shndxp = shndx; - - /* Yield -1 in case of a non-SHF_ALLOC section. */ - if (sym->st_shndx == SHN_XINDEX - || (sym->st_shndx < SHN_LORESERVE && sym->st_shndx != SHN_UNDEF)) - { - GElf_Shdr shdr_mem; - GElf_Shdr *shdr = gelf_getshdr (elf_getscn (mod->symfile->elf, shndx), - &shdr_mem); - if (unlikely (shdr == NULL) || !(shdr->sh_flags & SHF_ALLOC)) - *shndxp = (GElf_Word) -1; - } + GElf_Shdr shdr_mem; + GElf_Shdr *shdr = gelf_getshdr (elf_getscn (mod->symfile->elf, shndx), + &shdr_mem); + alloc = unlikely (shdr == NULL) || (shdr->sh_flags & SHF_ALLOC); } + if (shndxp != NULL) + /* Yield -1 in case of a non-SHF_ALLOC section. */ + *shndxp = alloc ? shndx : (GElf_Word) -1; + switch (sym->st_shndx) { - case SHN_ABS: + case SHN_ABS: /* XXX sometimes should use bias?? */ case SHN_UNDEF: case SHN_COMMON: break; @@ -112,7 +112,7 @@ dwfl_module_getsym (Dwfl_Module *mod, int ndx, return NULL; } } - else + else if (alloc) /* Apply the bias to the symbol value. */ sym->st_value += mod->symfile->bias; break; diff --git a/libdwfl/relocate.c b/libdwfl/relocate.c index e809a979..b236ca50 100644 --- a/libdwfl/relocate.c +++ b/libdwfl/relocate.c @@ -59,6 +59,8 @@ internal_function __libdwfl_relocate_value (Dwfl_Module *mod, Elf *elf, size_t *shstrndx, Elf32_Word shndx, GElf_Addr *value) { + assert (mod->e_type == ET_REL); + Elf_Scn *refscn = elf_getscn (elf, shndx); GElf_Shdr refshdr_mem, *refshdr = gelf_getshdr (refscn, &refshdr_mem); if (refshdr == NULL) diff --git a/tests/ChangeLog b/tests/ChangeLog index 25f271f1..70e9c027 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,9 @@ +2009-04-21 Roland McGrath + + * testfile50.bz2: New data file. + * Makefile.am (EXTRA_DIST): Add it. + * run-dwfl-addr-sect.sh: Add a case using it. + 2008-12-31 Ulrich Drepper * testfile44.S.bz2: Add tests for dppd, dpps, insertps, movntdqa, diff --git a/tests/Makefile.am b/tests/Makefile.am index b533521c..81c1ab76 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to create Makefile.in ## -## Copyright (C) 1996-2002, 2003, 2004, 2005, 2006, 2007, 2008 Red Hat, Inc. +## Copyright (C) 1996-2009 Red Hat, Inc. ## This file is part of Red Hat elfutils. ## ## Red Hat elfutils is free software; you can redistribute it and/or modify @@ -141,7 +141,7 @@ EXTRA_DIST = run-arextract.sh run-arsymtest.sh \ testfile44.S.bz2 testfile44.expect.bz2 run-disasm-x86.sh \ testfile45.S.bz2 testfile45.expect.bz2 run-disasm-x86-64.sh \ testfile46.bz2 testfile47.bz2 testfile48.bz2 testfile48.debug.bz2 \ - testfile49.bz2 + testfile49.bz2 testfile50.bz2 installed_TESTS_ENVIRONMENT = libdir=$(DESTDIR)$(libdir) \ bindir=$(DESTDIR)$(bindir) \ diff --git a/tests/run-addrname-test.sh b/tests/run-addrname-test.sh index d525523d..2a188915 100755 --- a/tests/run-addrname-test.sh +++ b/tests/run-addrname-test.sh @@ -64,6 +64,7 @@ EOF testfiles testfile12 testfile14 tempfiles testmaps +remove_files= cat > testmaps < module "" section 4 + 0 @@ -33,4 +33,8 @@ address 0x8 => module "" section 1 + 0x8 address 0x98 => module "" section 7 + 0 EOF +testrun_compare ./dwfl-addr-sect -e testfile50 0x1 <<\EOF +address 0x1 => module "" section 1 + 0x1 +EOF + exit 0 diff --git a/tests/testfile50.bz2 b/tests/testfile50.bz2 new file mode 100644 index 00000000..fce43321 Binary files /dev/null and b/tests/testfile50.bz2 differ -- cgit v1.2.1 From cc480475458dabde78051d697ec38af6813f131b Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 22 Apr 2009 11:32:20 -0700 Subject: Fix dwfl_module_build_id regression in last change. --- libdwfl/ChangeLog | 5 +++++ libdwfl/dwfl_module_build_id.c | 10 ++++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/libdwfl/ChangeLog b/libdwfl/ChangeLog index bc4344c3..86a08e93 100644 --- a/libdwfl/ChangeLog +++ b/libdwfl/ChangeLog @@ -1,3 +1,8 @@ +2009-04-22 Roland McGrath + + * dwfl_module_build_id.c (__libdwfl_find_build_id): Fix last change to + adjust properly for non-ET_REL. + 2009-04-21 Roland McGrath * dwfl_module_getsym.c: Apply non-ET_REL bias only if SHF_ALLOC. diff --git a/libdwfl/dwfl_module_build_id.c b/libdwfl/dwfl_module_build_id.c index a3797a5a..e1256db7 100644 --- a/libdwfl/dwfl_module_build_id.c +++ b/libdwfl/dwfl_module_build_id.c @@ -134,10 +134,12 @@ __libdwfl_find_build_id (Dwfl_Module *mod, bool set, Elf *elf) { /* Determine the right sh_addr in this module. */ GElf_Addr vaddr = 0; - if (!(shdr->sh_flags & SHF_ALLOC) - || (mod->e_type == ET_REL - && __libdwfl_relocate_value (mod, elf, &shstrndx, - elf_ndxscn (scn), &vaddr))) + if (!(shdr->sh_flags & SHF_ALLOC)) + vaddr = NO_VADDR; + else if (mod->e_type != ET_REL) + vaddr = shdr->sh_addr + mod->main.bias; + else if (__libdwfl_relocate_value (mod, elf, &shstrndx, + elf_ndxscn (scn), &vaddr)) vaddr = NO_VADDR; result = check_notes (mod, set, elf_getdata (scn, NULL), vaddr); } -- cgit v1.2.1 From c65558baa0382d59398234c5a05debdc5a98eb1b Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 22 Apr 2009 12:29:32 -0700 Subject: Fix relocation when symbols are resolved in non-ET_REL modules. --- libdwfl/ChangeLog | 3 +++ libdwfl/relocate.c | 8 +++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/libdwfl/ChangeLog b/libdwfl/ChangeLog index 86a08e93..f0b0a284 100644 --- a/libdwfl/ChangeLog +++ b/libdwfl/ChangeLog @@ -1,5 +1,8 @@ 2009-04-22 Roland McGrath + * relocate.c (resolve_symbol): Apply correct bias to st_value found in + a non-ET_REL module. + * dwfl_module_build_id.c (__libdwfl_find_build_id): Fix last change to adjust properly for non-ET_REL. diff --git a/libdwfl/relocate.c b/libdwfl/relocate.c index b236ca50..2c0f3010 100644 --- a/libdwfl/relocate.c +++ b/libdwfl/relocate.c @@ -267,9 +267,15 @@ resolve_symbol (Dwfl_Module *referer, struct reloc_symtab_cache *symtab, continue; /* We found it! */ - if (shndx == SHN_ABS) + if (shndx == SHN_ABS) /* XXX maybe should apply bias? */ return DWFL_E_NOERROR; + if (m->e_type != ET_REL) + { + sym->st_value += m->symfile->bias; + return DWFL_E_NOERROR; + } + /* In an ET_REL file, the symbol table values are relative to the section, not to the module's load base. */ size_t symshstrndx = SHN_UNDEF; -- cgit v1.2.1 From 2fe3aa6c807a4a5d2c767ab53792bf2d0d9ff2b7 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 22 Apr 2009 23:08:04 -0700 Subject: Revert leaked bogon. --- tests/run-addrname-test.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/run-addrname-test.sh b/tests/run-addrname-test.sh index 2a188915..d525523d 100755 --- a/tests/run-addrname-test.sh +++ b/tests/run-addrname-test.sh @@ -64,7 +64,6 @@ EOF testfiles testfile12 testfile14 tempfiles testmaps -remove_files= cat > testmaps < Date: Thu, 23 Apr 2009 07:44:36 -0700 Subject: Add missing dependencies on compression libraries for static builds. --- src/ChangeLog | 4 ++++ src/Makefile.am | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index a2e209a1..49b72037 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2009-04-23 Ulrich Drepper + + * Makefile [BUILD_STATIC] (libdw): Add $(zip_LIBS). + 2009-04-20 Roland McGrath * addr2line.c (print_dwarf_function): Honor -s and -A for file names diff --git a/src/Makefile.am b/src/Makefile.am index 64e4478b..c644a062 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -95,7 +95,7 @@ endif if BUILD_STATIC libasm = ../libasm/libasm.a -libdw = ../libdw/libdw.a $(libelf) $(libebl) -ldl +libdw = ../libdw/libdw.a $(zip_LIBS) $(libelf) $(libebl) -ldl libelf = ../libelf/libelf.a else libasm = ../libasm/libasm.so -- cgit v1.2.1 From 4f5157128605162859bbf49f29abc20fee839cf5 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 23 Apr 2009 07:54:53 -0700 Subject: Avoid symbol versioning unless building code for DSO. --- libdwfl/ChangeLog | 5 +++++ libdwfl/dwfl_module_build_id.c | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/libdwfl/ChangeLog b/libdwfl/ChangeLog index f0b0a284..8f51ca73 100644 --- a/libdwfl/ChangeLog +++ b/libdwfl/ChangeLog @@ -1,3 +1,8 @@ +2009-04-23 Ulrich Drepper + + * dwfl_module_build_id.c: Define versioned symbols only if SHARED is + defined. Otherwise just define the latest version. + 2009-04-22 Roland McGrath * relocate.c (resolve_symbol): Apply correct bias to st_value found in diff --git a/libdwfl/dwfl_module_build_id.c b/libdwfl/dwfl_module_build_id.c index e1256db7..d7bbb3ca 100644 --- a/libdwfl/dwfl_module_build_id.c +++ b/libdwfl/dwfl_module_build_id.c @@ -174,6 +174,7 @@ __dwfl_module_build_id (Dwfl_Module *mod, *vaddr = mod->build_id_vaddr; return mod->build_id_len; } +#ifdef SHARED extern __typeof__ (dwfl_module_build_id) INTUSE(dwfl_module_build_id) __attribute__ ((alias ("__dwfl_module_build_id"))); asm (".symver " @@ -190,3 +191,7 @@ _BUG_COMPAT_dwfl_module_build_id (Dwfl_Module *mod, } asm (".symver " "_BUG_COMPAT_dwfl_module_build_id, dwfl_module_build_id@ELFUTILS_0.130"); +#else +extern __typeof__ (dwfl_module_build_id) dwfl_module_build_id + __attribute__ ((alias ("__dwfl_module_build_id"))); +#endif -- cgit v1.2.1 From f9545c4ac7ec2cf0d5b69aa2db043f9f4df6c6c5 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 23 Apr 2009 07:59:02 -0700 Subject: Fix building tests with mudflap. --- tests/ChangeLog | 5 +++++ tests/Makefile.am | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/tests/ChangeLog b/tests/ChangeLog index 70e9c027..f1fd512b 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,8 @@ +2009-04-23 Ulrich Drepper + + * Makefile [BUILD_STATIC] (libdw): Add $(zip_LIBS). + (rdwrmmap_LDADD): Add $(libmudflap). + 2009-04-21 Roland McGrath * testfile50.bz2: New data file. diff --git a/tests/Makefile.am b/tests/Makefile.am index 81c1ab76..9f4ccddb 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -160,7 +160,7 @@ installcheck-local: endif !STANDALONE if MUDFLAP -static_build=yes +static_build = yes libmudflap = -lmudflap endif @@ -171,7 +171,7 @@ libasm = -lasm libebl = -lebl else !STANDALONE if BUILD_STATIC -libdw = ../libdw/libdw.a $(libelf) $(libebl) -ldl +libdw = ../libdw/libdw.a $(zip_LIBS) $(libelf) $(libebl) -ldl libelf = ../libelf/libelf.a libasm = ../libasm/libasm.a else @@ -225,7 +225,7 @@ asm_tst7_LDADD = $(libasm) $(libebl) $(libelf) $(libmudflap) -ldl asm_tst8_LDADD = $(libasm) $(libebl) $(libelf) $(libmudflap) -ldl asm_tst9_LDADD = $(libasm) $(libebl) $(libelf) $(libmudflap) -ldl dwflmodtest_LDADD = $(libdw) $(libebl) $(libelf) $(libmudflap) -ldl -rdwrmmap_LDADD = $(libelf) +rdwrmmap_LDADD = $(libelf) $(libmudflap) dwfl_bug_addr_overflow_LDADD = $(libdw) $(libebl) $(libelf) $(libmudflap) -ldl arls_LDADD = $(libelf) $(libmudflap) dwfl_bug_fd_leak_LDADD = $(libdw) $(libebl) $(libelf) $(libmudflap) -ldl -- cgit v1.2.1 From 300f3a41d5e22f4e6c634ed652ebc2c90303f89f Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 23 Apr 2009 08:20:16 -0700 Subject: 0.141 release. --- config/elfutils.spec.in | 9 +++++++++ configure.ac | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/config/elfutils.spec.in b/config/elfutils.spec.in index f67d4590..04fc34b3 100644 --- a/config/elfutils.spec.in +++ b/config/elfutils.spec.in @@ -183,6 +183,15 @@ rm -rf ${RPM_BUILD_ROOT} %{_libdir}/libelf.a %changelog +* Thu Apr 23 2009 Ulrich Drepper 0.141-1 +- libebl: sparc backend fixes; some more arm backend support +- libdwfl: fix dwfl_module_build_id for prelinked DSO case; + fixes in core file support; dwfl_module_getsym interface + improved for non-address symbols +- strip: fix infinite loop on strange inputs with -f +- addr2line: take -j/--section=NAME option for binutils compatibility + (same effect as '(NAME)0x123' syntax already supported) + * Mon Feb 16 2009 Ulrich Drepper 0.140-1 - libelf: Fix regression in creation of section header - libdwfl: Less strict behavior if DWARF reader ist just used to diff --git a/configure.ac b/configure.ac index aeb40d11..4931530c 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ dnl You should have received a copy of the GNU General Public License dnl along with this program; if not, write to the Free Software Foundation, dnl Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. dnl -AC_INIT([Red Hat elfutils],[0.140.90],[http://bugzilla.redhat.com/bugzilla/], +AC_INIT([Red Hat elfutils],[0.141],[http://bugzilla.redhat.com/bugzilla/], [elfutils]) AC_CONFIG_AUX_DIR([config]) -- cgit v1.2.1 From bb7a68a1678b2ce09099bd6f6fab4726944f20b1 Mon Sep 17 00:00:00 2001 From: logan Date: Fri, 24 Apr 2009 17:23:57 +0000 Subject: Sending translation for Spanish --- po/es.po | 431 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 224 insertions(+), 207 deletions(-) diff --git a/po/es.po b/po/es.po index 4a0b45a1..40066379 100644 --- a/po/es.po +++ b/po/es.po @@ -1,10 +1,14 @@ +# Fedora Spanish Translation of elfutils. +# Domingo Becker , 2009. +# Héctor Daniel Cabrera , 2009. +# msgid "" msgstr "" "Project-Id-Version: elfutils\n" "Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n" -"POT-Creation-Date: 2009-04-09 14:04+0000\n" +"POT-Creation-Date: 2009-04-24 14:08+0000\n" "PO-Revision-Date: \n" -"Last-Translator: Claudio Rodrigo Pereyra Diaz \n" +"Last-Translator: Héctor Daniel Cabrera \n" "Language-Team: Fedora Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,7 +19,7 @@ msgstr "" #: ../lib/xmalloc.c:65 #: ../lib/xmalloc.c:79 #: ../src/readelf.c:2703 -#: ../src/readelf.c:3038 +#: ../src/readelf.c:3041 #: ../src/unstrip.c:2086 #: ../src/unstrip.c:2294 #, c-format @@ -56,7 +60,7 @@ msgid "invalid size of destination operand" msgstr "tamaño inválido del operando destino" #: ../libelf/elf_error.c:108 -#: ../src/readelf.c:4589 +#: ../src/readelf.c:4592 #, c-format msgid "invalid encoding" msgstr "codificación inválida" @@ -92,7 +96,7 @@ msgstr "desplazamiento fuera de rango" #: ../libelf/elf_error.c:136 msgid "invalid fmag field in archive header" -msgstr "" +msgstr "campo fmag no válido en el encabezado del archivo" #: ../libelf/elf_error.c:140 msgid "invalid archive file" @@ -132,7 +136,7 @@ msgstr "sección inválida" #: ../libelf/elf_error.c:180 msgid "executable header not created first" -msgstr "" +msgstr "no se ha creado primero el encabezado ejecutable" #: ../libelf/elf_error.c:184 msgid "file descriptor disabled" @@ -155,8 +159,8 @@ msgid "invalid section header" msgstr "cabecera de sección inválida" #: ../libelf/elf_error.c:208 -#: ../src/readelf.c:6055 -#: ../src/readelf.c:6156 +#: ../src/readelf.c:6062 +#: ../src/readelf.c:6163 #, c-format msgid "invalid data" msgstr "datos inválidos" @@ -167,7 +171,7 @@ msgstr "codificación de caracteres desconocida" #: ../libelf/elf_error.c:216 msgid "section `sh_size' too small for data" -msgstr "" +msgstr "el tamaño de la sección `sh_size' es demasiado pequeño para los datos " #: ../libelf/elf_error.c:220 msgid "invalid section alignment" @@ -179,7 +183,7 @@ msgstr "tamaño de la entrada de la sección inválida" #: ../libelf/elf_error.c:228 msgid "update() for write on read-only file" -msgstr "" +msgstr "update() para escribir sobre archivo de sólo lectura" #: ../libelf/elf_error.c:232 msgid "no such file" @@ -187,11 +191,11 @@ msgstr "no hay tal archivo" #: ../libelf/elf_error.c:236 msgid "only relocatable files can contain section groups" -msgstr "" +msgstr "solo los archivos realojables pueden contener grupos de sección" #: ../libelf/elf_error.c:241 msgid "program header only allowed in executables, shared objects, and core files" -msgstr "" +msgstr "los encabezados de los programas solo son permitidos en archivos ejecutables, archivos principales, u objetos compartidos" #: ../libelf/elf_error.c:248 msgid "file has no program header" @@ -411,19 +415,19 @@ msgstr "directorio NULL en find_file" #: ../libdwfl/argp-std.c:70 msgid "Find addresses from signatures found in COREFILE" -msgstr "" +msgstr "Busca direcciones desde firmas encontradas en COREFILE" #: ../libdwfl/argp-std.c:72 msgid "Find addresses in files mapped into process PID" -msgstr "" +msgstr "Busca direcciones en archivos mapeados sobre procesos PID" #: ../libdwfl/argp-std.c:74 msgid "Find addresses in files mapped as read from FILE in Linux /proc/PID/maps format" -msgstr "" +msgstr "Busca direcciones en archivos mapeados como leídos desde FILE en formato Linux /proc/PID/maps" #: ../libdwfl/argp-std.c:76 msgid "Find addresses in the running kernel" -msgstr "" +msgstr "Busca direcciones en el kernel que está ejecutándose" #: ../libdwfl/argp-std.c:78 #, fuzzy @@ -432,7 +436,7 @@ msgstr "Reemplazar todos los &espacios con:" #: ../libdwfl/argp-std.c:80 msgid "Search path for separate debuginfo files" -msgstr "" +msgstr "Busca caminos para deferentes arhivos debugingfo" #: ../libdwfl/argp-std.c:163 #, fuzzy @@ -631,7 +635,7 @@ msgstr "`N' sólo tiene significado con las opciones `x' y `d'." #: ../src/ar.c:197 #, c-format msgid "MEMBER parameter required for 'a', 'b', and 'i' modifiers" -msgstr "" +msgstr "Los modificadres 'a', 'b', e 'i', requieren parámetros MEMBR" #: ../src/ar.c:213 #, fuzzy, c-format @@ -665,7 +669,7 @@ msgstr "%s: se requiere un nombre de señalador\n" #: ../src/strip.c:203 #: ../src/ld.c:957 #: ../src/elflint.c:238 -#: ../src/addr2line.c:180 +#: ../src/addr2line.c:185 #: ../src/findtextrel.c:170 #: ../src/elfcmp.c:522 #: ../src/ranlib.c:136 @@ -678,6 +682,9 @@ msgid "" "This is free software; see the source for copying conditions. There is NO\n" "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" msgstr "" +"Copyright (C) %s Red Hat, Inc.\n" +"El siguiente es un software libre; consulte el código para conocer las condiciones de copiado. NO TIENE\n" +"garantía, ni siquiera para SU COMERCIALIZACION o PARA SER USADO CON UN FIN DETERMINADO.\n" #: ../src/ar.c:294 #: ../src/nm.c:258 @@ -686,7 +693,7 @@ msgstr "" #: ../src/strip.c:208 #: ../src/ld.c:962 #: ../src/elflint.c:243 -#: ../src/addr2line.c:185 +#: ../src/addr2line.c:190 #: ../src/findtextrel.c:175 #: ../src/elfcmp.c:527 #: ../src/ranlib.c:141 @@ -860,7 +867,7 @@ msgstr "Extrañamente sólo hay %d particiones definidas.\n" #: ../src/nm.c:79 msgid "Display dynamic symbols instead of normal symbols" -msgstr "" +msgstr "Muestra símbolos dinámicos en lugar de símbolos normales" #: ../src/nm.c:80 #, fuzzy @@ -874,7 +881,7 @@ msgstr "Mostrar sólo cuando el adaptador esté presente" #: ../src/nm.c:83 msgid "Include index for symbols from archive members" -msgstr "" +msgstr "Incluye índices para símbolos desde miembros de archivo" #: ../src/nm.c:85 #: ../src/size.c:66 @@ -888,7 +895,7 @@ msgstr "Imprimir el nombre del archivo de entrada antes de cada símbolo" #: ../src/nm.c:90 msgid "Use the output format FORMAT. FORMAT can be `bsd', `sysv' or `posix'. The default is `sysv'" -msgstr "" +msgstr "Use el formato de salida FORMAT. FORMAT puede ser o bien `bsd', o `sysv', o `posix'. El establecido por defecto es `sysv'" #: ../src/nm.c:92 #, fuzzy @@ -903,7 +910,7 @@ msgstr "lo mismo que --format=posix" #: ../src/nm.c:94 #: ../src/size.c:72 msgid "Use RADIX for printing symbol values" -msgstr "" +msgstr "Utilice RADIX para imprimir valores de símbolo" #: ../src/nm.c:95 #, fuzzy @@ -939,7 +946,7 @@ msgid "Reverse the sense of the sort" msgstr "_Invertir orden" #: ../src/nm.c:103 -#: ../src/addr2line.c:73 +#: ../src/addr2line.c:75 #: ../src/findtextrel.c:75 #: ../src/elfcmp.c:75 #: ../src/strings.c:83 @@ -995,7 +1002,7 @@ msgstr "" #: ../src/size.c:317 #: ../src/size.c:326 #: ../src/size.c:337 -#: ../src/strip.c:1814 +#: ../src/strip.c:1815 #, fuzzy, c-format msgid "while closing '%s'" msgstr "error al cerrar la entrada `%s'" @@ -1058,17 +1065,17 @@ msgstr "No se puede crear el componente de búsqueda" #: ../src/readelf.c:2722 #: ../src/readelf.c:2758 #: ../src/readelf.c:2820 -#: ../src/readelf.c:6305 -#: ../src/readelf.c:7171 -#: ../src/readelf.c:7316 -#: ../src/readelf.c:7385 +#: ../src/readelf.c:6312 +#: ../src/readelf.c:7178 +#: ../src/readelf.c:7323 +#: ../src/readelf.c:7392 #: ../src/size.c:425 #: ../src/size.c:499 #: ../src/strip.c:482 #: ../src/objdump.c:744 -#, c-format +#, fuzzy, c-format msgid "cannot get section header string table index" -msgstr "" +msgstr "no se puede obtener índice de la tabla de la cadena del encabezado de sección" #: ../src/nm.c:766 #, fuzzy, c-format @@ -1107,7 +1114,7 @@ msgstr "no se reconoce el tipo de sección" #: ../src/nm.c:1012 #, c-format msgid "%s: entry size in section `%s' is not what we expect" -msgstr "" +msgstr "%s: el tamaño de la entrada en la sección `%s' no es el que esperábamos " #: ../src/nm.c:1016 #, fuzzy, c-format @@ -1141,8 +1148,9 @@ msgid "Display the ELF file header" msgstr "encabezado del fichero BFD versión %s\n" #: ../src/readelf.c:77 +#, fuzzy msgid "Display histogram of bucket list lengths" -msgstr "" +msgstr "Muestra histograma de la longitud de las listas de almacenamiento" #: ../src/readelf.c:78 #, fuzzy @@ -1174,8 +1182,9 @@ msgid "Display versioning information" msgstr "Mostrar la información de la versión." #: ../src/readelf.c:86 +#, fuzzy msgid "Display DWARF section content. SECTION can be one of abbrev, aranges, frame, info, loc, line, ranges, pubnames, str, macinfo, or exception" -msgstr "" +msgstr "Muestra el contenido de la seccion DWARF. SECTION puede ser algo de lo siguiente: abbrev, aranges, frame, info, loc, line, ranges, pubnames, str, macinfo, or exception" #: ../src/readelf.c:89 #, fuzzy @@ -1184,11 +1193,11 @@ msgstr "_Ocultar notas" #: ../src/readelf.c:91 msgid "Display architecture specific information (if any)" -msgstr "" +msgstr "Muestra información específica de la arquitectura (si es que hubiera)" #: ../src/readelf.c:93 msgid "Dump the uninterpreted contents of SECTION, by number or name" -msgstr "" +msgstr "Descarga los contenidos no interpretados de SECTION, por nombre o número" #: ../src/readelf.c:95 #, fuzzy @@ -1213,7 +1222,7 @@ msgstr "Control del resultado:" #. Short description of program. #: ../src/readelf.c:108 msgid "Print information from ELF file in human-readable form." -msgstr "" +msgstr "Imprime información desde el archivo ELF en una forma comprensible para los seres humanos. " #. Strings for arguments in help texts. #: ../src/readelf.c:112 @@ -1256,7 +1265,7 @@ msgstr "no se puede crear un descriptor interno" #: ../src/readelf.c:460 #, c-format msgid "'%s' is not an archive, cannot print archive index" -msgstr "" +msgstr "'%s' no es un archivo, no se puede imprimir índice de archivo" #: ../src/readelf.c:465 #, fuzzy, c-format @@ -1430,22 +1439,22 @@ msgstr "%s (%s bytes)" #: ../src/readelf.c:769 #, c-format msgid " Size of program header entries: % %s\n" -msgstr "" +msgstr " Tamaño de las entradas en el encabezado del programa: % %s\n" #: ../src/readelf.c:772 #, c-format msgid " Number of program headers entries: %\n" -msgstr "" +msgstr " Cantidad de entradas en los encabezados del programa: %\n" #: ../src/readelf.c:775 #, c-format msgid " Size of section header entries: % %s\n" -msgstr "" +msgstr " Tamaño de las entradas en el encabezado de sección: % %s\n" #: ../src/readelf.c:778 #, c-format msgid " Number of section headers entries: %" -msgstr "" +msgstr " Cantidad de entradas en los encabezados de sección: %" #: ../src/readelf.c:785 #, fuzzy, c-format @@ -1508,7 +1517,7 @@ msgstr "%s: no se puede encontrar la sección %s" #: ../src/readelf.c:871 #: ../src/readelf.c:1025 -#: ../src/readelf.c:7336 +#: ../src/readelf.c:7343 #: ../src/unstrip.c:352 #: ../src/unstrip.c:376 #: ../src/unstrip.c:426 @@ -1905,140 +1914,140 @@ msgstr[1] "" msgid " Library Time Stamp Checksum Version Flags" msgstr "" -#: ../src/readelf.c:2830 +#: ../src/readelf.c:2832 #, c-format msgid "" "\n" "Object attributes section [%2zu] '%s' of % bytes at offset %#0:\n" msgstr "" -#: ../src/readelf.c:2846 +#: ../src/readelf.c:2848 #, fuzzy msgid " Owner Size\n" msgstr " Prop\t\tTamaño datos\tDescripción\n" -#: ../src/readelf.c:2872 +#: ../src/readelf.c:2874 #, fuzzy, c-format msgid " %-13s %4\n" msgstr "Pedido de servidor desconocida %" -#: ../src/readelf.c:2903 +#: ../src/readelf.c:2906 #, fuzzy, c-format msgid " %-4u %12\n" msgstr "12 x 11 in" #. Tag_File -#: ../src/readelf.c:2908 +#: ../src/readelf.c:2911 #, fuzzy, c-format msgid " File: %11\n" msgstr "10 x 11 in" -#: ../src/readelf.c:2943 +#: ../src/readelf.c:2946 #, c-format msgid " %s: %, %s\n" msgstr " %s: %, %s\n" -#: ../src/readelf.c:2946 +#: ../src/readelf.c:2949 #, c-format msgid " %s: %\n" msgstr " %s: %\n" -#: ../src/readelf.c:2949 +#: ../src/readelf.c:2952 #, c-format msgid " %s: %s\n" msgstr " %s: %s\n" -#: ../src/readelf.c:2956 +#: ../src/readelf.c:2959 #, c-format msgid " %u: %\n" msgstr " %u: %\n" -#: ../src/readelf.c:2959 +#: ../src/readelf.c:2962 #, c-format msgid " %u: %s\n" msgstr " %u: %s\n" -#: ../src/readelf.c:2994 +#: ../src/readelf.c:2997 #, c-format msgid "%s+%# <%s+%#>" msgstr "%s+%# <%s+%#>" -#: ../src/readelf.c:2997 +#: ../src/readelf.c:3000 #, c-format msgid "%s+%#0* <%s+%#>" msgstr "%s+%#0* <%s+%#>" -#: ../src/readelf.c:3002 +#: ../src/readelf.c:3005 #, c-format msgid "%# <%s+%#>" msgstr "%# <%s+%#>" -#: ../src/readelf.c:3005 +#: ../src/readelf.c:3008 #, c-format msgid "%#0* <%s+%#>" msgstr "%#0* <%s+%#>" -#: ../src/readelf.c:3011 +#: ../src/readelf.c:3014 #, c-format msgid "%s+%# <%s>" msgstr "%s+%# <%s>" -#: ../src/readelf.c:3014 +#: ../src/readelf.c:3017 #, c-format msgid "%s+%#0* <%s>" msgstr "%s+%#0* <%s>" -#: ../src/readelf.c:3018 +#: ../src/readelf.c:3021 #, c-format msgid "%# <%s>" msgstr "%# <%s>" -#: ../src/readelf.c:3021 +#: ../src/readelf.c:3024 #, c-format msgid "%#0* <%s>" msgstr "%#0* <%s>" -#: ../src/readelf.c:3026 +#: ../src/readelf.c:3029 #, c-format msgid "%s+%#" msgstr "%s+%#" -#: ../src/readelf.c:3029 +#: ../src/readelf.c:3032 #, c-format msgid "%s+%#0*" msgstr "%s+%#0*" -#: ../src/readelf.c:3137 +#: ../src/readelf.c:3140 #, fuzzy, c-format msgid "unknown tag %hx" msgstr "línea %d: etiqueta desconocida: %s\n" -#: ../src/readelf.c:3139 +#: ../src/readelf.c:3142 #, fuzzy, c-format msgid "unknown user tag %hx" msgstr "Valor TAG desconocido: %lx" -#: ../src/readelf.c:3349 +#: ../src/readelf.c:3352 #, fuzzy, c-format msgid "unknown attribute %hx" msgstr "atributo de sección '%c' desconocido" -#: ../src/readelf.c:3352 +#: ../src/readelf.c:3355 #, fuzzy, c-format msgid "unknown user attribute %hx" msgstr "Nombres de atributos de usuario predeterminados:\n" -#: ../src/readelf.c:3398 +#: ../src/readelf.c:3401 #, fuzzy, c-format msgid "unknown form %" msgstr "Valor FORM desconocido: %lx" -#: ../src/readelf.c:4014 +#: ../src/readelf.c:4017 #, fuzzy, c-format msgid "%*s[%4] %s \n" msgstr "Fichero truncado" -#: ../src/readelf.c:4027 +#: ../src/readelf.c:4030 #, c-format msgid "" "\n" @@ -2046,39 +2055,39 @@ msgid "" " [ Code]\n" msgstr "" -#: ../src/readelf.c:4034 +#: ../src/readelf.c:4037 #, c-format msgid "" "\n" "Abbreviation section at offset %:\n" msgstr "" -#: ../src/readelf.c:4047 +#: ../src/readelf.c:4050 #, fuzzy, c-format msgid " *** error while reading abbreviation: %s\n" msgstr "Error al leer el disco." -#: ../src/readelf.c:4063 +#: ../src/readelf.c:4066 #, c-format msgid " [%5u] offset: %, children: %s, tag: %s\n" msgstr "" -#: ../src/readelf.c:4066 +#: ../src/readelf.c:4069 #, fuzzy msgid "yes" msgstr "sí" -#: ../src/readelf.c:4066 +#: ../src/readelf.c:4069 #, fuzzy msgid "no" msgstr "no" -#: ../src/readelf.c:4102 +#: ../src/readelf.c:4105 #, c-format msgid "cannot get .debug_aranges content: %s" msgstr "" -#: ../src/readelf.c:4107 +#: ../src/readelf.c:4110 #, c-format msgid "" "\n" @@ -2089,130 +2098,130 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: ../src/readelf.c:4137 +#: ../src/readelf.c:4140 #, c-format msgid " [%*zu] ???\n" msgstr " [%*zu] ???\n" -#: ../src/readelf.c:4139 +#: ../src/readelf.c:4142 #, c-format msgid " [%*zu] start: %0#*, length: %5, CU DIE offset: %6\n" msgstr "" -#: ../src/readelf.c:4158 +#: ../src/readelf.c:4161 #, c-format msgid "cannot get .debug_ranges content: %s" msgstr "" -#: ../src/readelf.c:4163 -#: ../src/readelf.c:4620 -#: ../src/readelf.c:5265 -#: ../src/readelf.c:5710 -#: ../src/readelf.c:5805 -#: ../src/readelf.c:5977 +#: ../src/readelf.c:4166 +#: ../src/readelf.c:4623 +#: ../src/readelf.c:5272 +#: ../src/readelf.c:5717 +#: ../src/readelf.c:5812 +#: ../src/readelf.c:5984 #, c-format msgid "" "\n" "DWARF section [%2zu] '%s' at offset %#:\n" msgstr "" -#: ../src/readelf.c:4177 -#: ../src/readelf.c:5724 +#: ../src/readelf.c:4180 +#: ../src/readelf.c:5731 #, fuzzy, c-format msgid " [%6tx] \n" msgstr "%F%P: declaración inválida de datos\n" -#: ../src/readelf.c:4199 -#: ../src/readelf.c:5746 +#: ../src/readelf.c:4202 +#: ../src/readelf.c:5753 #, fuzzy, c-format msgid " [%6tx] base address %s\n" msgstr " %8.8lx %8.8lx %8.8lx (dirección base)\n" #. We have an address range entry. #. First address range entry in a list. -#: ../src/readelf.c:4210 +#: ../src/readelf.c:4213 #, c-format msgid " [%6tx] %s..%s\n" msgstr " [%6tx] %s..%s\n" -#: ../src/readelf.c:4212 +#: ../src/readelf.c:4215 #, c-format msgid " %s..%s\n" msgstr " %s..%s\n" -#: ../src/readelf.c:4609 -#: ../src/readelf.c:6043 -#: ../src/readelf.c:6145 +#: ../src/readelf.c:4612 +#: ../src/readelf.c:6050 +#: ../src/readelf.c:6152 #, fuzzy, c-format msgid "cannot get %s content: %s" msgstr "No se puede obtener el nombre de la máquina (hostname)" -#: ../src/readelf.c:4616 +#: ../src/readelf.c:4619 #, c-format msgid "" "\n" "Call frame information section [%2zu] '%s' at offset %#:\n" msgstr "" -#: ../src/readelf.c:4643 -#: ../src/readelf.c:5299 +#: ../src/readelf.c:4646 +#: ../src/readelf.c:5306 #, fuzzy, c-format msgid "invalid data in section [%zu] '%s'" msgstr "La sección BOUNDS en el archivo no es válida." -#: ../src/readelf.c:4665 +#: ../src/readelf.c:4668 #, fuzzy, c-format msgid "" "\n" " [%6tx] Zero terminator\n" msgstr "terminador de linea desconocido" -#: ../src/readelf.c:4739 +#: ../src/readelf.c:4746 #, fuzzy msgid "FDE address encoding: " msgstr "Codificación en una sola pasada" -#: ../src/readelf.c:4745 +#: ../src/readelf.c:4752 #, fuzzy msgid "LSDA pointer encoding: " msgstr "Codificación en una sola pasada" -#: ../src/readelf.c:4790 +#: ../src/readelf.c:4797 #, fuzzy, c-format msgid "invalid augmentation encoding" msgstr "especificada una codificación inválida" -#: ../src/readelf.c:4861 +#: ../src/readelf.c:4868 #, fuzzy, c-format msgid " (offset: %#)" msgstr "Desplazamiento horizontal" -#: ../src/readelf.c:4868 +#: ../src/readelf.c:4875 #, fuzzy, c-format msgid " (end offset: %#)" msgstr " Desplaz Inicio Fin\n" -#: ../src/readelf.c:4895 +#: ../src/readelf.c:4902 #, fuzzy, c-format msgid " %-26sLSDA pointer: %#\n" msgstr "\tNombre de la Tabla de Punteros \t\t" -#: ../src/readelf.c:4941 +#: ../src/readelf.c:4948 #, fuzzy, c-format msgid "cannot get attribute code: %s" msgstr "No se puede inicializar el código de libbonoboui" -#: ../src/readelf.c:4949 +#: ../src/readelf.c:4956 #, fuzzy, c-format msgid "cannot get attribute form: %s" msgstr "No se puede añadir el atributo SMIMEEncKeyPrefs" -#: ../src/readelf.c:4962 +#: ../src/readelf.c:4969 #, fuzzy, c-format msgid "cannot get attribute value: %s" msgstr "No se puede añadir el atributo SMIMEEncKeyPrefs" -#: ../src/readelf.c:5144 +#: ../src/readelf.c:5151 #, c-format msgid "" "\n" @@ -2220,44 +2229,44 @@ msgid "" " [Offset]\n" msgstr "" -#: ../src/readelf.c:5169 +#: ../src/readelf.c:5176 #, c-format msgid "" " Compilation unit at offset %:\n" " Version: %, Abbreviation section offset: %, Address size: %, Offset size: %\n" msgstr "" -#: ../src/readelf.c:5187 +#: ../src/readelf.c:5194 #, c-format msgid "cannot get DIE at offset % in section '%s': %s" msgstr "" -#: ../src/readelf.c:5198 +#: ../src/readelf.c:5205 #, fuzzy, c-format msgid "cannot get DIE offset: %s" msgstr "%s: no se puede desplazar a la posición %s" -#: ../src/readelf.c:5206 +#: ../src/readelf.c:5213 #, c-format msgid "cannot get tag of DIE at offset % in section '%s': %s" msgstr "" -#: ../src/readelf.c:5235 +#: ../src/readelf.c:5242 #, fuzzy, c-format msgid "cannot get next DIE: %s\n" msgstr "No se puede obtener el nombre oficial de la máquina (hostname)" -#: ../src/readelf.c:5242 +#: ../src/readelf.c:5249 #, fuzzy, c-format msgid "cannot get next DIE: %s" msgstr "No se puede obtener el nombre oficial de la máquina (hostname)" -#: ../src/readelf.c:5277 +#: ../src/readelf.c:5284 #, fuzzy, c-format msgid "cannot get line data section data: %s" msgstr "%C: No se puede obtener el contenido de la sección - excepción de auto-importación\n" -#: ../src/readelf.c:5290 +#: ../src/readelf.c:5297 #, fuzzy, c-format msgid "" "\n" @@ -2265,7 +2274,7 @@ msgid "" msgstr "%s: error al escribir en el desplazamiento %s" #. Print what we got so far. -#: ../src/readelf.c:5342 +#: ../src/readelf.c:5349 #, c-format msgid "" "\n" @@ -2281,33 +2290,33 @@ msgid "" "Opcodes:\n" msgstr "" -#: ../src/readelf.c:5361 +#: ../src/readelf.c:5368 #, c-format msgid "invalid data at offset %tu in section [%zu] '%s'" msgstr "" -#: ../src/readelf.c:5376 +#: ../src/readelf.c:5383 #, fuzzy, c-format msgid " [%*] %hhu argument\n" msgid_plural " [%*] %hhu arguments\n" msgstr[0] "argumento inválido en" msgstr[1] "" -#: ../src/readelf.c:5384 +#: ../src/readelf.c:5391 #, fuzzy msgid "" "\n" "Directory table:" msgstr "Tabla del Cortafuegos:" -#: ../src/readelf.c:5400 +#: ../src/readelf.c:5407 msgid "" "\n" "File name table:\n" " Entry Dir Time Size Name" msgstr "" -#: ../src/readelf.c:5429 +#: ../src/readelf.c:5436 #, fuzzy msgid "" "\n" @@ -2316,94 +2325,94 @@ msgstr "" "\n" " Declaraciones de Número de Línea:\n" -#: ../src/readelf.c:5490 +#: ../src/readelf.c:5497 #, c-format msgid " special opcode %u: address+%u = %s, line%+d = %zu\n" msgstr "" -#: ../src/readelf.c:5510 +#: ../src/readelf.c:5517 #, fuzzy, c-format msgid " extended opcode %u: " msgstr " Código de operación extendido %d: " -#: ../src/readelf.c:5515 +#: ../src/readelf.c:5522 #, fuzzy msgid "end of sequence" msgstr "" "Fin de la Secuencia\n" "\n" -#: ../src/readelf.c:5530 +#: ../src/readelf.c:5537 #, fuzzy, c-format msgid "set address to %s\n" msgstr "La dirección de la sección %s se estableció a " -#: ../src/readelf.c:5551 +#: ../src/readelf.c:5558 #, c-format msgid "define new file: dir=%u, mtime=%, length=%, name=%s\n" msgstr "" #. Unknown, ignore it. -#: ../src/readelf.c:5560 +#: ../src/readelf.c:5567 #, fuzzy msgid "unknown opcode" msgstr "código de operación desconocido" #. Takes no argument. -#: ../src/readelf.c:5572 +#: ../src/readelf.c:5579 #, fuzzy msgid " copy" msgstr "&Copiar" -#: ../src/readelf.c:5582 +#: ../src/readelf.c:5589 #, fuzzy, c-format msgid "advance address by %u to %s\n" msgstr " Línea de Avance por %d para %d\n" -#: ../src/readelf.c:5593 +#: ../src/readelf.c:5600 #, fuzzy, c-format msgid " advance line by constant %d to %\n" msgstr " Avanzar el PC por la constante %lu a 0x%lx\n" -#: ../src/readelf.c:5601 +#: ../src/readelf.c:5608 #, fuzzy, c-format msgid " set file to %\n" msgstr "No se pudieron cambiar permisos del archivo temporal" -#: ../src/readelf.c:5611 +#: ../src/readelf.c:5618 #, fuzzy, c-format msgid " set column to %\n" msgstr " Establecer la columna a %lu\n" -#: ../src/readelf.c:5618 +#: ../src/readelf.c:5625 #, fuzzy, c-format msgid " set '%s' to %\n" msgstr "%s fijo los modos del usuario %s a: %s" #. Takes no argument. -#: ../src/readelf.c:5624 +#: ../src/readelf.c:5631 #, fuzzy msgid " set basic block flag" msgstr "\t%d registro de cuenta de bloques básicos\n" -#: ../src/readelf.c:5634 +#: ../src/readelf.c:5641 #, fuzzy, c-format msgid "advance address by constant %u to %s\n" msgstr " Avanzar el PC por %lu para %lx\n" -#: ../src/readelf.c:5650 +#: ../src/readelf.c:5657 #, c-format msgid "advance address by fixed value %u to %s\n" msgstr "" #. Takes no argument. -#: ../src/readelf.c:5659 +#: ../src/readelf.c:5666 #, fuzzy msgid " set prologue end flag" msgstr " Establecer prologue_end a true\n" #. Takes no argument. -#: ../src/readelf.c:5664 +#: ../src/readelf.c:5671 #, fuzzy msgid " set epilogue begin flag" msgstr " Establecer epilogue_begin a true\n" @@ -2411,45 +2420,45 @@ msgstr " Establecer epilogue_begin a true\n" #. This is a new opcode the generator but not we know about. #. Read the parameters associated with it but then discard #. everything. Read all the parameters for this opcode. -#: ../src/readelf.c:5673 +#: ../src/readelf.c:5680 #, c-format msgid " unknown opcode with % parameter:" msgid_plural " unknown opcode with % parameters:" msgstr[0] "" msgstr[1] "" -#: ../src/readelf.c:5705 +#: ../src/readelf.c:5712 #, c-format msgid "cannot get .debug_loc content: %s" msgstr "" #. First entry in a list. -#: ../src/readelf.c:5760 +#: ../src/readelf.c:5767 #, c-format msgid " [%6tx] %s..%s" msgstr " [%6tx] %s..%s" -#: ../src/readelf.c:5762 +#: ../src/readelf.c:5769 #, c-format msgid " %s..%s" msgstr " %s..%s" -#: ../src/readelf.c:5815 +#: ../src/readelf.c:5822 #, c-format msgid "cannot get macro information section data: %s" msgstr "" -#: ../src/readelf.c:5894 +#: ../src/readelf.c:5901 #, c-format msgid "%*s*** non-terminated string at end of section" msgstr "" -#: ../src/readelf.c:5962 +#: ../src/readelf.c:5969 #, c-format msgid " [%5d] DIE offset: %6, CU DIE offset: %6, name: %s\n" msgstr "" -#: ../src/readelf.c:6001 +#: ../src/readelf.c:6008 #, c-format msgid "" "\n" @@ -2457,48 +2466,48 @@ msgid "" " %*s String\n" msgstr "" -#: ../src/readelf.c:6015 +#: ../src/readelf.c:6022 #, fuzzy, c-format msgid " *** error while reading strings: %s\n" msgstr "Error al leer el disco." -#: ../src/readelf.c:6035 +#: ../src/readelf.c:6042 #, c-format msgid "" "\n" "Call frame search table section [%2zu] '.eh_frame_hdr':\n" msgstr "" -#: ../src/readelf.c:6137 +#: ../src/readelf.c:6144 #, c-format msgid "" "\n" "Exception handling table section [%2zu] '.gcc_except_table':\n" msgstr "" -#: ../src/readelf.c:6160 +#: ../src/readelf.c:6167 #, fuzzy, c-format msgid " LPStart encoding: %#x " msgstr ": codificación desconocida" -#: ../src/readelf.c:6172 +#: ../src/readelf.c:6179 #, fuzzy, c-format msgid " TType encoding: %#x " msgstr ": codificación desconocida" -#: ../src/readelf.c:6186 +#: ../src/readelf.c:6193 #, fuzzy, c-format msgid " Call site encoding: %#x " msgstr "Codificación en una sola pasada" -#: ../src/readelf.c:6199 +#: ../src/readelf.c:6206 #, fuzzy msgid "" "\n" " Call site table:" msgstr "[:][:]" -#: ../src/readelf.c:6213 +#: ../src/readelf.c:6220 #, c-format msgid "" " [%4u] Call site start: %#\n" @@ -2507,142 +2516,146 @@ msgid "" " Action: %u\n" msgstr "" -#: ../src/readelf.c:6273 +#: ../src/readelf.c:6280 #, fuzzy, c-format msgid "invalid TType encoding" msgstr "especificada una codificación inválida" -#: ../src/readelf.c:6296 +#: ../src/readelf.c:6303 #, c-format msgid "cannot get debug context descriptor: %s" msgstr "" -#: ../src/readelf.c:6431 -#: ../src/readelf.c:7009 +#: ../src/readelf.c:6438 +#: ../src/readelf.c:7016 #, c-format msgid "cannot convert core note data: %s" msgstr "" -#: ../src/readelf.c:6736 +#: ../src/readelf.c:6743 #, fuzzy, c-format msgid "" "\n" "%*s... ..." msgstr "Mostrar horas del día." -#: ../src/readelf.c:6778 +#: ../src/readelf.c:6785 #, fuzzy, c-format msgid "unable to handle register number %d" msgstr "No se puede asignar un número de partición." -#: ../src/readelf.c:6925 -#: ../src/readelf.c:6949 +#: ../src/readelf.c:6932 +#, fuzzy, c-format +msgid "cannot get register info: %s" +msgstr "No se pudo registrar el servicio" + +#: ../src/readelf.c:6956 #, fuzzy, c-format msgid "cannot register info: %s" msgstr "No se pudo registrar el servicio" -#: ../src/readelf.c:7107 +#: ../src/readelf.c:7114 #, fuzzy msgid " Owner Data size Type\n" msgstr "Escribir un tamaño en puntos." -#: ../src/readelf.c:7125 +#: ../src/readelf.c:7132 #, fuzzy, c-format msgid " %-13.*s %9 %s\n" msgstr "13 lugares" -#: ../src/readelf.c:7156 +#: ../src/readelf.c:7163 #, fuzzy, c-format msgid "cannot get content of note section: %s" msgstr "%C: No se puede obtener el contenido de la sección - excepción de auto-importación\n" -#: ../src/readelf.c:7183 +#: ../src/readelf.c:7190 #, c-format msgid "" "\n" "Note section [%2zu] '%s' of % bytes at offset %#0:\n" msgstr "" -#: ../src/readelf.c:7206 +#: ../src/readelf.c:7213 #, c-format msgid "" "\n" "Note segment of % bytes at offset %#0:\n" msgstr "" -#: ../src/readelf.c:7252 +#: ../src/readelf.c:7259 #, c-format msgid "" "\n" "Section [%Zu] '%s' has no data to dump.\n" msgstr "" -#: ../src/readelf.c:7258 -#: ../src/readelf.c:7280 +#: ../src/readelf.c:7265 +#: ../src/readelf.c:7287 #, c-format msgid "cannot get data for section [%Zu] '%s': %s" msgstr "" -#: ../src/readelf.c:7262 +#: ../src/readelf.c:7269 #, c-format msgid "" "\n" "Hex dump of section [%Zu] '%s', % bytes at offset %#0:\n" msgstr "" -#: ../src/readelf.c:7275 +#: ../src/readelf.c:7282 #, fuzzy, c-format msgid "" "\n" "Section [%Zu] '%s' is empty.\n" msgstr " La historia de órdenes está vacía " -#: ../src/readelf.c:7284 +#: ../src/readelf.c:7291 #, c-format msgid "" "\n" "String section [%Zu] '%s' contains % bytes at offset %#0:\n" msgstr "" -#: ../src/readelf.c:7331 +#: ../src/readelf.c:7338 #, fuzzy, c-format msgid "" "\n" "section [%lu] does not exist" msgstr "El anclaje HTML %s no existe." -#: ../src/readelf.c:7357 +#: ../src/readelf.c:7364 #, fuzzy, c-format msgid "" "\n" "section '%s' does not exist" msgstr ": ¡el archivo no existe!" -#: ../src/readelf.c:7418 +#: ../src/readelf.c:7425 #, fuzzy, c-format msgid "cannot get symbol index of archive '%s': %s" msgstr "%s: no se pueden obtener las direcciones del archivo" -#: ../src/readelf.c:7421 +#: ../src/readelf.c:7428 #, fuzzy, c-format msgid "" "\n" "Archive '%s' has no symbol index\n" msgstr "la directiva .ent no tiene símbolo" -#: ../src/readelf.c:7425 +#: ../src/readelf.c:7432 #, c-format msgid "" "\n" "Index of archive '%s' has %Zu entries:\n" msgstr "" -#: ../src/readelf.c:7443 +#: ../src/readelf.c:7450 #, c-format msgid "cannot extract member at offset %Zu in '%s': %s" msgstr "" -#: ../src/readelf.c:7448 +#: ../src/readelf.c:7455 #, fuzzy, c-format msgid "Archive member '%s' contains:\n" msgstr "Comprueba si el archivador contiene errores" @@ -2815,68 +2828,68 @@ msgstr "%s: no se puede crear un nuevo fichero de preferencias predeterminadas\n msgid "illformed file '%s'" msgstr "Error de archivo" -#: ../src/strip.c:867 -#: ../src/strip.c:954 +#: ../src/strip.c:868 +#: ../src/strip.c:955 #, fuzzy, c-format msgid "while generating output file: %s" msgstr "error al cerrar el fichero de salida" -#: ../src/strip.c:927 -#: ../src/strip.c:1666 +#: ../src/strip.c:928 +#: ../src/strip.c:1667 #, fuzzy, c-format msgid "%s: error while creating ELF header: %s" msgstr "Error al crear el enlace hacia %B." -#: ../src/strip.c:941 +#: ../src/strip.c:942 #, fuzzy, c-format msgid "while preparing output for '%s'" msgstr "no se puede abrir `%s' para salida: %s" -#: ../src/strip.c:992 -#: ../src/strip.c:1048 +#: ../src/strip.c:993 +#: ../src/strip.c:1049 #, fuzzy, c-format msgid "while create section header section: %s" msgstr "no se puede crear el encabezado precompilado %s: %m" -#: ../src/strip.c:998 +#: ../src/strip.c:999 #, fuzzy, c-format msgid "cannot allocate section data: %s" msgstr "no se puede asignar espacio para los datos del símbolo" -#: ../src/strip.c:1057 +#: ../src/strip.c:1058 #, fuzzy, c-format msgid "while create section header string table: %s" msgstr "falló la asignación de la tabla de cadenas de cabeceras de sección" -#: ../src/strip.c:1591 -#: ../src/strip.c:1688 +#: ../src/strip.c:1592 +#: ../src/strip.c:1689 #, fuzzy, c-format msgid "while writing '%s': %s" msgstr "%s: al escribir el resultado %s: %m:" -#: ../src/strip.c:1602 +#: ../src/strip.c:1603 #, fuzzy, c-format msgid "while creating '%s'" msgstr "Error al crear thread" -#: ../src/strip.c:1614 +#: ../src/strip.c:1615 #, c-format msgid "while computing checksum for debug information" msgstr "" -#: ../src/strip.c:1674 +#: ../src/strip.c:1675 #, fuzzy, c-format msgid "%s: error while reading the file: %s" msgstr "Error al leer archivo." -#: ../src/strip.c:1720 -#: ../src/strip.c:1727 +#: ../src/strip.c:1721 +#: ../src/strip.c:1728 #, fuzzy, c-format msgid "error while finishing '%s': %s" msgstr "Error al copiar «%B»." -#: ../src/strip.c:1750 -#: ../src/strip.c:1807 +#: ../src/strip.c:1751 +#: ../src/strip.c:1808 #, c-format msgid "cannot set access and modification date of '%s'" msgstr "" @@ -5171,33 +5184,37 @@ msgstr "Mostrar los nombres de las áreas de trabajo en lugar del contenido" msgid "Also show symbol or section names" msgstr "" +#: ../src/addr2line.c:73 +msgid "Treat addresses as offsets relative to NAME section." +msgstr "" + #. Short description of program. -#: ../src/addr2line.c:82 +#: ../src/addr2line.c:84 msgid "Locate source files and line information for ADDRs (in a.out by default)." msgstr "" #. Strings for arguments in help texts. -#: ../src/addr2line.c:86 +#: ../src/addr2line.c:88 #, fuzzy msgid "[ADDR...]" msgstr " Dir: " -#: ../src/addr2line.c:387 +#: ../src/addr2line.c:405 #, c-format msgid "Section syntax requires exactly one module" msgstr "" -#: ../src/addr2line.c:410 +#: ../src/addr2line.c:428 #, c-format msgid "offset %# lies outside section '%s'" msgstr "" -#: ../src/addr2line.c:428 +#: ../src/addr2line.c:461 #, fuzzy, c-format msgid "cannot find symbol '%s'" msgstr "no se puede encontrar el preprocesador de C: %s \n" -#: ../src/addr2line.c:433 +#: ../src/addr2line.c:466 #, c-format msgid "offset %# lies outside contents of '%s'" msgstr "" -- cgit v1.2.1 From a7cb532d98e02aae86940ec7c121ce16ced806ee Mon Sep 17 00:00:00 2001 From: logan Date: Fri, 24 Apr 2009 19:50:38 +0000 Subject: Sending translation for Spanish --- po/es.po | 298 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 154 insertions(+), 144 deletions(-) diff --git a/po/es.po b/po/es.po index 40066379..0b16333a 100644 --- a/po/es.po +++ b/po/es.po @@ -2085,7 +2085,7 @@ msgstr "no" #: ../src/readelf.c:4105 #, c-format msgid "cannot get .debug_aranges content: %s" -msgstr "" +msgstr "no se ha podido obtener contenido de .debug_aranges: %s" #: ../src/readelf.c:4110 #, c-format @@ -2111,7 +2111,7 @@ msgstr "" #: ../src/readelf.c:4161 #, c-format msgid "cannot get .debug_ranges content: %s" -msgstr "" +msgstr "no se ha podido obtener contenido de .debug_ranges: %s" #: ../src/readelf.c:4166 #: ../src/readelf.c:4623 @@ -2237,9 +2237,9 @@ msgid "" msgstr "" #: ../src/readelf.c:5194 -#, c-format +#, fuzzy, c-format msgid "cannot get DIE at offset % in section '%s': %s" -msgstr "" +msgstr "no se ha podido obtener DIE en offset % en la sección '%s': %s" #: ../src/readelf.c:5205 #, fuzzy, c-format @@ -2247,9 +2247,9 @@ msgid "cannot get DIE offset: %s" msgstr "%s: no se puede desplazar a la posición %s" #: ../src/readelf.c:5213 -#, c-format +#, fuzzy, c-format msgid "cannot get tag of DIE at offset % in section '%s': %s" -msgstr "" +msgstr "no se ha podido obtener etiqueta de DIE en offset % en la sección '%s': %s" #: ../src/readelf.c:5242 #, fuzzy, c-format @@ -2291,9 +2291,9 @@ msgid "" msgstr "" #: ../src/readelf.c:5368 -#, c-format +#, fuzzy, c-format msgid "invalid data at offset %tu in section [%zu] '%s'" -msgstr "" +msgstr "datos inválidos en offset %ty en la sección [%zu] '%s'" #: ../src/readelf.c:5383 #, fuzzy, c-format @@ -2326,9 +2326,9 @@ msgstr "" " Declaraciones de Número de Línea:\n" #: ../src/readelf.c:5497 -#, c-format +#, fuzzy, c-format msgid " special opcode %u: address+%u = %s, line%+d = %zu\n" -msgstr "" +msgstr " special opcode %u: address+%u = %s, line%+d = %zu\n" #: ../src/readelf.c:5517 #, fuzzy, c-format @@ -2348,9 +2348,9 @@ msgid "set address to %s\n" msgstr "La dirección de la sección %s se estableció a " #: ../src/readelf.c:5558 -#, c-format +#, fuzzy, c-format msgid "define new file: dir=%u, mtime=%, length=%, name=%s\n" -msgstr "" +msgstr "definir nuevo archivo: dir=%u, mtime=%, length=%, name=%s\n" #. Unknown, ignore it. #: ../src/readelf.c:5567 @@ -2403,7 +2403,7 @@ msgstr " Avanzar el PC por %lu para %lx\n" #: ../src/readelf.c:5657 #, c-format msgid "advance address by fixed value %u to %s\n" -msgstr "" +msgstr "dirección avanzada arreglando el valor %u a %s\n" #. Takes no argument. #: ../src/readelf.c:5666 @@ -2430,7 +2430,7 @@ msgstr[1] "" #: ../src/readelf.c:5712 #, c-format msgid "cannot get .debug_loc content: %s" -msgstr "" +msgstr "no es posible obtener contenido de .debug_loc: %s" #. First entry in a list. #: ../src/readelf.c:5767 @@ -2446,17 +2446,17 @@ msgstr " %s..%s" #: ../src/readelf.c:5822 #, c-format msgid "cannot get macro information section data: %s" -msgstr "" +msgstr "no es posible obtener datos de la sección de macro información: %s" #: ../src/readelf.c:5901 #, c-format msgid "%*s*** non-terminated string at end of section" -msgstr "" +msgstr "%*s*** cadena no finalizada al final de la sección" #: ../src/readelf.c:5969 -#, c-format +#, fuzzy, c-format msgid " [%5d] DIE offset: %6, CU DIE offset: %6, name: %s\n" -msgstr "" +msgstr " [%5d] DIE offset: %6, CU DIE offset: %6, nombre: %s\n" #: ../src/readelf.c:6008 #, c-format @@ -2522,15 +2522,15 @@ msgid "invalid TType encoding" msgstr "especificada una codificación inválida" #: ../src/readelf.c:6303 -#, c-format +#, fuzzy, c-format msgid "cannot get debug context descriptor: %s" -msgstr "" +msgstr "no es posible obtener un descriptor de contexto de debug: %s" #: ../src/readelf.c:6438 #: ../src/readelf.c:7016 -#, c-format +#, fuzzy, c-format msgid "cannot convert core note data: %s" -msgstr "" +msgstr "no es posible convertir datos de la nota proncipal: %s" #: ../src/readelf.c:6743 #, fuzzy, c-format @@ -2594,7 +2594,7 @@ msgstr "" #: ../src/readelf.c:7287 #, c-format msgid "cannot get data for section [%Zu] '%s': %s" -msgstr "" +msgstr "no es posible obtener datos de la sección [%Zu] '%s': %s" #: ../src/readelf.c:7269 #, c-format @@ -2651,9 +2651,9 @@ msgid "" msgstr "" #: ../src/readelf.c:7450 -#, c-format +#, fuzzy, c-format msgid "cannot extract member at offset %Zu in '%s': %s" -msgstr "" +msgstr "no es posible extraer miembro en offset %Zu in '%s': %s" #: ../src/readelf.c:7455 #, fuzzy, c-format @@ -2662,7 +2662,7 @@ msgstr "Comprueba si el archivador contiene errores" #: ../src/size.c:68 msgid "Use the output format FORMAT. FORMAT can be `bsd' or `sysv'. The default is `bsd'" -msgstr "" +msgstr "Utilice el formato de salida FORMAT. FORMAT puede set tanto `bsd' como `sysv'. El establecido por defecto es `bsd'" #: ../src/size.c:70 #, fuzzy @@ -2691,20 +2691,20 @@ msgstr "lo mismo que --format=posix" #: ../src/size.c:78 msgid "Similar to `--format=sysv' output but in one line" -msgstr "" +msgstr "Similar a la salida `--format=sysv' pero en una sola línea" #: ../src/size.c:82 msgid "Print size and permission flags for loadable segments" -msgstr "" +msgstr "Imprime el tamaño y las marcas de permiso para los segmentos posibles de ser cargados" #: ../src/size.c:83 msgid "Display the total sizes (bsd only)" -msgstr "" +msgstr "Muestra el tamaño total (bsd solamente)" #. Short description of program. #: ../src/size.c:88 msgid "List section sizes of FILEs (a.out by default)." -msgstr "" +msgstr "Lista los tamaños de sección de FILEs (por defecto a.out). " #: ../src/size.c:269 #, fuzzy, c-format @@ -2733,8 +2733,9 @@ msgid "(TOTALS)\n" msgstr "calcular totales" #: ../src/strip.c:73 +#, fuzzy msgid "Place stripped output into FILE" -msgstr "" +msgstr "Coloca la salida obtenida en FILE" #: ../src/strip.c:74 #, fuzzy @@ -2773,7 +2774,7 @@ msgstr " Remueve símbolos y secciones de los ficheros\n" #: ../src/strip.c:185 #, c-format msgid "Only one input file allowed together with '-o' and '-f'" -msgstr "" +msgstr "Solo se permite ingresar un archivo junto con '-o' y '-f'" #: ../src/strip.c:221 #, fuzzy, c-format @@ -2794,7 +2795,7 @@ msgstr "se desconoce la opción -m%s= especificada: '%s'" #: ../src/strip.c:259 #, c-format msgid "-R option supports only .comment section" -msgstr "" +msgstr "la opción -R es soportada sólo en la sección .comment" #: ../src/strip.c:297 #: ../src/strip.c:321 @@ -2808,9 +2809,9 @@ msgid "while opening '%s'" msgstr "mientras se abría %s" #: ../src/strip.c:349 -#, c-format +#, fuzzy, c-format msgid "%s: cannot use -o or -f when stripping archive" -msgstr "" +msgstr "%s: no puede utilzarse -o o -f cuando se extrae un archivo" #: ../src/strip.c:447 #, fuzzy, c-format @@ -2892,7 +2893,7 @@ msgstr "Error al copiar «%B»." #: ../src/strip.c:1808 #, c-format msgid "cannot set access and modification date of '%s'" -msgstr "" +msgstr "no es posible establecer acceso y fecha de modificación de '%s'" #: ../src/ld.c:87 #, fuzzy @@ -2903,11 +2904,11 @@ msgstr "" #: ../src/ld.c:89 msgid "Include whole archives in the output from now on." -msgstr "" +msgstr "A partir de ahora incluye archivos completos en la salida." #: ../src/ld.c:91 msgid "Stop including the whole arhives in the output." -msgstr "" +msgstr "Deja de incluir archivos completos en la salida." #: ../src/ld.c:92 #: ../src/ld.c:106 @@ -2933,11 +2934,12 @@ msgstr "RUTA" #: ../src/ld.c:96 msgid "Add PATH to list of directories files are searched in." -msgstr "" +msgstr "Agrega PATH a la lista de los directorios en los que se realiza la búsqueda" #: ../src/ld.c:98 +#, fuzzy msgid "Only set DT_NEEDED for following dynamic libs if actually used" -msgstr "" +msgstr "Solo se define DT_NEEDED para las librerías dinámicas siguientes, están siendo utilizadas" #: ../src/ld.c:100 #, fuzzy @@ -2946,7 +2948,7 @@ msgstr "Siempre establece DT_NEEDED para las siguientes bibliotecas dinámicas" #: ../src/ld.c:102 msgid "Ignore LD_LIBRARY_PATH environment variable." -msgstr "" +msgstr "Ignora la variable de entorno LD_LIBRARY_PATH." #: ../src/ld.c:105 #, fuzzy @@ -2962,7 +2964,7 @@ msgstr " -o Coloca la salida en el \n" #: ../src/ld.c:109 msgid "Object is marked to not use default search path at runtime." -msgstr "" +msgstr "Los objetos son marcados para que no utilicen el camino de búsqueda establecido por defecto en el momento de su ejecución." #: ../src/ld.c:111 #, fuzzy @@ -2971,23 +2973,23 @@ msgstr "Apaga --whole-archive" #: ../src/ld.c:112 msgid "Default rules of extracting from archive; weak references are not enough." -msgstr "" +msgstr "Reglas establecidas por defecto para extraer desde el archivo; las referencias débiles no son suficientes." #: ../src/ld.c:116 msgid "Weak references cause extraction from archive." -msgstr "" +msgstr "Referencias débiles causan extracción desde archivo." #: ../src/ld.c:118 msgid "Allow multiple definitions; first is used." -msgstr "" +msgstr "Permite definiciones múltiples; es utilizada la primera." #: ../src/ld.c:120 msgid "Disallow/allow undefined symbols in DSOs." -msgstr "" +msgstr "Habilita/deshabilita símbolos indefinidos en DSOs." #: ../src/ld.c:123 msgid "Object requires immediate handling of $ORIGIN." -msgstr "" +msgstr "Los objetos requieren manipulación inmediata de $ORIGIN." #: ../src/ld.c:125 #, fuzzy @@ -3001,23 +3003,24 @@ msgstr "La constante nombrada '%s' en %L no puede ser un objeto EQUIVALENCE" #: ../src/ld.c:129 msgid "Mark object to be initialized first." -msgstr "" +msgstr "Marca el objeto para ser inicializado primero." #: ../src/ld.c:131 +#, fuzzy msgid "Enable/disable lazy-loading flag for following dependencies." -msgstr "" +msgstr "Activa/desactiva marca lazy-loading para las siguientes dependencias." #: ../src/ld.c:133 msgid "Mark object as not loadable with 'dlopen'." -msgstr "" +msgstr "Marca el objeto como no cargable con 'dlopen'" #: ../src/ld.c:135 msgid "Ignore/record dependencies on unused DSOs." -msgstr "" +msgstr "Ignora/registra dependencias sobre DSOs no utilizados." #: ../src/ld.c:137 msgid "Generated DSO will be a system library." -msgstr "" +msgstr "El DSO generado será una librería del sistema. " #: ../src/ld.c:138 #, fuzzy @@ -3055,8 +3058,9 @@ msgid "Strip debugging symbols." msgstr "Descarta los símbolos de depuración" #: ../src/ld.c:149 +#, fuzzy msgid "Assume pagesize for the target system to be SIZE." -msgstr "" +msgstr "Asume que será SIZE el pagesize para el objeto del sistema." #: ../src/ld.c:151 #, fuzzy @@ -3079,8 +3083,9 @@ msgid "Generate relocatable object." msgstr "Genera salida reubicable" #: ../src/ld.c:159 +#, fuzzy msgid "Causes symbol not assigned to a version be reduced to local." -msgstr "" +msgstr "Hace que un símbolo no asinado a ninguna versión sea reducido a local." #: ../src/ld.c:160 #, fuzzy @@ -3108,15 +3113,17 @@ msgstr "" #: ../src/ld.c:171 msgid "Create .eh_frame_hdr section" -msgstr "" +msgstr "Crea una sección .eh_frame_hdr" #: ../src/ld.c:173 +#, fuzzy msgid "Set hash style to sysv, gnu or both." -msgstr "" +msgstr "Establece el hash style a sysv, gnu o ambos." #: ../src/ld.c:175 +#, fuzzy msgid "Generate build ID note (md5, sha1 (default), uuid)." -msgstr "" +msgstr "Crea una nota del ID de compilación (md5, sha1 (por defecto), uuid)." #: ../src/ld.c:177 #, fuzzy @@ -3135,7 +3142,7 @@ msgstr "Rastrea la apertura de ficheros" #: ../src/ld.c:181 msgid "Trade speed for less memory usage" -msgstr "" +msgstr "Intercambia velocidad por menor utilización de la memoria" #: ../src/ld.c:182 #, fuzzy @@ -3168,8 +3175,9 @@ msgstr "|NOMBRE|usa el juego de caracteres NOMBRE" #. Short description of program. #: ../src/ld.c:197 +#, fuzzy msgid "Combine object and archive files." -msgstr "" +msgstr "Combina objeto y archivos de almacenamiento." #. Strings for arguments in help texts. #: ../src/ld.c:200 @@ -3232,7 +3240,7 @@ msgstr "estilo de numeración de cuerpo inválido: %s" #: ../src/ld.c:785 #, c-format msgid "More than one output file name given." -msgstr "" +msgstr "Se ha dado más de un nombre de arhivo de salido. " #: ../src/ld.c:802 #, fuzzy, c-format @@ -3257,7 +3265,7 @@ msgstr "El parámetro '%s' es desconocido" #: ../src/ld.c:1150 #, c-format msgid "could not find input file to determine output file format" -msgstr "" +msgstr "no se ha podido encontrar un archivo de entrada que determine el formato del archivo de salida" #: ../src/ld.c:1152 #, fuzzy, c-format @@ -3284,19 +3292,19 @@ msgid "cannot create string table" msgstr "<índice de la tabla de cadenas: %3ld>" #: ../src/ldgeneric.c:255 -#, c-format +#, fuzzy, c-format msgid "cannot load ld backend library '%s': %s" -msgstr "" +msgstr "no se ha podido cargar la librería ld backend '%s': %s" #: ../src/ldgeneric.c:265 -#, c-format +#, fuzzy, c-format msgid "cannot find init function in ld backend library '%s': %s" -msgstr "" +msgstr "no se ha podido encontrar la función init en la librería ld backend '%s': %s" #: ../src/ldgeneric.c:310 #, c-format msgid "%s listed more than once as input" -msgstr "" +msgstr "%s listado más de una vez como entrada" #: ../src/ldgeneric.c:424 #, fuzzy, c-format @@ -3337,14 +3345,14 @@ msgstr "no se puede obtener el grupo de login de un UID numérico" #. despite the SHF_GROUP flag. This is an error in the input #. file. #: ../src/ldgeneric.c:840 -#, c-format +#, fuzzy, c-format msgid "%s: section '%s' with group flag set does not belong to any group" -msgstr "" +msgstr "%s: la sección '%s' con el grupo definir marca no pertenece a ningún grupo" #: ../src/ldgeneric.c:885 #, c-format msgid "%s: section [%2d] '%s' is not in the correct section group" -msgstr "" +msgstr "%s: la sección [%2d] '%s' no se encuentra en el grupo de sección correcto" #. This should never happen. #: ../src/ldgeneric.c:1156 @@ -3361,22 +3369,22 @@ msgstr "Versión de ABI del fichero ELF inválida" #: ../src/ldgeneric.c:1250 #, c-format msgid "%s: only files of type ET_REL might contain section groups" -msgstr "" +msgstr "%s: solo archivos de tipo ET_REL pueden contener grupos de sección" #: ../src/ldgeneric.c:1302 #, c-format msgid "%s: cannot determine signature of section group [%2zd] '%s': %s" -msgstr "" +msgstr "%s: no es posible determinar la firma del grupo de sección [%2zd] '%s': %s " #: ../src/ldgeneric.c:1314 #, c-format msgid "%s: cannot get content of section group [%2zd] '%s': %s'" -msgstr "" +msgstr "%s: no es posible obtener el contenido de la sección del grupo [%2zd] '%s': %s'" #: ../src/ldgeneric.c:1328 #, c-format msgid "%s: group member %zu of section group [%2zd] '%s' has too high index: %" -msgstr "" +msgstr "%s el miembro del grupo %zu del grupo de sección [%2zd] '%s' posee el índice demsiado alto: %" #: ../src/ldgeneric.c:1350 #, fuzzy, c-format @@ -3386,7 +3394,7 @@ msgstr "%s tiene un tipo de fichero desconocido" #: ../src/ldgeneric.c:1729 #, c-format msgid "cannot get descriptor for ELF file (%s:%d): %s\n" -msgstr "" +msgstr "no es posible obtener descriptor para el archivo ELF (%s:%d): %s\n" #: ../src/ldgeneric.c:1899 #, fuzzy, c-format @@ -3401,17 +3409,17 @@ msgstr "El archivo de zona no puede ser removido desde este tipo de zona." #: ../src/ldgeneric.c:2032 #, c-format msgid "%s: input file incompatible with ELF machine type %s\n" -msgstr "" +msgstr "%s: el archivo ingresado es incompatible con una máquina ELF tipo %s\n" #: ../src/ldgeneric.c:2044 #, c-format msgid "%s: cannot get section header string table index: %s\n" -msgstr "" +msgstr "%s: no se ha podido obtener un índice para la tabla de la cadena del encabezado de la sección: %s\n" #: ../src/ldgeneric.c:2073 #, c-format msgid "cannot use DSO '%s' when generating relocatable object file" -msgstr "" +msgstr "no es posible utilizar DSO '%s' al general un archivo de objeto realojable" #: ../src/ldgeneric.c:2158 #, fuzzy, c-format @@ -3429,12 +3437,12 @@ msgstr "símbolo indefinido `%s' en la operación" #: ../src/ldgeneric.c:2702 #, c-format msgid "cannot create ELF descriptor for output file: %s" -msgstr "" +msgstr "no es posible crear un descriptor ELF para el archivo de salida: %s" #: ../src/ldgeneric.c:2709 #, c-format msgid "could not create ELF header for output file: %s" -msgstr "" +msgstr "no es posible crear un encabezado ELF para el archivo de salida: %s" #: ../src/ldgeneric.c:3224 #: ../src/ldgeneric.c:3294 @@ -3453,14 +3461,14 @@ msgid "cannot create section for output file: %s" msgstr "no se puede crear el fichero de salida `%s' para la categoría `%s'" #: ../src/ldgeneric.c:3444 -#, c-format +#, fuzzy, c-format msgid "address computation expression contains variable '%s'" -msgstr "" +msgstr "las expresiones de dirección en lenguaje de computación contienen la variable '%s'" #: ../src/ldgeneric.c:3489 -#, c-format +#, fuzzy, c-format msgid "argument '%' of ALIGN in address computation expression is no power of two" -msgstr "" +msgstr "el argumento '%' de ALIGN en direcciones de expresiones computacionales es no más poderoso que dos " #: ../src/ldgeneric.c:3684 #, fuzzy, c-format @@ -3470,17 +3478,17 @@ msgstr "%P: aviso: no se puede encontrar el símbolo de entrada %s; se usa por d #: ../src/ldgeneric.c:3690 #, c-format msgid "no entry symbol specified: defaulting to %#0*" -msgstr "" +msgstr "no se ha especificado una entrada de símbolo: estableciendo por defecto a %#0*" #: ../src/ldgeneric.c:3920 -#, c-format +#, fuzzy, c-format msgid "cannot create GNU hash table section for output file: %s" -msgstr "" +msgstr "no es posible crear una sección para la tabla GNU hash del archivo de salida: %s" #: ../src/ldgeneric.c:4071 #, c-format msgid "cannot create hash table section for output file: %s" -msgstr "" +msgstr "no es posible crear una sección para la tabla hash del archivo de salida: %s" #: ../src/ldgeneric.c:4114 #, fuzzy, c-format @@ -3490,17 +3498,17 @@ msgstr "%F%P: no se puede crear la tabla de división de secciones para %s\n" #: ../src/ldgeneric.c:4191 #, c-format msgid "cannot convert section data to file format: %s" -msgstr "" +msgstr "no es posible convertir los datos de la sección en formato de archivo: %s" #: ../src/ldgeneric.c:4200 #, c-format msgid "cannot convert section data to memory format: %s" -msgstr "" +msgstr "no es posible convertir datos de la sección en formato de memoria: %s" #: ../src/ldgeneric.c:4261 #, c-format msgid "cannot read enough data for UUID" -msgstr "" +msgstr "no es posible leer suficientes datos para el UUID" #: ../src/ldgeneric.c:4358 #: ../src/ldgeneric.c:4379 @@ -3508,13 +3516,13 @@ msgstr "" #: ../src/ldgeneric.c:6062 #, c-format msgid "cannot create symbol table for output file: %s" -msgstr "" +msgstr "no es posible crear tabla de símbolo para el comando de salida: %s" #: ../src/ldgeneric.c:5300 #: ../src/ldgeneric.c:5852 -#, c-format +#, fuzzy, c-format msgid "section index too large in dynamic symbol table" -msgstr "" +msgstr "el índice de la sección es demasiado extenso en la tabla dinámica de símbolo" #: ../src/ldgeneric.c:5745 #, fuzzy, c-format @@ -3524,7 +3532,7 @@ msgstr "%F%P: no se puede crear la tabla de división de secciones para %s\n" #: ../src/ldgeneric.c:5818 #, c-format msgid "cannot create dynamic symbol table for output file: %s" -msgstr "" +msgstr "no es posible crear tabla dinámica de símbolo para el archivo de salida: %s" #: ../src/ldgeneric.c:5994 #, fuzzy, c-format @@ -3555,9 +3563,9 @@ msgid "while determining file layout: %s" msgstr "Error al crear el archivo %B." #: ../src/ldgeneric.c:6388 -#, c-format +#, fuzzy, c-format msgid "internal error: non-nobits section follows nobits section" -msgstr "" +msgstr "error interno: sección non-nobits a continuación de sección nobits" #: ../src/ldgeneric.c:6925 #, fuzzy, c-format @@ -3593,7 +3601,7 @@ msgstr "no se puede generar el fichero de salida" #: ../src/ldgeneric.c:7011 #, c-format msgid "WARNING: temporary output file overwritten before linking finished" -msgstr "" +msgstr "AVISO: archivo de salida temporar sobreescrito antes que haya concluido el enlazamiento" #. This cannot be implemented generally. There should have been a #. machine dependent implementation and we should never have arrived @@ -3630,9 +3638,9 @@ msgid "cannot allocate GOTPLT section: %s" msgstr "No se puede asignar espacio para el búfer" #: ../src/i386_ld.c:661 -#, c-format +#, fuzzy, c-format msgid "initial-executable TLS relocation cannot be used " -msgstr "" +msgstr "no es posible utilizar el realojamiento del TLS ejecutable en el inicio" #: ../src/ldscript.y:178 #, fuzzy @@ -3650,36 +3658,38 @@ msgid "while reading linker script '%s': %s at line %d" msgstr "Se encontró fin de archivo en la línea %d, antes de terminar de leer los datos." #: ../src/ldscript.y:745 -#, c-format +#, fuzzy, c-format msgid "symbol '%s' in declared both local and global for unnamed version" -msgstr "" +msgstr "el símbolo '%s' en declarado tanto local como global para la versión no identificada" #: ../src/ldscript.y:747 -#, c-format +#, fuzzy, c-format msgid "symbol '%s' in declared both local and global for version '%s'" -msgstr "" +msgstr "el símbolo '%s' en declarado tanto local como global para la versión '%s'" #: ../src/ldscript.y:767 #: ../src/ldscript.y:774 -#, c-format +#, fuzzy, c-format msgid "default visibility set as local and global" -msgstr "" +msgstr "la visibilidad establecida por defecto está definida tanto local como global" #: ../src/elflint.c:71 msgid "Be extremely strict, flag level 2 features." -msgstr "" +msgstr "Sea extremadamente estricto, recursos de marca de nivel 2." #: ../src/elflint.c:72 msgid "Do not print anything if successful" -msgstr "" +msgstr "No imprime nada si es exitoso" #: ../src/elflint.c:73 +#, fuzzy msgid "Binary is a separate debuginfo file" -msgstr "" +msgstr "Binario es un archivo debuginfo diferente " #: ../src/elflint.c:75 +#, fuzzy msgid "Binary has been created with GNU ld and is therefore known to be broken in certain ways" -msgstr "" +msgstr "Binario ha sido creado con GNU Id y por lo tanto es sabido que puede ser roto de determinadas maneras" #. Short description of program. #: ../src/elflint.c:81 @@ -3702,9 +3712,9 @@ msgid "No errors" msgstr " NO SE HAN ENCONTRADO ERRORES\n" #: ../src/elflint.c:301 -#, c-format +#, fuzzy, c-format msgid " error while freeing sub-ELF descriptor: %s\n" -msgstr "" +msgstr " error al intentar liberar descriptor sub-ELF: %s\n" #. We cannot do anything. #: ../src/elflint.c:309 @@ -3715,17 +3725,17 @@ msgstr "No es un fichero ELF - tiene los bytes mágicos erróneos en el inicio\n #: ../src/elflint.c:368 #, c-format msgid "e_ident[%d] == %d is no known class\n" -msgstr "" +msgstr "e_ident[%d] == %d es una clase desconocida\n" #: ../src/elflint.c:373 #, c-format msgid "e_ident[%d] == %d is no known data encoding\n" -msgstr "" +msgstr "e_ident[%d] == %d es una codificación de datos desconocida\n" #: ../src/elflint.c:377 #, c-format msgid "unknown ELF header version number e_ident[%d] == %d\n" -msgstr "" +msgstr "número de versión de encabezado ELF desconocido e_ident[%d] == %d\n" #: ../src/elflint.c:382 #, fuzzy, c-format @@ -3763,14 +3773,14 @@ msgid "invalid program header offset\n" msgstr "Operando inválido para `OFFSET'" #: ../src/elflint.c:417 -#, c-format +#, fuzzy, c-format msgid "executables and DSOs cannot have zero program header offset\n" -msgstr "" +msgstr "tanto los ejecutables como los DSOs no pueden tener offset de encabezado de programa cero\n" #: ../src/elflint.c:421 #, c-format msgid "invalid number of program header entries\n" -msgstr "" +msgstr "cantidad no válida de entradas del encabezado del programa\n" #: ../src/elflint.c:429 #, fuzzy, c-format @@ -3780,12 +3790,12 @@ msgstr "falló la asignación de la tabla de cadenas de cabeceras de sección" #: ../src/elflint.c:432 #, c-format msgid "section header table must be present\n" -msgstr "" +msgstr "debe encontrarse presente una tabla de encabezado de sección\n" #: ../src/elflint.c:446 #, c-format msgid "invalid number of section header table entries\n" -msgstr "" +msgstr "cantidad no válida de entradas en la tabla del encabezado de sección\n" #: ../src/elflint.c:463 #, fuzzy, c-format @@ -3801,41 +3811,41 @@ msgstr "%P%F: sintaxis inválida en los interruptores\n" #: ../src/elflint.c:492 #, c-format msgid "invalid ELF header size: %hd\n" -msgstr "" +msgstr "tamaño inválido del encabezado ELF: %hd\n" #: ../src/elflint.c:478 #: ../src/elflint.c:495 #, c-format msgid "invalid program header size: %hd\n" -msgstr "" +msgstr "tamaño inválido del encabezado del programa: %hd\n" #: ../src/elflint.c:481 #: ../src/elflint.c:498 #, c-format msgid "invalid program header position or size\n" -msgstr "" +msgstr "tamaño o posición no válidos del encabezado del programa\n" #: ../src/elflint.c:484 #: ../src/elflint.c:501 #, c-format msgid "invalid section header size: %hd\n" -msgstr "" +msgstr "tamaño inválido del encabezado de sección: %hd\n" #: ../src/elflint.c:487 #: ../src/elflint.c:504 #, c-format msgid "invalid section header position or size\n" -msgstr "" +msgstr "tamaño o posición no válidos del encabezado de sección\n" #: ../src/elflint.c:548 -#, c-format +#, fuzzy, c-format msgid "section [%2d] '%s': section with SHF_GROUP flag set not part of a section group\n" -msgstr "" +msgstr "sección [%2d] '%s': sección definida con la marca SHF_GROUP no es parte de una sección de grupo\n" #: ../src/elflint.c:552 -#, c-format +#, fuzzy, c-format msgid "section [%2d] '%s': section group [%2zu] '%s' does not preceed group member\n" -msgstr "" +msgstr "sección [%2d] '%s': el grupo de sección [%2zu] '%s' no precede a ningún miembro de grupo\n" #: ../src/elflint.c:568 #: ../src/elflint.c:1393 @@ -3855,17 +3865,17 @@ msgstr "%C: No se puede obtener el contenido de la sección - excepción de auto #: ../src/elflint.c:1559 #, c-format msgid "section [%2d] '%s': referenced as string table for section [%2d] '%s' but type is not SHT_STRTAB\n" -msgstr "" +msgstr "sección [%2d] '%s': está referenciado como una tabla de cadena para la sección [%2d] '%s' pero no es de tipo SHT_STRTAB\n" #: ../src/elflint.c:604 #, c-format msgid "section [%2d] '%s': symbol table cannot have more than one extended index section\n" -msgstr "" +msgstr "sección [%2d] '%s': la tabla de símbolo no puede tener más de una sección de índice extendido\n" #: ../src/elflint.c:615 #, c-format msgid "section [%2u] '%s': entry size is does not match ElfXX_Sym\n" -msgstr "" +msgstr "sección [%2u] '%s': el tamaño de la entrada no cincide con ElfXX_Sym\n" #: ../src/elflint.c:624 #, fuzzy, c-format @@ -3878,55 +3888,55 @@ msgstr "no se puede definir el símbolo `%s' en la sección absoluta" #: ../src/elflint.c:638 #: ../src/elflint.c:641 #: ../src/elflint.c:644 -#, c-format +#, fuzzy, c-format msgid "section [%2d] '%s': '%s' in zeroth entry not zero\n" -msgstr "" +msgstr "sección [%2d] '%s': '%s' en la entrada zeroth no es igual cero\n" #: ../src/elflint.c:647 -#, c-format +#, fuzzy, c-format msgid "section [%2d] '%s': XINDEX for zeroth entry not zero\n" -msgstr "" +msgstr "sección [%2d] '%s': XINDEX en la entrada zeroth no es igual cero\n" #: ../src/elflint.c:657 #, c-format msgid "section [%2d] '%s': cannot get symbol %zu: %s\n" -msgstr "" +msgstr "sección [%2d] '%s': no es posible obtener el símbolo %zu: %s\n" #: ../src/elflint.c:666 #, c-format msgid "section [%2d] '%s': symbol %zu: invalid name value\n" -msgstr "" +msgstr "sección [%2d] '%s': símbolo %zu: valor de nombre inválido\n" #: ../src/elflint.c:679 -#, c-format +#, fuzzy, c-format msgid "section [%2d] '%s': symbol %zu: too large section index but no extended section index section\n" -msgstr "" +msgstr "sección [%2d] '%s': símbolo %zu: el índice de sección es demasiado extenso, y no no existe una sección para índice de sección extendido\n" #: ../src/elflint.c:685 #, c-format msgid "section [%2d] '%s': symbol %zu: XINDEX used for index which would fit in st_shndx (%)\n" -msgstr "" +msgstr "sección [%2d] '%s': símbolol %zu: XINDEX es utilizado para índice que pueda caber en st_shndx (%)\n" #. || sym->st_shndx > SHN_HIRESERVE always false #: ../src/elflint.c:697 #, c-format msgid "section [%2d] '%s': symbol %zu: invalid section index\n" -msgstr "" +msgstr "sección [%2d] '%s': símbolo %zu: índice de sección inválido\n" #: ../src/elflint.c:705 #, c-format msgid "section [%2d] '%s': symbol %zu: unknown type\n" -msgstr "" +msgstr "sección [%2d] '%s': símbolo %zu: tipo desconocido\n" #: ../src/elflint.c:709 #, c-format msgid "section [%2d] '%s': symbol %zu: unknown symbol binding\n" -msgstr "" +msgstr "sección [%2d] '%s': símbolo %zu: asociación de símbolo desconocida\n" #: ../src/elflint.c:717 #, c-format msgid "section [%2d] '%s': symbol %zu: COMMON only allowed in relocatable files\n" -msgstr "" +msgstr "sección [%2d] '%s': símbolo %zu: COMMON solo es permitido en archivos realojables\n" #: ../src/elflint.c:721 #, c-format -- cgit v1.2.1