diff options
author | Alan Modra <amodra@gmail.com> | 2017-10-11 14:48:45 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2017-10-11 15:04:59 +1030 |
commit | d003af558092dc521f93d16628b9ccbf434370e3 (patch) | |
tree | 28cddf0bb4ecb0fd046923465229d9b660c3ac7d /ld/emultempl/aix.em | |
parent | e8b8ffd3c0676f69d1edd3859d4eebf10d1d62d7 (diff) | |
download | gdb-d003af558092dc521f93d16628b9ccbf434370e3.zip gdb-d003af558092dc521f93d16628b9ccbf434370e3.tar.gz gdb-d003af558092dc521f93d16628b9ccbf434370e3.tar.bz2 |
ld internationalization fixes
* emultempl/aarch64elf.em: Wrap einfo strings in _(). Formatting.
* emultempl/aix.em: Likewise.
* emultempl/armcoff.em: Likewise.
* emultempl/armelf.em: Likewise.
* emultempl/avrelf.em: Likewise.
* emultempl/beos.em: Likewise.
* emultempl/cr16elf.em: Likewise.
* emultempl/elf-generic.em: Likewise.
* emultempl/elf32.em: Likewise.
* emultempl/genelf.em: Likewise.
* emultempl/hppaelf.em: Likewise.
* emultempl/linux.em: Likewise.
* emultempl/lnk960.em: Likewise.
* emultempl/m68hc1xelf.em: Likewise.
* emultempl/m68kcoff.em: Likewise.
* emultempl/m68kelf.em: Likewise.
* emultempl/metagelf.em: Likewise.
* emultempl/mipself.em: Likewise.
* emultempl/mmix-elfnmmo.em: Likewise.
* emultempl/mmo.em: Likewise.
* emultempl/msp430.em: Likewise.
* emultempl/nds32elf.em: Likewise.
* emultempl/nios2elf.em: Likewise.
* emultempl/pe.em: Likewise.
* emultempl/pep.em: Likewise.
* emultempl/ppc32elf.em: Likewise.
* emultempl/ppc64elf.em: Likewise.
* emultempl/riscvelf.em: Likewise.
* emultempl/s390.em: Likewise.
* emultempl/scoreelf.em: Likewise.
* emultempl/spuelf.em: Likewise.
* emultempl/sunos.em: Likewise.
* emultempl/tic6xdsbt.em: Likewise.
* emultempl/v850elf.em: Likewise.
* emultempl/vms.em: Likewise.
* emultempl/vxworks.em: Likewise.
* ldcref.c: Likewise.
* ldlang.c: Likewise.
* ldlex.l: Likewise.
* ldmain.c: Likewise.
* pe-dll.c: Likewise.
* plugin.c: Likewise.
Diffstat (limited to 'ld/emultempl/aix.em')
-rw-r--r-- | ld/emultempl/aix.em | 63 |
1 files changed, 34 insertions, 29 deletions
diff --git a/ld/emultempl/aix.em b/ld/emultempl/aix.em index 02fe282..8d11863 100644 --- a/ld/emultempl/aix.em +++ b/ld/emultempl/aix.em @@ -320,7 +320,7 @@ read_file_list (const char *filename) f = fopen (filename, FOPEN_RT); if (f == NULL) { - einfo ("%F%P: cannot open %s\n", filename); + einfo (_("%F%P: cannot open %s\n"), filename); return; } if (fseek (f, 0L, SEEK_END) == -1) @@ -367,7 +367,7 @@ read_file_list (const char *filename) return; error: - einfo ("%F%P: cannot read %s\n", optarg); + einfo (_("%F%P: cannot read %s\n"), optarg); fclose (f); } @@ -395,7 +395,7 @@ gld${EMULATION_NAME}_handle_option (int optc) case 'D': val = bfd_scan_vma (optarg, &end, 0); if (*end != '\0') - einfo ("%P: warning: ignoring invalid -D number %s\n", optarg); + einfo (_("%P: warning: ignoring invalid -D number %s\n"), optarg); else if (val != -1) lang_section_start (".data", exp_intop (val), NULL); break; @@ -403,7 +403,7 @@ gld${EMULATION_NAME}_handle_option (int optc) case 'H': val = bfd_scan_vma (optarg, &end, 0); if (*end != '\0' || (val & (val - 1)) != 0) - einfo ("%P: warning: ignoring invalid -H number %s\n", optarg); + einfo (_("%P: warning: ignoring invalid -H number %s\n"), optarg); else file_align = val; break; @@ -515,7 +515,8 @@ gld${EMULATION_NAME}_handle_option (int optc) case OPTION_MAXDATA: val = bfd_scan_vma (optarg, &end, 0); if (*end != '\0') - einfo ("%P: warning: ignoring invalid -bmaxdata number %s\n", optarg); + einfo (_("%P: warning: ignoring invalid -bmaxdata number %s\n"), + optarg); else maxdata = val; break; @@ -523,7 +524,7 @@ gld${EMULATION_NAME}_handle_option (int optc) case OPTION_MAXSTACK: val = bfd_scan_vma (optarg, &end, 0); if (*end != '\0') - einfo ("%P: warning: ignoring invalid -bmaxstack number %s\n", + einfo (_("%P: warning: ignoring invalid -bmaxstack number %s\n"), optarg); else maxstack = val; @@ -536,7 +537,7 @@ gld${EMULATION_NAME}_handle_option (int optc) ++optarg; } if (*optarg == '\0' || optarg[1] == '\0') - einfo ("%P: warning: ignoring invalid module type %s\n", optarg); + einfo (_("%P: warning: ignoring invalid module type %s\n"), optarg); else modtype = (*optarg << 8) | optarg[1]; break; @@ -566,7 +567,7 @@ gld${EMULATION_NAME}_handle_option (int optc) expression. */ val = bfd_scan_vma (optarg, &end, 0); if (*end != '\0') - einfo ("%P: warning: ignoring invalid -pD number %s\n", optarg); + einfo (_("%P: warning: ignoring invalid -pD number %s\n"), optarg); else { etree_type *t; @@ -589,7 +590,7 @@ gld${EMULATION_NAME}_handle_option (int optc) within the file. */ val = bfd_scan_vma (optarg, &end, 0); if (*end != '\0') - einfo ("%P: warning: ignoring invalid -pT number %s\n", optarg); + einfo (_("%P: warning: ignoring invalid -pT number %s\n"), optarg); else { etree_type *t; @@ -718,7 +719,7 @@ gld${EMULATION_NAME}_after_open (void) size = (p->count + 2) * 4; if (!bfd_xcoff_link_record_set (link_info.output_bfd, &link_info, p->h, size)) - einfo ("%F%P: bfd_xcoff_link_record_set failed: %E\n"); + einfo (_("%F%P: bfd_xcoff_link_record_set failed: %E\n")); } } @@ -748,9 +749,9 @@ gld${EMULATION_NAME}_before_allocation (void) h = bfd_link_hash_lookup (link_info.hash, el->name, FALSE, FALSE, FALSE); if (h == NULL) - einfo ("%P%F: bfd_link_hash_lookup of export symbol failed: %E\n"); + einfo (_("%P%F: bfd_link_hash_lookup of export symbol failed: %E\n")); if (!bfd_xcoff_export_symbol (link_info.output_bfd, &link_info, h)) - einfo ("%P%F: bfd_xcoff_export_symbol failed: %E\n"); + einfo (_("%P%F: bfd_xcoff_export_symbol failed: %E\n")); } /* Track down all relocations called for by the linker script (these @@ -834,7 +835,7 @@ gld${EMULATION_NAME}_before_allocation (void) maxstack, maxdata, gc && !unix_ld ? TRUE : FALSE, modtype, textro ? TRUE : FALSE, flags, special_sections, rtld ? TRUE : FALSE)) - einfo ("%P%F: failed to set dynamic section sizes: %E\n"); + einfo (_("%P%F: failed to set dynamic section sizes: %E\n")); /* Look through the special sections, and put them in the right place in the link ordering. This is especially magic. */ @@ -856,7 +857,7 @@ gld${EMULATION_NAME}_before_allocation (void) is = NULL; os = lang_output_section_get (sec->output_section); if (os == NULL) - einfo ("%P%F: can't find output section %s\n", + einfo (_("%P%F: can't find output section %s\n"), sec->output_section->name); for (pls = &os->children.head; *pls != NULL; pls = &(*pls)->header.next) @@ -893,7 +894,7 @@ gld${EMULATION_NAME}_before_allocation (void) if (is == NULL) { - einfo ("%P%F: can't find %s in output section\n", + einfo (_("%P%F: can't find %s in output section\n"), bfd_get_section_name (sec->owner, sec)); } @@ -961,7 +962,8 @@ gld${EMULATION_NAME}_before_allocation (void) sec = bfd_get_section_by_name (link_info.output_bfd, must_keep_sections[i]); if (sec == NULL) - einfo ("%P: can't find required output section %s\n", must_keep_sections[i]); + einfo (_("%P: can't find required output section %s\n"), + must_keep_sections[i]); else sec->flags |= SEC_KEEP; } @@ -1169,7 +1171,8 @@ gld${EMULATION_NAME}_read_file (const char *filename, bfd_boolean import) obstack_free (o, obstack_base (o)); } else if (*s == '(') - einfo ("%F%s%d: #! ([member]) is not supported in import files\n", + einfo (_("%F%s%d: #! ([member]) is not supported " + "in import files\n"), filename, lineno); else { @@ -1185,7 +1188,7 @@ gld${EMULATION_NAME}_read_file (const char *filename, bfd_boolean import) *s = '\0'; if (!bfd_xcoff_split_import_path (link_info.output_bfd, start, &imppath, &impfile)) - einfo ("%F%P: Could not parse import path: %E\n"); + einfo (_("%F%P: Could not parse import path: %E\n")); while (ISSPACE (cs)) { ++s; @@ -1195,7 +1198,7 @@ gld${EMULATION_NAME}_read_file (const char *filename, bfd_boolean import) { impmember = ""; if (cs != '\0') - einfo ("%s:%d: warning: syntax error in import file\n", + einfo (_("%s:%d: warning: syntax error in import file\n"), filename, lineno); } else @@ -1207,7 +1210,7 @@ gld${EMULATION_NAME}_read_file (const char *filename, bfd_boolean import) if (*s == ')') *s = '\0'; else - einfo ("%s:%d: warning: syntax error in import file\n", + einfo (_("%s:%d: warning: syntax error in import file\n"), filename, lineno); } } @@ -1242,7 +1245,8 @@ gld${EMULATION_NAME}_read_file (const char *filename, bfd_boolean import) while (ISSPACE (*se)) ++se; if (*se != '\0') - einfo ("%s%d: warning: syntax error in import/export file\n", + einfo (_("%s%d: warning: syntax error in " + "import/export file\n"), filename, lineno); } @@ -1259,7 +1263,8 @@ gld${EMULATION_NAME}_read_file (const char *filename, bfd_boolean import) address = bfd_scan_vma (s, &end, 0); if (*end != '\0') { - einfo ("%s:%d: warning: syntax error in import/export file\n", + einfo (_("%s:%d: warning: syntax error in " + "import/export file\n"), filename, lineno); } @@ -1293,7 +1298,7 @@ gld${EMULATION_NAME}_read_file (const char *filename, bfd_boolean import) &link_info, h, address, imppath, impfile, impmember, syscall_flag)) - einfo ("%X%s:%d: failed to import symbol %s: %E\n", + einfo (_("%X%s:%d: failed to import symbol %s: %E\n"), filename, lineno, symname); } } @@ -1303,7 +1308,7 @@ gld${EMULATION_NAME}_read_file (const char *filename, bfd_boolean import) if (obstack_object_size (o) > 0) { - einfo ("%s:%d: warning: ignoring unterminated last line\n", + einfo (_("%s:%d: warning: ignoring unterminated last line\n"), filename, lineno); obstack_free (o, obstack_base (o)); } @@ -1338,10 +1343,10 @@ gld${EMULATION_NAME}_find_relocs (lang_statement_union_type *s) rs = &s->reloc_statement; if (rs->name == NULL) - einfo ("%F%P: only relocations against symbols are permitted\n"); + einfo (_("%F%P: only relocations against symbols are permitted\n")); if (!bfd_xcoff_link_count_reloc (link_info.output_bfd, &link_info, rs->name)) - einfo ("%F%P: bfd_xcoff_link_count_reloc failed: %E\n"); + einfo (_("%F%P: bfd_xcoff_link_count_reloc failed: %E\n")); } if (s->header.type == lang_assignment_statement_enum) @@ -1369,7 +1374,7 @@ gld${EMULATION_NAME}_find_exp_assignment (etree_type *exp) if (!bfd_xcoff_record_link_assignment (link_info.output_bfd, &link_info, exp->assign.dst)) - einfo ("%P%F: failed to record assignment to %s: %E\n", + einfo (_("%P%F: failed to record assignment to %s: %E\n"), exp->assign.dst); } gld${EMULATION_NAME}_find_exp_assignment (exp->assign.src); @@ -1467,7 +1472,7 @@ gld${EMULATION_NAME}_create_output_section_statements (void) bfd_get_arch (link_info.output_bfd), bfd_get_mach (link_info.output_bfd))) { - einfo ("%X%P: can not create BFD %E\n"); + einfo (_("%X%P: can not create BFD %E\n")); return; } @@ -1477,7 +1482,7 @@ gld${EMULATION_NAME}_create_output_section_statements (void) link_info.fini_function, rtld)) { - einfo ("%X%P: can not create BFD %E\n"); + einfo (_("%X%P: can not create BFD %E\n")); return; } |