forked from bminor/binutils-gdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathld.pot
7232 lines (6031 loc) · 227 KB
/
ld.pot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://sourceware.org/bugzilla/\n"
"POT-Creation-Date: 2025-01-19 12:39+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#: ldcref.c:170
msgid "%X%P: bfd_hash_table_init of cref table failed: %E\n"
msgstr ""
#: ldcref.c:176
msgid "%X%P: cref_hash_lookup failed: %E\n"
msgstr ""
#: ldcref.c:186
msgid "%X%P: cref alloc failed: %E\n"
msgstr ""
#: ldcref.c:371
#, c-format
msgid ""
"\n"
"Cross Reference Table\n"
"\n"
msgstr ""
#: ldcref.c:372
msgid "Symbol"
msgstr ""
#: ldcref.c:380
#, c-format
msgid "File\n"
msgstr ""
#: ldcref.c:384
#, c-format
msgid "No symbols\n"
msgstr ""
#: ldcref.c:413 ldcref.c:565
msgid "%P: symbol `%pT' missing from main hash table\n"
msgstr ""
#: ldcref.c:517 ldcref.c:628 ldmain.c:1357 ldmisc.c:327 pe-dll.c:780
#: pe-dll.c:1350 pe-dll.c:1471 pe-dll.c:1573 eaarch64pe.c:1580 earm64pe.c:1580
#: earm_wince_pe.c:1583 earm_wince_pe.c:1770 earmpe.c:1583 earmpe.c:1770
#: ei386pe.c:1583 ei386pe.c:1770 ei386pe_posix.c:1583 ei386pe_posix.c:1770
#: ei386pep.c:1580 emcorepe.c:1583 emcorepe.c:1770 eshpe.c:1583 eshpe.c:1770
msgid "%F%P: %pB: could not read symbols: %E\n"
msgstr ""
#: ldcref.c:690 ldcref.c:697 ldmain.c:1419 ldmain.c:1426
msgid "%F%P: %pB: could not read relocs: %E\n"
msgstr ""
#. We found a reloc for the symbol. The symbol is defined
#. in OUTSECNAME. This reloc is from a section which is
#. mapped into a section from which references to OUTSECNAME
#. are prohibited. We must report an error.
#: ldcref.c:724
msgid "%X%P: %H: prohibited cross reference from %s to `%pT' in %s\n"
msgstr ""
#: ldctor.c:85
msgid "%X%P: different relocs used in set %s\n"
msgstr ""
#: ldctor.c:103
msgid "%X%P: different object file formats composing set %s\n"
msgstr ""
#: ldctor.c:279 ldctor.c:300
msgid "%X%P: %s does not support reloc %s for set %s\n"
msgstr ""
#: ldctor.c:295
msgid "%X%P: special section %s does not support reloc %s for set %s\n"
msgstr ""
#: ldctor.c:321
msgid "%X%P: unsupported size %d for set %s\n"
msgstr ""
#: ldctor.c:344
msgid ""
"\n"
"Set Symbol\n"
"\n"
msgstr ""
#: ldelf.c:98
msgid "%F%P: common page size (0x%v) > maximum page size (0x%v)\n"
msgstr ""
#: ldelf.c:124
msgid "%F%P: %pB: --just-symbols may not be used on DSO\n"
msgstr ""
#: ldelf.c:226
msgid "%P: %pB: bfd_stat failed: %E\n"
msgstr ""
#: ldelf.c:267
msgid "%P: warning: %s, needed by %pB, may conflict with %s\n"
msgstr ""
#: ldelf.c:287 ldfile.c:356
#, c-format
msgid "attempt to open %s failed\n"
msgstr ""
#: ldelf.c:324
msgid "%F%P: %pB: bfd_elf_get_bfd_needed_list failed: %E\n"
msgstr ""
#: ldelf.c:372
msgid "%F%P: %pB: bfd_stat failed: %E\n"
msgstr ""
#: ldelf.c:378
#, c-format
msgid "found %s at %s\n"
msgstr ""
#: ldelf.c:411 ldlang.c:3177 ldlang.c:3191 ldlang.c:10994
msgid "%F%P: %pB: error adding symbols: %E\n"
msgstr ""
#. We only issue an "unrecognised" message in verbose mode
#. as the $<foo> token might be a legitimate component of
#. a path name in the target's file system.
#: ldelf.c:601
#, c-format
msgid "unrecognised or unsupported token '%s' in search path\n"
msgstr ""
#: ldelf.c:1084
#, c-format
msgid "%s needed by %pB\n"
msgstr ""
#: ldelf.c:1193
msgid ""
"%P: warning: %s, needed by %pB, not found (try using -rpath or -rpath-link)\n"
msgstr ""
#: ldelf.c:1209
msgid "%F%P: failed to add DT_NEEDED dynamic tag\n"
msgstr ""
#: ldelf.c:1261
msgid "%F%P: %s: can't open for writing: %E\n"
msgstr ""
#: ldelf.c:1317
msgid "%F%P: cannot use executable file '%pB' as input to a link\n"
msgstr ""
#: ldelf.c:1371
msgid ""
"%F%P: compact frame descriptions incompatible with DWARF2 .eh_frame from %"
"pB\n"
msgstr ""
#: ldelf.c:1407
msgid ""
"%P: warning: cannot create .eh_frame_hdr section, --eh-frame-hdr ignored\n"
msgstr ""
#: ldelf.c:1413
msgid "%F%P: failed to parse EH frame entries\n"
msgstr ""
#: ldelf.c:1455
msgid "%P: warning: .note.gnu.build-id section discarded, --build-id ignored\n"
msgstr ""
#: ldelf.c:1505 eaarch64pe.c:1354 earm64pe.c:1354 earm_wince_pe.c:1339
#: earmpe.c:1339 ei386pe.c:1339 ei386pe_posix.c:1339 ei386pep.c:1354
#: emcorepe.c:1339 eshpe.c:1339
msgid "%P: warning: unrecognized --build-id style ignored\n"
msgstr ""
#: ldelf.c:1524
msgid ""
"%P: warning: cannot create .note.gnu.build-id section, --build-id ignored\n"
msgstr ""
#: ldelf.c:1545
msgid ""
"%P: warning: .note.package section discarded, --package-metadata ignored\n"
msgstr ""
#: ldelf.c:1601
msgid "%P: warning: --package-metadata is empty, ignoring\n"
msgstr ""
#: ldelf.c:1611
msgid ""
"%P: warning: --package-metadata=%s does not contain valid JSON, ignoring: %"
"s\n"
msgstr ""
#: ldelf.c:1640
msgid ""
"%P: warning: cannot create .note.package section, --package-metadata "
"ignored\n"
msgstr ""
#: ldelf.c:1672 eaix5ppc.c:1546 eaix5rs6.c:1546 eaixppc.c:1546 eaixrs6.c:1546
#: eppcmacos.c:1546
msgid "%F%P: failed to record assignment to %s: %E\n"
msgstr ""
#: ldelf.c:1850 ldelf.c:1915 eaix5ppc.c:816 eaix5rs6.c:816 eaixppc.c:816
#: eaixrs6.c:816 eelf64_ia64_vms.c:209 eppcmacos.c:816
msgid "%F%P: failed to set dynamic section sizes: %E\n"
msgstr ""
#: ldelf.c:1887
msgid "%F%P: %pB: can't read contents of section .gnu.warning: %E\n"
msgstr ""
#: ldelfgen.c:285
msgid "%F%P: %pA has both ordered and unordered sections\n"
msgstr ""
#: ldelfgen.c:310 eelf32loongarch.c:106 eelf64loongarch.c:106
msgid "%F%P: map sections to segments failed: %E\n"
msgstr ""
#: ldelfgen.c:330
msgid "%F%P: looping in map_segments\n"
msgstr ""
#: ldelfgen.c:342
msgid "%F%P: failed to strip zero-sized dynamic sections\n"
msgstr ""
#: ldelfgen.c:420
msgid ""
"%F%P: warning: CTF strtab association failed; strings will not be shared: %"
"s\n"
msgstr ""
#: ldelfgen.c:447
msgid ""
"%F%P: warning: CTF symbol addition failed; CTF will not be tied to symbols: %"
"s\n"
msgstr ""
#: ldelfgen.c:457
msgid ""
"%F%P: warning: CTF symbol shuffling failed; CTF will not be tied to symbols: "
"%s\n"
msgstr ""
#: ldemul.c:323
#, c-format
msgid "%pS SYSLIB ignored\n"
msgstr ""
#: ldemul.c:329
#, c-format
msgid "%pS HLL ignored\n"
msgstr ""
#: ldemul.c:349
msgid "%P: unrecognised emulation mode: %s\n"
msgstr ""
#: ldemul.c:350
msgid "Supported emulations: "
msgstr ""
#: ldemul.c:392
#, c-format
msgid " no emulation specific options.\n"
msgstr ""
#: ldexp.c:285
msgid "%F%P: bfd_hash_allocate failed creating symbol %s\n"
msgstr ""
#: ldexp.c:316
msgid "%F%P: bfd_hash_lookup failed creating symbol %s\n"
msgstr ""
#: ldexp.c:562
msgid "%P: warning: address of `%s' isn't multiple of maximum page size\n"
msgstr ""
#: ldexp.c:641
msgid "%F%P:%pS %% by zero\n"
msgstr ""
#: ldexp.c:650
msgid "%F%P:%pS / by zero\n"
msgstr ""
#: ldexp.c:764 ldlang.c:4035 ldmain.c:1324 eaarch64pe.c:1168 eaarch64pe.c:1784
#: earm64pe.c:1168 earm64pe.c:1784 earm_wince_pe.c:1154 earm_wince_pe.c:1881
#: earmpe.c:1154 earmpe.c:1881 ei386pe.c:1154 ei386pe.c:1881
#: ei386pe_posix.c:1154 ei386pe_posix.c:1881 ei386pep.c:1168 ei386pep.c:1784
#: emcorepe.c:1154 emcorepe.c:1881 eshpe.c:1154 eshpe.c:1881
msgid "%F%P: bfd_link_hash_lookup failed: %E\n"
msgstr ""
#: ldexp.c:777
msgid "%X%P:%pS: unresolvable symbol `%s' referenced in expression\n"
msgstr ""
#: ldexp.c:792
msgid "%F%P:%pS: undefined symbol `%s' referenced in expression\n"
msgstr ""
#: ldexp.c:830 ldexp.c:848 ldexp.c:876
msgid "%F%P:%pS: undefined section `%s' referenced in expression\n"
msgstr ""
#: ldexp.c:915 ldexp.c:929
msgid "%F%P:%pS: undefined MEMORY region `%s' referenced in expression\n"
msgstr ""
#: ldexp.c:941
msgid "%F%P:%pS: unknown constant `%s' referenced in expression\n"
msgstr ""
#: ldexp.c:1089
msgid "%F%P:%pS can not PROVIDE assignment to location counter\n"
msgstr ""
#: ldexp.c:1122
msgid "%F%P:%pS invalid assignment to location counter\n"
msgstr ""
#: ldexp.c:1126
msgid "%F%P:%pS assignment to location counter invalid outside of SECTIONS\n"
msgstr ""
#: ldexp.c:1145
msgid "%F%P:%pS cannot move location counter backwards (from %V to %V)\n"
msgstr ""
#: ldexp.c:1205
msgid "%F%P:%s: hash creation failed\n"
msgstr ""
#: ldexp.c:1581 ldexp.c:1624 ldexp.c:1684
msgid "%F%P:%pS: nonconstant expression for %s\n"
msgstr ""
#: ldexp.c:1711 ldlang.c:1355 ldlang.c:3510 ldlang.c:8236
msgid "%F%P: can not create hash table: %E\n"
msgstr ""
#: ldfile.c:239
#, c-format
msgid "remap input file '%s' to '%s' based upon pattern '%s'\n"
msgstr ""
#: ldfile.c:242
#, c-format
msgid "remove input file '%s' based upon pattern '%s'\n"
msgstr ""
#: ldfile.c:248
#, c-format
msgid "remap input file '%s' to '%s'\n"
msgstr ""
#: ldfile.c:251
#, c-format
msgid "remove input file '%s'\n"
msgstr ""
#: ldfile.c:269
msgid ""
"\n"
"Input File Remapping\n"
"\n"
msgstr ""
#: ldfile.c:274
#, c-format
msgid " Pattern: %s\tMaps To: %s\n"
msgstr ""
#: ldfile.c:275
msgid "<discard>"
msgstr ""
#: ldfile.c:358
#, c-format
msgid "attempt to open %s succeeded\n"
msgstr ""
#: ldfile.c:364
msgid "%F%P: invalid BFD target `%s'\n"
msgstr ""
#: ldfile.c:494 ldfile.c:524
msgid "%P: skipping incompatible %s when searching for %s\n"
msgstr ""
#: ldfile.c:507
msgid "%F%P: attempted static link of dynamic object `%s'\n"
msgstr ""
#: ldfile.c:636
msgid "%P: cannot find %s (%s): %E\n"
msgstr ""
#. We ignore the return status of the script
#. and always print the error message.
#: ldfile.c:639 ldfile.c:723 ldfile.c:727
msgid "%P: cannot find %s: %E\n"
msgstr ""
#: ldfile.c:691
msgid "%P: cannot find %s inside %s\n"
msgstr ""
#: ldfile.c:706 ldmain.c:1504
msgid "%P: About to run error handling script '%s' with arguments: '%s' '%s'\n"
msgstr ""
#: ldfile.c:710 ldmain.c:1508
msgid "error handling script"
msgstr ""
#: ldfile.c:716 ldmain.c:1514
msgid "%P: Failed to run error handling script '%s', reason: "
msgstr ""
#: ldfile.c:732
msgid "%P: have you installed the static version of the %s library ?\n"
msgstr ""
#: ldfile.c:743
msgid "%P: note to link with %s use -l:%s or rename it to lib%s\n"
msgstr ""
#: ldfile.c:775
#, c-format
msgid "cannot find script file %s\n"
msgstr ""
#: ldfile.c:777
#, c-format
msgid "opened script file %s\n"
msgstr ""
#: ldfile.c:913
msgid "%F%P: error: linker script file '%s' appears multiple times\n"
msgstr ""
#: ldfile.c:932
msgid "%F%P: cannot open linker script file %s: %E\n"
msgstr ""
#: ldfile.c:1026
msgid "%F%P: cannot represent machine `%s'\n"
msgstr ""
#: ldlang.c:1446
msgid "%P:%pS: warning: redeclaration of memory region `%s'\n"
msgstr ""
#: ldlang.c:1452
msgid "%P:%pS: warning: memory region `%s' not declared\n"
msgstr ""
#: ldlang.c:1488
msgid "%F%P:%pS: error: alias for default memory region\n"
msgstr ""
#: ldlang.c:1499
msgid "%F%P:%pS: error: redefinition of memory region alias `%s'\n"
msgstr ""
#: ldlang.c:1506
msgid "%F%P:%pS: error: memory region `%s' for alias `%s' does not exist\n"
msgstr ""
#: ldlang.c:1567 ldlang.c:1610
msgid "%F%P: failed creating section `%s': %E\n"
msgstr ""
#: ldlang.c:2328
msgid ""
"\n"
"As-needed library included to satisfy reference by file (symbol)\n"
"\n"
msgstr ""
#: ldlang.c:2393
msgid ""
"\n"
"Discarded input sections\n"
"\n"
msgstr ""
#: ldlang.c:2401
msgid ""
"\n"
"There are no discarded input sections\n"
msgstr ""
#: ldlang.c:2403
msgid ""
"\n"
"Memory Configuration\n"
"\n"
msgstr ""
#: ldlang.c:2405
msgid "Name"
msgstr ""
#: ldlang.c:2405
msgid "Origin"
msgstr ""
#: ldlang.c:2405
msgid "Length"
msgstr ""
#: ldlang.c:2405
msgid "Attributes"
msgstr ""
#: ldlang.c:2429
msgid ""
"\n"
"Linker script and memory map\n"
"\n"
msgstr ""
#: ldlang.c:2482
msgid "%F%P: illegal use of `%s' section\n"
msgstr ""
#: ldlang.c:2491
msgid "%F%P: output format %s cannot represent section called %s: %E\n"
msgstr ""
#: ldlang.c:2672
msgid ""
"%P:%pS: warning: --enable-non-contiguous-regions makes section `%pA' from `%"
"pB' match /DISCARD/ clause.\n"
msgstr ""
#: ldlang.c:2696
msgid ""
"%P:%pS: warning: --enable-non-contiguous-regions may change behaviour for "
"section `%pA' from `%pB' (assigned to %pA, but additional match: %pA)\n"
msgstr ""
#: ldlang.c:3074
msgid "%P: %pB: file not recognized: %E; matching formats:"
msgstr ""
#: ldlang.c:3083
msgid "%F%P: %pB: file not recognized: %E\n"
msgstr ""
#: ldlang.c:3156
msgid "%F%P: %pB: member %pB in archive is not an object\n"
msgstr ""
#: ldlang.c:3432
msgid "%F%P: input file '%s' is the same as output file\n"
msgstr ""
#: ldlang.c:3480
msgid ""
"%P: warning: could not find any targets that match endianness requirement\n"
msgstr ""
#: ldlang.c:3494
msgid "%F%P: target %s not found\n"
msgstr ""
#: ldlang.c:3496
msgid "%F%P: cannot open output file %s: %E\n"
msgstr ""
#: ldlang.c:3502
msgid "%F%P: %s: can not make object file: %E\n"
msgstr ""
#: ldlang.c:3506
msgid "%F%P: %s: can not set architecture: %E\n"
msgstr ""
#: ldlang.c:3693
msgid "%P: warning: %s contains output sections; did you forget -T?\n"
msgstr ""
#: ldlang.c:3740
#, c-format
msgid "%s: %s\n"
msgstr ""
#: ldlang.c:3740
msgid "CTF warning"
msgstr ""
#: ldlang.c:3740
msgid "CTF error"
msgstr ""
#: ldlang.c:3746
#, c-format
msgid "CTF error: cannot get CTF errors: `%s'\n"
msgstr ""
#: ldlang.c:3780
msgid ""
"%P: warning: CTF section in %pB not loaded; its types will be discarded: %s\n"
msgstr ""
#: ldlang.c:3809
msgid "%P: warning: CTF output not created: `%s'\n"
msgstr ""
#: ldlang.c:3852
msgid "%P: warning: CTF section in %pB cannot be linked: `%s'\n"
msgstr ""
#: ldlang.c:3872
msgid "%P: warning: CTF linking failed; output will have no CTF section: %s\n"
msgstr ""
#: ldlang.c:3943
msgid ""
"%P: warning: CTF section emission failed; output will have no CTF section: %"
"s\n"
msgstr ""
#: ldlang.c:3982
msgid ""
"%P: warning: CTF section in %pB not linkable: %P was built without support "
"for CTF\n"
msgstr ""
#: ldlang.c:4120
msgid "%X%P: required symbol `%s' not defined\n"
msgstr ""
#: ldlang.c:4321 ldlang.c:4330
msgid "%F%P: invalid type for output section `%s'\n"
msgstr ""
#: ldlang.c:4466
msgid ""
"warning: INSERT statement in linker script is incompatible with --enable-non-"
"contiguous-regions.\n"
msgstr ""
#: ldlang.c:4479
msgid "%F%P: %s not found for insert\n"
msgstr ""
#: ldlang.c:4751
msgid " load address 0x%V"
msgstr ""
#: ldlang.c:5013
msgid "%W (size before relaxing)\n"
msgstr ""
#: ldlang.c:5142
#, c-format
msgid "Address of section %s set to "
msgstr ""
#: ldlang.c:5344
#, c-format
msgid "Fail with %d\n"
msgstr ""
#: ldlang.c:5561
msgid ""
"%F%P: Output section `%pA' not large enough for the linker-created stubs "
"section `%pA'.\n"
msgstr ""
#: ldlang.c:5566
msgid ""
"%F%P: Relaxation not supported with --enable-non-contiguous-regions (section "
"`%pA' would overflow `%pA' after it changed size).\n"
msgstr ""
#: ldlang.c:5675
msgid "%X%P: section %s VMA wraps around address space\n"
msgstr ""
#: ldlang.c:5681
msgid "%X%P: section %s LMA wraps around address space\n"
msgstr ""
#: ldlang.c:5733
msgid "%X%P: section %s LMA [%V,%V] overlaps section %s LMA [%V,%V]\n"
msgstr ""
#: ldlang.c:5777
msgid "%X%P: section %s VMA [%V,%V] overlaps section %s VMA [%V,%V]\n"
msgstr ""
#: ldlang.c:5800
msgid "%X%P: region `%s' overflowed by %lu byte\n"
msgid_plural "%X%P: region `%s' overflowed by %lu bytes\n"
msgstr[0] ""
msgstr[1] ""
#: ldlang.c:5825
msgid "%X%P: address 0x%v of %pB section `%s' is not within region `%s'\n"
msgstr ""
#: ldlang.c:5836
msgid "%X%P: %pB section `%s' will not fit in region `%s'\n"
msgstr ""
#: ldlang.c:5922
msgid ""
"%F%P:%pS: non constant or forward reference address expression for section %"
"s\n"
msgstr ""
#: ldlang.c:5947
msgid "%X%P: internal error on COFF shared library section %s\n"
msgstr ""
#: ldlang.c:6005
msgid "%F%P: error: no memory region specified for loadable section `%s'\n"
msgstr ""
#: ldlang.c:6009
msgid "%P: warning: no memory region specified for loadable section `%s'\n"
msgstr ""
#: ldlang.c:6043
msgid "%P: warning: start of section %s changed by %ld\n"
msgstr ""
#: ldlang.c:6136
msgid "%P: warning: dot moved backwards before `%s'\n"
msgstr ""
#: ldlang.c:6312
msgid "%F%P: can't relax section: %E\n"
msgstr ""
#: ldlang.c:6721
msgid "%F%P: invalid data statement\n"
msgstr ""
#: ldlang.c:6754
msgid "%F%P: invalid reloc statement\n"
msgstr ""
#: ldlang.c:7172
msgid ""
"%F%P: --gc-sections requires a defined symbol root specified by -e or -u\n"
msgstr ""
#: ldlang.c:7197
msgid "%F%P: %s: can't set start address\n"
msgstr ""
#: ldlang.c:7210 ldlang.c:7229
msgid "%F%P: can't set start address\n"
msgstr ""
#: ldlang.c:7223
msgid "%P: warning: cannot find entry symbol %s; defaulting to %V\n"
msgstr ""
#: ldlang.c:7234 ldlang.c:7242
msgid "%P: warning: cannot find entry symbol %s; not setting start address\n"
msgstr ""
#: ldlang.c:7298
msgid ""
"%F%P: relocatable linking with relocations from format %s (%pB) to format %s "
"(%pB) is not supported\n"
msgstr ""
#: ldlang.c:7308
msgid ""
"%X%P: %s architecture of input file `%pB' is incompatible with %s output\n"
msgstr ""
#: ldlang.c:7332
msgid "%X%P: failed to merge target specific data of file %pB\n"
msgstr ""
#: ldlang.c:7403
msgid "%F%P: could not define common symbol `%pT': %E\n"
msgstr ""
#: ldlang.c:7415
msgid ""
"\n"
"Allocating common symbols\n"
msgstr ""
#: ldlang.c:7416
msgid ""
"Common symbol size file\n"
"\n"
msgstr ""
#: ldlang.c:7473
msgid "%X%P: error: unplaced orphan section `%pA' from `%pB'\n"
msgstr ""
#: ldlang.c:7491
msgid ""
"%P: warning: orphan section `%pA' from `%pB' being placed in section `%s'\n"
msgstr ""
#: ldlang.c:7581
msgid "%F%P: invalid character %c (%d) in flags\n"
msgstr ""
#. && in_section_ordering
#: ldlang.c:7675
msgid "%F%P:%pS: error: output section '%s' must already exist\n"
msgstr ""
#: ldlang.c:7699
msgid "%F%P:%pS: error: align with input and explicit align specified\n"
msgstr ""
#: ldlang.c:8170
msgid ""
"%P: warning: --enable-non-contiguous-regions discards section `%pA' from `%"
"pB'\n"
msgstr ""
#: ldlang.c:8274
msgid "%F%P: %s: plugin reported error after all symbols read\n"
msgstr ""
#: ldlang.c:8399
msgid ""
"Object-only input files:\n"
" "
msgstr ""
#: ldlang.c:8511
msgid "%F%P: bfd_merge_sections failed: %E\n"
msgstr ""
#: ldlang.c:8888
msgid "%F%P: multiple STARTUP files\n"
msgstr ""
#: ldlang.c:8934
msgid "%X%P:%pS: section has both a load address and a load region\n"
msgstr ""
#: ldlang.c:9043
msgid ""
"%X%P:%pS: PHDRS and FILEHDR are not supported when prior PT_LOAD headers "
"lack them\n"
msgstr ""
#: ldlang.c:9116
msgid "%F%P: no sections assigned to phdrs\n"
msgstr ""
#: ldlang.c:9154
msgid "%F%P: bfd_record_phdr failed: %E\n"
msgstr ""
#: ldlang.c:9174
msgid "%X%P: section `%s' assigned to non-existent phdr `%s'\n"
msgstr ""
#: ldlang.c:9590
msgid "%X%P: unknown language `%s' in version information\n"
msgstr ""
#: ldlang.c:9735
msgid ""
"%X%P: anonymous version tag cannot be combined with other version tags\n"
msgstr ""
#: ldlang.c:9744
msgid "%X%P: duplicate version tag `%s'\n"
msgstr ""
#: ldlang.c:9765 ldlang.c:9774 ldlang.c:9792 ldlang.c:9802
msgid "%X%P: duplicate expression `%s' in version information\n"
msgstr ""
#: ldlang.c:9842
msgid "%X%P: unable to find version dependency `%s'\n"
msgstr ""
#: ldlang.c:9865
msgid "%X%P: unable to read .exports section contents\n"
msgstr ""
#: ldlang.c:9911
msgid "%P: invalid origin for memory region %s\n"
msgstr ""
#: ldlang.c:9923
msgid "%P: invalid length for memory region %s\n"
msgstr ""
#: ldlang.c:10035
msgid "%X%P: unknown feature `%s'\n"
msgstr ""
#: ldlang.c:10401
msgid "failed to create output section"
msgstr ""
#: ldlang.c:10435
msgid "failed to copy private data"
msgstr ""
#: ldlang.c:10444
msgid "%P%F: setup_section: %s: %s\n"
msgstr ""
#: ldlang.c:10507
msgid "relocation count is negative"
msgstr ""
#: ldlang.c:10539
msgid "%P%F: copy_section: %s: %s\n"
msgstr ""
#: ldlang.c:10694
msgid "error setting up sections"
msgstr ""
#: ldlang.c:10702
msgid "error copying private header data"
msgstr ""
#: ldlang.c:10715
msgid "can't create object-only section"
msgstr ""
#: ldlang.c:10721
msgid "can't set object-only section size"
msgstr ""
#: ldlang.c:10752
msgid "error copying sections"
msgstr ""
#: ldlang.c:10759
msgid "error adding object-only section"
msgstr ""
#: ldlang.c:10769
msgid "error copying private BFD data"
msgstr ""
#: ldlang.c:10776
msgid "%P%F: failed to finish output with object-only section\n"
msgstr ""
#: ldlang.c:10786
msgid "%P%F: failed to rename output with object-only section\n"
msgstr ""
#: ldlang.c:10802
msgid "%P%F: failed to add object-only section: %s\n"
msgstr ""
#: ldlang.c:10835
msgid "%P%F: Failed to create hash table\n"
msgstr ""
#: ldlang.c:10899
msgid "%P%F:%s: final close failed on object-only output: %E\n"