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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1998-07-23 11:19-0400\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
#: emultempl/armcoff.em:65
msgid " --support-old-code Support interworking with old code\n"
msgstr ""
#: emultempl/armcoff.em:130
#, c-format
msgid "Errors encountered processing file %s"
msgstr ""
#: emultempl/pe.em:156
msgid ""
" --base_file <basefile> Generate a base file for relocatable "
"DLLs\n"
msgstr ""
#: emultempl/pe.em:157
msgid ""
" --dll Set image base to the default for DLLs\n"
msgstr ""
#: emultempl/pe.em:158
msgid " --file-alignment <size> Set file alignment\n"
msgstr ""
#: emultempl/pe.em:159
msgid " --heap <size> Set initial size of the heap\n"
msgstr ""
#: emultempl/pe.em:160
msgid ""
" --image-base <address> Set start address of the executable\n"
msgstr ""
#: emultempl/pe.em:161
msgid ""
" --major-image-version <number> Set version number of the executable\n"
msgstr ""
#: emultempl/pe.em:162
msgid " --major-os-version <number> Set minimum required OS version\n"
msgstr ""
#: emultempl/pe.em:163
msgid ""
" --major-subsystem-version <number> Set minimum required OS subsystem "
"version\n"
msgstr ""
#: emultempl/pe.em:164
msgid ""
" --minor-image-version <number> Set revision number of the executable\n"
msgstr ""
#: emultempl/pe.em:165
msgid " --minor-os-version <number> Set minimum required OS revision\n"
msgstr ""
#: emultempl/pe.em:166
msgid ""
" --minor-subsystem-version <number> Set minimum required OS subsystem "
"revision\n"
msgstr ""
#: emultempl/pe.em:167
msgid " --section-alignment <size> Set section alignment\n"
msgstr ""
#: emultempl/pe.em:168
msgid " --stack <size> Set size of the initial stack\n"
msgstr ""
#: emultempl/pe.em:169
msgid ""
" --subsystem <name>[:<version>] Set required OS subsystem [& version]\n"
msgstr ""
#: emultempl/pe.em:170
msgid ""
" --support-old-code Support interworking with old code\n"
msgstr ""
#: emultempl/pe.em:232
msgid "%P: warning: bad version number in -subsystem option\n"
msgstr ""
#: emultempl/pe.em:248
msgid "%P%F: invalid subsystem type %s\n"
msgstr ""
#: emultempl/pe.em:263
msgid "%P%F: invalid hex number for PE parameter '%s'\n"
msgstr ""
#: emultempl/pe.em:281
msgid "%P%F: strange hex info for PE parameter '%s'\n"
msgstr ""
#: emultempl/pe.em:320
#, c-format
msgid "%s: Can't open base file %s\n"
msgstr ""
#: emultempl/pe.em:424
msgid "%P: warning, file alignment > section alignment.\n"
msgstr ""
#: emultempl/pe.em:458
msgid "%F%P: PE operations on non PE file.\n"
msgstr ""
#: emultempl/pe.em:486
#, c-format
msgid "Errors encountered processing file %s\n"
msgstr ""
#: emultempl/pe.em:509
#, c-format
msgid "Errors encountered processing file %s for interworking"
msgstr ""
#: ldcref.c:162
msgid "%X%P: bfd_hash_table_init of cref table failed: %E\n"
msgstr ""
#: ldcref.c:168
msgid "%X%P: cref_hash_lookup failed: %E\n"
msgstr ""
#: ldcref.c:239
msgid ""
"\n"
"Cross Reference Table\n"
"\n"
msgstr ""
#: ldcref.c:240
msgid "Symbol"
msgstr ""
#: ldcref.c:248
msgid "File\n"
msgstr ""
#: ldcref.c:252
msgid "No symbols\n"
msgstr ""
#: ldcref.c:369
msgid "%P: symbol `%T' missing from main hash table\n"
msgstr ""
#: ldcref.c:441
msgid "%B%F: could not read symbols; %E\n"
msgstr ""
#: ldcref.c:445 ldmain.c:1044 ldmain.c:1048
msgid "%B%F: could not read symbols: %E\n"
msgstr ""
#: ldcref.c:517 ldcref.c:524 ldmain.c:1094 ldmain.c:1101
msgid "%B%F: 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:542
msgid "%X%C: prohibited cross reference from %s to `%T' in %s\n"
msgstr ""
#: ldctor.c:77
msgid "%P%X: Different relocs used in set %s\n"
msgstr ""
#: ldctor.c:94
msgid "%P%X: Different object file formats composing set %s\n"
msgstr ""
#: ldctor.c:166 ldctor.c:179
msgid "%P%X: %s does not support reloc %s for set %s\n"
msgstr ""
#: ldctor.c:200
msgid "%P%X: Unsupported size %d for set %s\n"
msgstr ""
#: ldctor.c:221
msgid ""
"\n"
"Set Symbol\n"
"\n"
msgstr ""
#: ldemul.c:212
msgid "%S SYSLIB ignored\n"
msgstr ""
#: ldemul.c:220
msgid "%S HLL ignored\n"
msgstr ""
#: ldemul.c:241
msgid "%P: unrecognised emulation mode: %s\n"
msgstr ""
#: ldemul.c:242
msgid "Supported emulations: "
msgstr ""
#: ldemul.c:286
msgid " no emulation specific options.\n"
msgstr ""
#: ldexp.c:156
msgid "%F%P: %s uses undefined section %s\n"
msgstr ""
#: ldexp.c:158
msgid "%F%P: %s forward reference of section %s\n"
msgstr ""
#: ldexp.c:270
msgid "%F%S %% by zero\n"
msgstr ""
#: ldexp.c:277
msgid "%F%S / by zero\n"
msgstr ""
#: ldexp.c:400
msgid "%X%S: unresolvable symbol `%s' referenced in expression\n"
msgstr ""
#: ldexp.c:419
msgid "%F%S: undefined symbol `%s' referenced in expression\n"
msgstr ""
#: ldexp.c:600
msgid "%F%S can not PROVIDE assignment to location counter\n"
msgstr ""
#: ldexp.c:610
msgid "%F%S invalid assignment to location counter\n"
msgstr ""
#: ldexp.c:614
msgid "%F%S assignment to location counter invalid outside of SECTION\n"
msgstr ""
#: ldexp.c:624
msgid "%F%S cannot move location counter backwards (from %V to %V)\n"
msgstr ""
#: ldexp.c:652
msgid "%P%F:%s: hash creation failed\n"
msgstr ""
#: ldexp.c:949
msgid "%F%S nonconstant expression for %s\n"
msgstr ""
#: ldexp.c:982
msgid "%F%S non constant expression for %s\n"
msgstr ""
#: ldfile.c:109
#, c-format
msgid "attempt to open %s failed\n"
msgstr ""
#: ldfile.c:111
#, c-format
msgid "attempt to open %s succeeded\n"
msgstr ""
#: ldfile.c:119
msgid "%F%P: invalid BFD target `%s'\n"
msgstr ""
#: ldfile.c:222
msgid "%F%P: cannot open %s: %E\n"
msgstr ""
#: ldfile.c:239 ldfile.c:254
#, c-format
msgid "cannot find script file %s\n"
msgstr ""
#: ldfile.c:241 ldfile.c:256
#, c-format
msgid "opened script file %s\n"
msgstr ""
#: ldfile.c:299
msgid "%P%F: cannot open linker script file %s: %E\n"
msgstr ""
#: ldfile.c:340
msgid "%P%F: unknown architecture: %s\n"
msgstr ""
#: ldfile.c:357
msgid "%P%F: target architecture respecified\n"
msgstr ""
#: ldfile.c:410
msgid "%P%F: cannot represent machine `%s'\n"
msgstr ""
#: ldlang.c:589
msgid ""
"\n"
"Memory Configuration\n"
"\n"
msgstr ""
#: ldlang.c:591
msgid "Name"
msgstr ""
#: ldlang.c:591
msgid "Origin"
msgstr ""
#: ldlang.c:591
msgid "Length"
msgstr ""
#: ldlang.c:591
msgid "Attributes"
msgstr ""
#: ldlang.c:633
msgid ""
"\n"
"Linker script and memory map\n"
"\n"
msgstr ""
#: ldlang.c:650
msgid "%P%F: Illegal use of `%s' section"
msgstr ""
#: ldlang.c:660
msgid "%P%F: output format %s cannot represent section called %s\n"
msgstr ""
#: ldlang.c:781
msgid "%P: %B: warning: ignoring duplicate section `%s'\n"
msgstr ""
#: ldlang.c:795
msgid "%P: %B: warning: duplicate section `%s' has different size\n"
msgstr ""
#: ldlang.c:1222
msgid "%B: file not recognized: %E\n"
msgstr ""
#: ldlang.c:1223
msgid "%B: matching formats:"
msgstr ""
#: ldlang.c:1230
msgid "%F%B: file not recognized: %E\n"
msgstr ""
#: ldlang.c:1280
msgid "%F%B: object %B in archive is not object\n"
msgstr ""
#: ldlang.c:1286 ldlang.c:1298
msgid "%F%B: could not read symbols: %E\n"
msgstr ""
#: ldlang.c:1414
msgid "%P%F: target %s not found\n"
msgstr ""
#: ldlang.c:1416
msgid "%P%F: cannot open output file %s: %E\n"
msgstr ""
#: ldlang.c:1424
msgid "%P%F:%s: can not make object file: %E\n"
msgstr ""
#: ldlang.c:1428
msgid "%P%F:%s: can not set architecture: %E\n"
msgstr ""
#: ldlang.c:1432
msgid "%P%F: can not create link hash table: %E\n"
msgstr ""
#: ldlang.c:1619 ldlang.c:3912 ldlang.c:3946 ldmain.c:976
msgid "%P%F: bfd_link_hash_lookup failed: %E\n"
msgstr ""
#: ldlang.c:1742
msgid " load address 0x%V"
msgstr ""
#: ldlang.c:1871
msgid "%W (size before relaxing)\n"
msgstr ""
#: ldlang.c:1950
#, c-format
msgid "Address of section %s set to "
msgstr ""
#: ldlang.c:2087
#, c-format
msgid "Fail with %d\n"
msgstr ""
#: ldlang.c:2313
msgid "%P%X: Internal error on COFF shared library section %s\n"
msgstr ""
#: ldlang.c:2355
msgid "%P: warning: no memory region specified for section `%s'\n"
msgstr ""
#: ldlang.c:2366
msgid "%P: warning: changing start of section %s by %u bytes\n"
msgstr ""
#: ldlang.c:2380
msgid "%F%S: non constant address expression for section %s\n"
msgstr ""
#: ldlang.c:2424
msgid "%X%P: address 0x%v of %B section %s is not within region %s\n"
msgstr ""
#: ldlang.c:2432
msgid "%X%P: region %s is full (%B section %s)\n"
msgstr ""
#: ldlang.c:2534
msgid "%P%F: can't relax section: %E\n"
msgstr ""
#: ldlang.c:2695
msgid "%F%P: invalid data statement\n"
msgstr ""
#: ldlang.c:2724
msgid "%F%P: invalid reloc statement\n"
msgstr ""
#: ldlang.c:2858
msgid "%P%F:%s: can't set start address\n"
msgstr ""
#: ldlang.c:2871 ldlang.c:2888
msgid "%P%F: can't set start address\n"
msgstr ""
#: ldlang.c:2883
msgid "%P: warning: cannot find entry symbol %s; defaulting to %V\n"
msgstr ""
#: ldlang.c:2893
msgid "%P: warning: cannot find entry symbol %s; not setting start address\n"
msgstr ""
#: ldlang.c:2935
msgid ""
"%P: warning: %s architecture of input file `%B' is incompatible with %s "
"output\n"
msgstr ""
#: ldlang.c:2953
msgid "%E%X: failed to merge target specific data of file %B\n"
msgstr ""
#: ldlang.c:3038
msgid ""
"\n"
"Allocating common symbols\n"
msgstr ""
#: ldlang.c:3039
msgid ""
"Common symbol size file\n"
"\n"
msgstr ""
#. This message happens when using the
#. svr3.ifile linker script, so I have
#. disabled it.
#: ldlang.c:3128
msgid "%P: no [COMMON] command, defaulting to .bss\n"
msgstr ""
#: ldlang.c:3191
msgid "%P%F: invalid syntax in flags\n"
msgstr ""
#: ldlang.c:3869
msgid "%P%Fmultiple STARTUP files\n"
msgstr ""
#: ldlang.c:4131
msgid "%F%P: bfd_record_phdr failed: %E\n"
msgstr ""
#: ldlang.c:4150
msgid "%X%P: section `%s' assigned to non-existent phdr `%s'\n"
msgstr ""
#: ldlang.c:4419
msgid "%X%P: duplicate version tag `%s'\n"
msgstr ""
#: ldlang.c:4432 ldlang.c:4445
msgid "%X%P: duplicate expression `%s' in version information\n"
msgstr ""
#: ldlang.c:4482
msgid "%X%P: unable to find version dependency `%s'\n"
msgstr ""
#: ldlang.c:4504
msgid "%X%P: unable to read .exports section contents"
msgstr ""
#: ldmain.c:188
msgid "%X%P: can't set BFD default target to `%s': %E\n"
msgstr ""
#: ldmain.c:243
msgid "%P%F: --relax and -r may not be used together\n"
msgstr ""
#: ldmain.c:245
msgid "%P%F: -r and -shared may not be used together\n"
msgstr ""
#: ldmain.c:274
msgid "using internal linker script:\n"
msgstr ""
#: ldmain.c:293
msgid "%P%F: no input files\n"
msgstr ""
#: ldmain.c:298
msgid "%P: mode %s\n"
msgstr ""
#: ldmain.c:316
msgid "%P%F: cannot open map file %s: %E\n"
msgstr ""
#: ldmain.c:362
msgid "%P: link errors found, deleting executable `%s'\n"
msgstr ""
#: ldmain.c:373
msgid "%F%B: final close failed: %E\n"
msgstr ""
#: ldmain.c:397
msgid "%X%P: unable to open for source of copy `%s'\n"
msgstr ""
#: ldmain.c:399
msgid "%X%P: unable to open for destination of copy `%s'\n"
msgstr ""
#: ldmain.c:405
msgid "%P: Error writing file `%s'\n"
msgstr ""
#: ldmain.c:411
msgid "%P: Error closing file `%s'\n"
msgstr ""
#: ldmain.c:429
#, c-format
msgid "%s: total time in link: %ld.%06ld\n"
msgstr ""
#: ldmain.c:432
#, c-format
msgid "%s: data size %ld\n"
msgstr ""
#: ldmain.c:473
msgid "%P%F: missing argument to -m\n"
msgstr ""
#: ldmain.c:587 ldmain.c:608 ldmain.c:639
msgid "%P%F: bfd_hash_table_init failed: %E\n"
msgstr ""
#: ldmain.c:592 ldmain.c:611
msgid "%P%F: bfd_hash_lookup failed: %E\n"
msgstr ""
#: ldmain.c:626
msgid "%X%P: error: duplicate retain-symbols-file\n"
msgstr ""
#: ldmain.c:670
msgid "%P%F: bfd_hash_lookup for insertion failed: %E\n"
msgstr ""
#: ldmain.c:675
msgid "%P: `-retain-symbols-file' overrides `-s' and `-S'\n"
msgstr ""
#: ldmain.c:752
msgid "Archive member included"
msgstr ""
#: ldmain.c:753
msgid "because of file (symbol)"
msgstr ""
#: ldmain.c:825
msgid "%X%C: multiple definition of `%T'\n"
msgstr ""
#: ldmain.c:828
msgid "%D: first defined here\n"
msgstr ""
#: ldmain.c:857
msgid "%B: warning: definition of `%T' overriding common\n"
msgstr ""
#: ldmain.c:860
msgid "%B: warning: common is here\n"
msgstr ""
#: ldmain.c:867
msgid "%B: warning: common of `%T' overridden by definition\n"
msgstr ""
#: ldmain.c:870
msgid "%B: warning: defined here\n"
msgstr ""
#: ldmain.c:877
msgid "%B: warning: common of `%T' overridden by larger common\n"
msgstr ""
#: ldmain.c:880
msgid "%B: warning: larger common is here\n"
msgstr ""
#: ldmain.c:884
msgid "%B: warning: common of `%T' overriding smaller common\n"
msgstr ""
#: ldmain.c:887
msgid "%B: warning: smaller common is here\n"
msgstr ""
#: ldmain.c:891
msgid "%B: warning: multiple common of `%T'\n"
msgstr ""
#: ldmain.c:893
msgid "%B: warning: previous common is here\n"
msgstr ""
#: ldmain.c:915 ldmain.c:954
msgid "%P: warning: global constructor %s used\n"
msgstr ""
#: ldmain.c:964
msgid "%P%F: BFD backend error: BFD_RELOC_CTOR unsupported\n"
msgstr ""
#: ldmain.c:1150
msgid "%F%P: bfd_hash_table_init failed: %E\n"
msgstr ""
#: ldmain.c:1157
msgid "%F%P: bfd_hash_lookup failed: %E\n"
msgstr ""
#: ldmain.c:1176
msgid "%X%C: undefined reference to `%T'\n"
msgstr ""
#: ldmain.c:1179
msgid "%D: more undefined references to `%T' follow\n"
msgstr ""
#: ldmain.c:1185
msgid "%X%B: undefined reference to `%T'\n"
msgstr ""
#: ldmain.c:1188
msgid "%B: more undefined references to `%T' follow\n"
msgstr ""
#: ldmain.c:1209 ldmain.c:1231 ldmain.c:1251
msgid "%P%X: generated"
msgstr ""
#: ldmain.c:1212
msgid " relocation truncated to fit: %s %T"
msgstr ""
#: ldmain.c:1234
#, c-format
msgid "dangerous relocation: %s\n"
msgstr ""
#: ldmain.c:1254
msgid " reloc refers to symbol `%T' which is not being output\n"
msgstr ""
#: ldmisc.c:177
msgid "no symbol"
msgstr ""
#: ldmisc.c:239
#, c-format
msgid "built in linker script:%u"
msgstr ""
#: ldmisc.c:289 ldmisc.c:293
msgid "%B%F: could not read symbols\n"
msgstr ""
#. We use abfd->filename in this initial line,
#. in case filename is a .h file or something
#. similarly unhelpful.
#: ldmisc.c:329
msgid "%B: In function `%T':\n"
msgstr ""
#: ldmisc.c:461
msgid "%F%P: internal error %s %d\n"
msgstr ""
#: ldver.c:35
#, c-format
msgid "GNU ld version %s (with BFD %s)\n"
msgstr ""
#: ldver.c:42 lexsup.c:797
msgid " Supported emulations:\n"
msgstr ""
#: ldwrite.c:59 ldwrite.c:195
msgid "%P%F: bfd_new_link_order failed\n"
msgstr ""
#: ldwrite.c:365
#, c-format
msgid "%8x something else\n"
msgstr ""
#: ldwrite.c:526
msgid "%F%P: final link failed: %E\n"
msgstr ""
#: lexsup.c:146 lexsup.c:227 lexsup.c:233
msgid "KEYWORD"
msgstr ""
#: lexsup.c:146
msgid "Shared library control for HP/UX compatibility"
msgstr ""
#: lexsup.c:149
msgid "ARCH"
msgstr ""
#: lexsup.c:149
msgid "Set architecture"
msgstr ""
#: lexsup.c:151 lexsup.c:279
msgid "TARGET"
msgstr ""
#: lexsup.c:151
msgid "Specify target for following input files"
msgstr ""
#: lexsup.c:153 lexsup.c:194 lexsup.c:202 lexsup.c:211 lexsup.c:267
#: lexsup.c:288 lexsup.c:324
msgid "FILE"
msgstr ""
#: lexsup.c:153
msgid "Read MRI format linker script"
msgstr ""
#: lexsup.c:155
msgid "Force common symbols to be defined"
msgstr ""
#: lexsup.c:159 lexsup.c:312 lexsup.c:314 lexsup.c:316
msgid "ADDRESS"
msgstr ""
#: lexsup.c:159
msgid "Set start address"
msgstr ""
#: lexsup.c:161
msgid "Export all dynamic symbols"
msgstr ""
#: lexsup.c:163 lexsup.c:166
msgid "SHLIB"
msgstr ""
#: lexsup.c:163
msgid "Auxiliary filter for shared object symbol table"
msgstr ""
#: lexsup.c:166
msgid "Filter for shared object symbol table"
msgstr ""
#: lexsup.c:168 lexsup.c:196
msgid "Ignored"
msgstr ""
#: lexsup.c:170
msgid "Remove unused sections on certain targets"
msgstr ""
#: lexsup.c:173
msgid "(Don't) Remove unused sections on certain targets"
msgstr ""
#: lexsup.c:176
msgid "SIZE"
msgstr ""
#: lexsup.c:176
msgid "Small data size (if no size, same as --shared)"
msgstr ""
#: lexsup.c:179
msgid "FILENAME"
msgstr ""
#: lexsup.c:179
msgid "Set internal name of shared library"
msgstr ""
#: lexsup.c:181
msgid "LIBNAME"
msgstr ""
#: lexsup.c:181
msgid "Search for library LIBNAME"
msgstr ""
#: lexsup.c:183
msgid "DIRECTORY"
msgstr ""
#: lexsup.c:183
msgid "Add DIRECTORY to library search path"
msgstr ""
#: lexsup.c:185
msgid "EMULATION"
msgstr ""
#: lexsup.c:185
msgid "Set emulation"
msgstr ""
#: lexsup.c:187
msgid "Print map file on standard output"
msgstr ""
#: lexsup.c:189
msgid "Do not page align data"
msgstr ""
#: lexsup.c:191
msgid "Do not page align data, do not make text readonly"
msgstr ""
#: lexsup.c:194
msgid "Set output file name"
msgstr ""
#: lexsup.c:198
msgid "Generate relocateable output"
msgstr ""
#: lexsup.c:202
msgid "Just link symbols (if directory, same as --rpath)"
msgstr ""
#: lexsup.c:205
msgid "Strip all symbols"
msgstr ""
#: lexsup.c:207
msgid "Strip debugging symbols"
msgstr ""
#: lexsup.c:209
msgid "Trace file opens"
msgstr ""
#: lexsup.c:211
msgid "Read linker script"
msgstr ""
#: lexsup.c:213 lexsup.c:223 lexsup.c:308 lexsup.c:327 lexsup.c:344
msgid "SYMBOL"
msgstr ""
#: lexsup.c:213
msgid "Start with undefined reference to SYMBOL"
msgstr ""
#: lexsup.c:215
msgid "Print version information"
msgstr ""
#: lexsup.c:217
msgid "Print version and emulation information"
msgstr ""
#: lexsup.c:219
msgid "Discard all local symbols"
msgstr ""
#: lexsup.c:221
msgid "Discard temporary local symbols"
msgstr ""
#: lexsup.c:223
msgid "Trace mentions of SYMBOL"
msgstr ""
#: lexsup.c:225 lexsup.c:290 lexsup.c:292
msgid "PATH"
msgstr ""
#: lexsup.c:225
msgid "Default search path for Solaris compatibility"
msgstr ""
#: lexsup.c:227
msgid "Ignored for Solaris compatibility"
msgstr ""
#: lexsup.c:229
msgid "Start a group"
msgstr ""
#: lexsup.c:231
msgid "End a group"
msgstr ""
#: lexsup.c:233
msgid "Ignored for SunOS compatibility"
msgstr ""
#: lexsup.c:235
msgid "Link against shared libraries"
msgstr ""
#: lexsup.c:241
msgid "Do not link against shared libraries"
msgstr ""
#: lexsup.c:249
msgid "Bind global references locally"
msgstr ""
#: lexsup.c:251
msgid "Output cross reference table"
msgstr ""
#: lexsup.c:253
msgid "SYMBOL=EXPRESSION"
msgstr ""
#: lexsup.c:253
msgid "Define a symbol"
msgstr ""
#: lexsup.c:255
msgid "PROGRAM"
msgstr ""
#: lexsup.c:255
msgid "Set the dynamic linker to use"
msgstr ""
#: lexsup.c:257
msgid "Link big-endian objects"
msgstr ""
#: lexsup.c:259
msgid "Link little-endian objects"
msgstr ""
#: lexsup.c:261
msgid "Generate embedded relocs"
msgstr ""
#: lexsup.c:263
msgid "Force generation of file with .exe suffix"
msgstr ""
#: lexsup.c:265
msgid "Print option help"
msgstr ""
#: lexsup.c:267
msgid "Write a map file"
msgstr ""
#: lexsup.c:269
msgid "Use less memory and more disk I/O"
msgstr ""
#: lexsup.c:271
msgid "Don't warn about mismatched input files"
msgstr ""
#: lexsup.c:273
msgid "Turn off --whole-archive"
msgstr ""
#: lexsup.c:275
msgid "Create an output file even if errors occur"
msgstr ""
#: lexsup.c:279
msgid "Specify target of output file"
msgstr ""
#: lexsup.c:281
msgid "Ignored for Linux compatibility"
msgstr ""
#: lexsup.c:283
msgid "Ignored for SVR4 compatibility"
msgstr ""
#: lexsup.c:285
msgid "Relax branches on certain targets"
msgstr ""
#: lexsup.c:288
msgid "Keep only symbols listed in FILE"
msgstr ""
#: lexsup.c:290
msgid "Set runtime shared library search path"
msgstr ""
#: lexsup.c:292
msgid "Set link time shared library search path"
msgstr ""
#: lexsup.c:294
msgid "Create a shared library"
msgstr ""
#: lexsup.c:298
msgid "Sort common symbols by size"
msgstr ""
#: lexsup.c:302
msgid "Split output sections for each file"
msgstr ""
#: lexsup.c:304
msgid "COUNT"
msgstr ""
#: lexsup.c:304
msgid "Split output sections every COUNT relocs"
msgstr ""
#: lexsup.c:306
msgid "Print memory usage statistics"
msgstr ""
#: lexsup.c:308
msgid "Do task level linking"
msgstr ""
#: lexsup.c:310
msgid "Use same format as native linker"
msgstr ""
#: lexsup.c:312
msgid "Set address of .bss section"
msgstr ""
#: lexsup.c:314
msgid "Set address of .data section"
msgstr ""
#: lexsup.c:316
msgid "Set address of .text section"
msgstr ""
#: lexsup.c:318
msgid "Build global constructor/destructor tables"
msgstr ""
#: lexsup.c:320
msgid "Output lots of information during link"
msgstr ""
#: lexsup.c:324
msgid "Read version information script"
msgstr ""
#: lexsup.c:327
msgid "Take export symbols list from .exports, using SYMBOL as the version."
msgstr ""
#: lexsup.c:330
msgid "Warn about duplicate common symbols"
msgstr ""
#: lexsup.c:332
msgid "Warn if global constructors/destructors are seen"
msgstr ""
#: lexsup.c:335
msgid "Warn if the multiple GP values are used"
msgstr ""
#: lexsup.c:337
msgid "Warn only once per undefined symbol"
msgstr ""
#: lexsup.c:339
msgid "Warn if start of section changes due to alignment"
msgstr ""
#: lexsup.c:342
msgid "Include all objects from following archives"
msgstr ""
#: lexsup.c:344
msgid "Use wrapper functions for SYMBOL"
msgstr ""
#: lexsup.c:484
msgid "%P%F: unrecognized -a option `%s'\n"
msgstr ""
#: lexsup.c:497
msgid "%P%F: unrecognized -assert option `%s'\n"
msgstr ""
#: lexsup.c:585
msgid "%P%F: invalid number `%s'\n"
msgstr ""
#: lexsup.c:726
msgid "%P%F: -shared not supported\n"
msgstr ""
#: lexsup.c:790
msgid "Copyright 1997 Free Software Foundation, Inc.\n"
msgstr ""
#: lexsup.c:791
msgid ""
"This program is free software; you may redistribute it under the terms of\n"
"the GNU General Public License. This program has absolutely no warranty.\n"
msgstr ""
#: lexsup.c:875
#, c-format
msgid "%s: may not nest groups (--help for usage)\n"
msgstr ""
#: lexsup.c:886
#, c-format
msgid "%s: group ended before it began (--help for usage)\n"
msgstr ""
#: lexsup.c:934
msgid "%P%F: invalid hex number `%s'\n"
msgstr ""
#: lexsup.c:946
#, c-format
msgid "Usage: %s [options] file...\n"
msgstr ""
#: lexsup.c:948
msgid "Options:\n"
msgstr ""
#: lexsup.c:1025
#, c-format
msgid "%s: supported targets:"
msgstr ""
#: lexsup.c:1033
#, c-format
msgid "%s: supported emulations: "
msgstr ""
#: lexsup.c:1038
#, c-format
msgid "%s: emulation specific options:\n"
msgstr ""
#: lexsup.c:1042
msgid ""
"\n"
"Report bugs to bug-gnu-utils@gnu.org\n"
msgstr ""
#: mri.c:342
msgid "%P%F: unknown format type %s\n"
msgstr ""
|