summaryrefslogtreecommitdiff
path: root/bfd/po
diff options
context:
space:
mode:
authorNelson Chu <nelson.chu@sifive.com>2020-05-20 17:22:48 +0100
committerNick Clifton <nickc@redhat.com>2020-05-20 17:22:48 +0100
commit8f595e9b4fd0a3a74d53ddffd69f2825627ae5c6 (patch)
tree3668cb480143c82412d9050ad70d4a0e2786a7e7 /bfd/po
parent41977d16e4ee5b9ad01abf2cfce6edbfb6d79541 (diff)
downloadbinutils-gdb-8f595e9b4fd0a3a74d53ddffd69f2825627ae5c6.tar.gz
[PATCH v2 0/9] RISC-V: Support version controling for ISA standard extensions and CSR
1. Remove the -mriscv-isa-version and --with-riscv-isa-version options. We can still use -march to choose the version for each extensions, so there is no need to add these. 2. Change the arguments of options from [1p9|1p9p1|...] to [1.9|1.9.1|...]. Unlike the architecture string has specified by spec, ther is no need to do the same thing for options. 3. Spilt the patches to reduce the burdens of review. [PATCH 3/7] RISC-V: Support new GAS options and configure options to set ISA versions to [PATCH v2 3/9] RISC-V: Support GAS option -misa-spec to set ISA versions [PATCH v2 4/9] RISC-V: Support configure options to set ISA versions by default. [PATCH 4/7] RISC-V: Support version checking for CSR according to privilege version. to [PATCH v2 5/9] RISC-V: Support version checking for CSR according to privilege spec version. [PATCH v2 6/9] RISC-V: Support configure option to choose the privilege spec version. 4. Use enum class rather than string to compare the choosen ISA spec in opcodes/riscv-opc.c. The behavior is same as comparing the choosen privilege spec. include * opcode/riscv.h: Include "bfd.h" to support bfd_boolean. (enum riscv_isa_spec_class): New enum class. All supported ISA spec belong to one of the class (struct riscv_ext_version): New structure holds version information for the specific ISA. * opcode/riscv-opc.h (DECLARE_CSR): There are two version information, define_version and abort_version. The define_version means which privilege spec is started to define the CSR, and the abort_version means which privilege spec is started to abort the CSR. If the CSR is valid for the newest spec, then the abort_version should be PRIV_SPEC_CLASS_DRAFT. (DECLARE_CSR_ALIAS): Same as DECLARE_CSR, but only for the obselete CSR. * opcode/riscv.h (enum riscv_priv_spec_class): New enum class. Define the current supported privilege spec versions. (struct riscv_csr_extra): Add new fields to store more information about the CSR. We use these information to find the suitable CSR address when user choosing a specific privilege spec. binutils * dwarf.c: Updated since DECLARE_CSR is changed. opcodes * riscv-opc.c (riscv_ext_version_table): The table used to store all information about the supported spec and the corresponding ISA versions. Currently, only Zicsr is supported to verify the correctness of Z sub extension settings. Others will be supported in the future patches. (struct isa_spec_t, isa_specs): List for all supported ISA spec classes and the corresponding strings. (riscv_get_isa_spec_class): New function. Get the corresponding ISA spec class by giving a ISA spec string. * riscv-opc.c (struct priv_spec_t): New structure. (struct priv_spec_t priv_specs): List for all supported privilege spec classes and the corresponding strings. (riscv_get_priv_spec_class): New function. Get the corresponding privilege spec class by giving a spec string. (riscv_get_priv_spec_name): New function. Get the corresponding privilege spec string by giving a CSR version class. * riscv-dis.c: Updated since DECLARE_CSR is changed. * riscv-dis.c: Add new disassembler option -Mpriv-spec to dump the CSR according to the chosen version. Build a hash table riscv_csr_hash to store the valid CSR for the chosen pirv verison. Dump the direct CSR address rather than it's name if it is invalid. (parse_riscv_dis_option_without_args): New function. Parse the options without arguments. (parse_riscv_dis_option): Call parse_riscv_dis_option_without_args to parse the options without arguments first, and then handle the options with arguments. Add the new option -Mpriv-spec, which has argument. * riscv-dis.c (print_riscv_disassembler_options): Add description about the new OBJDUMP option. ld * testsuite/ld-riscv-elf/attr-merge-arch-01.d: Updated priv attributes according to the -mpriv-spec option. * testsuite/ld-riscv-elf/attr-merge-arch-02.d: Likewise. * testsuite/ld-riscv-elf/attr-merge-arch-03.d: Likewise. * testsuite/ld-riscv-elf/attr-merge-priv-spec-a.s: Likewise. * testsuite/ld-riscv-elf/attr-merge-priv-spec-b.s: Likewise. * testsuite/ld-riscv-elf/attr-merge-priv-spec.d: Likewise. * testsuite/ld-riscv-elf/attr-merge-stack-align.d: Likewise. * testsuite/ld-riscv-elf/attr-merge-strict-align-01.d: Likewise. * testsuite/ld-riscv-elf/attr-merge-strict-align-02.d: Likewise. * testsuite/ld-riscv-elf/attr-merge-strict-align-03.d: Likewise. * testsuite/ld-riscv-elf/attr-merge-strict-align-04.d: Likewise. * testsuite/ld-riscv-elf/attr-merge-strict-align-05.d: Likewise. bfd * elfxx-riscv.h (riscv_parse_subset_t): Add new callback function get_default_version. It is used to find the default version for the specific extension. * elfxx-riscv.c (riscv_parsing_subset_version): Remove the parameters default_major_version and default_minor_version. Add new bfd_boolean parameter *use_default_version. Set it to TRUE if we need to call the callback rps->get_default_version to find the default version. (riscv_parse_std_ext): Call rps->get_default_version if we fail to find the default version in riscv_parsing_subset_version, and then call riscv_add_subset to add the subset into subset list. (riscv_parse_prefixed_ext): Likewise. (riscv_std_z_ext_strtab): Support Zicsr extensions. * elfnn-riscv.c (riscv_merge_std_ext): Use strcasecmp to compare the strings rather than characters. riscv_merge_arch_attr_info): The callback function get_default_version is only needed for assembler, so set it to NULL int the linker. * elfxx-riscv.c (riscv_estimate_digit): Remove the static. * elfxx-riscv.h: Updated. gas * testsuite/gas/riscv/priv-reg-fail-read-only-01.s: Updated. * config/tc-riscv.c (default_arch_with_ext, default_isa_spec): Static variables which are used to set the ISA extensions. You can use -march (or ELF build attributes) and -misa-spec to set them, respectively. (ext_version_hash): The hash table used to handle the extensions with versions. (init_ext_version_hash): Initialize the ext_version_hash according to riscv_ext_version_table. (riscv_get_default_ext_version): The callback function of riscv_parse_subset_t. According to the choosed ISA spec, get the default version for the specific extension. (riscv_set_arch): Set the callback function. (enum options, struct option md_longopts): Add new option -misa-spec. (md_parse_option): Do not call riscv_set_arch for -march. We will call it later in riscv_after_parse_args. Call riscv_get_isa_spec_class to set default_isa_spec class. (riscv_after_parse_args): Call init_ext_version_hash to initialize the ext_version_hash, and then call riscv_set_arch to set the architecture with versions according to default_arch_with_ext. * testsuite/gas/riscv/attribute-02.d: Set 0p0 as default version for x extensions. * testsuite/gas/riscv/attribute-03.d: Likewise. * testsuite/gas/riscv/attribute-09.d: New testcase. For i-ext, we already set it's version to 2p1 by march, so no need to use the default 2p2 version. For m-ext, we do not set the version by -march and ELF arch attribute, so set the default 2p0 to it. For zicsr, it is not defined in ISA spec 2p2, so set 0p0 to it. * testsuite/gas/riscv/attribute-10.d: New testcase. The version of zicsr is 2p0 according to ISA spec 20191213. * config/tc-riscv.c (DEFAULT_RISCV_ARCH_WITH_EXT) (DEFAULT_RISCV_ISA_SPEC): Default configure option settings. You can set them by configure options --with-arch and --with-isa-spec, respectively. (riscv_set_default_isa_spec): New function used to set the default ISA spec. (md_parse_option): Call riscv_set_default_isa_spec rather than call riscv_get_isa_spec_class directly. (riscv_after_parse_args): If the -isa-spec is not set, then we set the default ISA spec according to DEFAULT_RISCV_ISA_SPEC by calling riscv_set_default_isa_spec. * testsuite/gas/riscv/attribute-01.d: Add -misa-spec=2.2, since the --with-isa-spec may be set to different ISA spec. * testsuite/gas/riscv/attribute-02.d: Likewise. * testsuite/gas/riscv/attribute-03.d: Likewise. * testsuite/gas/riscv/attribute-04.d: Likewise. * testsuite/gas/riscv/attribute-05.d: Likewise. * testsuite/gas/riscv/attribute-06.d: Likewise. * testsuite/gas/riscv/attribute-07.d: Likewise. * configure.ac: Add configure options, --with-arch and --with-isa-spec. * configure: Regenerated. * config.in: Regenerated. * config/tc-riscv.c (default_priv_spec): Static variable which is used to check if the CSR is valid for the chosen privilege spec. You can use -mpriv-spec to set it. (enum reg_class): We now get the CSR address from csr_extra_hash rather than reg_names_hash. Therefore, move RCLASS_CSR behind RCLASS_MAX. (riscv_init_csr_hashes): Only need to initialize one hash table csr_extra_hash. (riscv_csr_class_check): Change the return type to void. Don't check the ISA dependency if -mcsr-check isn't set. (riscv_csr_version_check): New function. Check and find the CSR address from csr_extra_hash, according to default_priv_spec. Report warning for the invalid CSR if -mcsr-check is set. (reg_csr_lookup_internal): Updated. (reg_lookup_internal): Likewise. (md_begin): Updated since DECLARE_CSR and DECLARE_CSR_ALIAS are changed. (enum options, struct option md_longopts): Add new GAS option -mpriv-spec. (md_parse_option): Call riscv_set_default_priv_version to set default_priv_spec. (riscv_after_parse_args): If -mpriv-spec isn't set, then set the default privilege spec to the newest one. (enum riscv_csr_class, struct riscv_csr_extra): Move them to include/opcode/riscv.h. * testsuite/gas/riscv/priv-reg-fail-fext.d: This test case just want to check the ISA dependency for CSR, so fix the spec version by adding -mpriv-spec=1.11. * testsuite/gas/riscv/priv-reg-fail-fext.l: Likewise. There are some version warnings for the test case. * gas/testsuite/gas/riscv/priv-reg-fail-read-only-01.d: Likewise. * gas/testsuite/gas/riscv/priv-reg-fail-read-only-01.l: Likewise. * gas/testsuite/gas/riscv/priv-reg-fail-read-only-02.d: Likewise. * gas/testsuite/gas/riscv/priv-reg-fail-rv32-only.d: Likewise. * gas/testsuite/gas/riscv/priv-reg-fail-rv32-only.l: Likewise. * gas/testsuite/gas/riscv/priv-reg-fail-version-1p9.d: New test case. Check whether the CSR is valid when privilege version 1.9 is choosed. * gas/testsuite/gas/riscv/priv-reg-fail-version-1p9.l: Likewise. * gas/testsuite/gas/riscv/priv-reg-fail-version-1p9p1.d: New test case. Check whether the CSR is valid when privilege version 1.9.1 is choosed. * gas/testsuite/gas/riscv/priv-reg-fail-version-1p9p1.l: Likewise. * gas/testsuite/gas/riscv/priv-reg-fail-version-1p10.d: New test case. Check whether the CSR is valid when privilege version 1.10 is choosed. * gas/testsuite/gas/riscv/priv-reg-fail-version-1p10.l: Likewise. * gas/testsuite/gas/riscv/priv-reg-fail-version-1p11.d: New test case. Check whether the CSR is valid when privilege version 1.11 is choosed. * gas/testsuite/gas/riscv/priv-reg-fail-version-1p11.l: Likewise. * config/tc-riscv.c (DEFAULT_RISCV_ISA_SPEC): Default configure option setting. You can set it by configure option --with-priv-spec. (riscv_set_default_priv_spec): New function used to set the default privilege spec. (md_parse_option): Call riscv_set_default_priv_spec rather than call riscv_get_priv_spec_class directly. (riscv_after_parse_args): If -mpriv-spec isn't set, then we set the default privilege spec according to DEFAULT_RISCV_PRIV_SPEC by calling riscv_set_default_priv_spec. * testsuite/gas/riscv/csr-dw-regnums.d: Add -mpriv-spec=1.11, since the --with-priv-spec may be set to different privilege spec. * testsuite/gas/riscv/priv-reg.d: Likewise. * configure.ac: Add configure option --with-priv-spec. * configure: Regenerated. * config.in: Regenerated. * config/tc-riscv.c (explicit_attr): Rename explicit_arch_attr to explicit_attr. Set it to TRUE if any ELF attribute is found. (riscv_set_default_priv_spec): Try to set the default_priv_spec if the priv attributes are set. (md_assemble): Set the default_priv_spec according to the priv attributes when we start to assemble instruction. (riscv_write_out_attrs): Rename riscv_write_out_arch_attr to riscv_write_out_attrs. Update the arch and priv attributes. If we don't set the corresponding ELF attributes, then try to output the default ones. (riscv_set_public_attributes): If any ELF attribute or -march-attr options is set (explicit_attr is TRUE), then call riscv_write_out_attrs to update the arch and priv attributes. (s_riscv_attribute): Make sure all arch and priv attributes are set before any instruction. * testsuite/gas/riscv/attribute-01.d: Update the priv attributes if any ELF attribute or -march-attr is set. If the priv attributes are not set, then try to update them by the default setting (-mpriv-spec or --with-priv-spec). * testsuite/gas/riscv/attribute-02.d: Likewise. * testsuite/gas/riscv/attribute-03.d: Likewise. * testsuite/gas/riscv/attribute-04.d: Likewise. * testsuite/gas/riscv/attribute-06.d: Likewise. * testsuite/gas/riscv/attribute-07.d: Likewise. * testsuite/gas/riscv/attribute-08.d: Likewise. * testsuite/gas/riscv/attribute-09.d: Likewise. * testsuite/gas/riscv/attribute-10.d: Likewise. * testsuite/gas/riscv/attribute-unknown.d: Likewise. * testsuite/gas/riscv/attribute-05.d: Likewise. Also, the priv spec set by priv attributes must be supported. * testsuite/gas/riscv/attribute-05.s: Likewise. * testsuite/gas/riscv/priv-reg-fail-version-1p9.d: Likewise. Updated priv attributes according to the -mpriv-spec option. * testsuite/gas/riscv/priv-reg-fail-version-1p9p1.d: Likewise. * testsuite/gas/riscv/priv-reg-fail-version-1p10.d: Likewise. * testsuite/gas/riscv/priv-reg-fail-version-1p11.d: Likewise. * testsuite/gas/riscv/priv-reg.d: Removed. * testsuite/gas/riscv/priv-reg-version-1p9.d: New test case. Dump the CSR according to the priv spec 1.9. * testsuite/gas/riscv/priv-reg-version-1p9p1.d: New test case. Dump the CSR according to the priv spec 1.9.1. * testsuite/gas/riscv/priv-reg-version-1p10.d: New test case. Dump the CSR according to the priv spec 1.10. * testsuite/gas/riscv/priv-reg-version-1p11.d: New test case. Dump the CSR according to the priv spec 1.11. * config/tc-riscv.c (md_show_usage): Add descriptions about the new GAS options. * doc/c-riscv.texi: Likewise.
Diffstat (limited to 'bfd/po')
-rw-r--r--bfd/po/bfd.pot3115
1 files changed, 1660 insertions, 1455 deletions
diff --git a/bfd/po/bfd.pot b/bfd/po/bfd.pot
index ef909fa0698..3b4f0afba35 100644
--- a/bfd/po/bfd.pot
+++ b/bfd/po/bfd.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: bug-binutils@gnu.org\n"
-"POT-Creation-Date: 2020-01-18 13:58+0000\n"
+"POT-Creation-Date: 2020-05-20 15:51+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,53 +18,58 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-#: aout-cris.c:200
+#: aout-cris.c:196
#, c-format
msgid "%pB: unsupported relocation type exported: %#x"
msgstr ""
-#: aout-cris.c:244
+#: aout-cris.c:242
#, c-format
msgid "%pB: unsupported relocation type imported: %#x"
msgstr ""
-#: aout-cris.c:256
+#: aout-cris.c:254
#, c-format
msgid "%pB: bad relocation record imported: %d"
msgstr ""
-#: aoutx.h:1265 aoutx.h:1618 pdp11.c:1139 pdp11.c:1392
+#: aoutx.h:1254 aoutx.h:1602 pdp11.c:1190 pdp11.c:1439
#, c-format
msgid "%pB: can not represent section `%pA' in a.out object file format"
msgstr ""
-#: aoutx.h:1582 pdp11.c:1364
+#: aoutx.h:1566 pdp11.c:1411
#, c-format
msgid ""
"%pB: can not represent section for symbol `%s' in a.out object file format"
msgstr ""
-#: aoutx.h:1585 vms-alpha.c:7957
+#: aoutx.h:1569 vms-alpha.c:8011
msgid "*unknown*"
msgstr ""
-#: aoutx.h:1721
+#: aoutx.h:1705
#, c-format
msgid "%pB: invalid string offset %<PRIu64> >= %<PRIu64>"
msgstr ""
-#: aoutx.h:2412 aoutx.h:2430
+#: aoutx.h:1952
+#, c-format
+msgid "%pB: unsupported AOUT relocation size: %d"
+msgstr ""
+
+#: aoutx.h:2401 aoutx.h:2419
#, c-format
msgid "%pB: attempt to write out unknown reloc type"
msgstr ""
-#: aoutx.h:4085
+#: aoutx.h:4077
#, c-format
msgid "%pB: unsupported relocation type"
msgstr ""
#. Unknown relocation.
-#: aoutx.h:4406 coff-alpha.c:601 coff-alpha.c:1514 coff-rs6000.c:2776
+#: aoutx.h:4398 coff-alpha.c:601 coff-alpha.c:1514 coff-rs6000.c:2758
#: coff-sh.c:504 coff-tic4x.c:184 coff-tic54x.c:279 elf-hppa.h:798
#: elf-hppa.h:826 elf-m10200.c:226 elf-m10300.c:812 elf32-arc.c:536
#: elf32-arm.c:1985 elf32-avr.c:964 elf32-bfin.c:1062 elf32-bfin.c:4693
@@ -77,30 +82,28 @@ msgstr ""
#: elf32-m68hc12.c:510 elf32-m68k.c:354 elf32-mcore.c:354 elf32-mcore.c:440
#: elf32-mep.c:389 elf32-metag.c:878 elf32-microblaze.c:692
#: elf32-microblaze.c:969 elf32-mips.c:2229 elf32-moxie.c:137
-#: elf32-msp430.c:651 elf32-msp430.c:661 elf32-mt.c:241 elf32-nds32.c:3240
-#: elf32-nds32.c:3266 elf32-nds32.c:5177 elf32-nios2.c:3015 elf32-or1k.c:1037
+#: elf32-msp430.c:653 elf32-msp430.c:663 elf32-mt.c:241 elf32-nds32.c:3240
+#: elf32-nds32.c:3266 elf32-nds32.c:5177 elf32-nios2.c:3026 elf32-or1k.c:1044
#: elf32-pj.c:326 elf32-ppc.c:901 elf32-ppc.c:914 elf32-pru.c:423
#: elf32-rl78.c:291 elf32-rx.c:313 elf32-rx.c:322 elf32-s12z.c:296
#: elf32-s390.c:347 elf32-sh.c:440 elf32-spu.c:163 elf32-tic6x.c:1508
#: elf32-tic6x.c:1518 elf32-tic6x.c:1537 elf32-tic6x.c:1547 elf32-tic6x.c:2642
-#: elf32-tilepro.c:803 elf32-v850.c:1898 elf32-v850.c:1920 elf32-v850.c:4268
+#: elf32-tilepro.c:803 elf32-v850.c:1898 elf32-v850.c:1920 elf32-v850.c:4273
#: elf32-vax.c:290 elf32-visium.c:481 elf32-wasm32.c:105 elf32-xc16x.c:250
-#: elf32-xgate.c:418 elf32-xstormy16.c:395 elf32-xtensa.c:464
-#: elf32-xtensa.c:498 elf32-z80.c:320 elf64-alpha.c:1113 elf64-alpha.c:4102
-#: elf64-alpha.c:4250 elf64-bpf.c:322 elf64-ia64-vms.c:254
-#: elf64-ia64-vms.c:3438 elf64-mips.c:3958 elf64-mips.c:3974 elf64-mmix.c:1264
-#: elf64-nfp.c:238 elf64-ppc.c:1014 elf64-ppc.c:1349 elf64-ppc.c:1358
-#: elf64-s390.c:328 elf64-s390.c:378 elf64-x86-64.c:285 elfn32-mips.c:3786
+#: elf32-xgate.c:418 elf32-xstormy16.c:395 elf32-xtensa.c:502
+#: elf32-xtensa.c:536 elf32-z80.c:331 elf64-alpha.c:1113 elf64-alpha.c:4117
+#: elf64-alpha.c:4265 elf64-bpf.c:322 elf64-ia64-vms.c:254
+#: elf64-ia64-vms.c:3437 elf64-mips.c:3958 elf64-mips.c:3974 elf64-mmix.c:1264
+#: elf64-nfp.c:238 elf64-ppc.c:1015 elf64-ppc.c:1350 elf64-ppc.c:1359
+#: elf64-s390.c:328 elf64-s390.c:378 elf64-x86-64.c:282 elfn32-mips.c:3786
#: elfxx-ia64.c:324 elfxx-riscv.c:955 elfxx-sparc.c:589 elfxx-sparc.c:639
-#: elfxx-tilegx.c:912 elfxx-tilegx.c:952
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:2215
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:2313 elf32-ia64.c:214
-#: elf32-ia64.c:3862 elf64-ia64.c:214 elf64-ia64.c:3862
+#: elfxx-tilegx.c:912 elfxx-tilegx.c:952 elfnn-aarch64.c:2215
+#: elfnn-aarch64.c:2313 elfnn-ia64.c:214 elfnn-ia64.c:3861
#, c-format
msgid "%pB: unsupported relocation type %#x"
msgstr ""
-#: aoutx.h:5432 pdp11.c:3685
+#: aoutx.h:5425 pdp11.c:3725
#, c-format
msgid "%pB: relocatable link from %s to %s not supported"
msgstr ""
@@ -110,141 +113,141 @@ msgstr ""
msgid "%pB: cannot allocate memory for local GOT entries"
msgstr ""
-#: archive.c:2227
+#: archive.c:2250
msgid "warning: writing archive was slow: rewriting timestamp"
msgstr ""
-#: archive.c:2294 archive.c:2355 elflink.c:4437 linker.c:1428
+#: archive.c:2317 archive.c:2378 elflink.c:4539 linker.c:1428
#, c-format
msgid "%pB: plugin needed to handle lto object"
msgstr ""
-#: archive.c:2585
+#: archive.c:2608
msgid "Reading archive file mod timestamp"
msgstr ""
-#: archive.c:2609
+#: archive.c:2632
msgid "Writing updated armap timestamp"
msgstr ""
-#: bfd.c:673
+#: bfd.c:677
msgid "no error"
msgstr ""
-#: bfd.c:674
+#: bfd.c:678
msgid "system call error"
msgstr ""
-#: bfd.c:675
+#: bfd.c:679
msgid "invalid bfd target"
msgstr ""
-#: bfd.c:676
+#: bfd.c:680
msgid "file in wrong format"
msgstr ""
-#: bfd.c:677
+#: bfd.c:681
msgid "archive object file in wrong format"
msgstr ""
-#: bfd.c:678
+#: bfd.c:682
msgid "invalid operation"
msgstr ""
-#: bfd.c:679
+#: bfd.c:683
msgid "memory exhausted"
msgstr ""
-#: bfd.c:680
+#: bfd.c:684
msgid "no symbols"
msgstr ""
-#: bfd.c:681
+#: bfd.c:685
msgid "archive has no index; run ranlib to add one"
msgstr ""
-#: bfd.c:682
+#: bfd.c:686
msgid "no more archived files"
msgstr ""
-#: bfd.c:683
+#: bfd.c:687
msgid "malformed archive"
msgstr ""
-#: bfd.c:684
+#: bfd.c:688
msgid "DSO missing from command line"
msgstr ""
-#: bfd.c:685
+#: bfd.c:689
msgid "file format not recognized"
msgstr ""
-#: bfd.c:686
+#: bfd.c:690
msgid "file format is ambiguous"
msgstr ""
-#: bfd.c:687
+#: bfd.c:691
msgid "section has no contents"
msgstr ""
-#: bfd.c:688
+#: bfd.c:692
msgid "nonrepresentable section on output"
msgstr ""
-#: bfd.c:689
+#: bfd.c:693
msgid "symbol needs debug section which does not exist"
msgstr ""
-#: bfd.c:690
+#: bfd.c:694
msgid "bad value"
msgstr ""
-#: bfd.c:691
+#: bfd.c:695
msgid "file truncated"
msgstr ""
-#: bfd.c:692
+#: bfd.c:696
msgid "file too big"
msgstr ""
-#: bfd.c:693
+#: bfd.c:697
msgid "sorry, cannot handle this file"
msgstr ""
-#: bfd.c:694
+#: bfd.c:698
#, c-format
msgid "error reading %s: %s"
msgstr ""
-#: bfd.c:695
+#: bfd.c:699
msgid "#<invalid error code>"
msgstr ""
-#: bfd.c:1654
+#: bfd.c:1658
#, c-format
msgid "BFD %s assertion fail %s:%d"
msgstr ""
-#: bfd.c:1667
+#: bfd.c:1671
#, c-format
msgid "BFD %s internal error, aborting at %s:%d in %s\n"
msgstr ""
-#: bfd.c:1672
+#: bfd.c:1676
#, c-format
msgid "BFD %s internal error, aborting at %s:%d\n"
msgstr ""
-#: bfd.c:1674
+#: bfd.c:1678
msgid "Please report this bug.\n"
msgstr ""
-#: bfdwin.c:206
+#: bfdwin.c:207
#, c-format
msgid "not mapping: data=%lx mapped=%d\n"
msgstr ""
-#: bfdwin.c:209
+#: bfdwin.c:210
#, c-format
msgid "not mapping: env var not set\n"
msgstr ""
@@ -274,23 +277,28 @@ msgstr ""
msgid "using multiple gp values"
msgstr ""
-#: coff-alpha.c:1501 coff-alpha.c:1507 elf.c:9274 elf32-mcore.c:100
-#: elf32-mcore.c:455 elf32-ppc.c:7670 elf32-ppc.c:8821 elf64-ppc.c:15566
+#: coff-alpha.c:1501 coff-alpha.c:1507 elf.c:9437 elf32-mcore.c:100
+#: elf32-mcore.c:455 elf32-ppc.c:7679 elf32-ppc.c:8830 elf64-ppc.c:16024
#, c-format
msgid "%pB: %s unsupported"
msgstr ""
+#: coff-go32.c:156 coffswap.h:785
+#, c-format
+msgid "%pB: warning: %s: line number overflow: 0x%lx > 0xffff"
+msgstr ""
+
#: coff-mips.c:643 elf32-mips.c:1742 elf32-score.c:430 elf32-score7.c:330
#: elf64-mips.c:3451 elfn32-mips.c:3276
msgid "GP relative relocation when _gp not defined"
msgstr ""
-#: coff-rs6000.c:2862
+#: coff-rs6000.c:2844
#, c-format
msgid "%pB: TOC reloc at %#<PRIx64> to symbol `%s' with no TOC entry"
msgstr ""
-#: coff-rs6000.c:3624 coff64-rs6000.c:2154
+#: coff-rs6000.c:3607 coff64-rs6000.c:2153
#, c-format
msgid "%pB: symbol `%s' has unrecognized smclas %d"
msgstr ""
@@ -345,29 +353,29 @@ msgstr ""
msgid "%pB: illegal symbol index %ld in relocs"
msgstr ""
-#: coff-tic4x.c:228 coff-tic54x.c:366 coffcode.h:5008
+#: coff-tic4x.c:228 coff-tic54x.c:366 coffcode.h:5086
#, c-format
msgid "%pB: warning: illegal symbol index %ld in relocs"
msgstr ""
-#: coffcode.h:952
+#: coffcode.h:961
#, c-format
msgid "%pB: unable to load COMDAT section name"
msgstr ""
#. Malformed input files can trigger this test.
#. cf PR 21781.
-#: coffcode.h:987
+#: coffcode.h:996
#, c-format
msgid "%pB: error: unexpected symbol '%s' in COMDAT section"
msgstr ""
-#: coffcode.h:999
+#: coffcode.h:1008
#, c-format
msgid "%pB: warning: COMDAT symbol '%s' does not match section name '%s'"
msgstr ""
-#: coffcode.h:1009
+#: coffcode.h:1018
#, c-format
msgid "%pB: warning: no symbol for section '%s' found"
msgstr ""
@@ -375,139 +383,126 @@ msgstr ""
#. Generate a warning message rather using the 'unhandled'
#. variable as this will allow some .sys files generate by
#. other toolchains to be processed. See bugzilla issue 196.
-#: coffcode.h:1240
+#: coffcode.h:1249
#, c-format
msgid "%pB: warning: ignoring section flag %s in section %s"
msgstr ""
-#: coffcode.h:1309
+#: coffcode.h:1318
#, c-format
msgid "%pB (%s): section flag %s (%#lx) ignored"
msgstr ""
-#: coffcode.h:1920
+#: coffcode.h:1934 coffcode.h:1999
#, c-format
msgid "%pB: warning: claims to have 0xffff relocs, without overflow"
msgstr ""
-#: coffcode.h:2329
+#: coffcode.h:2365
#, c-format
msgid "unrecognized TI COFF target id '0x%x'"
msgstr ""
-#: coffcode.h:2607
+#: coffcode.h:2643
#, c-format
msgid "%pB: reloc against a non-existent symbol index: %ld"
msgstr ""
-#: coffcode.h:2915
+#: coffcode.h:2952
#, c-format
msgid "%pB: page size is too large (0x%x)"
msgstr ""
-#: coffcode.h:3075
+#: coffcode.h:3112
#, c-format
msgid "%pB: too many sections (%d)"
msgstr ""
-#: coffcode.h:3494
+#: coffcode.h:3531
#, c-format
msgid "%pB: section %pA: string table overflow at offset %ld"
msgstr ""
-#: coffcode.h:3594
+#: coffcode.h:3631
#, c-format
msgid "%pB:%s section %s: alignment 2**%u not representable"
msgstr ""
-#: coffcode.h:4275
+#: coffcode.h:4330
#, c-format
msgid "%pB: warning: line number count (%#lx) exceeds section size (%#lx)"
msgstr ""
-#: coffcode.h:4292
+#: coffcode.h:4350
#, c-format
msgid "%pB: warning: line number table read failed"
msgstr ""
-#: coffcode.h:4326 coffcode.h:4340
+#: coffcode.h:4384 coffcode.h:4398
#, c-format
msgid "%pB: warning: illegal symbol index 0x%lx in line number entry %d"
msgstr ""
-#: coffcode.h:4354
+#: coffcode.h:4412
#, c-format
msgid "%pB: warning: illegal symbol in line number entry %d"
msgstr ""
-#: coffcode.h:4367
+#: coffcode.h:4425
#, c-format
msgid "%pB: warning: duplicate line number information for `%s'"
msgstr ""
-#: coffcode.h:4772
+#: coffcode.h:4846
#, c-format
msgid "%pB: unrecognized storage class %d for %s symbol `%s'"
msgstr ""
-#: coffcode.h:4902
+#: coffcode.h:4976
#, c-format
msgid "warning: %pB: local symbol `%s' has no section"
msgstr ""
-#: coffcode.h:5048
+#: coffcode.h:5126
#, c-format
msgid "%pB: illegal relocation type %d at address %#<PRIx64>"
msgstr ""
-#: coffgen.c:179 elf.c:1248
+#: coffgen.c:179 elf.c:1239
#, c-format
msgid "%pB: unable to initialize compress status for section %s"
msgstr ""
-#: coffgen.c:203 elf.c:1259
+#: coffgen.c:203 elf.c:1250
#, c-format
msgid "%pB: unable to initialize decompress status for section %s"
msgstr ""
-#: coffgen.c:1664
-#, c-format
-msgid "%pB: corrupt symbol count: %#<PRIx64>"
-msgstr ""
-
-#. PR 21013: Provide an error message when the alloc fails.
-#: coffgen.c:1673
-#, c-format
-msgid ""
-"%pB: not enough memory to allocate space for %#<PRIx64> symbols of size "
-"%#<PRIx64>"
-msgstr ""
-
-#: coffgen.c:1742
+#: coffgen.c:1709
#, c-format
msgid "%pB: bad string table size %<PRIu64>"
msgstr ""
-#: coffgen.c:1911 coffgen.c:1971 coffgen.c:1989 cofflink.c:2049 elf.c:1925
-#: xcofflink.c:4506
+#: coffgen.c:1881 coffgen.c:1941 coffgen.c:1959 cofflink.c:2049 elf.c:1925
+#: xcofflink.c:4510
msgid "<corrupt>"
msgstr ""
-#: coffgen.c:2120
+#: coffgen.c:2090
#, c-format
msgid "<corrupt info> %s"
msgstr ""
-#: coffgen.c:2706 elflink.c:14466 linker.c:2960
+#: coffgen.c:2676 elflink.c:14613 linker.c:2960
msgid "%F%P: already_linked_table: %E\n"
msgstr ""
-#: coffgen.c:3047 elflink.c:13460
+#: coffgen.c:3017 elflink.c:13606
#, c-format
msgid "removing unused section '%pA' in file '%pB'"
msgstr ""
-#: coffgen.c:3124 elflink.c:13678
+#: coffgen.c:3094 elflink.c:13824
msgid "warning: gc-sections option ignored"
msgstr ""
@@ -516,7 +511,7 @@ msgstr ""
msgid "warning: symbol `%s' is both section and non-section"
msgstr ""
-#: cofflink.c:458 elf64-ia64-vms.c:5205 elflink.c:5023
+#: cofflink.c:458 elf64-ia64-vms.c:5208 elflink.c:5125
#, c-format
msgid "warning: type of symbol `%s' changed from %d to %d in %pB"
msgstr ""
@@ -526,7 +521,7 @@ msgstr ""
msgid "%pB: relocs in section `%pA', but it has no contents"
msgstr ""
-#: cofflink.c:2440 elflink.c:10947
+#: cofflink.c:2440 elflink.c:11060
#, c-format
msgid ""
"%X`%s' referenced in section `%pA' of %pB: defined in discarded section `"
@@ -548,24 +543,19 @@ msgstr ""
msgid "%pB: bad reloc address %#<PRIx64> in section `%pA'"
msgstr ""
-#: coffswap.h:783
-#, c-format
-msgid "%pB: warning: %s: line number overflow: 0x%lx > 0xffff"
-msgstr ""
-
-#: coffswap.h:797
+#: coffswap.h:799
#, c-format
msgid "%pB: %s: reloc overflow: 0x%lx > 0xffff"
msgstr ""
-#: compress.c:268
+#: compress.c:271
#, c-format
msgid ""
"error: %pB(%pA) section size (%#<PRIx64> bytes) is larger than file size "
"(%#<PRIx64> bytes)"
msgstr ""
-#: compress.c:279
+#: compress.c:282
#, c-format
msgid "error: %pB(%pA) is too large (%#<PRIx64> bytes)"
msgstr ""
@@ -601,188 +591,193 @@ msgstr ""
msgid "DWARF error: invalid or unhandled FORM value: %#x"
msgstr ""
-#: dwarf2.c:1641
+#: dwarf2.c:1646
msgid "DWARF error: mangled line number section (bad file number)"
msgstr ""
-#: dwarf2.c:1989
+#: dwarf2.c:1994
msgid "DWARF error: zero format count"
msgstr ""
-#: dwarf2.c:1999
+#: dwarf2.c:2004
#, c-format
msgid "DWARF error: data count (%<PRIx64>) larger than buffer size"
msgstr ""
-#: dwarf2.c:2040
+#: dwarf2.c:2045
#, c-format
msgid "DWARF error: unknown format content type %<PRIu64>"
msgstr ""
-#: dwarf2.c:2107
+#: dwarf2.c:2112
#, c-format
msgid "DWARF error: line info section is too small (%<PRId64>)"
msgstr ""
-#: dwarf2.c:2137
+#: dwarf2.c:2142
#, c-format
msgid ""
"DWARF error: line info data is bigger (%#<PRIx64>) than the space remaining "
"in the section (%#lx)"
msgstr ""
-#: dwarf2.c:2150
+#: dwarf2.c:2155
#, c-format
msgid "DWARF error: unhandled .debug_line version %d"
msgstr ""
-#: dwarf2.c:2160
+#: dwarf2.c:2165
msgid "DWARF error: ran out of room reading prologue"
msgstr ""
-#: dwarf2.c:2178
+#: dwarf2.c:2183
#, c-format
msgid "DWARF error: line info unsupported segment selector size %u"
msgstr ""
-#: dwarf2.c:2205
+#: dwarf2.c:2210
msgid "DWARF error: invalid maximum operations per instruction"
msgstr ""
-#: dwarf2.c:2224
+#: dwarf2.c:2229
msgid "DWARF error: ran out of room reading opcodes"
msgstr ""
-#: dwarf2.c:2415
+#: dwarf2.c:2420
msgid "DWARF error: mangled line number section"
msgstr ""
-#: dwarf2.c:2905
+#: dwarf2.c:2910
msgid "DWARF error: abstract instance recursion detected"
msgstr ""
-#: dwarf2.c:2939 dwarf2.c:3033
+#: dwarf2.c:2944 dwarf2.c:3038
msgid "DWARF error: invalid abstract instance DIE ref"
msgstr ""
-#: dwarf2.c:2955
+#: dwarf2.c:2960
#, c-format
msgid "DWARF error: unable to read alt ref %<PRIu64>"
msgstr ""
-#: dwarf2.c:3011
+#: dwarf2.c:3016
#, c-format
msgid "DWARF error: unable to locate abstract instance DIE ref %<PRIu64>"
msgstr ""
-#: dwarf2.c:3050 dwarf2.c:3216 dwarf2.c:3571
+#: dwarf2.c:3055 dwarf2.c:3237 dwarf2.c:3623
#, c-format
msgid "DWARF error: could not find abbrev number %u"
msgstr ""
-#: dwarf2.c:3490
+#: dwarf2.c:3386
+#, c-format
+msgid "DWARF error: could not find variable specification at offset %lx"
+msgstr ""
+
+#: dwarf2.c:3542
#, c-format
msgid ""
"DWARF error: found dwarf version '%u', this reader only handles version 2, "
"3, 4 and 5 information"
msgstr ""
-#: dwarf2.c:3534
+#: dwarf2.c:3586
#, c-format
msgid ""
"DWARF error: found address size '%u', this reader can not handle sizes "
"greater than '%u'"
msgstr ""
-#: dwarf2.c:3638
+#: dwarf2.c:3690
msgid ""
"DWARF error: DW_AT_comp_dir attribute encountered with a non-string form"
msgstr ""
-#: ecoff.c:971
+#: ecoff.c:984
#, c-format
msgid "%pB: warning: isymMax (%ld) is greater than ifdMax (%ld)"
msgstr ""
-#: ecoff.c:1268
+#: ecoff.c:1281
#, c-format
msgid "unknown basic type %d"
msgstr ""
-#: ecoff.c:1525
+#: ecoff.c:1538
#, c-format
msgid ""
"\n"
" End+1 symbol: %ld"
msgstr ""
-#: ecoff.c:1532 ecoff.c:1535
+#: ecoff.c:1545 ecoff.c:1548
#, c-format
msgid ""
"\n"
" First symbol: %ld"
msgstr ""
-#: ecoff.c:1548
+#: ecoff.c:1561
#, c-format
msgid ""
"\n"
" End+1 symbol: %-7ld Type: %s"
msgstr ""
-#: ecoff.c:1555
+#: ecoff.c:1568
#, c-format
msgid ""
"\n"
" Local symbol: %ld"
msgstr ""
-#: ecoff.c:1563
+#: ecoff.c:1576
#, c-format
msgid ""
"\n"
" struct; End+1 symbol: %ld"
msgstr ""
-#: ecoff.c:1568
+#: ecoff.c:1581
#, c-format
msgid ""
"\n"
" union; End+1 symbol: %ld"
msgstr ""
-#: ecoff.c:1573
+#: ecoff.c:1586
#, c-format
msgid ""
"\n"
" enum; End+1 symbol: %ld"
msgstr ""
-#: ecoff.c:1579
+#: ecoff.c:1592
#, c-format
msgid ""
"\n"
" Type: %s"
msgstr ""
-#: elf-attrs.c:446
+#: elf-attrs.c:449
#, c-format
msgid "%pB: error: attribute section '%pA' too big: %#llx"
msgstr ""
-#: elf-attrs.c:487
+#: elf-attrs.c:490
#, c-format
msgid "%pB: error: attribute section length too small: %<PRId64>"
msgstr ""
-#: elf-attrs.c:615
+#: elf-attrs.c:618
#, c-format
msgid ""
"error: %pB: object has vendor-specific contents that must be processed by "
"the '%s' toolchain"
msgstr ""
-#: elf-attrs.c:625
+#: elf-attrs.c:628
#, c-format
msgid "error: %pB: object tag '%d, %s' is incompatible with tag '%d, %s'"
msgstr ""
@@ -827,21 +822,21 @@ msgstr ""
msgid "DW_EH_PE_datarel unspecified for this architecture"
msgstr ""
-#: elf-eh-frame.c:2317
+#: elf-eh-frame.c:2318
#, c-format
msgid "invalid output section for .eh_frame_entry: %pA"
msgstr ""
-#: elf-eh-frame.c:2340
+#: elf-eh-frame.c:2341
#, c-format
msgid "invalid contents in %pA section"
msgstr ""
-#: elf-eh-frame.c:2496
+#: elf-eh-frame.c:2497
msgid ".eh_frame_hdr entry overflow"
msgstr ""
-#: elf-eh-frame.c:2498
+#: elf-eh-frame.c:2499
msgid ".eh_frame_hdr refers to overlapping FDEs"
msgstr ""
@@ -859,8 +854,8 @@ msgstr ""
#: elf32-h8300.c:523 elf32-ip2k.c:1482 elf32-iq2000.c:691 elf32-lm32.c:1112
#: elf32-m32c.c:624 elf32-m32r.c:3045 elf32-m68hc1x.c:1272 elf32-mep.c:526
#: elf32-metag.c:1990 elf32-microblaze.c:1631 elf32-moxie.c:288 elf32-mt.c:402
-#: elf32-nds32.c:6192 elf32-or1k.c:1759 elf32-score.c:2733 elf32-score7.c:2542
-#: elf32-spu.c:5086 elf32-tilepro.c:3505 elf32-v850.c:2290 elf32-visium.c:680
+#: elf32-nds32.c:6192 elf32-or1k.c:1821 elf32-score.c:2734 elf32-score7.c:2543
+#: elf32-spu.c:5088 elf32-tilepro.c:3505 elf32-v850.c:2290 elf32-visium.c:680
#: elf32-xstormy16.c:929 elf64-bpf.c:487 elf64-mmix.c:1541 elfxx-tilegx.c:3869
msgid "internal error: out of range error"
msgstr ""
@@ -870,18 +865,18 @@ msgstr ""
#: elf32-fr30.c:598 elf32-frv.c:4049 elf32-ft32.c:498 elf32-h8300.c:527
#: elf32-iq2000.c:695 elf32-lm32.c:1116 elf32-m32c.c:628 elf32-m32r.c:3049
#: elf32-m68hc1x.c:1276 elf32-mep.c:530 elf32-metag.c:1994
-#: elf32-microblaze.c:1635 elf32-moxie.c:292 elf32-msp430.c:1365
-#: elf32-nds32.c:6196 elf32-or1k.c:1763 elf32-score.c:2737 elf32-score7.c:2546
-#: elf32-spu.c:5090 elf32-tilepro.c:3509 elf32-v850.c:2294 elf32-visium.c:684
-#: elf32-xstormy16.c:933 elf64-mmix.c:1545 elfxx-mips.c:10575
+#: elf32-microblaze.c:1635 elf32-moxie.c:292 elf32-msp430.c:1371
+#: elf32-nds32.c:6196 elf32-or1k.c:1825 elf32-score.c:2738 elf32-score7.c:2547
+#: elf32-spu.c:5092 elf32-tilepro.c:3509 elf32-v850.c:2294 elf32-visium.c:684
+#: elf32-xstormy16.c:933 elf64-mmix.c:1545 elfxx-mips.c:10590
#: elfxx-tilegx.c:3873
msgid "internal error: unsupported relocation error"
msgstr ""
#: elf-m10200.c:442 elf32-cr16.c:1473 elf32-crx.c:933 elf32-d10v.c:518
#: elf32-h8300.c:531 elf32-lm32.c:1120 elf32-m32r.c:3053 elf32-m68hc1x.c:1280
-#: elf32-microblaze.c:1639 elf32-nds32.c:6200 elf32-score.c:2741
-#: elf32-score7.c:2550 elf32-spu.c:5094
+#: elf32-microblaze.c:1639 elf32-nds32.c:6200 elf32-score.c:2742
+#: elf32-score7.c:2551 elf32-spu.c:5096
msgid "internal error: dangerous error"
msgstr ""
@@ -891,8 +886,8 @@ msgstr ""
#: elf32-h8300.c:535 elf32-ip2k.c:1497 elf32-iq2000.c:703 elf32-lm32.c:1124
#: elf32-m32c.c:636 elf32-m32r.c:3057 elf32-m68hc1x.c:1284 elf32-mep.c:538
#: elf32-metag.c:2002 elf32-microblaze.c:1643 elf32-moxie.c:300
-#: elf32-msp430.c:1373 elf32-mt.c:410 elf32-nds32.c:6204 elf32-or1k.c:1771
-#: elf32-score.c:2750 elf32-score7.c:2554 elf32-spu.c:5098 elf32-tilepro.c:3517
+#: elf32-msp430.c:1379 elf32-mt.c:410 elf32-nds32.c:6204 elf32-or1k.c:1833
+#: elf32-score.c:2751 elf32-score7.c:2555 elf32-spu.c:5100 elf32-tilepro.c:3517
#: elf32-v850.c:2314 elf32-visium.c:692 elf32-xstormy16.c:941 elf64-bpf.c:500
#: elf64-mmix.c:1553 elfxx-tilegx.c:3881
msgid "internal error: unknown error"
@@ -908,11 +903,10 @@ msgstr ""
msgid "%pB: %s' accessed both as normal and thread local symbol"
msgstr ""
-#: elf-m10300.c:2092 elf32-arm.c:13450 elf32-i386.c:3403 elf32-m32r.c:2539
-#: elf32-m68k.c:3912 elf32-s390.c:3210 elf32-sh.c:3802 elf32-tilepro.c:3408
-#: elf32-xtensa.c:2969 elf64-s390.c:3159 elf64-x86-64.c:3961 elfxx-sparc.c:3903
-#: elfxx-tilegx.c:3792 /work/sources/binutils/current/bfd/elfnn-aarch64.c:5493
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:7081
+#: elf-m10300.c:2092 elf32-arm.c:13464 elf32-i386.c:3421 elf32-m32r.c:2539
+#: elf32-m68k.c:3912 elf32-s390.c:3210 elf32-sh.c:3788 elf32-tilepro.c:3408
+#: elf32-xtensa.c:3013 elf64-s390.c:3159 elf64-x86-64.c:4078 elfxx-sparc.c:3903
+#: elfxx-tilegx.c:3792 elfnn-aarch64.c:5551 elfnn-aarch64.c:7148
#, c-format
msgid "%pB(%pA+%#<PRIx64>): unresolvable %s relocation against symbol `%s'"
msgstr ""
@@ -935,8 +929,7 @@ msgid "internal error: suspicious relocation type used in shared library"
msgstr ""
#: elf-m10300.c:2647 elf32-avr.c:2491 elf32-frv.c:5637 elf64-ia64-vms.c:364
-#: elfxx-sparc.c:2792 reloc.c:8216 reloc16.c:155 elf32-ia64.c:365
-#: elf64-ia64.c:365
+#: elfxx-sparc.c:2792 reloc.c:8244 reloc16.c:155 elfnn-ia64.c:365
msgid "%P%F: --relax and -r may not be used together\n"
msgstr ""
@@ -1008,219 +1001,214 @@ msgid "Merging program properties\n"
msgstr ""
#. PR 17512: file: f057ec89.
-#: elf.c:342
+#: elf.c:336
#, c-format
msgid "%pB: attempt to load strings from a non-string section (number %d)"
msgstr ""
-#: elf.c:367
+#: elf.c:361
#, c-format
msgid "%pB: invalid string offset %u >= %<PRIu64> for section `%s'"
msgstr ""
-#: elf.c:506 /work/sources/binutils/current/bfd/elfnn-aarch64.c:8092
+#: elf.c:513 elfnn-aarch64.c:8161
#, c-format
msgid "%pB symbol number %lu references nonexistent SHT_SYMTAB_SHNDX section"
msgstr ""
-#: elf.c:671
-#, c-format
-msgid "%pB: corrupt size field in group section header: %#<PRIx64>"
-msgstr ""
-
-#: elf.c:687
+#: elf.c:678
#, c-format
msgid "%pB: invalid size field in group section header: %#<PRIx64>"
msgstr ""
-#: elf.c:735
+#: elf.c:723
#, c-format
msgid "%pB: invalid entry in SHT_GROUP section [%u]"
msgstr ""
-#: elf.c:754
+#: elf.c:742
#, c-format
msgid "%pB: no valid group sections found"
msgstr ""
#. See PR 21957 for a reproducer.
-#: elf.c:783
+#: elf.c:771
#, c-format
msgid "%pB: group section '%pA' has no contents"
msgstr ""
-#: elf.c:844
+#: elf.c:832
#, c-format
msgid "%pB: no group info for section '%pA'"
msgstr ""
-#: elf.c:875 elf.c:3953
+#: elf.c:862 elf.c:3959
#, c-format
msgid "%pB: warning: sh_link not set for section `%pA'"
msgstr ""
-#: elf.c:895
+#: elf.c:882
#, c-format
msgid "%pB: sh_link [%d] in section `%pA' is incorrect"
msgstr ""
-#: elf.c:908
+#: elf.c:895
#, c-format
msgid "%pB: SHT_GROUP section [index %d] has no SHF_GROUP sections"
msgstr ""
-#: elf.c:929
+#: elf.c:916
#, c-format
msgid "%pB: section group entry number %u is corrupt"
msgstr ""
-#: elf.c:952
+#: elf.c:939
#, c-format
msgid "%pB: unknown type [%#x] section `%s' in group [%pA]"
msgstr ""
-#: elf.c:1451
+#: elf.c:1441
#, c-format
msgid "%pB: invalid sh_link field (%d) in section number %d"
msgstr ""
-#: elf.c:1467
+#: elf.c:1457
#, c-format
msgid "%pB: failed to find link section for section %d"
msgstr ""
-#: elf.c:1494
+#: elf.c:1484
#, c-format
msgid "%pB: failed to find info section for section %d"
msgstr ""
-#: elf.c:1666
+#: elf.c:1656
#, c-format
msgid ""
"\n"
"Program Header:\n"
msgstr ""
-#: elf.c:1708
+#: elf.c:1698
#, c-format
msgid ""
"\n"
"Dynamic Section:\n"
msgstr ""
-#: elf.c:1849
+#: elf.c:1839
#, c-format
msgid ""
"\n"
"Version definitions:\n"
msgstr ""
-#: elf.c:1874
+#: elf.c:1864
#, c-format
msgid ""
"\n"
"Version References:\n"
msgstr ""
-#: elf.c:1879
+#: elf.c:1869
#, c-format
msgid " required from %s:\n"
msgstr ""
-#: elf.c:2079
+#: elf.c:2086
#, c-format
msgid "%pB: warning: loop in section dependencies detected"
msgstr ""
-#: elf.c:2187
+#: elf.c:2194
#, c-format
msgid ""
"%pB: warning: multiple symbol tables detected - ignoring the table in "
"section %u"
msgstr ""
-#: elf.c:2271
+#: elf.c:2278
#, c-format
msgid ""
"%pB: warning: multiple dynamic symbol tables detected - ignoring the table "
"in section %u"
msgstr ""
-#: elf.c:2384
+#: elf.c:2391
#, c-format
msgid "%pB: invalid link %u for reloc section %s (index %u)"
msgstr ""
-#: elf.c:2473
+#: elf.c:2482
#, c-format
msgid ""
-"%pB: warning: multiple relocation sections for section %pA found - ignoring "
-"all but the first"
+"%pB: warning: secondary relocation section '%s' for section %pA found - "
+"ignoring"
msgstr ""
-#: elf.c:2555 elf.c:2570 elf.c:2581 elf.c:2594
+#: elf.c:2566 elf.c:2581 elf.c:2592 elf.c:2605
#, c-format
msgid "%pB: unknown type [%#x] section `%s'"
msgstr ""
-#: elf.c:3314
+#: elf.c:3312
#, c-format
msgid "%pB: error: alignment power %d of section `%pA' is too big"
msgstr ""
-#: elf.c:3344
+#: elf.c:3345
#, c-format
msgid "warning: section `%pA' type changed to PROGBITS"
msgstr ""
-#: elf.c:3821
+#: elf.c:3828
#, c-format
msgid "%pB: too many sections: %u"
msgstr ""
-#: elf.c:3906
+#: elf.c:3913
#, c-format
msgid ""
"%pB: sh_link of section `%pA' points to discarded section `%pA' of `%pB'"
msgstr ""
-#: elf.c:3931
+#: elf.c:3938
#, c-format
msgid "%pB: sh_link of section `%pA' points to removed section `%pA' of `%pB'"
msgstr ""
-#: elf.c:4494
+#: elf.c:4499
#, c-format
msgid "%pB: GNU_MBIND section `%pA' has invalid sh_info field: %d"
msgstr ""
-#: elf.c:5082
+#: elf.c:5090
#, c-format
msgid "%pB: TLS sections are not adjacent:"
msgstr ""
-#: elf.c:5089
+#: elf.c:5097
#, c-format
msgid "\t TLS: %pA"
msgstr ""
-#: elf.c:5093
+#: elf.c:5101
#, c-format
msgid "\tnon-TLS: %pA"
msgstr ""
-#: elf.c:5671
+#: elf.c:5692
#, c-format
msgid ""
"%pB: The first section in the PT_DYNAMIC segment is not the .dynamic section"
msgstr ""
-#: elf.c:5697
+#: elf.c:5718
#, c-format
msgid "%pB: not enough room for program headers, try linking with -N"
msgstr ""
-#: elf.c:5808
+#: elf.c:5835
#, c-format
msgid "%pB: section %pA lma %#<PRIx64> adjusted to %#<PRIx64>"
msgstr ""
@@ -1228,80 +1216,156 @@ msgstr ""
#. The fix for this error is usually to edit the linker script being
#. used and set up the program headers manually. Either that or
#. leave room for the headers at the start of the SECTIONS.
-#: elf.c:5928
+#: elf.c:5972
#, c-format
msgid "%pB: error: PHDR segment not covered by LOAD segment"
msgstr ""
-#: elf.c:5964
+#: elf.c:6012
#, c-format
msgid "%pB: section `%pA' can't be allocated in segment %d"
msgstr ""
-#: elf.c:6095
+#: elf.c:6144
#, c-format
msgid "%pB: warning: allocated section `%s' not in segment"
msgstr ""
-#: elf.c:6256
+#: elf.c:6305
#, c-format
msgid ""
"%pB: error: non-load segment %d includes file header and/or program header"
msgstr ""
-#: elf.c:6760
+#: elf.c:6809
#, c-format
msgid "%pB: symbol `%s' required but not present"
msgstr ""
-#: elf.c:7102
+#: elf.c:7152
#, c-format
msgid ""
"%pB: warning: empty loadable segment detected at vaddr=%#<PRIx64>, is this "
"intentional?"
msgstr ""
-#: elf.c:7722
+#: elf.c:7778
#, c-format
msgid "%pB: warning: segment alignment of %#<PRIx64> is too large"
msgstr ""
-#: elf.c:8222
+#: elf.c:8291
+#, c-format
+msgid ""
+"%pB: Unable to handle section index %x in ELF symbol. Using ABS instead."
+msgstr ""
+
+#: elf.c:8321
#, c-format
msgid ""
"unable to find equivalent output section for symbol '%s' from section '%s'"
msgstr ""
-#: elf.c:8577
+#: elf.c:8708
#, c-format
msgid "%pB: .gnu.version_r invalid entry"
msgstr ""
-#: elf.c:8593
+#: elf.c:8841
#, c-format
-msgid "error: %pB version reference section is too large (%#<PRIx64> bytes)"
+msgid "%pB: .gnu.version_d invalid entry"
msgstr ""
-#: elf.c:8716
+#: elf.c:9299
#, c-format
-msgid "%pB: .gnu.version_d invalid entry"
+msgid ""
+"%pB:%pA: error: attempting to write into an unallocated compressed section"
+msgstr ""
+
+#: elf.c:9308
+#, c-format
+msgid "%pB:%pA: error: attempting to write over the end of the section"
+msgstr ""
+
+#: elf.c:9319
+#, c-format
+msgid "%pB:%pA: error: attempting to write section into an empty buffer"
msgstr ""
-#: elf.c:12238
+#: elf.c:12434
msgid "GNU_MBIND section is unsupported"
msgstr ""
-#: elf.c:12240
+#: elf.c:12436
msgid "symbol type STT_GNU_IFUNC is unsupported"
msgstr ""
-#: elf.c:12242
+#: elf.c:12438
msgid "symbol binding STB_GNU_UNIQUE is unsupported"
msgstr ""
-#: elf32-arc.c:459 elf32-frv.c:6624 elf32-iq2000.c:868 elf32-m32c.c:914
-#: elf32-mt.c:562 elf32-rl78.c:1260 elf32-rx.c:3199 elf32-visium.c:844
-#: elf64-ppc.c:5278
+#: elf.c:12622 elf64-sparc.c:123 elfcode.h:1485
+#, c-format
+msgid "%pB(%pA): relocation %d has invalid symbol index %ld"
+msgstr ""
+
+#: elf.c:12696
+#, c-format
+msgid ""
+"%pB(%pA): link section cannot be set because the output file does not have a "
+"symbol table"
+msgstr ""
+
+#: elf.c:12708
+#, c-format
+msgid "%pB(%pA): info section index is invalid"
+msgstr ""
+
+#: elf.c:12722
+#, c-format
+msgid ""
+"%pB(%pA): info section index cannot be set because the section is not in the "
+"output"
+msgstr ""
+
+#: elf.c:12788
+#, c-format
+msgid "%pB(%pA): error: secondary reloc section processed twice"
+msgstr ""
+
+#: elf.c:12800
+#, c-format
+msgid "%pB(%pA): error: secondary reloc section is empty!"
+msgstr ""
+
+#: elf.c:12823
+#, c-format
+msgid "%pB(%pA): error: internal relocs missing for secondary reloc section"
+msgstr ""
+
+#: elf.c:12842
+#, c-format
+msgid "%pB(%pA): error: reloc table entry %u is empty"
+msgstr ""
+
+#: elf.c:12867
+#, c-format
+msgid "%pB(%pA): error: secondary reloc %u references a missing symbol"
+msgstr ""
+
+#: elf.c:12884
+#, c-format
+msgid "%pB(%pA): error: secondary reloc %u references a deleted symbol"
+msgstr ""
+
+#: elf.c:12897
+#, c-format
+msgid "%pB(%pA): error: secondary reloc %u is of an unknown type"
+msgstr ""
+
+#: elf32-arc.c:459 elf32-frv.c:6628 elf32-iq2000.c:868 elf32-m32c.c:914
+#: elf32-mt.c:562 elf32-rl78.c:1260 elf32-rx.c:3207 elf32-visium.c:844
+#: elf64-ppc.c:5293
#, c-format
msgid "private flags = 0x%lx:"
msgstr ""
@@ -1348,7 +1412,7 @@ msgid ""
msgstr ""
#: elf32-arc.c:942 elf32-iq2000.c:844 elf32-m32c.c:889 elf32-m68hc1x.c:1391
-#: elf32-ppc.c:3859 elf64-sparc.c:727 elfxx-mips.c:15519
+#: elf32-ppc.c:3868 elf64-sparc.c:725 elfxx-mips.c:15534
#, c-format
msgid "%pB: uses different e_flags (%#x) fields than previous modules (%#x)"
msgstr ""
@@ -1379,35 +1443,34 @@ msgstr ""
msgid "GOT and PLT relocations cannot be fixed with a non dynamic linker"
msgstr ""
-#: elf32-arc.c:1912 elf32-rl78.c:1098 elf32-rx.c:1470
+#: elf32-arc.c:1912 elf32-rl78.c:1098 elf32-rx.c:1475
#, c-format
msgid ""
"%pB(%pA): warning: unaligned access to symbol '%s' in the small data area"
msgstr ""
-#: elf32-arc.c:1917 elf32-rl78.c:1103 elf32-rx.c:1475
+#: elf32-arc.c:1917 elf32-rl78.c:1103 elf32-rx.c:1480
#, c-format
msgid "%pB(%pA): internal error: out of range error"
msgstr ""
-#: elf32-arc.c:1922 elf32-rl78.c:1108 elf32-rx.c:1480
+#: elf32-arc.c:1922 elf32-rl78.c:1108 elf32-rx.c:1485
#, c-format
msgid "%pB(%pA): internal error: unsupported relocation error"
msgstr ""
-#: elf32-arc.c:1927 elf32-rl78.c:1113 elf32-rx.c:1485
+#: elf32-arc.c:1927 elf32-rl78.c:1113 elf32-rx.c:1490
#, c-format
msgid "%pB(%pA): internal error: dangerous relocation"
msgstr ""
-#: elf32-arc.c:1932 elf32-rl78.c:1118 elf32-rx.c:1490
+#: elf32-arc.c:1932 elf32-rl78.c:1118 elf32-rx.c:1495
#, c-format
msgid "%pB(%pA): internal error: unknown error"
msgstr ""
-#: elf32-arc.c:2025 elf32-arc.c:2093 elf32-arm.c:15563 elf32-metag.c:2257
-#: elf32-nds32.c:5642 /work/sources/binutils/current/bfd/elfnn-aarch64.c:7735
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:510
+#: elf32-arc.c:2025 elf32-arc.c:2093 elf32-arm.c:15577 elf32-metag.c:2257
+#: elf32-nds32.c:5642 elfnn-aarch64.c:7802 elfnn-riscv.c:518
#, c-format
msgid ""
"%pB: relocation %s against `%s' can not be used when making a shared object; "
@@ -1432,7 +1495,7 @@ msgid ""
"movw instruction"
msgstr ""
-#: elf32-arm.c:4426 elf32-arm.c:4480 elf32-arm.c:9172 elf32-arm.c:9262
+#: elf32-arm.c:4426 elf32-arm.c:4480 elf32-arm.c:9180 elf32-arm.c:9270
#, c-format
msgid ""
"%pB(%s): warning: interworking not enabled; first occurrence: %pB: %s call "
@@ -1451,129 +1514,137 @@ msgstr ""
msgid "no address assigned to the veneers output section %s"
msgstr ""
-#: elf32-arm.c:4850 elf32-arm.c:6991 elf32-csky.c:3286 elf32-hppa.c:588
-#: elf32-m68hc1x.c:165 elf32-metag.c:1186 elf32-nios2.c:2208 elf64-ppc.c:3746
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:3236
+#: elf32-arm.c:4850 elf32-arm.c:6999 elf32-csky.c:3286 elf32-hppa.c:588
+#: elf32-m68hc1x.c:165 elf32-metag.c:1186 elf32-nios2.c:2208 elf64-ppc.c:3768
+#: elfnn-aarch64.c:3236
#, c-format
msgid "%pB: cannot create stub entry %s"
msgstr ""
-#: elf32-arm.c:6033
+#: elf32-arm.c:5071 elf32-csky.c:3628 elf32-hppa.c:738 elf32-m68hc11.c:422
+#: elf32-m68hc12.c:542 elf32-metag.c:3480 elf32-nios2.c:2501 elf64-ppc.c:11374
+#: elfnn-aarch64.c:3305
+msgid ""
+"%F%P: Could not assign '%pA' to an output section. Retry without --enable-"
+"non-contiguous-regions.\n"
+msgstr ""
+
+#: elf32-arm.c:6041
#, c-format
msgid "%pB: special symbol `%s' only allowed for ARMv8-M architecture or later"
msgstr ""
-#: elf32-arm.c:6042
+#: elf32-arm.c:6050
#, c-format
msgid ""
"%pB: invalid special symbol `%s'; it must be a global or weak function symbol"
msgstr ""
-#: elf32-arm.c:6081
+#: elf32-arm.c:6089
#, c-format
msgid ""
"%pB: invalid standard symbol `%s'; it must be a global or weak function "
"symbol"
msgstr ""
-#: elf32-arm.c:6087
+#: elf32-arm.c:6095
#, c-format
msgid "%pB: absent standard symbol `%s'"
msgstr ""
-#: elf32-arm.c:6099
+#: elf32-arm.c:6107
#, c-format
msgid "%pB: `%s' and its special symbol are in different sections"
msgstr ""
-#: elf32-arm.c:6111
+#: elf32-arm.c:6119
#, c-format
msgid "%pB: entry function `%s' not output"
msgstr ""
-#: elf32-arm.c:6118
+#: elf32-arm.c:6126
#, c-format
msgid "%pB: entry function `%s' is empty"
msgstr ""
-#: elf32-arm.c:6247
+#: elf32-arm.c:6255
#, c-format
msgid "%pB: --in-implib only supported for Secure Gateway import libraries"
msgstr ""
-#: elf32-arm.c:6296
+#: elf32-arm.c:6304
#, c-format
msgid ""
"%pB: invalid import library entry: `%s'; symbol should be absolute, global "
"and refer to Thumb functions"
msgstr ""
-#: elf32-arm.c:6318
+#: elf32-arm.c:6326
#, c-format
msgid "entry function `%s' disappeared from secure code"
msgstr ""
-#: elf32-arm.c:6342
+#: elf32-arm.c:6350
#, c-format
msgid "`%s' refers to a non entry function"
msgstr ""
-#: elf32-arm.c:6357
+#: elf32-arm.c:6365
#, c-format
msgid "%pB: visibility of symbol `%s' has changed"
msgstr ""
-#: elf32-arm.c:6366
+#: elf32-arm.c:6374
#, c-format
msgid "%pB: incorrect size for symbol `%s'"
msgstr ""
-#: elf32-arm.c:6385
+#: elf32-arm.c:6393
#, c-format
msgid "offset of veneer for entry function `%s' not a multiple of its size"
msgstr ""
-#: elf32-arm.c:6405
+#: elf32-arm.c:6413
msgid ""
"new entry function(s) introduced but no output import library specified:"
msgstr ""
-#: elf32-arm.c:6413
+#: elf32-arm.c:6421
#, c-format
msgid "start address of `%s' is different from previous link"
msgstr ""
-#: elf32-arm.c:7124 elf32-arm.c:7159
+#: elf32-arm.c:7132 elf32-arm.c:7167
#, c-format
msgid "unable to find %s glue '%s' for '%s'"
msgstr ""
-#: elf32-arm.c:7870
+#: elf32-arm.c:7878
#, c-format
msgid "%pB: BE8 images only valid in big-endian mode"
msgstr ""
#. Give a warning, but do as the user requests anyway.
-#: elf32-arm.c:8101
+#: elf32-arm.c:8109
#, c-format
msgid ""
"%pB: warning: selected VFP11 erratum workaround is not necessary for target "
"architecture"
msgstr ""
-#: elf32-arm.c:8128
+#: elf32-arm.c:8136
#, c-format
msgid ""
"%pB: warning: selected STM32L4XX erratum workaround is not necessary for "
"target architecture"
msgstr ""
-#: elf32-arm.c:8666 elf32-arm.c:8686 elf32-arm.c:8753 elf32-arm.c:8772
+#: elf32-arm.c:8674 elf32-arm.c:8694 elf32-arm.c:8761 elf32-arm.c:8780
#, c-format
msgid "%pB: unable to find %s veneer `%s'"
msgstr ""
-#: elf32-arm.c:8979
+#: elf32-arm.c:8987
#, c-format
msgid ""
"%pB(%pA+%#x): error: multiple load detected in non-last IT block "
@@ -1581,202 +1652,199 @@ msgid ""
"it to generate only one instruction per IT block"
msgstr ""
-#: elf32-arm.c:9079
+#: elf32-arm.c:9087
#, c-format
msgid "invalid TARGET2 relocation type '%s'"
msgstr ""
#. FIXME: We ought to be able to generate thumb-1 PLT
#. instructions...
-#: elf32-arm.c:9881
+#: elf32-arm.c:9889
#, c-format
msgid "%pB: warning: thumb-1 mode PLT generation not currently supported"
msgstr ""
-#: elf32-arm.c:10185 elf32-arm.c:10227
+#: elf32-arm.c:10199 elf32-arm.c:10241
#, c-format
msgid "%pB(%pA+%#<PRIx64>): unexpected %s instruction '%#lx' in TLS trampoline"
msgstr ""
-#: elf32-arm.c:10571
+#: elf32-arm.c:10585
msgid "shared object"
msgstr ""
-#: elf32-arm.c:10574
+#: elf32-arm.c:10588
msgid "PIE executable"
msgstr ""
-#: elf32-arm.c:10577
+#: elf32-arm.c:10591
#, c-format
msgid ""
"%pB: relocation %s against external or undefined symbol `%s' can not be used "
"when making a %s; recompile with -fPIC"
msgstr ""
-#: elf32-arm.c:10714 elf32-arm.c:11141
+#: elf32-arm.c:10728 elf32-arm.c:11155
#, c-format
msgid "%pB: warning: %s BLX instruction targets %s function '%s'"
msgstr ""
-#: elf32-arm.c:12053 elf32-arm.c:12079
+#: elf32-arm.c:12067 elf32-arm.c:12093
#, c-format
msgid ""
"%pB(%pA+%#<PRIx64>): unexpected %s instruction '%#lx' referenced by "
"TLS_GOTDESC"
msgstr ""
-#: elf32-arm.c:12125 elf32-csky.c:4852 elf32-m68k.c:3716 elf32-metag.c:1919
-#: elf32-nios2.c:4378
+#: elf32-arm.c:12139 elf32-csky.c:4860 elf32-m68k.c:3716 elf32-metag.c:1919
+#: elf32-nios2.c:4389
#, c-format
msgid "%pB(%pA+%#<PRIx64>): %s relocation not permitted in shared object"
msgstr ""
-#: elf32-arm.c:12339
+#: elf32-arm.c:12353
#, c-format
msgid ""
"%pB(%pA+%#<PRIx64>): only ADD or SUB instructions are allowed for ALU group "
"relocations"
msgstr ""
-#: elf32-arm.c:12380 elf32-arm.c:12472 elf32-arm.c:12560 elf32-arm.c:12650
+#: elf32-arm.c:12394 elf32-arm.c:12486 elf32-arm.c:12574 elf32-arm.c:12664
#, c-format
msgid ""
"%pB(%pA+%#<PRIx64>): overflow whilst splitting %#<PRIx64> for group "
"relocation %s"
msgstr ""
-#: elf32-arm.c:13282 elf32-sh.c:3691
+#: elf32-arm.c:13296 elf32-sh.c:3682
#, c-format
msgid "%pB(%pA+%#<PRIx64>): %s relocation against SEC_MERGE section"
msgstr ""
-#: elf32-arm.c:13395 elf32-m68k.c:3949 elf32-xtensa.c:2707
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:6808
+#: elf32-arm.c:13409 elf32-m68k.c:3949 elf32-xtensa.c:2751 elfnn-aarch64.c:6875
#, c-format
msgid "%pB(%pA+%#<PRIx64>): %s used with TLS symbol %s"
msgstr ""
-#: elf32-arm.c:13397 elf32-m68k.c:3951 elf32-xtensa.c:2709
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:6810
+#: elf32-arm.c:13411 elf32-m68k.c:3951 elf32-xtensa.c:2753 elfnn-aarch64.c:6877
#, c-format
msgid "%pB(%pA+%#<PRIx64>): %s used with non-TLS symbol %s"
msgstr ""
-#: elf32-arm.c:13480 elf32-tic6x.c:2708
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:7145
+#: elf32-arm.c:13494 elf32-tic6x.c:2708 elfnn-aarch64.c:7212
msgid "out of range"
msgstr ""
-#: elf32-arm.c:13484 elf32-nios2.c:4512 elf32-pru.c:936 elf32-tic6x.c:2712
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:7149
+#: elf32-arm.c:13498 elf32-nios2.c:4523 elf32-pru.c:936 elf32-tic6x.c:2712
+#: elfnn-aarch64.c:7216
msgid "unsupported relocation"
msgstr ""
-#: elf32-arm.c:13492 elf32-nios2.c:4522 elf32-pru.c:946 elf32-tic6x.c:2720
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:7157
+#: elf32-arm.c:13506 elf32-nios2.c:4533 elf32-pru.c:946 elf32-tic6x.c:2720
+#: elfnn-aarch64.c:7224
msgid "unknown error"
msgstr ""
-#: elf32-arm.c:13970
+#: elf32-arm.c:13984
#, c-format
msgid ""
"warning: not setting interworking flag of %pB since it has already been "
"specified as non-interworking"
msgstr ""
-#: elf32-arm.c:13974
+#: elf32-arm.c:13988
#, c-format
msgid "warning: clearing the interworking flag of %pB due to outside request"
msgstr ""
-#: elf32-arm.c:14019
+#: elf32-arm.c:14033
#, c-format
msgid ""
"warning: clearing the interworking flag of %pB because non-interworking code "
"in %pB has been linked with it"
msgstr ""
-#: elf32-arm.c:14106
+#: elf32-arm.c:14120
#, c-format
msgid "%pB: unknown mandatory EABI object attribute %d"
msgstr ""
-#: elf32-arm.c:14114
+#: elf32-arm.c:14128
#, c-format
msgid "warning: %pB: unknown EABI object attribute %d"
msgstr ""
-#: elf32-arm.c:14414
+#: elf32-arm.c:14428
#, c-format
msgid "error: %pB: unknown CPU architecture"
msgstr ""
-#: elf32-arm.c:14452 elf32-nios2.c:2946
+#: elf32-arm.c:14466 elf32-nios2.c:2957
#, c-format
msgid "error: %pB: conflicting CPU architectures %d/%d"
msgstr ""
-#: elf32-arm.c:14549
+#: elf32-arm.c:14563
#, c-format
msgid ""
"Error: %pB has both the current and legacy Tag_MPextension_use attributes"
msgstr ""
-#: elf32-arm.c:14578
+#: elf32-arm.c:14592
#, c-format
msgid "error: %pB uses VFP register arguments, %pB does not"
msgstr ""
-#: elf32-arm.c:14737
+#: elf32-arm.c:14751
#, c-format
msgid "error: %pB: unable to merge virtualization attributes with %pB"
msgstr ""
-#: elf32-arm.c:14763
+#: elf32-arm.c:14777
#, c-format
msgid "error: %pB: conflicting architecture profiles %c/%c"
msgstr ""
-#: elf32-arm.c:14902
+#: elf32-arm.c:14916
#, c-format
msgid "warning: %pB: conflicting platform configuration"
msgstr ""
-#: elf32-arm.c:14911
+#: elf32-arm.c:14925
#, c-format
msgid "error: %pB: conflicting use of R9"
msgstr ""
-#: elf32-arm.c:14923
+#: elf32-arm.c:14937
#, c-format
msgid "error: %pB: SB relative addressing conflicts with use of R9"
msgstr ""
-#: elf32-arm.c:14936
+#: elf32-arm.c:14950
#, c-format
msgid ""
"warning: %pB uses %u-byte wchar_t yet the output is to use %u-byte wchar_t; "
"use of wchar_t values across objects may fail"
msgstr ""
-#: elf32-arm.c:14967
+#: elf32-arm.c:14981
#, c-format
msgid ""
"warning: %pB uses %s enums yet the output is to use %s enums; use of enum "
"values across objects may fail"
msgstr ""
-#: elf32-arm.c:14979
+#: elf32-arm.c:14993
#, c-format
msgid "error: %pB uses iWMMXt register arguments, %pB does not"
msgstr ""
-#: elf32-arm.c:14996
+#: elf32-arm.c:15010
#, c-format
msgid "error: fp16 format mismatch between %pB and %pB"
msgstr ""
-#: elf32-arm.c:15032
+#: elf32-arm.c:15046
#, c-format
msgid "%pB has both the current and legacy Tag_MPextension_use attributes"
msgstr ""
@@ -1786,266 +1854,263 @@ msgstr ""
#. Ignore init flag - it may not be set, despite the flags field containing valid data.
#. Ignore init flag - it may not be set, despite the flags field
#. containing valid data.
-#: elf32-arm.c:15119 elf32-bfin.c:4735 elf32-cris.c:3906 elf32-m68hc1x.c:1416
-#: elf32-m68k.c:1205 elf32-score.c:3999 elf32-score7.c:3804 elf32-vax.c:537
-#: elf32-xgate.c:494 elfxx-mips.c:16204
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:7311
+#: elf32-arm.c:15133 elf32-bfin.c:4735 elf32-cris.c:3906 elf32-m68hc1x.c:1416
+#: elf32-m68k.c:1205 elf32-score.c:4000 elf32-score7.c:3805 elf32-vax.c:537
+#: elf32-xgate.c:494 elfxx-mips.c:16220 elfnn-aarch64.c:7378
#, c-format
msgid "private flags = %lx:"
msgstr ""
-#: elf32-arm.c:15128
+#: elf32-arm.c:15142
#, c-format
msgid " [interworking enabled]"
msgstr ""
-#: elf32-arm.c:15136
+#: elf32-arm.c:15150
#, c-format
msgid " [VFP float format]"
msgstr ""
-#: elf32-arm.c:15138
+#: elf32-arm.c:15152
#, c-format
msgid " [Maverick float format]"
msgstr ""
-#: elf32-arm.c:15140
+#: elf32-arm.c:15154
#, c-format
msgid " [FPA float format]"
msgstr ""
-#: elf32-arm.c:15143
+#: elf32-arm.c:15157
#, c-format
msgid " [floats passed in float registers]"
msgstr ""
-#: elf32-arm.c:15146 elf32-arm.c:15232
+#: elf32-arm.c:15160 elf32-arm.c:15246
#, c-format
msgid " [position independent]"
msgstr ""
-#: elf32-arm.c:15149
+#: elf32-arm.c:15163
#, c-format
msgid " [new ABI]"
msgstr ""
-#: elf32-arm.c:15152
+#: elf32-arm.c:15166
#, c-format
msgid " [old ABI]"
msgstr ""
-#: elf32-arm.c:15155
+#: elf32-arm.c:15169
#, c-format
msgid " [software FP]"
msgstr ""
-#: elf32-arm.c:15164
+#: elf32-arm.c:15178
#, c-format
msgid " [Version1 EABI]"
msgstr ""
-#: elf32-arm.c:15167 elf32-arm.c:15178
+#: elf32-arm.c:15181 elf32-arm.c:15192
#, c-format
msgid " [sorted symbol table]"
msgstr ""
-#: elf32-arm.c:15169 elf32-arm.c:15180
+#: elf32-arm.c:15183 elf32-arm.c:15194
#, c-format
msgid " [unsorted symbol table]"
msgstr ""
-#: elf32-arm.c:15175
+#: elf32-arm.c:15189
#, c-format
msgid " [Version2 EABI]"
msgstr ""
-#: elf32-arm.c:15183
+#: elf32-arm.c:15197
#, c-format
msgid " [dynamic symbols use segment index]"
msgstr ""
-#: elf32-arm.c:15186
+#: elf32-arm.c:15200
#, c-format
msgid " [mapping symbols precede others]"
msgstr ""
-#: elf32-arm.c:15193
+#: elf32-arm.c:15207
#, c-format
msgid " [Version3 EABI]"
msgstr ""
-#: elf32-arm.c:15197
+#: elf32-arm.c:15211
#, c-format
msgid " [Version4 EABI]"
msgstr ""
-#: elf32-arm.c:15201
+#: elf32-arm.c:15215
#, c-format
msgid " [Version5 EABI]"
msgstr ""
-#: elf32-arm.c:15204
+#: elf32-arm.c:15218
#, c-format
msgid " [soft-float ABI]"
msgstr ""
-#: elf32-arm.c:15207
+#: elf32-arm.c:15221
#, c-format
msgid " [hard-float ABI]"
msgstr ""
-#: elf32-arm.c:15213
+#: elf32-arm.c:15227
#, c-format
msgid " [BE8]"
msgstr ""
-#: elf32-arm.c:15216
+#: elf32-arm.c:15230
#, c-format
msgid " [LE8]"
msgstr ""
-#: elf32-arm.c:15222
+#: elf32-arm.c:15236
#, c-format
msgid " <EABI version unrecognised>"
msgstr ""
-#: elf32-arm.c:15229
+#: elf32-arm.c:15243
#, c-format
msgid " [relocatable executable]"
msgstr ""
-#: elf32-arm.c:15235
+#: elf32-arm.c:15249
#, c-format
msgid " [FDPIC ABI supplement]"
msgstr ""
-#: elf32-arm.c:15240 /work/sources/binutils/current/bfd/elfnn-aarch64.c:7314
+#: elf32-arm.c:15254 elfnn-aarch64.c:7381
#, c-format
msgid "<Unrecognised flag bits set>"
msgstr ""
-#: elf32-arm.c:15357 elf32-i386.c:1529 elf32-s390.c:960 elf32-tic6x.c:2783
-#: elf32-tilepro.c:1478 elf32-xtensa.c:1034 elf64-s390.c:882
-#: elf64-x86-64.c:1874 elfxx-sparc.c:1421 elfxx-tilegx.c:1699
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:7602
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:552
+#: elf32-arm.c:15371 elf32-i386.c:1542 elf32-s390.c:960 elf32-tic6x.c:2783
+#: elf32-tilepro.c:1478 elf32-xtensa.c:1072 elf64-s390.c:882
+#: elf64-x86-64.c:1918 elfxx-sparc.c:1421 elfxx-tilegx.c:1699
+#: elfnn-aarch64.c:7669 elfnn-riscv.c:560
#, c-format
msgid "%pB: bad symbol index: %d"
msgstr ""
-#: elf32-arm.c:15746
+#: elf32-arm.c:15760
#, c-format
msgid ""
"FDPIC does not yet support %s relocation to become dynamic for executable"
msgstr ""
-#: elf32-arm.c:16740 elf32-csky.c:1932 elf32-hppa.c:2096 elf32-lm32.c:1999
-#: elf32-m32r.c:2110 elf32-metag.c:2795 elf32-nds32.c:4334 elf32-or1k.c:2858
-#: elf32-ppc.c:5442 elf32-s390.c:1853 elf32-sh.c:2977 elf32-tic6x.c:3252
-#: elf32-tilepro.c:2244 elf64-ppc.c:9713 elf64-s390.c:1789 elfxx-sparc.c:2432
-#: elfxx-tilegx.c:2490 elfxx-x86.c:571
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:8865
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:1155
+#: elf32-arm.c:16754 elf32-csky.c:1932 elf32-hppa.c:2123 elf32-lm32.c:1999
+#: elf32-m32r.c:2110 elf32-metag.c:2795 elf32-nds32.c:4334 elf32-or1k.c:2967
+#: elf32-ppc.c:5451 elf32-s390.c:1853 elf32-sh.c:2977 elf32-tic6x.c:3252
+#: elf32-tilepro.c:2244 elf64-alpha.c:2020 elf64-alpha.c:2715 elf64-ppc.c:9917
+#: elf64-s390.c:1789 elfxx-sparc.c:2432 elfxx-tilegx.c:2490 elfxx-x86.c:574
+#: elfnn-aarch64.c:8934 elfnn-riscv.c:1163
#, c-format
msgid "%pB: dynamic relocation against `%pT' in read-only section `%pA'\n"
msgstr ""
-#: elf32-arm.c:17036
+#: elf32-arm.c:17050
#, c-format
msgid "errors encountered processing file %pB"
msgstr ""
-#: elf32-arm.c:17483 elflink.c:12692 elflink.c:12739
+#: elf32-arm.c:17497 elflink.c:12808 elflink.c:12855
#, c-format
msgid "could not find section %s"
msgstr ""
-#: elf32-arm.c:18702
+#: elf32-arm.c:18716
#, c-format
msgid "%pB: error: Cortex-A8 erratum stub is allocated in unsafe location"
msgstr ""
#. There's not much we can do apart from complain if this
#. happens.
-#: elf32-arm.c:18729
+#: elf32-arm.c:18743
#, c-format
msgid "%pB: error: Cortex-A8 erratum stub out of range (input file too large)"
msgstr ""
-#: elf32-arm.c:19556 elf32-arm.c:19578
+#: elf32-arm.c:19570 elf32-arm.c:19592
#, c-format
msgid "%pB: error: VFP11 veneer out of range"
msgstr ""
-#: elf32-arm.c:19629
+#: elf32-arm.c:19643
#, c-format
msgid ""
"%pB(%#<PRIx64>): error: cannot create STM32L4XX veneer; jump out of range by "
"%<PRId64> bytes; cannot encode branch instruction"
msgstr ""
-#: elf32-arm.c:19668
+#: elf32-arm.c:19682
#, c-format
msgid "%pB: error: cannot create STM32L4XX veneer"
msgstr ""
-#: elf32-arm.c:20749
+#: elf32-arm.c:20763
#, c-format
msgid "error: %pB is already in final BE8 format"
msgstr ""
-#: elf32-arm.c:20825
+#: elf32-arm.c:20839
#, c-format
msgid ""
"error: source object %pB has EABI version %d, but target %pB has EABI "
"version %d"
msgstr ""
-#: elf32-arm.c:20840
+#: elf32-arm.c:20854
#, c-format
msgid "error: %pB is compiled for APCS-%d, whereas target %pB uses APCS-%d"
msgstr ""
-#: elf32-arm.c:20850
+#: elf32-arm.c:20864
#, c-format
msgid ""
"error: %pB passes floats in float registers, whereas %pB passes them in "
"integer registers"
msgstr ""
-#: elf32-arm.c:20854
+#: elf32-arm.c:20868
#, c-format
msgid ""
"error: %pB passes floats in integer registers, whereas %pB passes them in "
"float registers"
msgstr ""
-#: elf32-arm.c:20864 elf32-arm.c:20868 elf32-arm.c:20878
+#: elf32-arm.c:20878 elf32-arm.c:20882 elf32-arm.c:20892
#, c-format
msgid "error: %pB uses %s instructions, whereas %pB does not"
msgstr ""
-#: elf32-arm.c:20882
+#: elf32-arm.c:20896
#, c-format
msgid "error: %pB does not use %s instructions, whereas %pB does"
msgstr ""
-#: elf32-arm.c:20901
+#: elf32-arm.c:20915
#, c-format
msgid "error: %pB uses software FP, whereas %pB uses hardware FP"
msgstr ""
-#: elf32-arm.c:20905
+#: elf32-arm.c:20919
#, c-format
msgid "error: %pB uses hardware FP, whereas %pB uses software FP"
msgstr ""
-#: elf32-arm.c:20919
+#: elf32-arm.c:20933
#, c-format
msgid "warning: %pB supports interworking, whereas %pB does not"
msgstr ""
-#: elf32-arm.c:20925
+#: elf32-arm.c:20939
#, c-format
msgid "warning: %pB does not support interworking, whereas %pB does"
msgstr ""
@@ -2053,13 +2118,13 @@ msgstr ""
#: elf32-avr.c:1518 elf32-bfin.c:3130 elf32-cris.c:2041 elf32-epiphany.c:577
#: elf32-fr30.c:602 elf32-frv.c:4053 elf32-ft32.c:502 elf32-ip2k.c:1493
#: elf32-iq2000.c:699 elf32-m32c.c:632 elf32-mep.c:534 elf32-metag.c:1998
-#: elf32-moxie.c:296 elf32-msp430.c:1369 elf32-mt.c:406 elf32-or1k.c:1767
+#: elf32-moxie.c:296 elf32-msp430.c:1375 elf32-mt.c:406 elf32-or1k.c:1829
#: elf32-tilepro.c:3513 elf32-v850.c:2298 elf32-visium.c:688
#: elf32-xstormy16.c:937 elf64-bpf.c:496 elf64-mmix.c:1549 elfxx-tilegx.c:3877
msgid "internal error: dangerous relocation"
msgstr ""
-#: elf32-avr.c:3338 /work/sources/binutils/current/bfd/elfnn-aarch64.c:3267
+#: elf32-avr.c:3338 elfnn-aarch64.c:3267
#, c-format
msgid "cannot create stub entry %s"
msgstr ""
@@ -2073,8 +2138,8 @@ msgstr ""
msgid "%pB(%pA+%#<PRIx64>): unresolvable relocation against symbol `%s'"
msgstr ""
-#: elf32-bfin.c:1616 elf32-i386.c:3443 elf32-m68k.c:3989 elf32-s390.c:3268
-#: elf64-s390.c:3217 elf64-x86-64.c:4011
+#: elf32-bfin.c:1616 elf32-i386.c:3461 elf32-m68k.c:3989 elf32-s390.c:3268
+#: elf64-s390.c:3217 elf64-x86-64.c:4128
#, c-format
msgid "%pB(%pA+%#<PRIx64>): reloc against `%s': error %d"
msgstr ""
@@ -2098,7 +2163,7 @@ msgstr ""
msgid "cannot emit fixups in read-only section"
msgstr ""
-#: elf32-bfin.c:2821 elf32-bfin.c:2949 elf32-lm32.c:1049 elf32-sh.c:4513
+#: elf32-bfin.c:2821 elf32-bfin.c:2949 elf32-lm32.c:1049 elf32-sh.c:4500
msgid "cannot emit dynamic relocations in read-only section"
msgstr ""
@@ -2114,27 +2179,27 @@ msgstr ""
msgid "warning: relocation references a different segment"
msgstr ""
-#: elf32-bfin.c:4782 elf32-frv.c:6597
+#: elf32-bfin.c:4786 elf32-frv.c:6601
#, c-format
msgid "%pB: cannot link non-fdpic object file into fdpic executable"
msgstr ""
-#: elf32-bfin.c:4786 elf32-frv.c:6601
+#: elf32-bfin.c:4790 elf32-frv.c:6605
#, c-format
msgid "%pB: cannot link fdpic object file into non-fdpic executable"
msgstr ""
-#: elf32-bfin.c:4936
+#: elf32-bfin.c:4940
#, c-format
msgid "*** check this relocation %s"
msgstr ""
-#: elf32-bfin.c:5052
+#: elf32-bfin.c:5056
msgid ""
"the bfin target does not currently support the generation of copy relocations"
msgstr ""
-#: elf32-bfin.c:5346 elf32-cr16.c:2801 elf32-m68k.c:4403
+#: elf32-bfin.c:5350 elf32-cr16.c:2801 elf32-m68k.c:4403
msgid "unsupported relocation type"
msgstr ""
@@ -2304,7 +2369,7 @@ msgid ""
msgstr ""
#. The r_type is error, not support it.
-#: elf32-csky.c:4224 elf32-i386.c:351
+#: elf32-csky.c:4232 elf32-i386.c:351
#, c-format
msgid "%pB: unsupported relocation type: %#x"
msgstr ""
@@ -2407,18 +2472,18 @@ msgstr ""
msgid "%H: reloc against `%s': %s\n"
msgstr ""
-#: elf32-frv.c:6508
+#: elf32-frv.c:6512
#, c-format
msgid ""
"%pB: compiled with %s and linked with modules that use non-pic relocations"
msgstr ""
-#: elf32-frv.c:6562 elf32-iq2000.c:830 elf32-m32c.c:876
+#: elf32-frv.c:6566 elf32-iq2000.c:830 elf32-m32c.c:876
#, c-format
msgid "%pB: compiled with %s and linked with modules compiled with %s"
msgstr ""
-#: elf32-frv.c:6575
+#: elf32-frv.c:6579
#, c-format
msgid ""
"%pB: uses different unknown e_flags (%#x) fields than previous modules (%#x)"
@@ -2429,118 +2494,124 @@ msgstr ""
msgid "%pB: relocations in generic ELF (EM: %d)"
msgstr ""
-#: elf32-hppa.c:842 elf32-hppa.c:3518
+#: elf32-hppa.c:767 elf32-hppa.c:848 elf64-ppc.c:11918
+msgid ""
+"%F%P: Could not assign %pA to an output section. Retry without --enable-non-"
+"contiguous-regions.\n"
+msgstr ""
+
+#: elf32-hppa.c:869 elf32-hppa.c:3545
#, c-format
msgid ""
"%pB(%pA+%#<PRIx64>): cannot reach %s, recompile with -ffunction-sections"
msgstr ""
-#: elf32-hppa.c:1256
+#: elf32-hppa.c:1283
#, c-format
msgid ""
"%pB: relocation %s can not be used when making a shared object; recompile "
"with -fPIC"
msgstr ""
-#: elf32-hppa.c:2695
+#: elf32-hppa.c:2722
#, c-format
msgid "%pB: duplicate export stub %s"
msgstr ""
-#: elf32-hppa.c:3351
+#: elf32-hppa.c:3378
#, c-format
msgid ""
"%pB(%pA+%#<PRIx64>): %s fixup for insn %#x is not supported in a non-shared "
"link"
msgstr ""
-#: elf32-hppa.c:4147
+#: elf32-hppa.c:4174
#, c-format
msgid "%s has both normal and TLS relocs"
msgstr ""
-#: elf32-hppa.c:4165
+#: elf32-hppa.c:4192
#, c-format
msgid "%pB:%s has both normal and TLS relocs"
msgstr ""
-#: elf32-hppa.c:4224
+#: elf32-hppa.c:4251
#, c-format
msgid "%pB(%pA+%#<PRIx64>): cannot handle %s for %s"
msgstr ""
-#: elf32-hppa.c:4528
+#: elf32-hppa.c:4555
msgid ".got section not immediately after .plt section"
msgstr ""
-#: elf32-i386.c:1178 elf64-x86-64.c:1377
+#: elf32-i386.c:1178 elf64-x86-64.c:1389
#, c-format
msgid ""
"%pB: TLS transition from %s to %s against `%s' at %#<PRIx64> in section `"
"%pA' failed"
msgstr ""
-#: elf32-i386.c:1269
+#: elf32-i386.c:1281
#, c-format
msgid ""
"%pB: direct GOT relocation R_386_GOT32X against `%s' without base register "
"can not be used when making a shared object"
msgstr ""
-#: elf32-i386.c:1722 elf32-s390.c:1188 elf32-sh.c:5662 elf32-tilepro.c:1591
-#: elf32-xtensa.c:1206 elf64-s390.c:1120 elfxx-sparc.c:1590 elfxx-tilegx.c:1804
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:464
+#: elf32-i386.c:1739 elf32-s390.c:1188 elf32-sh.c:5649 elf32-tilepro.c:1591
+#: elf32-xtensa.c:1244 elf64-s390.c:1120 elfxx-sparc.c:1590 elfxx-tilegx.c:1804
+#: elfnn-riscv.c:472
#, c-format
msgid "%pB: `%s' accessed both as normal and thread local symbol"
msgstr ""
-#: elf32-i386.c:1794
+#: elf32-i386.c:1811
#, c-format
msgid "%pB: unsupported non-PIC call to IFUNC `%s'"
msgstr ""
-#: elf32-i386.c:2373 elf64-x86-64.c:2674
+#: elf32-i386.c:2391 elf64-x86-64.c:2737
#, c-format
msgid "%pB: relocation %s against STT_GNU_IFUNC symbol `%s' isn't supported"
msgstr ""
-#: elf32-i386.c:2406 elf32-i386.c:3654 elf32-i386.c:3795 elf64-x86-64.c:2731
-#: elf64-x86-64.c:4184 elf64-x86-64.c:4340
+#: elf32-i386.c:2424 elf32-i386.c:3672 elf32-i386.c:3813 elf64-x86-64.c:2794
+#: elf64-x86-64.c:4301 elf64-x86-64.c:4457
#, c-format
msgid "Local IFUNC function `%s' in %pB\n"
msgstr ""
-#: elf32-i386.c:2563
+#: elf32-i386.c:2581
#, c-format
msgid ""
"%pB: direct GOT relocation %s against `%s' without base register can not be "
"used when making a shared object"
msgstr ""
-#: elf32-i386.c:2598 elf64-x86-64.c:2923
+#: elf32-i386.c:2616 elf64-x86-64.c:2993
msgid "hidden symbol"
msgstr ""
-#: elf32-i386.c:2601 elf64-x86-64.c:2926
+#: elf32-i386.c:2619 elf64-x86-64.c:2996
msgid "internal symbol"
msgstr ""
-#: elf32-i386.c:2604 elf64-x86-64.c:2929
+#: elf32-i386.c:2622 elf64-x86-64.c:2999
msgid "protected symbol"
msgstr ""
-#: elf32-i386.c:2607 elf64-x86-64.c:2932
+#: elf32-i386.c:2625 elf64-x86-64.c:3002
msgid "symbol"
msgstr ""
-#: elf32-i386.c:2613
+#: elf32-i386.c:2631
#, c-format
msgid ""
"%pB: relocation R_386_GOTOFF against undefined %s `%s' can not be used when "
"making a shared object"
msgstr ""
-#: elf32-i386.c:2626
+#: elf32-i386.c:2644
#, c-format
msgid ""
"%pB: relocation R_386_GOTOFF against protected %s `%s' can not be used when "
@@ -2567,11 +2638,11 @@ msgid ""
"ip2k linker: redundant page instruction at %#<PRIx64> (dest = %#<PRIx64>)"
msgstr ""
-#: elf32-lm32.c:651 elf32-nios2.c:3141
+#: elf32-lm32.c:651 elf32-nios2.c:3152
msgid "global pointer relative relocation when _gp not defined"
msgstr ""
-#: elf32-lm32.c:706 elf32-nios2.c:3578
+#: elf32-lm32.c:706 elf32-nios2.c:3589
msgid "global pointer relative address out of range"
msgstr ""
@@ -2594,7 +2665,7 @@ msgstr ""
msgid "%pB: instruction set mismatch with previous modules"
msgstr ""
-#: elf32-m32r.c:3508 elf32-nds32.c:6995
+#: elf32-m32r.c:3508 elf32-nds32.c:6999
#, c-format
msgid "private flags = %lx"
msgstr ""
@@ -2718,7 +2789,7 @@ msgstr ""
msgid " [XGATE RAM offsetting]"
msgstr ""
-#: elf32-m68k.c:1220 elf32-m68k.c:1221 vms-alpha.c:7581 vms-alpha.c:7597
+#: elf32-m68k.c:1220 elf32-m68k.c:1221 vms-alpha.c:7635 vms-alpha.c:7651
msgid "unknown"
msgstr ""
@@ -2785,50 +2856,50 @@ msgstr ""
msgid "32bits gp relative relocation occurs for an external symbol"
msgstr ""
-#: elf32-msp430.c:840 elf32-msp430.c:1154
+#: elf32-msp430.c:846 elf32-msp430.c:1160
msgid "try enabling relaxation to avoid relocation truncations"
msgstr ""
-#: elf32-msp430.c:1361
+#: elf32-msp430.c:1367
msgid "internal error: branch/jump to an odd address detected"
msgstr ""
-#: elf32-msp430.c:2360
+#: elf32-msp430.c:2535
#, c-format
msgid "warning: %pB: unknown MSPABI object attribute %d"
msgstr ""
-#: elf32-msp430.c:2461
+#: elf32-msp430.c:2636
#, c-format
msgid "error: %pB uses %s instructions but %pB uses %s"
msgstr ""
-#: elf32-msp430.c:2473
+#: elf32-msp430.c:2648
#, c-format
msgid "error: %pB uses the %s code model whereas %pB uses the %s code model"
msgstr ""
-#: elf32-msp430.c:2486
+#: elf32-msp430.c:2661
#, c-format
msgid "error: %pB uses the large code model but %pB uses MSP430 instructions"
msgstr ""
-#: elf32-msp430.c:2497
+#: elf32-msp430.c:2672
#, c-format
msgid "error: %pB uses the %s data model whereas %pB uses the %s data model"
msgstr ""
-#: elf32-msp430.c:2510
+#: elf32-msp430.c:2685
#, c-format
msgid "error: %pB uses the small code model but %pB uses the %s data model"
msgstr ""
-#: elf32-msp430.c:2522
+#: elf32-msp430.c:2697
#, c-format
msgid "error: %pB uses the %s data model but %pB only uses MSP430 instructions"
msgstr ""
-#: elf32-msp430.c:2547
+#: elf32-msp430.c:2722
#, c-format
msgid ""
"error: %pB can use the upper region for data, but %pB assumes data is "
@@ -2867,151 +2938,151 @@ msgid ""
"current %u-byte"
msgstr ""
-#: elf32-nds32.c:6831
+#: elf32-nds32.c:6835
#, c-format
msgid "%pB: warning: endian mismatch with previous modules"
msgstr ""
-#: elf32-nds32.c:6845
+#: elf32-nds32.c:6849
#, c-format
msgid ""
"%pB: warning: older version of object file encountered, please recompile "
"with current tool chain"
msgstr ""
-#: elf32-nds32.c:6933
+#: elf32-nds32.c:6937
#, c-format
msgid "%pB: error: ABI mismatch with previous modules"
msgstr ""
-#: elf32-nds32.c:6943
+#: elf32-nds32.c:6947
#, c-format
msgid "%pB: error: instruction set mismatch with previous modules"
msgstr ""
-#: elf32-nds32.c:6970
+#: elf32-nds32.c:6974
#, c-format
msgid "%pB: warning: incompatible elf-versions %s and %s"
msgstr ""
-#: elf32-nds32.c:7001
+#: elf32-nds32.c:7005
#, c-format
msgid ": n1 instructions"
msgstr ""
-#: elf32-nds32.c:7004
+#: elf32-nds32.c:7008
#, c-format
msgid ": n1h instructions"
msgstr ""
-#: elf32-nds32.c:9465
+#: elf32-nds32.c:9469
#, c-format
msgid "%pB: error: search_nds32_elf_blank reports wrong node"
msgstr ""
-#: elf32-nds32.c:9725
+#: elf32-nds32.c:9729
#, c-format
msgid "%pB: warning: %s points to unrecognized reloc at %#<PRIx64>"
msgstr ""
-#: elf32-nds32.c:12978
+#: elf32-nds32.c:12994
#, c-format
msgid "%pB: nested OMIT_FP in %pA"
msgstr ""
-#: elf32-nds32.c:12997
+#: elf32-nds32.c:13013
#, c-format
msgid "%pB: unmatched OMIT_FP in %pA"
msgstr ""
-#: elf32-nds32.c:13279 reloc.c:8442
+#: elf32-nds32.c:13295 reloc.c:8470
#, c-format
msgid "%X%P: %pB(%pA): relocation \"%pR\" goes out of range\n"
msgstr ""
-#: elf32-nios2.c:2930
+#: elf32-nios2.c:2941
#, c-format
msgid "error: %pB: big-endian R2 is not supported"
msgstr ""
-#: elf32-nios2.c:3822
+#: elf32-nios2.c:3833
#, c-format
msgid ""
"global pointer relative relocation at address %#<PRIx64> when _gp not "
"defined\n"
msgstr ""
-#: elf32-nios2.c:3852
+#: elf32-nios2.c:3863
#, c-format
msgid ""
"unable to reach %s (at %#<PRIx64>) from the global pointer (at %#<PRIx64>) "
"because the offset (%<PRId64>) is out of the allowed range, -32678 to 32767\n"
msgstr ""
-#: elf32-nios2.c:4507 elf32-pru.c:931
+#: elf32-nios2.c:4518 elf32-pru.c:931
msgid "relocation out of range"
msgstr ""
-#: elf32-nios2.c:4517 elf32-pru.c:941 elf32-tic6x.c:2716
+#: elf32-nios2.c:4528 elf32-pru.c:941 elf32-tic6x.c:2716
msgid "dangerous relocation"
msgstr ""
-#: elf32-nios2.c:5392
+#: elf32-nios2.c:5403
#, c-format
msgid "dynamic variable `%s' is zero size"
msgstr ""
-#: elf32-or1k.c:1177
+#: elf32-or1k.c:1214
#, c-format
msgid "%pB: Cannot handle relocation value size of %d"
msgstr ""
-#: elf32-or1k.c:1286
+#: elf32-or1k.c:1321
#, c-format
msgid "%pB: unknown relocation type %d"
msgstr ""
-#: elf32-or1k.c:1340
+#: elf32-or1k.c:1375
#, c-format
msgid "%pB: addend should be zero for plt relocations"
msgstr ""
-#: elf32-or1k.c:1445
+#: elf32-or1k.c:1480
#, c-format
msgid "%pB: addend should be zero for got relocations"
msgstr ""
-#: elf32-or1k.c:1462
+#: elf32-or1k.c:1497
#, c-format
msgid "%pB: gotoff relocation against dynamic symbol %s"
msgstr ""
-#: elf32-or1k.c:1479 elf64-alpha.c:4456 elf64-alpha.c:4600
+#: elf32-or1k.c:1514 elf64-alpha.c:4471 elf64-alpha.c:4615
#, c-format
msgid "%pB: pc-relative relocation against dynamic symbol %s"
msgstr ""
-#: elf32-or1k.c:1493
+#: elf32-or1k.c:1528
#, c-format
msgid "%pB: non-pic relocation against symbol %s"
msgstr ""
-#: elf32-or1k.c:1577
+#: elf32-or1k.c:1612
#, c-format
msgid "%pB: support for local dynamic not implemented"
msgstr ""
-#: elf32-or1k.c:1729
+#: elf32-or1k.c:1791
#, c-format
msgid "%pB: will not resolve runtime TLS relocation"
msgstr ""
-#: elf32-or1k.c:2071
+#: elf32-or1k.c:2133
#, c-format
msgid "%pB: bad relocation section name `%s'"
msgstr ""
-#: elf32-or1k.c:3218
+#: elf32-or1k.c:3322
#, c-format
msgid "%pB: %s flag mismatch with previous modules"
msgstr ""
@@ -3021,97 +3092,97 @@ msgstr ""
msgid "generic linker can't handle %s"
msgstr ""
-#: elf32-ppc.c:1622
+#: elf32-ppc.c:1628
#, c-format
msgid "corrupt %s section in %pB"
msgstr ""
-#: elf32-ppc.c:1642
+#: elf32-ppc.c:1648
#, c-format
msgid "unable to read in %s section from %pB"
msgstr ""
-#: elf32-ppc.c:1684
+#: elf32-ppc.c:1690
#, c-format
msgid "warning: unable to set size of %s section in %pB"
msgstr ""
-#: elf32-ppc.c:1734
+#: elf32-ppc.c:1740
msgid "failed to allocate space for new APUinfo section"
msgstr ""
-#: elf32-ppc.c:1753
+#: elf32-ppc.c:1759
msgid "failed to compute new APUinfo section"
msgstr ""
-#: elf32-ppc.c:1756
+#: elf32-ppc.c:1762
msgid "failed to install new APUinfo section"
msgstr ""
-#: elf32-ppc.c:2864
+#: elf32-ppc.c:2870
#, c-format
msgid "%pB: relocation %s cannot be used when making a shared object"
msgstr ""
-#: elf32-ppc.c:3581 elf32-ppc.c:3589
+#: elf32-ppc.c:3587 elf32-ppc.c:3595
#, c-format
msgid "%pB uses hard float, %pB uses soft float"
msgstr ""
-#: elf32-ppc.c:3597 elf32-ppc.c:3605
+#: elf32-ppc.c:3603 elf32-ppc.c:3611
#, c-format
msgid ""
"%pB uses double-precision hard float, %pB uses single-precision hard float"
msgstr ""
-#: elf32-ppc.c:3624 elf32-ppc.c:3632
+#: elf32-ppc.c:3630 elf32-ppc.c:3638
#, c-format
msgid "%pB uses 64-bit long double, %pB uses 128-bit long double"
msgstr ""
-#: elf32-ppc.c:3640 elf32-ppc.c:3648
+#: elf32-ppc.c:3646 elf32-ppc.c:3654
#, c-format
msgid "%pB uses IBM long double, %pB uses IEEE long double"
msgstr ""
-#: elf32-ppc.c:3715 elf32-ppc.c:3724
+#: elf32-ppc.c:3721 elf32-ppc.c:3730
#, c-format
msgid "%pB uses AltiVec vector ABI, %pB uses SPE vector ABI"
msgstr ""
-#: elf32-ppc.c:3753 elf32-ppc.c:3762
+#: elf32-ppc.c:3759 elf32-ppc.c:3768
#, c-format
msgid "%pB uses r3/r4 for small structure returns, %pB uses memory"
msgstr ""
-#: elf32-ppc.c:3823
+#: elf32-ppc.c:3832
#, c-format
msgid ""
"%pB: compiled with -mrelocatable and linked with modules compiled normally"
msgstr ""
-#: elf32-ppc.c:3831
+#: elf32-ppc.c:3840
#, c-format
msgid ""
"%pB: compiled normally and linked with modules compiled with -mrelocatable"
msgstr ""
-#: elf32-ppc.c:3900
+#: elf32-ppc.c:3909
#, c-format
msgid "%pB(%pA+0x%lx): expected 16A style relocation on 0x%08x insn"
msgstr ""
-#: elf32-ppc.c:3919
+#: elf32-ppc.c:3928
#, c-format
msgid "%pB(%pA+0x%lx): expected 16D style relocation on 0x%08x insn"
msgstr ""
-#: elf32-ppc.c:4022
+#: elf32-ppc.c:4031
#, c-format
msgid "bss-plt forced due to %pB"
msgstr ""
-#: elf32-ppc.c:4024
+#: elf32-ppc.c:4033
msgid "bss-plt forced by profiling"
msgstr ""
@@ -3119,40 +3190,40 @@ msgstr ""
#. could just mark this symbol to exclude it
#. from tls optimization but it's safer to skip
#. the entire optimization.
-#: elf32-ppc.c:4599 elf64-ppc.c:8099
+#: elf32-ppc.c:4608 elf64-ppc.c:8277
#, c-format
msgid "%H arg lost __tls_get_addr, TLS optimization disabled\n"
msgstr ""
-#: elf32-ppc.c:5550 elf32-sh.c:3080 elf32-tilepro.c:2338 elfxx-sparc.c:2531
+#: elf32-ppc.c:5559 elf32-sh.c:3080 elf32-tilepro.c:2338 elfxx-sparc.c:2531
#: elfxx-tilegx.c:2578
#, c-format
msgid "%pB: dynamic relocation in read-only section `%pA'\n"
msgstr ""
-#: elf32-ppc.c:7430
+#: elf32-ppc.c:7439
msgid "%P: %H: error: %s with unexpected instruction %x\n"
msgstr ""
-#: elf32-ppc.c:7467
+#: elf32-ppc.c:7476
msgid "%H: fixup branch overflow\n"
msgstr ""
-#: elf32-ppc.c:7507 elf32-ppc.c:7543
+#: elf32-ppc.c:7516 elf32-ppc.c:7552
#, c-format
msgid "%pB(%pA+%#<PRIx64>): error: %s with unexpected instruction %#x"
msgstr ""
-#: elf32-ppc.c:7607
+#: elf32-ppc.c:7616
#, c-format
msgid "%X%H: unsupported bss-plt -fPIC ifunc %s\n"
msgstr ""
-#: elf32-ppc.c:7646 elf64-ppc.c:16456
+#: elf32-ppc.c:7655 elf64-ppc.c:16914
msgid "%H: warning: %s unexpected insn %#x.\n"
msgstr ""
-#: elf32-ppc.c:7955
+#: elf32-ppc.c:7964
#, c-format
msgid "%H: non-zero addend on %s reloc against `%s'\n"
msgstr ""
@@ -3165,54 +3236,54 @@ msgstr ""
#. local won't have the +32k reloc addend trick marking
#. -fPIC code, so the linker won't know whether r30 is
#. _GLOBAL_OFFSET_TABLE_ or pointing into a .got2 section.
-#: elf32-ppc.c:7987
+#: elf32-ppc.c:7996
#, c-format
msgid "%X%H: @local call to ifunc %s\n"
msgstr ""
-#: elf32-ppc.c:8165
+#: elf32-ppc.c:8174
#, c-format
msgid "%H: relocation %s for indirect function %s unsupported\n"
msgstr ""
-#: elf32-ppc.c:8499 elf32-ppc.c:8530 elf32-ppc.c:8621 elf32-ppc.c:8717
+#: elf32-ppc.c:8508 elf32-ppc.c:8539 elf32-ppc.c:8630 elf32-ppc.c:8726
#, c-format
msgid ""
"%pB: the target (%s) of a %s relocation is in the wrong output section (%s)"
msgstr ""
-#: elf32-ppc.c:8847 elf32-ppc.c:8865
+#: elf32-ppc.c:8856 elf32-ppc.c:8874
msgid "%X%P: %H: %s relocation unsupported for bss-plt\n"
msgstr ""
-#: elf32-ppc.c:8946
+#: elf32-ppc.c:8955
#, c-format
msgid "%H: error: %s against `%s' not a multiple of %u\n"
msgstr ""
-#: elf32-ppc.c:8975
+#: elf32-ppc.c:8984
#, c-format
msgid "%H: unresolvable %s relocation against symbol `%s'\n"
msgstr ""
-#: elf32-ppc.c:9056
+#: elf32-ppc.c:9065
#, c-format
msgid "%H: %s reloc against `%s': error %d\n"
msgstr ""
-#: elf32-ppc.c:9947 elf64-ppc.c:17009
+#: elf32-ppc.c:9956 elf64-ppc.c:17465
msgid ""
"%X%P: text relocations and GNU indirect functions will result in a segfault "
"at runtime\n"
msgstr ""
-#: elf32-ppc.c:9951 elf64-ppc.c:17013
+#: elf32-ppc.c:9960 elf64-ppc.c:17469
msgid ""
"%P: warning: text relocations and GNU indirect functions may result in a "
"segfault at runtime\n"
msgstr ""
-#: elf32-ppc.c:9996
+#: elf32-ppc.c:10005
#, c-format
msgid "%s not defined in linker created %pA"
msgstr ""
@@ -3234,7 +3305,7 @@ msgstr ""
msgid "warning: RL78_SYM reloc with an unknown symbol"
msgstr ""
-#: elf32-rl78.c:1084 elf32-rx.c:1456
+#: elf32-rl78.c:1084 elf32-rx.c:1461
#, c-format
msgid "%pB(%pA): error: call to undefined function '%s'"
msgstr ""
@@ -3263,17 +3334,17 @@ msgstr ""
msgid " [64-bit doubles]"
msgstr ""
-#: elf32-rx.c:605
+#: elf32-rx.c:607
#, c-format
msgid "%pB:%pA: table entry %s outside table"
msgstr ""
-#: elf32-rx.c:612
+#: elf32-rx.c:614
#, c-format
msgid "%pB:%pA: table entry %s not word-aligned within table"
msgstr ""
-#: elf32-rx.c:684
+#: elf32-rx.c:689
#, c-format
msgid "%pB:%pA: warning: deprecated Red Hat reloc %s detected against: %s"
msgstr ""
@@ -3282,36 +3353,36 @@ msgstr ""
#. an absolute address is being computed. There are special cases
#. for relocs against symbols that are known to be referenced in
#. crt0.o before the PID base address register has been initialised.
-#: elf32-rx.c:704
+#: elf32-rx.c:709
#, c-format
msgid "%pB(%pA): unsafe PID relocation %s at %#<PRIx64> (against %s in %s)"
msgstr ""
-#: elf32-rx.c:1288
+#: elf32-rx.c:1293
msgid "warning: RX_SYM reloc with an unknown symbol"
msgstr ""
-#: elf32-rx.c:3167
+#: elf32-rx.c:3175
#, c-format
msgid "there is a conflict merging the ELF header flags from %pB"
msgstr ""
-#: elf32-rx.c:3170
+#: elf32-rx.c:3178
#, c-format
msgid " the input file's flags: %s"
msgstr ""
-#: elf32-rx.c:3172
+#: elf32-rx.c:3180
#, c-format
msgid " the output file's flags: %s"
msgstr ""
-#: elf32-rx.c:3790
+#: elf32-rx.c:3786
#, c-format
msgid "%pB:%pA: table %s missing corresponding %s"
msgstr ""
-#: elf32-rx.c:3798
+#: elf32-rx.c:3794
#, c-format
msgid "%pB:%pA: %s and %s must be in the same input section"
msgstr ""
@@ -3321,35 +3392,35 @@ msgstr ""
msgid "%pB(%pA+%#<PRIx64>): invalid instruction for TLS relocation %s"
msgstr ""
-#: elf32-score.c:1521 elf32-score7.c:1382 elfxx-mips.c:3819
+#: elf32-score.c:1521 elf32-score7.c:1382 elfxx-mips.c:3824
msgid "not enough GOT space for local GOT entries"
msgstr ""
-#: elf32-score.c:2746
+#: elf32-score.c:2747
msgid "address not word aligned"
msgstr ""
-#: elf32-score.c:2827 elf32-score7.c:2632
+#: elf32-score.c:2828 elf32-score7.c:2633
#, c-format
msgid "%pB: malformed reloc detected for section %pA"
msgstr ""
-#: elf32-score.c:2881 elf32-score7.c:2686
+#: elf32-score.c:2882 elf32-score7.c:2687
#, c-format
msgid "%pB: CALL15 reloc at %#<PRIx64> not against global symbol"
msgstr ""
-#: elf32-score.c:4002 elf32-score7.c:3807
+#: elf32-score.c:4003 elf32-score7.c:3808
#, c-format
msgid " [pic]"
msgstr ""
-#: elf32-score.c:4006 elf32-score7.c:3811
+#: elf32-score.c:4007 elf32-score7.c:3812
#, c-format
msgid " [fix dep]"
msgstr ""
-#: elf32-score.c:4049 elf32-score7.c:3854
+#: elf32-score.c:4054 elf32-score7.c:3859
#, c-format
msgid "%pB: warning: linking PIC files with non-PIC files"
msgstr ""
@@ -3359,44 +3430,40 @@ msgstr ""
msgid "%pB: %#<PRIx64>: warning: R_SH_USES points to unrecognized insn 0x%x"
msgstr ""
-#: elf32-sh.c:3635
-msgid "unexpected STO_SH5_ISA32 on local symbol is not handled"
-msgstr ""
-
-#: elf32-sh.c:3882
+#: elf32-sh.c:3869
#, c-format
msgid ""
"%pB: %#<PRIx64>: fatal: unaligned branch target for relax-support relocation"
msgstr ""
-#: elf32-sh.c:3912 elf32-sh.c:3928
+#: elf32-sh.c:3899 elf32-sh.c:3915
#, c-format
msgid "%pB: %#<PRIx64>: fatal: unaligned %s relocation %#<PRIx64>"
msgstr ""
-#: elf32-sh.c:3944
+#: elf32-sh.c:3931
#, c-format
msgid ""
"%pB: %#<PRIx64>: fatal: R_SH_PSHA relocation %<PRId64> not in range -32..32"
msgstr ""
-#: elf32-sh.c:3960
+#: elf32-sh.c:3947
#, c-format
msgid ""
"%pB: %#<PRIx64>: fatal: R_SH_PSHL relocation %<PRId64> not in range -32..32"
msgstr ""
-#: elf32-sh.c:4090 elf32-sh.c:4485
+#: elf32-sh.c:4077 elf32-sh.c:4472
#, c-format
msgid "%pB(%pA+%#<PRIx64>): cannot emit fixup to `%s' in read-only section"
msgstr ""
-#: elf32-sh.c:4588
+#: elf32-sh.c:4575
#, c-format
msgid "%pB(%pA+%#<PRIx64>): %s relocation against external symbol \"%s\""
msgstr ""
-#: elf32-sh.c:4707
+#: elf32-sh.c:4694
#, c-format
msgid ""
"%pB(%pA): offset in relocation for GD->LE translation is too small: "
@@ -3404,125 +3471,125 @@ msgid ""
msgstr ""
#. The backslash is to prevent bogus trigraph detection.
-#: elf32-sh.c:4725
+#: elf32-sh.c:4712
#, c-format
msgid "%pB(%pA+%#<PRIx64>): unexpected instruction %#04X (expected 0xd4??)"
msgstr ""
-#: elf32-sh.c:4733
+#: elf32-sh.c:4720
#, c-format
msgid "%pB(%pA+%#<PRIx64>): unexpected instruction %#04X (expected 0xc7??)"
msgstr ""
-#: elf32-sh.c:4740
+#: elf32-sh.c:4727
#, c-format
msgid "%pB(%pA+%#<PRIx64>): unexpected instruction %#04X (expected 0xd1??)"
msgstr ""
-#: elf32-sh.c:4747
+#: elf32-sh.c:4734
#, c-format
msgid "%pB(%pA+%#<PRIx64>): unexpected instruction %#04X (expected 0x310c)"
msgstr ""
-#: elf32-sh.c:4754
+#: elf32-sh.c:4741
#, c-format
msgid "%pB(%pA+%#<PRIx64>): unexpected instruction %#04X (expected 0x410b)"
msgstr ""
-#: elf32-sh.c:4761
+#: elf32-sh.c:4748
#, c-format
msgid "%pB(%pA+%#<PRIx64>): unexpected instruction %#04X (expected 0x34cc)"
msgstr ""
-#: elf32-sh.c:4796
+#: elf32-sh.c:4783
#, c-format
msgid ""
"%pB(%pA): offset in relocation for IE->LE translation is too small: "
"%#<PRIx64>"
msgstr ""
-#: elf32-sh.c:4814
+#: elf32-sh.c:4801
#, c-format
msgid ""
"%pB(%pA+%#<PRIx64>): unexpected instruction %#04X (expected 0xd0??: mov.l)"
msgstr ""
-#: elf32-sh.c:4823
+#: elf32-sh.c:4810
#, c-format
msgid ""
"%pB(%pA+%#<PRIx64>): unexpected instruction %#04X (expected 0x0?12: stc)"
msgstr ""
-#: elf32-sh.c:4830
+#: elf32-sh.c:4817
#, c-format
msgid ""
"%pB(%pA+%#<PRIx64>): unexpected instruction %#04X (expected 0x0?ce: mov.l)"
msgstr ""
-#: elf32-sh.c:4945
+#: elf32-sh.c:4932
#, c-format
msgid ""
"%pB(%pA): offset in relocation for GD->IE translation is too small: "
"%#<PRIx64>"
msgstr ""
-#: elf32-sh.c:5013
+#: elf32-sh.c:5000
#, c-format
msgid ""
"%pB(%pA): offset in relocation for LD->LE translation is too small: "
"%#<PRIx64>"
msgstr ""
-#: elf32-sh.c:5141
+#: elf32-sh.c:5128
#, c-format
msgid "%X%C: relocation to \"%s\" references a different segment\n"
msgstr ""
-#: elf32-sh.c:5148
+#: elf32-sh.c:5135
#, c-format
msgid "%C: warning: relocation to \"%s\" references a different segment\n"
msgstr ""
-#: elf32-sh.c:5651 elf32-sh.c:5733
+#: elf32-sh.c:5638 elf32-sh.c:5720
#, c-format
msgid "%pB: `%s' accessed both as normal and FDPIC symbol"
msgstr ""
-#: elf32-sh.c:5657 elf32-sh.c:5738
+#: elf32-sh.c:5644 elf32-sh.c:5725
#, c-format
msgid "%pB: `%s' accessed both as FDPIC and thread local symbol"
msgstr ""
-#: elf32-sh.c:5688
+#: elf32-sh.c:5675
#, c-format
msgid "%pB: Function descriptor relocation with non-zero addend"
msgstr ""
-#: elf32-sh.c:5895 elf64-alpha.c:4692
+#: elf32-sh.c:5882 elf64-alpha.c:4707
#, c-format
msgid "%pB: TLS local exec code cannot be linked into shared objects"
msgstr ""
-#: elf32-sh.c:6010
+#: elf32-sh.c:5997
#, c-format
msgid "%pB: uses %s instructions while previous modules use %s instructions"
msgstr ""
-#: elf32-sh.c:6022
+#: elf32-sh.c:6009
#, c-format
msgid ""
"internal error: merge of architecture '%s' with architecture '%s' produced "
"unknown architecture"
msgstr ""
-#: elf32-sh.c:6059
+#: elf32-sh.c:6050
#, c-format
msgid ""
"%pB: uses instructions which are incompatible with instructions used in "
"previous modules"
msgstr ""
-#: elf32-sh.c:6072
+#: elf32-sh.c:6063
#, c-format
msgid "%pB: attempt to mix FDPIC and non-FDPIC objects"
msgstr ""
@@ -3537,6 +3604,12 @@ msgstr ""
msgid "%pB: linking little endian files with big endian files"
msgstr ""
+#: elf32-sparc.c:157
+#, c-format
+msgid ""
+"%pB: unhandled sparc machine value '%lu' detected during write processing"
+msgstr ""
+
#: elf32-spu.c:735
msgid "%X%P: overlay section %pA does not start on a cache line\n"
msgstr ""
@@ -3583,7 +3656,7 @@ msgstr ""
msgid "overlay stub relocation overflow"
msgstr ""
-#: elf32-spu.c:1992 elf64-ppc.c:14110
+#: elf32-spu.c:1992 elf64-ppc.c:14558
msgid "stubs don't match calculated size"
msgstr ""
@@ -3616,63 +3689,63 @@ msgstr ""
msgid " calls:\n"
msgstr ""
-#: elf32-spu.c:4344
+#: elf32-spu.c:4345
#, c-format
msgid "%s duplicated in %s\n"
msgstr ""
-#: elf32-spu.c:4348
+#: elf32-spu.c:4349
#, c-format
msgid "%s duplicated\n"
msgstr ""
-#: elf32-spu.c:4355
+#: elf32-spu.c:4356
msgid "sorry, no support for duplicate object files in auto-overlay script\n"
msgstr ""
-#: elf32-spu.c:4397
+#: elf32-spu.c:4398
#, c-format
msgid ""
"non-overlay size of 0x%v plus maximum overlay size of 0x%v exceeds local "
"store\n"
msgstr ""
-#: elf32-spu.c:4553
+#: elf32-spu.c:4554
#, c-format
msgid "%pB:%pA%s exceeds overlay size\n"
msgstr ""
-#: elf32-spu.c:4694
+#: elf32-spu.c:4695
msgid "%F%P: auto overlay error: %E\n"
msgstr ""
-#: elf32-spu.c:4715
+#: elf32-spu.c:4716
msgid "Stack size for call graph root nodes.\n"
msgstr ""
-#: elf32-spu.c:4716
+#: elf32-spu.c:4717
msgid ""
"\n"
"Stack size for functions. Annotations: '*' max stack, 't' tail call\n"
msgstr ""
-#: elf32-spu.c:4726
+#: elf32-spu.c:4727
msgid "Maximum stack required is 0x%v\n"
msgstr ""
-#: elf32-spu.c:4745
+#: elf32-spu.c:4746
msgid "%X%P: stack/lrlive analysis error: %E\n"
msgstr ""
-#: elf32-spu.c:4748
+#: elf32-spu.c:4749
msgid "%F%P: can not build overlay stubs: %E\n"
msgstr ""
-#: elf32-spu.c:4817
+#: elf32-spu.c:4818
msgid "fatal error while creating .fixup"
msgstr ""
-#: elf32-spu.c:5052
+#: elf32-spu.c:5054
#, c-format
msgid "%pB(%s+%#<PRIx64>): unresolvable %s relocation against symbol `%s'"
msgstr ""
@@ -3700,39 +3773,38 @@ msgstr ""
msgid "%pB: warning: unknown EABI object attribute %d"
msgstr ""
-#: elf32-tic6x.c:3752 elf32-tic6x.c:3761
+#: elf32-tic6x.c:3756 elf32-tic6x.c:3765
#, c-format
msgid "error: %pB requires more stack alignment than %pB preserves"
msgstr ""
-#: elf32-tic6x.c:3771 elf32-tic6x.c:3780
+#: elf32-tic6x.c:3775 elf32-tic6x.c:3784
#, c-format
msgid "error: unknown Tag_ABI_array_object_alignment value in %pB"
msgstr ""
-#: elf32-tic6x.c:3789 elf32-tic6x.c:3798
+#: elf32-tic6x.c:3793 elf32-tic6x.c:3802
#, c-format
msgid "error: unknown Tag_ABI_array_object_align_expected value in %pB"
msgstr ""
-#: elf32-tic6x.c:3807 elf32-tic6x.c:3815
+#: elf32-tic6x.c:3811 elf32-tic6x.c:3819
#, c-format
msgid "error: %pB requires more array alignment than %pB preserves"
msgstr ""
-#: elf32-tic6x.c:3838
+#: elf32-tic6x.c:3842
#, c-format
msgid "warning: %pB and %pB differ in wchar_t size"
msgstr ""
-#: elf32-tic6x.c:3857
+#: elf32-tic6x.c:3861
#, c-format
msgid "warning: %pB and %pB differ in whether code is compiled for DSBT"
msgstr ""
-#: elf32-tilepro.c:3760 elfxx-tilegx.c:4144 elfxx-x86.c:1432
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:9762
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:2639
+#: elf32-tilepro.c:3760 elfxx-tilegx.c:4144 elfxx-x86.c:1529
+#: elfnn-aarch64.c:9831 elfnn-riscv.c:2647
#, c-format
msgid "discarded output section: `%pA'"
msgstr ""
@@ -3934,22 +4006,22 @@ msgstr ""
msgid "v850e3v5 architecture"
msgstr ""
-#: elf32-v850.c:3607 elf32-v850.c:3846
+#: elf32-v850.c:3612 elf32-v850.c:3851
#, c-format
msgid "%pB: %#<PRIx64>: warning: %s points to unrecognized insns"
msgstr ""
-#: elf32-v850.c:3617 elf32-v850.c:3856
+#: elf32-v850.c:3622 elf32-v850.c:3861
#, c-format
msgid "%pB: %#<PRIx64>: warning: %s points to unrecognized insn %#x"
msgstr ""
-#: elf32-v850.c:3663 elf32-v850.c:3891
+#: elf32-v850.c:3668 elf32-v850.c:3896
#, c-format
msgid "%pB: %#<PRIx64>: warning: %s points to unrecognized reloc"
msgstr ""
-#: elf32-v850.c:3703
+#: elf32-v850.c:3708
#, c-format
msgid "%pB: %#<PRIx64>: warning: %s points to unrecognized reloc %#<PRIx64>"
msgstr ""
@@ -4007,119 +4079,132 @@ msgstr ""
msgid "error reading cpu type from elf private data"
msgstr ""
-#: elf32-xstormy16.c:457 elf64-ia64-vms.c:2083 elf32-ia64.c:2353
-#: elf64-ia64.c:2353
+#: elf32-xstormy16.c:457 elf64-ia64-vms.c:2082 elfnn-ia64.c:2352
msgid "non-zero addend in @fptr reloc"
msgstr ""
-#: elf32-xtensa.c:942
+#: elf32-xtensa.c:980
#, c-format
msgid "%pB(%pA): invalid property table"
msgstr ""
-#: elf32-xtensa.c:2679
+#: elf32-xtensa.c:2723
#, c-format
msgid "%pB(%pA+%#<PRIx64>): relocation offset out of range (size=%#<PRIx64>)"
msgstr ""
-#: elf32-xtensa.c:2762 elf32-xtensa.c:2885
+#: elf32-xtensa.c:2806 elf32-xtensa.c:2929
msgid "dynamic relocation in read-only section"
msgstr ""
-#: elf32-xtensa.c:2862
+#: elf32-xtensa.c:2906
msgid "TLS relocation invalid without dynamic sections"
msgstr ""
-#: elf32-xtensa.c:3074
+#: elf32-xtensa.c:3118
msgid "internal inconsistency in size of .got.loc section"
msgstr ""
-#: elf32-xtensa.c:3381
+#: elf32-xtensa.c:3425
#, c-format
msgid "%pB: incompatible machine type; output is 0x%x; input is 0x%x"
msgstr ""
-#: elf32-xtensa.c:4675 elf32-xtensa.c:4683
+#: elf32-xtensa.c:4719 elf32-xtensa.c:4727
msgid "attempt to convert L32R/CALLX to CALL failed"
msgstr ""
-#: elf32-xtensa.c:6511 elf32-xtensa.c:6590 elf32-xtensa.c:8021
+#: elf32-xtensa.c:6555 elf32-xtensa.c:6634 elf32-xtensa.c:8065
#, c-format
msgid ""
"%pB(%pA+%#<PRIx64>): could not decode instruction; possible configuration "
"mismatch"
msgstr ""
-#: elf32-xtensa.c:7760
+#: elf32-xtensa.c:7804
#, c-format
msgid ""
"%pB(%pA+%#<PRIx64>): could not decode instruction for XTENSA_ASM_SIMPLIFY "
"relocation; possible configuration mismatch"
msgstr ""
-#: elf32-xtensa.c:9615
+#: elf32-xtensa.c:9665
msgid "invalid relocation address"
msgstr ""
-#: elf32-xtensa.c:9665
+#: elf32-xtensa.c:9756
msgid "overflow after relaxation"
msgstr ""
-#: elf32-xtensa.c:10812
+#: elf32-xtensa.c:10902
#, c-format
msgid "%pB(%pA+%#<PRIx64>): unexpected fix for %s relocation"
msgstr ""
+#: elf32-z80.c:473
+#, c-format
+msgid "%pB: unsupported bfd mach %#lx"
+msgstr ""
+
+#: elf32-z80.c:518
+#, c-format
+msgid "%pB: unsupported mach %#x"
+msgstr ""
+
+#: elf32-z80.c:546
+#, c-format
+msgid "%pB: unsupported arch %#x"
+msgstr ""
+
#: elf64-alpha.c:473
msgid "GPDISP relocation did not find ldah and lda instructions"
msgstr ""
-#: elf64-alpha.c:2464
+#: elf64-alpha.c:2472
#, c-format
msgid "%pB: .got subsegment exceeds 64K (size %d)"
msgstr ""
-#: elf64-alpha.c:3019 elf64-alpha.c:3215
+#: elf64-alpha.c:3034 elf64-alpha.c:3230
#, c-format
msgid "%pB: %pA+%#<PRIx64>: warning: %s relocation against unexpected insn"
msgstr ""
-#: elf64-alpha.c:4416 elf64-alpha.c:4429
+#: elf64-alpha.c:4431 elf64-alpha.c:4444
#, c-format
msgid "%pB: gp-relative relocation against dynamic symbol %s"
msgstr ""
-#: elf64-alpha.c:4485
+#: elf64-alpha.c:4500
#, c-format
msgid "%pB: change in gp: BRSGP %s"
msgstr ""
-#: elf64-alpha.c:4510 mach-o.c:616
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:512
+#: elf64-alpha.c:4525 mach-o.c:616 elfnn-riscv.c:520
msgid "<unknown>"
msgstr ""
-#: elf64-alpha.c:4516
+#: elf64-alpha.c:4531
#, c-format
msgid "%pB: !samegp reloc against symbol without .prologue: %s"
msgstr ""
-#: elf64-alpha.c:4574
+#: elf64-alpha.c:4589
#, c-format
msgid "%pB: unhandled dynamic relocation against %s"
msgstr ""
-#: elf64-alpha.c:4609
+#: elf64-alpha.c:4624
#, c-format
msgid "%pB: pc-relative relocation against undefined weak symbol %s"
msgstr ""
-#: elf64-alpha.c:4675
+#: elf64-alpha.c:4690
#, c-format
msgid "%pB: dtp-relative relocation against dynamic symbol %s"
msgstr ""
-#: elf64-alpha.c:4700
+#: elf64-alpha.c:4715
#, c-format
msgid "%pB: tp-relative relocation against dynamic symbol %s"
msgstr ""
@@ -4134,130 +4219,130 @@ msgstr ""
msgid "%pB: Relocations in generic ELF (EM: %d)"
msgstr ""
-#: elf64-hppa.c:2079
+#: elf64-hppa.c:2081
#, c-format
msgid "stub entry for %s cannot load .plt, dp offset = %<PRId64>"
msgstr ""
-#: elf64-hppa.c:3283
+#: elf64-hppa.c:3285
#, c-format
msgid "%pB(%pA+%#<PRIx64>): cannot reach %s"
msgstr ""
-#: elf64-ia64-vms.c:598 elf32-ia64.c:640 elf64-ia64.c:640
+#: elf64-ia64-vms.c:598 elfnn-ia64.c:640
#, c-format
msgid ""
"%pB: can't relax br at %#<PRIx64> in section `%pA'; please use brl or "
"indirect branch"
msgstr ""
-#: elf64-ia64-vms.c:2038 elf32-ia64.c:2301 elf64-ia64.c:2301
+#: elf64-ia64-vms.c:2037 elfnn-ia64.c:2300
msgid "@pltoff reloc against local symbol"
msgstr ""
-#: elf64-ia64-vms.c:3290 elf32-ia64.c:3712 elf64-ia64.c:3712
+#: elf64-ia64-vms.c:3289 elfnn-ia64.c:3711
#, c-format
msgid "%pB: short data segment overflowed (%#<PRIx64> >= 0x400000)"
msgstr ""
-#: elf64-ia64-vms.c:3300 elf32-ia64.c:3722 elf64-ia64.c:3722
+#: elf64-ia64-vms.c:3299 elfnn-ia64.c:3721
#, c-format
msgid "%pB: __gp does not cover short data segment"
msgstr ""
-#: elf64-ia64-vms.c:3570 elf32-ia64.c:3996 elf64-ia64.c:3996
+#: elf64-ia64-vms.c:3569 elfnn-ia64.c:3995
#, c-format
msgid "%pB: non-pic code with imm relocation against dynamic symbol `%s'"
msgstr ""
-#: elf64-ia64-vms.c:3634 elf32-ia64.c:4064 elf64-ia64.c:4064
+#: elf64-ia64-vms.c:3633 elfnn-ia64.c:4063
#, c-format
msgid "%pB: @gprel relocation against dynamic symbol %s"
msgstr ""
-#: elf64-ia64-vms.c:3693 elf32-ia64.c:4127 elf64-ia64.c:4127
+#: elf64-ia64-vms.c:3692 elfnn-ia64.c:4126
#, c-format
msgid "%pB: linking non-pic code in a position independent executable"
msgstr ""
-#: elf64-ia64-vms.c:3795 elf32-ia64.c:4265 elf64-ia64.c:4265
+#: elf64-ia64-vms.c:3794 elfnn-ia64.c:4264
#, c-format
msgid "%pB: @internal branch to dynamic symbol %s"
msgstr ""
-#: elf64-ia64-vms.c:3798 elf32-ia64.c:4268 elf64-ia64.c:4268
+#: elf64-ia64-vms.c:3797 elfnn-ia64.c:4267
#, c-format
msgid "%pB: speculation fixup to dynamic symbol %s"
msgstr ""
-#: elf64-ia64-vms.c:3801 elf32-ia64.c:4271 elf64-ia64.c:4271
+#: elf64-ia64-vms.c:3800 elfnn-ia64.c:4270
#, c-format
msgid "%pB: @pcrel relocation against dynamic symbol %s"
msgstr ""
-#: elf64-ia64-vms.c:3925 elf32-ia64.c:4468 elf64-ia64.c:4468
+#: elf64-ia64-vms.c:3924 elfnn-ia64.c:4467
msgid "unsupported reloc"
msgstr ""
-#: elf64-ia64-vms.c:3962 elf32-ia64.c:4506 elf64-ia64.c:4506
+#: elf64-ia64-vms.c:3961 elfnn-ia64.c:4505
#, c-format
msgid ""
"%pB: missing TLS section for relocation %s against `%s' at %#<PRIx64> in "
"section `%pA'."
msgstr ""
-#: elf64-ia64-vms.c:3979 elf32-ia64.c:4523 elf64-ia64.c:4523
+#: elf64-ia64-vms.c:3978 elfnn-ia64.c:4522
#, c-format
msgid ""
"%pB: Can't relax br (%s) to `%s' at %#<PRIx64> in section `%pA' with size "
"%#<PRIx64> (> 0x1000000)."
msgstr ""
-#: elf64-ia64-vms.c:4271 elf32-ia64.c:4780 elf64-ia64.c:4780
+#: elf64-ia64-vms.c:4274 elfnn-ia64.c:4783
#, c-format
msgid "%pB: linking trap-on-NULL-dereference with non-trapping files"
msgstr ""
-#: elf64-ia64-vms.c:4280 elf32-ia64.c:4789 elf64-ia64.c:4789
+#: elf64-ia64-vms.c:4283 elfnn-ia64.c:4792
#, c-format
msgid "%pB: linking big-endian files with little-endian files"
msgstr ""
-#: elf64-ia64-vms.c:4289 elf32-ia64.c:4798 elf64-ia64.c:4798
+#: elf64-ia64-vms.c:4292 elfnn-ia64.c:4801
#, c-format
msgid "%pB: linking 64-bit files with 32-bit files"
msgstr ""
-#: elf64-ia64-vms.c:4298 elf32-ia64.c:4807 elf64-ia64.c:4807
+#: elf64-ia64-vms.c:4301 elfnn-ia64.c:4810
#, c-format
msgid "%pB: linking constant-gp files with non-constant-gp files"
msgstr ""
-#: elf64-ia64-vms.c:4308 elf32-ia64.c:4817 elf64-ia64.c:4817
+#: elf64-ia64-vms.c:4311 elfnn-ia64.c:4820
#, c-format
msgid "%pB: linking auto-pic files with non-auto-pic files"
msgstr ""
-#: elf64-ia64-vms.c:5155 elflink.c:4964
+#: elf64-ia64-vms.c:5158 elflink.c:5066
#, c-format
msgid ""
"warning: alignment %u of common symbol `%s' in %pB is greater than the "
"alignment (%u) of its section %pA"
msgstr ""
-#: elf64-ia64-vms.c:5162 elflink.c:4971
+#: elf64-ia64-vms.c:5165 elflink.c:5073
#, c-format
msgid "warning: alignment %u of symbol `%s' in %pB is smaller than %u in %pB"
msgstr ""
-#: elf64-ia64-vms.c:5178 elflink.c:4988
+#: elf64-ia64-vms.c:5181 elflink.c:5090
#, c-format
msgid ""
"warning: size of symbol `%s' changed from %<PRIu64> in %pB to %<PRIu64> in "
"%pB"
msgstr ""
-#: elf64-mips.c:4098
+#: elf64-mips.c:4095
#, c-format
msgid "%pB(%pA): relocation %<PRIu64> has invalid symbol index %ld"
msgstr ""
@@ -4333,142 +4418,152 @@ msgid ""
"internal inconsistency: remaining %lu != max %lu; please report this bug"
msgstr ""
-#: elf64-ppc.c:4072
+#: elf64-ppc.c:4094
#, c-format
msgid "symbol '%s' has invalid st_other for ABI version 1"
msgstr ""
-#: elf64-ppc.c:4247
+#: elf64-ppc.c:4274
#, c-format
msgid "%pB .opd not allowed in ABI version %d"
msgstr ""
-#: elf64-ppc.c:4835
+#: elf64-ppc.c:4854
#, c-format
msgid "%H: %s reloc unsupported in shared libraries and PIEs\n"
msgstr ""
-#: elf64-ppc.c:5247
+#: elf64-ppc.c:5262
#, c-format
msgid "%pB uses unknown e_flags 0x%lx"
msgstr ""
-#: elf64-ppc.c:5255
+#: elf64-ppc.c:5270
#, c-format
msgid "%pB: ABI version %ld is not compatible with ABI version %ld output"
msgstr ""
-#: elf64-ppc.c:5282
+#: elf64-ppc.c:5297
#, c-format
msgid " [abiv%ld]"
msgstr ""
-#: elf64-ppc.c:6483
+#: elf64-ppc.c:6594
msgid ""
"%P: copy reloc against `%pT' requires lazy plt linking; avoid setting "
"LD_BIND_NOW=1 or upgrade gcc\n"
msgstr ""
-#: elf64-ppc.c:6755
+#: elf64-ppc.c:6861
#, c-format
msgid "%pB: undefined symbol on R_PPC64_TOCSAVE relocation"
msgstr ""
-#: elf64-ppc.c:7003
+#: elf64-ppc.c:7109
#, c-format
msgid "dynreloc miscount for %pB, section %pA"
msgstr ""
-#: elf64-ppc.c:7092
+#: elf64-ppc.c:7198
#, c-format
msgid "%pB: .opd is not a regular array of opd entries"
msgstr ""
-#: elf64-ppc.c:7102
+#: elf64-ppc.c:7208
#, c-format
msgid "%pB: unexpected reloc type %u in .opd section"
msgstr ""
-#: elf64-ppc.c:7124
+#: elf64-ppc.c:7230
#, c-format
msgid "%pB: undefined sym `%s' in .opd section"
msgstr ""
-#: elf64-ppc.c:7613
+#: elf64-ppc.c:7720
msgid ""
"warning: --plt-localentry is especially dangerous without ld.so support to "
"detect ABI violations"
msgstr ""
-#: elf64-ppc.c:7866
+#: elf64-ppc.c:8042
msgid "%H __tls_get_addr lost arg, TLS optimization disabled\n"
msgstr ""
-#: elf64-ppc.c:8251 elf64-ppc.c:8959
+#: elf64-ppc.c:8443 elf64-ppc.c:9160
#, c-format
msgid "%s defined on removed toc entry"
msgstr ""
-#: elf64-ppc.c:8916
+#: elf64-ppc.c:9117
#, c-format
msgid "%H: %s references optimized away TOC entry\n"
msgstr ""
-#: elf64-ppc.c:9140
+#: elf64-ppc.c:9341
#, c-format
msgid "%H: got/toc optimization is not supported for %s instruction\n"
msgstr ""
-#: elf64-ppc.c:9991
+#: elf64-ppc.c:10195
#, c-format
msgid "warning: discarding dynamic section %s"
msgstr ""
-#: elf64-ppc.c:11055
+#: elf64-ppc.c:11336
msgid "%P: cannot find opd entry toc for `%pT'\n"
msgstr ""
-#: elf64-ppc.c:11144
+#: elf64-ppc.c:11382 elf64-ppc.c:11926
+msgid ""
+"%F%P: Could not assign group %pA target %pA to an output section. Retry "
+"without --enable-non-contiguous-regions.\n"
+msgstr ""
+
+#: elf64-ppc.c:11444
#, c-format
msgid "long branch stub `%s' offset overflow"
msgstr ""
-#: elf64-ppc.c:11171
+#: elf64-ppc.c:11471
#, c-format
msgid "can't find branch stub `%s'"
msgstr ""
-#: elf64-ppc.c:11235 elf64-ppc.c:11502 elf64-ppc.c:13671
+#: elf64-ppc.c:11535 elf64-ppc.c:11802 elf64-ppc.c:14033
#, c-format
msgid "%P: linkage table error against `%pT'\n"
msgstr ""
-#: elf64-ppc.c:11680
+#: elf64-ppc.c:11998
#, c-format
msgid "can't build branch stub `%s'"
msgstr ""
-#: elf64-ppc.c:12659
+#: elf64-ppc.c:12980
#, c-format
msgid "%pB section %pA exceeds stub group size"
msgstr ""
-#: elf64-ppc.c:14069 elf64-ppc.c:14088
+#: elf64-ppc.c:14215
+msgid "__tls_get_addr call offset overflow"
+msgstr ""
+
+#: elf64-ppc.c:14517 elf64-ppc.c:14536
#, c-format
msgid "%s offset too large for .eh_frame sdata4 encoding"
msgstr ""
-#: elf64-ppc.c:14124
+#: elf64-ppc.c:14568
#, c-format
msgid "linker stubs in %u group\n"
msgid_plural "linker stubs in %u groups\n"
msgstr[0] ""
msgstr[1] ""
-#: elf64-ppc.c:14128
+#: elf64-ppc.c:14575
#, c-format
msgid ""
-" branch %lu\n"
+"%s branch %lu\n"
" branch toc adj %lu\n"
" branch notoc %lu\n"
" branch both %lu\n"
@@ -4483,54 +4578,54 @@ msgid ""
" global entry %lu"
msgstr ""
-#: elf64-ppc.c:14523
+#: elf64-ppc.c:14975
#, c-format
msgid "%H: %s used with TLS symbol `%pT'\n"
msgstr ""
-#: elf64-ppc.c:14525
+#: elf64-ppc.c:14977
#, c-format
msgid "%H: %s used with non-TLS symbol `%pT'\n"
msgstr ""
-#: elf64-ppc.c:15279
+#: elf64-ppc.c:15732
#, c-format
msgid "%H: call to `%pT' lacks nop, can't restore toc; (plt call stub)\n"
msgstr ""
-#: elf64-ppc.c:15285
+#: elf64-ppc.c:15738
#, c-format
msgid ""
"%H: call to `%pT' lacks nop, can't restore toc; (toc save/adjust stub)\n"
msgstr ""
-#: elf64-ppc.c:16170
+#: elf64-ppc.c:16628
#, c-format
msgid "%H: %s for indirect function `%pT' unsupported\n"
msgstr ""
-#: elf64-ppc.c:16257
+#: elf64-ppc.c:16715
#, c-format
msgid ""
"%X%P: %pB: %s against %pT is not supported by glibc as a dynamic relocation\n"
msgstr ""
-#: elf64-ppc.c:16312
+#: elf64-ppc.c:16770
#, c-format
msgid "%P: %pB: %s is not supported for `%pT'\n"
msgstr ""
-#: elf64-ppc.c:16571
+#: elf64-ppc.c:17029
#, c-format
msgid "%H: error: %s not a multiple of %u\n"
msgstr ""
-#: elf64-ppc.c:16594
+#: elf64-ppc.c:17052
#, c-format
msgid "%H: unresolvable %s against `%pT'\n"
msgstr ""
-#: elf64-ppc.c:16739
+#: elf64-ppc.c:17197
#, c-format
msgid "%H: %s against `%pT': error %d\n"
msgstr ""
@@ -4542,152 +4637,147 @@ msgid ""
"from executable (rebuild file with -fPIC ?)"
msgstr ""
-#: elf64-sparc.c:125 elfcode.h:1467
-#, c-format
-msgid "%pB(%pA): relocation %d has invalid symbol index %ld"
-msgstr ""
-
-#: elf64-sparc.c:483
+#: elf64-sparc.c:481
#, c-format
msgid "%pB: only registers %%g[2367] can be declared using STT_REGISTER"
msgstr ""
-#: elf64-sparc.c:504
+#: elf64-sparc.c:502
#, c-format
msgid "register %%g%d used incompatibly: %s in %pB, previously %s in %pB"
msgstr ""
-#: elf64-sparc.c:528
+#: elf64-sparc.c:526
#, c-format
msgid "symbol `%s' has differing types: REGISTER in %pB, previously %s in %pB"
msgstr ""
-#: elf64-sparc.c:575
+#: elf64-sparc.c:573
#, c-format
msgid "Symbol `%s' has differing types: %s in %pB, previously REGISTER in %pB"
msgstr ""
-#: elf64-sparc.c:707
+#: elf64-sparc.c:705
#, c-format
msgid "%pB: linking UltraSPARC specific with HAL specific code"
msgstr ""
-#: elf64-x86-64.c:1412
+#: elf64-x86-64.c:1424
msgid "hidden symbol "
msgstr ""
-#: elf64-x86-64.c:1415
+#: elf64-x86-64.c:1427
msgid "internal symbol "
msgstr ""
-#: elf64-x86-64.c:1418 elf64-x86-64.c:1422
+#: elf64-x86-64.c:1430 elf64-x86-64.c:1434
msgid "protected symbol "
msgstr ""
-#: elf64-x86-64.c:1424
+#: elf64-x86-64.c:1436
msgid "symbol "
msgstr ""
-#: elf64-x86-64.c:1430
+#: elf64-x86-64.c:1442
msgid "undefined "
msgstr ""
-#: elf64-x86-64.c:1440
+#: elf64-x86-64.c:1452
msgid "a shared object"
msgstr ""
-#: elf64-x86-64.c:1442
+#: elf64-x86-64.c:1454
msgid "; recompile with -fPIC"
msgstr ""
-#: elf64-x86-64.c:1447
+#: elf64-x86-64.c:1459
msgid "a PIE object"
msgstr ""
-#: elf64-x86-64.c:1449
+#: elf64-x86-64.c:1461
msgid "a PDE object"
msgstr ""
-#: elf64-x86-64.c:1451
+#: elf64-x86-64.c:1463
msgid "; recompile with -fPIE"
msgstr ""
-#: elf64-x86-64.c:1455
+#: elf64-x86-64.c:1467
#, c-format
msgid "%pB: relocation %s against %s%s`%s' can not be used when making %s%s"
msgstr ""
-#: elf64-x86-64.c:1940
+#: elf64-x86-64.c:1984
#, c-format
msgid "%pB: relocation %s against symbol `%s' isn't supported in x32 mode"
msgstr ""
-#: elf64-x86-64.c:2078
+#: elf64-x86-64.c:2140
#, c-format
msgid "%pB: '%s' accessed both as normal and thread local symbol"
msgstr ""
-#: elf64-x86-64.c:2700 /work/sources/binutils/current/bfd/elfnn-aarch64.c:5534
+#: elf64-x86-64.c:2763 elfnn-aarch64.c:5592
#, c-format
msgid ""
"%pB: relocation %s against STT_GNU_IFUNC symbol `%s' has non-zero addend: "
"%<PRId64>"
msgstr ""
-#: elf64-x86-64.c:2938
+#: elf64-x86-64.c:3008
#, c-format
msgid ""
"%pB: relocation R_X86_64_GOTOFF64 against undefined %s `%s' can not be used "
"when making a shared object"
msgstr ""
-#: elf64-x86-64.c:2952
+#: elf64-x86-64.c:3022
#, c-format
msgid ""
"%pB: relocation R_X86_64_GOTOFF64 against protected %s `%s' can not be used "
"when making a shared object"
msgstr ""
-#: elf64-x86-64.c:3229
+#: elf64-x86-64.c:3299
#, c-format
msgid ""
"%pB: addend %s%#x in relocation %s against symbol `%s' at %#<PRIx64> in "
"section `%pA' is out of range"
msgstr ""
-#: elf64-x86-64.c:3363 elflink.c:13138
+#: elf64-x86-64.c:3433 elflink.c:13256
msgid "%F%P: corrupt input: %pB\n"
msgstr ""
-#: elf64-x86-64.c:4000
+#: elf64-x86-64.c:4117
msgid "%F%P: failed to convert GOTPCREL relocation; relink with --no-relax\n"
msgstr ""
-#: elf64-x86-64.c:4158
+#: elf64-x86-64.c:4275
#, c-format
msgid "%F%pB: PC-relative offset overflow in PLT entry for `%s'\n"
msgstr ""
-#: elf64-x86-64.c:4221
+#: elf64-x86-64.c:4338
#, c-format
msgid "%F%pB: branch displacement overflow in PLT entry for `%s'\n"
msgstr ""
-#: elf64-x86-64.c:4274
+#: elf64-x86-64.c:4391
#, c-format
msgid "%F%pB: PC-relative offset overflow in GOT PLT entry for `%s'\n"
msgstr ""
-#: elfcode.h:323
+#: elfcode.h:326
msgid "warning: %pB has a corrupt section with a size (%"
msgstr ""
-#: elfcode.h:764
+#: elfcode.h:768
#, c-format
msgid "warning: %pB has a corrupt string table index - ignoring"
msgstr ""
-#: elfcode.h:1208
+#: elfcode.h:1229
#, c-format
msgid "%pB: version count (%<PRId64>) does not match symbol count (%ld)"
msgstr ""
@@ -4761,216 +4851,226 @@ msgstr ""
msgid "%P: copy reloc against protected `%pT' is dangerous\n"
msgstr ""
-#: elflink.c:3969
+#: elflink.c:4058
#, c-format
msgid "alternate ELF machine code found (%d) in %pB, expecting %d"
msgstr ""
-#: elflink.c:4426
+#: elflink.c:4528
#, c-format
msgid "%pB: invalid version offset %lx (max %lx)"
msgstr ""
-#: elflink.c:4494
+#: elflink.c:4596
#, c-format
msgid "%pB: %s local symbol at index %lu (>= sh_info of %lu)"
msgstr ""
-#: elflink.c:4642
+#: elflink.c:4744
#, c-format
msgid "%pB: not enough version information"
msgstr ""
-#: elflink.c:4680
+#: elflink.c:4782
#, c-format
msgid "%pB: %s: invalid version %u (max %d)"
msgstr ""
-#: elflink.c:4717
+#: elflink.c:4819
#, c-format
msgid "%pB: %s: invalid needed version %d"
msgstr ""
-#: elflink.c:5124
+#: elflink.c:5225
#, c-format
msgid "%pB: undefined reference to symbol '%s'"
msgstr ""
-#: elflink.c:6217
+#: elflink.c:6320
#, c-format
msgid "%pB: stack size specified and %s set"
msgstr ""
-#: elflink.c:6221
+#: elflink.c:6324
#, c-format
msgid "%pB: %s not absolute"
msgstr ""
-#: elflink.c:6418
+#: elflink.c:6521
#, c-format
msgid "%s: undefined version: %s"
msgstr ""
-#: elflink.c:6989
+#: elflink.c:7093
#, c-format
msgid "%pB: .preinit_array section is not allowed in DSO"
msgstr ""
-#: elflink.c:8475
+#: elflink.c:8580
#, c-format
msgid "undefined %s reference in complex symbol: %s"
msgstr ""
-#: elflink.c:8630
+#: elflink.c:8735
#, c-format
msgid "unknown operator '%c' in complex symbol"
msgstr ""
#. PR 21524: Let the user know if a symbol was removed by garbage collection.
-#: elflink.c:8968
+#: elflink.c:9073
#, c-format
msgid ""
"%pB:%pA: error: relocation references symbol %s which was removed by garbage "
"collection"
msgstr ""
-#: elflink.c:8971
+#: elflink.c:9076
#, c-format
msgid "%pB:%pA: error: try relinking with --gc-keep-exported enabled"
msgstr ""
-#: elflink.c:9216 elflink.c:9234 elflink.c:9273 elflink.c:9291
+#: elflink.c:9321 elflink.c:9339 elflink.c:9378 elflink.c:9396
#, c-format
msgid "%pB: unable to sort relocs - they are in more than one size"
msgstr ""
#. The section size is not divisible by either -
#. something is wrong.
-#: elflink.c:9250 elflink.c:9307
+#: elflink.c:9355 elflink.c:9412
#, c-format
msgid "%pB: unable to sort relocs - they are of an unknown size"
msgstr ""
-#: elflink.c:9359
+#: elflink.c:9464
msgid "not enough memory to sort relocations"
msgstr ""
-#: elflink.c:9640
+#: elflink.c:9745
#, c-format
msgid "%pB: too many sections: %d (>= %d)"
msgstr ""
-#: elflink.c:9920
+#: elflink.c:10021
#, c-format
msgid "%pB: internal symbol `%s' in %pB is referenced by DSO"
msgstr ""
-#: elflink.c:9923
+#: elflink.c:10024
#, c-format
msgid "%pB: hidden symbol `%s' in %pB is referenced by DSO"
msgstr ""
-#: elflink.c:9926
+#: elflink.c:10027
#, c-format
msgid "%pB: local symbol `%s' in %pB is referenced by DSO"
msgstr ""
-#: elflink.c:10012
+#: elflink.c:10113
#, c-format
msgid "%pB: could not find output section %pA for input section %pA"
msgstr ""
-#: elflink.c:10166
+#: elflink.c:10267
#, c-format
msgid "%pB: protected symbol `%s' isn't defined"
msgstr ""
-#: elflink.c:10169
+#: elflink.c:10270
#, c-format
msgid "%pB: internal symbol `%s' isn't defined"
msgstr ""
-#: elflink.c:10172
+#: elflink.c:10273
#, c-format
msgid "%pB: hidden symbol `%s' isn't defined"
msgstr ""
-#: elflink.c:10204
+#: elflink.c:10305
#, c-format
msgid "%pB: no symbol version section for versioned symbol `%s'"
msgstr ""
-#: elflink.c:10816
+#: elflink.c:10677
+#, c-format
+msgid ""
+"warning: --enable-non-contiguous-regions discards section `%s' from '%s'\n"
+msgstr ""
+
+#: elflink.c:10929
#, c-format
msgid "error: %pB: size of section %pA is not multiple of address size"
msgstr ""
-#: elflink.c:10861
+#: elflink.c:10974
#, c-format
msgid ""
"error: %pB contains a reloc (%#<PRIx64>) for section %pA that references a "
"non-existent global symbol"
msgstr ""
-#: elflink.c:11604
+#: elflink.c:11717
#, c-format
msgid ""
"%pA has both ordered [`%pA' in %pB] and unordered [`%pA' in %pB] sections"
msgstr ""
-#: elflink.c:11610
+#: elflink.c:11723
#, c-format
msgid "%pA has both ordered and unordered sections"
msgstr ""
-#: elflink.c:11714
+#: elflink.c:11829
#, c-format
msgid "%pB: no symbol found for import library"
msgstr ""
-#: elflink.c:12361
+#: elflink.c:12477
#, c-format
msgid "%pB: file class %s incompatible with %s"
msgstr ""
-#: elflink.c:12578
+#: elflink.c:12694
#, c-format
msgid "%pB: failed to generate import library"
msgstr ""
-#: elflink.c:12697
+#: elflink.c:12813
#, c-format
msgid "warning: %s section has zero size"
msgstr ""
-#: elflink.c:12745
+#: elflink.c:12861
#, c-format
msgid "warning: section '%s' is being made into a note"
msgstr ""
-#: elflink.c:12837
+#: elflink.c:12955
msgid "%P%X: read-only segment has dynamic relocations\n"
msgstr ""
-#: elflink.c:12840
+#: elflink.c:12958
msgid "%P: warning: creating a DT_TEXTREL in a shared object\n"
msgstr ""
-#: elflink.c:12965
+#: elflink.c:13083
msgid "%P%X: can not read symbols: %E\n"
msgstr ""
-#: elflink.c:13804
+#: elflink.c:13489
+msgid "%F%P: %pB(%pA): error: need linked-to section for --gc-sections\n"
+msgstr ""
+
+#: elflink.c:13950
#, c-format
msgid "%pB: %pA+%#<PRIx64>: no symbol found for INHERIT"
msgstr ""
-#: elflink.c:13845
+#: elflink.c:13991
#, c-format
msgid "%pB: section '%pA': corrupt VTENTRY entry"
msgstr ""
-#: elflink.c:13988
+#: elflink.c:14134
#, c-format
msgid "unrecognized INPUT_SECTION_FLAG %s\n"
msgstr ""
@@ -4981,19 +5081,18 @@ msgid ""
"%pB: warning: Weak TLS is implementation defined and may not work as expected"
msgstr ""
-#: elfxx-aarch64.c:738 /work/sources/binutils/current/bfd/elfnn-aarch64.c:9960
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:9967
+#: elfxx-aarch64.c:738 elfnn-aarch64.c:10029 elfnn-aarch64.c:10036
#, c-format
msgid ""
"%pB: warning: BTI turned on by -z force-bti when all inputs do not have BTI "
"in NOTE section."
msgstr ""
-#: elfxx-aarch64.c:758 elfxx-x86.c:2625
+#: elfxx-aarch64.c:758 elfxx-x86.c:2722
msgid "%F%P: failed to create GNU property section\n"
msgstr ""
-#: elfxx-aarch64.c:762 elfxx-x86.c:2630
+#: elfxx-aarch64.c:762 elfxx-x86.c:2727
#, c-format
msgid "%F%pA: failed to align section\n"
msgstr ""
@@ -5003,350 +5102,437 @@ msgstr ""
msgid "error: %pB: <corrupt AArch64 used size: 0x%x>"
msgstr ""
-#: elfxx-mips.c:1515
+#: elfxx-mips.c:1520
msgid "static procedure (no name)"
msgstr ""
-#: elfxx-mips.c:5800
+#: elfxx-mips.c:5806
msgid "MIPS16 and microMIPS functions cannot call each other"
msgstr ""
-#: elfxx-mips.c:6565
+#: elfxx-mips.c:6571
msgid "%X%H: unsupported JALX to the same ISA mode\n"
msgstr ""
-#: elfxx-mips.c:6598
+#: elfxx-mips.c:6604
msgid ""
"%X%H: unsupported jump between ISA modes; consider recompiling with "
"interlinking enabled\n"
msgstr ""
-#: elfxx-mips.c:6643
+#: elfxx-mips.c:6649
msgid ""
"%X%H: cannot convert branch between ISA modes to JALX: relocation out of "
"range\n"
msgstr ""
-#: elfxx-mips.c:6655
+#: elfxx-mips.c:6661
msgid "%X%H: unsupported branch between ISA modes\n"
msgstr ""
-#: elfxx-mips.c:7303
+#: elfxx-mips.c:7309
#, c-format
msgid ""
"%pB: incorrect `.reginfo' section size; expected %<PRIu64>, got %<PRIu64>"
msgstr ""
-#: elfxx-mips.c:7347 elfxx-mips.c:7584
+#: elfxx-mips.c:7353 elfxx-mips.c:7590
#, c-format
msgid "%pB: warning: bad `%s' option size %u smaller than its header"
msgstr ""
-#: elfxx-mips.c:8391 elfxx-mips.c:8517
+#: elfxx-mips.c:8397 elfxx-mips.c:8523
#, c-format
msgid ""
"%pB: warning: cannot determine the target function for stub section `%s'"
msgstr ""
-#: elfxx-mips.c:8649
+#: elfxx-mips.c:8655
#, c-format
msgid "%pB: malformed reloc detected for section %s"
msgstr ""
-#: elfxx-mips.c:8749
+#: elfxx-mips.c:8755
#, c-format
msgid "%pB: GOT reloc at %#<PRIx64> not expected in executables"
msgstr ""
-#: elfxx-mips.c:8887
+#: elfxx-mips.c:8893
#, c-format
msgid "%pB: CALL16 reloc at %#<PRIx64> not against global symbol"
msgstr ""
-#: elfxx-mips.c:9190
+#: elfxx-mips.c:9196
#, c-format
msgid ""
"%X%H: relocation %s against `%s' cannot be used when making a shared object; "
"recompile with -fPIC\n"
msgstr ""
-#: elfxx-mips.c:9526
+#: elfxx-mips.c:9322
+#, c-format
+msgid "IFUNC symbol %s in dynamic symbol table - IFUNCS are not supported"
+msgstr ""
+
+#: elfxx-mips.c:9325
+#, c-format
+msgid "non-dynamic symbol %s in dynamic symbol table"
+msgstr ""
+
+#: elfxx-mips.c:9541
#, c-format
msgid "non-dynamic relocations refer to dynamic symbol %s"
msgstr ""
-#: elfxx-mips.c:10456
+#: elfxx-mips.c:10471
#, c-format
msgid ""
"%pB: can't find matching LO16 reloc against `%s' for %s at %#<PRIx64> in "
"section `%pA'"
msgstr ""
-#: elfxx-mips.c:10596
+#: elfxx-mips.c:10611
msgid ""
"small-data section exceeds 64KB; lower small-data size limit (see option -G)"
msgstr ""
-#: elfxx-mips.c:10615
+#: elfxx-mips.c:10630
msgid "cannot convert a jump to JALX for a non-word-aligned address"
msgstr ""
-#: elfxx-mips.c:10618
+#: elfxx-mips.c:10633
msgid "jump to a non-word-aligned address"
msgstr ""
-#: elfxx-mips.c:10619
+#: elfxx-mips.c:10634
msgid "jump to a non-instruction-aligned address"
msgstr ""
-#: elfxx-mips.c:10622
+#: elfxx-mips.c:10637
msgid "cannot convert a branch to JALX for a non-word-aligned address"
msgstr ""
-#: elfxx-mips.c:10624
+#: elfxx-mips.c:10639
msgid "branch to a non-instruction-aligned address"
msgstr ""
-#: elfxx-mips.c:10626
+#: elfxx-mips.c:10641
msgid "PC-relative load from unaligned address"
msgstr ""
-#: elfxx-mips.c:10926
+#: elfxx-mips.c:10941
#, c-format
msgid ""
"%pB: `%pA' entry VMA of %#<PRIx64> outside the 32-bit range supported; "
"consider using `-Ttext-segment=...'"
msgstr ""
-#: elfxx-mips.c:11041 elfxx-mips.c:11628
+#: elfxx-mips.c:11056 elfxx-mips.c:11643
#, c-format
msgid "%pB: `%pA' offset of %<PRId64> from `%pA' beyond the range of ADDIUPC"
msgstr ""
-#: elfxx-mips.c:11600
+#: elfxx-mips.c:11615
#, c-format
msgid ""
"%pB: `%pA' start VMA of %#<PRIx64> outside the 32-bit range supported; "
"consider using `-Ttext-segment=...'"
msgstr ""
-#: elfxx-mips.c:14562
+#: elfxx-mips.c:14577
#, c-format
msgid "%pB: unknown architecture %s"
msgstr ""
-#: elfxx-mips.c:15096
+#: elfxx-mips.c:15111
#, c-format
msgid "%pB: illegal section name `%pA'"
msgstr ""
-#: elfxx-mips.c:15373
+#: elfxx-mips.c:15388
#, c-format
msgid "%pB: warning: linking abicalls files with non-abicalls files"
msgstr ""
-#: elfxx-mips.c:15390
+#: elfxx-mips.c:15405
#, c-format
msgid "%pB: linking 32-bit code with 64-bit code"
msgstr ""
-#: elfxx-mips.c:15422 elfxx-mips.c:15488 elfxx-mips.c:15503
+#: elfxx-mips.c:15437 elfxx-mips.c:15503 elfxx-mips.c:15518
#, c-format
msgid "%pB: linking %s module with previous %s modules"
msgstr ""
-#: elfxx-mips.c:15446
+#: elfxx-mips.c:15461
#, c-format
msgid "%pB: ABI mismatch: linking %s module with previous %s modules"
msgstr ""
-#: elfxx-mips.c:15471
+#: elfxx-mips.c:15486
#, c-format
msgid "%pB: ASE mismatch: linking %s module with previous %s modules"
msgstr ""
-#: elfxx-mips.c:15605
+#: elfxx-mips.c:15620
#, c-format
msgid ""
"warning: %pB uses unknown floating point ABI %d (set by %pB), %pB uses "
"unknown floating point ABI %d"
msgstr ""
-#: elfxx-mips.c:15611
+#: elfxx-mips.c:15626
#, c-format
msgid ""
"warning: %pB uses unknown floating point ABI %d (set by %pB), %pB uses %s"
msgstr ""
-#: elfxx-mips.c:15617
+#: elfxx-mips.c:15632
#, c-format
msgid ""
"warning: %pB uses %s (set by %pB), %pB uses unknown floating point ABI %d"
msgstr ""
-#: elfxx-mips.c:15631
+#: elfxx-mips.c:15646
#, c-format
msgid "warning: %pB uses %s (set by %pB), %pB uses %s"
msgstr ""
-#: elfxx-mips.c:15650
+#: elfxx-mips.c:15665
#, c-format
msgid "warning: %pB uses %s (set by %pB), %pB uses unknown MSA ABI %d"
msgstr ""
-#: elfxx-mips.c:15662
+#: elfxx-mips.c:15677
#, c-format
msgid "warning: %pB uses unknown MSA ABI %d (set by %pB), %pB uses %s"
msgstr ""
-#: elfxx-mips.c:15671
+#: elfxx-mips.c:15686
#, c-format
msgid ""
"warning: %pB uses unknown MSA ABI %d (set by %pB), %pB uses unknown MSA ABI "
"%d"
msgstr ""
-#: elfxx-mips.c:15733
+#: elfxx-mips.c:15748
#, c-format
msgid "%pB: endianness incompatible with that of the selected emulation"
msgstr ""
-#: elfxx-mips.c:15747
+#: elfxx-mips.c:15762
#, c-format
msgid "%pB: ABI is incompatible with that of the selected emulation"
msgstr ""
-#: elfxx-mips.c:15799
+#: elfxx-mips.c:15815
#, c-format
msgid "%pB: warning: inconsistent ISA between e_flags and .MIPS.abiflags"
msgstr ""
-#: elfxx-mips.c:15804
+#: elfxx-mips.c:15820
#, c-format
msgid ""
"%pB: warning: inconsistent FP ABI between .gnu.attributes and .MIPS.abiflags"
msgstr ""
-#: elfxx-mips.c:15808
+#: elfxx-mips.c:15824
#, c-format
msgid "%pB: warning: inconsistent ASEs between e_flags and .MIPS.abiflags"
msgstr ""
-#: elfxx-mips.c:15815
+#: elfxx-mips.c:15831
#, c-format
msgid ""
"%pB: warning: inconsistent ISA extensions between e_flags and .MIPS.abiflags"
msgstr ""
-#: elfxx-mips.c:15819
+#: elfxx-mips.c:15835
#, c-format
msgid ""
"%pB: warning: unexpected flag in the flags2 field of .MIPS.abiflags (0x%lx)"
msgstr ""
-#: elfxx-mips.c:16010
+#: elfxx-mips.c:16026
msgid "-mips32r2 -mfp64 (12 callee-saved)"
msgstr ""
-#: elfxx-mips.c:16072 elfxx-mips.c:16083
+#: elfxx-mips.c:16088 elfxx-mips.c:16099
msgid "None"
msgstr ""
-#: elfxx-mips.c:16074 elfxx-mips.c:16143
+#: elfxx-mips.c:16090 elfxx-mips.c:16159
msgid "Unknown"
msgstr ""
-#: elfxx-mips.c:16154
+#: elfxx-mips.c:16170
#, c-format
msgid "Hard or soft float\n"
msgstr ""
-#: elfxx-mips.c:16157
+#: elfxx-mips.c:16173
#, c-format
msgid "Hard float (double precision)\n"
msgstr ""
-#: elfxx-mips.c:16160
+#: elfxx-mips.c:16176
#, c-format
msgid "Hard float (single precision)\n"
msgstr ""
-#: elfxx-mips.c:16163
+#: elfxx-mips.c:16179
#, c-format
msgid "Soft float\n"
msgstr ""
-#: elfxx-mips.c:16166
+#: elfxx-mips.c:16182
#, c-format
msgid "Hard float (MIPS32r2 64-bit FPU 12 callee-saved)\n"
msgstr ""
-#: elfxx-mips.c:16169
+#: elfxx-mips.c:16185
#, c-format
msgid "Hard float (32-bit CPU, Any FPU)\n"
msgstr ""
-#: elfxx-mips.c:16172
+#: elfxx-mips.c:16188
#, c-format
msgid "Hard float (32-bit CPU, 64-bit FPU)\n"
msgstr ""
-#: elfxx-mips.c:16175
+#: elfxx-mips.c:16191
#, c-format
msgid "Hard float compat (32-bit CPU, 64-bit FPU)\n"
msgstr ""
-#: elfxx-mips.c:16207
+#: elfxx-mips.c:16223
#, c-format
msgid " [abi=O32]"
msgstr ""
-#: elfxx-mips.c:16209
+#: elfxx-mips.c:16225
#, c-format
msgid " [abi=O64]"
msgstr ""
-#: elfxx-mips.c:16211
+#: elfxx-mips.c:16227
#, c-format
msgid " [abi=EABI32]"
msgstr ""
-#: elfxx-mips.c:16213
+#: elfxx-mips.c:16229
#, c-format
msgid " [abi=EABI64]"
msgstr ""
-#: elfxx-mips.c:16215
+#: elfxx-mips.c:16231
#, c-format
msgid " [abi unknown]"
msgstr ""
-#: elfxx-mips.c:16217
+#: elfxx-mips.c:16233
#, c-format
msgid " [abi=N32]"
msgstr ""
-#: elfxx-mips.c:16219
+#: elfxx-mips.c:16235
#, c-format
msgid " [abi=64]"
msgstr ""
-#: elfxx-mips.c:16221
+#: elfxx-mips.c:16237
#, c-format
msgid " [no abi set]"
msgstr ""
-#: elfxx-mips.c:16246
+#: elfxx-mips.c:16262
#, c-format
msgid " [unknown ISA]"
msgstr ""
-#: elfxx-mips.c:16266
+#: elfxx-mips.c:16282
#, c-format
msgid " [not 32bitmode]"
msgstr ""
-#: elfxx-sparc.c:3110 /work/sources/binutils/current/bfd/elfnn-aarch64.c:5518
+#: elfxx-riscv.c:1064
+#, c-format
+msgid "-march=%s: Expect number after `%dp'."
+msgstr ""
+
+#: elfxx-riscv.c:1175
+#, c-format
+msgid "-march=%s: rv%de is not a valid base ISA"
+msgstr ""
+
+#: elfxx-riscv.c:1215
+#, c-format
+msgid "-march=%s: first ISA subset must be `e', `i' or `g'"
+msgstr ""
+
+#: elfxx-riscv.c:1243
+#, c-format
+msgid "-march=%s: unsupported ISA subset `%c'"
+msgstr ""
+
+#: elfxx-riscv.c:1246
+#, c-format
+msgid "-march=%s: ISA string is not in canonical order. `%c'"
+msgstr ""
+
+#: elfxx-riscv.c:1365
+#, c-format
+msgid "-march=%s: Invalid or unknown %s ISA extension: '%s'"
+msgstr ""
+
+#: elfxx-riscv.c:1376
+#, c-format
+msgid "-march=%s: Duplicate %s ISA extension: '%s'"
+msgstr ""
+
+#: elfxx-riscv.c:1387
+#, c-format
+msgid ""
+"-march=%s: %s ISA extension not in alphabetical order: '%s' must come before "
+"'%s'."
+msgstr ""
+
+#: elfxx-riscv.c:1408
+#, c-format
+msgid "-march=%s: %s must separate with _"
+msgstr ""
+
+#: elfxx-riscv.c:1524
+#, c-format
+msgid "-march=%s: ISA string must begin with rv32 or rv64"
+msgstr ""
+
+#: elfxx-riscv.c:1545
+#, c-format
+msgid "-march=%s: unexpected ISA string at end: %s"
+msgstr ""
+
+#: elfxx-riscv.c:1554
+#, c-format
+msgid "-march=%s: rv32e does not support the `f' extension"
+msgstr ""
+
+#: elfxx-riscv.c:1563
+#, c-format
+msgid "-march=%s: `d' extension requires `f' extension"
+msgstr ""
+
+#: elfxx-riscv.c:1572
+#, c-format
+msgid "-march=%s: `q' extension requires `d' extension"
+msgstr ""
+
+#: elfxx-riscv.c:1580
+#, c-format
+msgid "-march=%s: rv32 does not support the `q' extension"
+msgstr ""
+
+#: elfxx-sparc.c:3110 elfnn-aarch64.c:5576
#, c-format
msgid ""
"%pB: relocation %s against STT_GNU_IFUNC symbol `%s' isn't handled by %s"
@@ -5357,81 +5543,92 @@ msgstr ""
msgid "%pB: cannot link together %s and %s objects"
msgstr ""
-#: elfxx-x86.c:578
+#: elfxx-x86.c:581
#, c-format
msgid "%P: %pB: warning: relocation against `%s' in read-only section `%pA'\n"
msgstr ""
-#: elfxx-x86.c:1027
+#: elfxx-x86.c:1041
+#, c-format
+msgid ""
+"%F%P: %pB: relocation %s against absolute symbol `%s' in section `%pA' is "
+"disallowed\n"
+msgstr ""
+
+#: elfxx-x86.c:1124
msgid "%P: %pB: warning: relocation in read-only section `%pA'\n"
msgstr ""
-#: elfxx-x86.c:1382
+#: elfxx-x86.c:1479
msgid ""
"%P%X: read-only segment has dynamic IFUNC relocations; recompile with %s\n"
msgstr ""
-#: elfxx-x86.c:2385
+#: elfxx-x86.c:2482
#, c-format
msgid "error: %pB: <corrupt x86 property (0x%x) size: 0x%x>"
msgstr ""
-#: elfxx-x86.c:2651
+#: elfxx-x86.c:2748
msgid "%P: %pB: warning: missing %s\n"
msgstr ""
-#: elfxx-x86.c:2653
+#: elfxx-x86.c:2750
msgid "%X%P: %pB: error: missing %s\n"
msgstr ""
-#: elfxx-x86.c:2676
+#: elfxx-x86.c:2773
msgid "IBT and SHSTK properties"
msgstr ""
-#: elfxx-x86.c:2678
+#: elfxx-x86.c:2775
msgid "IBT property"
msgstr ""
-#: elfxx-x86.c:2680
+#: elfxx-x86.c:2777
msgid "SHSTK property"
msgstr ""
-#: elfxx-x86.c:2824
+#: elfxx-x86.c:2921
msgid "%F%P: failed to create VxWorks dynamic sections\n"
msgstr ""
-#: elfxx-x86.c:2833
+#: elfxx-x86.c:2930
msgid "%F%P: failed to create GOT sections\n"
msgstr ""
-#: elfxx-x86.c:2851
+#: elfxx-x86.c:2948
msgid "%F%P: failed to create ifunc sections\n"
msgstr ""
-#: elfxx-x86.c:2891
+#: elfxx-x86.c:2988
msgid "%F%P: failed to create GOT PLT section\n"
msgstr ""
-#: elfxx-x86.c:2911
+#: elfxx-x86.c:3008
msgid "%F%P: failed to create IBT-enabled PLT section\n"
msgstr ""
-#: elfxx-x86.c:2925
+#: elfxx-x86.c:3022
msgid "%F%P: failed to create BND PLT section\n"
msgstr ""
-#: elfxx-x86.c:2945
+#: elfxx-x86.c:3042
msgid "%F%P: failed to create PLT .eh_frame section\n"
msgstr ""
-#: elfxx-x86.c:2958
+#: elfxx-x86.c:3055
msgid "%F%P: failed to create GOT PLT .eh_frame section\n"
msgstr ""
-#: elfxx-x86.c:2972
+#: elfxx-x86.c:3069
msgid "%F%P: failed to create the second PLT .eh_frame section\n"
msgstr ""
+#: elfxx-x86.c:3111
+msgid "%X%P: attempted static link of dynamic object `%pB'\n"
+msgstr ""
+
#: ihex.c:230
#, c-format
msgid "%pB:%d: unexpected character `%s' in Intel Hex file"
@@ -5482,22 +5679,22 @@ msgstr ""
msgid "%pB 64-bit address %#<PRIx64> out of range for Intel Hex file"
msgstr ""
-#: ihex.c:852
+#: ihex.c:851
#, c-format
msgid "%pB: address %#<PRIx64> out of range for Intel Hex file"
msgstr ""
-#: libbfd.c:937
+#: libbfd.c:884
#, c-format
msgid "%pB: unable to get decompressed section %pA"
msgstr ""
-#: libbfd.c:1101
+#: libbfd.c:1048
#, c-format
msgid "Deprecated %s called at %s line %d in %s\n"
msgstr ""
-#: libbfd.c:1104
+#: libbfd.c:1051
#, c-format
msgid "Deprecated %s called\n"
msgstr ""
@@ -5645,93 +5842,89 @@ msgid ""
"malformed mach-o reloc: section index is greater than the number of sections"
msgstr ""
-#: mach-o.c:2123
+#: mach-o.c:2139
msgid ""
"sorry: modtab, toc and extrefsyms are not yet implemented for dysymtab "
"commands."
msgstr ""
-#: mach-o.c:2569
+#: mach-o.c:2587
#, c-format
msgid "mach-o: there are too many sections (%u) maximum is 255,\n"
msgstr ""
-#: mach-o.c:2676
+#: mach-o.c:2694
#, c-format
msgid "unable to allocate data for load command %#x"
msgstr ""
-#: mach-o.c:2781
+#: mach-o.c:2799
#, c-format
msgid "unable to write unknown load command %#x"
msgstr ""
-#: mach-o.c:2965
+#: mach-o.c:2983
#, c-format
msgid "section address (%#<PRIx64>) below start of segment (%#<PRIx64>)"
msgstr ""
-#: mach-o.c:3107
+#: mach-o.c:3125
#, c-format
msgid "unable to layout unknown load command %#x"
msgstr ""
-#: mach-o.c:3642
+#: mach-o.c:3660
#, c-format
msgid ""
"bfd_mach_o_read_section_32: overlarge alignment value: %#lx, using 32 instead"
msgstr ""
-#: mach-o.c:3685
+#: mach-o.c:3703
#, c-format
msgid ""
"bfd_mach_o_read_section_64: overlarge alignment value: %#lx, using 32 instead"
msgstr ""
-#: mach-o.c:3736
+#: mach-o.c:3754
#, c-format
msgid "bfd_mach_o_read_symtab_symbol: unable to read %d bytes at %u"
msgstr ""
-#: mach-o.c:3755
+#: mach-o.c:3773
#, c-format
msgid "bfd_mach_o_read_symtab_symbol: name out of range (%lu >= %u)"
msgstr ""
-#: mach-o.c:3838
+#: mach-o.c:3856
#, c-format
msgid ""
"bfd_mach_o_read_symtab_symbol: symbol \"%s\" specified invalid section %d "
"(max %lu): setting to undefined"
msgstr ""
-#: mach-o.c:3857
+#: mach-o.c:3875
#, c-format
msgid ""
"bfd_mach_o_read_symtab_symbol: symbol \"%s\" specified invalid type field 0x"
"%x: setting to undefined"
msgstr ""
-#: mach-o.c:3934
-msgid "bfd_mach_o_read_symtab_symbols: unable to allocate memory for symbols"
-msgstr ""
-
-#: mach-o.c:4994
+#: mach-o.c:5062
#, c-format
msgid "%pB: unknown load command %#x"
msgstr ""
-#: mach-o.c:5185
+#: mach-o.c:5261
#, c-format
msgid "bfd_mach_o_scan: unknown architecture 0x%lx/0x%lx"
msgstr ""
-#: mach-o.c:5290
+#: mach-o.c:5383
#, c-format
msgid "unknown header byte-order value %#x"
msgstr ""
-#: merge.c:889
+#: merge.c:895
#, c-format
msgid "%pB: access beyond end of merged section (%<PRId64>)"
msgstr ""
@@ -5773,111 +5966,111 @@ msgstr ""
msgid "%pB: invalid mmo file: expected YZ = 1 got YZ = %d for lop_quote\n"
msgstr ""
-#: mmo.c:1677
+#: mmo.c:1679
#, c-format
msgid ""
"%pB: invalid mmo file: expected z = 1 or z = 2, got z = %d for lop_loc\n"
msgstr ""
-#: mmo.c:1728
+#: mmo.c:1730
#, c-format
msgid ""
"%pB: invalid mmo file: expected z = 1 or z = 2, got z = %d for lop_fixo\n"
msgstr ""
-#: mmo.c:1769
+#: mmo.c:1771
#, c-format
msgid "%pB: invalid mmo file: expected y = 0, got y = %d for lop_fixrx\n"
msgstr ""
-#: mmo.c:1780
+#: mmo.c:1782
#, c-format
msgid ""
"%pB: invalid mmo file: expected z = 16 or z = 24, got z = %d for lop_fixrx\n"
msgstr ""
-#: mmo.c:1805
+#: mmo.c:1807
#, c-format
msgid ""
"%pB: invalid mmo file: leading byte of operand word must be 0 or 1, got %d "
"for lop_fixrx\n"
msgstr ""
-#: mmo.c:1830
+#: mmo.c:1832
#, c-format
msgid "%pB: cannot allocate file name for file number %d, %d bytes\n"
msgstr ""
-#: mmo.c:1852
+#: mmo.c:1854
#, c-format
msgid ""
"%pB: invalid mmo file: file number %d `%s', was already entered as `%s'\n"
msgstr ""
-#: mmo.c:1866
+#: mmo.c:1868
#, c-format
msgid ""
"%pB: invalid mmo file: file name for number %d was not specified before use\n"
msgstr ""
-#: mmo.c:1973
+#: mmo.c:1975
#, c-format
msgid ""
"%pB: invalid mmo file: fields y and z of lop_stab non-zero, y: %d, z: %d\n"
msgstr ""
-#: mmo.c:2010
+#: mmo.c:2012
#, c-format
msgid "%pB: invalid mmo file: lop_end not last item in file\n"
msgstr ""
-#: mmo.c:2024
+#: mmo.c:2026
#, c-format
msgid ""
"%pB: invalid mmo file: YZ of lop_end (%ld) not equal to the number of tetras "
"to the preceding lop_stab (%ld)\n"
msgstr ""
-#: mmo.c:2732
+#: mmo.c:2736
#, c-format
msgid "%pB: invalid symbol table: duplicate symbol `%s'\n"
msgstr ""
-#: mmo.c:2975
+#: mmo.c:2979
#, c-format
msgid ""
"%pB: bad symbol definition: `Main' set to %s rather than the start address "
"%s\n"
msgstr ""
-#: mmo.c:3074
+#: mmo.c:3078
#, c-format
msgid ""
"%pB: warning: symbol table too large for mmo, larger than 65535 32-bit "
"words: %d. Only `Main' will be emitted.\n"
msgstr ""
-#: mmo.c:3120
+#: mmo.c:3124
#, c-format
msgid "%pB: internal error, symbol table changed size from %d to %d words\n"
msgstr ""
-#: mmo.c:3173
+#: mmo.c:3177
#, c-format
msgid "%pB: internal error, internal register section %pA had contents\n"
msgstr ""
-#: mmo.c:3224
+#: mmo.c:3228
#, c-format
msgid "%pB: no initialized registers; section length 0\n"
msgstr ""
-#: mmo.c:3231
+#: mmo.c:3235
#, c-format
msgid "%pB: too many initialized registers; section length %<PRId64>"
msgstr ""
-#: mmo.c:3236
+#: mmo.c:3240
#, c-format
msgid ""
"%pB: invalid start address for initialized registers of length %<PRId64>: "
@@ -5889,7 +6082,7 @@ msgstr ""
msgid "unhandled OSF/1 core file section type %d"
msgstr ""
-#: pef.c:534
+#: pef.c:532
#, c-format
msgid "bfd_pef_scan: unknown architecture 0x%lx"
msgstr ""
@@ -5984,12 +6177,12 @@ msgstr ""
msgid "%pB: size field is zero in Import Library Format header"
msgstr ""
-#: peicode.h:1295
+#: peicode.h:1289
#, c-format
msgid "%pB: string not null terminated in ILF object file"
msgstr ""
-#: peicode.h:1351
+#: peicode.h:1345
#, c-format
msgid "%pB: error: debug data ends beyond end of debug directory"
msgstr ""
@@ -6043,32 +6236,32 @@ msgstr ""
msgid "Partition[%d] length = 0x%.8lx (%ld)\n"
msgstr ""
-#: reloc.c:8263
+#: reloc.c:8291
msgid "INPUT_SECTION_FLAGS are not supported"
msgstr ""
-#: reloc.c:8364
+#: reloc.c:8392
#, c-format
msgid "%X%P: %pB(%pA): error: relocation for offset %V has no value\n"
msgstr ""
-#: reloc.c:8452
+#: reloc.c:8480
#, c-format
msgid "%X%P: %pB(%pA): relocation \"%pR\" is not supported\n"
msgstr ""
-#: reloc.c:8461
+#: reloc.c:8489
#, c-format
msgid "%X%P: %pB(%pA): relocation \"%pR\" returns an unrecognized value %x\n"
msgstr ""
-#: reloc.c:8523
+#: reloc.c:8551
#, c-format
msgid "%pB: unrecognized relocation type %#x in section `%pA'"
msgstr ""
#. PR 21803: Suggest the most likely cause of this error.
-#: reloc.c:8527
+#: reloc.c:8555
#, c-format
msgid "is this version of the linker - %s - out of date ?"
msgstr ""
@@ -6078,14 +6271,14 @@ msgstr ""
msgid "%pB: warning core file truncated"
msgstr ""
-#: som.c:5482
+#: som.c:5509
#, c-format
msgid ""
"\n"
"Exec Auxiliary Header\n"
msgstr ""
-#: som.c:5791
+#: som.c:5818
msgid "som_sizeof_headers unimplemented"
msgstr ""
@@ -6109,78 +6302,83 @@ msgstr ""
msgid "%pB(%pA+%#lx): stabs entry has invalid string index"
msgstr ""
-#: syms.c:1098
+#: syms.c:1087
msgid "unsupported .stab relocation"
msgstr ""
-#: vms-alpha.c:479
+#: vms-alpha.c:476
msgid "corrupt EIHD record - size is too small"
msgstr ""
-#: vms-alpha.c:665
+#: vms-alpha.c:662
#, c-format
msgid "unable to read EIHS record at offset %#x"
msgstr ""
-#: vms-alpha.c:1157
+#: vms-alpha.c:1154
msgid "record is too small for symbol name length"
msgstr ""
-#: vms-alpha.c:1190
+#: vms-alpha.c:1187
#, c-format
msgid "corrupt EGSD record: its size (%#x) is too small"
msgstr ""
-#: vms-alpha.c:1214
+#: vms-alpha.c:1211
#, c-format
msgid ""
"corrupt EGSD record type %d: size (%#x) is larger than remaining space (%#x)"
msgstr ""
-#: vms-alpha.c:1224
+#: vms-alpha.c:1221
#, c-format
msgid "corrupt EGSD record type %d: size (%#x) is too small"
msgstr ""
-#: vms-alpha.c:1366
+#: vms-alpha.c:1363
#, c-format
msgid "corrupt EGSD record: its psindx field is too big (%#lx)"
msgstr ""
-#: vms-alpha.c:1442
+#: vms-alpha.c:1439
#, c-format
msgid "unknown EGSD subtype %d"
msgstr ""
-#: vms-alpha.c:1475
+#: vms-alpha.c:1472
#, c-format
msgid "stack overflow (%d) in _bfd_vms_push"
msgstr ""
-#: vms-alpha.c:1489
+#: vms-alpha.c:1486
msgid "stack underflow in _bfd_vms_pop"
msgstr ""
+#: vms-alpha.c:1560
+#, c-format
+msgid "dst_define_location %u too large"
+msgstr ""
+
#. These names have not yet been added to this switch statement.
-#: vms-alpha.c:1733
+#: vms-alpha.c:1761
#, c-format
msgid "unknown ETIR command %d"
msgstr ""
-#: vms-alpha.c:1764
+#: vms-alpha.c:1792
msgid "corrupt vms value"
msgstr ""
-#: vms-alpha.c:1895
+#: vms-alpha.c:1923
msgid "corrupt ETIR record encountered"
msgstr ""
-#: vms-alpha.c:1956
+#: vms-alpha.c:1984
#, c-format
msgid "bad section index in %s"
msgstr ""
-#: vms-alpha.c:1970
+#: vms-alpha.c:1998
#, c-format
msgid "unsupported STA cmd %s"
msgstr ""
@@ -6190,1935 +6388,1947 @@ msgstr ""
#. Rotate.
#. Redefine symbol to current location.
#. Define a literal.
-#: vms-alpha.c:2156 vms-alpha.c:2187 vms-alpha.c:2278 vms-alpha.c:2467
+#: vms-alpha.c:2201 vms-alpha.c:2232 vms-alpha.c:2325 vms-alpha.c:2528
#, c-format
msgid "%s: not supported"
msgstr ""
-#: vms-alpha.c:2162
+#: vms-alpha.c:2207
#, c-format
msgid "%s: not implemented"
msgstr ""
-#: vms-alpha.c:2450
+#: vms-alpha.c:2370 vms-alpha.c:2385
+#, c-format
+msgid "invalid %s"
+msgstr ""
+
+#. Divide by zero is supposed to give a result of zero,
+#. and a non-fatal warning message.
+#: vms-alpha.c:2445
+#, c-format
+msgid "%s divide by zero"
+msgstr ""
+
+#: vms-alpha.c:2511
#, c-format
msgid "invalid use of %s with contexts"
msgstr ""
-#: vms-alpha.c:2491
+#: vms-alpha.c:2552
#, c-format
msgid "reserved cmd %d"
msgstr ""
-#: vms-alpha.c:2575
+#: vms-alpha.c:2636
msgid "corrupt EEOM record - size is too small"
msgstr ""
-#: vms-alpha.c:2584
+#: vms-alpha.c:2645
msgid "object module not error-free !"
msgstr ""
-#: vms-alpha.c:3926
+#: vms-alpha.c:3972
#, c-format
msgid "SEC_RELOC with no relocs in section %pA"
msgstr ""
-#: vms-alpha.c:3978 vms-alpha.c:4193
+#: vms-alpha.c:4024 vms-alpha.c:4239
#, c-format
msgid "size error in section %pA"
msgstr ""
-#: vms-alpha.c:4138
+#: vms-alpha.c:4184
msgid "spurious ALPHA_R_BSR reloc"
msgstr ""
-#: vms-alpha.c:4179
+#: vms-alpha.c:4225
#, c-format
msgid "unhandled relocation %s"
msgstr ""
-#: vms-alpha.c:4474
+#: vms-alpha.c:4522
#, c-format
msgid "unknown source command %d"
msgstr ""
-#: vms-alpha.c:4535 vms-alpha.c:4541 vms-alpha.c:4547 vms-alpha.c:4553
-#: vms-alpha.c:4559 vms-alpha.c:4586 vms-alpha.c:4592 vms-alpha.c:4598
-#: vms-alpha.c:4604
+#: vms-alpha.c:4583 vms-alpha.c:4589 vms-alpha.c:4595 vms-alpha.c:4601
+#: vms-alpha.c:4607 vms-alpha.c:4634 vms-alpha.c:4640 vms-alpha.c:4646
+#: vms-alpha.c:4652
#, c-format
msgid "%s not implemented"
msgstr ""
-#: vms-alpha.c:4647
+#: vms-alpha.c:4695
#, c-format
msgid "unknown line command %d"
msgstr ""
-#: vms-alpha.c:5107 vms-alpha.c:5125 vms-alpha.c:5140 vms-alpha.c:5156
-#: vms-alpha.c:5169 vms-alpha.c:5181 vms-alpha.c:5194
+#: vms-alpha.c:5159 vms-alpha.c:5177 vms-alpha.c:5192 vms-alpha.c:5208
+#: vms-alpha.c:5221 vms-alpha.c:5233 vms-alpha.c:5246
#, c-format
msgid "unknown reloc %s + %s"
msgstr ""
-#: vms-alpha.c:5249
+#: vms-alpha.c:5301
#, c-format
msgid "unknown reloc %s"
msgstr ""
-#: vms-alpha.c:5263
+#: vms-alpha.c:5315
msgid "invalid section index in ETIR"
msgstr ""
-#: vms-alpha.c:5272
+#: vms-alpha.c:5324
msgid "relocation for non-REL psect"
msgstr ""
-#: vms-alpha.c:5319
+#: vms-alpha.c:5373
#, c-format
msgid "unknown symbol in command %s"
msgstr ""
-#: vms-alpha.c:5733
+#: vms-alpha.c:5787
#, c-format
msgid "reloc (%d) is *UNKNOWN*"
msgstr ""
-#: vms-alpha.c:5849
+#: vms-alpha.c:5903
#, c-format
msgid " EMH %u (len=%u): "
msgstr ""
-#: vms-alpha.c:5854
+#: vms-alpha.c:5908
#, c-format
msgid " Error: The length is less than the length of an EMH record\n"
msgstr ""
-#: vms-alpha.c:5871
+#: vms-alpha.c:5925
#, c-format
msgid ""
" Error: The record length is less than the size of an EMH_MHD record\n"
msgstr ""
-#: vms-alpha.c:5874
+#: vms-alpha.c:5928
#, c-format
msgid "Module header\n"
msgstr ""
-#: vms-alpha.c:5875
+#: vms-alpha.c:5929
#, c-format
msgid " structure level: %u\n"
msgstr ""
-#: vms-alpha.c:5876
+#: vms-alpha.c:5930
#, c-format
msgid " max record size: %u\n"
msgstr ""
-#: vms-alpha.c:5882
+#: vms-alpha.c:5936
#, c-format
msgid " Error: The module name is missing\n"
msgstr ""
-#: vms-alpha.c:5888
+#: vms-alpha.c:5942
#, c-format
msgid " Error: The module name is too long\n"
msgstr ""
-#: vms-alpha.c:5891
+#: vms-alpha.c:5945
#, c-format
msgid " module name : %.*s\n"
msgstr ""
-#: vms-alpha.c:5895
+#: vms-alpha.c:5949
#, c-format
msgid " Error: The module version is missing\n"
msgstr ""
-#: vms-alpha.c:5901
+#: vms-alpha.c:5955
#, c-format
msgid " Error: The module version is too long\n"
msgstr ""
-#: vms-alpha.c:5904
+#: vms-alpha.c:5958
#, c-format
msgid " module version : %.*s\n"
msgstr ""
-#: vms-alpha.c:5907
+#: vms-alpha.c:5961
#, c-format
msgid " Error: The compile date is truncated\n"
msgstr ""
-#: vms-alpha.c:5909
+#: vms-alpha.c:5963
#, c-format
msgid " compile date : %.17s\n"
msgstr ""
-#: vms-alpha.c:5914
+#: vms-alpha.c:5968
#, c-format
msgid "Language Processor Name\n"
msgstr ""
-#: vms-alpha.c:5915
+#: vms-alpha.c:5969
#, c-format
msgid " language name: %.*s\n"
msgstr ""
-#: vms-alpha.c:5919
+#: vms-alpha.c:5973
#, c-format
msgid "Source Files Header\n"
msgstr ""
-#: vms-alpha.c:5920
+#: vms-alpha.c:5974
#, c-format
msgid " file: %.*s\n"
msgstr ""
-#: vms-alpha.c:5924
+#: vms-alpha.c:5978
#, c-format
msgid "Title Text Header\n"
msgstr ""
-#: vms-alpha.c:5925
+#: vms-alpha.c:5979
#, c-format
msgid " title: %.*s\n"
msgstr ""
-#: vms-alpha.c:5929
+#: vms-alpha.c:5983
#, c-format
msgid "Copyright Header\n"
msgstr ""
-#: vms-alpha.c:5930
+#: vms-alpha.c:5984
#, c-format
msgid " copyright: %.*s\n"
msgstr ""
-#: vms-alpha.c:5934
+#: vms-alpha.c:5988
#, c-format
msgid "unhandled emh subtype %u\n"
msgstr ""
-#: vms-alpha.c:5944
+#: vms-alpha.c:5998
#, c-format
msgid " EEOM (len=%u):\n"
msgstr ""
-#: vms-alpha.c:5949
+#: vms-alpha.c:6003
#, c-format
msgid " Error: The length is less than the length of an EEOM record\n"
msgstr ""
-#: vms-alpha.c:5953
+#: vms-alpha.c:6007
#, c-format
msgid " number of cond linkage pairs: %u\n"
msgstr ""
-#: vms-alpha.c:5955
+#: vms-alpha.c:6009
#, c-format
msgid " completion code: %u\n"
msgstr ""
-#: vms-alpha.c:5959
+#: vms-alpha.c:6013
#, c-format
msgid " transfer addr flags: 0x%02x\n"
msgstr ""
-#: vms-alpha.c:5960
+#: vms-alpha.c:6014
#, c-format
msgid " transfer addr psect: %u\n"
msgstr ""
-#: vms-alpha.c:5962
+#: vms-alpha.c:6016
#, c-format
msgid " transfer address : 0x%08x\n"
msgstr ""
-#: vms-alpha.c:5971
+#: vms-alpha.c:6025
msgid " WEAK"
msgstr ""
-#: vms-alpha.c:5973
+#: vms-alpha.c:6027
msgid " DEF"
msgstr ""
-#: vms-alpha.c:5975
+#: vms-alpha.c:6029
msgid " UNI"
msgstr ""
-#: vms-alpha.c:5977 vms-alpha.c:5998
+#: vms-alpha.c:6031 vms-alpha.c:6052
msgid " REL"
msgstr ""
-#: vms-alpha.c:5979
+#: vms-alpha.c:6033
msgid " COMM"
msgstr ""
-#: vms-alpha.c:5981
+#: vms-alpha.c:6035
msgid " VECEP"
msgstr ""
-#: vms-alpha.c:5983
+#: vms-alpha.c:6037
msgid " NORM"
msgstr ""
-#: vms-alpha.c:5985
+#: vms-alpha.c:6039
msgid " QVAL"
msgstr ""
-#: vms-alpha.c:5992
+#: vms-alpha.c:6046
msgid " PIC"
msgstr ""
-#: vms-alpha.c:5994
+#: vms-alpha.c:6048
msgid " LIB"
msgstr ""
-#: vms-alpha.c:5996
+#: vms-alpha.c:6050
msgid " OVR"
msgstr ""
-#: vms-alpha.c:6000
+#: vms-alpha.c:6054
msgid " GBL"
msgstr ""
-#: vms-alpha.c:6002
+#: vms-alpha.c:6056
msgid " SHR"
msgstr ""
-#: vms-alpha.c:6004
+#: vms-alpha.c:6058
msgid " EXE"
msgstr ""
-#: vms-alpha.c:6006
+#: vms-alpha.c:6060
msgid " RD"
msgstr ""
-#: vms-alpha.c:6008
+#: vms-alpha.c:6062
msgid " WRT"
msgstr ""
-#: vms-alpha.c:6010
+#: vms-alpha.c:6064
msgid " VEC"
msgstr ""
-#: vms-alpha.c:6012
+#: vms-alpha.c:6066
msgid " NOMOD"
msgstr ""
-#: vms-alpha.c:6014
+#: vms-alpha.c:6068
msgid " COM"
msgstr ""
-#: vms-alpha.c:6016
+#: vms-alpha.c:6070
msgid " 64B"
msgstr ""
-#: vms-alpha.c:6025
+#: vms-alpha.c:6079
#, c-format
msgid " EGSD (len=%u):\n"
msgstr ""
-#: vms-alpha.c:6038
+#: vms-alpha.c:6092
#, c-format
msgid " EGSD entry %2u (type: %u, len: %u): "
msgstr ""
-#: vms-alpha.c:6044 vms-alpha.c:6295
+#: vms-alpha.c:6098 vms-alpha.c:6349
#, c-format
msgid " Error: length larger than remaining space in record\n"
msgstr ""
-#: vms-alpha.c:6056
+#: vms-alpha.c:6110
#, c-format
msgid "PSC - Program section definition\n"
msgstr ""
-#: vms-alpha.c:6057 vms-alpha.c:6074
+#: vms-alpha.c:6111 vms-alpha.c:6128
#, c-format
msgid " alignment : 2**%u\n"
msgstr ""
-#: vms-alpha.c:6058 vms-alpha.c:6075
+#: vms-alpha.c:6112 vms-alpha.c:6129
#, c-format
msgid " flags : 0x%04x"
msgstr ""
-#: vms-alpha.c:6062
+#: vms-alpha.c:6116
#, c-format
msgid " alloc (len): %u (0x%08x)\n"
msgstr ""
-#: vms-alpha.c:6063 vms-alpha.c:6120 vms-alpha.c:6169
+#: vms-alpha.c:6117 vms-alpha.c:6174 vms-alpha.c:6223
#, c-format
msgid " name : %.*s\n"
msgstr ""
-#: vms-alpha.c:6073
+#: vms-alpha.c:6127
#, c-format
msgid "SPSC - Shared Image Program section def\n"
msgstr ""
-#: vms-alpha.c:6079
+#: vms-alpha.c:6133
#, c-format
msgid " alloc (len) : %u (0x%08x)\n"
msgstr ""
-#: vms-alpha.c:6080
+#: vms-alpha.c:6134
#, c-format
msgid " image offset : 0x%08x\n"
msgstr ""
-#: vms-alpha.c:6082
+#: vms-alpha.c:6136
#, c-format
msgid " symvec offset : 0x%08x\n"
msgstr ""
-#: vms-alpha.c:6084
+#: vms-alpha.c:6138
#, c-format
msgid " name : %.*s\n"
msgstr ""
-#: vms-alpha.c:6097
+#: vms-alpha.c:6151
#, c-format
msgid "SYM - Global symbol definition\n"
msgstr ""
-#: vms-alpha.c:6098 vms-alpha.c:6158 vms-alpha.c:6179 vms-alpha.c:6198
+#: vms-alpha.c:6152 vms-alpha.c:6212 vms-alpha.c:6233 vms-alpha.c:6252
#, c-format
msgid " flags: 0x%04x"
msgstr ""
-#: vms-alpha.c:6101
+#: vms-alpha.c:6155
#, c-format
msgid " psect offset: 0x%08x\n"
msgstr ""
-#: vms-alpha.c:6105
+#: vms-alpha.c:6159
#, c-format
msgid " code address: 0x%08x\n"
msgstr ""
-#: vms-alpha.c:6107
+#: vms-alpha.c:6161
#, c-format
msgid " psect index for entry point : %u\n"
msgstr ""
-#: vms-alpha.c:6110 vms-alpha.c:6186 vms-alpha.c:6205
+#: vms-alpha.c:6164 vms-alpha.c:6240 vms-alpha.c:6259
#, c-format
msgid " psect index : %u\n"
msgstr ""
-#: vms-alpha.c:6112 vms-alpha.c:6188 vms-alpha.c:6207
+#: vms-alpha.c:6166 vms-alpha.c:6242 vms-alpha.c:6261
#, c-format
msgid " name : %.*s\n"
msgstr ""
-#: vms-alpha.c:6119
+#: vms-alpha.c:6173
#, c-format
msgid "SYM - Global symbol reference\n"
msgstr ""
-#: vms-alpha.c:6131
+#: vms-alpha.c:6185
#, c-format
msgid "IDC - Ident Consistency check\n"
msgstr ""
-#: vms-alpha.c:6132
+#: vms-alpha.c:6186
#, c-format
msgid " flags : 0x%08x"
msgstr ""
-#: vms-alpha.c:6136
+#: vms-alpha.c:6190
#, c-format
msgid " id match : %x\n"
msgstr ""
-#: vms-alpha.c:6138
+#: vms-alpha.c:6192
#, c-format
msgid " error severity: %x\n"
msgstr ""
-#: vms-alpha.c:6141
+#: vms-alpha.c:6195
#, c-format
msgid " entity name : %.*s\n"
msgstr ""
-#: vms-alpha.c:6143
+#: vms-alpha.c:6197
#, c-format
msgid " object name : %.*s\n"
msgstr ""
-#: vms-alpha.c:6146
+#: vms-alpha.c:6200
#, c-format
msgid " binary ident : 0x%08x\n"
msgstr ""
-#: vms-alpha.c:6149
+#: vms-alpha.c:6203
#, c-format
msgid " ascii ident : %.*s\n"
msgstr ""
-#: vms-alpha.c:6157
+#: vms-alpha.c:6211
#, c-format
msgid "SYMG - Universal symbol definition\n"
msgstr ""
-#: vms-alpha.c:6161
+#: vms-alpha.c:6215
#, c-format
msgid " symbol vector offset: 0x%08x\n"
msgstr ""
-#: vms-alpha.c:6163
+#: vms-alpha.c:6217
#, c-format
msgid " entry point: 0x%08x\n"
msgstr ""
-#: vms-alpha.c:6165
+#: vms-alpha.c:6219
#, c-format
msgid " proc descr : 0x%08x\n"
msgstr ""
-#: vms-alpha.c:6167
+#: vms-alpha.c:6221
#, c-format
msgid " psect index: %u\n"
msgstr ""
-#: vms-alpha.c:6178
+#: vms-alpha.c:6232
#, c-format
msgid "SYMV - Vectored symbol definition\n"
msgstr ""
-#: vms-alpha.c:6182
+#: vms-alpha.c:6236
#, c-format
msgid " vector : 0x%08x\n"
msgstr ""
-#: vms-alpha.c:6184 vms-alpha.c:6203
+#: vms-alpha.c:6238 vms-alpha.c:6257
#, c-format
msgid " psect offset: %u\n"
msgstr ""
-#: vms-alpha.c:6197
+#: vms-alpha.c:6251
#, c-format
msgid "SYMM - Global symbol definition with version\n"
msgstr ""
-#: vms-alpha.c:6201
+#: vms-alpha.c:6255
#, c-format
msgid " version mask: 0x%08x\n"
msgstr ""
-#: vms-alpha.c:6212
+#: vms-alpha.c:6266
#, c-format
msgid "unhandled egsd entry type %u\n"
msgstr ""
-#: vms-alpha.c:6247
+#: vms-alpha.c:6301
#, c-format
msgid " linkage index: %u, replacement insn: 0x%08x\n"
msgstr ""
-#: vms-alpha.c:6251
+#: vms-alpha.c:6305
#, c-format
msgid " psect idx 1: %u, offset 1: 0x%08x %08x\n"
msgstr ""
-#: vms-alpha.c:6256
+#: vms-alpha.c:6310
#, c-format
msgid " psect idx 2: %u, offset 2: 0x%08x %08x\n"
msgstr ""
-#: vms-alpha.c:6262
+#: vms-alpha.c:6316
#, c-format
msgid " psect idx 3: %u, offset 3: 0x%08x %08x\n"
msgstr ""
-#: vms-alpha.c:6267
+#: vms-alpha.c:6321
#, c-format
msgid " global name: %.*s\n"
msgstr ""
-#: vms-alpha.c:6278
+#: vms-alpha.c:6332
#, c-format
msgid " %s (len=%u+%u):\n"
msgstr ""
-#: vms-alpha.c:6300
+#: vms-alpha.c:6354
#, c-format
msgid " (type: %3u, size: 4+%3u): "
msgstr ""
-#: vms-alpha.c:6304
+#: vms-alpha.c:6358
#, c-format
msgid "STA_GBL (stack global) %.*s\n"
msgstr ""
-#: vms-alpha.c:6308
+#: vms-alpha.c:6362
#, c-format
msgid "STA_LW (stack longword) 0x%08x\n"
msgstr ""
-#: vms-alpha.c:6312
+#: vms-alpha.c:6366
#, c-format
msgid "STA_QW (stack quadword) 0x%08x %08x\n"
msgstr ""
-#: vms-alpha.c:6317
+#: vms-alpha.c:6371
#, c-format
msgid "STA_PQ (stack psect base + offset)\n"
msgstr ""
-#: vms-alpha.c:6319
+#: vms-alpha.c:6373
#, c-format
msgid " psect: %u, offset: 0x%08x %08x\n"
msgstr ""
-#: vms-alpha.c:6325
+#: vms-alpha.c:6379
#, c-format
msgid "STA_LI (stack literal)\n"
msgstr ""
-#: vms-alpha.c:6328
+#: vms-alpha.c:6382
#, c-format
msgid "STA_MOD (stack module)\n"
msgstr ""
-#: vms-alpha.c:6331
+#: vms-alpha.c:6385
#, c-format
msgid "STA_CKARG (compare procedure argument)\n"
msgstr ""
-#: vms-alpha.c:6335
+#: vms-alpha.c:6389
#, c-format
msgid "STO_B (store byte)\n"
msgstr ""
-#: vms-alpha.c:6338
+#: vms-alpha.c:6392
#, c-format
msgid "STO_W (store word)\n"
msgstr ""
-#: vms-alpha.c:6341
+#: vms-alpha.c:6395
#, c-format
msgid "STO_LW (store longword)\n"
msgstr ""
-#: vms-alpha.c:6344
+#: vms-alpha.c:6398
#, c-format
msgid "STO_QW (store quadword)\n"
msgstr ""
-#: vms-alpha.c:6350
+#: vms-alpha.c:6404
#, c-format
msgid "STO_IMMR (store immediate repeat) %u bytes\n"
msgstr ""
-#: vms-alpha.c:6357
+#: vms-alpha.c:6411
#, c-format
msgid "STO_GBL (store global) %.*s\n"
msgstr ""
-#: vms-alpha.c:6361
+#: vms-alpha.c:6415
#, c-format
msgid "STO_CA (store code address) %.*s\n"
msgstr ""
-#: vms-alpha.c:6365
+#: vms-alpha.c:6419
#, c-format
msgid "STO_RB (store relative branch)\n"
msgstr ""
-#: vms-alpha.c:6368
+#: vms-alpha.c:6422
#, c-format
msgid "STO_AB (store absolute branch)\n"
msgstr ""
-#: vms-alpha.c:6371
+#: vms-alpha.c:6425
#, c-format
msgid "STO_OFF (store offset to psect)\n"
msgstr ""
-#: vms-alpha.c:6377
+#: vms-alpha.c:6431
#, c-format
msgid "STO_IMM (store immediate) %u bytes\n"
msgstr ""
-#: vms-alpha.c:6384
+#: vms-alpha.c:6438
#, c-format
msgid "STO_GBL_LW (store global longword) %.*s\n"
msgstr ""
-#: vms-alpha.c:6388
+#: vms-alpha.c:6442
#, c-format
msgid "STO_OFF (store LP with procedure signature)\n"
msgstr ""
-#: vms-alpha.c:6391
+#: vms-alpha.c:6445
#, c-format
msgid "STO_BR_GBL (store branch global) *todo*\n"
msgstr ""
-#: vms-alpha.c:6394
+#: vms-alpha.c:6448
#, c-format
msgid "STO_BR_PS (store branch psect + offset) *todo*\n"
msgstr ""
-#: vms-alpha.c:6398
+#: vms-alpha.c:6452
#, c-format
msgid "OPR_NOP (no-operation)\n"
msgstr ""
-#: vms-alpha.c:6401
+#: vms-alpha.c:6455
#, c-format
msgid "OPR_ADD (add)\n"
msgstr ""
-#: vms-alpha.c:6404
+#: vms-alpha.c:6458
#, c-format
msgid "OPR_SUB (subtract)\n"
msgstr ""
-#: vms-alpha.c:6407
+#: vms-alpha.c:6461
#, c-format
msgid "OPR_MUL (multiply)\n"
msgstr ""
-#: vms-alpha.c:6410
+#: vms-alpha.c:6464
#, c-format
msgid "OPR_DIV (divide)\n"
msgstr ""
-#: vms-alpha.c:6413
+#: vms-alpha.c:6467
#, c-format
msgid "OPR_AND (logical and)\n"
msgstr ""
-#: vms-alpha.c:6416
+#: vms-alpha.c:6470
#, c-format
msgid "OPR_IOR (logical inclusive or)\n"
msgstr ""
-#: vms-alpha.c:6419
+#: vms-alpha.c:6473
#, c-format
msgid "OPR_EOR (logical exclusive or)\n"
msgstr ""
-#: vms-alpha.c:6422
+#: vms-alpha.c:6476
#, c-format
msgid "OPR_NEG (negate)\n"
msgstr ""
-#: vms-alpha.c:6425
+#: vms-alpha.c:6479
#, c-format
msgid "OPR_COM (complement)\n"
msgstr ""
-#: vms-alpha.c:6428
+#: vms-alpha.c:6482
#, c-format
msgid "OPR_INSV (insert field)\n"
msgstr ""
-#: vms-alpha.c:6431
+#: vms-alpha.c:6485
#, c-format
msgid "OPR_ASH (arithmetic shift)\n"
msgstr ""
-#: vms-alpha.c:6434
+#: vms-alpha.c:6488
#, c-format
msgid "OPR_USH (unsigned shift)\n"
msgstr ""
-#: vms-alpha.c:6437
+#: vms-alpha.c:6491
#, c-format
msgid "OPR_ROT (rotate)\n"
msgstr ""
-#: vms-alpha.c:6440
+#: vms-alpha.c:6494
#, c-format
msgid "OPR_SEL (select)\n"
msgstr ""
-#: vms-alpha.c:6443
+#: vms-alpha.c:6497
#, c-format
msgid "OPR_REDEF (redefine symbol to curr location)\n"
msgstr ""
-#: vms-alpha.c:6446
+#: vms-alpha.c:6500
#, c-format
msgid "OPR_REDEF (define a literal)\n"
msgstr ""
-#: vms-alpha.c:6450
+#: vms-alpha.c:6504
#, c-format
msgid "STC_LP (store cond linkage pair)\n"
msgstr ""
-#: vms-alpha.c:6454
+#: vms-alpha.c:6508
#, c-format
msgid "STC_LP_PSB (store cond linkage pair + signature)\n"
msgstr ""
-#: vms-alpha.c:6456
+#: vms-alpha.c:6510
#, c-format
msgid " linkage index: %u, procedure: %.*s\n"
msgstr ""
-#: vms-alpha.c:6459
+#: vms-alpha.c:6513
#, c-format
msgid " signature: %.*s\n"
msgstr ""
-#: vms-alpha.c:6462
+#: vms-alpha.c:6516
#, c-format
msgid "STC_GBL (store cond global)\n"
msgstr ""
-#: vms-alpha.c:6464
+#: vms-alpha.c:6518
#, c-format
msgid " linkage index: %u, global: %.*s\n"
msgstr ""
-#: vms-alpha.c:6468
+#: vms-alpha.c:6522
#, c-format
msgid "STC_GCA (store cond code address)\n"
msgstr ""
-#: vms-alpha.c:6470
+#: vms-alpha.c:6524
#, c-format
msgid " linkage index: %u, procedure name: %.*s\n"
msgstr ""
-#: vms-alpha.c:6474
+#: vms-alpha.c:6528
#, c-format
msgid "STC_PS (store cond psect + offset)\n"
msgstr ""
-#: vms-alpha.c:6477
+#: vms-alpha.c:6531
#, c-format
msgid " linkage index: %u, psect: %u, offset: 0x%08x %08x\n"
msgstr ""
-#: vms-alpha.c:6484
+#: vms-alpha.c:6538
#, c-format
msgid "STC_NOP_GBL (store cond NOP at global addr)\n"
msgstr ""
-#: vms-alpha.c:6488
+#: vms-alpha.c:6542
#, c-format
msgid "STC_NOP_PS (store cond NOP at psect + offset)\n"
msgstr ""
-#: vms-alpha.c:6492
+#: vms-alpha.c:6546
#, c-format
msgid "STC_BSR_GBL (store cond BSR at global addr)\n"
msgstr ""
-#: vms-alpha.c:6496
+#: vms-alpha.c:6550
#, c-format
msgid "STC_BSR_PS (store cond BSR at psect + offset)\n"
msgstr ""
-#: vms-alpha.c:6500
+#: vms-alpha.c:6554
#, c-format
msgid "STC_LDA_GBL (store cond LDA at global addr)\n"
msgstr ""
-#: vms-alpha.c:6504
+#: vms-alpha.c:6558
#, c-format
msgid "STC_LDA_PS (store cond LDA at psect + offset)\n"
msgstr ""
-#: vms-alpha.c:6508
+#: vms-alpha.c:6562
#, c-format
msgid "STC_BOH_GBL (store cond BOH at global addr)\n"
msgstr ""
-#: vms-alpha.c:6512
+#: vms-alpha.c:6566
#, c-format
msgid "STC_BOH_PS (store cond BOH at psect + offset)\n"
msgstr ""
-#: vms-alpha.c:6517
+#: vms-alpha.c:6571
#, c-format
msgid "STC_NBH_GBL (store cond or hint at global addr)\n"
msgstr ""
-#: vms-alpha.c:6521
+#: vms-alpha.c:6575
#, c-format
msgid "STC_NBH_PS (store cond or hint at psect + offset)\n"
msgstr ""
-#: vms-alpha.c:6525
+#: vms-alpha.c:6579
#, c-format
msgid "CTL_SETRB (set relocation base)\n"
msgstr ""
-#: vms-alpha.c:6531
+#: vms-alpha.c:6585
#, c-format
msgid "CTL_AUGRB (augment relocation base) %u\n"
msgstr ""
-#: vms-alpha.c:6535
+#: vms-alpha.c:6589
#, c-format
msgid "CTL_DFLOC (define location)\n"
msgstr ""
-#: vms-alpha.c:6538
+#: vms-alpha.c:6592
#, c-format
msgid "CTL_STLOC (set location)\n"
msgstr ""
-#: vms-alpha.c:6541
+#: vms-alpha.c:6595
#, c-format
msgid "CTL_STKDL (stack defined location)\n"
msgstr ""
-#: vms-alpha.c:6544 vms-alpha.c:6968 vms-alpha.c:7094
+#: vms-alpha.c:6598 vms-alpha.c:7022 vms-alpha.c:7148
#, c-format
msgid "*unhandled*\n"
msgstr ""
-#: vms-alpha.c:6574 vms-alpha.c:6613
+#: vms-alpha.c:6628 vms-alpha.c:6667
#, c-format
msgid "cannot read GST record length\n"
msgstr ""
#. Ill-formed.
-#: vms-alpha.c:6595
+#: vms-alpha.c:6649
#, c-format
msgid "cannot find EMH in first GST record\n"
msgstr ""
-#: vms-alpha.c:6621
+#: vms-alpha.c:6675
#, c-format
msgid "cannot read GST record header\n"
msgstr ""
-#: vms-alpha.c:6634
+#: vms-alpha.c:6688
#, c-format
msgid " corrupted GST\n"
msgstr ""
-#: vms-alpha.c:6642
+#: vms-alpha.c:6696
#, c-format
msgid "cannot read GST record\n"
msgstr ""
-#: vms-alpha.c:6671
+#: vms-alpha.c:6725
#, c-format
msgid " unhandled EOBJ record type %u\n"
msgstr ""
-#: vms-alpha.c:6695
+#: vms-alpha.c:6749
#, c-format
msgid " bitcount: %u, base addr: 0x%08x\n"
msgstr ""
-#: vms-alpha.c:6709
+#: vms-alpha.c:6763
#, c-format
msgid " bitmap: 0x%08x (count: %u):\n"
msgstr ""
-#: vms-alpha.c:6716
+#: vms-alpha.c:6770
#, c-format
msgid " %08x"
msgstr ""
-#: vms-alpha.c:6742
+#: vms-alpha.c:6796
#, c-format
msgid " image %u (%u entries)\n"
msgstr ""
-#: vms-alpha.c:6748
+#: vms-alpha.c:6802
#, c-format
msgid " offset: 0x%08x, val: 0x%08x\n"
msgstr ""
-#: vms-alpha.c:6770
+#: vms-alpha.c:6824
#, c-format
msgid " image %u (%u entries), offsets:\n"
msgstr ""
-#: vms-alpha.c:6777
+#: vms-alpha.c:6831
#, c-format
msgid " 0x%08x"
msgstr ""
#. 64 bits.
-#: vms-alpha.c:6899
+#: vms-alpha.c:6953
#, c-format
msgid "64 bits *unhandled*\n"
msgstr ""
-#: vms-alpha.c:6904
+#: vms-alpha.c:6958
#, c-format
msgid "class: %u, dtype: %u, length: %u, pointer: 0x%08x\n"
msgstr ""
-#: vms-alpha.c:6915
+#: vms-alpha.c:6969
#, c-format
msgid "non-contiguous array of %s\n"
msgstr ""
-#: vms-alpha.c:6920
+#: vms-alpha.c:6974
#, c-format
msgid "dimct: %u, aflags: 0x%02x, digits: %u, scale: %u\n"
msgstr ""
-#: vms-alpha.c:6925
+#: vms-alpha.c:6979
#, c-format
msgid "arsize: %u, a0: 0x%08x\n"
msgstr ""
-#: vms-alpha.c:6929
+#: vms-alpha.c:6983
#, c-format
msgid "Strides:\n"
msgstr ""
-#: vms-alpha.c:6939
+#: vms-alpha.c:6993
#, c-format
msgid "Bounds:\n"
msgstr ""
-#: vms-alpha.c:6945
+#: vms-alpha.c:6999
#, c-format
msgid "[%u]: Lower: %u, upper: %u\n"
msgstr ""
-#: vms-alpha.c:6957
+#: vms-alpha.c:7011
#, c-format
msgid "unaligned bit-string of %s\n"
msgstr ""
-#: vms-alpha.c:6962
+#: vms-alpha.c:7016
#, c-format
msgid "base: %u, pos: %u\n"
msgstr ""
-#: vms-alpha.c:6983
+#: vms-alpha.c:7037
#, c-format
msgid "vflags: 0x%02x, value: 0x%08x "
msgstr ""
-#: vms-alpha.c:6989
+#: vms-alpha.c:7043
#, c-format
msgid "(no value)\n"
msgstr ""
-#: vms-alpha.c:6992
+#: vms-alpha.c:7046
#, c-format
msgid "(not active)\n"
msgstr ""
-#: vms-alpha.c:6995
+#: vms-alpha.c:7049
#, c-format
msgid "(not allocated)\n"
msgstr ""
-#: vms-alpha.c:6998
+#: vms-alpha.c:7052
#, c-format
msgid "(descriptor)\n"
msgstr ""
-#: vms-alpha.c:7002
+#: vms-alpha.c:7056
#, c-format
msgid "(trailing value)\n"
msgstr ""
-#: vms-alpha.c:7005
+#: vms-alpha.c:7059
#, c-format
msgid "(value spec follows)\n"
msgstr ""
-#: vms-alpha.c:7008
+#: vms-alpha.c:7062
#, c-format
msgid "(at bit offset %u)\n"
msgstr ""
-#: vms-alpha.c:7012
+#: vms-alpha.c:7066
#, c-format
msgid "(reg: %u, disp: %u, indir: %u, kind: "
msgstr ""
-#: vms-alpha.c:7019
+#: vms-alpha.c:7073
msgid "literal"
msgstr ""
-#: vms-alpha.c:7022
+#: vms-alpha.c:7076
msgid "address"
msgstr ""
-#: vms-alpha.c:7025
+#: vms-alpha.c:7079
msgid "desc"
msgstr ""
-#: vms-alpha.c:7028
+#: vms-alpha.c:7082
msgid "reg"
msgstr ""
-#: vms-alpha.c:7045
+#: vms-alpha.c:7099
#, c-format
msgid "len: %2u, kind: %2u "
msgstr ""
-#: vms-alpha.c:7051
+#: vms-alpha.c:7105
#, c-format
msgid "atomic, type=0x%02x %s\n"
msgstr ""
-#: vms-alpha.c:7055
+#: vms-alpha.c:7109
#, c-format
msgid "indirect, defined at 0x%08x\n"
msgstr ""
-#: vms-alpha.c:7059
+#: vms-alpha.c:7113
#, c-format
msgid "typed pointer\n"
msgstr ""
-#: vms-alpha.c:7063
+#: vms-alpha.c:7117
#, c-format
msgid "pointer\n"
msgstr ""
-#: vms-alpha.c:7071
+#: vms-alpha.c:7125
#, c-format
msgid "array, dim: %u, bitmap: "
msgstr ""
-#: vms-alpha.c:7078
+#: vms-alpha.c:7132
#, c-format
msgid "array descriptor:\n"
msgstr ""
-#: vms-alpha.c:7085
+#: vms-alpha.c:7139
#, c-format
msgid "type spec for element:\n"
msgstr ""
-#: vms-alpha.c:7087
+#: vms-alpha.c:7141
#, c-format
msgid "type spec for subscript %u:\n"
msgstr ""
-#: vms-alpha.c:7105
+#: vms-alpha.c:7159
#, c-format
msgid "Debug symbol table:\n"
msgstr ""
-#: vms-alpha.c:7116
+#: vms-alpha.c:7170
#, c-format
msgid "cannot read DST header\n"
msgstr ""
-#: vms-alpha.c:7122
+#: vms-alpha.c:7176
#, c-format
msgid " type: %3u, len: %3u (at 0x%08x): "
msgstr ""
-#: vms-alpha.c:7136
+#: vms-alpha.c:7190
#, c-format
msgid "cannot read DST symbol\n"
msgstr ""
-#: vms-alpha.c:7179
+#: vms-alpha.c:7233
#, c-format
msgid "standard data: %s\n"
msgstr ""
-#: vms-alpha.c:7182 vms-alpha.c:7270
+#: vms-alpha.c:7236 vms-alpha.c:7324
#, c-format
msgid " name: %.*s\n"
msgstr ""
-#: vms-alpha.c:7189
+#: vms-alpha.c:7243
#, c-format
msgid "modbeg\n"
msgstr ""
-#: vms-alpha.c:7191
+#: vms-alpha.c:7245
#, c-format
msgid " flags: %d, language: %u, major: %u, minor: %u\n"
msgstr ""
-#: vms-alpha.c:7197 vms-alpha.c:7471
+#: vms-alpha.c:7251 vms-alpha.c:7525
#, c-format
msgid " module name: %.*s\n"
msgstr ""
-#: vms-alpha.c:7200
+#: vms-alpha.c:7254
#, c-format
msgid " compiler : %.*s\n"
msgstr ""
-#: vms-alpha.c:7205
+#: vms-alpha.c:7259
#, c-format
msgid "modend\n"
msgstr ""
-#: vms-alpha.c:7212
+#: vms-alpha.c:7266
msgid "rtnbeg\n"
msgstr ""
-#: vms-alpha.c:7214
+#: vms-alpha.c:7268
#, c-format
msgid " flags: %u, address: 0x%08x, pd-address: 0x%08x\n"
msgstr ""
-#: vms-alpha.c:7219
+#: vms-alpha.c:7273
#, c-format
msgid " routine name: %.*s\n"
msgstr ""
-#: vms-alpha.c:7227
+#: vms-alpha.c:7281
#, c-format
msgid "rtnend: size 0x%08x\n"
msgstr ""
-#: vms-alpha.c:7235
+#: vms-alpha.c:7289
#, c-format
msgid "prolog: bkpt address 0x%08x\n"
msgstr ""
-#: vms-alpha.c:7244
+#: vms-alpha.c:7298
#, c-format
msgid "epilog: flags: %u, count: %u\n"
msgstr ""
-#: vms-alpha.c:7254
+#: vms-alpha.c:7308
#, c-format
msgid "blkbeg: address: 0x%08x, name: %.*s\n"
msgstr ""
-#: vms-alpha.c:7263
+#: vms-alpha.c:7317
#, c-format
msgid "blkend: size: 0x%08x\n"
msgstr ""
-#: vms-alpha.c:7269
+#: vms-alpha.c:7323
#, c-format
msgid "typspec (len: %u)\n"
msgstr ""
-#: vms-alpha.c:7276
+#: vms-alpha.c:7330
#, c-format
msgid "septyp, name: %.*s\n"
msgstr ""
-#: vms-alpha.c:7285
+#: vms-alpha.c:7339
#, c-format
msgid "recbeg: name: %.*s\n"
msgstr ""
-#: vms-alpha.c:7287
+#: vms-alpha.c:7341
#, c-format
msgid " len: %u bits\n"
msgstr ""
-#: vms-alpha.c:7292
+#: vms-alpha.c:7346
#, c-format
msgid "recend\n"
msgstr ""
-#: vms-alpha.c:7296
+#: vms-alpha.c:7350
#, c-format
msgid "enumbeg, len: %u, name: %.*s\n"
msgstr ""
-#: vms-alpha.c:7300
+#: vms-alpha.c:7354
#, c-format
msgid "enumelt, name: %.*s\n"
msgstr ""
-#: vms-alpha.c:7304
+#: vms-alpha.c:7358
#, c-format
msgid "enumend\n"
msgstr ""
-#: vms-alpha.c:7309
+#: vms-alpha.c:7363
#, c-format
msgid "label, name: %.*s\n"
msgstr ""
-#: vms-alpha.c:7311
+#: vms-alpha.c:7365
#, c-format
msgid " address: 0x%08x\n"
msgstr ""
-#: vms-alpha.c:7321
+#: vms-alpha.c:7375
#, c-format
msgid "discontiguous range (nbr: %u)\n"
msgstr ""
-#: vms-alpha.c:7324
+#: vms-alpha.c:7378
#, c-format
msgid " address: 0x%08x, size: %u\n"
msgstr ""
-#: vms-alpha.c:7334
+#: vms-alpha.c:7388
#, c-format
msgid "line num (len: %u)\n"
msgstr ""
-#: vms-alpha.c:7351
+#: vms-alpha.c:7405
#, c-format
msgid "delta_pc_w %u\n"
msgstr ""
-#: vms-alpha.c:7358
+#: vms-alpha.c:7412
#, c-format
msgid "incr_linum(b): +%u\n"
msgstr ""
-#: vms-alpha.c:7364
+#: vms-alpha.c:7418
#, c-format
msgid "incr_linum_w: +%u\n"
msgstr ""
-#: vms-alpha.c:7370
+#: vms-alpha.c:7424
#, c-format
msgid "incr_linum_l: +%u\n"
msgstr ""
-#: vms-alpha.c:7376
+#: vms-alpha.c:7430
#, c-format
msgid "set_line_num(w) %u\n"
msgstr ""
-#: vms-alpha.c:7381
+#: vms-alpha.c:7435
#, c-format
msgid "set_line_num_b %u\n"
msgstr ""
-#: vms-alpha.c:7386
+#: vms-alpha.c:7440
#, c-format
msgid "set_line_num_l %u\n"
msgstr ""
-#: vms-alpha.c:7391
+#: vms-alpha.c:7445
#, c-format
msgid "set_abs_pc: 0x%08x\n"
msgstr ""
-#: vms-alpha.c:7395
+#: vms-alpha.c:7449
#, c-format
msgid "delta_pc_l: +0x%08x\n"
msgstr ""
-#: vms-alpha.c:7400
+#: vms-alpha.c:7454
#, c-format
msgid "term(b): 0x%02x"
msgstr ""
-#: vms-alpha.c:7402
+#: vms-alpha.c:7456
#, c-format
msgid " pc: 0x%08x\n"
msgstr ""
-#: vms-alpha.c:7407
+#: vms-alpha.c:7461
#, c-format
msgid "term_w: 0x%04x"
msgstr ""
-#: vms-alpha.c:7409
+#: vms-alpha.c:7463
#, c-format
msgid " pc: 0x%08x\n"
msgstr ""
-#: vms-alpha.c:7415
+#: vms-alpha.c:7469
#, c-format
msgid "delta pc +%-4d"
msgstr ""
-#: vms-alpha.c:7419
+#: vms-alpha.c:7473
#, c-format
msgid " pc: 0x%08x line: %5u\n"
msgstr ""
-#: vms-alpha.c:7424
+#: vms-alpha.c:7478
#, c-format
msgid " *unhandled* cmd %u\n"
msgstr ""
-#: vms-alpha.c:7439
+#: vms-alpha.c:7493
#, c-format
msgid "source (len: %u)\n"
msgstr ""
-#: vms-alpha.c:7454
+#: vms-alpha.c:7508
#, c-format
msgid " declfile: len: %u, flags: %u, fileid: %u\n"
msgstr ""
-#: vms-alpha.c:7459
+#: vms-alpha.c:7513
#, c-format
msgid " rms: cdt: 0x%08x %08x, ebk: 0x%08x, ffb: 0x%04x, rfo: %u\n"
msgstr ""
-#: vms-alpha.c:7468
+#: vms-alpha.c:7522
#, c-format
msgid " filename : %.*s\n"
msgstr ""
-#: vms-alpha.c:7477
+#: vms-alpha.c:7531
#, c-format
msgid " setfile %u\n"
msgstr ""
-#: vms-alpha.c:7482 vms-alpha.c:7487
+#: vms-alpha.c:7536 vms-alpha.c:7541
#, c-format
msgid " setrec %u\n"
msgstr ""
-#: vms-alpha.c:7492 vms-alpha.c:7497
+#: vms-alpha.c:7546 vms-alpha.c:7551
#, c-format
msgid " setlnum %u\n"
msgstr ""
-#: vms-alpha.c:7502 vms-alpha.c:7507
+#: vms-alpha.c:7556 vms-alpha.c:7561
#, c-format
msgid " deflines %u\n"
msgstr ""
-#: vms-alpha.c:7511
+#: vms-alpha.c:7565
#, c-format
msgid " formfeed\n"
msgstr ""
-#: vms-alpha.c:7515
+#: vms-alpha.c:7569
#, c-format
msgid " *unhandled* cmd %u\n"
msgstr ""
-#: vms-alpha.c:7527
+#: vms-alpha.c:7581
#, c-format
msgid "*unhandled* dst type %u\n"
msgstr ""
-#: vms-alpha.c:7559
+#: vms-alpha.c:7613
#, c-format
msgid "cannot read EIHD\n"
msgstr ""
-#: vms-alpha.c:7563
+#: vms-alpha.c:7617
#, c-format
msgid "EIHD: (size: %u, nbr blocks: %u)\n"
msgstr ""
-#: vms-alpha.c:7567
+#: vms-alpha.c:7621
#, c-format
msgid " majorid: %u, minorid: %u\n"
msgstr ""
-#: vms-alpha.c:7575
+#: vms-alpha.c:7629
msgid "executable"
msgstr ""
-#: vms-alpha.c:7578
+#: vms-alpha.c:7632
msgid "linkable image"
msgstr ""
-#: vms-alpha.c:7585
+#: vms-alpha.c:7639
#, c-format
msgid " image type: %u (%s)"
msgstr ""
-#: vms-alpha.c:7591
+#: vms-alpha.c:7645
msgid "native"
msgstr ""
-#: vms-alpha.c:7594
+#: vms-alpha.c:7648
msgid "CLI"
msgstr ""
-#: vms-alpha.c:7601
+#: vms-alpha.c:7655
#, c-format
msgid ", subtype: %u (%s)\n"
msgstr ""
-#: vms-alpha.c:7608
+#: vms-alpha.c:7662
#, c-format
msgid " offsets: isd: %u, activ: %u, symdbg: %u, imgid: %u, patch: %u\n"
msgstr ""
-#: vms-alpha.c:7612
+#: vms-alpha.c:7666
#, c-format
msgid " fixup info rva: "
msgstr ""
-#: vms-alpha.c:7614
+#: vms-alpha.c:7668
#, c-format
msgid ", symbol vector rva: "
msgstr ""
-#: vms-alpha.c:7617
+#: vms-alpha.c:7671
#, c-format
msgid ""
"\n"
" version array off: %u\n"
msgstr ""
-#: vms-alpha.c:7622
+#: vms-alpha.c:7676
#, c-format
msgid " img I/O count: %u, nbr channels: %u, req pri: %08x%08x\n"
msgstr ""
-#: vms-alpha.c:7628
+#: vms-alpha.c:7682
#, c-format
msgid " linker flags: %08x:"
msgstr ""
-#: vms-alpha.c:7659
+#: vms-alpha.c:7713
#, c-format
msgid " ident: 0x%08x, sysver: 0x%08x, match ctrl: %u, symvect_size: %u\n"
msgstr ""
-#: vms-alpha.c:7665
+#: vms-alpha.c:7719
#, c-format
msgid " BPAGE: %u"
msgstr ""
-#: vms-alpha.c:7672
+#: vms-alpha.c:7726
#, c-format
msgid ", ext fixup offset: %u, no_opt psect off: %u"
msgstr ""
-#: vms-alpha.c:7675
+#: vms-alpha.c:7729
#, c-format
msgid ", alias: %u\n"
msgstr ""
-#: vms-alpha.c:7683
+#: vms-alpha.c:7737
#, c-format
msgid "system version array information:\n"
msgstr ""
-#: vms-alpha.c:7687
+#: vms-alpha.c:7741
#, c-format
msgid "cannot read EIHVN header\n"
msgstr ""
-#: vms-alpha.c:7697
+#: vms-alpha.c:7751
#, c-format
msgid "cannot read EIHVN version\n"
msgstr ""
-#: vms-alpha.c:7700
+#: vms-alpha.c:7754
#, c-format
msgid " %02u "
msgstr ""
-#: vms-alpha.c:7704
+#: vms-alpha.c:7758
msgid "BASE_IMAGE "
msgstr ""
-#: vms-alpha.c:7707
+#: vms-alpha.c:7761
msgid "MEMORY_MANAGEMENT"
msgstr ""
-#: vms-alpha.c:7710
+#: vms-alpha.c:7764
msgid "IO "
msgstr ""
-#: vms-alpha.c:7713
+#: vms-alpha.c:7767
msgid "FILES_VOLUMES "
msgstr ""
-#: vms-alpha.c:7716
+#: vms-alpha.c:7770
msgid "PROCESS_SCHED "
msgstr ""
-#: vms-alpha.c:7719
+#: vms-alpha.c:7773
msgid "SYSGEN "
msgstr ""
-#: vms-alpha.c:7722
+#: vms-alpha.c:7776
msgid "CLUSTERS_LOCKMGR "
msgstr ""
-#: vms-alpha.c:7725
+#: vms-alpha.c:7779
msgid "LOGICAL_NAMES "
msgstr ""
-#: vms-alpha.c:7728
+#: vms-alpha.c:7782
msgid "SECURITY "
msgstr ""
-#: vms-alpha.c:7731
+#: vms-alpha.c:7785
msgid "IMAGE_ACTIVATOR "
msgstr ""
-#: vms-alpha.c:7734
+#: vms-alpha.c:7788
msgid "NETWORKS "
msgstr ""
-#: vms-alpha.c:7737
+#: vms-alpha.c:7791
msgid "COUNTERS "
msgstr ""
-#: vms-alpha.c:7740
+#: vms-alpha.c:7794
msgid "STABLE "
msgstr ""
-#: vms-alpha.c:7743
+#: vms-alpha.c:7797
msgid "MISC "
msgstr ""
-#: vms-alpha.c:7746
+#: vms-alpha.c:7800
msgid "CPU "
msgstr ""
-#: vms-alpha.c:7749
+#: vms-alpha.c:7803
msgid "VOLATILE "
msgstr ""
-#: vms-alpha.c:7752
+#: vms-alpha.c:7806
msgid "SHELL "
msgstr ""
-#: vms-alpha.c:7755
+#: vms-alpha.c:7809
msgid "POSIX "
msgstr ""
-#: vms-alpha.c:7758
+#: vms-alpha.c:7812
msgid "MULTI_PROCESSING "
msgstr ""
-#: vms-alpha.c:7761
+#: vms-alpha.c:7815
msgid "GALAXY "
msgstr ""
-#: vms-alpha.c:7764
+#: vms-alpha.c:7818
msgid "*unknown* "
msgstr ""
-#: vms-alpha.c:7780 vms-alpha.c:8055
+#: vms-alpha.c:7834 vms-alpha.c:8108
#, c-format
msgid "cannot read EIHA\n"
msgstr ""
-#: vms-alpha.c:7783
+#: vms-alpha.c:7837
#, c-format
msgid "Image activation: (size=%u)\n"
msgstr ""
-#: vms-alpha.c:7786
+#: vms-alpha.c:7840
#, c-format
msgid " First address : 0x%08x 0x%08x\n"
msgstr ""
-#: vms-alpha.c:7790
+#: vms-alpha.c:7844
#, c-format
msgid " Second address: 0x%08x 0x%08x\n"
msgstr ""
-#: vms-alpha.c:7794
+#: vms-alpha.c:7848
#, c-format
msgid " Third address : 0x%08x 0x%08x\n"
msgstr ""
-#: vms-alpha.c:7798
+#: vms-alpha.c:7852
#, c-format
msgid " Fourth address: 0x%08x 0x%08x\n"
msgstr ""
-#: vms-alpha.c:7802
+#: vms-alpha.c:7856
#, c-format
msgid " Shared image : 0x%08x 0x%08x\n"
msgstr ""
-#: vms-alpha.c:7813
+#: vms-alpha.c:7867
#, c-format
msgid "cannot read EIHI\n"
msgstr ""
-#: vms-alpha.c:7817
+#: vms-alpha.c:7871
#, c-format
msgid "Image identification: (major: %u, minor: %u)\n"
msgstr ""
-#: vms-alpha.c:7820
+#: vms-alpha.c:7874
#, c-format
msgid " image name : %.*s\n"
msgstr ""
-#: vms-alpha.c:7822
+#: vms-alpha.c:7876
#, c-format
msgid " link time : %s\n"
msgstr ""
-#: vms-alpha.c:7824
+#: vms-alpha.c:7878
#, c-format
msgid " image ident : %.*s\n"
msgstr ""
-#: vms-alpha.c:7826
+#: vms-alpha.c:7880
#, c-format
msgid " linker ident : %.*s\n"
msgstr ""
-#: vms-alpha.c:7828
+#: vms-alpha.c:7882
#, c-format
msgid " image build ident: %.*s\n"
msgstr ""
-#: vms-alpha.c:7838
+#: vms-alpha.c:7892
#, c-format
msgid "cannot read EIHS\n"
msgstr ""
-#: vms-alpha.c:7842
+#: vms-alpha.c:7896
#, c-format
msgid "Image symbol & debug table: (major: %u, minor: %u)\n"
msgstr ""
-#: vms-alpha.c:7848
+#: vms-alpha.c:7902
#, c-format
msgid " debug symbol table : vbn: %u, size: %u (0x%x)\n"
msgstr ""
-#: vms-alpha.c:7853
+#: vms-alpha.c:7907
#, c-format
msgid " global symbol table: vbn: %u, records: %u\n"
msgstr ""
-#: vms-alpha.c:7858
+#: vms-alpha.c:7912
#, c-format
msgid " debug module table : vbn: %u, size: %u\n"
msgstr ""
-#: vms-alpha.c:7871
+#: vms-alpha.c:7925
#, c-format
msgid "cannot read EISD\n"
msgstr ""
-#: vms-alpha.c:7882
+#: vms-alpha.c:7936
#, c-format
msgid ""
"Image section descriptor: (major: %u, minor: %u, size: %u, offset: %u)\n"
msgstr ""
-#: vms-alpha.c:7890
+#: vms-alpha.c:7944
#, c-format
msgid " section: base: 0x%08x%08x size: 0x%08x\n"
msgstr ""
-#: vms-alpha.c:7895
+#: vms-alpha.c:7949
#, c-format
msgid " flags: 0x%04x"
msgstr ""
-#: vms-alpha.c:7933
+#: vms-alpha.c:7987
#, c-format
msgid " vbn: %u, pfc: %u, matchctl: %u type: %u ("
msgstr ""
-#: vms-alpha.c:7939
+#: vms-alpha.c:7993
msgid "NORMAL"
msgstr ""
-#: vms-alpha.c:7942
+#: vms-alpha.c:7996
msgid "SHRFXD"
msgstr ""
-#: vms-alpha.c:7945
+#: vms-alpha.c:7999
msgid "PRVFXD"
msgstr ""
-#: vms-alpha.c:7948
+#: vms-alpha.c:8002
msgid "SHRPIC"
msgstr ""
-#: vms-alpha.c:7951
+#: vms-alpha.c:8005
msgid "PRVPIC"
msgstr ""
-#: vms-alpha.c:7954
+#: vms-alpha.c:8008
msgid "USRSTACK"
msgstr ""
-#: vms-alpha.c:7960
+#: vms-alpha.c:8014
msgid ")\n"
msgstr ""
-#: vms-alpha.c:7963
+#: vms-alpha.c:8017
#, c-format
msgid " ident: 0x%08x, name: %.*s\n"
msgstr ""
-#: vms-alpha.c:7973
+#: vms-alpha.c:8027
#, c-format
msgid "cannot read DMT\n"
msgstr ""
-#: vms-alpha.c:7977
+#: vms-alpha.c:8031
#, c-format
msgid "Debug module table:\n"
msgstr ""
-#: vms-alpha.c:7986
+#: vms-alpha.c:8040
#, c-format
msgid "cannot read DMT header\n"
msgstr ""
-#: vms-alpha.c:7992
+#: vms-alpha.c:8046
#, c-format
msgid " module offset: 0x%08x, size: 0x%08x, (%u psects)\n"
msgstr ""
-#: vms-alpha.c:8002
+#: vms-alpha.c:8056
#, c-format
msgid "cannot read DMT psect\n"
msgstr ""
-#: vms-alpha.c:8006
+#: vms-alpha.c:8060
#, c-format
msgid " psect start: 0x%08x, length: %u\n"
msgstr ""
-#: vms-alpha.c:8019
+#: vms-alpha.c:8073
#, c-format
msgid "cannot read DST\n"
msgstr ""
-#: vms-alpha.c:8029
+#: vms-alpha.c:8083
#, c-format
msgid "cannot read GST\n"
msgstr ""
-#: vms-alpha.c:8033
+#: vms-alpha.c:8087
#, c-format
msgid "Global symbol table:\n"
msgstr ""
-#: vms-alpha.c:8062
+#: vms-alpha.c:8114
#, c-format
msgid "Image activator fixup: (major: %u, minor: %u)\n"
msgstr ""
-#: vms-alpha.c:8066
+#: vms-alpha.c:8118
#, c-format
msgid " iaflink : 0x%08x %08x\n"
msgstr ""
-#: vms-alpha.c:8070
+#: vms-alpha.c:8122
#, c-format
msgid " fixuplnk: 0x%08x %08x\n"
msgstr ""
-#: vms-alpha.c:8073
+#: vms-alpha.c:8125
#, c-format
msgid " size : %u\n"
msgstr ""
-#: vms-alpha.c:8075
+#: vms-alpha.c:8127
#, c-format
msgid " flags: 0x%08x\n"
msgstr ""
-#: vms-alpha.c:8080
+#: vms-alpha.c:8132
#, c-format
msgid " qrelfixoff: %5u, lrelfixoff: %5u\n"
msgstr ""
-#: vms-alpha.c:8085
+#: vms-alpha.c:8137
#, c-format
msgid " qdotadroff: %5u, ldotadroff: %5u\n"
msgstr ""
-#: vms-alpha.c:8090
+#: vms-alpha.c:8142
#, c-format
msgid " codeadroff: %5u, lpfixoff : %5u\n"
msgstr ""
-#: vms-alpha.c:8093
+#: vms-alpha.c:8145
#, c-format
msgid " chgprtoff : %5u\n"
msgstr ""
-#: vms-alpha.c:8097
+#: vms-alpha.c:8149
#, c-format
msgid " shlstoff : %5u, shrimgcnt : %5u\n"
msgstr ""
-#: vms-alpha.c:8100
+#: vms-alpha.c:8152
#, c-format
msgid " shlextra : %5u, permctx : %5u\n"
msgstr ""
-#: vms-alpha.c:8103
+#: vms-alpha.c:8155
#, c-format
msgid " base_va : 0x%08x\n"
msgstr ""
-#: vms-alpha.c:8105
+#: vms-alpha.c:8157
#, c-format
msgid " lppsbfixoff: %5u\n"
msgstr ""
-#: vms-alpha.c:8113
+#: vms-alpha.c:8165
#, c-format
msgid " Shareable images:\n"
msgstr ""
-#: vms-alpha.c:8118
+#: vms-alpha.c:8170
#, c-format
msgid " %u: size: %u, flags: 0x%02x, name: %.*s\n"
msgstr ""
-#: vms-alpha.c:8125
+#: vms-alpha.c:8177
#, c-format
msgid " quad-word relocation fixups:\n"
msgstr ""
-#: vms-alpha.c:8130
+#: vms-alpha.c:8182
#, c-format
msgid " long-word relocation fixups:\n"
msgstr ""
-#: vms-alpha.c:8135
+#: vms-alpha.c:8187
#, c-format
msgid " quad-word .address reference fixups:\n"
msgstr ""
-#: vms-alpha.c:8140
+#: vms-alpha.c:8192
#, c-format
msgid " long-word .address reference fixups:\n"
msgstr ""
-#: vms-alpha.c:8145
+#: vms-alpha.c:8197
#, c-format
msgid " Code Address Reference Fixups:\n"
msgstr ""
-#: vms-alpha.c:8150
+#: vms-alpha.c:8202
#, c-format
msgid " Linkage Pairs Reference Fixups:\n"
msgstr ""
-#: vms-alpha.c:8159
+#: vms-alpha.c:8211
#, c-format
msgid " Change Protection (%u entries):\n"
msgstr ""
-#: vms-alpha.c:8165
+#: vms-alpha.c:8217
#, c-format
msgid " base: 0x%08x %08x, size: 0x%08x, prot: 0x%08x "
msgstr ""
#. FIXME: we do not yet support relocatable link. It is not obvious
#. how to do it for debug infos.
-#: vms-alpha.c:9027
+#: vms-alpha.c:9094
msgid "%P: relocatable link is not supported\n"
msgstr ""
-#: vms-alpha.c:9098
+#: vms-alpha.c:9165
#, c-format
msgid "%P: multiple entry points: in modules %pB and %pB\n"
msgstr ""
-#: vms-lib.c:1453
+#: vms-lib.c:1525
#, c-format
msgid "could not open shared image '%s' from '%s'"
msgstr ""
@@ -8141,449 +8351,446 @@ msgstr ""
msgid "%pB: dynamic object with no .loader section"
msgstr ""
-#: xcofflink.c:1414
+#: xcofflink.c:1418
#, c-format
msgid "%pB: `%s' has line numbers but no enclosing section"
msgstr ""
-#: xcofflink.c:1467
+#: xcofflink.c:1471
#, c-format
msgid "%pB: class %d symbol `%s' has no aux entries"
msgstr ""
-#: xcofflink.c:1490
+#: xcofflink.c:1494
#, c-format
msgid "%pB: symbol `%s' has unrecognized csect type %d"
msgstr ""
-#: xcofflink.c:1503
+#: xcofflink.c:1507
#, c-format
msgid "%pB: bad XTY_ER symbol `%s': class %d scnum %d scnlen %<PRId64>"
msgstr ""
-#: xcofflink.c:1534
+#: xcofflink.c:1538
#, c-format
msgid "%pB: XMC_TC0 symbol `%s' is class %d scnlen %<PRId64>"
msgstr ""
-#: xcofflink.c:1681
+#: xcofflink.c:1685
#, c-format
msgid "%pB: csect `%s' not in enclosing section"
msgstr ""
-#: xcofflink.c:1789
+#: xcofflink.c:1793
#, c-format
msgid "%pB: misplaced XTY_LD `%s'"
msgstr ""
-#: xcofflink.c:2110
+#: xcofflink.c:2114
#, c-format
msgid "%pB: reloc %s:%<PRId64> not in csect"
msgstr ""
-#: xcofflink.c:3197
+#: xcofflink.c:3201
#, c-format
msgid "%s: no such symbol"
msgstr ""
-#: xcofflink.c:3302
+#: xcofflink.c:3306
#, c-format
msgid "warning: attempt to export undefined symbol `%s'"
msgstr ""
-#: xcofflink.c:3681
+#: xcofflink.c:3685
msgid "error: undefined symbol __rtinit"
msgstr ""
-#: xcofflink.c:4061
+#: xcofflink.c:4065
#, c-format
msgid "%pB: loader reloc in unrecognized section `%s'"
msgstr ""
-#: xcofflink.c:4073
+#: xcofflink.c:4077
#, c-format
msgid "%pB: `%s' in loader reloc but not loader sym"
msgstr ""
-#: xcofflink.c:4090
+#: xcofflink.c:4094
#, c-format
msgid "%pB: loader reloc in read-only section %pA"
msgstr ""
-#: xcofflink.c:5114
+#: xcofflink.c:5122
#, c-format
msgid "TOC overflow: %#<PRIx64> > 0x10000; try -mminimal-toc when compiling"
msgstr ""
#. Not fatal, this callback cannot fail.
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:2918
+#: elfnn-aarch64.c:2918
#, c-format
msgid "unknown attribute for symbol `%s': 0x%02x"
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:5237
+#: elfnn-aarch64.c:5292
#, c-format
msgid "%pB: error: erratum 835769 stub out of range (input file too large)"
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:5329
+#: elfnn-aarch64.c:5384
#, c-format
msgid "%pB: error: erratum 843419 stub out of range (input file too large)"
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:5342
+#: elfnn-aarch64.c:5397
msgid "%pB: error: erratum 843419 immediate 0x%"
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:5876
+#: elfnn-aarch64.c:5945
#, c-format
msgid ""
"%pB: relocation %s against symbol `%s' which may bind externally can not be "
"used when making a shared object; recompile with -fPIC"
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:5969
+#: elfnn-aarch64.c:6036
#, c-format
msgid ""
"%pB: local symbol descriptor table be NULL when applying relocation %s "
"against local symbol"
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:6082
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:6119
+#: elfnn-aarch64.c:6149 elfnn-aarch64.c:6186
#, c-format
msgid "%pB: TLS relocation %s against undefined symbol `%s'"
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:7104
+#: elfnn-aarch64.c:7171
msgid "too many GOT entries for -fpic, please recompile with -fPIC"
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:7132
+#: elfnn-aarch64.c:7199
msgid ""
"one possible cause of this error is that the symbol is being referenced in "
"the indicated code as if it had a larger alignment than was declared where "
"it was defined"
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-aarch64.c:7716
+#: elfnn-aarch64.c:7783
#, c-format
msgid ""
"%pB: relocation %s against `%s' can not be used when making a shared object"
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:182
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:217
+#: elfnn-riscv.c:190 elfnn-riscv.c:225
#, c-format
msgid "%pB: warning: RVE PLT generation not supported"
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:2093
+#: elfnn-riscv.c:2101
#, c-format
msgid "%pcrel_lo section symbol with an addend"
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:2314
+#: elfnn-riscv.c:2322
#, c-format
msgid ""
"%%X%%P: relocation %s against `%s' can not be used when making a shared "
"object; recompile with -fPIC\n"
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:2324
+#: elfnn-riscv.c:2332
#, c-format
msgid "%%X%%P: unresolvable %s relocation against symbol `%s'\n"
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:2363
+#: elfnn-riscv.c:2371
msgid "%X%P: internal error: out of range error\n"
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:2368
+#: elfnn-riscv.c:2376
msgid "%X%P: internal error: unsupported relocation error\n"
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:2374
+#: elfnn-riscv.c:2382
msgid "dangerous relocation error"
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:2380
+#: elfnn-riscv.c:2388
msgid "%X%P: internal error: unknown error\n"
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:2771
+#: elfnn-riscv.c:2755
#, c-format
msgid "error: %pB: Mis-matched ISA version for '%s' extension. %d.%d vs %d.%d"
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:2789
+#: elfnn-riscv.c:2773
#, c-format
msgid ""
"error: %pB: corrupted ISA string '%s'. First letter should be 'i' or 'e' but "
"got '%s'."
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:2833
+#: elfnn-riscv.c:2817
#, c-format
msgid "error: %pB: Mis-matched ISA string to merge '%s' and '%s'."
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:2981
+#: elfnn-riscv.c:3018
#, c-format
msgid "error: %pB: ISA string of input (%s) doesn't match output (%s)."
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:3006
+#: elfnn-riscv.c:3038
#, c-format
msgid "error: %pB: XLEN of input (%u) doesn't match output (%u)."
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:3014
+#: elfnn-riscv.c:3046
#, c-format
msgid "error: %pB: Unsupported XLEN (%u), you might be using wrong emulation."
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:3099
+#: elfnn-riscv.c:3131
#, c-format
msgid "error: %pB: conflicting priv spec version (major/minor/revision)."
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:3115
+#: elfnn-riscv.c:3147
#, c-format
msgid ""
"error: %pB use %u-byte stack aligned but the output use %u-byte stack "
"aligned."
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:3155
+#: elfnn-riscv.c:3187
#, c-format
msgid ""
"%pB: ABI is incompatible with that of the selected emulation:\n"
" target emulation `%s' does not match `%s'"
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:3209
+#: elfnn-riscv.c:3241
#, c-format
msgid "%pB: can't link %s modules with %s modules"
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:3219
+#: elfnn-riscv.c:3251
#, c-format
msgid "%pB: can't link RVE with other target"
msgstr ""
-#: /work/sources/binutils/current/bfd/elfnn-riscv.c:3757
+#: elfnn-riscv.c:3789
#, c-format
msgid ""
"%pB(%pA+%#<PRIx64>): %<PRId64> bytes required for alignment to %<PRId64>-"
"byte boundary, but only %<PRId64> present"
msgstr ""
-#: peigen.c:164 pepigen.c:164 pex64igen.c:164
+#: peXXigen.c:164
#, c-format
msgid "%pB: unable to find name for empty section"
msgstr ""
-#: peigen.c:190 pepigen.c:190 pex64igen.c:190
+#: peXXigen.c:191
#, c-format
msgid "%pB: out of memory creating name for empty section"
msgstr ""
-#: peigen.c:201 pepigen.c:201 pex64igen.c:201
+#: peXXigen.c:201
#, c-format
msgid "%pB: unable to create fake empty section"
msgstr ""
-#: peigen.c:539 pepigen.c:539 pex64igen.c:539
+#: peXXigen.c:539
#, c-format
msgid ""
"%pB: aout header specifies an invalid number of data-directory entries: %u"
msgstr ""
-#: peigen.c:1088 pepigen.c:1088 pex64igen.c:1088
+#: peXXigen.c:1088
#, c-format
msgid "%pB: line number overflow: 0x%lx > 0xffff"
msgstr ""
-#: peigen.c:1235 pepigen.c:1235 pex64igen.c:1235
+#: peXXigen.c:1235
msgid "Export Directory [.edata (or where ever we found it)]"
msgstr ""
-#: peigen.c:1236 pepigen.c:1236 pex64igen.c:1236
+#: peXXigen.c:1236
msgid "Import Directory [parts of .idata]"
msgstr ""
-#: peigen.c:1237 pepigen.c:1237 pex64igen.c:1237
+#: peXXigen.c:1237
msgid "Resource Directory [.rsrc]"
msgstr ""
-#: peigen.c:1238 pepigen.c:1238 pex64igen.c:1238
+#: peXXigen.c:1238
msgid "Exception Directory [.pdata]"
msgstr ""
-#: peigen.c:1239 pepigen.c:1239 pex64igen.c:1239
+#: peXXigen.c:1239
msgid "Security Directory"
msgstr ""
-#: peigen.c:1240 pepigen.c:1240 pex64igen.c:1240
+#: peXXigen.c:1240
msgid "Base Relocation Directory [.reloc]"
msgstr ""
-#: peigen.c:1241 pepigen.c:1241 pex64igen.c:1241
+#: peXXigen.c:1241
msgid "Debug Directory"
msgstr ""
-#: peigen.c:1242 pepigen.c:1242 pex64igen.c:1242
+#: peXXigen.c:1242
msgid "Description Directory"
msgstr ""
-#: peigen.c:1243 pepigen.c:1243 pex64igen.c:1243
+#: peXXigen.c:1243
msgid "Special Directory"
msgstr ""
-#: peigen.c:1244 pepigen.c:1244 pex64igen.c:1244
+#: peXXigen.c:1244
msgid "Thread Storage Directory [.tls]"
msgstr ""
-#: peigen.c:1245 pepigen.c:1245 pex64igen.c:1245
+#: peXXigen.c:1245
msgid "Load Configuration Directory"
msgstr ""
-#: peigen.c:1246 pepigen.c:1246 pex64igen.c:1246
+#: peXXigen.c:1246
msgid "Bound Import Directory"
msgstr ""
-#: peigen.c:1247 pepigen.c:1247 pex64igen.c:1247
+#: peXXigen.c:1247
msgid "Import Address Table Directory"
msgstr ""
-#: peigen.c:1248 pepigen.c:1248 pex64igen.c:1248
+#: peXXigen.c:1248
msgid "Delay Import Directory"
msgstr ""
-#: peigen.c:1249 pepigen.c:1249 pex64igen.c:1249
+#: peXXigen.c:1249
msgid "CLR Runtime Header"
msgstr ""
-#: peigen.c:1250 pepigen.c:1250 pex64igen.c:1250
+#: peXXigen.c:1250
msgid "Reserved"
msgstr ""
-#: peigen.c:1310 pepigen.c:1310 pex64igen.c:1310
+#: peXXigen.c:1310
#, c-format
msgid ""
"\n"
"There is an import table, but the section containing it could not be found\n"
msgstr ""
-#: peigen.c:1316 pepigen.c:1316 pex64igen.c:1316
+#: peXXigen.c:1316
#, c-format
msgid ""
"\n"
"There is an import table in %s, but that section has no contents\n"
msgstr ""
-#: peigen.c:1323 pepigen.c:1323 pex64igen.c:1323
+#: peXXigen.c:1323
#, c-format
msgid ""
"\n"
"There is an import table in %s at 0x%lx\n"
msgstr ""
-#: peigen.c:1365 pepigen.c:1365 pex64igen.c:1365
+#: peXXigen.c:1365
#, c-format
msgid ""
"\n"
"Function descriptor located at the start address: %04lx\n"
msgstr ""
-#: peigen.c:1369 pepigen.c:1369 pex64igen.c:1369
+#: peXXigen.c:1369
#, c-format
msgid "\tcode-base %08lx toc (loadable/actual) %08lx/%08lx\n"
msgstr ""
-#: peigen.c:1377 pepigen.c:1377 pex64igen.c:1377
+#: peXXigen.c:1377
#, c-format
msgid ""
"\n"
"No reldata section! Function descriptor not decoded.\n"
msgstr ""
-#: peigen.c:1382 pepigen.c:1382 pex64igen.c:1382
+#: peXXigen.c:1382
#, c-format
msgid ""
"\n"
"The Import Tables (interpreted %s section contents)\n"
msgstr ""
-#: peigen.c:1385 pepigen.c:1385 pex64igen.c:1385
+#: peXXigen.c:1385
#, c-format
msgid ""
" vma: Hint Time Forward DLL First\n"
" Table Stamp Chain Name Thunk\n"
msgstr ""
-#: peigen.c:1435 pepigen.c:1435 pex64igen.c:1435
+#: peXXigen.c:1435
#, c-format
msgid ""
"\n"
"\tDLL Name: %.*s\n"
msgstr ""
-#: peigen.c:1451 pepigen.c:1451 pex64igen.c:1451
+#: peXXigen.c:1451
#, c-format
msgid "\tvma: Hint/Ord Member-Name Bound-To\n"
msgstr ""
-#: peigen.c:1476 pepigen.c:1476 pex64igen.c:1476
+#: peXXigen.c:1476
#, c-format
msgid ""
"\n"
"There is a first thunk, but the section containing it could not be found\n"
msgstr ""
-#: peigen.c:1520 peigen.c:1559 pepigen.c:1520 pepigen.c:1559 pex64igen.c:1520
-#: pex64igen.c:1559
+#: peXXigen.c:1520 peXXigen.c:1559
#, c-format
msgid "\t<corrupt: 0x%04lx>"
msgstr ""
-#: peigen.c:1652 pepigen.c:1652 pex64igen.c:1652
+#: peXXigen.c:1652
#, c-format
msgid ""
"\n"
"There is an export table, but the section containing it could not be found\n"
msgstr ""
-#: peigen.c:1658 pepigen.c:1658 pex64igen.c:1658
+#: peXXigen.c:1658
#, c-format
msgid ""
"\n"
"There is an export table in %s, but that section has no contents\n"
msgstr ""
-#: peigen.c:1669 pepigen.c:1669 pex64igen.c:1669
+#: peXXigen.c:1669
#, c-format
msgid ""
"\n"
"There is an export table in %s, but it does not fit into that section\n"
msgstr ""
-#: peigen.c:1680 pepigen.c:1680 pex64igen.c:1680
+#: peXXigen.c:1680
#, c-format
msgid ""
"\n"
"There is an export table in %s, but it is too small (%d)\n"
msgstr ""
-#: peigen.c:1686 pepigen.c:1686 pex64igen.c:1686
+#: peXXigen.c:1686
#, c-format
msgid ""
"\n"
"There is an export table in %s at 0x%lx\n"
msgstr ""
-#: peigen.c:1714 pepigen.c:1714 pex64igen.c:1714
+#: peXXigen.c:1714
#, c-format
msgid ""
"\n"
@@ -8591,162 +8798,160 @@ msgid ""
"\n"
msgstr ""
-#: peigen.c:1718 pepigen.c:1718 pex64igen.c:1718
+#: peXXigen.c:1718
#, c-format
msgid "Export Flags \t\t\t%lx\n"
msgstr ""
-#: peigen.c:1721 pepigen.c:1721 pex64igen.c:1721
+#: peXXigen.c:1721
#, c-format
msgid "Time/Date stamp \t\t%lx\n"
msgstr ""
-#: peigen.c:1725 pepigen.c:1725 pex64igen.c:1725
+#: peXXigen.c:1725
#, c-format
msgid "Major/Minor \t\t\t%d/%d\n"
msgstr ""
-#: peigen.c:1728 pepigen.c:1728 pex64igen.c:1728
+#: peXXigen.c:1728
#, c-format
msgid "Name \t\t\t\t"
msgstr ""
-#: peigen.c:1739 pepigen.c:1739 pex64igen.c:1739
+#: peXXigen.c:1739
#, c-format
msgid "Ordinal Base \t\t\t%ld\n"
msgstr ""
-#: peigen.c:1742 pepigen.c:1742 pex64igen.c:1742
+#: peXXigen.c:1742
#, c-format
msgid "Number in:\n"
msgstr ""
-#: peigen.c:1745 pepigen.c:1745 pex64igen.c:1745
+#: peXXigen.c:1745
#, c-format
msgid "\tExport Address Table \t\t%08lx\n"
msgstr ""
-#: peigen.c:1749 pepigen.c:1749 pex64igen.c:1749
+#: peXXigen.c:1749
#, c-format
msgid "\t[Name Pointer/Ordinal] Table\t%08lx\n"
msgstr ""
-#: peigen.c:1752 pepigen.c:1752 pex64igen.c:1752
+#: peXXigen.c:1752
#, c-format
msgid "Table Addresses\n"
msgstr ""
-#: peigen.c:1755 pepigen.c:1755 pex64igen.c:1755
+#: peXXigen.c:1755
#, c-format
msgid "\tExport Address Table \t\t"
msgstr ""
-#: peigen.c:1760 pepigen.c:1760 pex64igen.c:1760
+#: peXXigen.c:1760
#, c-format
msgid "\tName Pointer Table \t\t"
msgstr ""
-#: peigen.c:1765 pepigen.c:1765 pex64igen.c:1765
+#: peXXigen.c:1765
#, c-format
msgid "\tOrdinal Table \t\t\t"
msgstr ""
-#: peigen.c:1779 pepigen.c:1779 pex64igen.c:1779
+#: peXXigen.c:1779
#, c-format
msgid ""
"\n"
"Export Address Table -- Ordinal Base %ld\n"
msgstr ""
-#: peigen.c:1788 pepigen.c:1788 pex64igen.c:1788
+#: peXXigen.c:1788
#, c-format
msgid "\tInvalid Export Address Table rva (0x%lx) or entry count (0x%lx)\n"
msgstr ""
-#: peigen.c:1807 pepigen.c:1807 pex64igen.c:1807
+#: peXXigen.c:1807
msgid "Forwarder RVA"
msgstr ""
-#: peigen.c:1819 pepigen.c:1819 pex64igen.c:1819
+#: peXXigen.c:1819
msgid "Export RVA"
msgstr ""
-#: peigen.c:1826 pepigen.c:1826 pex64igen.c:1826
+#: peXXigen.c:1826
#, c-format
msgid ""
"\n"
"[Ordinal/Name Pointer] Table\n"
msgstr ""
-#: peigen.c:1834 pepigen.c:1834 pex64igen.c:1834
+#: peXXigen.c:1834
#, c-format
msgid "\tInvalid Name Pointer Table rva (0x%lx) or entry count (0x%lx)\n"
msgstr ""
-#: peigen.c:1841 pepigen.c:1841 pex64igen.c:1841
+#: peXXigen.c:1841
#, c-format
msgid "\tInvalid Ordinal Table rva (0x%lx) or entry count (0x%lx)\n"
msgstr ""
-#: peigen.c:1855 pepigen.c:1855 pex64igen.c:1855
+#: peXXigen.c:1855
#, c-format
msgid "\t[%4ld] <corrupt offset: %lx>\n"
msgstr ""
-#: peigen.c:1909 peigen.c:2106 pepigen.c:1909 pepigen.c:2106 pex64igen.c:1909
-#: pex64igen.c:2106
+#: peXXigen.c:1909 peXXigen.c:2106
#, c-format
msgid "warning, .pdata section size (%ld) is not a multiple of %d\n"
msgstr ""
-#: peigen.c:1913 peigen.c:2110 pepigen.c:1913 pepigen.c:2110 pex64igen.c:1913
-#: pex64igen.c:2110
+#: peXXigen.c:1913 peXXigen.c:2110
#, c-format
msgid ""
"\n"
"The Function Table (interpreted .pdata section contents)\n"
msgstr ""
-#: peigen.c:1916 pepigen.c:1916 pex64igen.c:1916
+#: peXXigen.c:1916
#, c-format
msgid " vma:\t\t\tBegin Address End Address Unwind Info\n"
msgstr ""
-#: peigen.c:1918 pepigen.c:1918 pex64igen.c:1918
+#: peXXigen.c:1918
#, c-format
msgid ""
" vma:\t\tBegin End EH EH PrologEnd Exception\n"
" \t\tAddress Address Handler Data Address Mask\n"
msgstr ""
-#: peigen.c:1931 pepigen.c:1931 pex64igen.c:1931
+#: peXXigen.c:1931
#, c-format
msgid "Virtual size of .pdata section (%ld) larger than real size (%ld)\n"
msgstr ""
-#: peigen.c:2001 pepigen.c:2001 pex64igen.c:2001
+#: peXXigen.c:2001
#, c-format
msgid " Register save millicode"
msgstr ""
-#: peigen.c:2004 pepigen.c:2004 pex64igen.c:2004
+#: peXXigen.c:2004
#, c-format
msgid " Register restore millicode"
msgstr ""
-#: peigen.c:2007 pepigen.c:2007 pex64igen.c:2007
+#: peXXigen.c:2007
#, c-format
msgid " Glue code sequence"
msgstr ""
-#: peigen.c:2112 pepigen.c:2112 pex64igen.c:2112
+#: peXXigen.c:2112
#, c-format
msgid ""
" vma:\t\tBegin Prolog Function Flags Exception EH\n"
" \t\tAddress Length Length 32b exc Handler Data\n"
msgstr ""
-#: peigen.c:2234 pepigen.c:2234 pex64igen.c:2234
+#: peXXigen.c:2234
#, c-format
msgid ""
"\n"
@@ -8754,86 +8959,86 @@ msgid ""
"PE File Base Relocations (interpreted .reloc section contents)\n"
msgstr ""
-#: peigen.c:2264 pepigen.c:2264 pex64igen.c:2264
+#: peXXigen.c:2264
#, c-format
msgid ""
"\n"
"Virtual Address: %08lx Chunk size %ld (0x%lx) Number of fixups %ld\n"
msgstr ""
-#: peigen.c:2282 pepigen.c:2282 pex64igen.c:2282
+#: peXXigen.c:2282
#, c-format
msgid "\treloc %4d offset %4x [%4lx] %s"
msgstr ""
-#: peigen.c:2343 pepigen.c:2343 pex64igen.c:2343
+#: peXXigen.c:2343
#, c-format
msgid "%03x %*.s Entry: "
msgstr ""
-#: peigen.c:2367 pepigen.c:2367 pex64igen.c:2367
+#: peXXigen.c:2367
#, c-format
msgid "name: [val: %08lx len %d]: "
msgstr ""
-#: peigen.c:2387 pepigen.c:2387 pex64igen.c:2387
+#: peXXigen.c:2387
#, c-format
msgid "<corrupt string length: %#x>\n"
msgstr ""
-#: peigen.c:2397 pepigen.c:2397 pex64igen.c:2397
+#: peXXigen.c:2397
#, c-format
msgid "<corrupt string offset: %#lx>\n"
msgstr ""
-#: peigen.c:2402 pepigen.c:2402 pex64igen.c:2402
+#: peXXigen.c:2402
#, c-format
msgid "ID: %#08lx"
msgstr ""
-#: peigen.c:2405 pepigen.c:2405 pex64igen.c:2405
+#: peXXigen.c:2405
#, c-format
msgid ", Value: %#08lx\n"
msgstr ""
-#: peigen.c:2427 pepigen.c:2427 pex64igen.c:2427
+#: peXXigen.c:2427
#, c-format
msgid "%03x %*.s Leaf: Addr: %#08lx, Size: %#08lx, Codepage: %d\n"
msgstr ""
-#: peigen.c:2469 pepigen.c:2469 pex64igen.c:2469
+#: peXXigen.c:2469
#, c-format
msgid "<unknown directory type: %d>\n"
msgstr ""
-#: peigen.c:2477 pepigen.c:2477 pex64igen.c:2477
+#: peXXigen.c:2477
#, c-format
msgid " Table: Char: %d, Time: %08lx, Ver: %d/%d, Num Names: %d, IDs: %d\n"
msgstr ""
-#: peigen.c:2566 pepigen.c:2566 pex64igen.c:2566
+#: peXXigen.c:2566
#, c-format
msgid "Corrupt .rsrc section detected!\n"
msgstr ""
-#: peigen.c:2590 pepigen.c:2590 pex64igen.c:2590
+#: peXXigen.c:2590
#, c-format
msgid ""
"\n"
"WARNING: Extra data in .rsrc section - it will be ignored by Windows:\n"
msgstr ""
-#: peigen.c:2596 pepigen.c:2596 pex64igen.c:2596
+#: peXXigen.c:2596
#, c-format
msgid " String table starts at offset: %#03x\n"
msgstr ""
-#: peigen.c:2599 pepigen.c:2599 pex64igen.c:2599
+#: peXXigen.c:2599
#, c-format
msgid " Resources start at offset: %#03x\n"
msgstr ""
-#: peigen.c:2651 pepigen.c:2651 pex64igen.c:2651
+#: peXXigen.c:2656
#, c-format
msgid ""
"\n"
@@ -8841,14 +9046,14 @@ msgid ""
"found\n"
msgstr ""
-#: peigen.c:2657 pepigen.c:2657 pex64igen.c:2657
+#: peXXigen.c:2662
#, c-format
msgid ""
"\n"
"There is a debug directory in %s, but that section has no contents\n"
msgstr ""
-#: peigen.c:2664 pepigen.c:2664 pex64igen.c:2664
+#: peXXigen.c:2669
#, c-format
msgid ""
"\n"
@@ -8856,7 +9061,7 @@ msgid ""
"small\n"
msgstr ""
-#: peigen.c:2669 pepigen.c:2669 pex64igen.c:2669
+#: peXXigen.c:2674
#, c-format
msgid ""
"\n"
@@ -8864,23 +9069,23 @@ msgid ""
"\n"
msgstr ""
-#: peigen.c:2676 pepigen.c:2676 pex64igen.c:2676
+#: peXXigen.c:2681
#, c-format
msgid ""
"The debug data size field in the data directory is too big for the section"
msgstr ""
-#: peigen.c:2681 pepigen.c:2681 pex64igen.c:2681
+#: peXXigen.c:2686
#, c-format
msgid "Type Size Rva Offset\n"
msgstr ""
-#: peigen.c:2729 pepigen.c:2729 pex64igen.c:2729
+#: peXXigen.c:2734
#, c-format
msgid "(format %c%c%c%c signature %s age %ld)\n"
msgstr ""
-#: peigen.c:2737 pepigen.c:2737 pex64igen.c:2737
+#: peXXigen.c:2744
#, c-format
msgid ""
"The debug directory size is not a multiple of the debug directory entry "
@@ -8890,99 +9095,99 @@ msgstr ""
#. The MS dumpbin program reportedly ands with 0xff0f before
#. printing the characteristics field. Not sure why. No reason to
#. emulate it here.
-#: peigen.c:2757 pepigen.c:2757 pex64igen.c:2757
+#: peXXigen.c:2829
#, c-format
msgid ""
"\n"
"Characteristics 0x%x\n"
msgstr ""
-#: peigen.c:2994 pepigen.c:2994 pex64igen.c:2994
+#: peXXigen.c:3076
#, c-format
msgid ""
"%pB: Data Directory size (%lx) exceeds space left in section (%<PRIx64>)"
msgstr ""
-#: peigen.c:3026 pepigen.c:3026 pex64igen.c:3026
+#: peXXigen.c:3108
msgid "failed to update file offsets in debug directory"
msgstr ""
-#: peigen.c:3034 pepigen.c:3034 pex64igen.c:3034
+#: peXXigen.c:3116
#, c-format
msgid "%pB: failed to read debug data section"
msgstr ""
-#: peigen.c:3850 pepigen.c:3850 pex64igen.c:3850
+#: peXXigen.c:3932
#, c-format
msgid ".rsrc merge failure: duplicate string resource: %d"
msgstr ""
-#: peigen.c:3985 pepigen.c:3985 pex64igen.c:3985
+#: peXXigen.c:4067
msgid ".rsrc merge failure: multiple non-default manifests"
msgstr ""
-#: peigen.c:4003 pepigen.c:4003 pex64igen.c:4003
+#: peXXigen.c:4085
msgid ".rsrc merge failure: a directory matches a leaf"
msgstr ""
-#: peigen.c:4045 pepigen.c:4045 pex64igen.c:4045
+#: peXXigen.c:4127
msgid ".rsrc merge failure: duplicate leaf"
msgstr ""
-#: peigen.c:4047 pepigen.c:4047 pex64igen.c:4047
+#: peXXigen.c:4129
#, c-format
msgid ".rsrc merge failure: duplicate leaf: %s"
msgstr ""
-#: peigen.c:4113 pepigen.c:4113 pex64igen.c:4113
+#: peXXigen.c:4195
msgid ".rsrc merge failure: dirs with differing characteristics"
msgstr ""
-#: peigen.c:4120 pepigen.c:4120 pex64igen.c:4120
+#: peXXigen.c:4202
msgid ".rsrc merge failure: differing directory versions"
msgstr ""
#. Corrupted .rsrc section - cannot merge.
-#: peigen.c:4237 pepigen.c:4237 pex64igen.c:4237
+#: peXXigen.c:4319
#, c-format
msgid "%pB: .rsrc merge failure: corrupt .rsrc section"
msgstr ""
-#: peigen.c:4245 pepigen.c:4245 pex64igen.c:4245
+#: peXXigen.c:4327
#, c-format
msgid "%pB: .rsrc merge failure: unexpected .rsrc size"
msgstr ""
-#: peigen.c:4384 pepigen.c:4384 pex64igen.c:4384
+#: peXXigen.c:4466
#, c-format
msgid "%pB: unable to fill in DataDictionary[1] because .idata$2 is missing"
msgstr ""
-#: peigen.c:4404 pepigen.c:4404 pex64igen.c:4404
+#: peXXigen.c:4486
#, c-format
msgid "%pB: unable to fill in DataDictionary[1] because .idata$4 is missing"
msgstr ""
-#: peigen.c:4425 pepigen.c:4425 pex64igen.c:4425
+#: peXXigen.c:4507
#, c-format
msgid "%pB: unable to fill in DataDictionary[12] because .idata$5 is missing"
msgstr ""
-#: peigen.c:4445 pepigen.c:4445 pex64igen.c:4445
+#: peXXigen.c:4527
#, c-format
msgid ""
"%pB: unable to fill in DataDictionary[PE_IMPORT_ADDRESS_TABLE (12)] because ."
"idata$6 is missing"
msgstr ""
-#: peigen.c:4487 pepigen.c:4487 pex64igen.c:4487
+#: peXXigen.c:4569
#, c-format
msgid ""
"%pB: unable to fill in DataDictionary[PE_IMPORT_ADDRESS_TABLE(12)] because ."
"idata$6 is missing"
msgstr ""
-#: peigen.c:4512 pepigen.c:4512 pex64igen.c:4512
+#: peXXigen.c:4594
#, c-format
msgid "%pB: unable to fill in DataDictionary[9] because __tls_used is missing"
msgstr ""