tzh
2024-08-22 c7d0944258c7d0943aa7b2211498fd612971ce27
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
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
Þ•Ô¼\=ÈQÉQÞQ÷Q"R+9ReR{R&R´R ÏRÛR úRS 3STS'lS”S=­SëSóST("T(KT;tT6°TEçT-U
CUNU:jU1¥U,×U.V3VFV#[V#V%£V+ÉVõVW)WDW"^W%W"§W2ÊW0ýW,.X([X+„X%°X,ÖX+Y/Y7@Y2xY3«YßYEñYT7ZŒZC¨Z3ìZ8 [;Y[:•[8Ð[    \\Y1\b‹\î\*    ]4];]<S]3]3Ä]:ø]/3^Dc^2¨^4Û^,_4=_<r_5¯_7å_5`3S`‡`+Ÿ`8Ë`9a8>a8wa+°a0Üa0 b2>b'qb8™b"Òb0õb7&cH^cJ§c9òc7,dLdd7±d2édNe:ke?¦e>æe=%f>cf6¢f<Ùf7g8Ng<‡g<ÄgIhNKh=šhHØh)!i=Ki>‰iÈiÛiîij@j8]j–j¬jÂjÖjñj$k*kBk^kskyk#k'£k÷ËkTÃl_?x†$¸‹gݑ±E’(÷’
 “+“G“%b“.ˆ“(·“
à“ë“”"”(1”Z”%v”œ” ³”
¿”ʔ-Ҕ••.•"E•+h•#”• ¸•"ٕ"ü•(– H–"T– w–B˜–:ۖ!— 8—)F—(p—(™—H—Q ˜+]˜ ‰˜,ª˜!טù˜"™5™H™f™†™‹™"«™4Ι(š,šCš3cš—š¨š»šϚíš›+›1J›1|›1®›3à›5œ@Jœ\‹œJèœ(3#\*€+«+םž(#ž/Lž(|ž&¥ž.̞CûžQ?ŸY‘Ÿ3ëŸ- ,M 1z @¬ >í .,¡)[¡6…¡Q¼¡¢1+¢]¢-|¢4ª¢5ߢI£-_£2£À£Ò£8æ£%¤E¤U¤$d¤‰¤    ‘¤›¤7°¤5è¤7¥?V¥,–¥Ã¥0Ù¥+
¦36¦<j¦,§¦;Ô¦4§/E§Qu§5ǧ*ý§/(¨X¨7_¨B—¨KÚ¨9&©B`©ñ£©@•®)Ö®¯¾¯ÚÒ°­²n®µ½‚Ÿ¾|"¿tŸ¿dÀ"yÜĸÄ'ÏÄ÷Ä Å!Å7ÅLÅ,aÅ
ŽÅ#™Å½ÅÒÅ×ÅÛÅàÅ    ÷ÅÆÆ5Æ8OÆ1ˆÆºÆ ØÆ!ùÆ Ç'ÇGÇ(]Ç3†Ç7ºÇ òÇÈÈ&.È&UÈ|È›È,³ÈàÈ8øÈ&1ÉXÉlÉ"‰É ¬É*ÍÉ(øÉ!Ê@ÊQÊ,mÊšÊ´ÊÆÊãÊøÊ$Ë'9ËaËyˈˡË)¼ËæË Ì!ÌH2Ì{Ì˜Ì¯ÌÆÌ ÙÌ=çÌ2%Í
XÍ*cÍ#ŽÍ²ÍÑÍîÍóÍÎ$Î8ÎNΠiΠŠÎ    «ÎµÎ ÅÎÓÎîÎ ÏÏ=ÏVÏ"hϋϣϷÏÐÏ ëÏ ùÏÐ Ð$ÐAÐ _ÐmÐМÐ"¸Ð"ÛÐ þÐ Ñ%'Ñ&MÑ$tљѲÑÏÑçÑÒÒ&.ÒUÒqҍҦҾÒÒÒ<ðÒ2-Ó`ÓsӍӦÓ%ÄÓ(êÓ%Ô69Ô.pÔ1ŸÔ$ÑÔöÔÕ!Õ8ÕTÕjÕ€Õ–Õ>¬ÕëÕÖ$ÖCÖ!bք֝ÖB¹Ö:üÖ7× G×T×k× }×*Š×µ×Ê×Òá×#´Ø$ØØ#ýØ-!Ù-OÙ+}٩ٸٿÙÖÙñÙ ÚÚ Ú :Ú&[Ú$‚Ú&§ÚNÎÚ>Û\Û!lÛ-ŽÛ(¼ÛåÛûÛÜ-ÜKÜÈiÜ2Ý!GÝiÝ}Ý“ÝA¨Ý4êÝÞ:Þ4YÞŽÞ  Þ¬ÞÃÞ$ÞÞ&ß"*ß$Mß rß “ß$´ßÙßößà4à)Iàsà`àPñàBá    Sá]áwá&á¶á&Ïá*öá!â7â+Mâ'yâ¡â<¦â6ãâã3ãCãUã4pã4¥ã=ÚãEä^äxäM—ä åäóä+å,.å[åkåŠå¥å,Äå?ñå1æDæZæræ‰æ¡æºæ>Ñæ4ç#Eçiç|çç5¨ç#Þç
è è'"èJè%Yèè˜è«è?Êè
é$é8?é7xé:°é;ëé>'êwfê”Þêsë †ë’ë!¡ë"Ãëæë,úë;'ì2cì(–ì(¿ì5èìí;í+Zí#†íªí3Êíþíî<î.[îŠî›î)¹îãîþîï,ïCï_ï{ï›ï#»ï$ßïð&ð Bð!cðg…ð íð ñ+/ñ1[ññ)¬ñÖñ'óñ ò'ò(6ò6_ò;–òÒò:òò+-óYó%jó5ó*Æó+ñóJô.hô—ô4©ô+Þô
õ    õ- õNõfõNyõÈõÙõ÷õ
öö3ö Cö+döö¯ö"Îöñö( ÷ 6÷6W÷Ž÷¬÷'Ã÷ë÷ø"!øDøYøuø(•ø¾ø/Óøùù2ùFù2Où ‚ù£ùÂù0Þù2ú5Bú xú„ú-‹ú¹ú
Èú Óúáúôú/û1>û!pû'’û'ºû/âû2ü7Eü}ü+”ü Àüáü1úü#,ý"Pý+sý&Ÿý#Æý)êý.þCþ#Zþ~þ*žþÉþØþìþÿþ ÿ$ÿ5ÿ    OÿYÿnÿ~ÿ“ÿ£ÿ½ÿ×ÿ/òÿ&"&I p!‘³ÆÌÛã÷     %
9D Vc })Š´ÉÜ(ó4Q-m› µÖò&<DYk …’ ™ ¥ ³ÁÊÚêý)8Wm|*$º ßëS%r ˜¦¾Ö í ú+27=\mu-’#À äñ$: A M[n „!-² àí ý
2I_u‹®ÀÏEÔ    5    D    #T    x    !•    !·     Ù    æ    
 
1
D
c
‚
–
©
 ±
@¾
Eÿ
#E )i #“ ·  Õ ö    : S 'r )š .Ä &ó  : X j  )Ÿ &É ð .
(9.b‘"¬Ïàð     '0Xm‹¤'´*Ü&.?_v”²%Ïõ!2Ts'‡¯ÁÓ$ï!0R h t  Žšª4Å ú1F[o€”˜'¡&É,ð '>9f4 2Õ= F€SÔï#*2)]‡š$±Ö ìú-=Vl‹L§ôü(%:%`C†@Ê8 D ](k=”6Ò#    4-bt&†+­.Ù.7I*[†›¸Ø/õ&%#L&p#—»&Ù !323f2šÍPÞY/‰P¨7ù;1 9m 8§ 5à  !$!b?!k¢! "//"_"f">~"6½"<ô":1#6l#L£#3ð#6$$0[$<Œ$:É$:%>?%8~%4·%ì%+&8/&5h&2ž&2Ñ&0'65'3l'6 '*×';(->(6l(<£(Eà(O&)Ev)B¼)Wÿ)BW*0š*BË*9+AH+NŠ+9Ù+B,6V,E,0Ó,8->=-9|-D¶-Tû-GP.N˜.3ç.9/BU/˜/¬/¿/Û/Oô/GD0Œ0¦0¾0Ö0ó0)    131N1n1‚1ˆ1#Ž1"²1áÕ1¢·2,ZF‰‡KP]/V®V*<W gWuW’W ®W,ÏW*üW'X6X    OX$YX*~X%©X"ÏXòX Y Y(Y 1YRYnYY'œY-ÄY%òY%Z'>Z'fZ,ŽZ»Z(ÎZ÷ZS[Kj[(¶[ß["ï[#\(6\U_\^µ\5]5J]1€](²]#Û]'ÿ]'^!:^!\^~^„^¤^<Á^$þ^#_3_1S_…__³_"É_ì_ `6)`.``0`.À`2ï`:"aM]au«ac!b*…b*°b,Ûb-c-6cdc(ƒc5¬c(âc* d06dMgdfµdie6†e'½e!åe4fE<fB‚f-Åf'óf4gBPg$“g-¸gæg-h60h6ghEžh*äh-i=iXiEri)¸iâiöi%    j
/j :jGj)Xj*‚j3­j>áj- kNk7dk,œk1Ék.ûk**l?Ul)•l,¿lMìl2:m-mm2›mÎm?ÔmKnT`nGµnPýn£No8òs"+tNtÀ]tÑvãðwÔz[ñuMƒpÃ`4„0•„ýƇĈ߈/úˆ*‰ E‰Q‰c‰x‰;‰‰ ʼnщí‰ŠŠ ŠŠ
,Š7ŠWŠnŠ<ŠŠ-NJõŠ$‹$7‹\‹k‹Š‹%Ÿ‹/ŋ1õ‹'Œ!6ŒXŒ&rŒ"™Œ!¼Œތ(úŒ#-@'n–´!͍ï- Ž$9Ž^Ž~Ž"Ž.³ŽâŽýŽ&9R!q“±ɏۏó/J'[Gƒː鐑‘1‘>@‘4‘ ´‘%‘è‘’(’E’N’m’’ž’#¹’ݒû’ “%“4“#C“&g“Ž“Ÿ“³“Ǔá“””-”D” ]” k”y” ˆ”–”!µ”הç”÷”•,0•,]•Š•›•#¶•#ڕþ•–5–L–a–x–$Œ–±–$іö–—/—L—c—.‚—:±— ì—ù—˜(˜@˜"`˜ƒ˜4£˜+ؘ5™(:™c™ {™œ™º™ڙó™ š(š>Dšƒšœš¸šӚ%îš›*›/B›:r›­›¾›͛ä›
ó›0þ›/œAœ
Rœ"]€"·"ڝ(ý&ž    9žCž\žzž    Šž ”ž¡ž¸ž'֞'þž'&ŸYNŸJ¨ŸóŸ$  30 )d Ž ¨ ½ Ù ô Ù¡é¡,¢/¢F¢c¢@z¢4»¢ð¢£0"£S£
k£v££¨£Ä£â£!¤$¤B¤!`¤‚¤œ¤¸¤Õ¤&餥j)¥Z”¥ï¥ ¦¦'¦0<¦m¦$¦+²¦Þ¦ñ¦%§+6§b§6f§:§ا󧨨61¨4h¨8¨8Ö¨©-©EF©Œ©œ©5­©*㩪ª:ªRª/mª4ªÒªêªúª«$«:«Q«@j«6««(â« ¬!¬A¬5]¬“¬
°¬»¬"Ò¬õ¬'­0­I­!\­(~­§­»­9Э;
®>F®;…®>Á®r¯‹s¯ÿ¯°%°#7°#[°°'“°%»°%á°"±.*±0Y±б¨±#Ʊ'ê±²%,² R²s²²$¯²Ô²å²2³5³T³k³„³ œ³ ½³$Þ³!´%%´+K´w´#“´·´"Ö´bù´\µ{µ3šµ3ε"¶1%¶W¶%w¶¶°¶)ȶ9ò¶4,·a·8·.º·é· û·0¸&M¸0t¸B¥¸/踹B)¹8l¹    ¥¹¯¹*¶¹á¹ú¹HºXº)oº™º¯º¿ºÞº ôº+»A»a»»$»$»!ç»9    ¼C¼c¼*}¼¨¼%ż%ë¼½+½+D½0p½¡½5¶½ì½¾¾6¾-=¾"k¾޾ª¾;Ǿ+¿./¿^¿n¿)u¿ Ÿ¿ ¬¿¹¿Ê¿Ý¿3÷¿*+À$VÀ"{À'žÀ-ÆÀ0ôÀ6%Á\Á.sÁ$¢ÁÇÁ8àÁÂ&8Â+_Â*‹Â&¶Â$ÝÂ5Ã8Ã)OÃ#yÃ(ÃÆÃÖÃìÃÄÄ.ÄDÄ`ÄgÄ zÄ‡Ä —ĤĽÄÙÄ"õÄ#Å#<Å`ÅxŐţŪŠ¼ÅÉÅâÅûÅ ÆÆ .Æ;ÆNÆ^Æ xÆ)…ƯÆÅÆÞÆ÷Æ1ÇHÇ%dNJǤÇÂÇÛÇëÇþÇÈ-È=ÈPÈcÈ ~È    ‹È •È¢ÈµÈ ËÈØÈ ëÈøÈÉ"É 8ÉEÉ_ÉxÉ‹É$¡É%ÆÉìÉüÉ&ÊO@Ê'Ê¸ÊËÊáÊúÊ Ë
Ë)%ËOËSË!ZË |ˉË!Ë+²Ë)ÞË ÌÌ (Ì5Ì    NÌ    XÌ bÌoÌ‚Ì
•Ì& Ì-ÇÌ õÌ ÍÍÍ6ÍPÍk͆͝ͰÍÃÍÖÍ éÍöÍBýÍ@Î`ÎsÎ7†Î.¾Î4íÎ!"Ï    DÏNÏmÏ}ϓϦÏ%ÅÏëÏ Ð ÐÐ''Ð0OЀÐ$ŸÐ(ÄÐíÐ+    Ñ5ÑMÑeÑјѵÑ%ÎÑ$ôÑÒ9ÒXÒw҇ҝÒ$¸Ò$ÝÒÓ)Ó#BÓ'fÓŽÓ§ÓÃÓØÓìÓÔÔ'3Ô[Ô'qÔ™Ô·Ô*ÇÔ*òÔÕ<Õ'TÕ|Õ–Õ ±Õ ÒÕ&óÕ Ö ;Ö!\Ö#~Ö¢Ö2ºÖíÖýÖ ×$+×P× l××¦× ¶× Ã× Ð×Ý×ð×)Ø -Ø:ØQØhØ{؋؞رØÇØ ËØ%ר$ýØ,"ÙOÙ%kÙA‘Ù'ÓÙ1ûÙ<-ÚjÚ( ¬Zâ*G•¤"Ñx²½vÅM¸¶X'¨mݨ]ÿ@Èéð§6W<¹=¼![T¶)ædÖwhk^¿šˆKpU·7a äY6E!„­MÞ´}Â;Uð)gþDžã<lCç{³÷〜i‘¹:Ö4\™`è¥“Ü(ž„~V(¯n]ÈZ¦˜ØëVM9ç.ö› òßÚ-UŽöOBe7Ý»Ë Ðù^ƒB Lœ=“P‹J–—΢øAÙÃ'Rfýv37~§d÷À "EÀF"%ŒÚjNµñÄ´¿¡¢tÜ¡ ©5½ä&r˜Ö†u
H’7!La½Á‹)wm¬gr៱L|/ÇÉõì°lÑ    ÒÔ œs×K,º2úˆHl£Õ{ye3´(ôµ!•¸±RØéõŒ    û d/2…Ž*
vÐIÍqþY¹mî¨Óg-¾]<ÆŠ‹³D|0Öqó‰ÊkZí­¾ƒuðc#aûIÙ¥e€£®’œÇ“Ñ‚óïÏøQðrϪ\C{{Á«¿1­æ@³ýáä¼ô‡¬>ÄʺtwSædu—cPïɔ̝`ªc=¯S`™?‚ŠÊgN™\½}‡Q:¥™ë%,Ìfǰ¼–&šbW9    Ni©.¢‰Šf=ÛÀÃè]ß?Ó£ÂÜOÕ¶z¶–Qw«èÎ<S^ö
PF}9Ô—>4®|ÄH‘U6”žªÍO_ý51êåKÒìîÞÌ‘©•Ø\ùõ¿˜Ñà¸HEGúuÊ…÷z$ϛ_±¡Ò±á¹v&4¤¤Å†j¦FW[&-*L9çÁfò:j®Æ¬ùí0
Nnîà|“¢Xn%I§E$Î G"}¤ÅƵÿâ2ÿ”Ÿµ«JˆÓ8Y¨ÎxM1zxêCO?,…h4Ûíq› ‚©»0ûš•Õ¾ 8a˜+ Ä;Tkƒq­·þêZylÁ`ü/ñŸPt¸Ù3ÛCó>    0³ͧ¾^‡ªsâJË×’;‰Ëhs[yÒT$rúŒ_ŸÆxoÈSÌTл㺣R«·åšiÓŽüÏb.VX1Bp2s‰ tÉ>ލ¯ïA»‡BÈA+„¯åeY@6›5z—D#,×bé¡+·¼%G)+by;€VžDÝ?°²iˆoЮ€ŠcÂò#5 ñÇÔŽ'@ì¦8pQü’‚JƒI…W kR~ øÍ²8#º ßh[ԑŒ :3Éॲ'mÅ/$„ÚA´nKX-”†Ë†¦o‹jëF*o~ pÀô._
 
Symbols from %s:
 
 
 
Symbols from %s[%s]:
 
 
 
Undefined symbols from %s:
 
 
 
Undefined symbols from %s[%s]:
 
 
      [Requesting program interpreter: %s]
    Address  Length
 
    Offset    Name
 
  Start of program headers:          
 Line Number Statements:
 
 Opcodes:
 
 Section to Segment mapping:
 
 The Directory Table is empty.
 
 The Directory Table:
 
 The File Name Table is empty.
 
 The File Name Table:
 
 The following switches are optional:
 
%s:     file format %s
 
'%s' relocation section at offset 0x%lx contains %ld bytes:
 
<%s>
 
 
Archive index:
 
Assembly dump of section %s
 
Could not find unwind info section for 
Dump of debug contents of section %s:
 
 
Dynamic info segment at offset 0x%lx contains %d entries:
 
Dynamic section at offset 0x%lx contains %u entries:
 
Dynamic symbol information is not available for displaying symbols.
 
Elf file type is %s
 
File: %s
 
Hex dump of section '%s':
 
Histogram for bucket list length (total of %lu buckets):
 
Library list section '%s' contains %lu entries:
 
No version information found in this file.
 
Notes at offset 0x%08lx with length 0x%08lx:
 
Program Headers:
 
Relocation section 
Section '%s' contains %d entries:
 
Section '%s' has no data to dump.
 
Section '%s' has no debugging data.
 
Section '.conflict' contains %lu entries:
 
Section Header:
 
Section Headers:
 
Symbol table '%s' contains %lu entries:
 
Symbol table for image:
 
The .debug_loc section is empty.
 
The .debug_ranges section is empty.
 
The .debug_str section is empty.
 
There are %d program headers, starting at offset 
There are no dynamic relocations in this file.
 
There are no program headers in this file.
 
There are no relocations in this file.
 
There are no section groups in this file.
 
There are no sections in this file.
 
There are no unwind sections in this file.
 
There is no dynamic section in this file.
 
Unwind section 
Version definition section '%s' contains %ld entries:
 
Version needs section '%s' contains %ld entries:
 
Version symbols section '%s' contains %d entries:
 
start address 0x                 FileSiz            MemSiz              Flags  Align
        possible <machine>: arm[_interwork], i386, mcore[-elf]{-le|-be}, ppc, thumb
       %s -M [<mri-script]
       Size              EntSize          Flags  Link  Info  Align
      --exclude-symbols <list> Don't export <list>
      --export-all-symbols   Export all symbols to .def
      --no-default-excludes  Clear default exclude symbols
      --no-export-all-symbols  Only export listed symbols
     --yydebug                 Turn on parser debugging
    %-18s %s
    %8.8lx <End of list>
    Offset             Info             Type               Symbol's Value  Symbol's Name
    Offset             Info             Type               Symbol's Value  Symbol's Name + Addend
    Offset   Begin    End
    Offset   Begin    End      Expression
   %d       %ld      %s    [%s]
   --add-indirect         Add dll indirects to export file.
   --add-stdcall-alias    Add aliases without @<n>
   --as <name>            Use <name> for assembler
   --base-file <basefile> Read linker generated base file
   --def <deffile>        Name input .def file
   --dllname <name>       Name of input dll to put into output lib.
   --dlltool-name <dlltool> Defaults to "dlltool"
   --driver-flags <flags> Override default ld flags
   --driver-name <driver> Defaults to "gcc"
   --dry-run              Show what needs to be run
   --entry <entry>        Specify alternate DLL entry point
   --exclude-symbols <list> Exclude <list> from .def
   --export-all-symbols     Export all symbols to .def
   --image-base <base>    Specify image base address
   --implib <outname>     Synonym for --output-lib
   --machine <machine>
   --mno-cygwin           Create Mingw DLL
   --no-default-excludes    Zap default exclude symbols
   --no-export-all-symbols  Only export .drectve symbols
   --no-idata4           Don't generate idata$4 section
   --no-idata5           Don't generate idata$5 section
   --nodelete             Keep temp files.
   --output-def <deffile> Name output .def file
   --output-exp <outname> Generate export file.
   --output-lib <outname> Generate input library.
   --quiet, -q            Work quietly
   --target <machine>     i386-cygwin32 or i386-mingw32
   --verbose, -v          Verbose
   --version              Print dllwrap version
   -A --add-stdcall-alias    Add aliases without @<n>.
   -C --compat-implib        Create backward compatible import library.
   -D --dllname <name>       Name of input dll to put into interface lib.
   -F --linker-flags <flags> Pass <flags> to the linker.
   -L --linker <name>        Use <name> as the linker.
   -M --mcore-elf <outname>  Process mcore-elf object files into <outname>.
   -S --as <name>            Use <name> for assembler.
   -U                     Add underscores to .lib
   -U --add-underscore       Add underscores to symbols in interface library.
   -V --version              Display the program version.
   -a --add-indirect         Add dll indirects to export file.
   -b --base-file <basefile> Read linker generated base file.
   -c --no-idata5            Don't generate idata$5 section.
   -d --input-def <deffile>  Name of .def file to be read in.
   -e --output-exp <outname> Generate an export file.
   -f --as-flags <flags>     Pass <flags> to the assembler.
   -h --help                 Display this information.
   -k                     Kill @<n> from exported names
   -k --kill-at              Kill @<n> from exported names.
   -l --output-lib <outname> Generate an interface library.
   -m --machine <machine>    Create as DLL for <machine>.  [default: %s]
   -n --no-delete            Keep temp files (repeat for extra preservation).
   -p --ext-prefix-alias <prefix> Add aliases with <prefix>.
   -t --temp-prefix <prefix> Use <prefix> to construct temp file names.
   -v --verbose              Be verbose.
   -x --no-idata4            Don't generate idata$4 section.
   -z --output-def <deffile> Name of .def file to be created.
   0 (*local*)       1 (*global*)      Abbrev Offset: %ld
   Length:        %ld
   Num:    Value          Size Type    Bind   Vis      Ndx Name
   Num:    Value  Size Type    Bind   Vis      Ndx Name
   Pointer Size:  %d
   Version:       %d
   [Index]    Name
  %#06x:   Name index: %lx  %#06x:   Name: %s  %#06x: Parent %d, name index: %ld
  %#06x: Parent %d: %s
  %#06x: Rev: %d  Flags: %s  %#06x: Version: %d  %d      %s
  (Pointer size:               %u)
  (Unknown inline attribute value: %lx)  -I --histogram         Display histogram of bucket list lengths
  -W --wide              Allow output width to exceed 80 characters
  -H --help              Display this information
  -v --version           Display the version number of readelf
  -I --input-target <bfdname>      Assume input file is in format <bfdname>
  -O --output-target <bfdname>     Create an output file in format <bfdname>
  -B --binary-architecture <arch>  Set arch of output file, when input is binary
  -F --target <bfdname>            Set both input and output format to <bfdname>
     --debugging                   Convert debugging information, if possible
  -p --preserve-dates              Copy modified/access timestamps to the output
  -j --only-section <name>         Only copy section <name> into the output
     --add-gnu-debuglink=<file>    Add section .gnu_debuglink linking to <file>
  -R --remove-section <name>       Remove section <name> from the output
  -S --strip-all                   Remove all symbol and relocation information
  -g --strip-debug                 Remove all debugging symbols & sections
     --strip-unneeded              Remove all symbols not needed by relocations
  -N --strip-symbol <name>         Do not copy symbol <name>
     --strip-unneeded-symbol <name>
                                   Do not copy symbol <name> unless needed by
                                     relocations
     --only-keep-debug             Strip everything but the debug information
  -K --keep-symbol <name>          Only copy symbol <name>
  -L --localize-symbol <name>      Force symbol <name> to be marked as a local
  -G --keep-global-symbol <name>   Localize all symbols except <name>
  -W --weaken-symbol <name>        Force symbol <name> to be marked as a weak
     --weaken                      Force all global symbols to be marked as weak
  -w --wildcard                    Permit wildcard in symbol comparison
  -x --discard-all                 Remove all non-global symbols
  -X --discard-locals              Remove any compiler-generated symbols
  -i --interleave <number>         Only copy one out of every <number> bytes
  -b --byte <num>                  Select byte <num> in every interleaved block
     --gap-fill <val>              Fill gaps between sections with <val>
     --pad-to <addr>               Pad the last section up to address <addr>
     --set-start <addr>            Set the start address to <addr>
    {--change-start|--adjust-start} <incr>
                                   Add <incr> to the start address
    {--change-addresses|--adjust-vma} <incr>
                                   Add <incr> to LMA, VMA and start addresses
    {--change-section-address|--adjust-section-vma} <name>{=|+|-}<val>
                                   Change LMA and VMA of section <name> by <val>
     --change-section-lma <name>{=|+|-}<val>
                                   Change the LMA of section <name> by <val>
     --change-section-vma <name>{=|+|-}<val>
                                   Change the VMA of section <name> by <val>
    {--[no-]change-warnings|--[no-]adjust-warnings}
                                   Warn if a named section does not exist
     --set-section-flags <name>=<flags>
                                   Set section <name>'s properties to <flags>
     --add-section <name>=<file>   Add section <name> found in <file> to output
     --rename-section <old>=<new>[,<flags>] Rename section <old> to <new>
     --change-leading-char         Force output format's leading character style
     --remove-leading-char         Remove leading character from global symbols
     --redefine-sym <old>=<new>    Redefine symbol name <old> to <new>
     --redefine-syms <file>        --redefine-sym for all symbol pairs 
                                     listed in <file>
     --srec-len <number>           Restrict the length of generated Srecords
     --srec-forceS3                Restrict the type of generated Srecords to S3
     --strip-symbols <file>        -N for all symbols listed in <file>
     --strip-unneeded-symbols <file>
                                   --strip-unneeded-symbol for all symbols listed
                                     in <file>
     --keep-symbols <file>         -K for all symbols listed in <file>
     --localize-symbols <file>     -L for all symbols listed in <file>
     --keep-global-symbols <file>  -G for all symbols listed in <file>
     --weaken-symbols <file>       -W for all symbols listed in <file>
     --alt-machine-code <index>    Use alternate machine code for output
     --writable-text               Mark the output text as writable
     --readonly-text               Make the output text write protected
     --pure                        Mark the output file as demand paged
     --impure                      Mark the output file as impure
     --prefix-symbols <prefix>     Add <prefix> to start of every symbol name
     --prefix-sections <prefix>    Add <prefix> to start of every section name
     --prefix-alloc-sections <prefix>
                                   Add <prefix> to start of every allocatable
                                     section name
  -v --verbose                     List all object files modified
  -V --version                     Display this program's version number
  -h --help                        Display this output
     --info                        List object formats & architectures supported
  -I --input-target=<bfdname>      Assume input file is in format <bfdname>
  -O --output-target=<bfdname>     Create an output file in format <bfdname>
  -F --target=<bfdname>            Set both input and output format to <bfdname>
  -p --preserve-dates              Copy modified/access timestamps to the output
  -R --remove-section=<name>       Remove section <name> from the output
  -s --strip-all                   Remove all symbol and relocation information
  -g -S -d --strip-debug           Remove all debugging symbols & sections
     --strip-unneeded              Remove all symbols not needed by relocations
     --only-keep-debug             Strip everything but the debug information
  -N --strip-symbol=<name>         Do not copy symbol <name>
  -K --keep-symbol=<name>          Only copy symbol <name>
  -w --wildcard                    Permit wildcard in symbol comparison
  -x --discard-all                 Remove all non-global symbols
  -X --discard-locals              Remove any compiler-generated symbols
  -v --verbose                     List all object files modified
  -V --version                     Display this program's version number
  -h --help                        Display this output
     --info                        List object formats & architectures supported
  -o <file>                        Place stripped output into <file>
  -a, --archive-headers    Display archive header information
  -f, --file-headers       Display the contents of the overall file header
  -p, --private-headers    Display object format specific file header contents
  -h, --[section-]headers  Display the contents of the section headers
  -x, --all-headers        Display the contents of all headers
  -d, --disassemble        Display assembler contents of executable sections
  -D, --disassemble-all    Display assembler contents of all sections
  -S, --source             Intermix source code with disassembly
  -s, --full-contents      Display the full contents of all sections requested
  -g, --debugging          Display debug information in object file
  -e, --debugging-tags     Display debug information using ctags style
  -G, --stabs              Display (in raw form) any STABS info in the file
  -t, --syms               Display the contents of the symbol table(s)
  -T, --dynamic-syms       Display the contents of the dynamic symbol table
  -r, --reloc              Display the relocation entries in the file
  -R, --dynamic-reloc      Display the dynamic relocation entries in the file
  -v, --version            Display this program's version number
  -i, --info               List object formats and architectures supported
  -H, --help               Display this information
  -b, --target=BFDNAME           Specify the target object format as BFDNAME
  -m, --architecture=MACHINE     Specify the target architecture as MACHINE
  -j, --section=NAME             Only display information for section NAME
  -M, --disassembler-options=OPT Pass text OPT on to the disassembler
  -EB --endian=big               Assume big endian format when disassembling
  -EL --endian=little            Assume little endian format when disassembling
      --file-start-context       Include context from start of file (with -S)
  -I, --include=DIR              Add DIR to search list for source files
  -l, --line-numbers             Include line numbers and filenames in output
  -C, --demangle[=STYLE]         Decode mangled/processed symbol names
                                  The STYLE, if specified, can be `auto', `gnu',
                                  `lucid', `arm', `hp', `edg', `gnu-v3', `java'
                                  or `gnat'
  -w, --wide                     Format output for more than 80 columns
  -z, --disassemble-zeroes       Do not skip blocks of zeroes when disassembling
      --start-address=ADDR       Only process data whose address is >= ADDR
      --stop-address=ADDR        Only process data whose address is <= ADDR
      --prefix-addresses         Print complete address alongside disassembly
      --[no-]show-raw-insn       Display hex alongside symbolic disassembly
      --adjust-vma=OFFSET        Add OFFSET to all displayed section addresses
      --special-syms             Include special symbols in symbol dumps
 
  -i --instruction-dump=<number>
                         Disassemble the contents of section <number>
  -r                           Ignored for compatibility with rc
  -h --help                    Print this help message
  -V --version                 Print version information
  ABI Version:                       %d
  Addr: 0x  Advance Line by %d to %d
  Advance PC by %d to %lx
  Advance PC by constant %d to 0x%lx
  Advance PC by fixed size amount %d to 0x%lx
  Class:                             %s
  Cnt: %d
  Compilation Unit @ %lx:
  Copy
  DWARF Version:               %d
  Data:                              %s
  Entry    Dir    Time    Size    Name
  Entry point address:                 Extended opcode %d:   File: %lx  File: %s  Flags  Flags:                             0x%lx%s
  Flags: %s  Version: %d
  Generic options:
  Index: %d  Cnt: %d    Initial value of 'is_stmt':  %d
  Length:                              %ld
  Length:                      %ld
  Length:                   %ld
  Line Base:                   %d
  Line Range:                  %d
  Machine:                           %s
  Magic:     Minimum Instruction Length:  %d
  No emulation specific options
  Num Buc:    Value          Size   Type   Bind Vis      Ndx Name
  Num Buc:    Value  Size   Type   Bind Vis      Ndx Name
  Num:    Index       Value  Name  Number TAG
  Number of program headers:         %ld
  Number of section headers:         %ld  OS/ABI:                            %s
  Offset          Info           Type           Sym. Value    Sym. Name
  Offset          Info           Type           Sym. Value    Sym. Name + Addend
  Offset into .debug_info section:     %ld
  Offset into .debug_info:  %lx
  Offset: %#08lx  Link to section: %ld (%s)
  Offset: %#08lx  Link: %lx (%s)
  Opcode %d has %d args
  Opcode Base:                 %d
  Options for %s:
  Options passed to DLLTOOL:
  Owner        Data size    Description
  Pg  Pointer Size:             %d
  Prologue Length:             %d
  Rest are passed unmodified to the language driver
  Section header string table index: %ld  Segment Sections...
  Segment Size:             %d
  Set File Name to entry %d in the File Name Table
  Set ISA to %d
  Set basic block
  Set column to %d
  Set epilogue_begin to true
  Set is_stmt to %d
  Set prologue_end to true
  Size of area in .debug_info section: %ld
  Size of program headers:           %ld (bytes)
  Size of section headers:           %ld (bytes)
  Size of this header:               %ld (bytes)
  Special opcode %d: advance Address by %d to 0x%lx  Tag        Type                         Name/Value
  Type           Offset             VirtAddr           PhysAddr
  Type           Offset   VirtAddr           PhysAddr           FileSiz  MemSiz   Flg Align
  Type           Offset   VirtAddr   PhysAddr   FileSiz MemSiz  Flg Align
  Type:                              %s
  Unknown opcode %d with operands:   Version:                             %d
  Version:                           %d %s
  Version:                           0x%lx
  Version:                  %d
  [-X32]       - ignores 64 bit objects
  [-X32_64]    - accepts 32 and 64 bit objects
  [-X64]       - ignores 32 bit objects
  [-g]         - 32 bit small archive
  [N]          - use instance [count] of name
  [Nr] Name              Type             Address           Offset
  [Nr] Name              Type            Addr     Off    Size   ES Flg Lk Inf Al
  [Nr] Name              Type            Address          Off    Size   ES Flg Lk Inf Al
  [P]          - use full path names when matching
  [S]          - do not build a symbol table
  [V]          - display the version number
  [a]          - put file(s) after [member-name]
  [b]          - put file(s) before [member-name] (same as [i])
  [c]          - do not warn if the library had to be created
  [f]          - truncate inserted file names
  [o]          - preserve original dates
  [s]          - create an archive index (cf. ranlib)
  [u]          - only replace files that are newer than current archive contents
  [v]          - be verbose
  d            - delete file(s) from the archive
  define new File Table entry
  m[ab]        - move file(s) in the archive
  p            - print file(s) found in the archive
  q[f]         - quick append file(s) to the archive
  r[ab][f][u]  - replace existing or insert new file(s) into the archive
  t            - display contents of archive
  x[o]         - extract file(s) from the archive
 %lu byte block:  (bytes into file)
 (bytes into file)
  Start of section headers:           (indirect string, offset: 0x%lx): %s (start == end) (start > end) <%d><%lx>: Abbrev Number: %lu (%s)
 Addr:  Addr: 0x Argument %s ignored At least one of the following switches must be given:
 Convert addresses into line number/file name pairs.
 Convert an object file into a NetWare Loadable Module
 Copies a binary file, possibly transforming it in the process
 DW_MACINFO_define - lineno : %d macro : %s
 DW_MACINFO_end_file
 DW_MACINFO_start_file - lineno: %d filenum: %d
 DW_MACINFO_undef - lineno : %d macro : %s
 DW_MACINFO_vendor_ext - constant : %d string : %s
 Display information about the contents of ELF format files
 Display information from object <file(s)>.
 Display printable strings in [file(s)] (stdin by default)
 Displays the sizes of sections inside binary files
 Generate an index to speed access to archives
 If no addresses are specified on the command line, they will be read from stdin
 If no input file(s) are specified, a.out is assumed
 Length  Number     %% of total  Coverage
 List symbols in [file(s)] (a.out by default).
 None
 Num: Name                           BoundTo     Flags
 Offset     Info    Type                Sym. Value  Symbol's Name
 Offset     Info    Type                Sym. Value  Symbol's Name + Addend
 Offset     Info    Type            Sym.Value  Sym. Name
 Offset     Info    Type            Sym.Value  Sym. Name + Addend
 Options are:
  -a --all               Equivalent to: -h -l -S -s -r -d -V -A -I
  -h --file-header       Display the ELF file header
  -l --program-headers   Display the program headers
     --segments          An alias for --program-headers
  -S --section-headers   Display the sections' header
     --sections          An alias for --section-headers
  -g --section-groups    Display the section groups
  -e --headers           Equivalent to: -h -l -S
  -s --syms              Display the symbol table
      --symbols          An alias for --syms
  -n --notes             Display the core notes (if present)
  -r --relocs            Display the relocations (if present)
  -u --unwind            Display the unwind info (if present)
  -d --dynamic           Display the dynamic section (if present)
  -V --version-info      Display the version sections (if present)
  -A --arch-specific     Display architecture specific information (if any).
  -D --use-dynamic       Use the dynamic section info when displaying symbols
  -x --hex-dump=<number> Dump the contents of section <number>
  -w[liaprmfFsoR] or
  --debug-dump[=line,=info,=abbrev,=pubnames,=aranges,=macro,=frames,=str,=loc,=Ranges]
                         Display the contents of DWARF2 debug sections
 Print a human readable interpretation of a SYSROFF object file
 Removes symbols and sections from files
 The options are:
 The options are:
  -A|-B     --format={sysv|berkeley}  Select output style (default is %s)
  -o|-d|-x  --radix={8|10|16}         Display numbers in octal, decimal or hex
  -t        --totals                  Display the total sizes (Berkeley only)
            --target=<bfdname>        Set the binary file format
  -h        --help                    Display this information
  -v        --version                 Display the program's version
 
 The options are:
  -I --input-target=<bfdname>   Set the input binary file format
  -O --output-target=<bfdname>  Set the output binary file format
  -T --header-file=<file>       Read <file> for NLM header information
  -l --linker=<linker>          Use <linker> for any linking
  -d --debug                    Display on stderr the linker command line
  -h --help                     Display this information
  -v --version                  Display the program's version
 The options are:
  -a - --all                Scan the entire file, not just the data section
  -f --print-file-name      Print the name of the file before each string
  -n --bytes=[number]       Locate & print any NUL-terminated sequence of at
  -<number>                 least [number] characters (default 4).
  -t --radix={o,d,x}        Print the location of the string in base 8, 10 or 16
  -o                        An alias for --radix=o
  -T --target=<BFDNAME>     Specify the binary file format
  -e --encoding={s,S,b,l,B,L} Select character size and endianness:
                            s = 7-bit, S = 8-bit, {b,l} = 16-bit, {B,L} = 32-bit
  -h --help                 Display this information
  -v --version              Print the program's version number
 The options are:
  -a, --debug-syms       Display debugger-only symbols
  -A, --print-file-name  Print name of the input file before every symbol
  -B                     Same as --format=bsd
  -C, --demangle[=STYLE] Decode low-level symbol names into user-level names
                          The STYLE, if specified, can be `auto' (the default),
                          `gnu', `lucid', `arm', `hp', `edg', `gnu-v3', `java'
                          or `gnat'
      --no-demangle      Do not demangle low-level symbol names
  -D, --dynamic          Display dynamic symbols instead of normal symbols
      --defined-only     Display only defined symbols
  -e                     (ignored)
  -f, --format=FORMAT    Use the output format FORMAT.  FORMAT can be `bsd',
                           `sysv' or `posix'.  The default is `bsd'
  -g, --extern-only      Display only external symbols
  -l, --line-numbers     Use debugging information to find a filename and
                           line number for each symbol
  -n, --numeric-sort     Sort symbols numerically by address
  -o                     Same as -A
  -p, --no-sort          Do not sort the symbols
  -P, --portability      Same as --format=posix
  -r, --reverse-sort     Reverse the sense of the sort
  -S, --print-size       Print size of defined symbols
  -s, --print-armap      Include index for symbols from archive members
      --size-sort        Sort symbols by size
      --special-syms     Include special symbols in the output
      --synthetic        Display synthetic symbols as well
  -t, --radix=RADIX      Use RADIX for printing symbol values
      --target=BFDNAME   Specify the target object format as BFDNAME
  -u, --undefined-only   Display only undefined symbols
  -X 32_64               (ignored)
  -h, --help             Display this information
  -V, --version          Display this program's version number
 
 The options are:
  -b --target=<bfdname>  Set the binary file format
  -e --exe=<executable>  Set the input file name (default is a.out)
  -s --basenames         Strip directory names
  -f --functions         Show function names
  -C --demangle[=style]  Demangle function names
  -h --help              Display this information
  -v --version           Display the program's version
 
 The options are:
  -h --help                    Print this help message
  -V --version                 Print version information
 The options are:
  -h --help              Display this information
  -v --version           Display the program's version
 
 The options are:
  -h --help        Display this information
  -v --version     Print the program's version number
 The options are:
  -i --input=<file>            Name input file
  -o --output=<file>           Name output file
  -J --input-format=<format>   Specify input format
  -O --output-format=<format>  Specify output format
  -F --target=<target>         Specify COFF target
     --preprocessor=<program>  Program to use to preprocess rc file
  -I --include-dir=<dir>       Include directory when preprocessing rc file
  -D --define <sym>[=<val>]    Define SYM when preprocessing rc file
  -U --undefine <sym>          Undefine SYM when preprocessing rc file
  -v --verbose                 Verbose - tells you what it's doing
  -l --language=<val>          Set language when reading rc file
     --use-temp-file           Use a temporary file instead of popen to read
                               the preprocessor output
     --no-use-temp-file        Use popen (default)
 The options are:
  -q --quick       (Obsolete - ignored)
  -n --noprescan   Do not perform a scan to convert commons into defs
  -d --debug       Display information about what is being done
  -h --help        Display this information
  -v --version     Print the program's version number
 [without DW_AT_frame_base] and Line by %d to %d
 at offset 0x%lx contains %lu entries:
 command specific modifiers:
 commands:
 emulation options: 
 generic modifiers:
 program interpreter type: %x, namesize: %08lx, descsize: %08lx
#lines %d %ld: .bf without preceding function%ld: unexpected .ef
%lu    %s
%s
 
%s %s%c0x%s never used%s %s: %s%s both copied and removed%s exited with status %d%s is not a valid archive%s section has more comp units than .debug_info section
%s section needs a populated .debug_info section
%s: %s: address out of bounds%s: Can't open input archive %s
%s: Can't open output archive %s
%s: Error: %s: Failed to read file header
%s: Matching formats:%s: Multiple redefinition of symbol "%s"%s: Path components stripped from image name, '%s'.%s: Symbol "%s" is target of more than one redefinition%s: Warning: %s: bad archive file name
%s: bad number: %s%s: can not get addresses from archive%s: can't create debugging section: %s%s: can't find module file %s
%s: can't open file %s
%s: can't set debugging section contents: %s%s: cannot set time: %s%s: don't know how to write debugging information for %s%s: error copying private BFD data: %s%s: error in %s: %s%s: execution of %s failed: %s: failed to read archive header
%s: failed to read string table
%s: failed to seek to next archive header
%s: failed to skip archive symbol table
%s: file %s is not an archive
%s: fread failed%s: fseek to %lu failed: %s%s: invalid archive string table offset %lu
%s: invalid output format%s: invalid radix%s: no archive map to update%s: no open archive
%s: no open output archive
%s: no output archive specified yet
%s: no recognized debugging information%s: no resource section%s: no symbols%s: not a dynamic object%s: not enough binary data%s: printing debugging information failed%s: read of %lu returned %lu%s: read: %s%s: section `%s': error in %s: %s%s: skipping unexpected symbol type %s in relocation in section .rela%s
%s: supported architectures:%s: supported formats:%s: supported targets:%s: unexpected EOF%s: warning: %s: warning: shared libraries can not have uninitialized data%s: warning: unknown size for field `%s' in struct%s:%d: %s
%s:%d: Ignoring rubbish found on this line%s:%d: garbage found at end of line%s:%d: missing new symbol name%s:%d: premature end of file'%s''%s' is not an ordinary file
'%s': No such file'%s': No such file
(Unknown location op)(User defined location op)(declared as inline and inlined)(declared as inline but ignored)(inlined)(location list)(not inlined)2's complement, big endian2's complement, little endian: duplicate value
: expected to be a directory
: expected to be a leaf
<OS specific>: %d<corrupt string table index: %3ld><no .debug_str section><offset is too big><processor specific>: %d<string table index: %3ld><unknown: %x><unknown>: %d<unknown>: %lx<unknown>: %xAdded exports to output fileAdding exports to output fileAudit libraryAuxiliary libraryBCD float type not supportedBFD header file version %s
Bad sh_info in group section `%s'
Bad sh_link in group section `%s'
Bad stab: %s
C++ base class not definedC++ base class not found in containerC++ data member not found in containerC++ default values not in a functionC++ object has no fieldsC++ reference is not pointerC++ reference not foundC++ static virtual methodCORE (Core file)Can't add padding to %s: %sCan't disassemble for architecture %s
Can't fill gap after %s: %sCan't have LIBRARY and NAMECan't open .lib file: %sCan't open def file: %sCan't open file %s
Can't use supplied machine %sCannot interpret virtual addresses without program headers.
Cannot produce mcore-elf dll from archive file: %sConfiguration fileContents of %s section:
 
Contents of section %s:
Contents of the %s section:
 
Contents of the .debug_loc section:
 
Contents of the .debug_ranges section:
 
Contents of the .debug_str section:
 
Convert a COFF object file into a SYSROFF object file
Copyright 2005 Free Software Foundation, Inc.
Could not locate '%s'.  System error message: %s
Couldn't get demangled builtin type
Created lib fileCreating library file: %sCreating stub file: %sCurrent open archive is %s
DLLTOOL name    : %s
DLLTOOL options : %s
DRIVER name     : %s
DRIVER options  : %s
DW_FORM_data8 is unsupported when sizeof (unsigned long) != 8
DYN (Shared object file)Deleting temporary base file %sDeleting temporary def file %sDeleting temporary exp file %sDemangled name is not a function
Dependency audit libraryDisassembly of section %s:
Displaying the debug contents of section %s is not yet supported.
Don't know about relocations on this machine architecture
Done reading %sELF Header:
EXEC (Executable file)End of Sequence
 
Entry point Error, duplicate EXPORT with oridinals: %sExcluding symbol: %sExecution of %s failedFORMAT is one of rc, res, or coff, and is deduced from the file name
extension if not specified.  A single file name is an input file.
No input-file is stdin, default rc.  No output-file is stdout, default rc.
Failed to print demangled template
Failed to read in number of buckets
Failed to read in number of chains
File contains multiple dynamic string tables
File contains multiple dynamic symbol tables
File contains multiple symtab shndx tables
Filter libraryFlags:Generated exports fileGenerating export file: %sID directory entryID resourceID subdirectoryIEEE numeric overflow: 0xIEEE string length overflow: %u
IEEE unsupported complex type size %u
IEEE unsupported float type size %u
IEEE unsupported integer type size %u
Idx Name          Size      VMA               LMA               File off  AlgnIdx Name          Size      VMA       LMA       File off  AlgnIn archive %s:
Input file '%s' is not readable.
Internal error: DWARF version is not 2 or 3.
Internal error: Unknown machine type: %dInvalid option '-%c'
Invalid radix: %s
Keeping temporary base file %sKeeping temporary def file %sKeeping temporary exp file %sKey to Flags:
  W (write), A (alloc), X (execute), M (merge), S (strings)
  I (info), L (link order), G (group), x (unknown)
  O (extra OS processing required) o (OS specific), p (processor specific)
LIBRARY: %s base: %xLast stabs entries before error:
Library rpath: [%s]Library runpath: [%s]Library soname: [%s]Location lists in .debug_info section aren't in ascending order!
Location lists in .debug_loc section start at 0x%lx
Machine '%s' not supportedMultiple renames of section %sMust provide at least one of -o or --dllname optionsNAME: %s base: %xNONE (None)NT_ARCH (architecture)NT_AUXV (auxiliary vector)NT_FPREGS (floating point registers)NT_FPREGSET (floating point registers)NT_LWPSINFO (lwpsinfo_t structure)NT_LWPSTATUS (lwpstatus_t structure)NT_PRPSINFO (prpsinfo structure)NT_PRSTATUS (prstatus structure)NT_PRXFPREG (user_xfpregs structure)NT_PSINFO (psinfo structure)NT_PSTATUS (pstatus structure)NT_TASKSTRUCT (task structure)NT_VERSION (version)NT_WIN32PSTATUS (win32_pstatus structure)N_LBRAC not within function
Name                  Value           Class        Type         Size             Line  Section
 
Name                  Value   Class        Type         Size     Line  Section
 
Name index: %ld
Name: %s
NetBSD procinfo structureNo %s section present
 
No comp units in .debug_info section ?No entry %s in archive.
No filename following the -fo option.
No location lists in .debug_info section!
No mangling for "%s"
No member named `%s'
No note segments present in the core file.
No range lists in .debug_info section!
NoneNot an ELF file - it has the wrong magic bytes at the start
Not enough memory for a debug info array of %u entriesNot needed object: [%s]
Nothing to do.
OS Specific: (%x)Only -X 32_64 is supportedOnly DWARF 2 and 3 aranges are currently supported.
Only DWARF 2 and 3 pubnames are currently supported
Only DWARF version 2 and 3 line info is currently supported.
Only version 2 and 3 DWARF debug information is currently supported.
Opened temporary file: %sOperating System specific: %lxOption -I is deprecated for setting the input format, please use -J instead.
Out of memoryOut of memory
Out of memory allocating 0x%x bytes for %s
Out of memory allocating dump request table.PT_FIRSTMACH+%dPT_GETFPREGS (fpreg structure)PT_GETREGS (reg structure)Pascal file name not supportedPath components stripped from dllname, '%s'.Print a human readable interpretation of a SYSROFF object file
Processed def fileProcessed definitionsProcessing def file: %sProcessing definitionsProcessor Specific: %lxProcessor Specific: (%x)REL (Relocatable file)Range lists in .debug_info section aren't in ascending order!
Range lists in .debug_ranges section start at 0x%lx
Reading %s section of %s failed: %sReport bugs to %s
Report bugs to %s.
Scanning object file %sSection %d was not dumped because it does not exist!
Section headers are not available!
Sections:
Shared library: [%s]Skipping unexpected relocation type %s
Standalone AppSucking in info from %s section in %sSupported architectures:Supported targets:Syntax error in def file %s:%dThe line info appears to be corrupt - the section is too small
The section %s contains:
The section %s contains:
 
There are %d section headers, starting at offset 0x%lx:
There is a hole [0x%lx - 0x%lx] in .debug_loc section.
There is a hole [0x%lx - 0x%lx] in .debug_ranges section.
There is an overlap [0x%lx - 0x%lx] in .debug_loc section.
There is an overlap [0x%lx - 0x%lx] in .debug_ranges section.
This instance of readelf has been built without support for a
64 bit data type and so it cannot read 64 bit ELF files.
This program is free software; you may redistribute it under the terms of
the GNU General Public License.  This program has absolutely no warranty.
Too many N_RBRACs
Tried `%s'
Tried file: %sType file number %d out of range
Type index number %d out of range
UNKNOWN: length %d
Unable to change endianness of input file(s)Unable to determine the length of the dynamic string table
Unable to determine the number of symbols to load
Unable to find program interpreter name
Unable to locate .debug_abbrev section!
Unable to locate entry %lu in the abbreviation table
Unable to open base-file: %sUnable to open object file: %sUnable to open temporary assembler file: %sUnable to read in 0x%x bytes of %s
Unable to read in dynamic data
Unable to recognise the format of the input file %sUnable to seek to 0x%x for %s
Unable to seek to end of file
Unable to seek to end of file!Unable to seek to start of dynamic informationUndefined N_EXCLUnexpected demangled varargs
Unexpected type in v3 arglist demangling
Unhandled data length: %d
Unknown AT value: %lxUnknown FORM value: %lxUnknown TAG value: %lxUnknown note type: (0x%08x)Unrecognized XCOFF type %d
Unrecognized debug option '%s'
Unrecognized debug section: %s
Unrecognized demangle component %d
Unrecognized demangled builtin type
Unrecognized form: %d
Usage %s <option(s)> <object-file(s)>
Usage: %s <option(s)> <file(s)>
Usage: %s <option(s)> in-file(s)
Usage: %s [emulation options] [-]{dmpqrstx}[abcfilNoPsSuvV] [member-name] [count] archive-file file...
Usage: %s [option(s)] [addr(s)]
Usage: %s [option(s)] [file(s)]
Usage: %s [option(s)] [in-file [out-file]]
Usage: %s [option(s)] [input-file] [output-file]
Usage: %s [option(s)] in-file
Usage: %s [option(s)] in-file [out-file]
Usage: %s [options] archive
Usage: readelf <option(s)> elf-file(s)
Using `%s'
Using file: %sUsing popen to read preprocessor output
Using temporary file `%s' to read preprocessor output
Using the --size-sort and --undefined-only options togetherValue for `N' must be positive.Virtual address 0x%lx not located in any PT_LOAD segment.
Warning, ignoring duplicate EXPORT %s %d,%dWarning: %s: %s
Warning: '%s' is not an ordinary fileWarning: Output file cannot represent architecture %sWarning: changing type size from %d to %d
Warning: could not locate '%s'.  reason: %sWarning: input target 'binary' required for binary architecture parameter.Warning: truncating gap-fill from 0x%s to 0x%x[<unknown>: 0x%x]`N' is only meaningful with the `x' and `d' options.`u' is only meaningful with the `r' option.acceleratoralignmentalternate machine code index must be positivearchitecture %s unknownarchitecture: %s, assuming that the pointer size is %d, from the last comp unit in .debug_info
 
bad ATN65 recordbad C++ field bit pos or sizebad dynamic symbolbad format for %sbad mangled name `%s'
bad misc recordbad type for C++ method functionbadly formed extended line op encountered!
bfd_coff_get_auxent failed: %sbfd_coff_get_syment failed: %sbfd_open failed open stub file: %sblocks left on stack at endbyte number must be less than interleavebyte number must be non-negativecan not determine type of file `%s'; use the -J optioncan't create section `%s': %scan't execute `%s': %scan't get BFD_RELOC_RVA relocation typecan't open %s `%s': %scan't open `%s' for output: %scan't open temporary file `%s': %scan't popen `%s': %scan't read resource sectioncan't redirect stdout: `%s': %scan't set BFD default target to `%s': %scannot delete %s: %scannot mkdir %s for archive copying (error: %s)cannot open '%s': %scannot open input file %scannot open: %s: %sconflictconflict list found without a dynamic symbol tableconst/volatile indicator missingcontrol data requires DIALOGEXcopy from %s(%s) to %s(%s)
corrupt note found at offset %x into core notes
could not determine the type of symbol number %ld
couldn't open symbol redefinition file %s (error: %s)creating %scursorcursor file `%s' does not contain cursor datacustom sectiondata entrydata size %lddebug section datadebug_abbrev section datadebug_add_to_current_namespace: no current filedebug_end_block: attempt to close top level blockdebug_end_block: no current blockdebug_end_common_block: not implementeddebug_end_function: no current functiondebug_end_function: some blocks were not closeddebug_find_named_type: no current compilation unitdebug_get_real_type: circular debug information for %s
debug_loc section datadebug_make_undefined_type: unsupported kinddebug_name_type: no current filedebug_range section datadebug_record_function: no debug_set_filename calldebug_record_label: not implementeddebug_record_line: no current unitdebug_record_parameter: no current functiondebug_record_variable: no current filedebug_start_block: no current blockdebug_start_common_block: not implementeddebug_start_source: no debug_set_filename calldebug_str section datadebug_tag_type: extra tag attempteddebug_tag_type: no current filedebug_write_type: illegal type encountereddialog controldialog control datadialog control enddialog font point sizedialog headerdialogex controldialogex font informationdirectorydirectory entry namedynamic sectiondynamic string tabledynamic stringsexpression stack mismatchexpression stack overflowexpression stack underflowextracting information from .debug_info sectionfailed to open temporary head file: %sfailed to open temporary tail file: %sfilename required for COFF inputfilename required for COFF outputfixed version infoflagsflags 0x%08x:
fontdirfontdir device namefontdir face namefontdir headergroup cursorgroup cursor headergroup icongroup icon headerhas childrenhelp ID requires DIALOGEXhelp sectionicon file `%s' does not contain icon dataillegal option -- %cillegal type indexillegal variable indexinput and output files must be differentinput file named both on command line and with INPUTinterleave must be positiveinternal error -- this option not implementedinternal stat error on %sinvalid argument to --format: %sinvalid integer argument %sinvalid numberinvalid number %sinvalid option -f
invalid string lengthliblistliblist string tablemake .bss sectionmake .nlmsections sectionmake sectionmakingmenu headermenuex headermenuex offsetmenuitemmenuitem headermessage sectionmissing index typemissing required ASNmissing required ATN65module sectionmore than one dynamic segment
named directory entrynamed resourcenamed subdirectoryno .dynamic section in the dynamic segmentno argument types in mangled string
no childrenno entry %s in archive
no entry %s in archive %s!no export definition file provided.
Creating one, but that may not be what you wantno information for symbol number %ld
no input fileno input file specifiedno name for output fileno operation specifiedno resourcesno symbols
no type information for C++ method functionnonenotesnull terminated unicode stringnumeric overflowoptionsout of memory parsing relocsoverflow when adjusting relocation against %sparse_coff_type: Bad type code 0x%xprivate dataprivate header dataprogram headersreference parameter is not a pointerrelocsresource IDresource dataresource data sizeresource type unknownrpc sectionsection 0 in group section [%5u]
section [%5u] already in group section [%5u]
section datasection headersset .bss vmaset .data sizeset .nlmsection contentsset .nlmsections flagsset .nlmsections sizeset Address to 0x%lx
set section alignmentset section flagsset section sizeset start addressshared sectionsizeskipping unexpected symbol type %s in relocation in section .rela.%s
stab_int_type: bad size %ustack overflowstack underflowstat failed on bitmap file `%s': %sstat failed on file `%s': %sstat failed on font file `%s': %sstat returns negative size for %sstring tablestring_hash_lookup failed: %sstringtable stringstringtable string lengthstub section sizessubprocess got fatal signal %dsupport not compiled in for %ssupported flags: %ssymbol informationsymbolssymtab shndxthe .dynamic section is not contained within the dynamic segmentthe .dynamic section is not the first section in the dynamic segment.there are no sections to be copied!two different operation options specifiedunable to copy file '%s' reason: %sunable to open output file %sunable to rename '%s' reason: %sundefined C++ objectundefined C++ vtableundefined variable in ATNundefined variable in TYunexpected DIALOGEX version %dunexpected end of debugging informationunexpected fixed version info version %luunexpected fixed version information length %dunexpected fixed version signature %luunexpected group cursor type %dunexpected group icon type %dunexpected numberunexpected record typeunexpected string in C++ miscunexpected stringfileinfo value length %dunexpected varfileinfo value length %dunexpected version stringunexpected version string length %d != %d + %dunexpected version string length %d < %dunexpected version stringtable value length %dunexpected version type %dunexpected version value length %dunknown ATN typeunknown BB typeunknown C++ encoded nameunknown C++ visibilityunknown TY codeunknown alternate machine code, ignoredunknown builtin typeunknown demangling style `%s'unknown format type `%s'unknown sectionunknown virtual character for baseclassunknown visibility character for baseclassunknown visibility character for fieldunnamed $vb typeunrecognized --endian type `%s'unrecognized -E optionunrecognized C++ abbreviationunrecognized C++ default typeunrecognized C++ misc recordunrecognized C++ object overhead specunrecognized C++ object specunrecognized C++ reference typeunrecognized cross reference typeunrecognized section flag `%s'unrecognized: %-7lxunresolved PC relative reloc against %sunsupported ATN11unsupported ATN12unsupported C++ object typeunsupported IEEE expression operatorunsupported menu version %dunsupported or unknown DW_CFA_%d
unsupported qualifierunwind infounwind tableversion dataversion defversion def auxversion definition sectionversion length %d does not match resource length %luversion needversion need aux (2)version need aux (3)version need sectionversion string tableversion symbol dataversion var infoversion varfileinfovmawait: %swarning: CHECK procedure %s not definedwarning: EXIT procedure %s not definedwarning: FULLMAP is not supported; try ld -Mwarning: No version number givenwarning: START procedure %s not definedwarning: could not locate '%s'.  System error message: %swarning: input and output formats are not compatiblewarning: symbol %s imported but not in import listwill produce no output, since undefined symbols have no size.writing stubProject-Id-Version: binutils 2.15.96
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2005-03-03 21:03+1030
PO-Revision-Date: 2005-06-02 09:05+0800
Last-Translator: Wei-Lun Chao <chaoweilun@pcmail.com.tw>
Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=1; plural=0;
 
 
來自 %s çš„符號:
 
 
 
來自 %s[%s] çš„符號:
 
 
 
來自 %s çš„æœªå®šç¾©ç¬¦è™Ÿï¼š
 
 
 
來自 %s[%s] çš„æœªå®šç¾©çš„符號:
 
 
      [正在要求程式解譯器:%s]
    åœ°å€é•·åº¦
 
    åç§»é‡    åç¨±
 
  ç¨‹å¼æ¨™é ­èµ·é»žï¼š            
 åˆ—號敍述句:
 
 æ“ä½œç¢¼:
 
 å€æ®µåˆ°ç¯€å€æ˜ å°„中:
 
 ç›®éŒ„表為空。
 
 ç›®éŒ„表:
 
 æª”案名表為空。
 
 æª”案名稱表:
 
 ä»¥ä¸‹é¸é …是可選的:
 
%s:     æª”案格式 %s
 
「%s」位於偏移量 0x%lx çš„重定位區段含有 %ld å€‹ä½å…ƒçµ„:
 
<%s>
 
 
保存檔索引:
 
「%s」區段的組合語言傾印:
 
找不到展開的資訊區段之於
傾印 %s å€æ®µçš„除錯內容:
 
 
位於偏移量 0x%lx çš„動態資訊節區含有 %d å€‹æ¢ç›®ï¼š
 
位於偏移量 0x%lx è™•的動態區段含有 %u å€‹æ¢ç›®ï¼š
 
無法取得顯示符號所需之動態符號資訊。
 
Elf æª”案類型為 %s
 
檔案:%s
 
「%s」區段的十六進位傾印:
 
存儲桶列表長度的長條圖 (總計 %lu å­˜å„²æ¡¶):
 
「%s」函式庫列表區段含有 %lu å€‹æ¢ç›®ï¼š
 
本檔案中沒有區段資訊。
 
備註位於偏移量 0x%08lx é•·åº¦ç‚º 0x%08lx:
 
程式標頭:
 
重定位區段 
「%s」區段含有 %d å€‹æ¢ç›®ï¼š
 
「%s」區段沒有可傾印的資料。
 
「%s」區段沒有正在除錯的資料。
 
「.conflict」區段含有 %lu å€‹æ¢ç›®ï¼š
 
區段標頭:
 
區段標頭:
 
符號表「%s」含有 %lu å€‹æ¢ç›®ï¼š
 
映像符號表:
 
.debug_loc å€æ®µç‚ºç©ºã€‚
 
.debug_ranges å€æ®µç‚ºç©ºã€‚
 
.debug_str å€æ®µç‚ºç©ºã€‚
 
共有 %d å€‹ç¨‹å¼æ¨™é ­ï¼Œé–‹å§‹æ–¼åç§»é‡
本檔案中沒有動態重定位。
 
本檔案中沒有程式標頭。
 
該檔案中沒有重定位資訊。
 
本檔案中沒有區段群組。
 
本檔案中沒有區段。
 
本檔案中沒有展開的區段。
 
本檔案沒有動態區段。
 
展開的區段
版本定義區段「%s」含有 %ld å€‹æ¢ç›®ï¼š
 
版本需要區段「%s」含有 %ld å€‹æ¢ç›®ï¼š
 
版本符號區段「%s」含有 %d å€‹æ¢ç›®ï¼š
 
起始位址 0x                æª”案大小          è¨˜æ†¶å¤§å°              æ——標   å°é½Š
        å¯èƒ½çš„ <架構>:arm[_interwork]、i386、mcore[-elf]{-le|-be}、ppc、thumb
       %s -M [<mri-命令稿]
       å¤§å°              å…¨é«”大小         æ——標   é€£çµ  è³‡è¨Š  å°é½Š
      --exclude-symbols <列表> ä¸è¦å°Žå‡º <列表>
      --export-all-symbols   å°‡æ‰€æœ‰ç¬¦è™Ÿå°Žå‡ºåˆ° .def
      --no-default-excludes  æ¸…空預設排除的符號
      --no-export-all-symbols  åªå°Žå‡ºåˆ—舉的符號
     --yydebug                 æ‰“開解析器除錯
    %-18s %s
    %8.8lx <表列尾端>
    åç§»é‡             è³‡è¨Š             é¡žåž‹               ç¬¦è™Ÿå€¼          ç¬¦è™Ÿåç¨±
    åç§»é‡             è³‡è¨Š             é¡žåž‹               ç¬¦è™Ÿå€¼          ç¬¦è™Ÿåç¨± + åŠ æ•¸
    åç§»é‡   èµ·å§‹   çµæŸ
    åç§»é‡   èµ·å§‹   çµæŸ      è¡¨ç¤ºå¼
   %d       %ld      %s    [%s]
   --add-indirect         é–“接添加 dll è‡³å°Žå‡ºæª”案。
   --add-stdcall-alias    æ·»åŠ ä¸å¸¶ @<n> çš„別名
   --as <名稱>            ä»¥ <名稱> åšç‚ºçµ„譯程式
   --base-file <basefile> Read linker generated base file
   --def <deffile>        è¼¸å…¥ .def æª”案的名稱
   --dllname <名稱>       è¦ç½®å…¥è¼¸å‡ºå‡½å¼åº«çš„輸入 dll åç¨±ã€‚
   --dlltool-name <dlltool> é è¨­ç‚ºã€Œdlltool」
   --driver-flags <旗標>  è¦†è“‹é è¨­çš„ ld æ——標
   --driver-name <驅動器> é è¨­ç‚ºã€Œgcc」
   --dry-run              åªé¡¯ç¤ºéœ€è¦åŸ·è¡Œé‚£äº›å‹•作
   --entry <入口>         æŒ‡å®šé¡å¤–çš„ DLL é€²å…¥é»ž
   --exclude-symbols <列表> å¾ž .def ä¸­æŽ’除 <列表>
   --export-all-symbols     å°‡æ‰€æœ‰ç¬¦è™Ÿå°Žå‡ºåˆ° .def ä¸­
   --image-base <基址>    æŒ‡å®šæ˜ åƒçš„基本位址
   --implib <outname>     --output-lib çš„同義語
   --machine <架構>
   --mno-cygwin           å»ºç«‹ Mingw DLL
   --no-default-excludes    æ¸…空預設排除的符號
   --no-export-all-symbols  åªå°Žå‡ºç¬¦è™Ÿ .drectve
   --no-idata4           ä¸ç”¢ç”Ÿ idata$4 å€æ®µ
   --no-idata5           ä¸ç”¢ç”Ÿ idata$5 å€æ®µ
   --nodelete             ä¿ç•™è‡¨æ™‚檔案。
   --output-def <deffile> è¼¸å‡º .def æª”案的名稱
   --output-exp <導出名>  ç”¢ç”Ÿå°Žå‡ºæª”案。
   --output-lib <導出名>  ç”¢ç”Ÿè¼¸å…¥å‡½å¼åº«ã€‚
   --quiet, -q            å®‰éœåœ°å·¥ä½œ
   --target <架構>        i386-cygwin32 æˆ– i386-mingw32
   --verbose, -v          è¼¸å‡ºè¼ƒå¤šè³‡è¨Š
   --version              åˆ—印 dllwrap çš„版本號
   -A --add-stdcall-alias    æ·»åŠ ä¸å¸¶ @<n> çš„別名。
   -C --compat-implib        å»ºç«‹å‘後相容的導入函式庫。
   -D --dllname <名稱>       è¦ç½®å…¥ä»‹é¢å‡½å¼åº«çš„輸入 dll åç¨±ã€‚
   -F --linker-flags <旗標>  æŠŠ <旗標> å‚³éžçµ¦é€£æŽ¥ç¨‹å¼ã€‚
   -L --linker <名稱>        ä»¥ <名稱> åšç‚ºé€£æŽ¥ç¨‹å¼ã€‚
   -M --mcore-elf <輸出名稱> è™•理 mcore-elf ç‰©ä»¶æª”案進入 <輸出名稱>。
   -S --as <名稱>            ç”¨ <名稱> åšç‚ºçµ„譯程式。
   -U                     ç‚º .lib æ·»åŠ åº•ç·š
   -U --add-underscore       æ–¼ä»‹é¢ä¸­çš„符號添加底線。
   -V --version              é¡¯ç¤ºç¨‹å¼ç‰ˆæœ¬è™Ÿç¢¼ã€‚
   -a --add-indirect         é–“接添加 dll è‡³å°Žå‡ºæª”案。
   -b --base-file <基本檔>   è®€å–連接程式所產生的 base æª”案。
   -c --no-idata5            ä¸ç”¢ç”Ÿ idata$5 å€æ®µã€‚
   -d --input-def <定義檔>   å°‡è¦è®€å…¥çš„ .def æª”案名。
   -e --output-exp <導出檔>  ç”¢ç”Ÿå°Žå‡ºæª”案。
   -f --as-flags <旗標>      æŠŠ <旗標> å‚³éžçµ¦çµ„譯程式。
   -h --help                 é¡¯ç¤ºæœ¬è³‡è¨Šã€‚
   -k                     åˆªåŽ»å°Žå‡ºåå­—ä¸­çš„ @<n>
   -k --kill-at              åˆªåŽ»å°Žå‡ºåç¨±ä¸­çš„ @<n>。
   -l --output-lib <導出檔>  ç”¢ç”Ÿä»‹é¢å‡½å¼åº«ã€‚
   -m --machine <架構>    ç‚º <架構> å»ºç«‹ DLL。[預設:%s]
   -n --no-delete            ä¿ç•™è‡¨æ™‚檔案 (重覆以達到額外的保留)。
   -p --ext-prefix-alias <前置>   æ·»åР附叶 <前置> çš„別名。
   -t --temp-prefix <前置>   ä½¿ç”¨ <前置> ä¾†å»ºæ§‹è‡¨æ™‚檔案名稱。
   -v --verbose              è¼¸å‡ºæ›´å¤šè³‡è¨Šã€‚
   -x --no-idata4            ä¸ç”¢ç”Ÿ idata$4 å€æ®µã€‚
   -z --output-def <定義檔>  å°‡è¦å»ºç«‹çš„ .def æª”案名。
   0 (*本地*)       1 (*全域*)      ç¸®å¯«åç§»é‡ï¼š  %ld
   é•·åº¦ï¼š        %ld
  ç·¨è™Ÿ:    å€¼             å¤§å° é¡žåž‹    ç´„束   ç‰ˆæœ¬     ç´¢å¼•名稱
  ç·¨è™Ÿ:    å€¼     å¤§å° é¡žåž‹    ç´„束   ç‰ˆæœ¬     ç´¢å¼•名稱
   æŒ‡æ¨™å¤§å°ï¼š    %d
   ç‰ˆæœ¬ï¼š        %d
   [索引]     åç¨±
  %#06x:名稱索引:%lx  %#06x:名稱:%s  %#06x: å‰ä¸€ç‰ˆ %d, åç¨±ç´¢å¼•: %ld
  %#06x: å‰ä¸€ç‰ˆ %d: %s
  %#06x: ä¿®è¨‚: %d  æ——標: %s  %#06x: ç‰ˆæœ¬: %d  %d      %s
  (指標大小:               %u)
  (未知的內嵌屬性值:%lx)  -I --histogram         é¡¯ç¤ºå­˜å„²æ¡¶åˆ—表長度的長條圖
  -W --wide              å…è¨±è¼¸å‡ºå¯¬åº¦è¶…過 80 å€‹å­—å…ƒ
  -H --help              é¡¯ç¤ºæœ¬è³‡è¨Š
  -v --version           é¡¯ç¤º readelf çš„版本號碼
  -I --input-target <bfdname>      å‡å®šè¼¸å…¥æª”案的格式為 <bfdname>
  -O --output-target <bfdname>     å»ºç«‹æ ¼å¼ç‚º <bfdname> çš„輸出檔案
  -B --binary-architecture <arch>  ç•¶è¼¸å…¥æª”案為二進位檔案時,設定輸出檔案的系統架構
  -F --target <bfdname>            å°‡è¼¸å…¥è¼¸å‡ºæ ¼å¼è¨­å®šç‚º <bfdname>
     --debugging                   å¦‚果可能,轉換除錯資訊
  -p --preserve-dates              å°‡ä¿®æ”¹/存取時間戳記複製到輸出檔案
  -j --only-section <name>         åªå°‡ <name> å€æ®µè¤‡è£½åˆ°è¼¸å‡ºæª”案中
     --add-gnu-debuglink=<file>    æ·»åŠ å€æ®µ .gnu_debuglink çš„連結到 <file>
  -R --remove-section <name>       å¾žè¼¸å‡ºä¸­åˆªé™¤ <name> å€æ®µ
  -S --strip-all                   é™¤åŽ»æ‰€æœ‰ç¬¦è™Ÿå’Œé‡å®šä½è³‡è¨Š
  -g --strip-debug                 é™¤åŽ»æ‰€æœ‰é™¤éŒ¯ç¬¦è™Ÿ
     --strip-unneeded              é™¤åŽ»æ‰€æœ‰é‡å®šä½ä¸éœ€è¦çš„ç¬¦è™Ÿ
  -N --strip-symbol <name>         ä¸è¦è¤‡è£½ç¬¦è™Ÿ <name>
     --strip-unneeded-symbol <name>
                                   ä¸è¦è¤‡è£½ç¬¦è™Ÿ <name> é™¤éžé‡å®šä½æ™‚需要
     --only-keep-debug             é™¤åŽ»é™¤éŒ¯ç›¸é—œä»¥å¤–çš„æ‰€æœ‰è³‡è¨Š
  -K --keep-symbol <name>          åªè¤‡è£½ç¬¦è™Ÿ <name>
  -L --localize-symbol <name>      å°‡ç¬¦è™Ÿ <name> å¼·åˆ¶æ¨™è­˜ç‚ºæœ¬åœ°ç¬¦è™Ÿ
  -G --keep-global-symbol <name>   å°‡é™¤äº† <name> ä»¥å¤–的所有符號標識為本地
  -W --weaken-symbol <name>        å°‡ç¬¦è™Ÿ <name> å¼·åˆ¶æ¨™è­˜ç‚ºå¼±ç¬¦è™Ÿ
     --weaken                      å°‡æ‰€æœ‰å…¨åŸŸç¬¦è™Ÿæ¨™è­˜ç‚ºå¼±ç¬¦è™Ÿ
  -x --discard-all                 åˆªé™¤æ‰€æœ‰éžå…¨åŸŸç¬¦è™Ÿ
  -X --discard-locals              åˆªé™¤æ‰€æœ‰ç·¨è­¯å™¨ç”¢ç”Ÿçš„符號
  -i --interleave <number>         åªåœ¨æ¯ <number> å€‹ä½å…ƒçµ„中複製一個
  -b --byte <num>                  åœ¨æ¯å€‹æ’入區塊中選擇位元組 <num>
     --gap-fill <val>              åœ¨å€æ®µç©ºéš™ä¸­ä»¥ <val> å¡«å……
     --pad-to <addr>               è£œå……最後一區段直到位址 <addr>
     --set-start <addr>            å°‡èµ·å§‹ä½å€è¨­ç½®ç‚º <addr>
    {--change-start|--adjust-start} <incr>
                                   å°‡ <incr> å¢žåŠ åˆ°èµ·å§‹ä½å€
    {--change-addresses|--adjust-vma} <incr>
                                   å°‡ <incr> å¢žåŠ åˆ° LMA、VMA å’Œèµ·å§‹ä½å€
    {--change-section-address|--adjust-section-vma} <name>{=|+|-}<val>
                                   ä»¥ <val> ä¿®æ”¹ <name> å€æ®µçš„ LMA å’Œ VMA
     --change-section-lma <name>{=|+|-}<val>
                                   ä»¥ <val> ä¿®æ”¹ <name> å€æ®µçš„ LMA
     --change-section-vma <name>{=|+|-}<val>
                                   ä»¥ <val> ä¿®æ”¹ <name> å€æ®µçš„ VMA
    {--[no-]change-warnings|--[no-]adjust-warnings}
                                   å¦‚果命名區段不存在就產生警告
     --set-section-flags <name>=<flags>
                                   å°‡ <name> å€æ®µçš„屬性設置為 <flags>
     --add-section <name>=<file>   å°‡ <file> ä¸­çš„ <name> å€æ®µæ·»åŠ åˆ°è¼¸å‡ºä¸­
     --rename-section <old>=<new>[,<flags>] å°‡å€æ®µç”± <old> æ”¹åç‚º <new>
     --change-leading-char         å¼·è¡Œè¨­å®šè¼¸å‡ºæ ¼å¼çš„前導字元風格
     --remove-leading-char         åˆªé™¤å…¨åŸŸç¬¦è™Ÿçš„前導字元
     --redefine-sym <old>=<new>    å°‡ç¬¦è™Ÿç”± <old> æ”¹åç‚º <new>
     --redefine-syms <file>        å°æ‰€æœ‰åˆ—æ–¼ <file> ä¸­çš„符號執行 --redefine-sym
     --srec-len <number>           é™åˆ¶æ‰€ç”¢ç”Ÿ Srecords çš„長度
     --srec-forceS3                å°‡æ‰€ç”¢ç”Ÿ Srecords çš„類型限制為 S3
     --strip-symbols <file>        å°åˆ—舉在 <file> ä¸­çš„æ‰€æœ‰ç¬¦è™ŸåŸ·è¡Œ -N
     --strip-unneeded-symbols <file>
                                   å°æ‰€æœ‰åˆ—æ–¼ <file> ä¸­çš„符號執行 --strip-unneeded-symbol
     --keep-symbols <file>         å°åˆ—舉在 <file> ä¸­çš„æ‰€æœ‰ç¬¦è™ŸåŸ·è¡Œ -K
     --localize-symbols <file>     å°åˆ—舉在 <file> ä¸­çš„æ‰€æœ‰ç¬¦è™ŸåŸ·è¡Œ -L
     --keep-global-symbols <file>  å°åˆ—舉在 <file> ä¸­çš„æ‰€æœ‰ç¬¦è™ŸåŸ·è¡Œ -G
     --weaken-symbols <file>       å°åˆ—舉在 <file> ä¸­çš„æ‰€æœ‰ç¬¦è™ŸåŸ·è¡Œ -W
     --alt-machine-code <index>    è¼¸å‡ºä½¿ç”¨æ›¿ä»£çš„æ©Ÿå™¨ç¢¼
     --writable-text               å°‡è¼¸å‡ºæ–‡å­—標記為可寫
     --readonly-text               å°‡è¼¸å‡ºæ–‡å­—標記為防寫
     --pure                        å°‡è¼¸å‡ºæª”案標記為需要分頁
     --impure                      å°‡è¼¸å‡ºæª”案標記為混雜的
     --prefix-symbols <prefix>     æ·»åŠ  <prefix> è‡³æ¯å€‹ç¬¦è™Ÿåç¨±çš„前端
     --prefix-sections <prefix>    æ·»åŠ  <prefix> è‡³æ¯å€‹å€æ®µåç¨±çš„前端
     --prefix-alloc-sections <prefix>
                                   æ·»åŠ  <prefix> è‡³æ¯å€‹å®šä½è¡¨å€æ®µåç¨±çš„前端
  -v --verbose                     åˆ—出所有修改的目標檔案
  -V --version                     é¡¯ç¤ºæœ¬ç¨‹åºçš„版本號碼
  -h --help                        é¡¯ç¤ºæœ¬è¼¸å‡º
     --info                        åˆ—出支援的物件格式 & ç³»çµ±æž¶æ§‹
  -I --input-target=<bfdname>      å‡å®šè¼¸å…¥æª”案的格式為 <bfdname>
  -O --output-target=<bfdname>     å»ºç«‹æ ¼å¼ç‚º <bfdname> çš„輸出檔案
  -F --target=<bfdname>            å°‡è¼¸å…¥å’Œè¼¸å‡ºçš„æ ¼å¼è¨­å®šç‚º <bfdname>
  -p --preserve-dates              å°‡ ä¿®æ”¹/存取 æ™‚間戳複製到輸出檔案
  -R --remove-section=<name>       å¾žè¼¸å‡ºä¸­åˆªé™¤ <name> å€æ®µ
  -s --strip-all                   é™¤åŽ»æ‰€æœ‰ç¬¦è™Ÿå’Œé‡å®šä½è³‡è¨Š
  -g -S -d --strip-debug           é™¤åŽ»æ‰€æœ‰é™¤éŒ¯ç¬¦è™Ÿ
     --strip-unneeded              é™¤åŽ»æ‰€æœ‰é‡å®šä½ä¸éœ€è¦çš„ç¬¦è™Ÿ
     --only-keep-debug             é™¤åŽ»é™¤éŒ¯ä»¥å¤–çš„æ‰€æœ‰è³‡è¨Š
  -N --strip-symbol=<name>         ä¸è¦è¤‡è£½ç¬¦è™Ÿ <name>
  -K --keep-symbol=<name>          åªè¤‡è£½ç¬¦è™Ÿ <name>
  -w --wildcard                    ç¬¦è™Ÿæ¯”較時容許萬用字元
  -x --discard-all                 åˆªé™¤æ‰€æœ‰éžå…¨åŸŸç¬¦è™Ÿ
  -X --discard-locals              åˆªé™¤æ‰€æœ‰ç·¨è­¯å™¨ç”¢ç”Ÿçš„符號
  -v --verbose                     åˆ—出所有修改過的目標檔案
  -V --version                     é¡¯ç¤ºæœ¬ç¨‹åºçš„版本號碼
  -h --help                        é¡¯ç¤ºæœ¬è¼¸å‡º
     --info                        åˆ—出支援的物件格式 & ç³»çµ±æž¶æ§‹
  -o <file>                        å°‡ strip éŽçš„輸出置於 <file>
  -a, --archive-headers    é¡¯ç¤ºä¿å­˜æª”頭資訊
  -f, --file-headers       é¡¯ç¤ºæ•´é«”檔案頭的內容
  -p, --private-headers    é¡¯ç¤ºç›®æ¨™æ ¼å¼ç‰¹æœ‰çš„æª”案頭內容
  -h, --[section-]headers  é¡¯ç¤ºå€æ®µé ­çš„內容
  -x, --all-headers        é¡¯ç¤ºæ‰€æœ‰æ¨™é ­çš„內容
  -d, --disassemble        é¡¯ç¤ºå¯åŸ·è¡Œå€æ®µçš„組譯內容
  -D, --disassemble-all    é¡¯ç¤ºæ‰€æœ‰å€æ®µçš„組譯內容
  -S, --source             å°‡åŽŸå§‹ç¢¼å’Œåçµ„è­¯æ··åˆèµ·ä¾†
  -s, --full-contents      é¡¯ç¤ºæ‰€æœ‰è«‹æ±‚區段的完整內容
  -g, --debugging          é¡¯ç¤ºç›®æ¨™æª”案的除錯資訊
  -e, --debugging-tags     é¡¯ç¤ºä½¿ç”¨ ctags é¢¨æ ¼çš„除錯資訊
  -G, --stabs              ä»¥åŽŸå§‹å½¢å¼é¡¯ç¤ºæª”æ¡ˆä¸­æ‰€æœ‰çš„ STABS è³‡è¨Š
  -t, --syms               é¡¯ç¤ºç¬¦è™Ÿè¡¨çš„內容
  -T, --dynamic-syms       é¡¯ç¤ºå‹•態符號表的內容
  -r, --reloc              é¡¯ç¤ºæª”案中的重定位條目
  -R, --dynamic-reloc      é¡¯ç¤ºæª”案中的動態重定位條目
  -v, --version            é¡¯ç¤ºæœ¬ç¨‹å¼çš„版本號碼
  -i, --info               åˆ—舉支援的目標格式和系統架構
  -H, --help               é¡¯ç¤ºæœ¬è³‡è¨Š
  -b, --target=BFDNAME           å°‡ç›®æ¨™ç‰©ä»¶æª”案格式指定為 BFDNAME
  -m, --architecture=MACHINE     å°‡ç›®æ¨™ç³»çµ±æž¶æ§‹æŒ‡å®šç‚º MACHINE
  -j, --section=NAME             åªé¡¯ç¤º NAME å€æ®µçš„資訊
  -M, --disassembler-options=OPT å°‡æ–‡å­—傳遞到 OPT åçµ„譯程序
  -EB --endian=big               åçµ„譯時假定高位位元組在前
  -EL --endian=little            åçµ„譯時假定低位位元組在前
      --file-start-context       å¾žæª”案的起點引入上下文 (帶有 -S)
  -I, --include=DIR              å°‡ DIR åŠ å…¥æœå°‹åŽŸå§‹ç¢¼æª”æ¡ˆçš„åˆ—è¡¨
  -l, --line-numbers             åœ¨è¼¸å‡ºä¸­æŒ‡å®šåˆ—號和檔案名
  -C, --demangle[=STYLE]         å°æ–¼å·²æå£ž/處理過的符號名稱進行解碼
                                  å¦‚果指定了 STYLE,STYLE å¯èƒ½ç‚ºã€Œauto」、「gnu」、
                                 ã€Œlucid」、「arm」、「hp」、「edg」、「gnu-v3」、「java」或「gnat」
  -w, --wide                     ä»¥å¤šæ–¼ 80 è¡Œçš„寬度對輸出進行格式化
  -z, --disassemble-zeroes       åçµ„譯時不要跳過為零的區塊
      --start-address=ADDR       åªæœ‰è¡Œç¨‹è³‡æ–™çš„位址 >= ADDR
      --stop-address=ADDR        åªæœ‰è¡Œç¨‹è³‡æ–™çš„位址 <= ADDR
      --prefix-addresses         åŒåçµ„譯代碼並列顯示完整的位址
      --[no-]show-raw-insn       åŒç¬¦è™Ÿåçµ„譯並列顯示十六進位值
      --adjust-vma=OFFSET        ç‚ºæ‰€æœ‰é¡¯ç¤ºçš„區段位址增加 OFFSET
      --special-syms             åœ¨ç¬¦è™Ÿå‚¾å°ä¸­åŒ…含特殊符號
 
  -i --instruction-dump=<編號>
                         åçµ„譯區段 <編號> çš„內容
 é¸é …為:
  -r                           å¿½ç•¥èˆ‡ rc çš„相容性
  -h --help                    åˆ—印本求助訊息
  -V --version                 åˆ—印版本資訊
  ABI ç‰ˆæœ¬:                          %d
  ä½å€ï¼š0x  å¢žåŠ åˆ—è™Ÿç”± %d åˆ° %d
  å¢žåŠ  PC ç”± %d åˆ° %lx
  å¢žåŠ  PC å¸¸æ•¸ %d åˆ° 0x%lx
  å¢žåŠ  PC å›ºå®šå¤§å°çš„量 %d åˆ° 0x%lx
  é¡žåˆ¥:                              %s
  è¨ˆæ•¸ï¼š%d
  ç·¨è­¯å–®å…ƒ @ %lx:
  è¤‡è£½
  DWARF ç‰ˆæœ¬ï¼š                %d
  è³‡æ–™:                              %s
  æ¢ç›®    ç›®éŒ„    æ™‚é–“    å¤§å°    åç¨±
  é€²å…¥é»žä½å€ï¼š                æ“´å……操作碼 %d:   æª”案:%lx  æª”案:%s  æ——標  æ——標:             0x%lx%s
  æ——標:%s  ç‰ˆæœ¬ï¼š%d
  é€šç”¨é¸é …:
  ç´¢å¼•: %d  è¨ˆæ•¸: %d   ã€Œis_stmt」的初始值:       %d
  é•·åº¦ï¼š                              %ld
  é•·åº¦ï¼š                      %ld
  é•·åº¦ï¼š                      %ld
  åˆ—基數:                      %d
  åˆ—範圍:                      %d
  ç³»çµ±æž¶æ§‹:                          %s
魔術位元組:  æœ€å°æŒ‡ä»¤é•·åº¦ï¼š              %d
  æ²’有模擬特有的選項
 å­˜å„²æ¡¶è™Ÿ:    å€¼             å¤§å°   é¡žåž‹   ç´„束 ç‰ˆæœ¬     ç´¢å¼•名稱
 å­˜å„²æ¡¶è™Ÿ:    å€¼     å¤§å°   é¡žåž‹   ç´„束 ç‰ˆæœ¬     ç´¢å¼•名稱
 ç·¨è™Ÿ:    ç´¢å¼•        å€¼     åç¨±  æ•¸å­—標記
  ç¨‹å¼æ¨™é ­æ•¸é‡ï¼š       %ld
  å€æ®µæ¨™é ­æ•¸é‡ï¼š         %ld  OS/ABI:                            %s
  åç§»é‡          è³‡è¨Š           é¡žåž‹           ç¬¦è™Ÿå€¼        ç¬¦è™Ÿåç¨±
  åç§»é‡          è³‡è¨Š           é¡žåž‹           ç¬¦è™Ÿå€¼        ç¬¦è™Ÿåç¨± + åŠ æ•¸
  åœ¨ .debug_info å€æ®µä¸­çš„偏移量:       %ld
  åœ¨ .debug_info å€æ®µä¸­çš„偏移量:       %lx
  åç§»é‡ï¼š%#08lx  é€£æŽ¥åˆ°å€æ®µï¼š%ld (%s)
  åç§»é‡ï¼š%#08lx  é€£çµï¼š%lx (%s)
  æ“ä½œç¢¼ %d å…·æœ‰ %d å€‹å¼•數
  æ“ä½œç¢¼åŸºæ•¸ï¼š                %d
  %s çš„選項:
  å‚³éžçµ¦ DLLTOOL çš„選項:
  æ‰€æœ‰è€…        è³‡æ–™å¤§å°    æè¿°
  é   æŒ‡æ¨™å¤§å°:             %d
  å‰è¨€é•·åº¦ï¼š        %d
  å…¶é¤˜çš„都不加任何修改地傳遞給語言驅動器
  å­—串表索引區段標頭: %ld  ç¯€å€æ®µ...
  ç¯€å€å¤§å°:             %d
  è¨­å®šæª”案名稱為檔名表中的第 %d æ¢
  å°‡ ISA è¨­å®šç‚º %d
  è¨­å®šåŸºæœ¬å€å¡Š
  å°‡è¡Œè¨­å®šç‚º %d
  å°‡ epilogue_begin è¨­å®šç‚ºçœŸ
  å°‡ is_stmt è¨­å®šç‚º %d
  å°‡ prologue_end è¨­å®šç‚ºçœŸ
  åœ¨ .debug_info å€æ®µä¸­å€åŸŸçš„大小:     %ld
  ç¨‹å¼æ¨™é ­å¤§å°ï¼š       %ld (位元組)
  å€æ®µæ¨™é ­å¤§å°ï¼š         %ld (位元組)
  æ­¤æ¨™é ­çš„大小:       %ld (位元組)
  ç‰¹æ®Šæ“ä½œç¢¼ %d: å¢žåŠ ä½å€ç”± %d åˆ° 0x%lx  æ¨™è¨˜        é¡žåž‹                         åç¨±/值
  é¡žåž‹           åç§»é‡             è™›æ“¬ä½å€           å¯¦é«”位址
  é¡žåž‹           åç§»é‡   è™›æ“¬ä½å€           å¯¦é«”位址          æª”案大小  è¨˜æ†¶å¤§å° æ——標 å°é½Š
  é¡žåž‹           åç§»é‡   è™›æ“¬ä½å€   å¯¦é«”位址 æª”案大小 è¨˜æ†¶å¤§å° æ——標 å°é½Š
  é¡žåž‹:                              %s
  æœªçŸ¥æ“ä½œç¢¼ %d æ‡‰ç”¨æ–¼é‹ç®—子:  ç‰ˆæœ¬ï¼š                              %d
  ç‰ˆæœ¬:                              %d %s
  ç‰ˆæœ¬:                              0x%lx
  ç‰ˆæœ¬ï¼š                %d
  [-X32]       - å¿½ç•¥ 64 ä½å…ƒç‰©ä»¶
  [-X32_64]    - æŽ¥å— 32 ä½å…ƒå’Œ 64 ä½å…ƒç‰©ä»¶
  [-X64]       - å¿½ç•¥ 32 ä½å…ƒç‰©ä»¶
  [-g]         - 32 ä½å…ƒå°åž‹ä¿å­˜æª”
  [N]          - ä½¿ç”¨åç¨±çš„實例 [數量]
  [號] åç¨±              é¡žåž‹             ä½å€              åç§»é‡
  [號] åç¨±              é¡žåž‹            ä½å€     åç§»   å¤§å°   å…¨ æ——標 é€£çµ è³‡  é½Š
  [號] åç¨±              é¡žåž‹            ä½å€            åç§»    å¤§å°   å…¨ æ¨™  é€£ è³‡  é½Š
  [P]          - åœ¨åŒ¹é…æ™‚使用完整的路徑名
  [S]          - ä¸è¦å»ºç«‹ç¬¦è™Ÿè¡¨
  [V]          - é¡¯ç¤ºç‰ˆæœ¬è™Ÿ
  [a]          - å°‡æª”案置於 [成員名] ä¹‹å¾Œ
  [b]          - å°‡æª”案置於 [成員名] ä¹‹å‰ (於 [i] ç›¸åŒ)
  [c]          - ä¸åœ¨å¿…須建立函式庫的時候提出警告
  [f]          - æˆªåŽ»æ’å…¥çš„æª”æ¡ˆåç¨±
  [o]          - ä¿ç•™åŽŸä¾†çš„æ—¥æœŸ
  [s]          - å»ºç«‹ä¿å­˜æª”索引 (cf. ranlib)
  [u]          - åªæ›¿æ›æ¯”目前保存檔內容更新的檔案
  [v]          - è¼¸å‡ºè¼ƒå¤šè³‡è¨Š
  d            - å¾žä¿å­˜æª”中刪除檔案
  å®šç¾©æ–°æª”案表條目
  m[ab]        - åœ¨ä¿å­˜æª”中移動檔案
  p            - åˆ—印在保存檔中找到的檔案
  q[f]         - å°‡æª”案快速追加到保存檔中
  r[ab][f][u]  - æ›¿æ›ä¿å­˜æª”中已有的檔案或加入新檔案
  t            - é¡¯ç¤ºä¿å­˜æª”的內容
  x[o]         - å¾žä¿å­˜æª”中分解檔案
 %lu ä½å…ƒçµ„的區塊: (檔案內之位元組)
 (檔案內之位元組)
  å€æ®µæ¨™é ­èµ·é»žï¼š                      (間接字串,偏移量:0x%lx): %s (開始 == çµæŸ) (開始 > çµæŸ) <%d><%lx>:縮寫編號:%lu (%s)
 ä½å€ï¼š ä½å€ï¼š0x å¿½ç•¥å¼•數 %s è‡³å°‘必須指定以下選項之一:
 å°‡ä½å€è½‰æ›æˆæª”案名/列號對。
 å°‡ç‰©ä»¶æª”案轉換為  NetWare å¯è¼‰å…¥æ¨¡çµ„
 è¤‡è£½äºŒé€²ä½æª”案,它可能在此過程中進行變換
 DW_MACINFO_define - åˆ—號:%d å·¨é›†ï¼š%s
 DW_MACINFO_end_file
 DW_MACINFO_start_file - åˆ—號:%d æª”案編號:%d
 DW_MACINFO_undef - åˆ—號:%d å·¨é›†ï¼š%s
 DW_MACINFO_vendor_ext - å¸¸æ•¸ï¼š%d å­—串:%s
 é¡¯ç¤ºé—œæ–¼ ELF æ ¼å¼æª”案內容的資訊
 é¡¯ç¤ºä¾†è‡ªç›®æ¨™ <檔案> çš„資訊。
 é¡¯ç¤º [檔案] (預設為標準輸入) ä¸­å¯åˆ—印的字串
 é¡¯ç¤ºäºŒé€²ä½æª”案中區段的大小
 ç”¢ç”Ÿç´¢å¼•以加快對保存檔的存取
 å¦‚果沒有在命令列中指定位址,就從標準輸入中讀取它們
 å¦‚果沒有指定輸入檔案,預設為 a.out
 é•·åº¦    ç·¨è™Ÿ     ç¸½è¨ˆä¹‹%%  è¦†è“‹åº¦
列舉 [檔案] ä¸­çš„符號 (預設為 a.out)。
 ç„¡
編號: åç¨±                           ç›¸ç´„束      æ——標
 åç§»é‡     è³‡è¨Š    é¡žåž‹                ç¬¦è™Ÿå€¼      ç¬¦è™Ÿåç¨±
 åç§»é‡     è³‡è¨Š    é¡žåž‹                ç¬¦è™Ÿå€¼      ç¬¦è™Ÿåç¨± + åŠ æ•¸
 åç§»é‡     è³‡è¨Š    é¡žåž‹            ç¬¦è™Ÿå€¼      ç¬¦è™Ÿåç¨±
 åç§»é‡     è³‡è¨Š    é¡žåž‹            ç¬¦è™Ÿå€¼      ç¬¦è™Ÿåç¨± + åŠ æ•¸
 é¸é …為:
  -a --all               ç­‰åŒæ–¼ï¼š-h -l -S -s -r -d -V -A -I
  -h --file-header       é¡¯ç¤º ELF æª”案標頭
  -l --program-headers   é¡¯ç¤ºç¨‹å¼æ¨™é ­
     --segments          --program-headers çš„別名
  -S --section-headers   é¡¯ç¤ºå€æ®µæ¨™é ­
     --sections          --section-headers çš„別名
  -g --section-groups    é¡¯ç¤ºå€æ®µç¾¤çµ„
  -e --headers           ç­‰åŒæ–¼ï¼š-h -l -S
  -s --syms              é¡¯ç¤ºç¬¦è™Ÿè¡¨
      --symbols          --syms çš„別名
  -n --notes             é¡¯ç¤ºæ ¸å¿ƒå‚™è¨» (如果有的話)
  -r --relocs            é¡¯ç¤ºé‡å®šä½ (如果有的話)
  -u --unwind            é¡¯ç¤ºå±•é–‹(unwind)資訊 (如果有的話)
  -d --dynamic           é¡¯ç¤ºå‹•態區段 (如果有的話)
  -V --version-info      é¡¯ç¤ºç‰ˆæœ¬å€æ®µ (如果有的話)
  -A --arch-specific     é¡¯ç¤ºç³»çµ±æž¶æ§‹ç‰¹æœ‰çš„資訊 (如果有的話)
  -D --use-dynamic       é¡¯ç¤ºç¬¦è™Ÿçš„æ™‚候使用動態區段資訊
  -x --hex-dump=<編號>   è¼¸å‡º <編號> å€æ®µçš„內容
  -w[liaprmfFsoR] æˆ–
  --debug-dump[=line,=info,=abbrev,=pubnames,=aranges,=macro,=frames,=str,=loc,=Ranges]
                         é¡¯ç¤º DWARF2 é™¤éŒ¯å€æ®µçš„內容
 åˆ—印適於閱讀的對 SYSROFF ç›®æ¨™æª”案的解釋
從檔案中刪除符號和區段
 é¸é …為:
 é¸é …為:
  -A|-B     --format={sysv|berkeley}  é¸æ“‡è¼¸å‡ºé¢¨æ ¼ (預設為 %s)
  -o|-d|-x  --radix={8|10|16}         ä»¥å…«é€²ä½ã€åé€²ä½æˆ–十六進位顯示數值
  -t        --totals                  é¡¯ç¤ºç¸½è¨ˆå¤§å° (只用於 Berkeley é¢¨æ ¼)
            --target=<bfdname>        è¨­å®šäºŒé€²ä½æª”案格式
  -h        --help                    é¡¯ç¤ºæœ¬è³‡è¨Š
  -v        --version                 é¡¯ç¤ºç¨‹å¼çš„版本號碼
 
 é¸é …為:
  -I --input-target=<bfdname>   è¨­å®šè¼¸å…¥äºŒé€²ä½æª”案格式
  -O --output-target=<bfdname>  è¨­å®šè¼¸å‡ºäºŒé€²ä½æª”案格式
  -T --header-file=<file>       å¾ž <file> ä¸­è®€å…¥ NLM é ­è³‡è¨Š
  -l --linker=<linker>          åœ¨æ‰€æœ‰é€£æŽ¥ä¸­ä½¿ç”¨ <linker>
  -d --debug                    åœ¨æ¨™æº–錯誤輸出中顯示連接器命令列
  -h --help                     é¡¯ç¤ºæœ¬è³‡è¨Š
  -v --version                  é¡¯ç¤ºç¨‹å¼çš„版本號
 é¸é …為:
  -a - --all                æŽƒçž„整個檔案,而非只有資料區段
  -f --print-file-name      åœ¨æ¯å€‹å­—串之前印出檔案的名稱
  -n --bytes=[number]       å®šå€ & å°å‡ºä»»ä½•以 NUL çµå°¾çš„序列於 number
  -<number>                 è‡³å°‘ [number] å€‹å­—å…ƒ (預設 4)
  -t --radix={o,d,x}        ä»¥å…«é€²ä½ã€åé€²ä½æˆ–十六進位印出字串位置
  -o                        --radix=o çš„別名
  -T --target=<BFDNAME>     æŒ‡å®šäºŒé€²ä½æª”案格式
  -e --encoding={s,S,b,l,B,L} é¸æ“‡å­—元大小與尾序:
                            s=7位元, S=8位元, {b,l}=16位元, {B,L}=32位元
  -h --help                 é¡¯ç¤ºæœ¬è³‡è¨Š
  -v --version              é¡¯ç¤ºç¨‹å¼çš„版本號碼
 é¸é …為:
  -a, --debug-syms       é¡¯ç¤ºåªç”¨æ–¼é™¤éŒ¯çš„符號
  -A, --print-file-name  åœ¨æ¯å€‹ç¬¦è™Ÿå‰å°å‡ºè¼¸å…¥æª”案名
  -B                     èˆ‡ --format=bsd ç›¸åŒ
  -C, --demangle[=STYLE] å°‡ä½ŽéšŽç¬¦è™Ÿåç¨±è§£ç¢¼ç‚ºç”¨æˆ¶éšŽå±¤åç¨±
                          å¦‚果指定 STYLE,STYLE å¯èƒ½ç‚ºã€Œauto」(預設)、
                         ã€Œgnu」、「lucid」、「arm」、「hp」、「edg」、
                         ã€Œgnu-v3」、「java」或「gnat」
      --no-demangle      ä¸è¦è§£ç¢¼ä½ŽéšŽç¬¦è™Ÿåç¨±
  -D, --dynamic          é¡¯ç¤ºå‹•態符號而不是普通符號
      --defined-only     åªé¡¯ç¤ºå·²å®šç¾©çš„符號
  -e                     (忽略)
  -f, --format=FORMAT    ä½¿ç”¨è¼¸å‡ºæ ¼å¼ FORMAT。FORMAT å¯èƒ½æ˜¯ã€Œbsd」、
                          ã€Œsysv」或「posix」。預設為「bsd」
  -g, --extern-only      åªé¡¯ç¤ºå¤–部符號
  -l, --line-numbers     ä½¿ç”¨é™¤éŒ¯è³‡è¨Šä»¥ä¾¿ç‚ºæ¯å€‹ç¬¦è™Ÿå°‹æ‰¾æª”案名和列號
  -n, --numeric-sort     æŒ‰ä½å€æŽ’序符號
  -o                     èˆ‡ -A ç›¸åŒ
  -p, --no-sort          ä¸è¦å°ç¬¦è™Ÿé€²è¡ŒæŽ’序
  -P, --portability      èˆ‡ --format=posix ç›¸åŒ
  -r, --reverse-sort     åè½‰æŽ’序順序
  -S, --print-size       åˆ—印定義了的符號的大小
  -s, --print-armap      åˆ—印保存檔成員中符號的索引
      --size-sort        æŒ‰å¤§å°æŽ’序符號
      --special-syms     åœ¨è¼¸å‡ºä¸­åŒ…含特殊符號
      --synthetic        åŒæ¨£ä¹Ÿé¡¯ç¤ºåˆæˆçš„符號
  -t, --radix=RADIX      å°‡ RADIX ç”¨æ–¼å°å‡ºç¬¦è™Ÿå€¼
      --target=BFDNAME   å°‡æ¨™çš„目標物件格式指定為 BFDNAME
  -u, --undefined-only   åªé¡¯ç¤ºæœªå®šç¾©çš„符號
  -X 32_64               (忽略)
  -h, --help             é¡¯ç¤ºæœ¬è³‡è¨Š
  -V, --version          é¡¯ç¤ºæœ¬ç¨‹å¼çš„版本號碼
 
 é¸é …為:
  -b --target=<bfdname>  è¨­å®šäºŒé€²åˆ¶æª”案格式
  -e --exe=<executable>  è¨­å®šè¼¸å…¥æª”案名 (預設為 a.out)
  -s --basenames         åŽ»é™¤ç›®éŒ„å
  -f --functions         é¡¯ç¤ºå‡½æ•¸å
  -C --demangle[=style]  è§£ç¢¼å‡½æ•¸å
  -h --help              é¡¯ç¤ºæœ¬è³‡è¨Š
  -v --version           é¡¯ç¤ºç¨‹åºçš„版本號
 
 é¸é …為:
  -h --help                    åˆ—印本求助資訊
  -V --version                 åˆ—印版本資訊
 é¸é …為:
  -h --help              é¡¯ç¤ºæœ¬æ±‚助資訊
  -v --version           é¡¯ç¤ºç¨‹åºçš„版本號
 
 é¸é …為:
  -h --help        é¡¯ç¤ºæœ¬è³‡è¨Š
  -v --version     åˆ—印程式的版本號碼
 é¸é …為:
  -i --input=<file>            æŒ‡åè¼¸å…¥æª”案
  -o --output=<file>           æŒ‡åè¼¸å‡ºæª”案
  -J --input-format=<format>   æŒ‡å®šè¼¸å…¥æ ¼å¼
  -O --output-format=<format>  æŒ‡å®šè¼¸å‡ºæ ¼å¼
  -F --target=<target>         æŒ‡å®š COFF ç›®æ¨™
     --preprocessor=<program>  ç”¨æ–¼å‰ç½®è™•理 rc æª”案的程式
  -I --include-dir=<dir>       å‰ç½®è™•理 rc æª”案時包含的目錄
  -D --define <sym>[=<val>]    å‰ç½®è™•理 rc æª”案時定義 SYM
  -U --undefine <sym>          å‰ç½®è™•理 rc æª”案時解除 SYM
  -v --verbose                 è©³ç´° - å‘Šè¨´æ‚¨æ­£åœ¨åšä»€éº¼
  -l --language=<val>          è®€å– rc æª”案時設定之語言
     --use-temp-file           ä½¿ç”¨è‡¨æ™‚檔案而非 popen ä¾†è®€å–前置處理器輸出
     --no-use-temp-file        ä½¿ç”¨ popen (預設)
 é¸é …為:
  -q --quick       (過期 - å¿½ç•¥)
  -n --noprescan   ä¸åŸ·è¡ŒæŽƒçž„以將 commons è½‰æ›ç‚º defs
  -d --debug       é¡¯ç¤ºé—œæ–¼å·²å®Œæˆäº‹ä»¶çš„資訊
  -h --help        é¡¯ç¤ºæœ¬è³‡è¨Š
  -v --version     åˆ—印程式的版本號碼
 [不具 DW_AT_frame_base]以及列號由 %d åˆ° %d
 ä½æ–¼åç§»é‡ 0x%lx å«æœ‰ %lu å€‹æ¢ç›®ï¼š
 ç‰¹å®šå‘½ä»¤ä¿®é£¾ç¬¦ï¼š
 å‘½ä»¤ï¼š
 æ¨¡æ“¬é¸é …:
 é€šç”¨ä¿®é£¾ç¬¦ï¼š
 ç¨‹å¼è§£è­¯å™¨ é¡žåž‹ï¼š%x,名稱大小:%08lx,描述大小:%08lx
#列號 %d %ld: .bf æœªå«å‰å°Žå‡½æ•¸%ld:意外的 .ef
%lu    %s
%s
 
%s %s%c0x%s å®Œå…¨æ²’用過%s %s:%s即要複製 %s åˆè¦åˆªé™¤å®ƒ%s ä»¥ç‹€æ…‹ %d é›¢é–‹%s ä¸æ˜¯æœ‰æ•ˆçš„保存檔區段 %s å…·æœ‰æ¯” .debug_info å€æ®µæ›´å¤šçš„編譯單元
區段 %s éœ€è¦å…¬é–‹çš„ .debug_info å€æ®µ
%s:%s:位址超出界限%s:無法打開輸入保存檔 %s
%s:無法打開輸出保存檔 %s
%s:錯誤:%s:讀入檔案頭標失敗
%s:匹配格式:%s:多次重複定義符號「%s」%s:從映像檔 '%s' ä¸­æˆªåŽ»è·¯å¾‘æˆåˆ†ã€‚%s:符號「%s」是多次重複定義的標的%s:警告:%s:不良的保存檔案名稱
%s:錯誤的編號:%s%s:無法從保存檔中得到位址%s:無法建立除錯區段:%s%s:無法找到模組檔案 %s
%s:無法打開檔案 %s
%s:無法設定除錯區段內容:%s%s:無法設置時間:%s%s:不知道如何為 %s å¯«å…¥é™¤éŒ¯è³‡è¨Š%s:複製 BFD ç§æœ‰è³‡æ–™å‡ºéŒ¯ï¼š%s%s:區段 %s ä¸­å‡ºéŒ¯ï¼š%s%s:執行 %s å¤±æ•—:%s:讀入保存檔標頭失敗
%s:讀入字串表失敗
%s:搜索至下一個保存檔標頭失敗
%s:跳過保存檔符號表失敗
%s:檔案 %s ä¸æ˜¯ä¿å­˜æª”
%s:fread å¤±æ•—%s: fseek åˆ° %lu æ“ä½œå¤±æ•—: %s%s:無效的保存檔字串表偏移量 %lu
%s:無效的輸出格式%s:無效的基數%s:沒有要更新的保存檔映射%s:未打開保存檔
%s:未打開輸出保存檔
%s:尚未指定輸出保存檔
%s:未識別的除錯資訊%s:沒有資源區段%s:沒有符號%s:不是動態物件%s:不足的二進位資料%s:列印除錯資訊失敗%s:讀取 %lu è¿”回 %lu%s:讀取:%s%s:區段「%s」:%s ä¸­å‡ºéŒ¯ï¼š%s%1$s: åœ¨å€æ®µ .rela%3$s ä¸­è·³éŽæ„å¤–的重定位符號類型 %2$s
%s:支援的系統架構:%s:支援的格式:%s:支援的目標:%s:檔案意外結尾%s:警告:%s:警告:共享函式庫不能含有未初始化的資料%s:警告:結構中「%s」欄位的大小未知%s:%d:%s
%s:%d: å¿½ç•¥æœ¬åˆ—所含無用資料%s:%d: åˆ—尾出現無用字元%s:%d: ç¼ºå°‘新的符號名稱%s:%d: æª”案末尾不完整「%s」「%s」不是一般的檔案
%s:無此檔案「%s」:找不到此檔案
(未知的定位操作碼)(使用者定義的定位操作碼)(聲明為內嵌並已內嵌)(聲明為內嵌但被忽略)(內嵌的)(位置列表)(非內嵌的)2 çš„補數,大尾序(big endian)2 çš„補數,小尾序(little endian):重覆的值
:應該是目錄
:應該是分支
<特定作業系統>:%d<毀損字串表索引:%3ld><沒有 .debug_str å€æ®µ><偏移量過大><特定處理器>:%d<字串表索引:%3ld><未知:%x><未知>:%d<未知>:%lx<未知>:%x已加入導出至輸出檔案正在加入導出至輸出檔案審查函式庫附加函式庫不支援的 BCD æµ®é»žé¡žåž‹BFD æ¨™é ­æª”案版本 %s
在群組區段「%s」中不良的 sh_info
在群組區段「%s」中不良的 sh_link
不良 stab: %s
未定義 C++ åŸºæœ¬é¡žåˆ¥å®¹å™¨ä¸­æ‰¾ä¸åˆ° C++ åŸºæœ¬é¡žåˆ¥å®¹å™¨ä¸­æ‰¾ä¸åˆ° C++ è³‡æ–™æˆå“¡C++ é è¨­å€¼ä¸åœ¨å‡½å¼ä¹‹ä¸­C++ ç‰©ä»¶æ²’有欄位C++ åƒè€ƒä¸æ˜¯æŒ‡æ¨™æ‰¾ä¸åˆ° C++ åƒè€ƒC++ éœæ…‹è™›æ“¬æ–¹æ³•CORE (核心檔案)無法添加 %s æ—é‚Šçš„空隙:%s無法反組譯系統架構 %s
無法填充 %s ä¹‹å¾Œçš„間隙:%s不具有 LIBRARY èˆ‡ NAME無法打開 .lib æª”案:%s無法打開 def æª”案:%s無法打開檔案 %s
無法使用支援的機器 %s無法不靠程式標頭而解譯虛擬位址
無法從保存檔中產生 mcore-elf å‹•態連接庫:%s配置檔案%s å€æ®µçš„內容:
 
%s å€æ®µçš„內容:
%s å€æ®µçš„內容:
 
.debug_loc å€æ®µçš„內容:
 
.debug_ranges å€æ®µçš„內容:
 
.debug_str å€æ®µçš„內容:
 
將 COFF ç›®æ¨™æª”案轉換為 SYSROFF ç›®æ¨™æª”案
版權所有 2005 è‡ªç”±è»Ÿé«”基金會。
無法找到「%s」的位置。錯誤訊息為:%s
無法取得損毀修復之內建類型
已建立的 lib æª”案正在建立函式庫檔案:%s正在建立佔位檔案:%s目前打開的保存檔是 %s
DLLTOOL åç¨±    ï¼š%s
DLLTOOL é¸é …    ï¼š%s
驅動器名稱      ï¼š%s
驅動器選項      ï¼š%s
當 sizeof (unsigned long) != 8 æ™‚,不支援 DW_FORM_data8
DYN (共享物件檔案)刪除臨時 base æª”案 %s刪除臨時 def æª”案 %s刪除臨時 exp æª”案 %s損毀後修復的名稱不是函數
依存審查函式庫反組譯 %s å€æ®µï¼š
尚不支援顯示 %s å€æ®µçš„除錯內容。
不知道關於本機器系統架構中重定位的情況
讀入 %s å®ŒæˆELF æª”頭:
EXEC (可執行檔案)序列結尾
 
進入點 éŒ¯èª¤ï¼Œé‡è¦†çš„ EXPORT ä»¥åŠåŽŸå§‹å‡ºè™•: %s排除符號:%s執行 %s å¤±æ•—FORMAT æ˜¯ rc、res æˆ– coff ä¹‹ä¸€ï¼Œåœ¨æœªæŒ‡å®šæ™‚根據檔案的擴展名進行判斷。
單一檔名被認為是輸入檔案。沒有輸入檔案時就使用標準輸入,預設格式
為 rc。沒有輸出檔案時就使用標準輸出,預設格式為 rc。
印出損毀修復之模版失敗
讀入存儲桶數量失敗
讀入鏈結數量失敗
檔案含有多個動態字串表
檔案含有多個動態符號表
檔案含有多個符號分頁索引表
過濾器函式庫旗標:已產生的導出檔案正在產生導出檔案:%sID ç›®éŒ„é …ç›®ID è³‡æºID å­ç›®éŒ„IEEE æ•¸å€¼æº¢å‡ºï¼š0xIEEE å­—串長度溢出:%u
IEEE ä¸æ”¯æ´çš„複數類型大小 %u
IEEE ä¸æ”¯æ´çš„æµ®é»žé¡žåž‹å¤§å° %u
IEEE ä¸æ”¯æ´çš„æ•´æ•¸é¡žåž‹å¤§å° %u
索引名稱          å¤§å°      VMA               LMA               æª”案關閉 å°é½Šç´¢å¼•名稱          å¤§å°      VMA       LMA       æª”案關閉  å°é½Šåœ¨ä¿å­˜æª” %s ä¸­ï¼š
輸入檔案「%s」並不可讀。
內部錯誤:DWARF ç‰ˆæœ¬è™Ÿç¢¼ä¸¦éž 2 æˆ– 3。
內部錯誤:未知的機器類型:%d無效的選項「-%c」
無效的 radix: %s
保留臨時 base æª”案 %s保留臨時 def æª”案 %s保留臨時 exp æª”案 %s旗標關鍵字:
  W (寫入), A (定位), X (執行), M (融合), S (字串)
  I (資訊), L (連結順序), G (群組), x (未知)
  O (要求額外的作業系統處理) o (特定作業系統), p (特定處理器)
LIBRARY:%s åŸºæ–¼ï¼š%x錯誤發生前最後的 stabs é€²å…¥é»žï¼š
函式庫路徑:[%s]函式庫執行路徑:[%s]函式庫檔名:[%s].debug_info å€æ®µä¸­çš„定位列表未依由小到大順序!
.debug_info å€æ®µä¸­çš„定位列表起始自 0x%lx
不支援架構「%s」多次將區段 %s æ”¹åå¿…須提供至少一個 -o æˆ– --dllname é¸é …名稱:%s åŸºæ–¼ï¼š%xNONE (無)NT_ARCH (系統架構)NT_AUXV (auxiliary å‘量)NT_FPREGS (浮點暫存器)NT_FPREGSET (浮點暫存器)NT_LWPSINFO (lwpsinfo_t çµæ§‹)NT_LWPSTATUS (lwpstatus_t çµæ§‹)NT_PRPSINFO (prpsinfo çµæ§‹)NT_PRSTATUS (prstatus çµæ§‹)NT_PRXFPREG (user_xfpregs çµæ§‹)NT_PSINFO (psinfo çµæ§‹)NT_PSTATUS (pstatus çµæ§‹)NT_TASKSTRUCT (任務結構)NT_VERSION (版本)NT_WIN32PSTATUS (win32_pstatus çµæ§‹)N_LBRAC ä¸åœ¨å‡½æ•¸ä¸­
名稱                  å€¼              é¡žåˆ¥         åž‹æ…‹         å¤§å°             åˆ—號  å€æ®µ
 
名稱                  å€¼      é¡žåˆ¥         åž‹æ…‹         å¤§å°     åˆ—號  å€æ®µ
 
名稱索引:%ld
名稱:%s
NetBSD procinfo çµæ§‹%s å€æ®µä¸å­˜åœ¨
 
  åœ¨ .debug_info å€æ®µä¸­æ²’有編譯單元?保存檔中沒有條目 %s。
在選項 -fo ä¹‹å¾Œæ²’有檔名。
.debug_info å€æ®µä¸­æ²’有定位列表!
"%s" æ²’有損壞
沒有名為「%s」的成員
核心檔案中沒有備註節區。
.debug_info å€æ®µä¸­æ²’有範圍列表!
無不是 ELF æª”案 - å®ƒé–‹é ­çš„魔術位元組錯誤
記憶體不足以容納 %u å€‹æ¢ç›®çš„除錯資訊陣列不需要的物件:[%s]
無事可做。
特定作業系統:(%x)只支援 -X 32_64目前只支援第二與第三版 DWARF çš„ arange。
目前只支援第二與第三版 DWARF çš„ pubname
目前只支援第二與第三版的 DWARF åˆ—資訊。
目前只支援第二與第三版 DWARF é™¤éŒ¯è³‡è¨Šã€‚
已打開的臨時檔案:%s特定作業系統:%lx選項 -I ç”¨åšè¨­å®šè¼¸å…¥æ ¼å¼å·²éŽæ™‚,請使用 -J ä»£æ›¿ã€‚
記憶體不足記憶體不足
分配 0x%x ä½å…ƒçµ„給 %s æ™‚產生記憶體不足
傾印需求表時記憶體定位不足。PT_FIRSTMACH+%dPT_GETFPREGS (fpreg çµæ§‹)PT_GETREGS (reg çµæ§‹)不支援 Pascal æª”案名已從 dll åç¨± '%s' ä¸­æˆªåŽ»è·¯å¾‘éƒ¨åˆ†ã€‚å°å‡ºé©æ–¼é–±è®€ä¹‹ SYSROFF ç›®æ¨™æª”案的解釋
已處理的 def æª”案已處理定義處理 def æª”案:%s正在處理定義特定處理器:%lx特定處理器:(%x)REL (可重定位檔案).debug_info å€æ®µä¸­çš„範圍列表未依由小到大順序!
.debug_ranges å€æ®µä¸­çš„範圍列表起始自 0x%lx
讀入 %2$s çš„ %1$s å€æ®µå¤±æ•—:%3$s將 bug å ±å‘Šåˆ° %s
將程式錯誤報告到 %s。
正在掃瞄目標檔案 %s沒有傾印區段 %d æ˜¯å› ç‚ºå®ƒå€‘並不存在!
區段標頭無法取用!
區段:
共享函式庫:[%s]跳過意外的重定位類型 %s
獨立應用程式從 %2$s ä¸­çš„ %1$s å€æ®µç²å–資訊支援的系統架構:支援的目標:def æª”案中語法錯誤 %s:%d列資訊似乎已損壞 - å€æ®µéŽå°
%s å€æ®µå«æœ‰ï¼š
%s å€æ®µå«æœ‰ï¼š
 
共有 %d å€‹å€æ®µæ¨™é ­ï¼Œå¾žåç§»é‡ 0x%lx é–‹å§‹ï¼š
在 .debug_loc å€æ®µä¸­æœ‰ä¸€å€‹æ¼æ´ž [0x%lx - 0x%lx]。
在 .debug_ranges å€æ®µä¸­æœ‰ä¸€å€‹æ¼æ´ž [0x%lx - 0x%lx]。
在 .debug_loc å€æ®µä¸­æœ‰ä¸€å€‹é‡ç–Š [0x%lx - 0x%lx]。
在 .debug_ranges å€æ®µä¸­æœ‰ä¸€å€‹é‡ç–Š [0x%lx - 0x%lx]。
本 readelf å¯¦ä¾‹æ–¼ç·¨è­¯æ™‚未加入 64 ä½å…ƒè³‡æ–™é¡žåž‹æ”¯æ´ï¼Œ
因而無法讀入 64 ä½å…ƒ ELF æª”案。
本程式是自由軟體;您可以按照 GNU é€šç”¨å…¬å…±è¨±å¯è­‰
的條款對其進行再發佈。本程式完全沒有任何擔保。
過多的 N_RBRAC
已嘗試「%s」
已試檔案:%s類型檔案編號 %d è¶…出範圍
類型索引編號 %d è¶…出範圍
未知:長度 %d
無法改變輸入檔案的結尾格式無法確定動態字串表的長度
無法確定要讀入的符號數量
無法找到程式解譯器名稱
無法找到 .debug_abbrev å€æ®µçš„位置!
無法在縮寫表中找到條目 %lu çš„位置
無法開啟基本檔案:%s無法打開目標檔案:%s無法打開臨時組譯檔案:%s無法讀入 %2$s çš„ 0x%1$x ä½å…ƒçµ„
無法讀入動態資料
無法確認輸入檔案 %s çš„æ ¼å¼ç„¡æ³•定位到 %2$s çš„ 0x%1$x
無法搜索到檔案末尾
無法搜索的檔案結尾!無法定位到動態資訊的起點未定義 N_EXCL意外的損毀修復變數
在 v3 å¼•數表修復損毀時有意外的類型
未處理的資料長度:%d
未知的 AT å€¼ï¼š%lx未知的 FORM å€¼ï¼š%lx未知的 TAG å€¼ï¼š%lx未知的備註類型:(0x%08x)無法識別的 XCOFF é¡žåž‹ %d
無法識別的除錯選項「%s」
無法識別的除錯區段:%s
無法識別的損毀修復組成 %d
無法識別的損毀修復之內建類型
無法識別的形式:%d
用法: %s <選項> <目標檔案>
用法:%s <選項> <檔案>
用法:%s <選項> è¼¸å…¥æª”案
用法:%s [模擬選項] [-]{dmpqrstx}[abcfilNoPsSuvV] [成員名] [計數] ä¿å­˜æª” æ–‡ä»¶...
用法:%s [選項] [位址]
用法:%s [選項] [檔案]
用法:%s [選項] [輸入檔案 [輸出檔案]]
用法:%s [選項] [輸入檔案] [輸出檔案]
用法:%s [選項] è¼¸å…¥æª”案
用法:%s [選項] è¼¸å…¥æª”案 [輸出檔案]
用法:%s [選項] ä¿å­˜æª”
用法:readelf <選項> elf-檔案
正使用「%s」
正在處理檔案:%s使用 popen è®€å…¥å‰ç½®è™•理器輸出
使用臨時檔案「%s」以讀入前置處理器輸出
同時使用 --size-sort èˆ‡ --undefined-only é¸é …「N」的值必須是正數。虛擬位址 0x%lx ä¸ä½æ–¼ä»»ä½• PT_LOAD ç¯€å€ä¸­ã€‚
警告,正在忽略重覆的 EXPORT %s %d,%d警告:%s:%s
警告:'%s' ä¸æ˜¯ä¸€èˆ¬æª”案警告:輸出檔案無法代表系統架構 %s警告:類型大小由 %d æ”¹ç‚º %d
警告:無法找到 %s çš„位置。原因:%s警告:二進位的系統架構參數需要輸入目標 'binary'警告:將間隙填充由 0x%s æˆªçŸ­åˆ° 0x%x[<未知>: 0x%x]「N」只在使用「x」和「d」選項的時候才有意義。「u」只在使用「r」選項的時候才有意義。加速鍵對齊額外機器碼索引值必須是正數。未知的系統架構 %s系統架構:%s,從前一個 .debug_info ä¸­çš„編譯單元,假定指標大小為 %d
 
不良的 ATN65 è¨˜éŒ„不良的 C++ æ¬„位位元位置或大小不良的動態符號%s æ ¼å¼éŒ¯èª¤ä¸è‰¯çš„ææ¯€åç¨±ã€Œ%s」
不良的雜項記錄不良的 C++ æ–¹æ³•函式類型遇到不正常的擴充型列操作碼!
bfd_coff_get_auxent å¤±æ•—:%sbfd_coff_get_syment å¤±æ•—:%s無法打開輸出檔案 %s結束時仍留在堆疊中的區塊位元組編號必須小於間斷值位元組編號必須是非負數無法確定檔案「%s」的類型;請使用 -J é¸é …無法建立區段「%s」:%s無法執行「%s」:%s無法得到 BFD_RELOC_RVA é‡å®šå‘類型無法開啟 %s「%s」:%s無法為輸出而開啟「%s」:%s無法開啟臨時檔案「%s」:%s無法 popen「%s」:%s無法讀入資源區段無法重定向標準輸出:「%s」:%s無法將 BFD é è¨­æ¨™çš„設置為「%s」:%s無法刪除 %s:%s無法為保存檔複製建立目錄 %s (錯誤:%s)無法開啟:%s:%s無法開啟輸入檔案 %s無法開啟:%s:%s衝突不具動態符號表卻發現衝突的表列遺漏 const/volatile æŒ‡ç¤ºç¬¦è™ŸæŽ§åˆ¶è³‡æ–™è¦æ±‚ DIALOGEX從 %s(%s) è¤‡è£½åˆ° %s(%s)
核心備註中位於偏移量 %x è™•發現損毀的備註
無法確定符號號碼「%ld」的類型
無法開啟符號重定義檔 %s (錯誤: %s)正在建立 %s游標游標檔案「%s」不含有游標資料自訂區段資料條目資料大小 %ld除錯區段資料debug_abbrev å€æ®µè³‡æ–™debug_add_to_current_namespace:沒有目前檔案debug_end_block:試圖關閉頂層區塊debug_end_block:沒有目前區塊debug_end_common_block:未實作debug_end_function:沒有目前函數debug_end_function:某些區塊沒有關閉debug_find_named_type:沒有目前編譯單元debug_get_real_type:關於 %s çš„循環除錯資訊
debug_loc å€æ®µè³‡æ–™debug_make_undefined_type:不支援的種類debug_name_type:沒有目前檔案debug_range å€æ®µè³‡æ–™debug_record_function:沒有 debug_set_filename å‘¼å«debug_record_label:未實作debug_record_line:沒有目前單元debug_record_parameter:沒有目前函數debug_record_variable:沒有目前檔案debug_start_block:沒有目前區塊debug_start_common_block:未實作debug_start_source:沒有 debug_set_filename å‘¼å«debug_str å€æ®µè³‡æ–™debug_tag_type:已嘗試更多的標記debug_tag_type:沒有目前檔案debug_write_type:遇到不正確類型對話框控制對話框控制資料對話框控制結束對話框字型點數大小對話框標頭對話框擴展控制對話框擴展字型資訊目錄目錄條目名稱動態區段動態字串表動態字串表示式堆疊不匹配表示式堆疊向上溢出表示式堆疊向下溢出從 .debug_info å€æ®µè§£é–‹è³‡è¨Šæ‰“開臨時標頭檔案失敗:%s打開臨時標尾檔案失敗:%sCOFF è¼¸å…¥éœ€è¦æª”名COFF è¼¸å‡ºéœ€è¦æª”名固定版本資訊旗標旗標 0x%08x:
字型目錄字型目錄設備名稱字型目錄字面名稱字型目錄標頭群組游標群組游標標頭群組圖示群組圖示標頭含有子格位輔助 ID è¦æ±‚ DIALOGEX輔助區段圖示檔案「%s」不含有圖示資料不正確選項 -- %c不正確的類型索引不正確的變數索引輸入輸出檔案必須不同同時在命令列和 INPUT ä¸­è¼¸å…¥æª”案名稱間斷值必須是正數。內部錯誤 -- è©²é¸é …尚未實現在 %s å…§éƒ¨ç‹€æ…‹éŒ¯èª¤--format çš„無效引數:%s無效的整數引數 %s無效的編號無效的編號 %s無效的選項「-f」
無效的字串長度函式庫清單函式庫字串表產生 .bss å€æ®µç”¢ç”Ÿ .nlmsections å€æ®µè£½ä½œå€æ®µè£½ä½œä¸­é¸å–®æ¨™é ­æ“´å±•選單標頭擴展選單偏移量選單細項選單細項標頭訊息區段遺漏的索引類型遺失必須的 ASN遺失必須的 ATN65模組區段多於一個動態節區
已命名的目錄條目已命名的資源已命名的子目錄在動態節區中沒有動態區段已損毀字串中沒有引數類型
沒有子格位保存檔中沒有條目 %s
保存檔 %2$s ä¸­æ²’有條目 %1$s!未提供導出定義檔案。
現在建立一個,但可能不是您所要的沒有關於符號號碼 %ld çš„資訊
沒有輸入檔案未指定輸入檔案輸出檔案沒有名稱沒有指定操作沒有資源無符號
對於 C++ æ–¹æ³•函式沒有類型資訊無備註以 null çµæŸçš„ unicode å­—串數值溢出選項解析重定位時記憶體不足以 %s ç‚ºæº–對齊重定位時發生溢出parse_coff_type:不良的類型碼 0x%x私有資料私有標頭資料程式標頭參考參數不是指標重定位資源 ID資源資料資源資料大小資源類型未知rpc å€æ®µå€æ®µ 0 åœ¨ç¾¤çµ„區段 [%5u] ä¹‹ä¸­
區段 [%5u] å·²åœ¨ç¾¤çµ„區段 [%5u] ä¹‹ä¸­
區段資料區段標頭設定 .bss vma設定 .data çš„大小設定 .nlmsection å…§å®¹è¨­å®š .nlmsections æ——標設定 .nlmsections å¤§å°è¨­å®šä½å€è‡³ 0x%lx
設定區段對齊設定區段旗標設定區段大小設定起始位址共享區段大小在區段 .rela.%2$s ä¸­è·³éŽæ„å¤–的重定位符號類型 %1$s
stab_int_type:錯誤大小 %u堆疊向上溢出堆疊向下溢出對位元圖檔案「%s」進行 stat æ“ä½œå¤±æ•—:%s對檔案「%s」進行 stat æ“ä½œå¤±æ•—:%s對字型檔案「%s」進行 stat æ“ä½œå¤±æ•—:%sstat å›žå‚³ %s çš„大小為負數字串表string_hash_lookup å¤±æ•—:%s字串表字串字串表字串長度佔位區段大小子行程收到致命信號 %d未將對於 %s çš„æ”¯æ´ç·¨è­¯é€²åŽ»æ”¯æ´çš„æ——æ¨™ï¼š%s符號資訊符號符號分頁索引在動態節區中未包含動態區段動態節區中的第一區段並非動態區段沒有可供複製的區段!指定了兩個不同的操作選項無法複製檔案「%s」,原因:%s無法打開輸出檔案 %s無法更改「%s」的名稱,原因:%s未定義的 C++ ç‰©ä»¶æœªå®šç¾©çš„ C++ vtableATN ä¸­æœªå®šç¾©çš„變數TY ä¸­æœªå®šç¾©çš„變量意外的 DIALOGEX ç‰ˆæœ¬ %d除錯資訊意外結束意外的固定版本資訊版本 %lu意外的固定版本資訊長度 %d意外的固定版本簽名 %lu意外的群組游標類型 %d意外的群組圖示類型 %d意外的編號意外的紀錄類型意外的 C++ é›œé …字串意外的字串檔資訊值長度 %d意外的變動檔資訊值長度 %d意外的版本字串意外的版本字串長度 %d != %d + %d意外的版本字串長度 %d < %d意外的版本字串表格值長度 %d意外的版本類型 %d意外的版本值長度 %d未知的 ATN é¡žåž‹æœªçŸ¥çš„ BB é¡žåž‹æœªçŸ¥çš„ C++ ç·¨ç¢¼åç¨±æœªçŸ¥çš„ C++ å¯è¦‹åº¦æœªçŸ¥çš„ TY ä»£ç¢¼ä¸æ˜Žçš„額外機器碼,將它忽略未知的內建類型未知的解碼(demangle)風格「%s」未知的格式類型「%s」未知的區段不明之做為基本類別的虚擬字元不明之做為基本類別的可見字元欄位中未知的可見字元未命名的 $vb é¡žåž‹ç„¡æ³•識別的 --endian é¡žåž‹ã€Œ%s」無法識別的 -E é¸é …無法識別的 C++ ç¸®å¯«ç„¡æ³•識別的 C++ é è¨­é¡žåž‹ç„¡æ³•識別的 C++ é›œé …紀錄無法識別的 C++ ç‰©ä»¶é ‚層規格無法識別的 C++ ç‰©ä»¶è¦æ ¼ç„¡æ³•識別的 C++ åƒè€ƒé¡žåž‹ç„¡æ³•識別的交叉參考類型不能識別的區段旗標「%s」不能識別的:%-7lx無法解析的以 %s ç‚ºæº–之 PC ç›¸å°é‡å®šä½ä¸æ”¯æ´ ATN11不支援 ATN12不支援的 C++ ç‰©ä»¶é¡žåž‹ä¸æ”¯æ´çš„ IEEE è¡¨ç¤ºå¼é‹ç®—子不支援的選單版本 %d不支援或未知的 DW_CFA_%d
不支援的限定符號展開的資訊展開表格版本資料版本定義版本定義外部版本定義區段版本長度 %d ä¸ç¬¦åˆè³‡æºé•·åº¦ %lu版本需要版本需要外部 (2)版本需要外部 (3)版本需要區段版本字串表版本符號資料版本變動資訊版本變動檔資訊vma等待:%s警告:未定義 CHECK å­ç¨‹åº %s警告:未定義 EXIT å­ç¨‹åº %s警告:不支援 FULLMAP;請試用 ld -M警告:未指定版本號警告:未定義 START å­ç¨‹åº %s警告:無法找到 '%s' çš„位置。系統錯誤訊息為:%s警告:輸入和輸出格式不相容警告:導入的符號 %s ä¸åœ¨å°Žå…¥åˆ—表中由於未定義的符號不具大小,將不會產生輸出正在寫入佔位區段