Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

   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
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
Þ•í„/ëì^˜~™~ ¬~Í~â~û~"+=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ùCDD!'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ðKLL(L,9L"fLT‰LÞL4ýL2MDMJMVMmMŒ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ÒbVcfcyc…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$-qRq^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 =• Ó à %ì £&0£W£o£5‹£9Á£@û£"<¤_¤z¤‰¤1¦¤ؤ÷¤)	¥"3¥V¥!l¥Ž¥6¨¥$ߥ6¦M;¦‰¦ ¦(¸¦á¦4î¦7#§#[§S§AÓ§U¨k¨‰¨2™¨b̨R/©P‚©Ó©Aí©B/ªErª6¸ª
ïªýª«)7«5a«4—«?Ì«1¬>¬U¬&l¬5“¬>ɬ­4'­\­q­!~­E ­Cæ­?*®;j®/¦®)Ö®3¯04¯1e¯—¯R§¯Eú¯D@°A…°Ç°Nß°.±\K± ¨±ɱKÖ±E"²Ph²E¹²Vÿ²yV³ßгN°´Iÿ´`Iµwªµ_"¶Q‚¶vÔ¶9K·^…·Tä·i9¸j£¸¹.!¹P¹`¹z¹¹#¯¹-Ó¹*º,º@ºWº kºŒº¥º´ºк
îºüºd»t»!ô»3¼J¼)c¼R¼Ià¼O*½Yz½GÔ½V¾<s¾G°¾Fø¾F?¿A†¿bÈ¿Y+ÀC…À>ÉÀCÁLÁ1aÁO“ÁKãÁ@/Â@pÂH±Â=úÂM8Ã?†ÃCÆÃ3
Ä:>Ä,yÄ5¦ÄGÜÄO$ÅXtÅOÍÅVÆEtƁºÆM<ÇMŠÇmØÇHFÈWÈXçÈD@ÉS…ÉDÙÉ^Ê<}ÊHºÊNËGRËPšËkëËQWÌb©Ì;ÍDHÍOÍNÝÍ,ÎDÎK\ÎH¨Î ñÎ%Ï 8ÏYÏpÏ„Ï$žÏÃÏ!ÞÏMÐDNГШÐÇÐàÐÿÐÑ:6Ñ qÑ’Ñ(¦ÑÏÑåÑÒÒ2ÒOÒfÒ2vÒ:©ÒÏäÒF´Ó@ûÕ1<ÖUnÖÁÄÖ‰†×ÔÙÑåø·Y
E
Ÿj/+šèÆA¯+ñ
+%K)qG›Kãn/*ž
É×%ï%MD,’¿.ß. &= d u … /Œ ¼ Ú ð 2!.C!$r!!—!&¹!%à!)"0"8A",z"§"5Ã"ù"/#ŽH#O×#G'$)o$™$4«$1à$(%V;%f’%1ù%&+&)R&'|&(¤&"Í&&ð&''?'3V'Š'$¤'-É'3÷'p+(*œ(Ç(6ã()&:)Ba)¤)½)Õ)ð)F
*Q*Pm*=¾*:ü*97+6q+N¨+R÷+J,>_,Xž,t÷,bl-*Ï-+ú-A&.*h.9“.3Í.-/.//.^/%/"³/?Ö/X0?o0$¯0GÔ051R1H_1b¨1m2Fy29À2/ú2!*3=L3CŠ3[Î3O*4:z43µ4=é4d'5%Œ5)²55Ü56$.6$S63x6.¬6 Û6ü67.7J7b76w72®7Xá7=:8x8+–8 Â8ã8959*Q9|9+š9	Æ9Ð9â9ú9F:	Y:c:8:¸:Î:æ:ü:!;1;"B;e;%y;
Ÿ;ª;H·;<O<jn<LÙ<G&=-n=Wœ=Lô=XA>š>®>1Ã>:õ>0?:H?Lƒ?8Ð?0	@9:@Lt@@Á@qALtAÁADÑAB[2B>ŽBÍB9áBVCrCC,¢CÏCÖCdDwD=„DMÂDZEIkESµE-		F7OvUO.ÌOûOPà'PSø$VsZ‘`‹”fè gÔ	ldÞmKCnՏq1er$—r3¼r4ðr%s-Dsrss3˜s"Ìs+ïs	t%t@t[t%zt t#´tØt5ðt
&u1u=u+SuuŸu'¤u!Ìu1îu% v#Fv&jv)‘v»v)Ñv.ûv/*wZw-fw(”w1½wIïw79xqxHŒxmÕxLCyKy.Üy.z/:z,jz4—zÌz Þzÿz6{-K{#y{ {,¾{'ë{9|QM|&Ÿ|'Æ|Fî|&5}8\}5•}zË}OF~E–~LÜ~P)Iz0Ä2õ(€'=€4e€5š€1Ѐ6!7X/"À/ã1‚3E‚"y‚œ‚3¶‚(ê‚1ƒ*Eƒpƒ%ƒ'¥ƒ̓†íƒ?t„'´„d܄:A…/|…¬…c¾…R"†:u†)°†$چ-ÿ†-‡<6‡)s‡*‡3ȇ4ü‡51ˆ@gˆ&¨ˆψ9ãˆ5‰S‰s‰6‰/ĉ/ô‰
$Š2ŠIŠ^ŠqŠ…Š&œŠ$Ê芋‹"5‹&X‹‹Ÿ‹³‹ʋ܋é‹4ø‹E-ŒsŒ ‡Œ¨Œ.¼Œ`ëŒFL“œ'¥'͍%õŽ$Ž%,ŽRŽ&ZŽŽŸŽºŽՎ$.Ap„˜«¾Ǐ
æôý#"C"f‰ž²֐ëÿR‘
h‘8s‘8¬‘å‘ò‘
þ‘1’>’X’o’Š’+œ’%Ȓ=î’>,“
k“y“Š“f¨“)”99”@s”5´”(ê”,•#@•d•‚•k˜•––=–0W–6ˆ–<¿–.ü–+—ZK—B¦—1é—8˜T˜j˜‡˜£˜À˜dޘ?C™3ƒ™*·™Gâ™J*š@ušA¶š øš%›?›(^›‡›Z”›ï›!œ%1œ'Wœ<œ5¼œHòœ2;fn2՝+ž94žQnžNÀžŸs*ŸužŸD .Y 3ˆ .¼ ,ë .¡QG¡I™¡ã¡=ò¡0¢A¢[¢)n¢/˜¢(È¢ñ¢
£,£7?£w£!£ ¯£cУ24¥)g¥ ‘¥!²¥^Ô¥3¦0L¦3}¦-±¦ߦTò¦G§Y§)_§@‰©	Ê©Ô©&ó©ª++ª?WªR—ªNêªN9«Iˆ«Ò«í«ý«¬"+¬BN¬;‘¬BͬU­Ef­¬­7Ä­ü­V®f®7s®7«®Kã®/¯BM¯/¯uÀ¯16°h°=‡°(Å°î°±/,±4\±/‘±&Á±0è² ´P:´‹´£´½´Ö´ô´-µ9µOµXjµ=õ
¶¶,¶8¶P¶8d¶2¶vж-G·Tu·Ê·ä·ì·þ·¸4¸*M¸,x¸'¥¸A͸'¹77¹5o¹:¥¹"๺-"º0Pº,º)®º.غ2».:»+i»*•»,À»;í».)¼%X¼~¼+˜¼ļã¼½"½:½U½t½’½"­½?н3¾,D¾q¾jv¾Xá¾:¿	Q¿*[¿†¿4Š¿¿¿4Ú¿&À96ÀXpÀ*ÉÀ%ôÀ8ÁXSÁ
¬Á·Á`¿ÁL Â+mÂ
™Â§ÂÂÚÂ_]Ã%½Ã]ãÃ]AÄNŸÄXîÄ$GÅ#lÅwÅÆ:!ÆA\ÆRžÆXñÆVJÇO¡ÇGñÇ9È0JÈ"{È-žÈFÌÈMÉYaÉ(»É/äÉ&Ê!;Ê+]Ê(‰Ê²ÊÑÊ+ñÊ>Ë:\Ë#—Ë»ËÏËäËñËÌ/ÌGOÌ
—Ì¢Ì(®ÌF×Ì<ÍB[ÍžÍD´Í(ùÍ"ÎP+ÎQ|ÎÎÎLìÎP9Ï;ŠÏ>ÆÏÐÐ4Ð3NÐ5‚Ð!¸ÐÚÐöÐ'ÿÐ'Ñ&AÑ:hÑ£ÑH·ÑHÒ3IÒC}Ò9ÁÒ8ûÒU4Ó=ŠÓcÈÓ’,Ôš¿ÔZÕjÖ‡Ö£Ö¸ÖÑÖ0ÙÖ
×2×4D×yה׫׺×YÚ×W4ØGŒØ9ÔØ;Ù\JÙ%§Ù)ÍÙ3÷Ù<+Ú-hÚ-–ÚBÄÚ.Û?6Û>vÛGµÛNýÛQLÜ!žÜÀÜ9àÜOÝfjÝ8ÑÝ 
Þ++ÞWÞ)pÞ&šÞÁÞàÞ'ÿÞ'ß@ß!]ß1ß'±ß-Ùß?àGàeà$…à@ªà0ëà6á9SᜍáŠ*â4µâ0êâGã1cãG•ã7ÝãEä"[ä7~ä¶äÌäAæä[(åS„åØå/ìåæI.æ xæ_™æùæç8çILç–çX«ç?èCDè;ˆèGÄèHéUé-[é‰éžé±éÊéâé/ïéê(êO=êCê=Ñê2ëBëNëlëëë
¢ë°ë.Äëóëì%ìCì[ì&kì3’ì(Æì(ïì4í:Míˆíœí>£í1âíî]3î‘î"«î=Îî$ï"1ïDTï'™ïFÁï!ð/*ð5ZððC°ð@ôð65ñ0lñ9ñO×ñ'ò@@òò, òÍòçò!ó*'ó'Ró<zó3·ó.ëó,ô*Gô5rô(¨ô$Ñô(öôgõ‡õ‹õJ—õ0âõ2ö,FöBsöK¶öM÷@P÷8‘÷JÊ÷ø
$øB/ø
rø€ø™øp´øP%ùPvù-Çù_õùaUún·úY&ûs€û3ôû“(ü)¼üRæü]9ýV—ýSîý/BþrþJÿLMÿLšÿçÿ**1.\‹'§/Ï
ÿ
''4O„(“&¼ãú!'?g0ƒ2´2ç22MB€=à "$>"c†,¦HÓ6=S<‘Îî82P$ƒ¨
ÄÒ)ê($=bwˆ¦"¼ß+çL&!s(•(¾1ç4	PN	%Ÿ	MÅ	P
(d
8
4Æ
Gû
%C5i:Ÿ0Ú'&&NŒu

%-
S
i
}
•
µ
Â
 Ü
 ý
1Qg‚œ¸!È ê!G9**¬*×7:%I(o†˜. N#o*“¾Öî8
>
IkWÃ4ÌIK^zAŒÎVÚ1@P>‘Ðà¯ì¸œU!lŽ)£2Í./E#^!‚
¤
¯D½INLv›".?QH‘Úì1ÿ1E#U$y$ž Ã3ä0G `
°¾VÑ`(m‰\÷
T;b
ž¬BÃ5B<IÉFØ=Y"t?—×<î&+ !R t .Š 
¹ KÄ N!c_!3Ã!W÷!"O"2r"]¥"5#39#+m#:™#'Ô#+ü#1($Z$+z$3¦$.Ú$=	%5G%E}%7Ã%*û%/&&V& o&=&HÎ&F'$^'Bƒ';Æ'G(&J(8q(
ª(¸(Ñ(é(")'')O)d).),°)(Ý),*3* E*)f**.¥*FÔ*?+[+>u+%´+'Ú+,,,/,:\,3—,+Ë,*÷,%"-H-P`-±-Ñ-4ñ-7&.7^.ˆ–.(/H/[/
m/{/	š/¤/½/Ñ/"ë/V0e0x0•0²0Ç0ã0#ÿ0#1'A1
i1Lt1GÁ1=	28G2N€2_Ï2V/3O†3NÖ3>%4Td4`¹45)5ñ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.23.90
Report-Msgid-Bugs-To: bug-binutils@gnu.org
POT-Creation-Date: 2011-10-25 11:20+0100
PO-Revision-Date: 2013-09-23 14:14+0700
Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>
Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>
Language: vi
X-Bugs: Report translation errors to the Language-Team address.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=1; plural=0;
X-Generator: Poedit 1.5.5
X-Poedit-SourceCharset: utf-8
	Không hiểu phiên bản.
	cài đặt 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 tái định vị “%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 dịch ngược 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 tái định vị
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 rỗng.

Có %d dòng đầu chương trình, bắt đầu tại khoảng bù
Không có việc tái định vị độ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 tái định vị 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ể dùng là: 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 Ttin Canh
       Cỡ                CỡEnt            Ttin              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 Ttin 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   Xuất mọi ký hiệu vào tập tin .def
      --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ờ
     [Chưa dù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ù                 Ttin             Kiểu               Giá trị ký hiệu Tên ký hiệu
    Bù                 Th.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 HIỂU 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ờ> Ghi đè lê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 việc sẽ được làm
   --entry <điểm_vào>     Chỉ ra đ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>  Chỉ ra địa chỉ cơ bản ảnh
   --implib <tên_tập_tin> Giống với “--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 bí danh 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ờ> Chuyển 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 assembler.
   -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ậ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ập_tin_def> Tên tập tin định nghĩa cần đọc vào.
   -e --output-exp <tập_tin_ra> 	Tạo ra tập tin kết xuất.
   -f --as-flags <các_cờ>    Chuyển các cờ này cho chương trình dịch assembler.
   -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 bí danh 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 hơn nữa.
   -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ập_tin_def> 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ù viết tắt:%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ố:    Gtrị   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>               Tải phần bổ sung đã cho
  --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à tái định vị
  -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 để tái định vị
  -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 để tái định vị
     --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ể định vị
     --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à tái định vị
		(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 tái định vị
		(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
  -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
                               (tạm dịch: 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
                             (tạm dịch: 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 tái định vị trong tập tin
		(tái định vị [viết tắt])
  -R, --dynamic-reloc      Hiển thị các mục nhập tái định vị động trong tập tin
		(tái định vị độ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 byte lớn trước (big-endian) khi dịch ngược disassembler
  -EL --endian=little
                  Coi định dạng byte nhỏ trước (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 ánh xạ 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
  Lớp:                               %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 tả 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 tái định vị được gán, nhưng chúng CHƯA được áp dụng cho việc đổ này.
   Số xô:    Gtrị            Cỡ     Kiểu   Trộn Hiện     Ndx Tên
    Số xô:    Gtrị   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ù              Ttin           Kiểu           Gtrị ký hiệu  Tên ký hiệu
  Bù              Ttin           Kiểu           Gtrị 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  Lkế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
  Đặt ISA thành %lu
  Đặt ISA thành %s
  Đặt khối cơ bản
  Đặt cột thành %s
  Đặt “epilogue_begin” (đầu phần kết) là true (đúng)
  Đặt is_stmt thành %s
  Đặt “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ỉ VL         CỡTập    CỡNhớ     Cờ Canh
  Kiểu           Bù      Địa Chỉ Ảo  Địa Chỉ VL 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 hiểu %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 [số] minh dụ của 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 Ttin Canh
  [Nr] Tên               Kiểu            Địa chỉ          Bù     Cỡ     ES Cờ  Lkết Ttin 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 thành viên]
  [b]          • để tập tin đằng trước [tên thành viên] (giống như [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]          • giữ nguyên ngày giờ 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
  ký hiệu nbr:   %d
  opt hdr sz:    %d
  p            • in tập tin tìm thấy trong kho
  q[f]         • 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      Khoảng bao quát
 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 tái định vị đượ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ù         Th.tin  Kiểu                Gtrị ký hiệu Tên ký hiệu
 Bù         Thtin   Kiểu                Gtrị kýhiệu Tên ký hiệu   + gì thêm
 Bù         Th.tin  Kiểu            Gtrị ký hiệu Tên ký hiệu
 Bù         Th.tin  Kiểu            Gtrị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 tái định vị (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 đã tái định vị)
  -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>        Đặt đị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>   Đặt định dạng tập tin nhị phân nhập
      (_đích nhập_)
  -O --output-target=<tên_bfd>  Đặt đị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                        Bí danh của “--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                     Giống với “--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                     Giống với “-A”
  -p, --no-sort          Đừng sắp xếp các ký hiệu
  -P, --portability      Giống với “--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
 Các tùy chọn là:
   @<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
  -a --addresses         Hiển thị địa chỉ
  -b --target=<định_dạng> Đặt định dạng tập tin là nhị phân
  -e --exe=<trình>       Đặt tên tập tin đầu 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 hàm
  -C --demangle[=kiểu]   Tháo gỡ các tên hàm
  -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 hiểu 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 tả 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
 các 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 hiểu>%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ể đặt 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: Gặp lỗi khi thực hiện %s: %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: gặp lỗi khi di chuyển vị trí đọc ngược về đầu của các tập tin đối tượng trong kho lưu
%s: gặp lỗi khi di chuyển vị trí đọc đến thành viên kho lưu.
%s: lỗi di chuyển vị trí đọc đến thành viên kho lưu.
%s: lỗi di chuyển vị trí đọc đến dòng đầu kho đầu tiên
%s: lỗi di chuyển vị trí đọc đến dòng đầu kho lưu kế tiếp
%s: lỗi di chuyển vị trí đọc đến 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: gặp lỗi khi 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: vẫn chưa chỉ định kho lưu xuất ra
%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 hiểu 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 hiểu)(Không hiểu: %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)(chung dòng)(danh sách vị trí)(không chung dòng)(đầu == cuối)(đầu  >  cuối)(chưa định nghĩa)(không hiểu khả năng truy cập)(không hiểu trường hợp nào)(không hiểu quy ước)(không hiểu kiểu)(không hiểu tính ảo)(không hiểu 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 hiểu>, 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 hiểu 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, byte lớn trướcphần bù của 2, byte nhỏ trướcPhâ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 lặp
: cần một thư mục
: cần một lá
<Kết thúc danh sách>
<đặc tả 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ỏng><không có phần .debug_str><không-tên><không><khoảng bù quá lớn><khác>: %x<đặc tả bộ xử lý>: %d<chỉ mục bảng chuỗi: %3ld><không hiểu phần cộng: %lx><không hiểu: %lx><không hiểu: %x><không hiểu><không hiểu>: %d<không hiểu>: %lx<không hiểu>: %x<không hiểu>: 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 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 hiểu về việc tái định vị trên kiến trúc máy này
Đọc xong %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: %sGặp lỗi khi thực hiện %sĐỊ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ố 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
Không đọc được tập tin đầu vào “%s”.
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 hiểu 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	định vị
	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 tả hệ điều hành
	s	đặc tả bộ xử lý
Các từ khoá Cờ:
	W	ghi
 	A	định vị
	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 tả hệ điều hành
	s	đặc tả bộ xử lý
THƯ VIỆN: %s nền tảng: %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 tái định vị 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 nền tảng: %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ị         Lớp          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 tả 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 tả Hệ điều hành: %lxTùy chọn “-l” bị phản đối để cài đặt đị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 định nghĩaĐang xử lý tập tin định nghĩa: %sĐang xử lý các lời định nghĩaĐặc tả bộ xử lý: %lxĐặc tả bộ xử lý: (%x)REL (Tập tin có thể tái định vị)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 thông báo lỗi cho %s
Hãy thông 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 (cần %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 tái định vị 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ỗ trống [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ó chỗ chồng lên nhau [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 HIỂU (%*.*lx)KHÔNG HIỂU:KHÔNG HIỂU: 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ể di chuyển vị trí đọc đến 0x%lx cho %s
Không thể di chuyển vị trí đọc đến kết thúc tập tin
Không thể di chuyển vị trí đọc đến kết thúc của tập tin.
Không thể di chuyển vị trí đọc đến đầ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ự tái định vị MN10300 chưa xử lý được tìm sau sự tái định vị SYM_DIFFChiều dài dữ liệu không được quản lý: %d
Không hiểu giá trị AT: %lxGiá trị FORM (dạng) không hiểu: %lxKhông hiểu OSABI: %s
Giá trị TAG (thẻ) không hiểu: %lxKhông hiểu định dạng “%c”
Không hiểu kiểu máy: %d
Không hiểu kiểu máy: %s
Không hiểu 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.
Cách dùng: %s <tùy_chọn...> <tập_tin_đối_tượng...>
Cách dùng: %s <tùy_chọn...> <tập_tin...>
Cách dùng: %s <các_tùy_chọn> các_tệp_tin_elf
Cách dùng: %s <các_tùy_chọn> các_tập_tin_nhập
Cách dùng: %s [tùy chọn mô phỏng] [-]{dmpqrstx}[abcDfilMNoPsSTuvV] [--plugin <tên>] [tên-thành-viên] [số-lượng] tập_tin_kho tập_tin...
Cách dùng: %s [tùy chọn mô phỏng] [-]{dmpqrstx}[abcDfilMNoPsSTuvV] [tên-thành-viên] [số-lượng] tập_tin_kho tập_tin...
Cách dùng: %s [tùy_chọn...] [địa_chỉ...)]
Cách dùng: %s [tùy_chọn...] [tập_tin...]
Cách dùng: %s [tùy_chọn...] [tập_tin_nhập [tập_tin_xuất]]
Cách dùng: %s [tùy_chọn] [tập_tin_nhập]
Cách dùng: %s [tùy_chọn...] [tập_tin_nhập] [tập_tin_xuất]
Cách dùng: %s [tùy_chọn...] tập_tin_đầu_vào
Cách dùng: %s [tùy_chọn...] tập_tin_nhập [tập_tin_xuất]
Cách dùng: %s [tùy_chọn] kho
Cách 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 hiểu>: 0x%x] [Số viết tắt: %ld[Dư thừa][Opcode (mã thao tác) đã bị cắt cụt]
[đệm][bị cắt ngắn]
“N” chỉ có nghĩa khi dùng cùng với tùy chọn “x” và “d”.“u” chỉ có nghĩa khi dùng cùng với tùy chọn “D”.“u” chỉ có nghĩa khi 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 hiểu 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: %sbyte lớn trướckhố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 tái định vị “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ể đặt đí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 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 hiểu] sang “%s” [không hiểu]
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 được viếtdebug_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 được viếtdebug_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 được viếtdebug_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 hiểu thứ tự byteđị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: %sgặp lỗi khi 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ó 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ộ: tùy chọn này chưa được viếtlỗ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
byte nhỏ trướctạ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 cái nhưng 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 đầu 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 tái định vịghi 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 tái định vị
tràn - nreloc: %u, nlnno: %u
tràn khi điều chỉnh việc tái định vị dựa vào %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ố lượng tái định vị vẫn bị âmmã số tài nguyêndữ liệu tài nguyênkích cỡ dữ liệu tài nguyênkhông hiểu 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 .datađặt nội dung “.nlmsections”đặt kích cỡ “.nlmsections”đặt Địa chỉ thành 0x%s
đặt Discriminator (bộ phân biệt) thành %s
đặt canh lề phầnđặt các cờ phânđặt 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ù tái định vị 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 tái định vị 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-HIỂUkí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 tái định vị 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 hiểukhông hiểu kiểu ATNkhông hiểu kiểu BBkhông hiểu tên mã C++không hiểu độ thấy rõ C++không hiểu hệ thống phụ PE: %skhông hiểu mã TYkhông hiểu kiểu builtinkhông hiểu kiểu dáng tháo gỡ “%s”không hiểu kiểu định dạng “%s”không hiểu đích EFI đầu vào: %skhông hiểu tùy tên phần dài “%s”không hiểu mackhông hiểu số mầu nhiệmkhông hiểu đích EFI kết xuất: %skhông hiểu phầnkhông hiểu ký tự ảo cho lớp cơ sởkhông hiểu ký tự tình trạng hiển thị cho hạng cơ bảnkhông hiểu 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: %-7lxtái định vị liên quan đến PC chưa được phân giải dựa vào %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 hiểu>