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
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
Þ•í„/ëì^˜~™~ ¬~Í~â~û~"+=i‰¡³&Æí €€ 3€T€ l€€'¥€̀7æ€=\m~ œ&¨(ρø;‚6Q‚Eˆ‚΂
ä‚ï‚F ƒ:Rƒ6ƒă1Ӄ,„.2„,a„Ž„„°„#ń#é„% …+3…*_…Š…œ…¯…)΅-ø…&†(@†i† y†…†2 †0ӆ,‡(1‡+Z‡%†‡.¬‡,ۇ+ˆ4ˆ?Eˆ6…ˆ1¼ˆ3îˆ"‰E4‰z‰T“‰è‰ ŠCŠBVŠA™Š=ۊE‹X_‹¼¸‹3uŒ8©ŒSâŒN6;…:ÁRü3OŽNƒŽ8ҎF GRšª ďЏãò!'0!XzŒ ²ΐáð    ‘ "‘0‘YN‘b¨‘ ’*&’Q’&c’<Š’3ǒ3û’:/“/j“Dš“2ߓ4”,G”4t”<©”5æ”7•5T•3Š•8¾•÷•+–8;–9t–8®–8ç–: —+[—0‡—0¸—2é—'˜8D˜"}˜0 ˜7јH    ™JR™9™Rי7*šLbš7¯š2çšR›:m›?¨›>è›='œ>eœ6¤œ<ۜ78P<‰<ƝIžNMž=œžHڞ)#Ÿ=MŸA‹Ÿ>͟   72 3j ž ´ Í æ û  ¡!¡>¡M¡@m¡8®¡ç¡÷¡ ¢ ¢8¢N¢3b¢–¢±¢$Ţꢣ£3£F£^£x£"ˆ£&«£¯Ò£ç‚¤9j¦+¤¦AЦ³§)Ƨâð¨¡Ó§uÈÍËMëÑq9Ùé«Ù¹•Ú*OÛ(zÛ
£Û®ÛÊÛæÛ$Ü(+Ü-TÜ(‚Ü
«Ü¶Ü"ÊÜíÜ"õÜ/Ý(HÝqÝ%Ý³ÝÊÝ éÝ
õÝÞ-Þ6ÞPÞdÞ"{Þ+žÞ#ÊÞ îÞ"ß"2ß(Uß ~ß"Šß"­ßÐß áßà#à_;àB›à:Þà!á ;á(Iá(rá(›áHÄáQ â-_â"â%°â"Öâ%ùâ ã@ã"Yã|ãã­ãÅã"åãä4ä#Täxä(ä¸äÏä3ïä#å5åFåYåmå‹å å+¼å1èå1æ1Læ2~æ6±æèæ5þæ@4ç\uçJÒç(èFè#Yè}è&™è)Àè*êè+é+Aé"méé(°é/Ùé(    ê&2ê7Yê.‘ê ÀêCÍêQëYcë3½ë-ñë%ìEì,Yì1†ì@¸ì>ùì.8í)gí6‘íQÈíî17îiîˆî¡îºî-Óî!ï#ï<ïUïjïƒï˜ï4­ï5âïIðbð‚ð+ ðÌðåðþð-ñEñañ2zñ    ­ñ·ñÈñÞñ8òñ    +ò5ò$Mòròò‘ò¡ò°òÈòÙòøò
ó#ó    +ó75ómó5ƒó7¹ó?ñó,1ô^ô0tô+¥ô3Ñôõõ..õ7]õ•õ2­õCàõ3$ö-Xö6†ö<½ö,úö;'÷4c÷
˜÷/£÷Ó÷Qå÷57ømø*}ø/¨øØøéø úøù^!ù€ù’ù7™ùBÑùKú9`úBšú;Ýú=-)k•©E¼7    O
÷YtQÜÆN£Jòœ=®Ú‰£ ·$Øý7N'S{” ²¾Ôéù !6-E
s ~Š#š¾ÓØò     $ = V j „ ”  ² !Ó  õ ! !'@!!h!$Š!¯!(Å!5î!3$"7X"%"%¶"&Ü"##)'# Q#_#z##­#Ì#ä#%ÿ#%$(=$@f$§$"Ä$:ç$!"%.D%1s%@¥%%æ%& &+3&*_&%Š&(°&Ù&ø&    '#%'$I'n'ˆ'$š'%¿'å'(($3('X(€(˜(§(À()Û() ")/)L)c)cz),Þ) *_+*/‹*»* Î*=Ü*2+*M+#x+œ+»+Ø+Ý+û+,*",M,+l,*˜,Ã, Ù,ç,!-$-5- E- f-‡-    ¤-®- ¾-Ì- Û- é-õ- ..1.@.U.j.~.    . —. £.¯. ¸. Æ.Ô. æ. ô. /#/I4/)~/¨/±/º/Õ/ó/
00020":0]0u0…0˜0¶0Ï0Þ0"ð01$151E1    U1_1    w11ˆ1 œ1¨1Á1Ü1ò1 2    2 2'2 62D20T2…2Œ2©2Ç2Ï2 Ô2á2ú2 3323D3a3"}3" 3 Ã3Ñ3â3K÷3C4%^4&„4$«4Ð4é45585DI5 Ž5š5£5Â5ß5û5606<D626#´6%Ø6þ67+7C7`76~7.µ7%ä7"
8/-81]868$Æ8ë8ü89-9 I9IV9 9¶9Ì9â9ø9::(: c:B„:.Ç:ö:#;63;2j;    ;V§;Xþ;/W<‡<§<Æ<!å<=B =:c=ž=+®=Ú=ë= ý=$
>'/>W>n> €>>)£>Í>ß>ô>Ò ?&Þ?#@$)@#N@<r@¯@-À@-î@+A HAEVAœA«AʲA?}C    ½CÇCÞCùCD D!'DIDhD‡D›D ®DºDÊD äD&E$,E&QENxE>ÇEF.FDFDTF™F ¡F!ÂF6äFG02G(cGNŒG$ÛG!H%"HHH^HqH…H¤HÂHÞàHé¿I©J!¾JàJôJ
KK9KIK^KnK:~K+¹K
åKðK LL(L,9L"fLT‰LÞL4ýL2MDM JMVMmMŒM$§M&ÌM óM+N"@N/cN"“N$¶N"ÛNþN O >O$_O„O¡O%ÀO.æO%P#;P-_P0P(¾PçPQQ;QSQrQ‹Q£Q¾QÖQñQ R)&R(PRyR–R`›RPüRMS    ^S"hS‹SS©SÁSßS&øS*TJT`T+vT'¢TÊTÏT<ÕT6UIU    bUlU|UTŽU5ãUV44V4iV@žV<ßVW6WMUW£W,²W-ßW3 X@AX?‚X9ÂX.üX+Y1YPYkY,ŠY3·Y?ëY)+ZUZrZ…Z›Z³ZÊZâZûZ)[+<[h[    [‰[ š[¦[¿[Ò[1æ[
\ #\/\5G\5}\7³\ë\-ÿ\#-]
Q]F\]K£]ï]^/!^'Q^ y^…^”^¤^³^%Ë^ñ^
__&_D_"W_z_™_2Ÿ_OÒ_?"`8b`4›`/Ð`7a38a;laq¨awbÒbVcfc yc…c”c$šc¿c!Äc"æc    dd    /d9d,Md>zd;¹d2õd((eRQe¤eÂe"ße+f$.fSf(sf&œf5Ãfùfg8g/Xgˆg™gªg)Èg7òg*hEh[hsh†hh²hÌhæhii%iAiai#i$¥iÊiâiüi&j =j!^j!€j|¢jjk Šk «k+Ìk#øk1lNl)ml—l'´l Ülèl(÷l6 m;Wm“m¢m Âm5Ïmn:nVn ^n+kn9—nÑn9ân%o*Bo+mo6™o.Ðoÿop#p8pKp^prpzpŽp ”p4¡p*Öp+q$-q Rq^qvq    ‰q “q
¡q¬q½qÛqïqrr(r 7r+Xr„r£r&Âr(ér
ss$s(@s is6ŠsÁsÓs&êst0t&Jtqt'ˆt°tÇt"æt    uu(>u$guŒu%ªu5Ðuv#v?vTvnv‚v•v¨vÆvßvüvw/wKw ew†w£w¼wIÕwx$x3-x ax‚x!¡x+Ãx1ïx5!y6Wy2Žy5Áy ÷yz-
z8z
Gz Rz/`z1z!Âz'äz' {/4{2d{7—{+Ï{ û{1|#N|"r|+•|&Á|#è|) }.6}#e}‰}*©}Ô}ã}÷}
~ !~/~@~    Z~d~!y~4›~Ð~à~!ý~6K[n~¬)É(ó#€9@€9z€´€΀老&?*f&‘*¸3あ/‚B‚ T‚!u‚—‚ª‚‚тقí‚ÿ‚ƒ !ƒ.ƒ
BƒMƒ _ƒlƒ †ƒ)“ƒ½ƒ܃ïƒ(„'/„4W„Œ„-¨„Aք!…-:…h… ‚…£… À…á… ý…†-†@†.V† …†‘†¦†»† ц߆ñ† ‡ ‡ $‡ 2‡@‡I‡Y‡i‡|‡‘‡¨‡·‡ևì‡û‡+ˆ:ˆVˆrˆ$Žˆ ³ˆ¿ˆ׈Sòˆ%F‰ l‰z‰’‰ª‰ Á‰ Ή+ډŠ Š=ŠRŠXŠ4wЬР½Š ʊ.֊‹ ‹!+‹-M‹#{‹
Ÿ‹ ª‹c¶‹]ŒxŒŽŒžŒ#°Œ$ԌùŒ  "0C Y
e8pF©@ðF1ŽxŽ!–Ž=¸ŽDöŽ; L!Y{ ‹˜§À֏돐,=Ocr    {7…=½Fû;B‘ ~‘Œ‘§‘¶‘#Ƒê‘!’#)’ M’Z’x’‹’¥’º’Βî’“ “?“S“f“„“'Œ“A´“Fö“:=”;x”´”)ϔ8ù”$2•$W•|•(š•Õ!á•––-–G–`–'–)§–/і&—(—H—f—x——*­—'ؗ˜1˜*L˜/w˜§˜#˜æ˜î˜ÿ˜™(™?™X™h™}™›™´™&љ ø™ šš0š'@š*hš&“šºš˚ëš› ›>›%[››ž›!¾›à›ÿ›'œ;œMœ_œ${œ œ@¼œýœ   +8G O \hx4“ ȝ՝êÿž#ž7žKž\žpž'yž&¡ž,Ȟ õž'ŸI>Ÿ9ˆŸ9Ÿ4üŸ01 2b =•  Ó  à &ì £(1£Z£r£5Ž£9Ä£@þ£!?¤a¤|¤‹¤6¨¤ߤþ¤)¥#:¥^¥!u¥—¥6²¥$é¥2¦JA¦Œ¦£¦(»¦ ä¦0ñ¦7"§Z§Sr§AƧU¨^¨|¨.Œ¨^»¨R©Pm©¾©=Ø©BªEYª6Ÿª ֪䪫%«1E«0w«;¨«-䫬)¬"@¬1c¬:•¬Ь0ﬠ­ 5­B­E]­D£­?è­<(®/e®)•®3¿®0ó®1$¯V¯Nf¯Aµ¯@÷¯=8°v°Hް×°Rô° G± h±Gu±@½±Lþ±BK²R޲yá²Ð[³Q,´c~´\â´w?µc·µQ¶vm¶9ä¶^·T}·iÒ·j<¸§¸.»¸ê¸ú¸¹)¹#C¹-g¹+•¹Á¹Ó¹ç¹û¹º5ºDº_º ~ºŒº`ªºo »{».—»Æ»&ß»R¼EY¼MŸ¼]í¼KK½W—½;ï½Q+¾I}¾AǾC    ¿WM¿Y¥¿Dÿ¿7DÀC|ÀÀÀ0ÕÀOÁIVÁ< Á<ÝÁHÂ=cÂO¡ÂBñÂF4Ã3{Ã6¯Ã,æÃ5ÄHIÄO’ÄWâÄM:ÅVˆÅ@ßÅp ÆU‘ÆMçÆk5ÇB¡ÇWäÇ_<È@œÈVÝÈF4É[{É5×ÉD ÊJRÊGÊLåÊb2ËY•ËbïË1RÌ@„ÌOÅÌOÍeÍ}Í=•Í=ÓÍ$Î%6Î#\΀ΔΨΠÁÎâÎýÎJÏDhÏ­ÏÂÏáÏðÏÐ+Ð9EРРÐ(´ÐÝÐóÐÑ%Ñ=ÑZÑqÑ2Ñ:´ÑÏïÑF¿Ò?Õ1FÕUxÕÁÎÕ}ÖlØÂ{÷’>Ò    Ñ÷¤ jœ#è+?-T ‚%°)ÖGKHn”) -;%Sy'‚Mª/ø(,H.u&¤ËÜì-ó!?U/u2¥!Øú('B%j8¡/Ú
7&^/}­N> H )Ö  !<!,K!(x!L¡![î!)J"(t"+")É",ó"% #&F#.m#œ#3³#ç#($4*$3_$p“$*%/%5K%%+¡%BÍ%&(&@&Z&At&¶&KÒ&9'?X'6˜'3Ï'N(RR(¥(:º(Jõ(c@)c¤)+*+4*?`** *9Ë*3+/9+0i+0š+(Ë+$ô+?,XY,?²,$ò,E-8]- –-G£-]ë-gI.F±.9ø./2/!b/=„/BÂ/T0OZ09ª00ä0=1dS1%¸1)Þ152>2&[2$‚23§2.Û2!
3,3E3^3z3—38¬38å3X4;w4³4+Ñ4!ý45<55U5*‹5¶5+Ô5    6
6646CL6    6š68¶6ï67717!D7f7"w7š7$®7
Ó7 Þ7Ië758OS8j£8L9G[9-£9WÑ9L):Xv:Ï:ã:1ø::*;e;:};L¸;9<0?<9p<Lª<@÷<q8=Lª=÷=D>L>[h>>Ä>?0?VH?Ÿ?»?,Ï?ü?@“@ ¦@<³@Hð@U9A@ALÐAT    BrKvK.L6LSL»bLOÇ2RmúU¨h\bè¯bƘgC_i
£iÆ®l-um$£m0Èm4ùm.n-Mn{n™n3¡n"Õn-øn    &o0oKofo%…o«o#Àoäo5üo
2p =pIp'\p„p p'¥p!Íp1ïp%!q#Gq&kq)’q¼q*Òq.ýq/,r \r-hr(–r1¿rIñr7;sssDŽsmÓsHAtGŠt.Òt.u/0u,`u4uÂu Õuöu6 v-Bv#pv ”v,µv&âv9    wQCw(•w'¾wFæw&-x8Tx5x]Ãx6!y*Xy8ƒy<¼y5ùy0/z2`z“z¨z0Æz1÷z1){[{2z{3­{/á{"|/4|(d|3|"Á|ä|1þ|(0}1Y}*‹}¶}&Å}(ì} ~†6~?½~'ý~d%:Š/Åõd€Lm€:º€)õ€$-Dr8w%°&ց3ý41‚5f‚@œ‚#݂ƒ9ƒ5Lƒ‚ƒ¢ƒ6¼ƒ/óƒ/#„S„j„„Ÿ„²„Ą#ۄ!ÿ„!…9…S…k…&‹…²…҅æ…ý… ††4(†E]†£†·†Ն.é†\‡Fu‡¼‡Ň.·.ý‡%,ˆRˆ[ˆ%cˆ‰ˆ&‘ˆ¸ˆֈñˆ‰&‰?‰*Y‰.„‰³‰ljۉî‰ ŠŠ -Š;ŠDŠ ^Š%jŠ"Š³ŠӊåŠ ÷Š‹‹'‹8‹NK‹
š‹8¥‹8ދ Œ $Œ 0Œ1>ŒpŒŠŒ¡Œ¼Œ+Ό%úŒ5 6V ›¬bʍ)-Ž9WŽ@‘Ž5Ҏ(,1#^‚ l¶ #/980r6£8ڐ.‘B‘Zb‘>½‘1ü‘9.’h’~’›’·’Ԓdò’?W“/—“*ǓGò“F:”@”A” •%%•K•(j• “•Z • û•–%5–)[–<…–5–@ø–29—fl—2ӗ+˜92˜Ql˜N¾˜ ™s(™uœ™Dš.Wš3†š.ºš,éš.›QE›G—›ߛ=õ›3œDœ^œ*qœ0œœ(͜öœ    ,8D}"“"¶cٝ2=Ÿ)pŸ šŸ!»Ÿ^ݟ< 0U 3† -º è Uû Q¡c¡)j¡@”£    Õ£ߣ&þ£%¤+6¤?b¤R¢¤Nõ¤ND¥I“¥Ý¥ø¥¦¦"6¦BY¦;œ¦BئR§Bn§±§3ɧý§V¨ g¨3t¨5¨¨GÞ¨&©BD©-‡©vµ©1,ª^ª=}ª$»ªàª«/«4N«/ƒ«-³«7ᬮP7®ˆ® ®º®Ó®ñ®-¯6¯L¯Xg¯=À¯
þ¯    ° %°1°I°8]°2–°wɰ-A±Lo±¼±Ó±Û±í±²#²*<²,g²'”²A¼²'þ²7&³1^³6³"dzê³-    ´07´(h´)‘´.»´2ê´.µ+Lµ*xµ,£µ;е. ¶%;¶a¶+{¶§¶ƶæ¶··8·W·u·"·;³·3ï·(#¸L¸hQ¸Xº¸¹    *¹*4¹_¹4c¹˜¹4³¹&è¹5ºTEº&šº!Áº8ãºT»
q»|»`„»Lå»+2¼ ^¼l¼ˆ¼‚¥¼[(½!„½]¦½]¾Nb¾X±¾$
¿)/¿iY¿ÿ:Ü¿AÀRYÀX¬ÀVÁO\ÁC¬ÁðÁ,Â".Â-QÂBÂMÂÂYÃ(jÃ/“Ã&ÃÃ'êÃ+Ä(>Ä$gÄ%ŒÄ,²Ä>ßÄ:Å#YÅ}őЦųÅÒÅñÅGÆ
YÆ dÆ(pÆL™Æ<æÆ>#ÇbÇDxÇ(½ÇæÇPïÇQ@È’ÈL°ÈPýÈ<NÉ>‹ÉÊÉãÉùÉ3Ê5GÊ"}ʠʽÊ(ÆÊïÊ&    Ë:0ËkËHËHÈË3ÌCEÌ9‰Ì0ÃÌQôÌ>FÍ_…Í’åÍšxÎÏ#Ð@ÐXÐiЂÐ0ŠÐ»Ð2ÂÐ4õÐ*ÑEÑ YÑeÑY‚ÑSÜÑG0Ò9xÒ;²ÒXîÒ&GÓ)nÓ3˜Ó<ÌÓ-    Ô-7ÔBeÔ.¨Ô;×Ô(Õ3<Õ:pÕ=«ÕéÕÖ9'ÖOaÖh±Ö8×S×)q×›×'´×Ü×üר%7Ø]ØvØ!“Ø-µØ'ãØ- Ù?9ÙyÙ—Ù$·Ù?ÜÙ0Ú6MÚ9„Úš¾ÚˆYÛ4âÛ0ÜGHÜ1ÜGÂÜ2
ÝE=Ý"ƒÝ7¦ÝÞÝðÝA
ÞWLÞK¤ÞðÞ+ß0ßIBß Œß[­ß    à à8#àJ\à§àT½à<áDOá9”áDÎáIâ]â-câ‘â¦â¹âÏâ áâ/îâã'ã9<ã1vã1¨ã.Úã    ää0äCäTä fätä.ˆä·äÏäéäåå&+å3Rå$†å$«å4Ðå:æ
@æKæ>Ræ1‘æÃæUâæ8çRç9qç$«çÐçDïç#4èCXèœè+ºè1æèé?4é;té6°é0çé5êONêžê<·êôê,ë<ëWë!uë*—ë'Âë<êë3'ì.[ì,Šì*·ì5âì(í$Aí(fíuíî    îJî0`î2‘î$Äî4éîKïMjï@¸ï8ùïJ2ð}ð
Œð>—ð ÖðäðýðpñP‰ñPÚñ++ò_Wòa·ònóYˆósâó3VôŠô'õRBõ]•õVóõSJö-žö‹ÌöJX÷L£÷Lð÷=ø*\ø*‡ø.²øáø'ýø/%ù
Uù`ù'}ù4¥ùÚù(éù&ú9úPúgúwú'‰ú±ú0Íú2þú21û2dû.—ûBÆû=    ü Gühü$„ü"©üÌü,ìüHý,bý=ý<Íý
þ*þBþ8Sþ2Œþ$¿þäþ ÿÿ)&ÿ(Pÿ$yÿžÿ³ÿÄÿâÿ"øÿ++WHj!³(Õ(þ1'4YPŽ%ßMNS(¢7Ë4B8%{5¡:×0C#^&‚ˆ©2B%]ƒ ™§» ×ä þ @Ss‰¤¾Ú!ê  -CC[*Ÿ*Ê*õ7 X%g(ƒ¶.:     i    #Š    *®    Ù    ñ        
8 
 
Y
 d
hr
Û
4ä
I c v ’ A¤  æ Wò J Ci >­ ì  ü ¯ ¸¸ q!ˆª)¿2é,I_#xœ
» ÆDÔJJdr¯"">?aH¡êü1AU#e‰© É3ê5K c„  ³ÁWÔ`,n\ü Y;g £±>È1>9Ex¾BÍ.J"e<ˆÅ<Ü&"@c.y
¨G³Jû_F3¦WÚ"22U^ˆ2ç/+J:v'±(Ù14+T3€.´=ã5!EW7*Õ/0 I=jH¨Fñ$8B]; GÜ&$ 8K 
„  ¥ º Ò $ò !)!&C!%j!&!%·!Ý! ì!' "5"-G"Cu"<¹"ö":#!K#'m#,•#,Â#:ï#3*$+^$*Š$!µ$×$Sï$C%c%4ƒ%7¸%7ð%ˆ(&(±&Ú&í& ÿ& '    ,'6'O'c'"}'V '÷'
('(D(Y(u(#‘(µ('Ó(
û(M)HT):)9Ø)O*\b*S¿*P+Od+>´+Uó+`I,ª,¹,ñCDZlmz`òR©2ЫÝ0§¢ˆ¤Z^Ýs8 À&(*Sa+‘% gh2¸¨ÝÕ¨æ@`·]ö–©åà¯Ë¸
¹¾rYY|ŠÉÙÅçÅ¢x'í<åEA^´9?Záý¨³¤AáMÒs(§#¤;¦ödžXµk+…]òeÆž+3“Í[h¾y Ú¿3#£oL5'­Êji'N«ÂÐöø–àO‚T\š.ðVí·v˜´ßÓ+nßÀ<Õ÷)ܐØkZúxKÒÊr©ON-2×% ÈG¢k%±’1ý->ÚµAšÞt”„C=ùcßìI¸d,éçÁ*ÎdEN7dºÕ§˜dFÿê$ì#"è9„˜<áíÌG•4n…‹Ô1%| ™”lÈõp’´¾êE Æ·¿Ô ¶ü[uOÅ!  0Jή!ÝAô_HMV£+_Uþ    eHPôV    9ÑO¹¼(FÞωL¬‘k0]¬FßçgÃÞqH¬JªÕoÛ*`¦N«f.ºBÆÔpMÖŠ-V®šs±0ƒ8Óg±ÈX<»„™Í1ç,?XèÇ¡÷]–y¹*ŸãNÄð¯bf&ÿqÙæP:TÆwc…Ö/Š=ÄKl¹T·    {7¥®\{(WÉï\V‚‹í'‘ûgõ6TºKx¬5ŒÐ$™“Q¸2mHǯ~‡ûþ
yŸ¿Á>Úqý«Rÿ°’²Á&Äú ÏåK¸™Ir6;J»ò¦óŒJ"‹C™›‰ZFÅ8‰@A’=4ðŸø\H␤9E¯È6ŸÔzU»†ÛIŒwG~Y½áäÀxW :Á°/Å#ΛÉóC%v_s!Ú)Ñë⳩îà Sfó=}ûå.B»³®½‚R€a¶äƒÐWáDMôeËèSÐŽ\²zÍû5¾ø2Ù’ª"ãðx,åùR×ò‰wq•u@B9,—ÞcŠ>Ícb}€+àÚ†í|e—þËì7ãS  £üq¦–À{ƒ­±þg¼r7n@.†üQb?¥†~Ï)    ImÏ摈=܊;y­jØ,¬É|ðô¨Öõ@6õL‹äœ•ïb‡¶€Ï‚
–)$T„}ïûµIOꔣèKQc䀳i°¼*oMƒ‰P•5DìÑ).é2  m 
ž®pè)Êîžz¼½RàßEa kuv¿¡Ò#Èaª€-›úœ]$¾Ø±Ý¿;Çñ"Êys~êâQŸ14YÁœB“çìà} Qˆ×îboòÔ9êë6fØYýmóÞÕ‡i!æ    ù_¦kéž`ÎQéj läiâÿ“@¼oý‡›¾£YŒzA{²ŽDU'ëèÛ†p÷ãPËËÛÀ“t|G?pÙ  ÍŽæÂFhÜwpª°Àº:Ë…l^ˆž[‹å¡¿§[â‘$:>Ç*ÇbK<Í3ø²ÊŸÝ¢P0òš‘fÃa·²Fíž$u(Š,ܺ^½Åñ‹Uï1:Úx³¯-ƒ `z§½—s3·H^öÌ­mh4tƒZ NœÀi58ôyߢ¥0×ÑùÌWnG gÉúÙät¡]U{“ÐÜÄD:Œ#(ÓøóvhŽ|W4ü{¨[³ôXLµvãÖ¬®v™ãëh     B¹•—Jµ„¼}8ë/S˜Ü´X­¥L_M©Ûrnÿ.ɘ­ˆšœ‰L>ˆïñÙ!jed°¡Ì ¤%šP¯r
Ó”½dÄtÂÔÓ!áR1¦¡…
–Æi”w`¥"ùº§¶>"O•3_3'?«Î„&µc»çÂ-/»´ÖþŒÛÒ~B¤=;±ÒjTnÑEñ\IõVü؜5UÛÄ”«[q¶&aª¸£‡/ë©×C6l¹W¨ú…o^Þ 7Ì ÁîC/‚Ò ~fD}âJuÈj‚÷˜GSØÓêöÑÕÖe8wé̶ŽÊtu—éÏ7×¥&X<’æ4;ª÷›ìư¢?·—    Unknown version.
   codepage settings are ignored.
 
 
Symbols from %s:
 
 
 
Symbols from %s[%s]:
 
 
 
Undefined symbols from %s:
 
 
 
Undefined symbols from %s[%s]:
 
 
      [Requesting program interpreter: %s]
    Address            Length
 
    Address    Length
 
    Offset    Name
 
   Link flags  : 
  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
 
%sgroup section [%5u] `%s' [%s] contains %u sections:
 
'%s' relocation section at offset 0x%lx contains %ld bytes:
 
Address table:
 
Archive index:
 
Assembly dump of section %s
 
CU table:
 
Can't get contents for section '%s'.
 
Could not find unwind info section for 
Disassembly 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 `.gnu.hash' bucket list length (total of %lu buckets):
 
Histogram for bucket list length (total of %lu buckets):
 
Image fixups for needed library #%d: %s - ident: %lx
 
Image relocs
 
Library list section '%s' contains %lu entries:
 
No version information found in this file.
 
Notes at offset 0x%08lx with length 0x%08lx:
 
Options supported for -P/--private switch:
 
Primary GOT:
 
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 '.liblist' contains %lu entries:
 
Section Header:
 
Section Headers:
 
String dump of section '%s':
 
Symbol table '%s' contains %lu entries:
 
Symbol table '%s' has a sh_entsize of zero!
 
Symbol table for image:
 
Symbol table of `.gnu.hash' for image:
 
Symbol table:
 
TU table:
 
The %s 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 sections to group in this file.
 
There are no unwind sections in this file.
 
There is no dynamic section in this file.
 
Unwind section 
Unwind table index '%s' at offset 0x%lx contains %lu entries:
 
Version definition section '%s' contains %u entries:
 
Version needs section '%s' contains %u entries:
 
Version symbols section '%s' contains %d entries:
 
start address 0x                 FileSiz            MemSiz              Flags  Align
            Flags: %08x         possible <machine>: arm[_interwork], i386, mcore[-elf]{-le|-be}, ppc, thumb
       %s -M [<mri-script]
       Flags
       Size              EntSize          Flags  Link  Info  Align
       Size              EntSize          Info              Align
       Type              Address          Offset            Link
       Type            Addr     Off    Size   ES   Lk Inf Al
       Type            Address          Off    Size   ES   Lk Inf Al
      --add-stdcall-underscore Add underscores to stdcall symbols in interface library.
      --dwarf-depth=N        Do not display DIEs at depth N or greater
      --dwarf-start=N        Display DIEs starting with N, at the same depth
                             or deeper
 
      --exclude-symbols <list> Don't export <list>
      --export-all-symbols   Export all symbols to .def
      --identify-strict      Causes --identify to report error when multiple DLLs.
      --leading-underscore   All symbols should be prefixed by an underscore.
      --no-default-excludes  Clear default exclude symbols
      --no-export-all-symbols  Only export listed symbols
      --no-leading-underscore All symbols shouldn't be prefixed by an underscore.
      --plugin NAME      Load the specified plugin
      --use-nul-prefixed-import-tables Use zero prefixed idata$4 and idata$5.
     --yydebug                 Turn on parser debugging
     Library              Time Stamp          Checksum   Version Flags     Library              Time Stamp          Checksum   Version Flags
     [Reserved]     [unsupported opcode]     finish    Arguments: %s
    Build ID:     Creation date  : %.17s
    DW_MACRO_GNU_%02x arguments:     DW_MACRO_GNU_%02x has no arguments
    Global symbol table name: %s
    Image id: %s
    Image name: %s
    Invalid size
    Last patch date: %.17s
    Linker id: %s
    Location:     Module name    : %s
    Module version : %s
    Name: %s
    OS: %s, ABI: %ld.%ld.%ld
    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
    Provider: %s
    UNKNOWN DW_LNE_HP_SFC opcode (%u)
   --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
   --leading-underscore     Entrypoint with underscore.
   --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
   --no-leading-underscore  Entrypoint without underscore
   --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.
   -I --identify <implib>    Report the name of the DLL associated with <implib>.
   -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 all 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.
   -y --output-delaylib <outname> Create a delay-import library.
   -z --output-def <deffile> Name of .def file to be created.
   0 (*local*)       1 (*global*)      @<file>                   Read options from <file>.
   @<file>                Read options from <file>
   Abbrev Offset: %s
   Floating Point mode:    Header flags: 0x%08x
   Image id    : %s
   Language: %s
   Last modified  :    Length:        0x%s (%s)
   Link time:    Major id: %u,  minor id: %u
   Num:    Value          Size Type    Bind   Vis      Ndx Name
   Num:    Value  Size Type    Bind   Vis      Ndx Name
   Patch time:    Pointer Size:  %d
   Signature:        Type Offset:   0x%s
   Version:       %d
   [Index]    Name
  # sc         value    section  type aux name/off
  %#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  %*s %*s Purpose
  %*s %10s %*s Purpose
  %-20s %10s    Description
  %4u %08x %3u   (Starting at file offset: 0x%lx)  (Unknown inline attribute value: %s)  --dwarf-depth=N        Do not display DIEs at depth N or greater
  --dwarf-start=N        Display DIEs starting with N, at the same depth
                         or deeper
  --input-mach <machine>      Set input machine type to <machine>
  --output-mach <machine>     Set output machine type to <machine>
  --input-type <type>         Set input file type to <type>
  --output-type <type>        Set output file type to <type>
  --input-osabi <osabi>       Set input OSABI to <osabi>
  --output-osabi <osabi>      Set output OSABI to <osabi>
  -h --help                   Display this information
  -v --version                Display the version number of %s
  --plugin <name>              Load the specified plugin
  --plugin <p> - load the specified plugin
  --target=BFDNAME - specify the target object format as BFDNAME
  -H --help                    Print this help message
  -v --verbose                 Verbose - tells you what it's doing
  -V --version                 Print version information
  -I --histogram         Display histogram of bucket list lengths
  -W --wide              Allow output width to exceed 80 characters
  @<file>                Read options from <file>
  -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 output arch, when input is arch-less
  -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
     --extract-symbol              Remove section contents but keep symbols
  -K --keep-symbol <name>          Do not strip symbol <name>
     --keep-file-symbols           Do not strip file symbol(s)
     --localize-hidden             Turn all ELF hidden symbols into locals
  -L --localize-symbol <name>      Force symbol <name> to be marked as a local
     --globalize-symbol <name>     Force symbol <name> to be marked as a global
  -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 N out of every <number> bytes
     --interleave-width <number>   Set N for --interleave
  -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>
     --long-section-names {enable|disable|keep}
                                   Handle long section names in Coff objects.
     --change-leading-char         Force output format's leading character style
     --remove-leading-char         Remove leading character from global symbols
     --reverse-bytes=<num>         Reverse <num> bytes at a time, in output sections with content
     --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>
     --globalize-symbols <file>    --globalize-symbol for all 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 the target's <index>'th alternative machine
     --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
     --file-alignment <num>        Set PE file alignment to <num>
     --heap <reserve>[,<commit>]   Set PE reserve/commit heap to <reserve>/
                                   <commit>
     --image-base <address>        Set PE image base to <address>
     --section-alignment <num>     Set PE section alignment to <num>
     --stack <reserve>[,<commit>]  Set PE reserve/commit stack to <reserve>/
                                   <commit>
     --subsystem <name>[:<version>]
                                   Set PE subsystem to <name> [& <version>]
     --compress-debug-sections     Compress DWARF debug sections using zlib
     --decompress-debug-sections   Decompress DWARF debug sections using zlib
  -v --verbose                     List all object files modified
  @<file>                          Read options from <file>
  -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>          Do not strip symbol <name>
     --keep-file-symbols           Do not strip file symbol(s)
  -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>
  -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)
  @FILE                  Read options from FILE
  -h, --help             Display this information
  -V, --version          Display this program's version number
 
  -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
  -P, --private=OPT,OPT... Display object format specific 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
  -W[lLiaprmfFsoRt] or
  --dwarf[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,
          =frames-interp,=str,=loc,=Ranges,=pubtypes,
          =gdb_index,=trace_info,=trace_abbrev,=trace_aranges]
                           Display DWARF 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
  @<file>                  Read options from <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
  -F, --file-offsets             Include file offsets when displaying information
  -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
      --insn-width=WIDTH         Display WIDTH bytes on a single line for -d
      --adjust-vma=OFFSET        Add OFFSET to all displayed section addresses
      --special-syms             Include special symbols in symbol dumps
      --prefix=PREFIX            Add PREFIX to absolute paths for -S
      --prefix-strip=LEVEL       Strip initial directory names for -S
  -i --instruction-dump=<number|name>
                         Disassemble the contents of section <number|name>
  -r                           Ignored for compatibility with rc
  @<file>                      Read options from <file>
  -h --help                    Print this help message
  -V --version                 Print version information
  -t                           Update the archive's symbol map timestamp
  -h --help                    Print this help message
  -v --version                 Print version information
  @<file>      - read options from <file>
  ABI Version:                       %d
  Addr: 0x  Advance Line by %s to %d
  Advance PC by %s to 0x%s
  Advance PC by %s to 0x%s[%d]
  Advance PC by constant %s to 0x%s
  Advance PC by constant %s to 0x%s[%d]
  Advance PC by fixed size amount %s to 0x%s
  Class:                             %s
  Cnt: %d
  Compact model %d
  Compilation Unit @ offset 0x%s:
  Copy
  DWARF Version:               %d
  DW_CFA_??? (User defined call frame op: %#x)
  Data:                              %s
  Entry    Dir    Time    Size    Name
  Entry point address:                 Extended opcode %d:   Extension opcode arguments:
  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:     Maximum Ops per Instruction: %d
  Minimum Instruction Length:  %d
  No aux header
  No emulation specific options
  No section header
  No strings found in this section.  Note: This section has relocations against it, but these have NOT been applied to this dump.
  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:     0x%lx
  Offset into .debug_info:  0x%lx
  Offset into .debug_line:     0x%lx
  Offset size:                 %d
  Offset:                      0x%lx
  Offset: %#08lx  Link: %u (%s)
  Opcode %d has %d args
  Opcode Base:                 %d
  Options for %s:
  Options passed to DLLTOOL:
  Personality routine:   Pointer Size:             %d
  Prologue Length:             %d
  Registers restored:   Rest are passed unmodified to the language driver
  Restore stack from frame pointer
  Return register: %s
  Section header string table index: %ld  Segment Sections...
  Segment Size:             %d
  Set File Name to entry %s in the File Name Table
  Set ISA to %lu
  Set ISA to %s
  Set basic block
  Set column to %s
  Set epilogue_begin to true
  Set is_stmt to %s
  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 %s to 0x%s  Special opcode %d: advance Address by %s to 0x%s[%d]  Stack increment %d
  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
  Unhandled magic
  Unknown opcode %d with operands:   Unknown section contexts
  Version def aux past end of section
  Version definition past end of section
  Version:                             %d
  Version:                           %d %s
  Version:                           0x%lx
  Version:                     %d
  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
  [D]          - use zero for timestamps and uids/gids
  [N]          - use instance [count] of name
  [Nr] 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
  [T]          - make a thin archive
  [Truncated data]
  [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
  flags:         0x%04x   import file off:   %u
  import strtab len: %u
  m[ab]        - move file(s) in the archive
  magic:         0x%04x (0%04o)    nbr import files:  %u
  nbr relocs:        %u
  nbr sections:  %d
  nbr symbols:       %u
  nbr symbols:   %d
  opt hdr sz:    %d
  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
  s            - act as ranlib
  scnlen: %08x  nreloc: %-6u
  scnlen: %08x  nreloc: %-6u  nlinno: %-6u
  string table len:  %u
  string table off:  %u
  symbols off:   0x%08x
  t            - display contents of archive
  time and date: 0x%08x  -   version:           %u
  x[o]         - extract file(s) from the archive
 %3u %3u  %s byte block:  (File Offset: 0x%lx) (bytes into file)
 (bytes into file)
  Start of section headers:           (bytes)
 (end of tags at %08x)
 (indirect string, offset: 0x%s): %s (inlined by)  (no strings):
 (start == end) (start > end) (strings size: %08x):
 <%d><%lx>: ...
 <%d><%lx>: Abbrev Number: %lu <corrupt: %14ld> <corrupt: out of range> Addr:  Addr: 0x At least one of the following switches must be given:
 Canonical gp value:  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
 DW_MACRO_GNU_%02x
 DW_MACRO_GNU_%02x - DW_MACRO_GNU_define - lineno : %d macro : %s
 DW_MACRO_GNU_define_indirect - lineno : %d macro : %s
 DW_MACRO_GNU_end_file
 DW_MACRO_GNU_start_file - lineno: %d filenum: %d
 DW_MACRO_GNU_start_file - lineno: %d filenum: %d filename: %s%s%s
 DW_MACRO_GNU_transparent_include - offset : 0x%lx
 DW_MACRO_GNU_undef - lineno : %d macro : %s
 DW_MACRO_GNU_undef_indirect - lineno : %d macro : %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
 Entries:
 Generate an index to speed access to archives
 Global entries:
 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
 Lazy resolver
 Length  Number     %% of total  Coverage
 List symbols in [file(s)] (a.out by default).
 Local entries:
 Module pointer
 Module pointer (GNU extension)
 NONE NOTE: This section has relocations against it, but these have NOT been applied to this dump.
 Name (len: %u):  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
  -t --section-details   Display the section details
  -e --headers           Equivalent to: -h -l -S
  -s --syms              Display the symbol table
     --symbols           An alias for --syms
  --dyn-syms             Display the dynamic symbol table
  -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).
  -c --archive-index     Display the symbol/file index in an archive
  -D --use-dynamic       Use the dynamic section info when displaying symbols
  -x --hex-dump=<number|name>
                         Dump the contents of section <number|name> as bytes
  -p --string-dump=<number|name>
                         Dump the contents of section <number|name> as strings
  -R --relocated-dump=<number|name>
                         Dump the contents of section <number|name> as relocated bytes
  -w[lLiaprmfFsoRt] or
  --debug-dump[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,
               =frames-interp,=str,=loc,=Ranges,=pubtypes,
               =gdb_index,=trace_info,=trace_abbrev,=trace_aranges]
                         Display the contents of DWARF2 debug sections
 PLT lazy resolver
 Print a human readable interpretation of a COFF object file
 Removes symbols and sections from files
 Reserved entries:
 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)
            --common                  Display total size for *COM* syms
            --target=<bfdname>        Set the binary file format
            @<file>                   Read options from <file>
  -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
  @<file>                       Read options from <file>.
  -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
  @<file>                   Read options from <file>
  -h --help                 Display this information
  -v -V --version           Print the program's version number
 The options are:
  -a --ascii_in                Read input file as ASCII file
  -A --ascii_out               Write binary messages as ASCII
  -b --binprefix               .bin filename is prefixed by .mc filename_ for uniqueness.
  -c --customflag              Set custom flags for messages
  -C --codepage_in=<val>       Set codepage when reading mc text file
  -d --decimal_values          Print values to text files decimal
  -e --extension=<extension>   Set header extension used on export header file
  -F --target <target>         Specify output target for endianness.
  -h --headerdir=<directory>   Set the export directory for headers
  -u --unicode_in              Read input file as UTF16 file
  -U --unicode_out             Write binary messages as UFT16
  -m --maxlength=<val>         Set the maximal allowed message length
  -n --nullterminate           Automatic add a zero termination to strings
  -o --hresult_use             Use HRESULT definition instead of status code definition
  -O --codepage_out=<val>      Set codepage used for writing text file
  -r --rcdir=<directory>       Set the export directory for rc files
  -x --xdbg=<directory>        Where to create the .dbg C include file
                               that maps message ID's to their symbolic name.
 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
 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
     --preprocessor-arg=<arg>  Additional preprocessor argument
  -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
  -c --codepage=<codepage>     Specify default codepage
  -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
  @<file>          Read options from <file>
  -h --help        Display this information
  -v --version     Print the program's version number
 The options are:
  @<file>                      Read options from <file>
 The options are:
  @<file>                Read options from <file>
  -a --addresses         Show addresses
  -b --target=<bfdname>  Set the binary file format
  -e --exe=<executable>  Set the input file name (default is a.out)
  -i --inlines           Unwind inlined functions
  -j --section=<name>    Read section-relative offsets instead of addresses
  -p --pretty-print      Make the output easier to read for humans
  -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:
  @<file>                Read options from <file>
  -h --help              Display this information
  -v --version           Display the program's version
 
 Truncated .text section
 Unhandled version
 Unknown macro opcode %02x seen
 Update the ELF header of ELF files
 [without DW_AT_frame_base] address beyond section size
 and Line by %s to %d
 at  at offset 0x%lx contains %lu entries:
 bad symbol index: %08lx command specific modifiers:
 commands:
 emulation options: 
 generic modifiers:
 no tags found
 number of CTL anchors: %u
 optional:
 program interpreter tags at %08x
 type: %lx, namesize: %08lx, descsize: %08lx
#lines %d #sources %d%08x: <unknown>%ld: .bf without preceding function%ld: unexpected .ef
%lu
%s
 (header %s, data %s)
%s %s%c0x%s never used%s both copied and removed%s exited with status %d%s has no archive index
%s is not a library%s is not a valid archive%s section data%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 ELF header
%s: Failed to read file header
%s: Failed to read file's magic number
%s: Failed to seek to ELF header
%s: Failed to update ELF header: %s
%s: Matching formats:%s: Multiple redefinition of symbol "%s"%s: Not an ELF file - wrong magic bytes at the start
%s: Path components stripped from image name, '%s'.%s: Symbol "%s" is target of more than one redefinition%s: Unmatched EI_CLASS: %d is not %d
%s: Unmatched EI_OSABI: %d is not %d
%s: Unmatched e_machine: %d is not %d
%s: Unmatched e_type: %d is not %d
%s: Unsupported EI_VERSION: %d is not %d
%s: Warning: %s: bad archive file name
%s: bad number: %s%s: bad version in PE subsystem%s: can't find module file %s
%s: can't open file %s
%s: cannot find section %s%s: cannot get addresses from archive%s: cannot set time: %s%s: did not find a valid archive header
%s: end of the symbol table reached before the end of the index
%s: execution of %s failed: %s: failed to read archive header
%s: failed to read archive header following archive index
%s: failed to read archive index
%s: failed to read archive index symbol table
%s: failed to read long symbol name string table
%s: failed to seek back to start of object files in the archive
%s: failed to seek to archive member
%s: failed to seek to archive member.
%s: failed to seek to first archive header
%s: failed to seek to next archive header
%s: failed to seek to next file name
%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 commit value for --heap%s: invalid commit value for --stack%s: invalid output format%s: invalid radix%s: invalid reserve value for --heap%s: invalid reserve value for --stack%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: supported architectures:%s: supported formats:%s: supported targets:%s: symbols remain in the index symbol table, but without corresponding entries in the index table
%s: the archive has an index but no symbols
%s: the archive index is empty
%s: the archive index is supposed to have %ld entries, but the size in the header is too small
%s: unable to dump the index as none was found
%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: 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
(DW_OP_GNU_implicit_pointer in frame info)(DW_OP_call_ref in frame info)(ROMAGIC: readonly sharablee text segments)(TOCMAGIC: readonly text segments and TOC)(Unknown location op)(Unknown: %s)(User defined location op)(WRMAGIC: writable text segments)(bad offset: %u)(base address)
(declared as inline and inlined)(declared as inline but ignored)(implementation defined: %s)(inlined)(location list)(not inlined)(start == end)(start > end)(undefined)(unknown accessibility)(unknown case)(unknown convention)(unknown type)(unknown virtuality)(unknown visibility)(user defined type)(user defined)*invalid**undefined*, <unknown>, Base: , Semaphore: , relocatable, relocatable-lib, unknown ABI, unknown CPU, unknown ISA, unknown v850 architecture variant.debug_info offset of 0x%lx in %s section does not point to a CU header.
.debug_macro section not zero terminated
16-byte
2 bytes
2's complement, big endian2's complement, little endian32-bit relocation data4 bytes
4-byte
64-bit relocation data8-byte
8-byte and up to %d-byte extended
8-byte, except leaf SP
:
  No symbols
: duplicate value
: expected to be a directory
: expected to be a leaf
<End of list>
<OS specific>: %d<corrupt string table index: %3ld><corrupt: %14ld><corrupt: %19ld><corrupt: %9ld><corrupt: %ld>
<corrupt><no .debug_str section><no-name><none><offset is too big><other>: %x<processor specific>: %d<string table index: %3ld><unknown addend: %lx><unknown: %lx><unknown: %x><unknown><unknown>: %d<unknown>: %lx<unknown>: %x<unknown>: 0x%xA codepage was specified switch `%s' and UTF16.
AccessAdded exports to output fileAdding exports to output fileAddressAny
Application
Application or Realtime
Attribute Section: %s
Audit libraryAuxiliary header:
Auxiliary 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
Bare-metal C6000Binary %s contains:
Bogus end-of-siblings marker detected at offset %lx in .debug_info section
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)CU at offset %s contains corrupt or unsupported version number: %d.
CU: %s/%s:
CU: %s:
Can't create .lib file: %s: %sCan't fill gap after sectionCan't have LIBRARY and NAMECan't open .lib file: %s: %sCan't open def file: %sCan't open file %s
Cannot interpret virtual addresses without program headers.
Cannot produce mcore-elf dll from archive file: %sCode addressing position-dependent
Code addressing position-independent
Configuration fileContents of %s section:
 
Contents of section %s:Contents of the %s section:
Contents of the %s section:
 
Convert a COFF object file into a SYSROFF object file
Copyright 2011 Free Software Foundation, Inc.
Corrupt header in group section `%s'
Corrupt header in the %s section.
Corrupt unit length (0x%s) found in section %s
Could not locate '%s'.  System error message: %s
Could not locate .ARM.extab section containing 0x%lx.
Couldn't get demangled builtin type
Created lib fileCreating library file: %sCreating stub file: %sCurrent open archive is %s
DERIVED TYPEDIE at offset %lx refers to abbreviation number %lu which does not exist
DLLTOOL name    : %s
DLLTOOL options : %s
DRIVER name     : %s
DRIVER options  : %s
DSBT addressing not used
DSBT addressing used
DW_FORM_data8 is unsupported when sizeof (dwarf_vma) != 8
DW_FORM_strp offset too big: %s
DW_MACRO_GNU_start_file used, but no .debug_line offset provided.
DW_OP_GNU_push_tls_address or DW_OP_HP_unknownDYN (Shared object file)Data addressing position-dependent
Data addressing position-independent, GOT far from DP
Data addressing position-independent, GOT near DP
Data sizeDebug info is corrupted, abbrev offset (%lx) is larger than abbrev section size (%lx)
Debug info is corrupted, length of CU at %s extends beyond end of section (length = %s)
Decoded dump of debug contents of section %s:
 
Deleting temporary base file %sDeleting temporary def file %sDeleting temporary exp file %sDemangled name is not a function
Dependency audit libraryDisplaying the debug contents of section %s is not yet supported.
Don't know about relocations on this machine architecture
Done reading %sDuplicate symbol entered into keyword list.Dynamic relocs:
Dynamic symbols:
ELF Header:
ERROR: Bad section length (%d > %d)
ERROR: Bad subsection length (%d > %d)
EXEC (Executable file)End of Sequence
 
Entry point Enum Member offset %xError, duplicate EXPORT with ordinals: %sException table:
Excluding 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 determine last chain length
Failed to print demangled template
Failed to read in number of buckets
Failed to read in number of chains
File %s is not an archive so its index cannot be displayed.
File Attributes
File contains multiple dynamic string tables
File contains multiple dynamic symbol tables
File contains multiple symtab shndx tables
File header:
File name                            Line number    Starting address
Filter libraryFlags:For XCOFF files:
  header      Display the file header
  aout        Display the auxiliary header
  sections    Display the section headers
  syms        Display the symbols table
  relocs      Display the relocation entries
  lineno      Display the line number entries
  loader      Display loader section
  except      Display exception table
  typchk      Display type-check section
  traceback   Display traceback tags
  toc         Display toc symbols
Further warnings about bogus end-of-sibling markers suppressed
GOT A %x
Generated exports fileGenerating export file: %sGeneric
Global Offset Table dataHard float
Hard float (MIPS32r2 64-bit FPU)
Hard float (double precision)
Hard float (single precision)
Hard or soft float
ID 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  AlgnImport files:
Import library `%s' specifies two or more dllsIn archive %s:
Index of archive %s: (%ld entries, 0x%lx bytes in the symbol table)
InitialInput file '%s' is not readable
Input file '%s' is not readable.
Input file `%s' ignores binary architecture parameter.Interface Version: %s
Internal error: DWARF version is not 2, 3 or 4.
Internal error: Unknown machine type: %dInternal error: failed to create format string to display program interpreter
Invalid address size in %s section!
Invalid extension opcode form %s
Invalid maximum operations per insn.
Invalid option '-%c'
Invalid radix: %s
Invalid sh_entsize
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), T (TLS), E (exclude), x (unknown)
  O (extra OS processing required) o (OS specific), p (processor specific)
Key to Flags:
  W (write), A (alloc), X (execute), M (merge), S (strings), l (large)
  I (info), L (link order), G (group), T (TLS), E (exclude), 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]Line numbers for %s (%u)
List of blocks List of source filesList of symbolsLoader header:
Location list starting at offset 0x%lx is not terminated.
Location lists in %s section start at 0x%s
MODULE***
Machine '%s' not supportedMemory
Memory section %s+%xMicrocontroller
Missing Version Needs auxillary information
Missing Version Needs information
Missing knowledge of 32-bit reloc types used in DWARF sections of machine number %d
Multiple renames of section %sMust provide at least one of -o or --dllname optionsNAME: %s base: %xNONE
NONE (None)NT_ARCH (architecture)NT_ARM_VFP (arm VFP registers)NT_AUXV (auxiliary vector)NT_FPREGS (floating point registers)NT_FPREGSET (floating point registers)NT_GNU_ABI_TAG (ABI version tag)NT_GNU_BUILD_ID (unique build ID bitstring)NT_GNU_GOLD_VERSION (gold version)NT_GNU_HWCAP (DSO-supplied software HWCAP info)NT_LWPSINFO (lwpsinfo_t structure)NT_LWPSTATUS (lwpstatus_t structure)NT_PPC_VMX (ppc Altivec registers)NT_PPC_VSX (ppc VSX registers)NT_PRPSINFO (prpsinfo structure)NT_PRSTATUS (prstatus structure)NT_PRXFPREG (user_xfpregs structure)NT_PSINFO (psinfo structure)NT_PSTATUS (pstatus structure)NT_S390_CTRS (s390 control registers)NT_S390_HIGH_GPRS (s390 upper register halves)NT_S390_PREFIX (s390 prefix register)NT_S390_TIMER (s390 timer register)NT_S390_TODCMP (s390 TOD comparator register)NT_S390_TODPREG (s390 TOD programmable register)NT_STAPSDT (SystemTap probe descriptors)NT_TASKSTRUCT (task structure)NT_VERSION (version)NT_VMS_EIDC (consistency check)NT_VMS_FPMODE (FP mode)NT_VMS_GSTNAM (sym table name)NT_VMS_IMGBID (build id)NT_VMS_IMGID (image id)NT_VMS_IMGNAM (image name)NT_VMS_LINKID (link id)NT_VMS_LNM (language name)NT_VMS_MHD (module header)NT_VMS_SRC (source files)NT_WIN32PSTATUS (win32_pstatus structure)NT_X86_XSTATE (x86 XSAVE extended state)N_LBRAC not within function
NameName                  Value           Class        Type         Size             Line  Section
 
Name                  Value   Class        Type         Size     Line  Section
 
Name index: %ld
Name: %s
Nbr entries: %-8u Size: %08x (%u)
NdxNetBSD procinfo structureNo %s section present
 
No comp units in %s 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!
NoneNone
Not 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]
Not used
Nothing to do.
OS Specific: (%x)Offset %s used as value for DW_AT_import attribute of DIE at offset %lx is too big.
Offset 0x%lx is bigger than .debug_loc section size.
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, 3 and 4 line info is currently supported.
Only GNU extension to DWARF 4 of %s is currently supported.
Opened temporary file: %sOperating System specific: %lxOption -I is deprecated for setting the input format, please use -J instead.
Out of memory
Out of memory allocating 0x%lx bytes for %s
Out of memory allocating dump request table.
Out of memory reading long symbol names in archive
Out of memory whilst trying to convert the archive symbol index
Out of memory whilst trying to read archive index symbol table
Out of memory whilst trying to read archive symbol index
Output file cannot represent architecture `%s'OwnerPT_GETFPREGS (fpreg structure)PT_GETREGS (reg structure)Pascal file name not supportedPath components stripped from dllname, '%s'.Pointer size + Segment size is not a power of two.
Print a human readable interpretation of a SYSROFF object file
Print width has not been initialized (%d)Procedure Linkage Table dataProcessed def fileProcessed definitionsProcessing def file: %sProcessing definitionsProcessor Specific: %lxProcessor Specific: (%x)REL (Relocatable file)Range lists in %s section start at 0x%lx
Raw dump of debug contents of section %s:
 
Reading section failedRealtime
Refuse to unwindRegister %dRelocations for %s (%u)
Report bugs to %s
Report bugs to %s.
Reserved length value (0x%s) found in section %s
SUM IS %x
SYMBOL INFOScanning object file %sSection %d has invalid sh_entsize %lx (expected %lx)
Section %d was not dumped because it does not exist!
Section '%s' was not dumped because it does not exist!
Section Attributes:Section headers (at %u+%u=0x%08x to 0x%08x):
Section headers are not available!
Sections:
Seg Offset           Type                             SymVec DataType
Seg Offset   Type                            Addend            Seg Sym Off
Shared library: [%s]Single-precision hard float
Skipping unexpected relocation at offset 0x%lx
Skipping unexpected relocation type %s
Soft float
Source file %sStack offset %xStandalone AppStruct Member offset %xSucking in info from %s section in %sSupported architectures:Supported targets:Sym.Val.Symbol  %s, tag %d, number %dSymbol Attributes:Symbols table (strtable at 0x%08x)Syntax error in def file %s:%dTOC:
The address table data in version 3 may be wrong.
The information in section %s appears to be corrupt - the section is too small
The line info appears to be corrupt - the section is too small
There are %d section headers, starting at offset 0x%lx:
There are %ld unused bytes at the end of section %s
There is a hole [0x%lx - 0x%lx] in %s section.
There is a hole [0x%lx - 0x%lx] in .debug_loc section.
There is an overlap [0x%lx - 0x%lx] in %s section.
There is an overlap [0x%lx - 0x%lx] in .debug_loc section.
This executable has been built without support for a
64 bit data type and so it cannot process 64 bit ELF files.
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 version 3 or (at your option) any later version.
This program has absolutely no warranty.
Time Stamp: %s
Too many N_RBRACs
Tried `%s'
Tried file: %sTrue
Truncated header in the %s section.
TypeType file number %d out of range
Type index number %d out of range
Type-check section:
UNKNOWN (%*.*lx)UNKNOWN: UNKNOWN: length %d
Unable to change endianness of input file(s)Unable to determine dll name for `%s' (not an import library?)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 load/parse the .debug_info section, so cannot interpret the %s section.
Unable to locate %s section!
Unable to open base-file: %sUnable to open object file: %s: %sUnable to open temporary assembler file: %sUnable to read in 0x%lx bytes of %s
Unable to read in dynamic data
Unable to read program interpreter name
Unable to recognise the format of fileUnable to recognise the format of the input file `%s'Unable to seek to 0x%lx for %s
Unable to seek to end of file
Unable to seek to end of file!
Unable to seek to start of dynamic information
Undefined N_EXCLUndefined symbolUnexpected demangled varargs
Unexpected type in v3 arglist demangling
Unhandled MN10300 reloc type found after SYM_DIFF relocUnhandled data length: %d
Unknown AT value: %lxUnknown FORM value: %lxUnknown OSABI: %s
Unknown TAG value: %lxUnknown format '%c'
Unknown machine type: %d
Unknown machine type: %s
Unknown note type: (0x%08x)Unknown tag: %d
Unknown type: %s
Unrecognized XCOFF type %d
Unrecognized debug option '%s'
Unrecognized debug section: %s
Unrecognized demangle component %d
Unrecognized demangled builtin type
Unrecognized form: %lu
Unsupported EI_CLASS: %d
Unsupported version %lu.
Usage %s <option(s)> <object-file(s)>
Usage: %s <option(s)> <file(s)>
Usage: %s <option(s)> elffile(s)
Usage: %s <option(s)> in-file(s)
Usage: %s [emulation options] [-]{dmpqrstx}[abcDfilMNoPsSTuvV] [--plugin <name>] [member-name] [count] archive-file file...
Usage: %s [emulation options] [-]{dmpqrstx}[abcDfilMNoPsSTuvV] [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]
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 togetherVERSION %d.%d
Value for `N' must be positive.Version %ld
Version 4 does not support case insensitive lookups.
Version Needs sectionVirtual address 0x%lx not located in any PT_LOAD segment.
VisibleWANTED %x!!
Warning, ignoring duplicate EXPORT %s %d,%dWarning, machine type (%d) not supported for delayimport.Warning: %s: %s
Warning: '%s' has negative size, probably it is too largeWarning: '%s' is not an ordinary fileWarning: changing type size from %d to %d
Warning: could not locate '%s'.  reason: %sWarning: ignoring previous --reverse-bytes value of %dWarning: truncating gap-fill from 0x%s to 0x%xWhereWrong size in print_dwarf_vma[%3u] 0x%lx - 0x%lx
[%3u] 0x%lx 0x%lx [<unknown>: 0x%x] [Abbrev Number: %ld[Spare][Truncated opcode]
[pad][truncated]
`N' is only meaningful with the `x' and `d' options.`u' is not meaningful with the `D' option.`u' is only meaningful with the `r' option.`x' cannot be used on thin archives.acceleratorarchitecture %s unknownarchitecture: %s, argumentsarray [%d] ofattributesbad ATN65 recordbad C++ field bit pos or sizebad dynamic symbol
bad format for %sbad mangled name `%s'
bad misc recordbad register: bad 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: %s: %sbfd_open failed reopen stub file: %s: %sbig endianblocksblocks 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 add paddingcan't add section '%s'can't create %s file `%s' for output.
can't create debugging sectioncan't create section `%s'can't disassemble for architecture %s
can'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 redirect stdout: `%s': %scan't set BFD default target to `%s': %scan't set debugging section contentscan't use supplied machine %scannot create debug link section `%s'cannot create tempdir for archive copying (error: %s)cannot delete %s: %scannot fill debug link section `%s'cannot open '%s': %scannot open input file %scannot open: %s: %scannot read auxhdrcannot read headercannot read line number entrycannot read line numberscannot read relocation entrycannot read relocationscannot read section headercannot read section headerscannot read strings tablecannot read strings table lengthcannot read symbol aux entrycannot read symbol entrycannot read symbol tablecannot reverse bytes: length of section %s must be evenly divisible by %dcodeconflictconflict list found without a dynamic symbol table
const/volatile indicator missingcontrol data requires DIALOGEXcopy from `%s' [%s] to `%s' [%s]
copy from `%s' [unknown] to `%s' [unknown]
corrupt note found at offset %lx into core notes
could not create temporary file to hold stripped copycould not create temporary file whilst writing archivecould 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_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_make_undefined_type: unsupported kinddebug_name_type: no current filedebug_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_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 namedisassemble_fn returned length %ddon't know how to write debugging information for %sdynamic sectiondynamic section image fixupsdynamic section image relocationsdynamic string sectiondynamic string tabledynamic stringsendianness unknownenum definitionenum ref to %serror copying private BFD dataerror in private header dataerror: instruction width must be positiveerror: prefix strip must be non-negativeerror: the input file '%s' is emptyerror: the start address should be before the end addresserror: the stop address should be after the start addressexpression stack mismatchexpression stack overflowexpression stack underflowfailed to copy private datafailed to create output sectionfailed to open temporary head file: %sfailed to open temporary head file: %s: %sfailed to open temporary tail file: %sfailed to open temporary tail file: %s: %sfailed to read the number of entries from base filefailed to set alignmentfailed to set sizefailed to set vmafilename required for COFF inputfilename required for COFF outputfixed version infoflag = %d, vendor = %s
flags 0x%08x:
fontdirfontdir device namefontdir face namefontdir headerfunction returninggroup cursorgroup cursor headergroup icongroup icon headerhas childrenhelp ID requires DIALOGEXhelp sectionicon file `%s' does not contain icon dataignoring the alternative valueillegal type indexillegal variable indexinput and output files must be differentinput file does not seems to be UFT16.
input file named both on command line and with INPUTinterleave must be positiveinterleave start byte must be set with --byteinterleave width must be less than or equal to interleave - byte`interleave width must be positiveinternal error -- this option not implementedinternal stat error on %sinvalid argument to --format: %sinvalid codepage specified.
invalid index into symbol array
invalid integer argument %sinvalid minimum string length %dinvalid numberinvalid option -f
invalid string lengthinvalid value specified for pragma code_page.
length %d [liblist section dataliblist string tablelineno  symndx/paddr
little endianmake .bss sectionmake .nlmsections sectionmake sectionmenu 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 segment
no .except section in file
no .loader section in file
no .typchk section in file
no 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 functionnonenot set
not stripping symbol `%s' because it is named in a relocationnotesnull terminated unicode stringnumber of bytes to reverse must be positive and evennumeric overflowoffset: %08xoffset: %s option -P/--private not supported by this fileoptionsout of memory parsing relocs
overflow - nreloc: %u, nlnno: %u
overflow when adjusting relocation against %sparse_coff_type: Bad type code 0x%xpointer topop frame {possibly corrupt ELF file header - it has a non-zero section header offset, but no section headers
possibly corrupt ELF header - it has a non-zero program header offset, but no program headerspreprocessing failed.program headerspwait returns: %sreading %s section of %s failed: %sreference parameter is not a pointerrelocation count is negativeresource IDresource dataresource data sizeresource type unknownrpc sectionrun: %s %ssection %s %d %d address %x size %x number %d nrelocs %dsection %u: sh_link value of %u is larger than the number of sections
section '%s' has the NOBITS type - its contents are unreliable.
section '%s' mentioned in a -j option, but not found in any input filesection .loader is too short
section 0 in group section [%5u]
section [%5u] in group section [%5u] > maximum section [%5u]
section [%5u] in group section [%5u] already in group section [%5u]
section contentssection datasection definition at %x size %x
section headersset .bss vmaset .data sizeset .nlmsection contentsset .nlmsections sizeset Address to 0x%s
set Discriminator to %s
set section alignmentset section flagsset section sizeset start addresssh_entsize is zero
shared sectionsize %d size: %s skipping invalid relocation offset 0x%lx in section %s
skipping invalid relocation symbol index 0x%lx in section %s
skipping unexpected symbol type %s in %ld'th relocation in section %s
sorry - this program has been built without plugin support
sp = sp + %ldstab_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 `%s'string tablestring_hash_lookup failed: %sstringtable stringstringtable string lengthstructure definitionstructure ref to %sstructure ref to UNKNOWN structstub section sizessubprocess got fatal signal %dsupport not compiled in for %ssupported flags: %ssymbol informationsymbol table section indiciessymbolstarget specific dump '%s' not supportedthe .dynamic section is not contained within the dynamic segment
the .dynamic section is not the first section in the dynamic segment.
this target does not support %lu alternative machine codestreating that number as an absolute e_machine value insteadtry to add a ill language.two different operation options specifiedunable to apply unsupported reloc type %d to section %s
unable to copy file '%s'; reason: %sunable to open file `%s' for input.
unable to open output file %sunable to parse alternative machine codeunable to read contents of %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 %ldunexpected fixed version signature %luunexpected group cursor type %dunexpected group icon type %dunexpected numberunexpected record typeunexpected string in C++ miscunexpected stringfileinfo value length %ldunexpected varfileinfo value length %ldunexpected version stringunexpected version string length %ld != %ld + %ldunexpected version string length %ld < %ldunexpected version stringtable value length %ldunexpected version type %dunexpected version value length %ldunknownunknown ATN typeunknown BB typeunknown C++ encoded nameunknown C++ visibilityunknown PE subsystem: %sunknown TY codeunknown builtin typeunknown demangling style `%s'unknown format type `%s'unknown input EFI target: %sunknown long section names option '%s'unknown macunknown magicunknown output EFI target: %sunknown 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 Dwarf Call Frame Instruction number: %#x
unsupported qualifierunwind dataunwind infounwind tableuser defined: vars %dversion dataversion defversion def auxversion definition sectionversion length %d does not match resource length %luversion needversion need aux (2)version need aux (3)version stringversion string tableversion stringtableversion symbol dataversion var infoversion varfileinfowait: %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 create temporary file whilst copying '%s', (error: %s)warning: could not locate '%s'.  System error message: %swarning: file alignment (0x%s) > section alignment (0x%s)warning: input and output formats are not compatiblewarning: optionnal header size too large (> %d)
warning: symbol %s imported but not in import listwill produce no output, since undefined symbols have no size.writing stub| <unknown>Project-Id-Version: binutils-2.22.90
Report-Msgid-Bugs-To: bug-binutils@gnu.org
POT-Creation-Date: 2011-10-25 11:20+0100
PO-Revision-Date: 2012-07-31 14:15+0700
Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>
Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>
Language: vi
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=1; plural=0;
X-Generator: LocFactoryEditor 1.8
X-Poedit-Language: Vietnamese
X-Poedit-Country: VIET NAM
X-Poedit-SourceCharset: utf-8
   Không hiểu phiên bản.
   thiết lập trang mã bị bỏ qua.
 
 
Ký hiệu từ %s:
 
 
 
Ký hiệu từ %s[%s]:
 
 
 
Ký hiệu chưa Ä‘ược Ä‘ịnh nghÄ©a từ %s:
 
 
 
Ký hiệu chưa Ä‘ược Ä‘ịnh nghÄ©a từ %s[%s]:
 
 
      [Đang yêu cầu bộ giải dịch chương trình: %s]
    Äá»‹a chỉ           Dài
 
    Äá»‹a chỉ    Dài
 
    Bù    Tên
 
   Các cờ liên kết  :
  Äáº§u các dòng Ä‘ầu chương trình:          
 Câu Số thứ tá»± Dòng:
 
 Mã thao tác:
 
 Ãnh xạ Phần Ä‘ến Phân Ä‘oạn:
 
  Bảng Thư Mục vẫn trống
 
  Bảng Thư mục:
 
 Bảng Tên Tập Tin trống:
 
  Bảng Tên Tập Tin:
 
 Những cái chuyển theo Ä‘ây vẫn tùy chọn:
 
%s:    Ä‘ịnh dạng tập tin %s
 
%snhóm phần [%5u] `%s' [%s] chứa %u phần:
 
phần Ä‘ịnh vị lại "%s" tại khoảng bù 0x%lx chứa %ld byte:
 
Bảng Ä‘ịa chỉ:
 
Chỉ mục kho lưu:
 
Việc Ä‘ổ thanh ghi cá»§a phần %s
 
Bảng CU:
 
Không thể lấy nội dung cho phần "%s".
 
Không thể tìm thấy phần thông tin tri ra cho 
Việc rã phần %s:
 
Phân Ä‘oạn thông tin Ä‘á»™ng tại khoảng bù 0x%lx chứa %d mục nhập:
 
Phần Ä‘á»™ng tại khoảng bù 0x%lx chứa %u mục nhập:
 
Không có sẵn sàng thông tin ký hiệu Ä‘á»™ng Ä‘ể hiển thị ký hiệu.
 
Kiểu tập tin Elf là %s
 
Tập tin: %s
 
Việc Ä‘ổ thập lục cá»§a phần "%s":
 
Biểu Ä‘ồ tần xuất cho chiều dài danh sách xô ".gnu.hash" (tổng số %lu xô):
 
Biểu Ä‘ồ tần xuất cho chiều dài danh sách xô (tổng số %lu xô):
 
Bộ sá»­a chữa áº£nh là cần thiết cho thư viện #%d: %s - ident: %lx
 
Tái Ä‘ịnh vị áº£nh
 
Phần danh sách thư viện "%s" chứa %lu mục nhập:
 
Không tìm thấy thông tin phiên bản trong tập tin này.
 
Gặp ghi chú tại khoảng bù 0x%08lx có chiều dài 0x%08lx:
 
Các tùy hỗ trợ cho tùy chuyển -P/--private:
 
GOT chính:
 
Dòng Ä‘ầu chương trình:
 
Phần Ä‘ịnh vị lại
Phần "%s" chứa %d mục nhập:
 
Phần "%s" không có dữ liệu cần Ä‘ổ.
 
Phần "%s" không có dữ liệu gỡ lỗi.
 
Phần ".conflict" (xung Ä‘á»™t) chứa %lu mục nhập:
 
Phần '.liblist' có chứa %lu mục tin:
 
Dòng Ä‘ầu phần:
 
Dòng Ä‘ầu phần:
 
Đổ chuỗi cá»§a phần "%s":
 
Bảng ký hiệu "%s" chứa %lu mục nhập:
 
Bảng ký hiệu '%s' có một sh_entsize số không!
 
Bảng ký hiệu cho áº£nh:
 
Bảng ký hiệu cá»§a ".gnu.hash" cho áº£nh:
 
Bảng ký hiệu:
 
Bảng TU:
 
Phần %s vẫn trống.
 
Có %d dòng Ä‘ầu chương trình, bắt Ä‘ầu tại khoảng bù
Không có việc Ä‘ịnh vị lại Ä‘á»™ng trong tập tin này.
 
Không có dòng Ä‘ầu chương trình trong tập tin này.
 
Không có việc Ä‘ịnh vị lại trong tập tin này.
 
Không có nhóm phần trong tập tin này.
 
Không có phần trong tập tin này.
 
Không có phần cho nhóm trong tập tin này.
 
Không có phần tri ra trong tập tin này.
 
Không có phần Ä‘á»™ng trong tập tin này.
 
Phần tri ra 
Tháo chỉ số bảng '%s' tại khoảng bù 0x%lx chứa %lu các mục:
 
Phần Ä‘ịnh nghÄ©a phiên bản "%s" chứa %u mục nhập:
 
Phần phiên bản cần thiết "%s" chứa %u mục nhập:
 
Phần ký hiệu phiên bản "%s" chứa %d mục nhập:
 
địa chỉ Ä‘ầu 0x                 CỡTập            CỡNhớ              Cờ  Canh
            Các cờ: %08x         <máy> có thể: arm[_interwork], i386, mcore[-elf]{-le|-be}, ppc, thumb
       %s -M [<văn_lệnh-mri]
       Cờ
       Cỡ              CỡEnt          Cờ  Liên kết  Tin  Canh
       Cỡ              CỡEnt          Tin              Canh
       Kiểu              Äá»‹a chỉ          Bù            Liên kết
       Kiểu            ÄChỉ     Bù    Cỡ   ES   Lk Tin Cl
       Kiểu            Äá»‹a chỉ          Bù    Cỡ   ES   Lkết Tin Canh
      --add-stdcall-underscore
       Thêm dấu gạch dưới vào mọi ký hiệu stdcall trong thư viện giao diện.
  --dwarf-depth=N        Không hiển thị  DIEs á»Ÿ Ä‘á»™ sâu N hay lớn hÆ¡n
  --dwarf-start=N        Hiển thị DIEs bắt Ä‘ầu từ N, á»Ÿ cùng Ä‘á»™ sâu
                          haysâu hÆ¡n
 
      --exclude-symbols <danh_sách>    Äá»«ng xuất gì trên danh sách này
        --export-all-symbols    Tá»± Ä‘á»™ng xuất mọi ký hiệu vào tập tin Ä‘ịnh nghÄ©a
      --identify-strict      Gây ra "--identify" thông báo lỗi khi gặp nhiều DLLs.
      --leading-underscore   Tất cả các ký kiệu Ä‘ược Ä‘ặt tiền tố bằng một dấu gạch dưới.
      --no-default-excludes      Xoá sạch các ký hiệu cần loại trừ theo mặc Ä‘ịnh
      --no-export-all-symbols    Xuất chỉ những ký hiệu Ä‘ã liệt kê
      --no-leading-underscore Tất cả các ký kiệu không Ä‘ặt tiền tố bằng một dấu gạch dưới.
      --plugin TÊN      Nạp phần bổ sung chỉ ra
      --use-nul-prefixed-import-tables Dùng idata$4 và idata$5 có tiền tố số không.
     --yydebug                 Bật khả năng gỡ lỗi kiểu bộ phân tích
     Thư viện              Dấu vết Thời gian          Tổng kiểm tra   Phiên bản Các cờ     Thư viện              Dấu vết Thời gian          Tổng kiểm tra   Phiên bản Các cờ
     [Dành riêng]    [Opcode (mã thao tác) không hỗ trợ]    hoàn tất    Các Ä‘ối số: %s
    ID xây dá»±ng:     Ngày tạo  : %.17s
    Äá»‘i số DW_MACRO_GNU_%02x:     DW_MACRO_GNU_%02x không có Ä‘ối số
    Tên bảng ký hiệu toàn cục: %s
    id áº£nh: %s
    Tên áº£nh: %s
    Kích cỡ sai
    Ngày vá cuối: %.17s
    id bộ liên kết: %s
    Vị trí:    Tên mô-đun    : %s
    Phiên bản môđun : %s
    Tên: %s
    OS: %s, ABI: %ld.%ld.%ld
    Bù             Tin             Kiểu               Giá trị ký hiệu  Tên ký hiệu
    Bù             Tin             Kiểu               Giá trị ký hiệu Tên ký hiệu + Phần cộng
    Bù   Äáº§u    Cuối
    Bù   Äáº§u    Cuối      Biểu thức
    NÆ¡i cung cấp: %s
    KHÔNG RÕ mã DW_LNE_HP_SFC (%u)
   --add-indirect         Thêm các lời gián tiếp vào tập tin xuất ra.
   --add-stdcall-alias    Thêm biệt hiệu mà không có "@<n>".
   --as <tên>           Dùng tên này cho chương trình dịch mã số
   --base-file <tên_tập_tin>     Äá»c tập tin cÆ¡ bản do bộ liên kết tạo ra.
   --def <tên_tập_tin>        Tên tập tin Ä‘ịnh nghÄ©a nhập vào
   --dllname <tên>         Tên dll nhập cần Ä‘ể vào thư viện kết xuất.
   --dlltool-name <dlltool>    Mặc Ä‘ịnh là "dlltool"
   --driver-flags <các_cờ>    Có quyền cao hÆ¡n các cờ ld mặc Ä‘ịnh
   --driver-name <trình_điều_khiển>        Mặc Ä‘ịnh là "gcc"
   --dry-run              Hiển thị các Ä‘iều cần chạy
   --entry <điểm_vào>        Ghi rõ Ä‘iểm vào DLL xen kẽ
   --exclude-symbols <danh_sách>
                   Loại trừ danh sách này ra tập tin .def.
   --export-all-symbols     Xuất mọi ký hiệu vào tập tin .def (định nghÄ©a)
   --image-base <cÆ¡_bản>    Ghi rõ Ä‘ịa chỉ cÆ¡ bản áº£nh
   --implib <tên_tập_tin>     Bằng "--output-lib"
   --leading-underscore     Entrypoint với dấu gạch dưới.
   --machine <máy>
   --mno-cygwin          Tạo DLL dạng Mingw
   --no-default-excludes    Sá»­a mọi ký hiệu loại trừ mặc Ä‘ịnh.
   --no-export-all-symbols    Xuất chỉ ký hiệu kiểu ".drectve".
   --no-idata4           Äá»«ng tạo ra phần "idata$4".
   --no-idata5           Äá»«ng tạo ra phần "idata$5".
   --no-leading-underscore  Entrypoint  không có dấu gạch dưới
   --nodelete             Giữ các tập tin tạm thời.
   --output-def <tên_tập_tin>    Tên tập tin Ä‘ịnh nghÄ©a kết xuất
   --output-exp <tên_tập_tin>    Tạo ra tập tin xuất ra.
   --output-lib <tên_tập_tin>    Tạo ra thư viện nhập vào.
   --quiet, -q            Không xuất chi tiết
   --target <máy>     i386-cygwin32 hay i386-mingw32
   --verbose, -v          Xuất chi tiết
   --version              In ra phiên bản dllwrap
   -A --add-stdcall-alias    Thêm biệt hiệu mà không có "@<n>".
   -C --compat-implib        Tạo thư viện nhập tương thích ngược.
   -D --dllname <tên>       Tên dll nhập cần Ä‘ể vào thư viện giao diện.
   -F --linker-flags <các_cờ>     Gởi các cờ này cho bộ liên kết.
   -I --identify <implib>    Thông báo tên cá»§a DLL tương á»©ng với <implib>.
   -L --linker <tên>       Dùng tên này làm bộ liên kết.
   -M --mcore-elf <tập_tin>
       Xá»­ lý các tập tin Ä‘ối tượng kiểu "mcore-elf" vào tập tin này.
   -S --as <tên>               Dùng tên này cho chương trình dịch mã số.
   -U                     Thêm dấu gạch dưới vào thư viện (.lib)
   -U --add-underscore     Thêm dấu gạch dưới vào mọi ký hiệu trong thư viện giao diện.
   -V --version           Hiển thị phiên bản chương trình.
   -a --add-indirect         Thêm lời gián tiếp dạng dll vào tập tin xuất
   -b --base-file <tên_tập_tin>    Äá»c tập tin cÆ¡ bản do bộ liên kết tạo ra.
   -c --no-idata5            Äá»«ng tạo ra phần "idata$5".
   -d --input-def <tên_tập_tin>      Tên tập tin Ä‘ịnh nghÄ©a cần Ä‘ọc vào.
   -e --output-exp <tên_tập_tin>     Tạo ra tập tin kết xuất.
   -f --as-flags <các_cờ>     Gá»­i các cờ này cho chương trình dịch mã số.
   -h --help             Hiển thị trợ giúp này.
   -k                     Giết "@<n>" ra các tên Ä‘ã xuất ra
   -k --kill-at              Giết "@<n>" từ các tên Ä‘ã xuất ra.
   -l --output-lib <tên_tập_tin>     Tạo ra thư viện giao diện.
   -m --machine <máy>    Tạo dạng DLL cho <máy>.  [mặc Ä‘ịnh: %s]
   -n --no-delete         Giữ lại các tập tin tạm thời (lặp lại Ä‘ể bảo tồn thêm)
   -p --ext-prefix-alias <tiền_tố>    Thêm các biệt hiệu có tiền tố này.
   -t --temp-prefix <tiền_tố>    Dùng tiền tố này Ä‘ể tạo tên tập tin tạm thời.
   -v --verbose               Xuất chi tiết.
   -x --no-idata4            Äá»«ng tạo ra phần "idata$4".
   -y --output-delaylib <tên_tập_tin> Tạo một thư viện nhập trệ.
   -z --output-def <tên_tập_tin> Tên tập tin Ä‘ịnh nghÄ©a cần tạo.
   0 (*cục bộ*)       1 (*toàn cục*)      @<tập_tin>        Äá»c các tùy chọn từ tập tin Ä‘ó
   @<tập_tin>        Ä‘ọc các tùy chọn từ tập tin Ä‘ó
   Khoảng bù (Offset) Abbrev: %s
   Chế Ä‘á»™ dấu chấm Ä‘á»™ng:    Các cờ phần Ä‘ầu: 0x%08x
   id áº£nh   : %s
   Ngôn ngữ: %s
   Lần cuối sá»­a  :   Äá»™ dài:        0x%s (%s)
  Thời gian liên kết:   id lớn: %u,  id nhỏ: %u
   Số :    Giá trị        Cỡ Kiểu    Trộn   Hiện    Ndx Tên
   Số :    Giá trị  Cỡ Kiểu    Trộn   Hiện    Ndx Tên
   Thời gian vá:    Kích cỡ con trỏ :  %d
   Chữ ký:    Kiểu bù (Offset):   0x%s
   Phiên bản:       %d
   [Chỉ mục]    Tên
  # sc         giá trị    phần  kiểu aux tên/off
  %#06x:   Chỉ mục tên: %lx  %#06x:   Tên: %s  %#06x: Mẹ %d, chỉ mục tên: %ld
  %#06x: Mẹ %d: %s
  %#06x: Bản: %d  Cờ: %s  %#06x: PhBản: %d  Mục Ä‘ích %*s %*s
  Mục Ä‘ích %*s %10s %*s
  %-20s %10s    Mô tả
  %4u %08x %3u   (Bắt Ä‘ầu á»Ÿ khoảng bù tập tin: 0x%lx)  (Không hiểu giá trị thuộc tính chung dòng: %s)  --dwarf-depth=N        Không hiển thị  DIEs á»Ÿ Ä‘á»™ sâu N hay lớn hÆ¡n
  --dwarf-start=N        Hiển thị DIEs bắt Ä‘ầu từ N, á»Ÿ cùng Ä‘á»™ sâu hay
                         sâu hÆ¡n
  --input-mach <machine>      Äáº·t kiểu máy Ä‘ầu vào là <machine>
  --output-mach <machine>     Äáº·t kiểu máy kết xuất là <machine>
  --input-type <type>         Äáº·t kiểu tập tin Ä‘ầu vào thành <type>
  --output-type <type>        Äáº·t kiểu tập tin kết xuất thành <type>
  --input-osabi <osabi>       Äáº·t OSABI Ä‘ầu vào thành <osabi>
  --output-osabi <osabi>      Äáº·t OSABI kết xuất thành <osabi>
  -h --help                   Hiển thị thông tin này
  -v --version                Hiển thị số phiên bản cá»§a %s
  --plugin <tên>              Nạp phần bổ sung chỉ ra
  --plugin <p> - nạp phần bổ sung chỉ ra
  --target=BFDNAME - chỉ Ä‘ịnh Ä‘ịnh dạng Ä‘ối tượng Ä‘ích là BFDNAME
  -H --help                    In ra trợ giúp này
  -v --verbose                 Hiển thị chi tiết về tiến hành
  -V --version                 In ra thông tin về phiên bản
  -I --histogram
   Hiển thị biểu Ä‘ồ tần xuất cá»§a các Ä‘á»™ dài danh sách xô
  -W --wide              Cho phép chiều rộng kết xuất vượt qua 80 ký tá»±
  @<file>                Äá»c các tùy chọn từ tập tin này
  -H --help                 Hiển thị trợ giúp này
  -v --version               Hiển thị số thứ tá»± phiên bản cá»§a readelf
  -I --input-target <tên_bfd>      Giả Ä‘ịnh tập tin nhập có Ä‘ịnh dạng <tên_bfd>
  -O --output-target <tên_bfd>     Tạo tập tin Ä‘ịnh dạng <tên_bfd>
  -B --binary-architecture <kiến_trúc>    Äáº·t kiến trúc cho tập tin xuất, khi Ä‘ầu vào không có kiến trúc
  -F --target <tên_bfd>    Äáº·t Ä‘ịnh dạng cả nhập lẫn xuất Ä‘ều thành <tên_bfd>
     --debugging               Chuyển Ä‘ổi thông tin gỡ lỗi, nếu có thể
  -p --preserve-dates   Sao chép nhãn thời gian truy cập/sá»­a Ä‘ổi ra kết xuất
  -j --only-section <tên>         Chỉ sao chép <tên> phần ra kết xuất
     --add-gnu-debuglink=<tập_tin>    Thêm liên kết phần ".gnu_debuglink" vào <tập_tin>
  -R --remove-section <tên>       Gỡ bỏ phần <tên> ra kết xuất
  -S --strip-all                       Gỡ bỏ mọi thông tin ký hiệu và Ä‘ịnh vị lại
  -g --strip-debug                 Gỡ bỏ mọi ký hiệu và phần kiểu gỡ lỗi
     --strip-unneeded        Gỡ bỏ mọi ký hiệu không cần thiết Ä‘ể Ä‘ịnh vị lại
  -N --strip-symbol <tên>        Äá»«ng sao chép ký hiệu <tên>
     --strip-unneeded-symbol <tên>
                                   Äá»«ng sao chép ký hiệu <tên> trừ những cái cần thiết Ä‘ể Ä‘ịnh vị lại
     --only-keep-debug     Tước hết, trừ thông tin gỡ lỗi
    --extract-symbol              Gỡ bỏ nội dung cá»§a phần, nhưng giữ các ký hiệu
  -K --keep-symbol <tên>          Không bỏ qua ký hiệu <tên>
    --keep-file-symbols           Không tước các ký hiệu tập tin
    --localize-hidden             Chuyển Ä‘ổi mọi ký hiệu bị áº©n ELF sang cục bộ
  -L --localize-symbol <tên>    Buộc ký hiệu <tên> Ä‘ánh dấu là cục bộ
     --globalize-symbol <tên>    Buộc ký hiệu <tên> Ä‘ánh dấu là cục bộ
  -G --keep-global-symbol <tên>       Äá»‹a phương hóa mọi ký hiệu trừ <name>
  -W --weaken-symbol <tên>            Buộc ký hiệu <name> Ä‘ánh dấu là yếu
       --weaken                      Buộc mọi ký hiệu toàn cục Ä‘ánh dấu là yếu
  -w --wildcard          Cho phép so sánh ký hiệu sá»­ dụng wildcard
  -x --discard-all                 Gỡ bỏ mọi ký hiệu không toàn cục
  -X --discard-locals              Gỡ bỏ ký hiệu nào Ä‘ược tạo ra bởi bộ biên dịch
  -i --interleave [<số>]         Chỉ sao chép N cá»§a mỗi <số> byte
     --interleave-width <số>   Äáº·t N cho --interleave
  -b --byte <số>        Chọn byte số thứ tá»± <số> trong mỗi khối tin Ä‘ã chen vào
     --gap-fill <giá_trị>              Äiền vào khe_ giữa hai phần bằng <giá_trị>
     --pad-to <địa_chỉ>     Äá»‡m_ phần cuối cùng cho tới Ä‘ịa chỉ <địa_chỉ>
     --set-start <địa_chỉ>            Äáº·t Ä‘ịa chỉ bắt Ä‘ầu thành <địa_chỉ>
    {--change-start|--adjust-start} <tăng>
                                   Thêm <tăng> vào Ä‘ịa chỉ bắt Ä‘ầu
    {--change-addresses|--adjust-vma} <tang>
                                   Thêm <tăng> LMA và VMA vào Ä‘ịa chỉ bắt Ä‘ầu
    {--change-section-address|--adjust-section-vma} <tên>{=|+|-}<giá_trị>
                                   Thay Ä‘ổi LMA và VMA cá»§a phần <tên> bằng <giá_trị>
     --change-section-lma <tên>{=|+|-}<giá_trị>
                                   Thay Ä‘ổi LMA cá»§a phần <tên> bằng <giá_trị>
     --change-section-vma <tên>{=|+|-}<giá_trị>
                                   Thay Ä‘ổi VMA cá»§a phần <tên> bằng <giá_trị>
    {--[no-]change-warnings|--[no-]adjust-warnings}
                                   Cảnh báo nếu không có phần có tên
     --set-section-flags <tên>=<cờ ...>
                                   Äáº·t thuộc tính cá»§a phần <tên> thành <cờ ...>
     --add-section <tên>=<tập_tin>    Thêm phần <tên> Ä‘ược tìm trong <tập_tin> vào kết  xuất
     --rename-section <cÅ©>=<mới>[,<cờ ...>]    Thay Ä‘ổi phần <cÅ©> thành <mới>
     --long-section-names {enable|disable|keep}    (bật|tắt|giữ)
                                   Xá»­ lý tên phần dài trong Ä‘ối tượng Coff.
     --change-leading-char    Buộc kiểu dáng cá»§a ký tá»± Ä‘i trước cá»§a Ä‘ịnh dạng xuất
     --remove-leading-char    Gỡ bỏ ký tá»± Ä‘i trước từ các ký hiệu toàn cục
    --reverse-bytes=<số>         Äáº£o ngược <số> byte mỗi lần, trong phần kết xuất có nội dung
     --redefine-sym <cÅ©>=<mới>    Äá»‹nh nghÄ©a lại_ tên _ký hiệu_ <cÅ©> thành <mới>
     --redefine-syms <tập_tin>    Tùy chọn "--redefine-sym" cho mọi cặp ký hiệu
                                               Ä‘ược liệt kê trong <tập_tin>
     --srec-len <số>           Giới hạn _độ dài_ cá»§a các Srecords Ä‘ã tạo ra
     --srec-forceS3                Giới hạn kiểu Srecords thành S3
     --strip-symbols <tập_tin>    "-N" cho mọi ký hiệu Ä‘ược liệt kê trong <tập_tin>
     --strip-unneeded-symbols <tập_tin>
                                   "--strip-unneeded-symbol" cho mọi ký hiệu
                                   Ä‘ược liệt kê trong <tập_tin>
     --keep-symbols <tập_tin>
    "-K" cho mọi ký hiệu Ä‘ược liệt kê trong <tập_tin>
     --localize-symbols <tập_tin>    "-L" cho mọi ký hiệu Ä‘ược liệt kê trong <tập_tin>
     --globalize-symbols <file>    --globalize-symbol cho mọi ký hiệu Ä‘ược liệt kê trong <tập_tin>
     --keep-global-symbols <tập_tin>    "-G" cho mọi ký hiệu Ä‘ược liệt kê trong <tập_tin>
     --weaken-symbols <tập_tin>    "-W" cho mọi ký hiệu Ä‘ược liệt kê trong <tập_tin>
     --alt-machine-code <chỉ-số>    Dùng máy xen kẽ thứ <chỉ-số> cá»§a Ä‘ích
     --writable-text               ÄÃ¡nh dấu văn bản xuất có khả năng ghi
     --readonly-text               Làm cho văn bản xuất Ä‘ược bảo vệ chống ghi
     --pure
    ÄÃ¡nh dấu tập tin xuất sẽ Ä‘ánh trang theo yêu cầu
     --impure                              ÄÃ¡nh dấu tập tin xuất _không tinh khiết_
     --prefix-symbols <tiền_tố>    Thêm <tiền_tố> vào Ä‘ầu cá»§a mọi tên ký hiệu
     --prefix-sections <tiền_tố>
    Thêm <tiền_tố> vào Ä‘ầu cá»§a mọi tên phần
     --prefix-alloc-sections <tiền_tố>
                                   Thêm <tiền_tố> vào Ä‘ầu cá»§a mọi tên phần có thể cấp phát
   --file-alignment <số>        Äáº·t cách sắp hàng tập tin PE thành số này
     --heap <reserve>[,<commit>]   Äáº·t miền nhớ giữ lại/gài vào PE thành <reserve>/
                                   <commit>
     --image-base <địa_chỉ>        Äáº·t cÆ¡ bản áº£nh PE thành Ä‘ịa chỉ này
     --section-alignment <số>     Äáº·t cách sắp hàng phần PE thành số này
     --stack <reserve>[,<commit>]  Äáº·t Ä‘ống giữ lại/gài vào PE thành <reserve>/
                                   <commit>
     --subsystem <tên>[:<phiên_bản>]
                                   Äáº·t hệ thống phụ PE thành <tên> [& <phiên_bản>]
     --compress-debug-sections     Nén chương gỡ lỗi DWARF sá»­ dụng zlib
     --decompress-debug-sections   Giải nén chương gỡ lỗi DWARF sá»­ dụng zlib
  -v --verbose                    Liệt kê mọi tập tin Ä‘ối tượng Ä‘ã Ä‘ược sá»­a Ä‘ổi
  @<file>                          Äá»c các tùy chọn từ tập tin Ä‘ó
  -V --version                    Hiển thị số thứ tá»± _phiên bản_ cá»§a chương trình này
  -h --help                       Hiển thị _trợ giúp_ này
     --info                        Liệt kê các Ä‘ịnh dạng và kiến trúc Ä‘ược hỗ trợ
  -I --input-target=<tên_bfd>        Giả sá»­ tập tin nhập có Ä‘ịnh dạng <tên_bfd>
       (đích nhập)
  -O --output-target=<tên_bfd>  Tạo một tập tin xuất có Ä‘ịnh dạng <tên_bfd>
       (đích xuất)
  -F --target=<tên_bfd>   Äáº·t Ä‘ịnh dạng cả nhập lẫn xuất Ä‘ều thành <tên_bfd>
       (đích)
  -p --preserve-dates
       Sao chép các nhãn thời gian truy cập/đã sá»­a Ä‘ổi vào kết xuất
       (bảo tồn các ngày)
  -R --remove-section=<tên>           _Gỡ bỏ phần_ <name> ra dữ liệu xuất
  -s --strip-all                           Gỡ bỏ mọi thông tin kiểu ký hiệu và Ä‘ịnh vị lại
       (tước hết)
  -g -S -d --strip-debug               Gỡ bỏ mọi ký hiệu và phần kiểu gỡ lỗi
       (tước gỡ lỗi)
     --strip-unneeded               Gỡ bỏ mọi ký hiệu không cần thiết khi Ä‘ịnh vị lại
       (tước không cần thiết)
     --only-keep-debug                 Tước hết, trừ thông tin gỡ lỗi
       (chỉ giữ gỡ lỗi)
  -N --strip-symbol=<tên>          Äá»«ng sao chép ký hiệu <tên>
       (tước ký hiệu)
  -K --keep-symbol=<tên>           Sao chép chỉ ký hiệu <tên>
       (giữ ký hiệu)
   --keep-file-symbols           Äá»«ng tước các ký hiệu tập tin.
       (_giữ các ký hiệu tập tin_)
  -w --wildcard                Cho phép _ký tá»± Ä‘ại diện_ trong chuỗi so sánh ký hiệu
  -x --discard-all                         Gỡ bỏ mọi ký hiệu không toàn cục
       (há»§y hết)
  -X --discard-locals                  Gỡ bo ký hiệu nào do bộ biên dịch tạo ra
       (há»§y các Ä‘iều cục bộ)
  -v --verbose                             Liệt kê mọi tập tin Ä‘ối tượng Ä‘ã sá»­a Ä‘ổi
       (chi tiết)
  -V --version                     Hiển thị số thứ tá»± _phiên bản_ cá»§a chương trình này
  -h --help                                Hiển thị _trợ giúp_ này
     --info                     Liệt kê các Ä‘ịnh dạng Ä‘ối tượng và kiến trúc Ä‘ược hỗ trợ
       (thông tin)  -o <tập_tin>                            Äá»ƒ kết _xuất_ Ä‘ã tướng vào <tập_tin>
  @<file>                           Äá»ƒ dữ liệu xuất Ä‘ã gỡ bỏ vào tập tin Ä‘ó
  -S, --print-size       In ra kích cỡ cá»§a ký hiệu Ä‘ã Ä‘ịnh nghÄ©a
         -s, --print-armap      Bao gồm chỉ mục cho các ký hiệu từ mục cá»§a kho lưu
      --size-sort        Sắp xếp các ký hiệu theo kích cỡ
      --special-syms     Bao gồm các ký hiệu Ä‘ặc biệt trong kết xuất
      --synthetic        CÅ©ng hiển thị các ký hiệu tổng hợp
  -t, --radix=CÆ _SỐ      Dùng cÆ¡ số này Ä‘ể in ra giá trị các ký hiệu
      --target=BFDNAME   Chỉ ra Ä‘ịnh dạng Ä‘ối tượng Ä‘ích như BFDNAME
  -u, --undefined-only   Hiển thị chỉ những ký hiệu chưa Ä‘ịnh nghÄ©a
  -X 32_64               (bị lờ Ä‘i)
  @TẬP_TIN                  Äá»c các tùy từ tập tin này
  -h, --help             Hiển thị trợ giúp này
  -V, --version          Hiển thị số thứ tá»± phiên bản cá»§a chương trình này
 
  -a, --archive-headers        Hiển thị thông tin về các phần Ä‘ầu kho
  -f, --file-headers          Hiển thị nội dung cá»§a toàn bộ "phần Ä‘ầu tập tin"
  -p, --private-headers
        Hiển thị nội dung cá»§a phần Ä‘ầu tập tin Ä‘ặc trưng cho Ä‘ối tượng
       (các phần Ä‘ầu riêng)
  -P, --private=OPT,OPT... Hiển thị nội dung Ä‘ặc trưng Ä‘ịnh dạng Ä‘ối tượng
  -h, --[section-]headers    Hiển thị nội dung cá»§a "các phần Ä‘ầu cá»§a phần"
  -x, --all-headers        Hiển thị nội dung cá»§a "mọi phần Ä‘ầu"
  -d, --disassemble
       Hiển thị nội dung cá»§a mã cá»§a các phần có khả năng thá»±c hiện
       (dịch ngược)
  -D, --disassemble-all    Hiển thị nội dung mã Ä‘ược dịch ngược cá»§a mọi phần
       (dịch ngược hết)
  -S, --source             Trộn lẫn mã "nguồn" với việc dịch ngược
  -s, --full-contents   Hiển thị "nội dung Ä‘ầy Ä‘á»§" cá»§a mọi phần Ä‘ã yêu cầu
  -g, --debugging          Hiển thị thông tin "gỡ lỗi" trong tập tin Ä‘ối tượng
  -e, --debugging-tags      Hiển thị thông tin gỡ lỗi, dùng kiểu dáng ctags
       (các thẻ gỡ lỗi)
  -G, --stabs         Hiển thị (dạng thô) thông tin STABS nào trong thông tin
  -W[lLiaprmfFsoRt] hoặc
  --dwarf[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,
          =frames-interp,=str,=loc,=Ranges,=pubtypes,
          =gdb_index,=trace_info,=trace_abbrev,=trace_aranges]
                           Hiển thị thông tin DWARF trong tập tin
  -t, --syms                              Hiển thị nội dung cá»§a các bảng ký hiệu
       (các ký hiệu [viết tắt])
  -T, --dynamic-syms               Hiển thị nội dung cá»§a bảng ký hiệu Ä‘á»™ng
       (các ký hiệu Ä‘á»™ng [viết tắt])
  -r, --reloc             Hiển thị các mục nhập Ä‘ịnh vị lại trong tập tin
       (định vị lại [viết tắt])
  -R, --dynamic-reloc     Hiển thị các mục nhập Ä‘ịnh vị lại Ä‘á»™ng trong tập tin
       (định vị lại Ä‘á»™ng [viết tắt])
  @<file>                  Äá»c các tùy chọn từ tập tin Ä‘ó
  -v, --version            Hiển thị số thá»± tá»± "phiên bản" cá»§a chương trình này
  -i, --info           Liệt kê các Ä‘ịnh dạng Ä‘ối tượng và kiến trúc Ä‘ược hỗ trợ
       (thông tin [viết tắt])
  -H, --help              Hiển thị "trợ giúp" này
  -b, --target=TÊN_BFD    Chỉ Ä‘ịnh Ä‘ịnh dạng Ä‘ối tượng Ä‘ích là TÊN_BFD
  -m, --architecture=MÁY     Ghi rõ kiến trúc Ä‘ích là MÁY
  -j, --section=TÊN             Hiển thị thông tin chỉ cho phần TÊN
  -M, --disassembler-options=TÙY_CHỌN
       Chuyển TÙY_CHỌN qua cho bộ dịch ngược disassembler
  -EB --endian=big
       Coi Ä‘ịnh dạng tình trạng cuối lớn (big-endian) khi dịch ngược disassembler
  -EL --endian=little
       Coi Ä‘ịnh dạng tình trạng cuối nhỏ (little-endian) khi dịch ngược disassembler
      --file-start-context       Bao gồm ngữ cảnh từ Ä‘ầu tập tin (bằng "-S")
  -I, --include=THƯ_MỤC
       Thêm THƯ_MỤC vào danh sách tìm kiếm tập tin nguồn
  -l, --line-numbers
       Gồm các _số thứ tá»± dòng_ và tên tập tin trong kết xuất
  -F, --file-offsets            Bao gồm các hiệu số tập tin khi hiển thị thông tin
  -C, --demangle[=KIỂU_DÁNG]           giải mã các tên ký hiệu Ä‘ã rối/xá»­ lý
       KIỂU_DÁNG, nếu Ä‘ã ghi rõ, có thể là:
        â€¢ auto        tá»± Ä‘á»™ng
        â€¢ gnu
        â€¢ lucid        rõ ràng
        â€¢ arm
        â€¢ hp
        â€¢ edg
        â€¢ gnu-v3
          â€¢ java
        â€¢ gnat
  -w, --wide                             Äá»‹nh dạng dữ liệu xuất chiếm hÆ¡n 80 cột
  -z, --disassemble-zeroes               Äá»«ng nhảy qua khối  á»‘ không khi rã
      --start-address=ĐỊA_CHỈ            Xá»­ lý chỉ dữ liệu có Ä‘ịa chỉ â‰¥ Äá»ŠA_CHỈ
      --stop-address=ĐỊA_CHỈ            Xá»­ lý chỉ dữ liệu có Ä‘ịa chỉ â‰¤ Äá»ŠA_CHỈ
      --prefix-addresses         In ra Ä‘ịa chỉ hoàn toàn Ä‘ịa chỉ khi dịch ngược
      --[no-]show-raw-insn    Hiển thị thập lục phân á»Ÿ bên việc dịch ngược kiểu ký hiệu
      --insn-width=RỘNG        Hiển thị RỘNG byte trên một dòng Ä‘Æ¡n cho -d
      --adjust-vma=HIỆU_SỐ        Thêm HIỆU_SỐ vào mọi Ä‘ịa chỉ phần Ä‘ã hiển thị
      --special-syms          Gồm _các ký hiệu Ä‘ặc biệt_ trong việc Ä‘ổ ký hiệu
      --prefix=TIỀN_TỐ            Thêm TIỀN_TỐ này vào Ä‘ường dẫn tương Ä‘ối cho "-S"
      --prefix-strip=CẤP       Tước tên thư mục Ä‘ầu tiên cho "-S"
  -i --instruction-dump=<số|tên>
                         Tháo ra nội dung cá»§a phần <số|tên>
  -r                           Bị bỏ qua Ä‘ể tương thích với rc (tài nguyên)
   @<file>                   Äá»c các tùy chọn từ tập tin này
  -h, --help                 Hiển thị trợ giúp này
  -V, --version            Hiển thị thông tin về phiên bản
  -t                           Cập nhật nhãn thời gian sÆ¡ Ä‘ồ ký hiệu cá»§a kho lưu
  -h --help                    Hiển thị trợ giúp này
  -v --version                 Hiển thị thông tin về phiên bản
  @<tập_tin>    â€¢ Ä‘ọc các tùy chọn từ tập tin này
  Phiên bản ABI:                       %d
  ÄChỉ: 0x  Nâng Dòng từ %s tới %d
  Nâng cao PC bước %s tới 0x%s
  Nâng cao PC bước %s tới 0x%s[%d]
  Nâng PC (con Ä‘ếm chương trình) từ hằng số %s tới 0x%s
  Nâng PC (con Ä‘ếm chương trình) từ hằng số %s tới 0x%s[%d]
  Nâng cao PC (con Ä‘ếm chương trình) bằng cách Ä‘ịnh tổng kích cỡ cố Ä‘ịnh %s tới 0x%s
  Hạng:                             %s
  Äáº¿m: %d
  Kiểu mẫu nén %d
  ÄÆ¡n vị So sánh @ offset 0x%s:
  Chép
  Phiên bản DWARF:               %d
  DW_CFA_??? (Toán tá»­ khung gọi do người dùng Ä‘ịnh nghÄ©a): %#x)
  Dữ liệu:                              %s
  Mục    TMục    Giờ    Cỡ    Tên
  Äá»‹a chỉ Ä‘iểm vào :                 Opcode (mã thao tác) Ä‘ã mở rộng %d:   Äá»‘i sỗ mã lệnh mở rộng:
  Tập tin: %lx  Tập tin: %s  Cờ  Cờ :                             0x%lx%s
  Cờ: %s  Phiên bản: %d
  Tùy chọn chung:
  Chỉ mục: %d  Äáº¿m: %d    Giá trị Ä‘ầu tiên cá»§a "is_stmt":  %d
  Chiều dài :                              %ld
  Dài:                      %ld
  Dài:                   %ld
  CÆ¡ bản dòng:                   %d
  Phạm vi dòng:                  %d
  Máy:                           %s
  Ma thuật:     Số thao tác trên mỗi chỉ lệnh tối Ä‘a: %d
  Chiều dài câu lệnh tối thiểu :  %d
  Không phần Ä‘ầu aux
  Không có tùy chọn Ä‘ặc trưng cho mô phỏng
 Không phần Ä‘ầu Ä‘oạn
  Không tìm thấy chuỗi trong phần này.  Ghi chú : phần này có một số việc Ä‘ịnh vị lại Ä‘ược gán, nhưng chúng CHƯA Ä‘ược Ã¡p dụng cho việc Ä‘ổ này.
  Số xô :    Giá trị         Cỡ   Kiểu   Trộn Hiện     Ndx Tên
  Số xô :    Giá trị  Cỡ   Kiểu   Trộn Hiện      Ndx Tên
  Số :    CMục     Giá trị    Tên  Số THẺ
  Số các dòng Ä‘ầu phần chương trình:         %ld  Số các dòng Ä‘ầu phần:         %ld  OS/ABI:                            %s
  Bù        Tin         Kiểu      Giá trị ký hiệu  Tên ký hiệu
  Bù        Tin         Kiểu     Giá trị ký hiệu  Tên ký hiệu + Phần cộng
  Bù vào phần .debug_info:     0x%lx
  Khoảng bù vào .debug_info:  0x%lx
  Khoảng bù vào .debug_line:     0x%lx
  Kích thước bù:                 %d
  Khoảng bù :                      0x%lx
  Bù : %#08lx  Liên kết: %u (%s)
  Mã thao tác %d có %d Ä‘ối số
  CÆ¡ bản mã thao tác:                 %d
  Tùy chọn cho %s:
  Các tùy chọn Ä‘ược gá»­i qua cho DLLTOOL:
  Thá»§ tục cá nhân:   Kích cỡ con trỏ :             %d
  Chiều dài Ä‘oạn mở Ä‘ầu :             %d
  Các thanh ghi Ä‘ã Ä‘ược phục hồi lại:   Các Ä‘iều còn lại Ä‘ược gá»­i mà chưa Ä‘ược sá»­a Ä‘ổi cho trình Ä‘iều khiển ngôn ngữ
  Phục hồi stack từ con trỏ khung
  Thanh ghi trả về: %s
  Chỉ mục bảng chuỗi dòng Ä‘ầu phần: %ld  Các phần phân Ä‘oạn...
  Kích cỡ phân Ä‘oạn:             %d
  Äáº·t Tên Tập Tin vào mục %s trong Bảng Tên Tập Tin
  Lập ISA thành %lu
  Äáº·t ISA thành %s
  Lập khối cÆ¡ bản
  Äáº·t cột thành %s
  Lập "epilogue_begin" (đầu phần kết) là true (đúng)
  Äáº·t is_stmt thành %s
  Lập "prologue_end" (kết thúc Ä‘oạn mở Ä‘ầu) là true (đúng)
  Kích cỡ cá»§a vùng trong phần ".debug_info": %ld
  Cỡ các dòng Ä‘ầu chương trình:           %ld (byte)
  Cỡ các dòng Ä‘ầu phần:           %ld (byte)
  Kích cỡ phần này:               %ld (byte)
  Mã thao tác Ä‘ặc biệt %d: nâng cao Äá»‹a chỉ bước %s tới 0x%s  Mã thao tác Ä‘ặc biệt %d: nâng cao Äá»‹a chỉ bước %s tới 0x%s[%d]  Gia số Stack %d
  Thẻ        Kiểu                     Tên/Giá trị
  Kiểu         Bù         Äá»‹a Chỉ áº¢o     Äá»‹a Chỉ Vật lý
  Kiểu         Bù   Äá»‹a Chỉ áº¢o   Äá»‹a Chỉ Vật lý   CỡTập CỡNhớ  Cờ Canh
  Kiểu         Bù   Äá»‹a Chỉ áº¢o   Äá»‹a Chỉ Vật lý   CỡTập CỡNhớ  Cờ Canh
  Kiểu :                              %s
  Không nắm Ä‘ược số mầu nhiệm
  Gặp opcode (mã thao tác) không rõ %d với tác tá»­ :   Không hiểu ngữ cảnh cá»§a phần
  Xác Ä‘ịnh phiên bản phụ qua kết thúc phần
  Xác Ä‘ịnh phiên bản qua kết thúc phần
  Phiên bản:                             %d
  Phiên bản:                           %d %s
  Phiên bản:                           0x%lx
  Phiên bản :                     %d
  Phiên bản:                  %d
  [-X32]       â€¢ bỏ qua các Ä‘ối tượng kiểu 64 bit
  [-X32_64]    â€¢ chấp nhận các Ä‘ối tượng kiểu cả hai 32 bit và 64 bit
  [-X64]       â€¢ bỏ qua các Ä‘ối tượng kiểu 32 bit
  [-g]         â€¢ kho nhỏ 32-bit
  [D]          - dùng số không cho nhãn thời gian và UID/GID
  [N]          â€¢ dùng lần [số Ä‘ếm] gặp tên
  [Nr] Tên
  [Nr] Tên              Kiểu             Äá»‹a chỉ           Bù
  [Nr] Tên              Kiểu            ÄChỉ     Bù    Cỡ   ES Cờ Lkết Tin Canh
  [Nr] Tên              Kiểu            Äá»‹a chỉ          Bù    Cỡ   ES Cờ Lkết Tin Canh
  [P]          â€¢ dùng tên Ä‘ường dẫn Ä‘ầy Ä‘á»§ khi khớp
  [S]          â€¢ Ä‘ừng xây dá»±ng bảng ký hiệu
  [T]          â€¢ tạo một kho lưu mảnh
  [Dữ liệu Ä‘ã cắt cụt]
  [V]          â€¢ hiển thị số thứ tá»± phiên bản
  [a]          â€¢ Ä‘ể tập tin Ä‘ẳng sau [tên bộ phạn]
  [b]          â€¢ Ä‘ể tập tin Ä‘ẳng trước [tên bộ phạn] (bằng [i])
  [c]          â€¢ Ä‘ừng cảnh báo nếu thư viện phải Ä‘ược tạo
  [f]         â€¢ cắt ngắn tên tập tin Ä‘ã chèn
  [o]          â€¢ bảo tồn các ngày gốc
  [s]          â€¢ tạo một chỉ mục kho (như ranlib)
  [u]          â€¢ thay thế chỉ những tập tin mới hÆ¡n nội dung cá»§a kho hiện thời
  [v]          â€¢ xuất chi tiết
  d            â€¢ xoá tập tin ra kho
  Ä‘ịnh nghÄ©a mục nhập Bảng Tập Tin mới
  các cờ:         0x%04x   tắt nhập khẩu tập tin:   %u
  nhập vào Ä‘á»™ dài strtab: %u
  m[ab]        â€¢ di chuyển tập tin trong kho
  số mầu nhiệm:         0x%04x (0%04o)    các tập tin nhập nbr:  %u
  nbr relocs:        %u
  các Ä‘oạn nbr:  %d
  ký hiệu nbr:       %u
  các ký hiệu nbr:   %d
  opt hdr sz:    %d
  p            â€¢ in tập tin Ä‘ược tìm trong kho
  q[f]         â€¢ phụ thêm nhanh tập tin vào kho
  r[ab][f][u]  â€¢ thay thế tập tin Ä‘ã có, hoặc chèn tập tin mới vào kho
  s            - thá»±c hiện như là thư viện ranlib
  scnlen: %08x  nreloc: %-6u
  scnlen: %08x  nreloc: %-6u  nlinno: %-6u
  Ä‘á»™ dài bảng chuỗi:  %u
  tắt bảng chuỗi:  %u
  symbols off:   0x%08x
  t            â€¢ hiển thị nội dung cá»§a kho
  thời gian và ngày tháng: 0x%08x  -   phiên bản:           %u
  x[o]         â€¢ trích tập tin ra kho
 %3u %3u  %s khối byte:  (Bù tập tin: 0x%lx) (byte vào tập tin)
 (byte vào tập tin)
  Äáº§u các dòng Ä‘ầu phần:           (bytes)
 (cuối thẻ tại %08x)
 (chuỗi gián tiếp, khoảng bù (offset): 0x%s): %s (chung dòng bởi)  (không có chuỗi):
 (đầu == cuối) (đầu > cuối) (kích thước chuỗi: %08x):
 <%d><%lx>: ...
 <%d><%lx>: Số viết tắt: %lu<hư hỏng: %14ld><hư hỏng: nằm ngoài phạm vi> ÄChỉ:  ÄChỉ: 0x Phải Ä‘ưa ra Ã­t nhất một cá»§a những cái chuyển theo sau :
 Giá trị gp chính tắc:  Chuyển Ä‘ổi Ä‘ịa chỉ sang cặp số thứ tá»± dòng/tên tập tin.
 Chuyển Ä‘ổi tập tin Ä‘ối tượng sang Mô-đun Nạp ÄÆ°á»£c NetWare (NetWare Loadable Module)
 Sao chép một tập tin nhị phân, cÅ©ng có thể chuyển dạng nó
 DW_MACINFO_define (định nghÄ©a) â€” dòng số: %d; vÄ© lệnh: %s
 DW_MACINFO_end_file (kết thúc tập tin)
 DW_MACINFO_start_file (bắt Ä‘ầu tập tin) â€” dòng số: %d; tập tin số: %d
 DW_MACINFO_undef (chưa Ä‘ịnh nghÄ©a) â€” dòng số: %d; vÄ© lệnh: %s
 DW_MACINFO_vendor_ext (phần mở rộng nhà bán) â€” hằng số : %d chuỗi : %s
 DW_MACRO_GNU_%02x
 DW_MACRO_GNU_%02x - DW_MACRO_GNU_define - dòngsố : %d macro : %s
 DW_MACRO_GNU_define_indirect - dòngsố : %d macro : %s
 DW_MACRO_GNU_end_file
 DW_MACRO_GNU_start_file - dòngsố: %d tậptinsố: %d
 DW_MACRO_GNU_start_file - dòngsố: %d tậptinsố: %d tập tin: %s%s%s
 DW_MACRO_GNU_transparent_include - khoảng bù : 0x%lx
 DW_MACRO_GNU_undef - dòngsố : %d macro : %s
 DW_MACRO_GNU_undef_indirect - dòngsố : %d macro : %s
 Hiển thị thông tin về nội dung cá»§a tập tin Ä‘ịnh dạng ELF
 Hiển thị thông tin từ các <tập_tin> Ä‘ối tượng.
 Hiển thị các chuỗi có khả năng in trong [tập tin...] (mặc Ä‘ịnh là Ä‘ầu vào tiêu chuẩn)
 Hiển thị kích cỡ cá»§a các phần bên trong tập tin nhị phân
 Mục nhập:
 Tạo ra chỉ mục Ä‘ể tăng tốc Ä‘á»™ truy cập Ä‘ến kho
 Mục nhập toàn cục:
 Không ghi rõ Ä‘ịa chỉ trên dòng lệnh thì Ä‘ọc từ Ä‘ầu vào tiêu chuẩn
 Không ghi rõ tập tin nhập vào thì giả sá»­ <a.out>
 Thiết bị Lazy
 Dài       Số           %% tổng  Phạm vi
 Liệt kê các ký hiệu trong những tập tin này (mặc Ä‘ịnh là <a.out>).
 Mục nhập cục bộ :
 Con trỏ môđun
 Con trỏ môđun (phần mở rộng GNU)
KHÔNG GHI CHÚ : phần này có một số việc Ä‘ịnh vị lại Ä‘ược gán, nhưng chúng CHƯA Ä‘ược Ã¡p dụng cho việc Ä‘ổ này.
 Tên (dài: %u):  Không có
 Số : Tên                           ÄÃ³ngVới     Cờ
 Bù     Tin    Kiểu            Giá trị ký hiệu Tên ký hiệu
 Bù     Tin    Kiểu            Giá trị ký hiệu  Tên ký hiệu + gì thêm
 Bù     Tin    Kiểu    Giá trị ký hiệu Tên ký hiệu
 Bù     Tin    Kiểu    Giá trị ký hiệu Tên ký hiệu + gì thêm
 Tùy chọn:
  -a --all                                   Tương Ä‘ương với: -h -l -S -s -r -d -V -A -I
  -h --file-header                       Hiển thị Ä‘ầu tập tin ELF
  -l --program-headers           Hiển thị phần Ä‘ầu chương trình
     --segments                      Bí danh cho "--program-headers"
  -S --section-headers               Hiển thị Ä‘ầu cá»§a các phần
     --sections                      Bí danh "--section-headers"
  -g --section-groups                     Hiển thị các nhóm phần
  -t --section-details            Hiển thị chi tiết về phần
  -e --headers                           Tương Ä‘ương với: -h -l -S
  -s --syms                          Hiển thị bảng ký hiệu
      --symbols                      Bí danh cho "--syms"
  --dyn-syms             Hiển thị bảng ký hiệu năng Ä‘á»™ng
  -n --notes                         Hiển thị các ghi chú lõi (nếu có)
  -r --relocs                    Hiển thị các việc Ä‘ịnh vị lại (nếu có)
  -u --unwind                    Hiển thị thông tin tháo ra (nếu có)
  -d --dynamic                   Hiển thị phần Ä‘á»™ng (nếu có)
  -V --version-info              Hiển thị các phần phiên bản (nếu có)
  -A --arch-specific     Hiển thị thông tin Ä‘ặc trưng cho kiến trúc (nếu có)
  -c --archive-index     Hiển thị chỉ mục ký hiệu/tập tin trong một kho
  -D --use-dynamic       Dùng thông tin phần Ä‘á»™ng khi hiển thị ký hiệu
  -x --hex-dump=<số|tên>
                         Äá»• nội dung cá»§a phần <số|tên> (dạng byte)
  -p --string-dump=<số|tên>
                         Äá»• nội dung cá»§a phần <số|tên> (dạng chuỗi)
 -R --relocated-dump=<số|tên>
                         Äá»• nội dung cá»§a phần <số|tên> (dạng byte Ä‘ã Ä‘ịnh vị lại)
  -w[lLiaprmfFsoRt] hay
    --debug-dump[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,
               =frames-interp,=str,=loc,=Ranges,=pubtypes,
               =gdb_index,=trace_info,=trace_abbrev,=trace_aranges]
                         Hiển thị nội dung cá»§a chương gỡ lỗi DWARF2
 â€¢ rawline        dòng thô
 â€¢ decodeline        giải mã dòng
 â€¢ info            thông tin
 â€¢ abbrev            viết tắt
 â€¢ pubnames        xuất các tên
 â€¢ aranges        a các phạm vi
 â€¢ macro            vÄ© lệnh
 â€¢ frames            các khung
 â€¢ str            chuỗi
 â€¢ loc            Ä‘ịnh vị
 â€¢ Ranges        các phạm vi
Bộ giải quyết PLT lazy
 Hiển thị á»Ÿ Ä‘ịnh dạng dễ hiểu dành cho con người Ä‘ể thể hiện tập tin Ä‘ối tượng COFF
 Gỡ bỏ ký hiệu và phần ra tập tin
 Mục nhập dành riêng:
 Tùy chọn:
 Tùy chọn:
  -A|-B     --format={sysv|berkeley}
           Chọn kiểu dáng kết xuất (mặc Ä‘ịnh là %s)
  -o|-d|-x  --radix={8|10|16}
           Hiển thị các số dạng bát phân, thập phân hay thập lục
  -t        --totals          Hiển thị các kích cỡ tổng cộng (chỉ Berkeley)
            --common      Hiển thị kích cỡ tổng cổng cho các sym *COM*
            --target=<tên_bfd>    Lập Ä‘ịnh dạng tập tin nhị phân
            @<file>                   Äá»c các tùy chọn từ tập tin Ä‘ó
  -h        --help                Hiển thị trợ giúp này
  -v        --version            Hiển thị phiên bản cá»§a chương trình này
 
 Tùy chọn:
  -I --input-target=<tên_bfd>        Lập Ä‘ịnh dạng tập tin nhị phân nhập
                                   (_đích nhập_)
  -O --output-target=<tên_bfd>        Lập Ä‘ịnh dạng tập tin nhị phân xuất
                                   (_đích xuất_)
  -T --header-file=<tập_tin>
       Äá»c tập tin này Ä‘ể  tìm thông tin phần Ä‘ầu NLM (_tập tin phần Ä‘ầu_)
  -l --linker=<bộ_liên_kết>                Dùng _bộ liên kết_ này khi liên kết
  -d --debug
   Hiển thị trên thiết bị lỗi chuẩn dòng lệnh cá»§a bộ liên kết (_gỡ lỗi_)
  @<file>                            Äá»c các tùy chọn từ tập tin Ä‘ó
  -h --help                                Hiển thị _trợ giúp_ này
  -v --version                             Hiển thị _phiên bản_ chương trình
 Tùy chọn:
  -a - --all                    Quét toàn bộ tập tin, không chỉ phần dữ liệu
  -f --print-file-name      Hiển thị tên tập tin á»Ÿ trước mỗi chuỗi
  -n --bytes=[số]
    Tìm và in ra dãy Ä‘ã chấm dứt NUL nào có Ã­t nhất
  -<số>                 số ký tá»± này (mặc Ä‘ịnh là 4).
  -t --radix={o,d,x}
       In ra Ä‘ịa Ä‘iểm cá»§a chuỗi dạng bát phân, thập phân hay thập lục
  -o                              Biệt hiệu cho "--radix=o" 
  -T --target=<TÊN_BFD>     Ghi rõ Ä‘ịnh dạng tập tin nhị phân
  -e --encoding={s,S,b,l,B,L}
       Chọn kích cỡ ký tá»± và tình trạng cuối (endian):
                s = 7-bit, S = 8-bit, {b,l} = 16-bit, {B,L} = 32-bit
    @<file>                   Äá»c các tùy chọn từ tập tin Ä‘ó
  -h --help                   Hiển thị trợ giúp này
  -v -V --version          In ra số thứ tá»± phiên bản cá»§a chương trình
 Các tùy chọn là:
  -a --ascii_in                Äá»c tập tin nhập vào dạng tập tin ASCII
  -A --ascii_out               Ghi các thông Ä‘iệp nhị phân dạng ASCII
  -b --binprefix               Tên tập tin ".bin" có tiền tố ".mc filename_" Ä‘ể duy nhất.
  -c --customflag              Äáº·t các _cờ riêng_ cho thông Ä‘iệp
  -C --codepage_in=<giá_trị>       Äáº·t trang mã khi Ä‘ọc tập tin văn bản mc
  -d --decimal_values          In ra các giá trị vào tập tin văn bản thập phân
  -e --extension=<phần_mở_rộng>   Äáº·t Ä‘uôi mở rộng sá»­ dụng khi xuất tập tin phần Ä‘ầu
  -F --target <đích>         Ghi rõ Ä‘ích xuất cho endianness
  -h --headerdir=<thư_mục>   Äáº·t thư mục xuất khẩu cho các phần Ä‘ầu
  -u --unicode_in              Äá»c tập tin nhập vào dạng UTF16
  -U --unicode_out             Ghi các thông Ä‘iệp nhị phân dạng UFT16
  -m --maxlength=<giá_trị>         Äáº·t Ä‘á»™ dài thông Ä‘iệp tối Ä‘a Ä‘ược phép
  -n --nullterminate           Tá»± Ä‘á»™ng thêm vào chuỗi sá»± chấm dứt số không
  -o --hresult_use             _Dùng_ lời xác Ä‘ịnh HRESULT thay cho
       lời xác Ä‘ịnh mã trạng thái
  -O --codepage_out=<giá_trị>     Äáº·t trang mã dùng Ä‘ể ghi tập tin văn bản
  -r --rcdir=<thư_mục>       Äáº·t thư mục xuất khẩu cho các tập tin rc
  -x --xdbg=<thư_mục>      NÆ¡i cần tạo tập tin bao gồm C .dbg mà
                               Ã¡nh xạ các mã nhận diện thông Ä‘iệp tới tên kiểu ký hiệu cá»§a nó.
 Tùy chọn:
  -a, --debug-syms           Hiển thị ký hiệu chỉ kiểu bộ gỡ lỗi
  -A, --print-file-name      In ra tên tập tin nhập vào trước mọi ký hiệu
  -B                                 Bằng "--format=bsd"
  -C, --demangle[=KIỂU_DÁNG]
   Giải mã các tên ký hiệu cấp thấp thành tên cấp người dùng (_tháo gỡ_)
       Kiểu dáng này, nếu Ä‘ược ghi rõ, có thể  là "auto" (tá»± Ä‘á»™ng: mặc Ä‘ịnh)
   "gnu", "lucid", "arm", "hp", "edg", "gnu-v3", "java" hay "gnat".
      --no-demangle              Äá»«ng tháo gỡ tên ký hiệu cấp thấp
  -D, --dynamic                  Hiển thị ký hiệu Ä‘á»™ng thay vào ký hiệu chuẩn
      --defined-only             Hiển thị chỉ ký hiệu Ä‘ược Ä‘ịnh nghÄ©a
  -e                                 (bị bỏ qua)
  -f, --format=ĐỊNH_DẠNG        Dùng Ä‘ịnh dạng kết xuất này, một cá»§a
                           "bsd" (mặc Ä‘ịnh), "sysv" hay "posix"
  -g, --extern-only              Hiển thị chỉ ký hiệubên ngoài_
  -l, --line-numbers             Dùng thông tin gỡ lỗi Ä‘ể tìm tên tập tin
                       và số thứ tá»± dòng cho mỗi ký hiệu
  -n, --numeric-sort             Sắp xếp các ký hiệu một cách thuộc số theo Ä‘ịa chỉ
  -o                                 Bằng "-A"
  -p, --no-sort                  Äá»«ng sắp xếp các ký hiệu
  -P, --portability              Bằng "--format=posix"
  -r, --reverse-sort             Sắp xếp ngược
 Tùy chọn:
  -h --help                 Hiển thị trợ giúp này
  -v --version              In ra số thứ tá»± phiên bản cá»§a chương trình
 Tùy chọn:
  -i --input=<tập_tin>            Tập tin nhập vào
  -o --output=<tập_tin>         Tập tin kết xuất
  -J --input-format=<định_dạng>    Ghi rõ Ä‘ịnh dạng nhập vào
  -O --output-format=<định_dạng>    Ghi rõ Ä‘ịnh dạng kết xuất
  -F --target=<đích>              Ghi rõ Ä‘ích COFF
     --preprocessor=<chương_trình>   Chương trình cần dùng Ä‘ể tiền xá»­ lý tập tin rc (tài nguyên)
     --preprocessor-arg=<arg>  Các Ä‘ối số phụ thêm cá»§a bộ tiền xá»­ lý
  -I --include-dir=<thư_mục>  Bao gồm thư mục này khi tiền xá»­ lý tập tin rc
  -D --define <ký_hiệu>[=<giá_trị>]   Äá»‹nh nghÄ©a ký hiệu SYM khi tiền xá»­ lý tập tin rc
  -U --undefine <ký_hiệu>  Há»§y Ä‘ịnh nghÄ©a ký hiệu SYM khi tiền xá»­ lý tập tin rc
  -v --verbose             Chi tiết: xuất thông tin về hành Ä‘á»™ng hiện thời
  -c --codepage=<trang_mã>   Ghi rõ trang mã mặc Ä‘ịnh
  -l --language=<giá_trị>    Äáº·t ngôn ngữ Ä‘ể Ä‘ọc tập tin rc (tài nguyên)
     --use-temp-file       Dùng tập tin tạm thời thay cho popen Ä‘ể Ä‘ọc kết xuất tiền xá»­ lý
     --no-use-temp-file        Dùng popen (mặc Ä‘ịnh)
 Tùy chọn:
  -q --quick       (CÅ© nên bị bỏ qua)
  -n --noprescan    Äá»«ng quét Ä‘ể chuyển Ä‘ổi các Ä‘iều dùng chung (common)
       thành lời Ä‘ịnh nghÄ©a (def)
  -d --debug       Hiển thị thông tin về hành Ä‘á»™ng hiện thời
   @<file>            Äá»c các tùy chọn từ tập tin này
  -h --help          Hiển thị trợ giúp này
  -v --version      In ra số thứ tá»± phiên bản cá»§a chương trình
Tùy:
   @<tập_tin>        Äá»c các tùy chọn từ tập tin này
 Tùy chọn:
  @<tập_tin>            Äá»c các tùy chọn từ tập tin này
    -b --target=<định_dạng>      Äáº·t Ä‘ịnh dạng tập tin nhị phân
  -e --exe=<trình>      Äáº·t tên tập tin nhập vào (mặc Ä‘ịnh là "a.out")
  -i --inlines            Tháo ra các hàm trá»±c tiếp (chung dòng)
  -j --section=<tên>    Äá»c các hiệu tương Ä‘ối với phần thay cho Ä‘ịa chỉ
  -p --pretty-print      Làm cho kết xuất dễ Ä‘ọc Ä‘ối với con người
   -s --basenames        Tước các tên thư mục
  -f --functions             Hiện tên các chức năng
  -C --demangle[=kiểu_dáng]      Tháo gỡ các tên chức năng
  -h --help                 Hiện thông tin trợ giúp này
  -v --version               Hiện phiên bản cá»§a chương trình
 
Tùy chọn:
  @<tập_tin>        Ä‘ọc các tùy chọn từ tập tin Ä‘ó
   -h, --help            hiển thị trợ giúp này
 -v --version         hiển thị phiên bản cá»§a chương trình
Phần ".text" (văn bản) bị cắt cụt
 Phiên bản không nắm Ä‘ược
Không rõ mã lệnh macro %02x nghÄ©a là gì
 Cập nhật phần Ä‘ầu ELF cá»§a tập tin ELF
 [không có DW_AT_frame_base] Ä‘ịa chỉ vượt quá kích cỡ phần
 và Dòng bởi %s tới %d
 tại  tại khoảng bù 0x%lx chứa %lu mục nhập:
 chỉ mục ký hiệu sai: %08lx bộ sá»­a Ä‘ổi Ä‘ặc trưng cho lệnh:
 lệnh:
 tùy chọn mô phỏng:
 bộ sá»­a Ä‘ổi chung:
không tìm thấy thẻ nào
 số cá»§a các Ä‘iểm neo CTL: %u
 vẫn tùy chọn:
 bộ giải dịch chương trình các thẻ tại %08x
 kiểu: %lx, cỡ_tên: %08lx, cỡ_mô_tả: %08lx
#dòng %d #nguồn %d%08x: <không rõ>%ld: ".bf" không có hàm Ä‘i trước%ld: ".ef" bất thường
%lu
%s
 (phần Ä‘ầu %s, dữ liệu %s)
%s %s%c0x%s chưa bao giờ dùng%s cả hai Ä‘ược sao chép và bị gỡ bỏ%s Ä‘ã thoát với trạng thái %d%s không có chỉ mục kho lưu
%s không phải là một thư viện%s không phải là một kho hợp lệdữ liệu phần %s%s: %s: Ä‘ịa chỉ á»Ÿ ngoại phạm vi%s: Không thể mở kho lưu nhập vào %s
%s: Không thể mở kho lưu kết xuất %s
%s: Lỗi: %s: Gặp lỗi khi Ä‘ọc phần Ä‘ầu ELF
%s: lỗi Ä‘ọc dòng Ä‘ầu tập tin
%s: lỗi Ä‘ọc số ma thuật cá»§a tập tin
%s: Gặp lỗi khi di chuyển vị trí Ä‘ọc tới phần Ä‘ầu ELF
%s: Gặp lỗi khi cập nhật phần Ä‘ầu ELF: %s
%s: Ä‘ịnh dạng khớp:%s: Ký hiệu "%s" Ä‘ã Ä‘ược Ä‘ịnh nghÄ©a lại nhiều lần%s: Không phải là tập tin ELF - có những byte ma thuật không Ä‘úng tại vị trí bắt Ä‘ầu
%s: các thành phần Ä‘ường dẫn bị tước ra tên áº£nh, "%s".%s: Ký hiệu "%s" là Ä‘ích cá»§a nhiều lời Ä‘ịnh nghÄ©a lại%s: Không khớp EI_CLASS: %d thì không %d
%s: Không khớp EI_OSABI: %d thì không %d
%s: Không khớp e_machine: %d thì không %d
%s: Không khớp e_type: %d thì không %d
%s: Không hỗ trợ EI_VERSION: %d thì không %d
%s: Cảnh báo : %s: tên tập tin kho lưu sai
%s: con số sai: %s%s: gặp phiên bản sai trong hệ thống phụ PE%s: không tìm thấy tập tin mô-đun %s
%s: không thể mở tập tin %s
%s: không tìm thấy phần %s%s: không thể lấy Ä‘ịa chỉ từ kho%s: không thể lập thời gian: %s%s: không tìm thấy phần Ä‘ầu kho lưu hợp lệ
%s: gặp kết thúc bảng ký hiệu Ä‘ằng trước kết thúc chỉ mục
%s: việc thá»±c hiện %s bị lỗi: %s: lỗi Ä‘ọc dòng Ä‘ầu kho lưu
%s: lỗi Ä‘ọc phần Ä‘ầu kho lưu theo sau chỉ mục kho lưu
%s: lỗi Ä‘ọc chỉ mục kho lưu
%s: lỗi Ä‘ọc bảng ký hiệu chỉ mục kho lưu
%s: lỗi Ä‘ọc bảng chuỗi tên ký hiệu dài
%s: lỗi tìm nÆ¡i ngược về Ä‘ầu cá»§a các tập tin Ä‘ối tượng trong kho lưu
%s: gặp lỗi khi tìm tới thành viên kho lưu.
%s: lỗi tìm nÆ¡i tới mục kho lưu.
%s: lỗi tìm nÆ¡i tới dòng Ä‘ầu kho Ä‘ầu tiên
%s: lỗi tìm nÆ¡i tới dòng Ä‘ầu kho lưu kế tiếp
%s: lỗi tìm nÆ¡i tới tên tập tin kế tiếp
%s: lỗi nhảy qua bảng ký hiệu kho lưu
%s: tập tin %s không phải là một kho lưu
%s: fread bị lỗi%s: lỗi fseek tới %lu: %s%s: sai Ä‘ặt giá trị gài vào cho "--heap"%s: sai Ä‘ặt giá trị gài vào cho "--stack"%s: Ä‘ịnh dạng kết xuất không hợp lệ%s: cÆ¡ sở không hợp lệ%s: sai Ä‘ặt giá trị giữ lại cho "--heap"%s: sai Ä‘ặt giá trị giữ lại cho "--stack"%s: không có sÆ¡ Ä‘ồ kho cần cập nhật%s: không có kho lưu Ä‘ã mở
%s: không có kho lưu kết xuất Ä‘ã mở
%s: chưa ghi rõ kho lưu kết xuất
%s: không có thông tin gỡ lỗi Ä‘ã nhận ra%s: không có phần tài nguyên%s: không có ký hiệu%s không phải là môt Ä‘ối tượng Ä‘á»™ng%s: không Ä‘á»§ dữ liệu nhị phân%s: việc in ra thông tin gỡ lỗi bị lỗi%s: việc Ä‘ọc %lu Ä‘ã trả lại %lu%s: Ä‘ọc: %s%s: kiến trúc Ä‘ược hỗ trợ :%s: Ä‘ịnh dạng Ä‘ược hỗ trợ :%s: Ä‘ích Ä‘ược hỗ trợ :%s: có ký hiệu còn lại trong bảng ký hiệu chỉ mục, mà không có mục nhập tương á»©ng trong bảng chỉ mục
%s: kho lưu có một chỉ mục nhưng chưa có ký hiệu
%s: chỉ mục kho lưu vẫn trống
%s: chỉ mục kho lưu nên có %ld mục nhập, còn phần Ä‘ầu chứa kích cỡ quá nhở
%s: không thể Ä‘ổ chỉ mục vì không tìm thấy
%s: gặp kết thúc tập tin bất thường%s: cảnh báo : %s: cảnh báo : thư viện dùng chung không thể chứa dữ liệu chưa Ä‘ược sở khởi%s: cảnh báo : không rõ kích cỡ cho trường "%s" trong cấu trúc%s:%d: Äang bỏ qua rác Ä‘ược gặp trên dòng này%s:%d: gặp rác tại kết thúc dòng%s:%d: thiếu tên ký hiệu mới%s:%d: gặp kết thúc tập tin quá sớm"%s""%s" không phải là một tập tin thông thường
"%s": không có tập tin như vậy"%s": không có tập tin như vậy
(DW_OP_GNU_implicit_pointer trong thông tin khung)(DW_OP_call_ref trong thông tin khung (frame info))(ROMAGIC: các Ä‘oan sharablee text chỉ cho Ä‘ọc)(TOCMAGIC: Ä‘oạn chữ và MỤC-LỤC (TOC) chỉ cho Ä‘ọc)(Thao tác Ä‘ịnh vị không rõ)(Không rõ: %s)(Thao tác Ä‘ịnh vị do người dùng Ä‘ịnh nghÄ©a)(WRMAGIC: Ä‘oạn nhớ có thể ghi chữ Ä‘ược)(khoảng bù (offset) sai: %u)(địa chỉ cÆ¡ bản)
(khai báo là trá»±c tiếp và Ä‘ặt trá»±c tiếp)(khai báo là trá»±c tiếp mà bị bỏ qua)(phần mã thá»±c thi Ä‘ã Ä‘ịnh nghÄ©a: %s)(đặt trá»±c tiếp)(danh sách vị trí)(không Ä‘ặt trá»±c tiếp)(đầu == cuối)(đầu > cuối)(chưa Ä‘ịnh nghÄ©a)(không rõ khả năng truy cập)(không rõ trường hợp nào)(không rõ quy Æ°á»›c)(không nhận ra kiểu)(không rõ tính áº£o)(không rõ tính khả dụng)(kiểu người dùng Ä‘ịnh nghÄ©a)(người dùng Ä‘ịnh nghÄ©a)*không hợp lệ**chưa Ä‘ịnh nghÄ©a*, <không rõ>, CÆ¡ sở: , Cờ hiệu:, relocatable (có thể tái Ä‘ịnh vị Ä‘ược), thư viện relocatable-lib  (có thể tái Ä‘ịnh vị Ä‘ược), không hiểu ABI, không rõ kiến trúc CPU, không hiểu ISA, không hiểu biến thể kiến trúc v850Khoảng bù ".debug_info" 0x%lx trong phần %s không chỉ tới một phần Ä‘ầu CU.
phần .debug_macro không Ä‘ược chấm dứt bằng không (zero)
16-byte
2 bytes
phần bù cá»§a 2, tình trạng cuối lớnphần bù cá»§a 2, tình trạng cuối nhỏPhân bổ Ä‘á»™ng dữ liệu 32-bit4 bytes
4-byte
Phân bổ Ä‘á»™ng dữ liệu 64-bit8-byte
8-byte và mở rộng Ä‘ến %d-byte
8-byte, loại trừ leaf SP
:
  Không có ký hiệu
: giá trị trùng
: mong Ä‘ợi một thư mục
: mong Ä‘ợi một lá
<Kết thúc danh sách>
<đặc trưng cho hệ Ä‘iều hành>: %d<chỉ mục bảng chuỗi bị hỏng: %3ld><hư hỏng: %14ld><hư hỏng: %19ld><hư hỏng: %9ld><hư hỏng: %ld>
<hư hỏng><không có phần .debug_str><không-tên><không><khoảng bù quá lớn><khác>: %x<đặc trưng cho bộ xá»­ lý>: %d<chỉ mục bảng chuỗi: %3ld><không rõ phần cộng: %lx><không rõ: %lx><không rõ : %x><không rõ><không rõ>: %d<không rõ>: %lx<không rõ>: %x<không rõ>: 0x%xMột trang mã Ä‘ược chỉ Ä‘ịnh chuyển Ä‘ổi giữa "%s" và UTF16.
Truy cậpĐã thêm các bản xuất vào tập tin kết xuấtĐang thêm các bản xuất vào nhóm kết xuất...Địa chỉBất kỳ
Ứng dụng
Ứng dụng hay á»¨ng dụng thời gian thá»±c
Phần Thuộc tính: %s
Thư viện kiểm traPhần Ä‘ầu bổ trợ:
Thư viện phụKiểu nổi BDC không Ä‘ược hỗ trợPhiên bản tập tin Ä‘ầu BFD %s
Có thông tin "sh_info" sai trong phần nhóm "%s"
Có liên kết "sh_link" sai trong phần nhóm "%s"
stab sai: %s
Bare-metal C6000Bản nhị phân %s chứa:
Dấu end-of-siblings giả Ä‘ược phát hiện á»Ÿ khoảng bù %lx trong phần ".debug_info"
chưa Ä‘ịnh nghÄ©a hạng cÆ¡ bản C++Không tìm thấy hạng cÆ¡ bản C++ trong bộ chứaKhông tìm thấy bộ phạn dữ liệu C++ trong bộ chứaGiá trị C++ mặc Ä‘ịnh không phải trong hàmĐối tượng C++ không có trườngTham chiếu C++ không phải là con trỏKhông tìm thấy tham chiếu C++phương pháp áº£o tÄ©nh C++CORE (Tập tin lõi)CU á»Ÿ khoảng bù %s chứa số thứ tá»± phiên bản bị hỏng hay không Ä‘ược hỗ trợ : %d.
CU: %s/%s:
CU: %s:
Không thể tạo tập tin ".lib" (thư viện): %s: %sKhông thể Ä‘iền vào khe Ä‘ằng sau phầnKhông cho phép dùng với nhau THƯ VIỆN và TÊNKhông thể mở tập tin ".lib" (thư viện): %s: %sKhông thể mở tập tin Ä‘ịnh nghÄ©a: %sKhông thể mở tập tin %s
Không thể giải dịch Ä‘ịa chỉ áº£o khi không có dòng Ä‘ầu chương trình.
Không thể cung cấp "mcore-elf dll" từ tập tin kho: %sMã Ä‘ịnh Ä‘ịa chỉ phụ thuộc vị trí
Mã Ä‘ịnh Ä‘ịa chỉ  không phụ thuộc vị trí
Tập tin cấu hìnhNội dung cá»§a phần %s
 
Nội dung cá»§a phần %s:Nội dung cá»§a phần %s:
Nội dung cá»§a phần %s:
 
Chuyển Ä‘ổi một tập tin Ä‘ối tượng COFF thành một tập tin Ä‘ối tượng SYSROFF
Tác quyền năm 2011 cá»§a Tổ chức Phần mềm Tá»± do.
Phần Ä‘ầu hỏng trong chương nhóm `%s'
Phần Ä‘ầu hư hỏng trong %s phần.
Độ dài Ä‘Æ¡n vị bị hỏng (0x%s) Ä‘ược tìm trong phần %s
Không thể Ä‘ịnh vị "%s". Thông Ä‘iệp lỗi hệ thống: %s
Không thể xác Ä‘ịnh phần .ARM.extab Ä‘ang chứa 0x%lx.
Không thể lấy kiểu dá»±ng sẳn (builtin) Ä‘ã tháo gỡ
Đã tạo tập tin thư việnĐang tạo tập tin thư viện: %sĐang tạo tập tin stub: %sKho lưu Ä‘ã mở hiện thời là %s
DERIVED TYPEDIE á»Ÿ khoảng bù %lx tham chiếu Ä‘ến số viết tắt %lu mà không tồn tại
Tên công cụ DLLTOOL    : %s
Tùy chọn DLLTOOL: %s
Tên TRÌNH ÄIỀU KHIỀN     : %s
Tùy chọn TRÌNH ÄIỀU KHIỂN  : %s
Đánh Ä‘ịa chỉ kiểu DSBT không Ä‘ược sá»­ dụng
Đánh Ä‘ịa chỉ kiểu DSBT Ä‘ược sá»­ dụng
Không hỗ trợ "DW_FORM_data8" khi "sizeof (dwarf_vma) != 8"
khoảng bù (offset) DW_FORM_strp quá lớn: %s
đã dùng DW_MACRO_GNU_start_file, nhưng lại không Ä‘ược cung cấp khoảng bù .debug_line.
DW_OP_GNU_push_tls_address hoặc DW_OP_HP_unknownDYN (Tập tin Ä‘ối tượng dùng chung)Dữ liệu Ä‘ịnh Ä‘ịa chỉ phụ thuộc vị trí
Dữ liệu Ä‘ịnh Ä‘ịa chỉ không phụ thuộc vị trí, GOT cách xa DP
Dữ liệu Ä‘ịnh Ä‘ịa chỉ không phụ thuộc vị trí, GOT gần DP
Kích thước dữ liệuThông tin gỡ lỗi bị hỏng, khoảng bù viết tắt (%lx) lớn hÆ¡n kích cỡ phần viết tắt (%lx)
Thông tin gỡ lỗi bị hỏng, chiều dài cá»§a CU á»Ÿ %s kéo dài qua kết thúc phần (chiều dài = %s)
Đã giải mã bản Ä‘ổ nội dung gỡ lỗi cá»§a phần %s:
 
Đang xoá tập tin cÆ¡ bản tạm thời %sĐang xoá tập tin Ä‘ịnh nghÄ©a tạm thời %sĐang xoá tập tin xuất ra tạm thời %sTên Ä‘ã tháo gỡ không phải là hàm
Thư viện kiểm tra quan hệ phụ thuộcChưa hỗ trợ khả năng hiển thị nội dung gỡ lỗi cá»§a phần %s.
Không rõ về việc Ä‘ịnh vị lại trên kiến trúc máy này
Hoàn tất Ä‘ọc %sKý hiệu trùng Ä‘ược nhập vào danh sách từ khoá.relocs Ä‘á»™ng:
Các ký hiệu Ä‘á»™ng:
Dòng Ä‘ầu ELF:
LỖI : chiều dài phần sai (%d > %d)
LỖI : chiều dài phần phụ sai (%d > %d)
EXEC (Tập tin có thể thá»±c hiện)Kết thúc dãy
 
Điểm vào Khoảng bù các thành viên cá»§a enum %xLỗi: bản XUẤT trùng với Ä‘iều thứ tá»± : %sBảng ngoại lệ:
Đang loại trừ ký hiệu : %sViệc thá»±c hiện %s bị lỗiĐỊNH DẠNG là một cá»§a rc, res hay coff, và Ä‘ược quyết Ä‘ịnh
từ phần mở rộng tên tập tin nếu chưa ghi rõ.
Một tên tập tin Ä‘Æ¡n là tập tin nhập. Không có tập tin nhập thì
đầu vào tiêu chuẩn, mặc Ä‘ịnh là rc. Không có tập tin kết xuất thì
đầu ra tiêu chuẩn, mặc Ä‘ịnh là rc.
Lỗi xác Ä‘ịnh chiều dài dãy cuối cùng
Lỗi in ra biểu mẫu Ä‘ã tháo gỡ
Lỗi Ä‘ọc vào số các xô
Lỗi Ä‘ọc vào số các dãy
Tập tin %s không phải là một kho lưu thì không có chỉ mục Ä‘ể hiển thị.
Thuộc tính Tập tin
Tập tin chứa nhiều bảng chuỗi Ä‘á»™ng
Tập tin chứa nhiều bảng ký hiệu Ä‘á»™ng
Tập tin chứa nhiều bảng symtab shndx
Đầu tập tin:
Tên tập tin                    Số thứ tá»± dòng    Äá»‹a chỉ bắt Ä‘ầu
Thư viện lọcCờ :Cho các tập tin XCOFF:
  header      Hiển thị phần Ä‘ầu tập tin
  aout        Hiển thị phần Ä‘ầu auxiliary
  sections    Hiển thị phần chương
  syms        Hiển thị bảng ký hiệu
  relocs      Hiển thị mục tái Ä‘ịnh vị
  lineno      Hiển thị mục số dòng
  loader      Hiển thị chương tải
  except      Hiển thị bảng ngoại lệ
  typchk      Hiển thị chương kiểm-tra-kiểu
  traceback   Hiển thị thẻ traceback
  toc         Hiển thị mục lục (toc) ký hiệu
Sau Ä‘ó thu hồi cảnh báo về dấu end-of-siblings giả
GOT A %x
Đã tạo tập tin xuất raĐang tạo ra tập tin xuất ra: %sChung (Generic)
Dữ liệu bảng khoảng bù toàn cụcXá»­ lý số thá»±c dấu chấm Ä‘á»™ng bằng phần cứng
Tính số thá»±c dấu chấm Ä‘á»™ng bằng phần cứng (MIPS32r2 64-bit FPU)
Xá»­ lý số thá»±c dấu chấm Ä‘á»™ng bằng phần cứng (chính Ä‘ôi)
Xá»­ lý số thá»±c dấu chấm Ä‘á»™ng bằng phần cứng (chính Ä‘Æ¡n)
Xá»­ lý số thá»±c dấu chấm Ä‘á»™ng bằng phần cứng hay mềm
mục nhập thư mục IDtài nguyên IDthư mục con IDtràn thuộc số IEEE: 0xtràn Ä‘á»™ dài chuỗi IEEE: %u
Kích cỡ kiểu phức tạp không Ä‘ược hỗ trợ IEEE %u
Kích cỡ kiểu nổi không Ä‘ược hỗ trợ IEEE %u
Kích cỡ kiểu số nguyên không Ä‘ược hỗ trợ IEEE %u
Idx Tên          Cỡ      VMA               LMA               Tập tin ra  CanhIdx Tên          Cỡ      VMA       LMA       Tập tin ra  CanhNhập các tập tin:
Thư viện nhập "%s" chỉ ra Ã­t nhất hai dllTrong kho lưu %s
Chỉ mục cá»§a kho lưu %s: (%ld mục nhập, 0x%lx byte trong bảng ký hiệu)
Khởi tạoTập tin nhập "%s" không thể Ä‘ọc Ä‘ược
Tập tin nhập "%s" không có khả năng Ä‘ọc.
Tập tin Ä‘ầu vào `%s' bỏ qua tham số kiến trúc nhị phân.Phiên bản Giao diện: %s
Lỗi nội bộ: phiên bản DWARF không phải là 2,3 hay 4.
Lỗi nội bộ : không rõ kiểu máy: %dLỗi nội bộ : không tạo Ä‘ược chuỗi Ä‘ịnh dạng Ä‘ể hiển thị bộ giải thích chương trình
Sai kích thước Ä‘ịa chỉ trong %s phần!
Sai dạng mã mở rộng %s
Số thao tác tối Ä‘a trên mỗi insn không hợp lệ.
Tùy chọn không hợp lệ "-%c"
CÆ¡ sở không hợp lệ: %s
sh_entsize không hợp lệ
Đang giữ tập tin cÆ¡ bản tạm thời %sĐang giữ tập tin Ä‘ịnh nghÄ©a tạm thời %sĐang giữ tập tin xuất ra tạm thời %sCác từ khoá Cờ:
   W    ghi
   A    cấp phát
   X    thá»±c hiện
   M    trộn
   S    các chuỗi
   I    thông tin
   L    thứ tá»± liên kết
   G    nhóm
   T (TLS)
   E    loại trừ
   x    không hiểu
   O    cần thiết xá»­ lý hệ Ä‘iều hành thêm
   o     Ä‘ặc trưng cho hệ Ä‘iều hành
   s    chỉ Ä‘ịnh bộ xá»­ lý
Các từ khoá Cờ:
   W    ghi
     A    cấp phát
   X    thá»±c hiện
   M    trộn
   S    các chuỗi
   l    lớn
   I    thông tin
   L    thứ tá»± liên kết
   G    nhóm
   T (TLS)
   E    loại trừ
   x    không hiểu
   O    cần thiết xá»­ lý hệ Ä‘iều hành thêm
   o     Ä‘ặc trưng cho hệ Ä‘iều hành
   s    chỉ Ä‘ịnh bộ xá»­ lý
THƯ VIỆN: %s cÆ¡ bản: %xNhững mục stabs cuối cùng Ä‘ược nhập vào trước khi gặp lỗi:
rpath thư viện: [%s]runpath thư viện: [%s]soname thư viện: [%s]Số cá»§a dòng cho %s (%u)
danh sách các khốiLiệt kê tất cả các tập tin nguồn.Danh sách ký hiệuPhần Ä‘ầu bộ tải:
Danh sách vị trí bắt Ä‘ầu tại khoảng bù 0x%lx chưa Ä‘ược chấm dứt.
Danh sách vị trí trong phần %s bắt Ä‘ầu tại 0x%s
MODULE***
Không hỗ trợ máy "%s"Bộ nhớ
Phần bộ nhớ %s+%xVi Ä‘iều khiển
Thiếu thông tin phụ cần thiết cho phiên bản
Thiếu thông tin cần thiết cho phiên bản
Thiếu thông tin về kiểu Ä‘ịnh vị lại 32-bit Ä‘ược dùng trong phần DWARF có số thứ tá»± máy %d
Đã thay Ä‘ổi nhiều lần tên phần %sPhải cung cấp Ã­t nhất một cá»§a hai tùy chọn "-o" hay "-dllname"TÊN: %s cÆ¡ bản: %xKHÔNG
NONE (Không có)NT_ARCH (kiến trúc)NT_ARM_VFP (thanh ghi VFP arm)NT_AUXV (véc-tÆ¡ phụ)NT_FPREGS (thanh ghi Ä‘iểm phù Ä‘á»™ng)NT_FPREGSET (thanh ghi Ä‘iểm phù Ä‘á»™ng)NT_GNU_ABI_TAG (thẻ phiên bản ABI)NT_GNU_BUILD_ID (chuỗi bit có mã số xây dá»±ng duy nhất)NT_GNU_GOLD_VERSION (phiên bản gold)NT_GNU_HWCAP (thông tin HWCAP Ä‘ược DSO cung cấp)NT_LWPSINFO (cấu trúc thông tin "lwpsinfo_t")NT_LWPSTATUS (cấu trúc trạng thái "lwpstatus_t")NT_PPC_VMX (thanh ghi ppc Altivec)NT_PPC_VSX (thanh ghi ppc VSX)NT_PRPSINFO (cấu trúc thông tin prpsinfo)NT_PRSTATUS (cấu trúc trạng thái prstatus)NT_PRXFPREG (cấu trúc "user_xfpregs")NT_PSINFO (cấu trúc thông tin psinfo)NT_PSTATUS (cấu trúc trạng thái pstatus)NT_S390_CTRS (các thanh ghi Ä‘iều khiển s390)NT_S390_HIGH_GPRS (ná»­a trên thanh ghi s390)NT_S390_PREFIX (thanh ghi tiền tố s390)NT_S390_TIMER (thanh ghi thời gian s390)NT_S390_TODCMP (thanh ghi so sánh s390 TOD)NT_S390_TODPREG (thanh ghi lập trình Ä‘ược s390 TOD )NT_STAPSDT (bộ mô tả thăm dò SystemTap)NT_TASKSTRUCT (cấu trúc tác vụ)NT_VERSION (phiên bản)NT_VMS_EIDC (kiểm tra tính nhất quán)NT_VMS_FPMODE (chế Ä‘á»™ FP)NT_VMS_GSTNAM (tên bảng sym)NT_VMS_IMGBID (id xây dá»±ng)NT_VMS_IMGID (id áº£nh)NT_VMS_IMGNAM (tên áº£nh)NT_VMS_LINKID (id liên kết)NT_VMS_LNM (tên ngôn ngữ)NT_VMS_MHD (module header)NT_VMS_SRC (tập tin mã nguồn)NT_WIN32PSTATUS (cấu trúc trạng thái "win32_pstatus")NT_X86_XSTATE (trạng thái mở rộng x86 XSAVE)"N_LBRAC" không phải bên trong hàm
TênTên                  Giá trị           Hạng        Kiểu         Cỡ             Dòng  Phần
 
Tên                  Giá trị   Hạng        Kiểu         Cỡ     Dòng  Phần
 
Chỉ mục tên: %ld
Tên: %s
Mục Nbr: %-8u Kích thước: %08x (%u)
NdxCấu trúc thông tin tiến trình procinfo NetBSDKhông có phần %s á»Ÿ
 
Không có Ä‘Æ¡n vị biên dịch trong phần %s ?Không có mục nhập %s trong kho.
Không có tên tập tin Ä‘i sau tùy chọn "-fo".
Không có danh sách vị trí trong phần ".debug_info" (thông tin gỡ lỗi).
Không có việc tháo gỡ cho "%s"
Không có bộ phận tên "%s"
Không có phân Ä‘oạn ghi chú trong tập tin lõi.
Không có danh sách phạm vi trong phần ".debug_info" (thông tin gỡ lỗi).
Không cóKhông
Không phải là tập tin ELF â€” có những byte ma thuật không Ä‘úng tại Ä‘ầu nó.
Không Ä‘á»§ bộ nhớ cho mảng thông tin gỡ lỗi có %u mục nhậpĐối tượng không cần thiết: [%s]
Không dùng
Không có gì cần làm.
Đặc trưng cho HĐH: (%x)Khoảng bù %s Ä‘ã dùng làm giá trị cho thuộc tính nhập DW_AT_import cá»§a DIE tại khoảng bù %lx là quá lớn.
Khoảng bù 0x%lx lớn hÆ¡n kích cỡ cá»§a phần ".debug_loc" (gỡ lỗi vị trí).
Chỉ hỗ trợ "-X 32_64" thôiHỗ trợ hiện thời chỉ arange (phạm vi a) kiểu DWARF phiên bản 2 và 3 thôi.
Hỗ trợ hiện thời chỉ pubnames (tên công) kiểu DWARF phiên bản 2 và 3 thôi
Hiện tại chỉ hỗ trợ thông tin dòng DWARF phiên bản 2, 3 và 4.
Chỉ phần bổ xung GNU với DWARF 4 cá»§a %s là hiện Ä‘ang Ä‘ược hỗ trợ.
Đã mở tập tin tạm thời: %sĐặc trưng cho Hệ Ä‘iều hành: %lxTùy chọn "-l" bị phản Ä‘ối Ä‘ể lập Ä‘ịnh dạng nhập, hãy dùng "-J" Ä‘ể thay thế.
Không Ä‘á»§ bộ nhớ
Không Ä‘á»§ bộ nhớ khi cấp phát 0x%lx byte cho %s
Không Ä‘á»§ bộ nhớ khi cấp phát bảng yêu cầu Ä‘ổ.
Không Ä‘á»§ bộ nhớ trong khi Ä‘ọc các tên ký hiệu dài trong kho lưu
Không Ä‘á»§ bộ nhớ trong khi thá»­ chuyển Ä‘ổi chỉ mục ký hiệu kho lưu
Không Ä‘á»§ bộ nhớ trong khi thá»­ Ä‘ọc bảng ký hiệu chỉ mục kho lưu
Không Ä‘á»§ bộ nhớ trong khi thá»­ Ä‘ọc chỉ mục ký hiệu kho lưu
Tập tin kết xuất không tương á»©ng với kiến trúc `%s'Chá»§ sở hữuPT_GETFPREGS (cấu trúc thanh ghi "fpreg")PT_GETREGS (cấu trúc thanh ghi)Chưa hỗ trợ tên tập tin kiểu PascalCác thành phần Ä‘ường dẫn bị tước ra tên dll, "%s".Kích cỡ con trỏ + kích cỡ Ä‘oạn không phải là hai lÅ©y thừa.
In ra lời giải dịch tập tin Ä‘ối tượng SYSROFF cho người Ä‘ọc Ä‘ược
Chưa sở khởi chiều rộng in (%d)Dữ liệu bảng liên kết các thá»§ tụcĐã xá»­ lý tập tin Ä‘ịnh nghÄ©aĐã xá»­ lý các lời Ä‘ịnh nghÄ©aĐang xá»­ lý tập tin Ä‘ịnh nghÄ©a: %sĐang xá»­ lý các lời Ä‘ịnh nghÄ©aĐặc trưng cho bộ xá»­ lý: %lxĐặc trưng cho bộ xá»­ lý: (%x)REL (Tập tin có thể Ä‘ịnh vị lại)Danh sách phạm vi trong phần %s bắt Ä‘ầu tại 0x%lx
Việc Ä‘ổ thô nội dung gỡ lỗi cá»§a phần %s:
 
Đọc phần (section) gặp lỗiThời gian thá»±c
Từ chối tháo raThanh ghi %dXây dá»±ng lại cho %s (%u)
Hãy trình báo lỗi cho %s
Hãy trình báo lỗi cho %s.
Giá trị Ä‘á»™ dài Ä‘ể dành (0x%s) Ä‘ược tìm trong phần %s
SUM IS %x
SYMBOL INFOĐang quét tập tin Ä‘ối tượng %sPhần %d có kích cỡ sh_entsize không hợp lệ %lx (mong Ä‘ợi %lx)
Phần %d không Ä‘ược Ä‘ổ vì nó không tồn tại.
Phần "%s" không Ä‘ược Ä‘ổ vì nó không tồn tại.
Thuộc tính Phần:Phần Ä‘ầu Ä‘oạn (tại vị trí %u+%u=0x%08x Ä‘ến 0x%08x):
Dòng Ä‘ầu phần không sẵn sàng.
Phần:
Seg Offset           Kiểu                             SymVec KiểuDữLiệu
Seg Offset   Kiểu                            SốCộng            Seg Sym Off
Thư viện dùng chung: [%s]Xá»­ lý số thá»±c dấu chấm Ä‘á»™ng chính Ä‘Æ¡n bằng phần cứng
đang bỏ qua tái Ä‘ịnh vị không như mong Ä‘ợi trong phần bù 0x%lx
Đang bỏ qua kiểu Ä‘ịnh vị lại bất thường %s
Xá»­ lý số thá»±c dấu chấm Ä‘á»™ng bằng phần mềm
Tập tin mã nguồn %sKhoảng bù stack %xỨng dụng Äá»™c lậpKhoảng bù các thành viên cá»§a cấu trúc %xĐang kéo vào thông tin từ phần %s trong %s...Kiến trúc Ä‘ược hỗ trợ :Đích Ä‘ược hỗ trợ :Sym.Val.Ký hiệu  %s, thẻ %d, kiểu số %dThuộc tính Ký hiệu:Bảng ký hiệu (strtable at 0x%08x)Gặp lỗi cú pháp trong tập tin Ä‘ịnh nghÄ©a %s:%dMục Lục (TOC):
Dữ liệu bảng Ä‘ịa chỉ trong phiên bản 3 có lẽ bị sai.
Hình như thông tin trong phần %s bị hỏng â€” phần quá nhỏ
Hình như dòng bị hỏng â€” phần quá nhỏ
Có %d dòng Ä‘ầu phần, bắt Ä‘ầu tại khoảng bù 0x%lx:
Có %ld byte chưa dùng á»Ÿ kết thúc cá»§a phần %s
Có một lỗ [0x%lx - 0x%lx] trong phần %s.
Có một lỗ [0x%lx - 0x%lx] trong phần ".debug_loc" (gỡ lỗi vị trí).
Có một nÆ¡i chồng lấp [0x%lx - 0x%lx] trong phần %s.
Có một nÆ¡i chồng lấp [0x%lx - 0x%lx] trong phần ".debug_loc" (gỡ lỗi vị trí).
Chương trình thá»±c thi mày không hỗ trợ kiểu dữ liệu 64-bit
nên nó không thể xá»­ lý Ä‘ượcc tập tin ELF kiểu 64-bit.
Tức thời readelf này Ä‘ã Ä‘ược xây dá»±ng
không có hỗ trợ kiểu dữ liệu 64-bit
nên không thể Ä‘ọc tập tin ELF kiểu 64-bit.
Chương trình này là phần mềm tá»± do; bạn có quyền phát hành lại
nó với Ä‘iều kiện cá»§a Giấy Phép Công Cộng GNU (GPL)
phiên bản 3 hoặc (tùy chọn) bắt cứ phiên bản sau nào.
Chương trình này không bảo Ä‘ảm gì cả.
Dấu vết thời gian: %s
Quá nhiều "N_RBRAC"
Đã thá»­ "%s"
Đã thá»­ tập tin: %sĐúng
Phần Ä‘ầu bị cắt cụt trong %s phần.
KiểuCon số kiểu tập tin %d á»Ÿ ngoài phạm vi
Con số kiểu chỉ mục %d á»Ÿ ngoài phạm vi
Phần kiểm-tra-kiểu:
KHÔNG RÕ (%*.*lx)KHÔNG RÕ:KHÔNG RÕ: chiều dài %d
Không thể thay Ä‘ổi tình trạng cuối (endian) cá»§a (các) tập tin nhập vàoKhông thể quyết Ä‘ịnh tên dll cho "%s" (không phải thư viện nhập ?)Không thể quyết Ä‘ịnh chiều dài cá»§a bảng chuỗi Ä‘á»™ng
Không thể quyết Ä‘ịnh số ký hiệu cần tải
Không tìm thấy tên bộ giải dịch chương trình
Không thể nạp/phân tích phần ".debug_info" thì không thể Ä‘ọc phần %s.
Không thể Ä‘ịnh vị phần %s !
Không thể mở tập tin cÆ¡ bản: %sKhông thể mở tập tin Ä‘ối tượng: %s: %sKhông thể mở tập tin dịch mã số tạm thời: %sKhông thể Ä‘ọc vào 0x%lx byte cá»§a %s
Không thể Ä‘ọc vào dữ liệu Ä‘á»™ng
Không thể Ä‘ọc tên cá»§a bộ giải dịch chương trình
Không nhân ra Ä‘ịnh dạng cá»§a tập tinKhông nhận ra Ä‘ịnh dạng cá»§a tập tin nhập "%s"Không thể nhảy tới 0x%lx tìm %s
Không thể tìm nÆ¡i tới kết thúc tập tin
Không thể tìm nÆ¡i tới kết thúc cá»§a tập tin.
Không thể tìm nÆ¡i tới Ä‘ầu cá»§a thông tin Ä‘á»™ng
Chưa Ä‘ịnh nghÄ©a "N_EXCL"Ký hiệu chưa Ä‘ịnh nghÄ©aGặp một số varargs Ä‘ã tháo gỡ bất thường
Gặp kiểu bất thường trong việc tháo gỡ danh sách Ä‘ối số v3
Loại sá»± Ä‘ịnh vị lại MN10300 chưa xá»­ lý Ä‘ược tìm sau sá»± Ä‘ịnh vị lại SYM_DIFFChiều dài dữ liệu không Ä‘ược quản lý: %d
Không rõ giá trị AT: %lxGiá trị FORM (dạng) không rõ : %lxKhông hiểu OSABI: %s
Giá trị TAG (thẻ) không rõ : %lxKhông rõ Ä‘ịnh dạng "%c"
Không hiểu kiểu máy: %d
Không rõ kiểu máy: %s
Không rõ kiểu ghi chú : (0x%08x)Thẻ không hiểu: %d
Không nhận ra kiểu: %s
Không nhận ra kiểu XCOFF %d
Không nhận ra tùy chọn gỡ lỗi "%s"
Không nhận ra phần gỡ lỗi: %s
Không nhận ra thành phần tháo gỡ %d
Không nhận ra kiểu dá»±ng sẳn (builtin) Ä‘ã tháo gỡ
Không nhận ra dạng: %lu
Không hỗ trợ EI_CLASS: %d
Không hỗ trợ phiên bản %lu.
Sá»­ dụng %s <tùy_chọn...> <tập_tin_đối_tượng...>
Sá»­ dụng: %s <tùy_chọn...> <tập_tin...>
Sá»­ dụng: %s <các_tùy_chọn> các_tệp_tin_elf
Sá»­ dụng: %s <các_tùy_chọn> các_tập_tin_nhập
Sá»­ dụng: %s [tùy chọn mô phỏng] [-]{dmpqrstx}[abcDfilMNoPsSTuvV] [--plugin <tên>] [tên-thành-viên] [số-đếm] tập_tin_kho tập_tin...
Sá»­ dụng: %s [tùy chọn mô phỏng] [-]{dmpqrstx}[abcDfilMNoPsSTuvV] [tên-thành-viên] [số-đếm] tập_tin_kho tập_tin...
Sá»­ dụng: %s [tùy_chọn...] [địa_chỉ...)]
Sá»­ dụng: %s [tùy_chọn...] [tập_tin...]
Sá»­ dụng: %s [tùy_chọn...] [tập_tin_nhập [tập_tin_xuất]]
Sá»­ dụng: %s [tùy_chọn] [tập_tin_nhập]
Sá»­ dụng: %s [tùy_chọn...] [tập_tin_nhập] [tập_tin_xuất]
Sá»­ dụng: %s [tùy_chọn...] tập_tin_nhập
Sá»­ dụng: %s [tùy_chọn...] tập_tin_nhập [tập_tin_xuất]
Sá»­ dụng: %s [tùy_chọn] kho
Sá»­ dụng: readelf <tùy_chọn...> tập_tin_elf...
Đang dùng "%s"
Đang dùng tập tin: %sĐang dùng popen Ä‘ể Ä‘ọc kết xuất bộ tiền xá»­ lý
Đang dùng tập tin tạm thời "%s" Ä‘ể Ä‘ọc kết xuất bộ tiền xá»­ lý
Đang dùng với nhau hai tùy chọn "--size-sort" và "--undefined-only"PHIÊN BẢN %d.%d
Giá trị cho "N" phải là số dương.Phiên bản %ld
Phiên bản 4 không hỗ trợ tìm kiếm phân biệt HOA/thường.
Phần xác Ä‘ịnh phiên bảnĐịa chỉ áº£o 0x%lx không Ä‘ược Ä‘ịnh vị trong phân Ä‘oạn kiểu "PT_LOAD".
Khả dụngMUỐN %x!!
Cảnh báo, Ä‘ang bỏ qua bản XUẤT trùng %s %d,%dCảnh báo : loại máy (%d) không Ä‘ược hỗ trợ cho delayimport.Cảnh báo : %s: %s
Cảnh báo: '%s' có kích thước Ã¢m, hầu như chắc chắn là nó quá dàiCảnh báo : "%s" không phải là một tập tin chuẩnCảnh báo : Ä‘ang thay Ä‘ổi kích cỡ kiểu từ %d Ä‘ến %d
Cảnh báo : không thể Ä‘ịnh vị "%s". Lý do : %sCảnh báo : sẽ bỏ qua giá trị "--reverse-bytes" trước %dCảnh báo : Ä‘ang cắt xén khoảng Ä‘iền-khe từ 0x%s Ä‘ến 0x%xTạiSai kích thước trong hàm print_dwarf_vma[%3u] 0x%lx - 0x%lx
[%3u] 0x%lx 0x%lx [<không rõ>: 0x%x] [Số Abbrev: %ld[Dư thừa][Opcode (mã thao tác) Ä‘ã bị cắt cụt]
[đệm][bị cắt ngắn]
"N" có nghÄ©a chỉ cùng với tùy chọn "x" và "d"."u" có nghÄ©a chỉ cùng với tùy chọn "D"."u" có nghÄ©a chỉ cùng với tùy chọn "r".không thể sá»­ dụng "x" với kho mảnh.phím tắtkhông rõ kiến trúc %skiến trúc: %s, các Ä‘ối sốmảng [%d] cá»§athuộc tínhmục ghi ATN65 saivị trí bit hay kích cỡ trường C++ saiký hiệu Ä‘á»™ng sai
định dạng sai cho %stên Ä‘ã rối sai "%s"
mục ghi linh tinh saithanh ghi sai: kiểu sai cho hàm phương pháp C++gặp thao tác dòng Ä‘ã mở rộng dạng sai.
"bfd_coff_get_auxent" bị lỗi: %s"bfd_coff_get_syment" bị lỗi: %sbfd_open gặp lỗi khi mở tập tin stub: %s: %sbfd_open gặp lỗi khi mở lại tập tin stub: %s: %sbig endiankhốicó một số khối còn lại trên Ä‘ống khi kết thúcsố các byte phải Ã­t hÆ¡n khoảng chen vàosố byte phải là khác Ã¢mkhông thể quyết Ä‘ịnh kiểu tập tin "%s": hãy sá»­ dụng tùy chọn "-J"không thể Ä‘ệm thêmkhông thể thêm phần "%s"không thể tạo %s tập tin `%s' Ä‘ể kết xuất.
không thể tạo phần gỡ lỗikhông thể tạo phần "%s"không thể Ä‘ịch ngược mã (disassemble) cho kiến trúc %s
không thể thá»±c hiện "%s": %skhông thể lấy kiểu việc Ä‘ịnh vị lại "BFD_RELOC_RVA"không thể mở %s "%s": %skhông thể mở "%s" cho kết xuất: %skhông thể mở tập tin tạm thời "%s": %skhông thể popen "%s": %skhông thể chuyển hướng Ä‘ầu ra tiêu chuẩn "%s": %skhông thể lập Ä‘ích mặc Ä‘ịnh BFD thành "%s": %skhông thể Ä‘ặt nội dung cá»§a phần gỡ lỗikhông thể sá»­ dụng máy Ä‘ã Ã¡p dụng %skhông thể tạo phần liên kết gỡ lỗi "%s"không thể tạo thư mục tạm thời Ä‘ể sao chép kho lưu (lỗi: %s)không thể xoá %s: %skhông thể Ä‘iền vào phần liên kết gỡ lỗi "%s"không thể mở "%s": %skhông thể mở tập tin nhập liệu %skhông thể mở : %s: %skhông Ä‘ọc Ä‘ược auxhdrkhông thể Ä‘ọc phần Ä‘ầukhông thể Ä‘ọc mục số cá»§a dòngkhông thể Ä‘ọc Ä‘ược số dòngkhông thể Ä‘ọc mục cá»§a thông tin xây dá»±ng lạikhông Ä‘ọc Ä‘ược thông tin xây dá»±ng lạikhông thể Ä‘ọc phần Ä‘ầu cá»§a phầnlỗi Ä‘ọc các phần Ä‘ầu cá»§a phầnkhông Ä‘ọc Ä‘ược bảng các chuỗikhông Ä‘ọc Ä‘ược Ä‘á»™ dài bảng các chuỗikhông thể Ä‘ọc mục ký hiệu auxkhông thể Ä‘ọc mục ký hiệukhông Ä‘ọc Ä‘ược bảng ký hiệukhông thể Ä‘ảo ngược các byte: chiều dài cá»§a phần %s phải có thể chia hết Ä‘ều Ä‘ều cho %dmãxung Ä‘á»™ttìm Ä‘ược danh sách xung Ä‘á»™t không có bảng ký hiệu Ä‘á»™ng
thiếu chỉ thị bất biến/hay thay Ä‘ổidữ liệu Ä‘iều khiển cần thiết DIALOGEXchép từ "%s" [%s] sang "%s" [%s]
chép từ "%s" [không rõ] sang "%s" [không rõ]
tìm thấy ghi chú bị hỏng tại khoảng bù %lx vào ghi chú lõi
không thể tạo tập tin tạm thời Ä‘ể chứa bản sao bị tướckhông thể tạo tập tin tạm trong khi ghi vào lưu trữkhông thể quyết Ä‘ịnh kiểu ký hiệu số %ld
không thể mở tập tin Ä‘ịnh nghÄ©a lại ký hiệu %s (lỗi: %s)đang tạo %scon chạytập tin con chạy "%s" không chứa dữ liệu con chạyphần riêngmục nhập dữ liệukích cỡ dữ liệu %lddebug_add_to_current_namespace: (gỡ lỗi thêm vào vùng tên hiện có) không có tập tin hiện thờidebug_end_block: (gỡ lỗi kết thúc khối) cố Ä‘óng khối cấp Ä‘ầudebug_end_block: (gỡ lỗi kết thúc khối) không có khối hiện thờidebug_end_common_block: chưa thá»±c hiệndebug_end_function: (gỡ lỗi kết thúc chức năng) không có chức năng hiện thờidebug_end_function: (gỡ lỗi kết thúc chức năng) một số khối chưa Ä‘ược Ä‘óngdebug_find_named_type: (gỡ lỗi tìm kiểu tên Ä‘ã cho) không có Ä‘Æ¡n vị biên dịch hiện thờidebug_get_real_type: (gỡ lỗi lấy kiểu thật) thông tin gỡ lỗi vòng cho %s
debug_make_undefined_type: (gỡ lỗi tạo kiểu chưa Ä‘ược Ä‘ịnh nghÄ©a) kiểu chưa Ä‘ược hỗ trợdebug_name_type: không có tập tin hiện thờidebug_record_function: (gỡ lỗi ghi lưu chứa năng) không có cuộc gọi kiểu "debug_set_filename" (gỡ lỗi lập tên tập tin)debug_record_label: chưa thá»±c hiệndebug_record_line: (gỡ lỗi ghi lưu dòng) không có Ä‘Æ¡n vị hiện thờidebug_record_parameter: (gỡ lỗi ghi lưu tham số) không có chức năng hiện thờidebug_record_variable: (gỡ lỗi ghi lưu biến) không có tập tin hiện thờidebug_start_block: (gỡ lỗi bắt Ä‘ầu khối) không có khối hiện thờidebug_start_common_block: chưa thá»±c hiệndebug_start_source: (gỡ lỗi bắt Ä‘ầu nguồn) không có cuộc gọi kiểu "debug_set_filename" (gỡ lỗi lập tên tập tin)debug_tag_type: (gỡ lỗi kiểu thẻ) Ä‘ã thá»­ một thẻ bổ sungdebug_tag_type: (gỡ lỗi kiểu thẻ) không có tập tin hiện thờidebug_write_type: (gỡ lỗi ghi kiểu) gặp kiểu không Ä‘ược phépđiều khiển Ä‘ối thoạidữ liệu Ä‘iều khiển Ä‘ối thoạikết thúc Ä‘iều khiển Ä‘ối thoạikích cỡ Ä‘iểm phông chữ Ä‘ối thoạidòng Ä‘ầu Ä‘ối thoạiđiều khiển Ä‘ối thoại dialogexthông tin phông chữ Ä‘ối thoại dialogexthư mụctên mục nhập thư mụcdisassemble_fn trả về Ä‘á»™ dài %dkhông biết cách ghi thông tin gỡ lỗi cho %sphần Ä‘á»™ngbộ sá»­a chữa áº£nh chương Ä‘á»™ngtái Ä‘ịnh vị áº£nh phần Ä‘á»™ngphần chuỗi Ä‘á»™ngbảng chuỗi Ä‘á»™ngchuỗi Ä‘á»™ngkhông rõ endianđịnh nghÄ©a kiểu enum (liệt kê)enum tham chiếu Ä‘ến %sgặp lỗi khi sao chép dữ liệu BFD riênggặp lỗi trong dữ liệu phần Ä‘ầu riênglỗi: chiều dài chỉ dẫn phải là dươnglỗi: việc tước tiền tố phải khác Ã¢mlỗi: tập tin nhập vào "%s" còn trốnglỗi: Ä‘ịa chỉ Ä‘ầu nên nằm trước Ä‘ịa chỉ cuốilỗi: Ä‘ịa chỉ cuối nên nằm sau Ä‘ịa chỉ Ä‘ầusai khớp Ä‘ống biểu thứctràn Ä‘ống biểu thứctràn ngược Ä‘ống biểu thứclỗi sao chép dữ liệu riênglỗi tạo phần kết xuấtlỗi mở tập tin Ä‘ầu tạm thời: %sgặp lỗi khi mở phần Ä‘ầu tập tin Ä‘ầu tạm thời: %s: %slỗi mở tập tin Ä‘uôi tạm thời: %sgặp lỗi mở phần Ä‘uôi tập tin tạm thời: %s: %slỗi Ä‘ọc số các mục nhập từ tập tin cÆ¡ bảnlỗi Ä‘ặt cách chỉnh canhlỗi Ä‘ặt kích cỡlỗi Ä‘ặt vmatên tập tin cần thiết cho dữ liệu nhập COFFtên tập tin cần thiết cho kết xuất COFFthông tin phiên bản cố Ä‘ịnhcờ = %d, tác nhân = %s
cờ 0x%08x:
thư mục phông chữtên thiết bị thư mục phông chữtên mặt chữ thư mục phông chữdòng Ä‘ầu thư mục phông chữtrả về từ hàmcon chạy nhómdòng Ä‘ầu con chạy nhómbiểu tượng nhómdòng Ä‘ầu biểu tượng nhómcó Ä‘iều conmã số trợ giúp cần thiết DIALOGEXphần trợ giúptập tin biểu tượng "%s" không chứa dữ liệu biểu tượngsẽ bỏ qua giá trị xen kẽchỉ mục kiểu không Ä‘ược phépchỉ mục biến không Ä‘ược phéptập tin nhập và xuất phải là khác nhautập tin nhập vào có vẻ không phải UTF16.
tên tập tin Ä‘ược Ä‘ặt tên cả hai trên dòng lệnh và bằng INPUTkhoảng chen vào phải là dươngbyte bắt Ä‘ầu khoảng chen vào phải Ä‘ược Ä‘ặt với tùy --byteđộ rộng chen vào phải nhỏ hÆ¡n hay bằng với số byte chen vào`độ rộng xen kẽ phải là dươnglỗi nội bộ : chưa thá»±c hiện tùy chọn nàylỗi stat (lấy trạng thái) nội bộ trên %sđối sô không hợp lệ tới "--format" (định dạng): %sghi rõ trang mã không hợp lệ.
chỉ số không hợp lệ trong mảng ký kiệu
đối số kiểu số nguyên vẫn không hợp lệ %ssai Ä‘ắt chiều dài chuỗi tối thiểu %dcon số không hợp lệtùy chọn không hợp lệ "-f"
chiều dài chuỗi không hợp lệgiá trị không hợp lệ Ä‘ược chỉ Ä‘ịnh cho lệnh mã nguồn Ä‘iều khiển trình biên dịch "code_page" (trang mã).
độ dài %d [dữ liệu phần liblistbảng chuỗi danh sách thư việnlineno  symndx/paddr
little endiantạo phần ".bss"tạo phần ".nlmsections"tạo phầndòng Ä‘ầu trình Ä‘Æ¡ndòng Ä‘ầu trình Ä‘Æ¡n menuexkhoảng bù trình Ä‘Æ¡n menuexmục trình Ä‘Æ¡ndòng Ä‘ầu mục trình Ä‘Æ¡nphần thông Ä‘iệpthiếu kiểu chỉ mụcthiếu ASN cần thiếtthiếu ATN65 cần thiếtphần mô-đunhÆ¡n một phân Ä‘oạn Ä‘á»™ng
mục nhập thư mục có têntài nguyên có tênthư mục con có tênkhông có phần ".dynamic" (động) trong phân Ä‘oạn Ä‘á»™ng
không có phần .except trong tập tin
không có phần .loader trong tập tin
không có phần .typchk trong tập tin
không có kiểu Ä‘ối số trong chuỗi Ä‘ã rối
không có conkhông có mục nhập %s trong kho
không có mục nhập %s trong kho %s.chưa cung cấp tập tin Ä‘ịnh nghÄ©a xuất ra.
Đang tạo một Ä‘iều, mà có lẽ không phải là Ä‘iều bạn muốnkhông có thông tin cho ký hiệu số %ld
không có tập tin nhập vàochưa ghi rõ tập tin nhập vàokhông có tên cho tập tin kết xuấtchưa ghi rõ thao táckhông có tài nguyênkhông có ký hiệu
không có thông tin kiểu cho hàm phương pháp C++không cóchưa Ä‘ặt
sẽ không gỡ bỏ ký hiệu "%s" vì tên cá»§a nó Ä‘ược Ä‘ặt trong việc Ä‘ịnh vị lạighi chúchuỗi Unicode Ä‘ược chấm dứt vô giá trịsố các byte cần Ä‘ảo ngược phải là một số dương chẵntràn thuộc sốkhoảng bù (offset): %08xkhoảng bù: %s tùy -P/--private không Ä‘ược hỗ trợ bởi tập tin nàytùy chọnkhông Ä‘á»§ bộ nhớ khi phân tích cú pháp cá»§a các việc Ä‘ịnh vị lại
tràn - nreloc: %u, nlnno: %u
tràn khi Ä‘iều chỉnh việc Ä‘ịnh vị lại Ä‘ối với %sparse_coff_type: (phân tách kiểu coff) Mã kiểu sai 0x%xcon trỏ tớikhung pop {gần như chắc chắn là phần Ä‘ầu tập tin ELF sai hỏng - nó có khoảng bù phần Ä‘ầu chương khác không, nhưng lại không có phần Ä‘ầu chương
gần như chắc chắn là phần Ä‘ầu ELF sai hỏngr - nó có khoảng bù phần Ä‘ầu chương trình khác không, nhưng lại không có các phần Ä‘ầu chương trìnhlỗi tiền xá»­ lý.các dòng Ä‘ầu chương trìnhpwait trả về: %sđọc phần %s cá»§a %s gặp lỗi: %stham số tham chiếu không phải là con trỏsố Ä‘ếm Ä‘ịnh vị lại vẫn là Ã¢mmã số tài nguyêndữ liệu tài nguyênkích cỡ dữ liệu tài nguyênkhông rõ kiểu tài nguyênphần rpcchạy: %s %sphần %s %d %d Ä‘ịa chỉ %x kích thước %x số %d nrelocs %dphần %u : giá trị sh_link cá»§a %u vẫn lớn hÆ¡n số các phần
phần "%s" có loại NOBITS thì nó có nội dung không xác thá»±c.
phần '%s' Ä‘ược Ä‘ề cập Ä‘ến trong tùy -j, nhưng lại không tìm thấy trong tập tin Ä‘ầu vàophần .loader quá ngắn
phần 0 trong phần nhóm [%5u]
phần [%5u] trong phần nhóm [%5u] > phần tối Ä‘a [%5u]
phần [%5u] trong phần nhóm [%5u] Ä‘ã có trong phần nhóm [%5u]
nội dung phầndữ liệu phầnphần Ä‘ịnh nghÄ©a tại %x kích thước %x
dòng Ä‘ầu phầnđặt vma .bssđặt kích cỡ dữ liệu .datalập nội dung ".nlmsections"lập kích cỡ ".nlmsections"đặt Äá»‹a chỉ thành 0x%s
đặt Discriminator (bộ phân biệt) thành %s
lập canh lề phầnlập các cờ phânlập kích cỡ phầnđặt Ä‘ịa chỉ bắt Ä‘ầush_entsize là số không
phần dùng chungkích cỡ %dkích thước: %sđang bỏ qua khoảng bù Ä‘ịnh vị lại không hợp lệ 0x%lx trong phần %s
đang bỏ qua ký hiệu chỉ mục tái Ä‘ịnh vị không hợp lệ 0x%lx trong phần %s
đang bỏ qua kiểu ký hiệu bất thường %s trong việc Ä‘ịnh vị lại thứ %ld trong phần %s
tiếc là chương trình này Ä‘ược xây dá»±ng mà không hỗ trợ phần bổ sung
sp = sp + %ldstab_int_type: (kiểu số nguyên stab) kích cỡ sai %utràn Ä‘ốngtràn ngược Ä‘ốnglỗi lấy trạng thái về tập tin mảng áº£nh "%s": %slỗi lấy trạng thái về tập tin "%s": %slỗi lấy trạng thái về tập tin phông chữ "%s": %sviệc stat (lấy trạng thái) trả lại kích cỡ Ã¢m cho "%s"bảng chuỗiviệc "string_hash_lookup" (tra tìm băm chuỗi) bị lỗi: %schuỗi kiểu bảng chuỗichiều dài bảng chuỗiđịnh nghÄ©a cấu trúccấu trúc tham chiếu Ä‘ến %scấu trúc tham chiếu Ä‘ến một cấu trúc KHÔNG-RÕkích cỡ phần stubtiến trình con Ä‘ã nhận tín hiệu nghiêm trọng %dchưa biên dịch cách hỗ trợ %scác cờ Ä‘ược hỗ trợ : %sthông tin ký hiệucác chỉ số cá»§a phần bảng ký hiệuký hiệuđích Ä‘ã chỉ Ä‘ịnh Ä‘ổ Ä‘ống '%s' không Ä‘ược hỗ trợphần ".dynamic" (động) không nằm bên trong phân Ä‘oạn Ä‘á»™ng
phần ".dynamic" (động) không phải là phần thứ nhất trong phân Ä‘oạn Ä‘á»™ng.
đích này không hỗ trợ %lu mã máy xen kẽsẽ xá»­ lý con số Ä‘ó dạng giá trị e_machine tuyệt Ä‘ối Ä‘ể thay thếthá»­ thêm một ngôn ngữ sai.chỉ Ä‘ịnh hai tùy chọn thao tác khác nhaukhông thể Ã¡p dụng kiểu Ä‘ịnh vị lại không Ä‘ược hỗ trợ %d cho phần %s
không thể sao chép tập tin "%s"; lý do : %skhông thể mở tập tin `%s' Ä‘ể nhập.
không thể mở tập tin kết xuất %skhông thể phân tích cú pháp cá»§a mã máy xen kẽkhông thể Ä‘ọc nội dung cá»§a %skhông thể thay tên "%s"; lý do : %sđối tượng C++ chưa Ä‘ược Ä‘ịnh nghÄ©achưa Ä‘ịnh nghÄ©a vtable C++gặp biến chưa Ä‘ịnh nghÄ©a trong ATNgặp biến chưa Ä‘ược Ä‘ịnh nghÄ©a trong TYgặp phiên bản DIALOGEX bất thường %dgặp kết thúc bất thường trong thông tin gỡ lỗiphiên bản thông tin phiên bản cố Ä‘ịnh %luchiều dài thông tin phiên bản cố Ä‘ịnh bất thường %ldchữ ký phiên bản cố Ä‘ịnh bất thường %lukiểu con chạy nhóm bất thường %dkiểu biểu tượng nhóm bất thường %dcon số bất thườngkiểu mục ghi bất thườnggặp chuỗi không Ä‘ược hỗ trÆ¡ trong C++ lặt vặtchiều dài giá trị thông tin tập tin chuỗi bất thường %ldchiều dài giá trị thông tin tập tin tạm bất thường %ldchuỗi phiên bản bất thườngchiều dài chuỗi phiên bản bất thường %ld != %ld + %ldchiều dài chuỗi phiên bản bất thường %ld < %ldchiều dài giá trị bảng chuỗi phiên bản bất thường %ldkiểu phiên bản bất thường %dchiều dài giá trị phiên bản bất thường %ldkhông rõkhông rõ kiểu ATNkhông rõ kiểu BBkhông rõ tên mã C++không rõ Ä‘á»™ thấy rõ C++không rõ hệ thống phụ PE: %skhông rõ mã TYkhông rõ kiểu builtinkhông rõ kiểu dáng tháo gõ "%s"không rõ kiểu Ä‘ịnh dạng "%s"không rõ Ä‘ích EFI nhập vào : %skhông rõ tùy tên phần dài "%s"không rõ mackhông hiểu số mầu nhiệmkhông rõ Ä‘ích EFI kết xuất : %skhông rõ phầnkhông rõ ký tá»± áº£o cho hạng cÆ¡ bảnkhông rõ ký tá»± tình trạng hiển thị cho hạng cÆ¡ bảnkhông rõ ký tá»± tình trạng hiển thị cho trườngkiểu $vb chưa có tênkhông nhận ra kiểu tình trạng cuối (endian) "%s"không nhận ra tùy chọn "-E"không nhận ra lời viết tắt C++chưa chấp nhận kiểu C++ mặc Ä‘ịnhkhông chấp nhận mục ghi C++ linh tinhchưa chấp nhận Ä‘ặc tả duy tu Ä‘ối tượng C++chưa chấp nhận Ä‘ặc tả Ä‘ối tượng C++chưa chấp nhận kiểu tham chiếu C++không nhận ra kiểu tham chiếu chéokhông nhận ra cờ phần "%s"không nhận ra: %-7lxcó việc Ä‘ịnh vị lại liên quan Ä‘ến PC chưa tháo gỡ Ä‘ối với %sATN11 không Ä‘ược hỗ trÆ¡ATN12 không Ä‘ược hỗ trÆ¡kiểu Ä‘ối tượng C++ chưa Ä‘ược hỗ trợtoán tá»­ biểu thức IEE không Ä‘ược hỗ trợphiên bản trình Ä‘Æ¡n không Ä‘ược hỗ trợ %dsố hướng dẫn khung gọi nhỏ xíu (Dwarf Call Frame Instruction) không Ä‘ược hỗ trợ hay không Ä‘ược nhận ra: %#x
bộ dè dặt chưa Ä‘ược hỗ trợdữ liệu unwindthông tin tri ratri ra bảngngười dùng Ä‘ịnh nghÄ©a:biến %ddữ liệu phiên bảnđặt phiên bảnđặt phiên bản phụphần Ä‘ịnh nghÄ©a phiên bảnchiều dài phiên bản %d không tương á»©ng với chiều dài tài nguyên %lu.phiên bản cầnphiên bản cần phụ (2)phiên bản phụ cần (3)chuỗi phiên bảnbảng chuỗi phiên bảnbảng chuỗi phiên bảndữ liệu ký hiệu phiên bảnthông tin tạm phiên bảnthông tin tập tin tạm phiên bảnđợi: %scảnh báo : thá»§ tục CHECK (kiểm tra) %s chưa Ä‘ược Ä‘ịnh nghÄ©acảnh báo : thá»§ tục EXIT (thoát) %s chưa Ä‘ược Ä‘ịnh nghÄ©acảnh báo : chưa hỗ trợ FULLMAP; hãy thá»­ "ld -M"cảnh báo : chưa Ä‘ưa ra số thứ tá»± phiên bảncảnh báo : thá»§ tục START (bắt Ä‘ầu) %s chưa Ä‘ược Ä‘ịnh nghÄ©acảnh báo : không thể tạo tập tin tạm thời trong khi sao chép "%s" (lỗi: %s)cảnh báo : không thể Ä‘ịnh vị "%s". Thông Ä‘iệp lỗi hệ thống: %scảnh báo : sá»± sắp hàng tập tin (0x%s) > sá»± sắp hàng phần (0x%s)cảnh báo : Ä‘ịnh dạng nhập và xuất không tương thích với nhaucảnh báo: Ä‘á»™ dài phần Ä‘ầu tùy quá lớn  (> %d)
cảnh báo : ký hiệu %s Ä‘ược nhập mà không phải trong danh sách nhậpsẽ không xuất gì, vì ký hiệu chưa Ä‘ược Ä‘ịnh nghÄ©a thì không có kích cỡ.đang ghi stub| <không rõ>