forked from ~ljy/RK356X_SDK_RELEASE

hc
2023-02-13 e440ec23c5a540cdd3f7464e8779219be6fd3d95
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
Þ•¹ä-µ¬[€zz ”zµz·zÌzåz"{+'{S{s{‹{{&¶{Ý{ ø{| #|D| \|}|'•|½|7Ö|=}L}]}n} Œ}&˜}¿};Ü}6~EO~•~
«~¶~FÒ~:T1c,•.Â,ñ €*€9€L€#a€#…€%©€+π*û€&8K)j-”(܁‚ ‚!‚2<‚0o‚, ‚(͂+ö‚%"ƒ.Hƒ,wƒ+¤ƒЃ?áƒ6!„1X„3Š„¾„EЄ…T/…„…  …C®…Bò…A5†=w†Eµ†Xû†¼T‡3ˆ8EˆS~ˆN҈;!‰:]‰R˜‰3ë‰NŠ0nŠ8ŸŠF؊G‹g‹w‹ ‘‹‹¯‹‹ы!틌!Œ5ŒGŒcŒvŒ…ŒžŒ ·ŒŌYãŒb= *»æ<ø35Ž3iŽ:Ž/؎D2M4€,µ4â<5T7А53ø8,‘e‘+}‘8©‘9â‘8’8U’:Ž’+ɒ0õ’0&“2W“'Š“8²“"ë“0”7?”Hw”JÀ”9 •RE•7˜•LЕ7–2U–Rˆ–:ۖ?—>V—=•—>ӗ6˜<I˜7†˜8¾˜<÷˜<4™Iq™N»™=
šHHš)‘š=»šAùš>;›z››7 ›3؛ œ"œ5œNœcœtœ‘œ œÀœ@Ҝ8L\r…³3ǝûž$*žOžgžƒž˜ž²žÞ؞"èž& Ÿ¯2ŸçâŸ9Ê¡+¢A0¢³r¢)&£âP¤¡3¾§ÕÃÍ}ÆMKÍq™Ôé Õ¹õÕ    ¯Ö*¹Ö(äÖ
××4×P×$p×(•×-¾×ì×(ý×
&Ø"1ØTØ"\Ø/Ø(¯ØØØ%ôØÙ 1Ù
=ÙHÙ-PÙ~٘٬Ù"ÃÙ+æÙ#Ú 6Ú"WÚ"zÚ(Ú ÆÚ"ÒÚ"õÚÛ )ÛJÛ#_Û_ƒÛBãÛ:&Ü!aÜ ƒÜ(‘Ü(ºÜ(ãÜH ÝQUÝ-§Ý"ÕÝ%øÝ Þ?Þ"XÞ{ÞŽÞ¬Þ"ÌÞ4ïÞ$ß(;ßdß{ß3›ßÏßáßòßàà7àLà+hà1”à1Æà1øà2*á6]á5”á@Êá\ âJhâ(³âÜâ#ïâã&/ã)Vã'€ã#¨ã*Ìã+÷ã+#äOä(oä/˜ä(Èä&ñä7å.På åCŒåQÐåY"æ3|æ-°æ%Þæç,ç1Eç@wç>¸ç.÷ç)&è6PèQ‡èÙè1öè(é3Gé{é”é­é Æé-Òé!ê"ê;êTêiê‚ê—ê®êÅêàêûêë1ëLëg렂ë£ë½ëØëóëì)ìDì_ìzì•ì°ìËì4àì5íIKí•íµíÄí+âíîî6îOî-hî–î²îÒî2ëîNïmï    tï~ï‚ï“ï©ï8½ï    öïð$ð=ðMð]ðlð„ð•ð´ðÆðßð    çð7ñð)ñ5?ñ7uñ?­ñ,íñò00ò+aò3ò<Áò,þò;+ó4gó
œó/§ó×óQéó5;ô*qô/œôÌô Ýô^þô]õoõ7võB®õKñõ9=öBwö;ºö=öý)4þ^þrþE…þË7à    ÷" t܏NlJ»œ®£Rl$€¥Áß'ö7= [g3} ±¿ÔôDLT¡± ÍÙìHJ"Y|-ƒS±
3%#Y}’—®Éâû)9 W!x š¦Å'å! $/T(j5“3É7ý%5 %[ & #¨ )Ì  ö !!2!R!q!‰!%¤!Ê!(â!@ "L""i":Œ"!Ç".é"1#@J#%‹#&±#+Ø#*$%/$(U$~$$®$#Ê$$î$%-%$?%%d%Š%§%¼%$Ø%'ý%%&=&L&e&)€&ª& Ç&Ô&ñ&'c',ƒ'°'_Ð'/0(`( s(=(2¿(*ò(#)A)`)})€)…)£)¶)Ê)*Î)ù)+**D*o*…*! *Â*Ó* ã* +    %+/+ ?+M+ \+    j+ t+€+ ‰+ —+¥+ ·+ Å+ Ó+#á+,    ,,,I,d,j,s,|,—,µ,¾,Æ,"Î,ñ,    --,-J-c-r-"„-§-¸-É-Ù-    é-ó-     ... 0.<.U.p.†. •.    £. ­.». Ê.Ø.è.0î./</Z/ b/o/ˆ/ Ÿ/­/À/Ò/ï/" 0".0 Q0_0p0K…0Ñ0%ì0&1$91^1w1”1¬1Æ1D×1 2(212P2m2‰2¦2¾2<Ò223#B3%f3Œ3Ÿ3¹3Ñ3î36 4.C4%r4"˜4/»41ë465$T5y5Š5¤5»5I×5!676M6c6y6“6:©6 ä67#76B72y7    ¬7V¶7X 8/f8–8¶8Õ8!ô89B/9:r9­9+½9é9ú9 :$:'>:f:}: :)œ:Æ:Ø:í:Ò;&×;#þ;$"<#G<<k<¨<-¹<-ç<+= A=EO=•=¤=Ê«=?v?¶?º?Ñ? ì?!ø?@9@X@l@ @‹@›@ µ@&Ö@$ý@&"ANIA>˜A×A.æABD%B jB!‹B6­BäB0ûB(,CNUC%¤CÊCàCóCD&DDDÞbDéAE+F!@FbFvFŒF¡F»F:ËF+G2GMGUGTfG»G4ÚGH!H 'H3HJH$eH&ŠH ±H+ÒH"þH/!I"QI$tI"™I¼I ÛI üI$JBJ_J%~J#¤J-ÈJ0öJ'KFK[K{K“K²KËKãKþKL&LAL\LlL}L —L)¤L(ÎL÷LM`MPzMËM    ÜM"æM    N#N;NYN&rN*™NÄNÚN+ðN'ODOIO<OO6ŒOÃO    ÜOæOöOTP5]P“P4®P4ãP@QYQsQM’QàQ,ïQ-R3JR@~R?¿R9ÿR.9ShSnSvS†S¥SÀS,ßS3 T?@T)€TªT½TÓTëTUU3U)JU+tU U    ·UÁUÒUëUþU1VDV5\V5’V7ÈVW-W#BW
fWKqW½WÒW/ïW'X GXSX%bXˆX¡X´X½X"ÐXóXY2YOKY?›Y8ÛY4Z/IZ7yZ3±Z;åZq![w“[à \Ï\ß\ ò\þ\$ ]2]!7]"Y]|]‘]    ¢]¬],À]>í];,^2h^(›^RÄ^_5_"R_+u_$¡_Æ_(æ_&`56`l`Œ`«`/Ë`û` a)*a7TaŒa§a½aÕaèaÿab.bHbdbub‡b£bÃb#ãb$c,cDc^c&xc Ÿc!Àc!âc|djd ìd  e+.e#Ze1~e°e)Ïeùe'f >fJf(Yf6‚f;¹fõf g5"g:Xg+“g9¿gùg9
h%Dh*jh+•h6Áh.øh'i<iOibi vi4ƒi*¸i+ãi$j 4j@jXj
kjvj‡j¥j¹jËjâjòj k+"kNkmk&Œk(³kÜk(øk !l6Blyl‹l&¢lÉlèl&m)m'@mhmm"žmÁmÖm(öm$nDn%bn5ˆn¾n#Ón÷n o&o:oMo`o~o—o´oÌoçopp;pXpqpIŠpÔp3Ýp q2q!Qq+sq1Ÿq5Ñq2r5:r pr|r-ƒr±r
Àr Ër/Ùr1    s!;s']s'…s/­s2Ýs7t+Ht tt1•t#Çt"ët+u&:u#au)…u.¯u#Þuv*"vMv\vpvƒv šv¨v¹v    ÓvÝv!òv4wIwYwvww¢w²wÑw)îw(x#Ax9ex9ŸxÙxóx y(yDy&dy*‹y&¶y*Ýy3z<zTzgz yz!šz¼zÏzçz öz{ {{1{ @{M{
a{l{ ~{‹{ ¥{)²{Ü{û{|(%|'N|4v|«|-Ç|!õ|-}E} _}€} }¾} Ú}û}
~~.3~b~ x~„~Œ~¡~·~É~ ã~ ð~ ü~
!1ATi€®ÄÓ+æ€.€J€$f€ ‹€—€¯€Sʀ% DRj‚ ™ ¦+²ށã=ì*‚0‚4O‚„‚2•‚ Ȃ.Ղƒ ƒ!*ƒ-Lƒ#zƒcžƒ]„`„v„#†„$ª„τì„ ó„ ÿ„ … … 6…FB…@‰…Fʅ†!/†=Q†D†Ԇ å†ò† ‡‡‡7‡M‡b‡x‡Ї›‡­‡Á‡7ЇFˆ;Oˆ ‹ˆ™ˆ´ˆÈ#ӈ÷ˆ!‰#6‰ Z‰g‰…‰˜‰²‰ʼn䉊Š*Š 2Š'?ŠAgŠF©Š:ðŠ;+‹g‹)‚‹8¬‹$å‹$
Œ/Œ(MŒvŒ!”Œ¶ŒˌàŒúŒ'2)Z/„&´ۍûŽ+ŽBŽ*`Ž'‹Ž³Ž1͎*ÿŽ/*Z#u™¡²ۏò 0Ng&„ « ·Őã'ó*‘&F‘m‘~‘ž‘µ‘ӑñ‘%’4’Q’!q’“’²’'ƒî’““$.“S“@o“°“ Ɠ ғ ޓë“(ú“ #” 0”<”L”4g” œ”©”¾”Ӕè”ý”•"•6•'?•&g•,Ž• »•'ܕI–9N–9ˆ–4–0÷–2(—=[— ™— ¦—¨²—#[™2™²™´™!ҙ&ô™*š=Fš#„š¨šĚáš1›2›C›7W›*›º›$כü›1œEœ]eœqÜ5H0X    ‰;“+ϝnûnjžVٞ(0ŸYŸ1lŸSžŸGòŸ: bR Mµ 4¡C8¡ |¡
ˆ¡“¡¯¡LÊ¡P¢Jh¢T³¢S£\£x£-”£Y£3¤!P¤1r¤¤¤    ·¤#Á¤;å¤>!¥G`¥G¨¥Jð¥>;¦Sz¦`ΦD/§'t§xœ§d¨dz¨jߨJ©Ua©·©UÔ©*ªFªLXªH¥ªPîªE?«M…«|Ó«P¬Eá¬V'­t~­hó­W\®_´®l¯D¯]Ư0$°MU°]£°^± `±.n± ±©±»±˱ݱ!ô±².²G²$e²в  ²­²(̲õ²³h#³qŒ³$þ³3#´W´Vi´GÀ´JµWSµ<«µSèµL<¶L‰¶FÖ¶H·Mf·?´·Uô·KJ¸7–¸Rθ!¹49¹Vn¹SŹCºC]ºU¡º?÷º<7»Ht»?½»0ý»?.¼3n¼D¢¼Jç¼c2½e–½;ü½V8¾G¾c×¾M;¿=‰¿zÇ¿NBÀY‘ÀZëÀGFÁKŽÁKÚÁB&Â9iÂQ£ÂZõÂTPÃQ¥Ã{÷ÃesÄmÙÄ6GÅG~ÅVÆÅHÆfÆ{ÆIÆFÚÆ!Ç ?Ç`ÇǘǧÇÄÇÙÇùÇJÈBYȜȱÈÎÈçÈÉ!É59ÉoÉŽÉ#¤ÉÈÉÝÉýÉÊ/Ê@ÊUÊ,eÊ"’ʇµÊX=ËJ–Í<áÍaÎۀÎW\ÏK´Ð¡ða¢õ6ù5    ;‚q
)ô
ç      > -O } # (´ ,Ý .
297l¤+µ á0ï  '-BU+˜$Ä1é8L
_0j$›ÀÚ&ò-%G"m%$¶+Û,'F$nK“+ßM tYLÎC(_ ˆ1–3È(ü[%d;æ,"*O-z8¨*á *&&Q%x<žÛ6õ$,'QLy!Æ è    "(-K$y+ž5Ê@=A>G¾K:RL_ÚV:)‘-»5é-9M3‡9»3õ/)0Y0Š$»?àL ?m?­CíN1 € V ^ç dF!H«!3ô!-("#V"6z"D±"Tö"fK#B²#0õ#C&$ij$*Ô$9ÿ$09%3j%ž%3»%"ï% &9&.X&&‡&®&É&ä&''1'H'c'~'™'´'Ï'ê' (&(@([(v(‘(¬(Ç(â(ý()3)+N)9z)?´)~ô).s*¢*±*+Ï*û*
+#"+(F+0o+# +Ä+ ä+9,S?,“,    š,¤,¨,%Ä, ê,<ø, 5-'C-.k- š-»-Ï-â-../.@.U.e.Tw.Ì.DÝ.\"/n/3î/"0>802w04ª0Hß0C(1\l1SÉ12P,2}2g’2Vú2/Q3]3ß3*ô3v4–4­4C¶4Qú4ZL5L§5Uô5TJ6cŸ>O?S?q?Ç„?¬LB°ùD)ªHõÔOŠÊUeUV»[uK]Á]øÃ`3¼a#ða4bIb7db%œbSÂb"c9c'?cgc:wc3²c æcôc d-dDHdLd Údûde'e":eH]e¦e"ºeÝeFäe]+f‰f’f3§f1Ûf  g.g33g6gg.žg+Íg*ùg*$hOh2kh'žh'Æhîh6þh;5iJqi8¼i4õi*j(HjcqjLÕjF"kEikE¯kFõkC<lP€l Ñl)ÞlmC&m<jm'§m/Ïm=ÿm&=nAdnG¦n'în8oSOo5£oGÙoJ!p{lp=èp@&qFgqC®q@òq>3r3rr"¦r6Ér/s00sass/›s0Ës7üs,4t/at5‘t7Çt1ÿt"1u1Tu+†u4²u7çuv51v2gv/švzÊvGEw wy®wP(xyx ˜xZ¥xHy@Iy(Šy1³y2åyzz3 z3Tz4ˆz½z5Áz)÷z>!{G`{¨{À{;Þ{!|<| U|*v| ¡|®|¾|Ï|â|ô|
ý|
}}$} 6}W}g}w}/‡}·}»}Á}Æ}kÌ}8~ >~ L~)Y~)ƒ~ ­~ º~ Ç~1Ô~##*N*g$’·Í&Ý€€$€3€B€.K€z€‰€&’€¹€ɀ倁  %2 ; H VcrYx<ҁ?‚ O‚\‚4v‚«‚Ƃ܂î‚1ƒ,6ƒ@cƒ@¤ƒåƒ„„t5„1ª„=܄@…4[…@….х"†%#†I†mc† ц݆1æ†3‡#L‡+p‡(œ‡#ŇOé‡C9ˆ+}ˆ.©ˆ؈ëˆ
‰(‰F‰`e‰.ƉCõ‰D9ŠS~ŠRҊC%‹Ri‹%¼‹7â‹1Œ,LŒ^yŒ،ñŒ&0B-sN¡6ð*'Ž+RŽQ~ŽRЎ#„6„»I@7А-@ð@1‘!r‘_”‘Uô‘$J’Qo’Á’Ӓè’1ø’4*“_““Ž“<¨“ å“(ñ“!”‹<”7ȕC–1D–1v–M¨–ö–I
—LT—9¡—ۗOó—C˜
_˜=j˜\¨š›3    ›4=›r›5’›+ț+ô›: œ[œwœ‡œ3£œ:לCFV@TޝD3žxžQ–žèž[øžCTŸ4˜Ÿ`͟,. U[ 0± uâ 1X¡Š¡ª¡Å¡7â¡-¢@H¢úy£t¤,ޤ»¤ Ú¤û¤¥1¥VF¥C¥3á¥
¦ ¦@¦C¦f§m§„§ Ч˜§¸§'Ò§)ú§*$¨3O¨*ƒ¨D®¨"ó¨$©%;©!a© ƒ© ¤©$ũꩪ&&ª-Mª,{ª<¨ªåª«!«%?«"e«ˆ«¤««â«þ«¬%%¬K¬[¬"l¬ ¬)œ¬&Ƭ'í¬­i­`†­ç­ ú­+®2®&L®As®/µ®Gå®A-¯5o¯3¥¯DÙ¯A°`°g°\o°f̰"3±
V±(a±бš±V(²-²S­²L³mN³(¼³/å³{´‘´^®´U µ^cµ^µg!¶d‰¶Qî¶    @·J·R·b··:œ·<×·\¸`q¸/Ò¸'¹*¹.F¹u¹”¹¯¹!˹Dí¹:2º3mº¡ºµºÒºŸëºŸ‹»W+¼:ƒ¼R¾¼N½P`½±½7Ƚ2¾3¾LE¾’¾(®¾V×¾>.¿m¿¿G¬¿1ô¿+&ÀRÀbÀ(vÀ@ŸÀàÀ^æÀeEÁU«ÁAÂSCÂB—ÂGÚÂ]"Ã\€Ã›ÝÛyÄÃÅÙÅ!ôÅÆ/ÆJIÆ”Æ,˜Æ2ÅÆøÆÇ$Ç-Ç?@Ç_€Ç=àÇ=È=\ÈušÈ5É+FÉ8rÉ7«É3ãÉ%Ê==Ê-{Ê9©Ê5ãÊ+Ë>EË?„ËÄË@ÞËFÌ]fÌ,ÄÌñÌÍÍ;ÍRÍ hÍ ‰Í"ªÍÍÍâÍ,úÍ:'Î8bÎJ›ÎIæÎ0Ï-OÏ<}Ï+ºÏ$æÏ% Ð%1ЀWÐnØÐ$GÑ$lÑ/‘Ñ'ÁÑ5éÑ"Ò-BÒ pÒ+‘Ò½ÒÓÒGðÒX8ÓZ‘Ó1ìÓÔg3Ô\›Ô8øÔZ1ÕŒÕFœÕ:ãÕ;Ö4ZÖGÖL×Ö$×9×L×'^׆×e¥×Q ØW]Ø8µØîØ(Ù-ÙIÙ!PÙLrÙ¿Ù'ÜÙ)Ú!.ÚPÚ4kÚA Ú-âÚ-ÛD>ÛDƒÛ9ÈÛ?Ü3BÜ`vÜ$×Ü-üÜ=*Ý3hÝ-œÝAÊÝ! Þ8.ÞgÞ(†Þ-¯Þ"ÝÞ:ßG;ß<ƒß4ÀßBõß[8à”àB´à÷à(á&<á'cá!‹á-­á!Ûá-ýá!+â0Mâ0~â$¯â'Ôâ6üâ03ã'dãsŒãäOä-WäC…ä1Éä9ûäP5åZ†å?áåG!æiæ …æN’æáæýæ çG$çMlç8ºç3óç5'èG]èG¥èFíèE4é8zéH³é/üé4,ê9aê>›ê:Úê5ëEKë4‘ë7Æë3þë!2ì*Tì'ì0§ìØì%ñì%í=íPí.líK›íçí'ýí%îDîWîTgî?¼îAüîE>ï/„ïY´ïYð$hð3ð3Áð<õð32ñ.fñ2•ñ.Èñ2÷ñK*ò$vò'›ò"Ãò/æò/óFó"bó…ó ˜ó¥ó­óÅóÝóïó!ô*ô!Cô    eô5oô¥ôN¾ô$ õ$2õ'WõEõ8ÅõXþõ8WöOö;àöF÷1c÷.•÷:Ä÷.ÿ÷.ø%Nøtø#„ø¨øE¾øù ù&ù?ù]ùvù%”ùºùÏùÞùøùú!1úSú*rú)ú+Çúóúû$2ûWû$pûG•û:ÝûCü:\üD—ü    Üü/æü-ý¦Dý<ëý$(þ0Mþ0~þ$¯þÔþóþ4ÿHÿOÿWlÿÄÿ*ËÿEöÿ*<2gšY°
7!RHt1½¬ï“œ!0RGk6³ê        #9XwQ‹KÝs)*GÈg‚xû-FYn­Æ!å!)E^lt}áU_     µ    +à    0ï    0 
TQ
B¦
Né
A8  z ,‡ ´ Ê !ã F QL "ž Á  Ô  á Kî P: a‹ Pí J>3‰B½a:bF(ä0 $>6c)š;Ä(')2Q?„=Ä144-i*—Â$Þ3/7,g'”;¼=ø;6*r.ÌÓë&) Gh…6¤#Û-ÿQ- !-¯Ý-ü0*3["0²-ã%/7.gI–5à&'=6eœ:¹+ô+ >L6‹<Â[ÿ'[ƒ£ÀÚ(ï1G$cBˆËá$!F$b‡¢¾BÇA
VL;£Bßb"P…@Ö> WV X® K!S!
l!}’J™]\lè†õ„«<pyWœ% îB'–2‡T!öýÚ˨_r°{ÑÄk&õ?RW’+@.§Æ¯Á‡ÜѤ96_‚u"Ôþ€©]Za:¶Ö¢7ÑjŒÏ…_tµ/wSaŠçO(ñçڏ=¸Ûâ“q´/Ewç(ZN|<”íŠ žÀ•Bù¼Oxž²i®î]ôv{eEÌ[Sáq+H=!.±Ò$ÜD5—¥&/®äLÎ^J»zYÐ#Ú’ž¶ÄðFféñ”z9ªøU¡d¸5œ™ê‰q „k³†íO±•2H¬°¹rcj"T+•ô,à?¶ãóÔ­ï‹ÂI—7Uu #–$IË4üà:|õ {­¬BŽdèáʬàd›fºä*ªÏy5‘…Ž9\ü™T—Noê@óK ¡«ð^‡oëÁ“ÆQÈbä*4-p„À£W —¥°{¸Z™ §oˆ˜¥(¢m 6
I“;=h!g¤?)ƒCQÀ»Þt‹yD0H,¢“Y-PÆè)Ï¢£Î(×8%F¯›äk‰¹|ÖÉÖ5Œ0‘êšAb…Œ²ôȃRâ질4
ÈžQÝ6‚\u|µs„*«^Ÿ8EÇB    ¹‚¦IúGŽnSüúygÃçŸÝªý®ÍNiHc
Ñ^ŸƒÛNDVÊ|3—ø¼í³­mAº 7WÓôcAÿ—cÙ(½a}*Yª…Vzñ}&ÙšúV‰Hj¯ŠÝåH’~l úd¾#
rŽëØvŽ%r[x©+õÛ2E¶®œâq¿œ:šQØB)ˆ݂Úß°¨Ì¨>!³]zh<ÇꆽvŠ–0`f'hþcÐWáM¢ :”èÑ΋»ÿ9™¿=G¿£)Þ:U«SCøï,óY»nY`¢qûž¿?§uK,×ˍ”–Ìÿe˜‹tFh l-<&u·m Ÿ.;Ä3T, Æ+Z’Jòè·þe±Kš‰ßˆA›Û"µ{·þ½ §gþM”ҐëîM.åSùaãéù‰NÞ¾¼#ò)Rwµ1>¨î˜EÕÿ2G\$# l.¤%´Â8kéÐváñ7¤T©DÐ0¾ÐÒ­[ùg¼£p볚£?Óýœóª6¥m mL/ͬU•¬xÅn*`iw:ÔÃA¬1ð Ä7˜=0<]óÈããƒæÓ²ÏiïkÒFåž±±<íVoµ>܇ K-Ùp6q’Ì5›Þ×U!€¯° gD®Cá(¦¯"ƒ–âƒK²å
ŸJ…I^!rºÁ¥¦Ë˜¤8éÝ    =xŠ3Gª|‰‚בæðø€Cö_¶X~\XbO1ZSüì[@•ñ÷Q´U¦b6Ä©¡„Iâ™?*÷ uÀ}÷Öfo3;ûX É¸Pà¹'½    %ºòÖº>úß8'PLôQ ´xË    †Cfð{L;.¥TÇßeΦkýæïø•§OaìöÇ4€î    Á2e®M÷yb4„¨ZØD3ÿ Þ23·tfésÀ1M%]É–[gR‡ÙÕ~XßÂÊŠ³\#ÊR“sEiòP rtL5jÃpOלCŒ
+Å´-~o;Ó‹~ûv©Ž›¯ëAçh>ňN£$ŒcwB¿›z˜ÒÊÆ²w"±ö̾¼y÷µW[¹iò·xnP@€ü1Fj8ùaJ¶XY    ”¸¤Á'Ø9ì«jØ&ŒVà_‘°†­KnÉb0>7ûæ‘‚öêÉXÅÈ`ý¾‹ŸÎ@s´-_$Ü@í©¨hÙ^Í }…`¦ì†Õ1s}ûõ&n²`“zR9áӍp¡/ˆÛšGÏäÏå­€Ú~)·L M½ll‘³Õ,Õ/J"«Íd Ü¹¸e'¡Çs4ÔV$ÅãGmdt»Â ï;FPÔÍv‡æ    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  : 0x%016
  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'.
 
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 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:
 
PLT GOT:
 
 
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.
     # value     sc IFEW ty class file  pa name
     --yydebug                 Turn on parser debugging
     Library              Time Stamp          Checksum   Version Flags     Library              Time Stamp          Checksum   Version Flags
     [Reserved]     [unsupported opcode]     finish     sp = sp + %d    Arguments: %s
    Build ID:     Creation date  : %.17s
    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
   --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
   FP mode: 0x%016   Header flags: 0x%08x
   Image id    : %s
   Language: %s
   Length:        0x%s (%s)
   Link time:    Major id: %u,  minor id: %u
   Manip date  :    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  %-20s %10s    Description
  %02x     %02x   %08x %3u %c%c %2u   %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
  0x%02x   @<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
  CTL[%u]: %08x
  Class:                             %s
  Cnt: %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:   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:                      0x%lx
  Offset: %#08lx  Link: %u (%s)
  Opcode %d has %d args
  Opcode Base:                 %d
  Options for %s:
  Options passed to DLLTOOL:
  Pointer Size:             %d
  Prologue Length:             %d
  Rest are passed unmodified to the language driver
  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]  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 need aux past end of section
  Version need past end of section
  Version:                             %d
  Version:                           %d %s
  Version:                           0x%lx
  Version:                  %d
  [-X32]       - ignores 64 bit objects
  [-X32_64]    - accepts 32 and 64 bit objects
  [-X64]       - ignores 32 bit objects
  [-g]         - 32 bit small archive
  [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
  exptr: %08x fsize: %08x lnnoptr: %08x endndx: %u
  flags:         0x%04x   import file off:   %u
  import strtab len: %u
  lnno: %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
  o_algndata:      %u
  o_algntext:      %u
  o_cputype:       0x%04x
  o_data_start:    0x%08x
  o_debugger:      0x%08x
  o_dsize:         0x%08x
  o_entry:         0x%08x
  o_maxdata:       0x%08x
  o_maxstack:      0x%08x
  o_mflag (magic): 0x%04x 0%04o
  o_modtype:       0x%04x  o_snbss:         0x%04x
  o_sndata:        0x%04x
  o_snentry:       0x%04x
  o_snloader:      0x%04x
  o_sntext:        0x%04x
  o_sntoc:         0x%04x
  o_text_start:    0x%08x
  o_toc:           0x%08x
  o_tsize:         0x%08x
  o_vstamp:        0x%04x
  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  scnlen: %08x  nreloc: %-6u
  scnlen: %08x  nreloc: %-6u  nlinno: %-6u
  scnsym: %-8u  string table len:  %u
  string table off:  %u
  symbols off:   0x%08x
  t            - display contents of archive
  time and date: 0x%08x  -   vaddr    sec    sz typ   sym
  version:           %u
  x[o]         - extract file(s) from the archive
 # Name     paddr    vaddr    size     scnptr   relptr   lnnoptr  nrel  nlnno
 %-6u  %3u %3u  %s %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 (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
 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
 Length  Number     %% of total  Coverage
 List symbols in [file(s)] (a.out by default).
 Local entries:
 Module pointer (GNU extension)
 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
 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
 Update the ELF header of ELF files
 [without DW_AT_frame_base] address beyond section size
 and Line by %s to %d
 at offset 0x%lx contains %lu entries:
 bad symbol index: %08lx cl:  command specific modifiers:
 commands:
 emulation options: 
 fixparms: %-3u  floatparms: %-3u  parm_on_stk: %u
 ftype: %02x  generic modifiers:
 h: parm=%08x sn=%04x al: 2**%u hand_mask_offset: 0x%08x
 has_ctl: %u, tocless: %u, fp_pres: %u, log_abort: %u, int_hndl: %u
 name_pres: %u, uses_alloca: %u, cl_dis_inv: %u, saves_cr: %u, saves_lr: %u
 no tags found
 number of CTL anchors: %u
 optional:
 parminfo: 0x%08x
 program interpreter stores_bc: %u, fixup: %u, fpr_saved: %-2u, spare3: %u, gpr_saved: %-2u
 tags at %08x
 tb_offset: 0x%08x (start=0x%08x)
 typ:  type: %lx, namesize: %08lx, descsize: %08lx
 version: %u, lang: %u, global_link: %u, is_eprol: %u, has_tboff: %u, int_proc: %u
#lines %d %08x  %c   %c  %-2u %2d %-8.8s %08x %08x %08x %08x %08x %08x %-5d %-5d
%ld: .bf without preceding function%ld: unexpected .ef
%lu
%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%u'%s''%s' is not an ordinary file
'%s': No such file'%s': No such file
(%s(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)(User defined location op)(WRMAGIC: writable text segments)(bad offset: %u)(base address)
(declared as inline and inlined)(declared as inline but ignored)(inlined)(location list)(not inlined)(start == end)(start > end)*invalid*, <unknown>, Base: , Semaphore: , relocatable, relocatable-lib, unknown ABI, unknown CPU, unknown ISA, unknown v850 architecture variant,%s,%s)
.bss.data.debug_info offset of 0x%lx in %s section does not point to a CU header.
.text16-byte
2 bytes
2's complement, big endian2's complement, little endian4 bytes
4-byte
8-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%x@%08xA codepage was specified switch `%s' and UTF16.
Added exports to output fileAdding exports to output fileAddressApplication
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
DIE 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
DYN (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 Error, 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
GOTGenerated exports fileGenerating export file: %sHard 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)
Input 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 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)
Loader header:
Location list starting at offset 0x%lx is not terminated.
Location lists in %s section start at 0x%s
Machine '%s' not supportedMemory
Microcontroller
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_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_TIMER (s390 timer register)NT_S390_TODCMP (s390 TOD comparator register)NT_S390_TODPREG (s390 TOD programmable register)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_LINKTIMENT_VMS_LNM (language name)NT_VMS_MHD (module header)NT_VMS_ORIG_DYNNT_VMS_PATCHTIMENT_VMS_SRC (source files)NT_VMS_TITLENT_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)
NetBSD 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.
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'OwnerPLT GOTPT_FIRSTMACH+%dPT_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)Processed 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 unwindRelocations for %s (%u)
Report bugs to %s
Report bugs to %s.
Reserved length value (0x%s) found in section %s
Scanning 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                            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
Standalone AppSucking in info from %s section in %sSupported architectures:Supported targets:Sym.Val.Symbol 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: %sTruncated 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_EXCLUnexpected 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 togetherValue for `N' must be positive.Version %ld
Version 4 does not support case insensitive lookups.
Virtual address 0x%lx not located in any PT_LOAD segment.
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%x[%3u] 0x%lx - 0x%lx
[%3u] 0x%lx 0x%lx [<unknown>: 0x%x] [Truncated opcode]
[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, attributesbad 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: %sblocks left on stack at endbyte number must be less than interleavebyte number must be non-negativecan not determine type of file `%s'; use the -J optioncan't 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 lencannot read symbol aux entrycannot read symbol entrycannot read symbol tablecannot reverse bytes: length of section %s must be evenly divisible by %dconflictconflict 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 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 string sectiondynamic string tabledynamic stringserror 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:
fname: %.14sfontdirfontdir device namefontdir face namefontdir headergroup 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 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.
lang reason sym/addr
length %d [liblistliblist string tablelineno  symndx/paddr
make .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    len  lang-id general-hash language-hash
offset: %08xoption -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%xpossibly 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 headersreading %s section of %s failed: %sreference parameter is not a pointerrelocation count is negativerelocsresource IDresource dataresource data sizeresource type unknownrpc sectionsection %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 headersset .bss vmaset .data sizeset .nlmsection contentsset .nlmsections sizeset Address to 0x%s
set section alignmentset section flagsset section sizeset start addresssh_entsize is zero
shared sectionskipping invalid relocation offset 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 lengthstub section sizessubprocess got fatal signal %dsupport not compiled in for %ssupported flags: %ssymbol informationsymbolssymtab shndxtarget 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: vaddr    sgn mod sz type  symndx symbol
version dataversion defversion def auxversion definition sectionversion length %d does not match resource length %luversion needversion need aux (2)version need aux (3)version need sectionversion string tableversion symbol dataversion var infoversion 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.21.53
Report-Msgid-Bugs-To: bug-binutils@gnu.org
POT-Creation-Date: 2011-06-02 14:35+0100
PO-Revision-Date: 2011-10-19 22:45+0900
Last-Translator: Yasuaki Taniguchi <yasuakit@gmail.com>
Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>
Language: ja
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=1; plural=0;
   ä¸æ˜Žãªãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã™ã€‚
   ã‚³ãƒ¼ãƒ‰ãƒšãƒ¼ã‚¸è¨­å®šã¯ç„¡è¦–されます。
 
 
 
%s ã‹ã‚‰ã®ã‚·ãƒ³ãƒœãƒ«:
 
 
 
%s[%s] ã‹ã‚‰ã®ã‚·ãƒ³ãƒœãƒ«:
 
 
 
%s ã‹ã‚‰ã®æœªå®šç¾©ã‚·ãƒ³ãƒœãƒ«:
 
 
 
%s[%s] ã‹ã‚‰ã®æœªå®šç¾©ã‚·ãƒ³ãƒœãƒ«:
 
 
      [要求されるプログラムインタプリタ: %s]
    ã‚¢ãƒ‰ãƒ¬ã‚¹           é•·ã•
 
    ã‚¢ãƒ‰ãƒ¬ã‚¹   é•·ã•
 
    ã‚ªãƒ•セット    åå‰
 
   ãƒªãƒ³ã‚¯ãƒ•ラグ: 0x%016
  ãƒ—ログラムの開始ヘッダ:            
 è¡Œç•ªå·æ–‡:
 
 ã‚ªãƒšã‚³ãƒ¼ãƒ‰:
 
 ã‚»ã‚°ãƒ¡ãƒ³ãƒˆãƒžãƒƒãƒ”ングへのセクション:
 
 ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ¼è¡¨ã¯ç©ºã§ã™ã€‚
 
 ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ¼è¡¨:
 
 ãƒ•ァイル名表は空です。
 
 ãƒ•ァイル名表:
 
 ä»¥ä¸‹ã®ã‚¹ã‚¤ãƒƒãƒã¯ã‚ªãƒ—ションです:
 
%s:     ãƒ•ァイル形式 %s
 
%s ã‚°ãƒ«ãƒ¼ãƒ—セクション [%5u] `%s' [%s] ã¯ %u å€‹ã®ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚’含みます:
 
オフセット0x%2$lx ã«ã‚ã‚‹ '%1$s' å†é…ç½®ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã¯ %3$ld ãƒã‚¤ãƒˆã§æ§‹æˆã•れています:
 
アドレス表:
 
書庫索引:
 
セクション %s ã®ã‚¢ã‚»ãƒ³ãƒ–リダンプ
 
CU è¡¨:
 
セクション '%s' ã®å†…容を取得できません。
 
セクション %s ã®é€†ã‚¢ã‚»ãƒ³ãƒ–ル:
 
オフセット 0x%lx ã®å‹•的情報セグメントは %d å€‹ã®ã‚¨ãƒ³ãƒˆãƒªã‹ã‚‰æ§‹æˆã•れています:
 
オフセット 0x%lx ã«ã‚る動的セクションは %u å€‹ã®ã‚¨ãƒ³ãƒˆãƒªã‹ã‚‰æ§‹æˆã•れています:
 
動的シンボル情報は表示用シンボルとしては利用できません。
 
Elf ãƒ•ァイルタイプは %s ã§ã™
 
ファイル: %s
 
セクション '%s' ã® åå…­é€²æ•°ãƒ€ãƒ³ãƒ—:
 
`.gnu.hash' ãƒã‚±ãƒƒãƒˆãƒªã‚¹ãƒˆé•·ã®åº¦æ•°åˆ†å¸ƒ (全 %lu å€‹ã®ãƒã‚±ãƒƒãƒˆ):
 
バケットリスト長の度数分布 (全 %lu å€‹ã®ãƒã‚±ãƒƒãƒˆ):
 
イメージ再配置
 
ライブラリ一覧セクション '%s' ã¯ %lu å€‹ã®ã‚¨ãƒ³ãƒˆãƒªã§æ§‹æˆã•れています:
 
このファイルからはバージョン情報が見つかりません。
 
オフセット 0x%08lx, é•·ã• 0x%08lx ã®å‚™è€ƒ:
 
-P/--private ã‚¹ã‚¤ãƒƒãƒã§ã‚µãƒãƒ¼ãƒˆã•れるオプション:
 
PLT GOT:
 
 
主 GOT:
 
プログラムヘッダ:
 
再配置セクション 
セクション '%s' ã¯ %d å€‹ã®ã‚¨ãƒ³ãƒˆãƒªã§æ§‹æˆã•れています:
 
セクション '%s' ã¯ãƒ€ãƒ³ãƒ—できるデータを持っていません。
 
セクション '%s' ã¯ãƒ‡ãƒãƒƒã‚°ãƒ‡ãƒ¼ã‚¿ã‚’持っていません。
 
セクション '.conflict' ã¯ %lu å€‹ã®ã‚¨ãƒ³ãƒˆãƒªã§æ§‹æˆã•れています:
 
セクション '.liblist' ã¯ %lu å€‹ã®ã‚¨ãƒ³ãƒˆãƒªã§æ§‹æˆã•れています:
 
セクションヘッダ:
 
セクションヘッダ:
 
セクション '%s' ã®æ–‡å­—列ダンプ:
 
シンボルテーブル '%s' ã¯ %lu å€‹ã®ã‚¨ãƒ³ãƒˆãƒªã‹ã‚‰æ§‹æˆã•れています:
 
シンボル表 '%s' ã® sh_entsize ãŒ 0 ã§ã™!
 
イメージのシンボル表:
 
イメージの `.gnu.hash' ã®ã‚·ãƒ³ãƒœãƒ«è¡¨:
 
シンボル表:
 
TU è¡¨:
 
%s ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãŒç©ºã§ã™ã€‚
 
%d å€‹ã®ãƒ—ログラムヘッダ、始点オフセット 
このファイルには動的再配置がありません。
 
このファイルにはプログラムヘッダはありません。
 
このファイルには再配置されるものがありません。
 
このファイルにはセクショングループがありません。
 
このファイルにはセクションがありません。
 
このファイルにはグループ化するセクションがありません。
 
このファイルにはスタック巻き戻し (unwind) ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãŒã‚りません。
 
このファイルには動的セクションがありません。
 
巻き戻し (unwind) ã‚»ã‚¯ã‚·ãƒ§ãƒ³ 
オフセット 0x%2$lx ã«ã‚る巻き戻し表索引 '%1$s' ã¯ %3$lu å€‹ã®ã‚¨ãƒ³ãƒˆãƒªã§æ§‹æˆã•れています:
 
バージョン定義セクション '%s' ã¯ %u å€‹ã®ã‚¨ãƒ³ãƒˆãƒªã‹ã‚‰æ§‹æˆã•れています:
 
必要バージョンセクション '%s' ã¯ %u å€‹ã®ã‚¨ãƒ³ãƒˆãƒªã‹ã‚‰æ§‹æˆã•れています:
 
バージョンシンボルセクション '%s' ã¯ %d å€‹ã®ã‚¨ãƒ³ãƒˆãƒªã‹ã‚‰æ§‹æˆã•れています:
 
開始アドレス 0x            ãƒ•ァイルサイズ        ãƒ¡ãƒ¢ãƒªã‚µã‚¤ã‚º         ãƒ•ラグ æ•´åˆ—
            ãƒ•ラグ: %08x         å¯èƒ½ãª <machine>: arm[_interwork], i386, mcore[-elf]{-le|-be}, ppc, thumb
       %s -M [<mri-script]
       ãƒ•ラグ
       ã‚µã‚¤ã‚º            EntSize          ãƒ•ラグ Link  æƒ…å ±  æ•´åˆ—
       ã‚µã‚¤ã‚º            EntSize          æƒ…å ±              æ•´åˆ—
       åž‹                ã‚¢ãƒ‰ãƒ¬ã‚¹         ã‚ªãƒ•セット        ãƒªãƒ³ã‚¯
       åž‹              ã‚¢ãƒ‰ãƒ¬ã‚¹ Off    ã‚µã‚¤ã‚º ES   Lk Inf Al
       åž‹              ã‚¢ãƒ‰ãƒ¬ã‚¹         Off    ã‚µã‚¤ã‚º ES   Lk Inf Al
      --add-stdcall-underscore ã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ェースライブラリ内の stdcall ã‚·ãƒ³ãƒœãƒ«ã«ä¸‹ç·š (_) ã‚’付ける
      --dwarf-depth=N        N ä»¥ä¸Šã®æ·±ã•の DIE ã‚’表示しない
      --dwarf-start=N        N ä»¥ä¸Šã®æ·±ã•の DIE ã‚’表示する
 
      --exclude-symbols <list> <list> ã‚’エクスポートしない
      --export-all-symbols   .def ã«å…¨ã¦ã®ã‚·ãƒ³ãƒœãƒ«ã‚’エクスポートする
      --identify-strict      è¤‡æ•°ã® DLL ãŒã‚るときに --identify ãŒã‚¨ãƒ©ãƒ¼ã‚’報告するようにする
      --leading-underscore   ã™ã¹ã¦ã®ã‚·ãƒ³ãƒœãƒ«ã®å…ˆé ­ã«ä¸‹ç·š (_) ãŒä»˜ã„ているとする
      --no-default-excludes  ãƒ‡ãƒ•ォルトで除外されるシンボルを無くす
      --no-export-all-symbols  ãƒªã‚¹ãƒˆã•れたシンボルだけをエクスポートする
      --no-leading-underscore ã™ã¹ã¦ã®ã‚·ãƒ³ãƒœãƒ«ã®å…ˆé ­ã«ä¸‹ç·š (_) ãŒä»˜ã„ていないとする
      --plugin NAME      æŒ‡å®šã—たプラグインを読み込む
      --use-nul-prefixed-import-tables idata$4 ãŠã‚ˆã³ idata$5 ã«æŽ¥é ­è¾žã‚’付けない
     # value     sc IFEW ty class file  pa name
     --yydebug                 æ§‹æ–‡è§£æžã®ãƒ‡ãƒãƒƒã‚°ã‚’有効にする
     ãƒ©ã‚¤ãƒ–ラリ           ã‚¿ã‚¤ãƒ ã‚¹ã‚¿ãƒ³ãƒ—      Checksum   ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãƒ•ラグ     ãƒ©ã‚¤ãƒ–ラリ           ã‚¿ã‚¤ãƒ ã‚¹ã‚¿ãƒ³ãƒ—      Checksum   ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãƒ•ラグ
     [予約]     [サポートされないオペコード]     çµ‚了     sp = sp + %d    å¼•æ•°: %s
    ãƒ“ルドID:     ä½œæˆæ—¥ : %.17s
    å¤§åŸŸã‚·ãƒ³ãƒœãƒ«è¡¨å: %s
    ã‚¤ãƒ¡ãƒ¼ã‚¸ID: %s
    ã‚¤ãƒ¡ãƒ¼ã‚¸å: %s
    ç„¡åŠ¹ãªã‚µã‚¤ã‚ºã§ã™
    æœ€çµ‚パッチ適用日: %.17s
    ãƒªãƒ³ã‚«ID : %s
    ä½ç½®:     ãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ«å   : %s
    ãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ«ãƒãƒ¼ã‚¸ãƒ§ãƒ³ : %s
    åå‰: %s
    OS: %s, ABI: %ld.%ld.%ld
    ã‚ªãƒ•セット         æƒ…å ±             åž‹                 ã‚·ãƒ³ãƒœãƒ«å€¤      ã‚·ãƒ³ãƒœãƒ«å
    ã‚ªãƒ•セット         æƒ…å ±             åž‹                 ã‚·ãƒ³ãƒœãƒ«å€¤      ã‚·ãƒ³ãƒœãƒ«å + åŠ æ•°
    ã‚ªãƒ•セット é–‹å§‹   çµ‚了
    ã‚ªãƒ•セット é–‹å§‹   çµ‚了     Expression
    Provider: %s
   --add-indirect         ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆãƒ•ァイルに間接 DLL ã‚’追加する
   --add-stdcall-alias    @<n> ãªã—のエイリアスを追加する
   --as <name>            ã‚¢ã‚»ãƒ³ãƒ–ラとして <name> ã‚’使用する
   --base-file <basefile> ãƒªãƒ³ã‚«ãŒä½œæˆã—たベースファイルを読み取る
   --def <deffile>        å…¥åŠ› .def ãƒ•ァイルの名前
   --dllname <name>       å‡ºåŠ›ãƒ©ã‚¤ãƒ–ãƒ©ãƒªã«è¨­å®šã™ã‚‹å…¥åŠ› DLL ã®åå‰
   --dlltool-name <dlltool> ãƒ‡ãƒ•ォルトで "dlltool" ã«è¨­å®šã•れる
   --driver-flags <flags> ãƒ‡ãƒ•ォルトの ld ãƒ•ラグを上書きする
   --driver-name <driver> ãƒ‡ãƒ•ォルトで "gcc" ã«è¨­å®šã•れる
   --dry-run              å‹•作に必要なことを明らかにする
   --entry <entry>        ä»£æ›¿ DLL ã‚¨ãƒ³ãƒˆãƒªãƒã‚¤ãƒ³ãƒˆã‚’指定する
   --exclude-symbols <list> .def ã‹ã‚‰ <list> ã‚’除外する
   --export-all-symbols     .def ã«å…¨ã¦ã®ã‚·ãƒ³ãƒœãƒ«ã‚’エクスポートする
   --image-base <base>    ã‚¤ãƒ¡ãƒ¼ã‚¸ãƒ™ãƒ¼ã‚¹ã‚¢ãƒ‰ãƒ¬ã‚¹ã‚’指定する
   --implib <出力名>      --output-lib ã¨åŒç¾©èªž
   --leading-underscore     ä¸‹ç·š (_) ãŒä»˜ã„ているエントリポイント
   --machine <machine>
   --mno-cygwin           Mingw DLL ã‚’作成する
   --no-default-excludes    ãƒ‡ãƒ•ォルトで除外されるシンボルを無くす
   --no-export-all-symbols  .drectve ã‚·ãƒ³ãƒœãƒ«ã®ã¿ã‚’エクスポートする
   --no-idata4           idata$4 ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚’生成しない
   --no-idata5           idata$5 ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚’生成しない
   --no-leading-underscore  ä¸‹ç·š (_) ãŒä»˜ã„ていないエントリポイント
   --nodelete             ä¸€æ™‚ファイルを削除しない
   --output-def <deffile> å‡ºåŠ› .def ãƒ•ァイルの名前
   --output-exp <outname> ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆãƒ•ァイルを生成する
   --output-lib <outname> å…¥åŠ›ãƒ©ã‚¤ãƒ–ãƒ©ãƒªã‚’ç”Ÿæˆã™ã‚‹
   --quiet, -q            é™ã‹ã«å‹•作する
   --target <machine>     i386-cygwin32 ã¾ãŸã¯ i386-mingw32
   --verbose, -v          å†—長に表示を行う
   --version              dllwrap ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚’表示する
   -A --add-stdcall-alias    @<n> ç„¡ã—のエイリアスを追加する
   -C --compat-implib        å¾Œæ–¹äº’換性のあるインポートライブラリを作成する
   -D --dllname <name>       ã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ェースライブラリに入れる入力 DLL ã®åå‰
   -F --linker-flags <flags> <flags> ã‚’リンカに渡す
   -I --identify <implib>    <implib> ã«é–¢é€£ã¥ã‘られた DLL åã‚’報告する
   -L --linker <name>        ãƒªãƒ³ã‚«ã¨ã—て <name> ã‚’使用する
   -M --mcore-elf <outname>  <outname> ã¸ mcore-elf ã‚ªãƒ–ジェクトファイルを処理する
   -S --as <name>            ã‚¢ã‚»ãƒ³ãƒ–ラとして <name> ã‚’使用する
   -U                     .lib ã«ä¸‹ç·š (_) ã‚’追加する
   -U --add-underscore       ã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ェースライブラリ内の全てのシンボルに下線 (_) ã‚’付ける
   -V --version              ãƒ—ログラムのバージョンを表示する
   -a --add-indirect         ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆãƒ•ァイルに間接 dll ã‚’追加する
   -b --base-file <basefile> ãƒªãƒ³ã‚«ãŒç”Ÿæˆã—たベースファイルを読み込む
   -c --no-idata5            idata$5 ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚’生成しない
   -d --input-def <deffile>  èª­ã¿è¾¼ã¾ã‚Œã‚‹ .def ãƒ•ァイルの名前
   -e --output-exp <outname> ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆãƒ•ァイルを生成する
   -f --as-flags <flags>     ã‚¢ã‚»ãƒ³ãƒ–ラに <flags> ã‚’渡す
   -h --help                 ã“の情報を表示する
   -k                     ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆã•れた名前から @<n> ã‚’削る
   -k --kill-at              ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆã•れた名前から @<n> ã‚’取り除く
   -l --output-lib <outname> ã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ェースライブラリを生成する
   -m --machine <machine>    <machine> ç”¨ DLL ã‚’作成する。  [default: %s]
   -n --no-delete            ä¸€æ™‚ファイルを消去しない (余分なものも保存するなら繰り返すこと)
   -p --ext-prefix-alias <prefix> <prefix> ã‚’接頭辞として付けたエイリアスを加える
   -t --temp-prefix <prefix> ä¸€æ™‚ファイル名を生成するときに <prefix> æŽ¥é ­è¾žã‚’使用する
   -v --verbose              å†—長に表示を行う
   -x --no-idata4            idata$4 ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚’生成しない
   -y --output-delaylib <outname> é…延インポートライブラリを生成する
   -z --output-def <deffile> ä½œæˆã•れる .def ãƒ•ァイルの名前
   0 (*局 æ‰€*)       1 (*大 åŸŸ*)       @<file>                   <file> ã‹ã‚‰ã‚ªãƒ—ションを読み込む
   @<file>                <file> ã‹ã‚‰ã‚ªãƒ—ションを読み込む
   çœç•¥ã‚ªãƒ•セット: %s
   æµ®å‹•小数モード: 0x%016   ãƒ˜ãƒƒãƒ€ãƒ•ラグ: 0x%08x
   ã‚¤ãƒ¡ãƒ¼ã‚¸ID  : %s
   è¨€èªž: %s
   é•·ã•:        0x%s (%s)
   ãƒªãƒ³ã‚¯æ™‚é–“:    Major id: %u,  minor id: %u
   æ“ä½œæ—¥      :   ç•ªå·:      å€¤         ã‚µã‚¤ã‚º ã‚¿ã‚¤ãƒ—  Bind   Vis      ç´¢å¼•名
  ç•ªå·:      å€¤ ã‚µã‚¤ã‚º ã‚¿ã‚¤ãƒ—  Bind   Vis      ç´¢å¼•名
   ãƒ‘ッチ時間:    ãƒã‚¤ãƒ³ã‚¿ã‚µã‚¤ã‚º:%d
   ã‚·ã‚°ãƒãƒãƒ£:        åž‹ã‚ªãƒ•セット:   0x%s
   ãƒãƒ¼ã‚¸ãƒ§ãƒ³:    %d
   [索引]     åå‰
  # sc         å€¤       section  åž‹   aux name/off
  %#06x:     åå‰ç´¢å¼•: %lx  %#06x:   åå‰: %s  %#06x: è¦ª %d, åå‰ç´¢å¼•: %ld
  %#06x: è¦ª %d: %s
  %#06x: Rev: %d  ãƒ•ラグ: %s  %#06x: ãƒãƒ¼ã‚¸ãƒ§ãƒ³: %d  %-20s %10s    èª¬æ˜Ž
  %02x     %02x   %08x %3u %c%c %2u   %4u %08x %3u   (開始ファイルオフセット: 0x%lx)  (不明な inline å±žæ€§å€¤: %s)  --dwarf-depth=N        N ä»¥ä¸Šã®æ·±ã•の DIE ã‚’表示しない
  --dwarf-start=N        N ä»¥ä¸Šã®æ·±ã•の DIE ã‚’表示する
  --input-mach <machine>      å…¥åŠ›ã®ãƒžã‚·ãƒ³åž‹ã‚’ <machine> ã«è¨­å®šã™ã‚‹
  --output-mach <machine>     å‡ºåŠ›ã®ãƒžã‚·ãƒ³åž‹ã‚’ <machine> ã«è¨­å®šã™ã‚‹
  --input-type <type>         å…¥åŠ›ã®ãƒ•ã‚¡ã‚¤ãƒ«åž‹ã‚’ <type> ã«è¨­å®šã™ã‚‹
  --output-type <type>        å‡ºåŠ›ã®ãƒžã‚·ãƒ³åž‹ã‚’ <type> ã«è¨­å®šã™ã‚‹
  --input-osabi <osabi>       å…¥åŠ›ã® OSABI ã‚’ <osabi> ã«è¨­å®šã™ã‚‹
  --output-osabi <osabi>      å‡ºåŠ›ã® OSABI ã‚’ <osabi> ã«è¨­å®šã™ã‚‹
  -h --help                   ã“の情報を表示する
  -v --version                %s ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³æƒ…報を表示する
  --plugin <name>              æŒ‡å®šã—たプラグインを読み込む
  --plugin <p> - æŒ‡å®šã—たプラグインを読み込む
  --target=BFDNAME - ã‚¿ãƒ¼ã‚²ãƒƒãƒˆã®ã‚ªãƒ–ジェクト形式を BFDNAME ã¨ã—て指定する
  -H --help                    ã“のメッセージを表示する
  -v --verbose                 å†—é•· - ä½•を実行しているかを表示する
  -V --version                 ãƒãƒ¼ã‚¸ãƒ§ãƒ³æƒ…報を表示する
  -I --histogram         Display histogram of bucket list lengths
  -W --wide              å‡ºåŠ›å¹…ãŒ 80 æ–‡å­—を超えることを許可する
  @<file>                ã‚ªãƒ—ションを <file> ã‹ã‚‰èª­ã¿è¾¼ã‚€
  -H --help              ã“の情報を表示する
  -v --version           readelf ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ç•ªå·ã‚’表示する
  -I --input-target <bfdname>      å…¥åŠ›ãƒ•ã‚¡ã‚¤ãƒ«ã®å½¢å¼ã‚’ <bfdname> ã§ã‚ると仮定する
  -O --output-target <bfdname>     å‡ºåŠ›ãƒ•ã‚¡ã‚¤ãƒ«ã‚’å½¢å¼ <bfdname> ã§ä½œæˆã™ã‚‹
  -B --binary-architecture <arch>  å…¥åŠ›ã®ã‚¢ãƒ¼ã‚­ãƒ†ã‚¯ãƒãƒ£ãŒç„¡ã„å ´åˆã«å‡ºåŠ›ã‚¢ãƒ¼ã‚­ãƒ†ã‚¯ãƒãƒ£ã‚’
                                    arch ã«è¨­å®šã™ã‚‹
  -F --target <bfdname>            å…¥å‡ºåŠ›ã®å½¢å¼ã‚’ <bfdname> ã«è¨­å®šã™ã‚‹
     --debugging                   ãƒ‡ãƒãƒƒã‚°æƒ…報を変換する (可能な場合)
  -p --preserve-dates              æ›´æ–°/アクセス日時を出力にコピーする
  -j --only-section <name>         å‡ºåŠ›ã«ã‚»ã‚¯ã‚·ãƒ§ãƒ³ <name> ã®ã¿ã‚’コピーする
     --add-gnu-debuglink=<file>    <file> ã«ãƒªãƒ³ã‚¯ã—ているときにセクション
                                     .gnu_debuglink ã‚’加える
  -R --remove-section <name>       å‡ºåŠ›ã‹ã‚‰ã‚»ã‚¯ã‚·ãƒ§ãƒ³ <name> ã‚’削除する
  -S --strip-all                   å…¨ã¦ã®ã‚·ãƒ³ãƒœãƒ«ãŠã‚ˆã³å†é…ç½®æƒ…報を削除する
  -g --strip-debug                 å…¨ã¦ã®ãƒ‡ãƒãƒƒã‚°ã‚·ãƒ³ãƒœãƒ«ãŠã‚ˆã³ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚’削除する
     --strip-unneeded              å†é…ç½®ã«å¿…要でない全てのシンボルを削除する
  -N --strip-symbol <name>         ã‚·ãƒ³ãƒœãƒ« <name> ã‚’コピーしない
     --strip-unneeded-symbol <name>
                                   å†é…ç½®ã«å¿…要でない限りシンボル <name> ã‚’
                                     ã‚³ãƒ”ーしない
     --only-keep-debug             ãƒ‡ãƒãƒƒã‚°æƒ…報以外を取り除く
     --extract-symbol              ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã®ä¸­èº«ã‚’削除するが、シンボルは保持する
  -K --keep-symbol <name>          ã‚·ãƒ³ãƒœãƒ« <name> ã‚’取り除かない
     --keep-file-symbols           ãƒ•ァイルに関するシンボルを取り除かない
     --localize-hidden             å…¨ã¦ã® ELF éš ã•れたシンボルを局所にする
  -L --localize-symbol <name>      ã‚·ãƒ³ãƒœãƒ« <name> ã‚’強制的に局所と印を付ける
     --globalize-symbol <name>     ã‚·ãƒ³ãƒœãƒ« <name> ã‚’強制的に大域と印を付ける
  -G --keep-global-symbol <name>   <name> ã‚’除く全てのシンボルを局所にする
  -W --weaken-symbol <name>        ã‚·ãƒ³ãƒœãƒ« <name> ã‚’強制的に weak ã¨å°ã‚’付ける
     --weaken                      å…¨ã¦ã®ã‚°ãƒ­ãƒ¼ãƒãƒ«ã‚·ãƒ³ãƒœãƒ«ã‚’強制的に weak ã¨å°ã‚’付ける
  -w --wildcard                    ã‚·ãƒ³ãƒœãƒ«æ¯”較でワイルドカードの使用を許可する
  -x --discard-all                 å…¨ã¦ã®éžå¤§åŸŸã‚·ãƒ³ãƒœãƒ«ã‚’削除する
  -X --discard-locals              ã‚³ãƒ³ãƒ‘イラが作成したシンボルを全て削除する
  -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>              ã‚»ã‚¯ã‚·ãƒ§ãƒ³é–“の隙間を <val> ã§åŸ‹ã‚ã‚‹
     --pad-to <addr>               æœ€å¾Œã®ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚’アドレス <addr> ã«ãªã‚‹ã¾ã§é–“を埋める
     --set-start <addr>            é–‹å§‹ã‚¢ãƒ‰ãƒ¬ã‚¹ã‚’ <addr> ã«è¨­å®šã™ã‚‹
    {--change-start|--adjust-start} <incr>
                                   é–‹å§‹ã‚¢ãƒ‰ãƒ¬ã‚¹ã« <incr> ã‚’加える
    {--change-addresses|--adjust-vma} <incr>
                                   LMA, VMA ãŠã‚ˆã³é–‹å§‹ã‚¢ãƒ‰ãƒ¬ã‚¹ã« <incr> ã‚’加える
    {--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>
                                   ã‚»ã‚¯ã‚·ãƒ§ãƒ³ <name> ã®ãƒ—ロパティを <flags> ã«è¨­å®šã™ã‚‹
     --add-section <name>=<file>   Add section <name> found in <file> to output
     --rename-section <old>=<new>[,<flags>] ã‚»ã‚¯ã‚·ãƒ§ãƒ³åã‚’ <old> ã‹ã‚‰ <new> ã«å¤‰æ›´ã™ã‚‹
     --long-section-names {enable|disable|keep}
                                   Coff ã‚ªãƒ–ジェクトでの長いセクション名の扱い
     --change-leading-char         Force output format's leading character style
     --remove-leading-char         å¤§åŸŸã‚·ãƒ³ãƒœãƒ«ã‹ã‚‰å…ˆé ­æ–‡å­—を削除する
     --reverse-bytes=<num>         Reverse <num> bytes at a time, in output sections with content
     --redefine-sym <old>=<new>    ã‚·ãƒ³ãƒœãƒ«å <old> ã‚’ <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>        <file> ã«ãƒªã‚¹ãƒˆã•れた全てのシンボルに対し -N ã‚’行う
     --strip-unneeded-symbols <file>
                                   <file> ã«ãƒªã‚¹ãƒˆã•れた全てのシンボルに対し
                                     --strip-unneeded-symbol ã‚’行う
     --keep-symbols <file>         <file> ã«ãƒªã‚¹ãƒˆã•れた全てのシンボルに対し -K ã‚’行う
     --localize-symbols <file>     <file> ã«ãƒªã‚¹ãƒˆã•れた全てのシンボルに対し -L ã‚’行う
     --globalize-symbols <file>    <file> ã«ãƒªã‚¹ãƒˆã•れた全てのシンボルに対し 
                                     --globalize-symbol ã‚’行う
     --keep-global-symbols <file>  <file> ã«ãƒªã‚¹ãƒˆã•れた全てのシンボルに対し -G ã‚’行う
     --weaken-symbols <file>       <file> ã«ãƒªã‚¹ãƒˆã•れた全てのシンボルに対し -W ã‚’行う
     --alt-machine-code <index>    Use the target's <index>'th alternative machine
     --writable-text               å‡ºåŠ›ã®ãƒ†ã‚­ã‚¹ãƒˆã‚’æ›¸ãè¾¼ã¿å¯èƒ½ã«ã™ã‚‹
     --readonly-text               å‡ºåŠ›ã®ãƒ†ã‚­ã‚¹ãƒˆã‚’ä¿è­·ã«ã™ã‚‹
     --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>]
                                   PE å­ã‚·ã‚¹ãƒ†ãƒ ã‚’ <name> [& <version>] ã«è¨­å®šã™ã‚‹
     --compress-debug-sections     zlib ã‚’使用して DWARF ãƒ‡ãƒãƒƒã‚°ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚’圧縮する
     --decompress-debug-sections   zlib ã‚’使用して DWARF ãƒ‡ãƒãƒƒã‚°ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚’伸張する
  -v --verbose                     å…¨ã¦ã®ä¿®æ­£ã•れたオブジェクトファイルを一覧表示する
  @<file>                          ã‚ªãƒ—ションを <file> ã‹ã‚‰èª­ã¿è¾¼ã‚€
  -V --version                     ãƒ—ログラムのバージョン番号を表示する
  -h --help                        ã“の情報を表示する
     --info                        ã‚µãƒãƒ¼ãƒˆã•れるオブジェクト形式とアーキテクチャ
                                     ã‚’一覧表示する
  -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       å®šç¾©ã•れたシンボルのサイズを表示する
  -s, --print-armap      æ›¸åº«ãƒ¡ãƒ³ãƒã‹ã‚‰ã®ã‚·ãƒ³ãƒœãƒ«ã®ç´¢å¼•を含める
      --size-sort        ã‚·ãƒ³ãƒœãƒ«ã‚’サイズでソートする
      --special-syms     å‡ºåŠ›ã«ç‰¹æ®Šãªã‚·ãƒ³ãƒœãƒ«ã‚’å«ã‚ã‚‹
      --synthetic        åˆæˆã—たシンボルも表示する
  -t, --radix=RADIX      ã‚·ãƒ³ãƒœãƒ«ã®å€¤ã‚’表示する際に基数 RADIX ã‚’使用する
      --target=BFDNAME   ã‚¿ãƒ¼ã‚²ãƒƒãƒˆã‚ªãƒ–ジェクト形式を BFDNAME ã¨ã—て指定する
  -u, --undefined-only   æœªå®šç¾©ã‚·ãƒ³ãƒœãƒ«ã®ã¿è¡¨ç¤ºã™ã‚‹
  -X 32_64               (無視される)
  @FILE                  ã‚ªãƒ—ションを FILE ã‹ã‚‰èª­ã¿è¾¼ã‚€
  -h, --help             ã“の情報を表示する
  -V, --version          ãƒ—ログラムのバージョン番号を表示する
 
  -a, --archive-headers    æ›¸åº«ãƒ˜ãƒƒãƒ€æƒ…報を表示する
  -f, --file-headers       å…¨ã¦ã®ãƒ•ァイルヘッダの内容を表示する
  -p, --private-headers    ã‚ªãƒ–ジェクト形式特有のファイルヘッダの内容を表示する
  -P, --private=OPT,OPT... ã‚ªãƒ–ジェクト形式特有の内容を表示する
  -h, --[section-]headers  ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãƒ˜ãƒƒãƒ€ã®ä¸­èº«ã‚’表示する
  -x, --all-headers        å…¨ã¦ã®ãƒ˜ãƒƒãƒ€ã®ä¸­èº«ã‚’表示する
  -d, --disassemble        å®Ÿè¡Œå¯èƒ½ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã®ã‚¢ã‚»ãƒ³ãƒ–ラを表示する
  -D, --disassemble-all    å…¨ã¦ã®ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã®ã‚¢ã‚»ãƒ³ãƒ–ラを表示する
  -S, --source             é€†ã‚¢ã‚»ãƒ³ãƒ–ル結果にソースコードを混ぜて表示する
  -s, --full-contents      è¦æ±‚された全てのセクションの完全な内容を表示する
  -g, --debugging          ã‚ªãƒ–ジェクトファイルのデバッグ情報を表示する
  -e, --debugging-tags     ctags å½¢å¼ã‚’使用してデバッグ情報を表示する
  -G, --stabs              ãƒ•ァイル内の全てのスタブ情報を (生の形式で) è¡¨ç¤ºã™ã‚‹
  -W[lLiaprmfFsoRt] ã¾ãŸã¯
  --dwarf[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,
          =frames-interp,=str,=loc,=Ranges,=pubtypes,
          =gdb_index,=trace_info,=trace_abbrev,=trace_aranges]
                           ãƒ•ァイルの DWARF æƒ…報を表示する
  -t, --syms               ã‚·ãƒ³ãƒœãƒ«è¡¨ã®å†…容を表示する
  -T, --dynamic-syms       å‹•的シンボル表の内容を表示する
  -r, --reloc              ãƒ•ァイルの再配置エントリを表示する
  -R, --dynamic-reloc      ãƒ•ァイルの動的再配置エントリを表示する
  @<file>                  ã‚ªãƒ—ションを <file> ã‹ã‚‰èª­ã¿è¾¼ã‚€
  -v, --version            ã“のプログラムのバージョン番号を表示する
  -i, --info               ã‚µãƒãƒ¼ãƒˆã•れているオブジェクト形式とアーキテクチャを
                             è¡¨ç¤ºã™ã‚‹
  -H, --help               ã“の情報を表示する
  -b, --target=BFDNAME           ã‚¿ãƒ¼ã‚²ãƒƒãƒˆã®ã‚ªãƒ–ジェクト形式を BFDNAME ã¨æŒ‡å®šã™ã‚‹
  -m, --architecture=MACHINE     ã‚¿ãƒ¼ã‚²ãƒƒãƒˆã®ã‚¢ãƒ¼ã‚­ãƒ†ã‚¯ãƒãƒ£ã‚’ MACHINE ã¨æŒ‡å®šã™ã‚‹
  -j, --section=NAME             ã‚»ã‚¯ã‚·ãƒ§ãƒ³ NAME ã«é–¢ã™ã‚‹æƒ…報のみを表示する
  -M, --disassembler-options=OPT é€†ã‚¢ã‚»ãƒ³ãƒ–ラにテキスト OPT ã‚’渡す
  -EB --endian=big               ãƒ“ッグエンディアンと見なして逆アセンブルする
  -EL --endian=little            ãƒªãƒˆãƒ«ã‚¨ãƒ³ãƒ‡ã‚£ã‚¢ãƒ³ã¨è¦‹ãªã—て逆アセンブルする
      --file-start-context       Include context from start of file (with -S)
  -I, --include=DIR              ã‚½ãƒ¼ã‚¹ãƒ•ァイルの検索リストにディレクトリ DIR ã‚’加える
  -l, --line-numbers             å‡ºåŠ›ã«ãƒ•ã‚¡ã‚¤ãƒ«åã¨è¡Œç•ªå·ã‚’å«ã‚ã‚‹
  -F, --file-offsets             æƒ…報を表示するときにファイルオフセットを含める
  -C, --demangle[=STYLE]         åå‰å¤‰å½¢ (mangle)/前処理されたシンボルをデコードする
                                  STYLE ã¯ã‚’指定する場合は `auto', `gnu',
                                  `lucid', `arm', `hp', `edg', `gnu-v3', `java'
                                  ã¾ãŸã¯ `gnat'
  -w, --wide                     80列以上で出力を書式整形する
  -z, --disassemble-zeroes       é€†ã‚¢ã‚»ãƒ³ãƒ–ル時に 0 ã®ã¿ã®ãƒ–ロックをスキップしない
      --start-address=ADDR       ã‚¢ãƒ‰ãƒ¬ã‚¹ãŒ ADDR ä»¥ä¸Šã®ãƒ‡ãƒ¼ã‚¿ã®ã¿å‡¦ç†ã™ã‚‹
      --stop-address=ADDR        ã‚¢ãƒ‰ãƒ¬ã‚¹ãŒ ADDR ä»¥ä¸‹ã®ãƒ‡ãƒ¼ã‚¿ã®ã¿å‡¦ç†ã™ã‚‹
      --prefix-addresses         é€†ã‚¢ã‚»ãƒ³ãƒ–ル時に完全なアドレスを併せて表示する
      --[no-]show-raw-insn       ã‚·ãƒ³ãƒœãƒ«ã‚’使用した逆アセンブル時に十六進数を併せて表示する
      --insn-width=WIDTH         -d ã‚’使用時に一行の幅を WIDTH ã§è¡¨ç¤ºã™ã‚‹
      --adjust-vma=OFFSET        ã™ã¹ã¦ã®ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚¢ãƒ‰ãƒ¬ã‚¹ã‚’表示する時に OFFSET ã‚’加える
      --special-syms             ã‚·ãƒ³ãƒœãƒ«ãƒ€ãƒ³ãƒ—時に特殊シンボルを含める
      --prefix=PREFIX            -S ã‚’使用時に絶対パスに PREFIX ã‚’加える
      --prefix-strip=LEVEL       -S ã‚’使用時にディレクトリ名の先頭から LEVEL éšŽå±¤åˆ†å–り除く
  -i --instruction-dump=<number|name>
                         ã‚»ã‚¯ã‚·ãƒ§ãƒ³ <number|name> ã®å†…容を逆アセンブルする
  -r                           ç„¡è¦–される (rc ã¨ã®äº’換性のため)
  @<file>                      <file> ã‹ã‚‰ã‚ªãƒ—ションを読み出す
  -h --help                    ã“のヘルプメッセージを表示する
  -V --version                 ãƒãƒ¼ã‚¸ãƒ§ãƒ³æƒ…報を表示する
  -t                           æ›¸åº«ã®ã‚·ãƒ³ãƒœãƒ«ãƒžãƒƒãƒ—の日時を更新する
  -h --help                    ã“のヘルプメッセージを表示する
  -v --version                 ãƒãƒ¼ã‚¸ãƒ§ãƒ³æƒ…報を表示する
  0x%02x   @<file>      -  <file> ã‹ã‚‰ã‚ªãƒ—ションを読み込む
  ABI ãƒãƒ¼ã‚¸ãƒ§ãƒ³:                    %d
  ã‚¢ãƒ‰ãƒ¬ã‚¹: 0x  è¡Œã‚’ %s é€²ã‚ %d ã¨ã—ます
  PC ã‚’ %s åˆ†é€²ã‚ 0x%s ã¨ã—ます
  PC ã‚’ %s åˆ†é€²ã‚ 0x%s[%d] ã¨ã—ます
  PC ã‚’定数 %s åˆ†é€²ã‚ 0x%s ã¨ã—ます
  PC ã‚’定数 %s åˆ†é€²ã‚ 0x%s[%d] ã¨ã—ます
  PC ã‚’固定サイズ %s åˆ†é€²ã‚ 0x%s ã¨ã—ます
  CTL[%u]: %08x
  ã‚¯ãƒ©ã‚¹:                            %s
  å€‹æ•°: %d
  ã‚³ãƒ³ãƒ‘イル単位 @ ã‚ªãƒ•セット 0x%s:
  ã‚³ãƒ”ー
  DWARF ãƒãƒ¼ã‚¸ãƒ§ãƒ³:            %d
  DW_CFA_??? (ユーザ定義フレーム呼び出し操作: %#x)
  ãƒ‡ãƒ¼ã‚¿:                            %s
  Entry    Dir    æ™‚刻    ã‚µã‚¤ã‚º    åå‰
  ã‚¨ãƒ³ãƒˆãƒªãƒã‚¤ãƒ³ãƒˆã‚¢ãƒ‰ãƒ¬ã‚¹:            æ‹¡å¼µå‘½ä»¤ã‚³ãƒ¼ãƒ‰ %d:   ãƒ•ァイル: %lx  ãƒ•ァイル: %s ãƒ•ラグ  ãƒ•ラグ:                            0x%lx%s
 ãƒ•ラグ: %s  ãƒãƒ¼ã‚¸ãƒ§ãƒ³: %d
  ä¸€èˆ¬ã‚ªãƒ—ション:
  ç´¢å¼•: %d  Cnt: %d    'is_stmt' ã®åˆæœŸå€¤:          %d
  é•·ã•:                                %ld
  é•·ã•:                        %ld
  é•·ã•:                     %ld
  Line ãƒ™ãƒ¼ã‚¹:                 %d
  Line ç¯„囲:                   %d
  ãƒžã‚·ãƒ³:                            %s
  ãƒžã‚¸ãƒƒã‚¯:    å‘½ä»¤ã”との最大操作数:        %d
  æœ€å°å‘½ä»¤é•·:                  %d
  è£œåŠ©ãƒ˜ãƒƒãƒ€ã¯ã‚ã‚Šã¾ã›ã‚“
  ã‚¨ãƒŸãƒ¥ãƒ¬ãƒ¼ã‚·ãƒ§ãƒ³ã«é–¢ä¿‚したオプションはありません
セクションヘッダがありません
  ã“のセクション内では文字列が見つかりませんでした。  å‚™è€ƒ: ã“のセクションは再配置がありますが、このダンプには適用されていません。
 bucket数:    å€¤            ã‚µã‚¤ã‚º  ã‚¿ã‚¤ãƒ—  Bind Vis      ç´¢å¼•名
 bucket数:    å€¤   ã‚µã‚¤ã‚º  ã‚¿ã‚¤ãƒ—  Bind Vis      ç´¢å¼•名
 ç•ªå·:    ç´¢å¼•        å€¤     åå‰  ç•ªå· TAG
  ãƒ—ログラムヘッダ数:                %ld  ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãƒ˜ãƒƒãƒ€ã‚µã‚¤ã‚º:            %ld  OS/ABI:                            %s
  ã‚ªãƒ•セット      æƒ…å ±           åž‹             ã‚·ãƒ³ãƒœãƒ«å€¤    ã‚·ãƒ³ãƒœãƒ«å
  ã‚ªãƒ•セット      æƒ…å ±           åž‹             ã‚·ãƒ³ãƒœãƒ«å€¤    ã‚·ãƒ³ãƒœãƒ«å + åŠ æ•°
  .debug_info ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã®ã‚ªãƒ•セット:     0x%lx
  .debug_info å†…へのオフセット: %lx
  ã‚ªãƒ•セット:                  0x%lx
 ã‚ªãƒ•セット: %#08lx  ãƒªãƒ³ã‚¯: %u (%s)
  ã‚ªãƒšã‚³ãƒ¼ãƒ‰ %d ã¯ %d å€‹ã®å¼•数を持ちます
  ã‚ªãƒšã‚³ãƒ¼ãƒ‰ãƒ™ãƒ¼ã‚¹:            %d
  %s ç”¨ã‚ªãƒ—ション:
  DLLTOOL ã«æ¸¡ã•れるオプション:
  ãƒã‚¤ãƒ³ã‚¿ã‚µã‚¤ã‚º:           %d
  Prologue ã®é•·ã•:             %d
  æ®‹ã‚Šã¯ãã®ã¾ã¾è¨€èªžãƒ‰ãƒ©ã‚¤ãƒã«æ¸¡ã•れます
  æˆ»ã‚Šãƒ¬ã‚¸ã‚¹ã‚¿: %s
  ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãƒ˜ãƒƒãƒ€æ–‡å­—列表索引:      %ld  ã‚»ã‚°ãƒ¡ãƒ³ãƒˆã‚»ã‚¯ã‚·ãƒ§ãƒ³...
  ã‚»ã‚°ãƒ¡ãƒ³ãƒˆã‚µã‚¤ã‚º:         %d
  ã‚¨ãƒ³ãƒˆãƒª %s ã®ãƒ•ァイル名をファイル名表に設定します
  ISA ã‚’ %lu ã«è¨­å®šã—ます
  ISA ã‚’ %s ã«è¨­å®šã—ます
  åŸºæœ¬ãƒ–ロックを設定
  åˆ—å¹…ã‚’ %s ã«è¨­å®šã—ます
  epilogue_begin ã‚’ true ã«è¨­å®šã—ます
  is_stmt ã‚’ %s ã«è¨­å®šã—ます
  prologue_end ã‚’ true ã«è¨­å®šã—ます
  .debug_info ã‚»ã‚¯ã‚·ãƒ§ãƒ³é ˜åŸŸã‚µã‚¤ã‚º:    %ld
  ãƒ—ログラムヘッダサイズ:            %ld (バイト)
  ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãƒ˜ãƒƒãƒ€:                  %ld (バイト)
  ã“のヘッダのサイズ:                %ld (バイト)
  ç‰¹æ®Šå‘½ä»¤ã‚³ãƒ¼ãƒ‰ %d: ã‚¢ãƒ‰ãƒ¬ã‚¹ã‚’ %s åˆ†é€²ã‚ 0x%s ã¨ã—、  ç‰¹æ®Šå‘½ä»¤ã‚³ãƒ¼ãƒ‰ %d: ã‚¢ãƒ‰ãƒ¬ã‚¹ã‚’ %s åˆ†é€²ã‚ 0x%s[%d] ã¨ã—、 ã‚¿ã‚°        ã‚¿ã‚¤ãƒ—                       åå‰/値
  ã‚¿ã‚¤ãƒ—        ã‚ªãƒ•セット          ä»®æƒ³Addr           ç‰©ç†Addr
  ã‚¿ã‚¤ãƒ—         Offset   VirtAddr           PhysAddr           FileSiz  MemSiz   Flg Align
  ã‚¿ã‚¤ãƒ—       ã‚ªãƒ•セット ä»®æƒ³Addr   ç‰©ç†Addr   FileSiz MemSiz  Flg Align
  åž‹:                                %s
  å–り扱えないマジック番号です
  ä¸æ˜Žãªè¢«æ¼”算子付きのオペコード %d :   ä¸æ˜Žãªã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚³ãƒ³ãƒ†ã‚­ã‚¹ãƒˆ
  ã‚»ã‚¯ã‚·ãƒ§ãƒ³çµ‚了後のバージョン定義補助
  ã‚»ã‚¯ã‚·ãƒ§ãƒ³çµ‚了後のバージョン定義
  ã‚»ã‚¯ã‚·ãƒ§ãƒ³çµ‚了後の必要バージョン補助
  ã‚»ã‚¯ã‚·ãƒ§ãƒ³çµ‚了後の必要バージョン
  ãƒãƒ¼ã‚¸ãƒ§ãƒ³:                          %d
  ãƒãƒ¼ã‚¸ãƒ§ãƒ³:                        %d %s
  ãƒãƒ¼ã‚¸ãƒ§ãƒ³:                        0x%lx
  ãƒãƒ¼ã‚¸ãƒ§ãƒ³:               %d
  [-X32]       - 64 ãƒ“ットオブジェクトを無視する
  [-X32_64]    - 32 ãŠã‚ˆã³ 64 ãƒ“ットオブジェクトを受容する
  [-X64]       - 32 ãƒ“ットオブジェクトを無視する
  [-g]         - 32 ãƒ“ットの小さな書庫を作成する
  [D]          - æ—¥æ™‚、uid、gid ã« 0 (ゼロ) ã‚’使用する
  [N]          - åŒåã‚¤ãƒ³ã‚¹ã‚¿ãƒ³ã‚¹ã§ [count] ç•ªç›®ã®ã‚‚のを使う
  [番] åå‰
  [番] åå‰              ã‚¿ã‚¤ãƒ—           ã‚¢ãƒ‰ãƒ¬ã‚¹          ã‚ªãƒ•セット
  [番] åå‰              ã‚¿ã‚¤ãƒ—          ã‚¢ãƒ‰ãƒ¬ã‚¹ Off    ã‚µã‚¤ã‚º ES Flg Lk Inf Al
  [番] åå‰              åž‹              ã‚¢ãƒ‰ãƒ¬ã‚¹         Off    ã‚µã‚¤ã‚º ES Flg Lk Inf Al
  [P]          - åå‰ã®ä¸€è‡´ã‚’調べる際に完全パスを使う
  [S]          - ã‚·ãƒ³ãƒœãƒ«è¡¨ã‚’構築しない
  [T]          - è–„い書庫を作成する
  [切り詰められたデータ]
  [V]          - ãƒãƒ¼ã‚¸ãƒ§ãƒ³æƒ…報を表示する
  [a]          - [member-name] ã®å¾Œã«ãƒ•ァイルを配置する
  [b]          - [member-name] ã®å‰ã«ãƒ•ァイルを配置する ([i] ã¨åŒã˜)
  [c]          - ãƒ©ã‚¤ãƒ–ラリファイルを作成する必要があるときでも警告しない
  [f]          - æŒ¿å…¥ã•れたファイル名を切り詰める
  [o]          - æœ¬æ¥ã®æ—¥æ™‚を保持する
  [s]          - æ›¸åº«ã®ç´¢å¼•を作成する (ranlib ã‚’参照)
  [u]          - ç¾åœ¨ã®æ›¸åº«ã«å…¥ã£ã¦ã„るものより新しいファイルだけを置換する
  [v]          - å†—長に表示を行う
  d            - æ›¸åº«ã‹ã‚‰ãƒ•ァイルを削除する
  æ–°ãŸãªãƒ•ァイル表エントリの定義
  exptr: %08x fsize: %08x lnnoptr: %08x endndx: %u
  ãƒ•ラグ:         0x%04x   ã‚¤ãƒ³ãƒãƒ¼ãƒˆãƒ•ァイルオフセット:   %u
  ã‚¤ãƒ³ãƒãƒ¼ãƒˆæ–‡å­—列表: %u
  lnno: %u
  m[ab]        - æ›¸åº«å†…のファイルを移動する
  ãƒžã‚¸ãƒƒã‚¯ç•ªå·:         0x%04x (0%04o)    ã‚¤ãƒ³ãƒãƒ¼ãƒˆãƒ•ァイル数:  %u
  å†é…ç½®æ•°:        %u
  ã‚»ã‚¯ã‚·ãƒ§ãƒ³æ•°:  %d
  ã‚·ãƒ³ãƒœãƒ«æ•°:       %u
  ã‚·ãƒ³ãƒœãƒ«æ•°:   %d
  o_algndata:      %u
  o_algntext:      %u
  o_cputype:       0x%04x
  o_data_start:    0x%08x
  o_debugger:      0x%08x
  o_dsize:         0x%08x
  o_entry:         0x%08x
  o_maxdata:       0x%08x
  o_maxstack:      0x%08x
  o_mflag (magic): 0x%04x 0%04o
  o_modtype:       0x%04x  o_snbss:         0x%04x
  o_sndata:        0x%04x
  o_snentry:       0x%04x
  o_snloader:      0x%04x
  o_sntext:        0x%04x
  o_sntoc:         0x%04x
  o_text_start:    0x%08x
  o_toc:           0x%08x
  o_tsize:         0x%08x
  o_vstamp:        0x%04x
  ã‚ªãƒ—ションヘッダサイズ:    %d
  p            - æ›¸åº«å†…のファイルを表示する
  q[f]         - æ›¸åº«ã¸ãƒ•ァイルを素早く追加する
  r[ab][f][u]  - æ›¸åº«å†…の既存ファイルを置換する。存在しない場合は新規にファイルを挿入する
  s            - ranlib ã¨ã—て動作する
  scnlen: %08x  scnlen: %08x  nreloc: %-6u
  scnlen: %08x  nreloc: %-6u  nlinno: %-6u
  scnsym: %-8u  æ–‡å­—列表長:  %u
  æ–‡å­—列表オフセット:  %u
  ã‚·ãƒ³ãƒœãƒ«ã‚ªãƒ•セット:   0x%08x
  t            - æ›¸åº«ã®å†…容を表示する
  æ™‚刻および日付: 0x%08x  -   vaddr    sec    sz typ   sym
  ãƒãƒ¼ã‚¸ãƒ§ãƒ³:           %u
  x[o]         - æ›¸åº«ã‹ã‚‰ãƒ•ァイルを抽出する
 # åå‰     paddr    vaddr    ã‚µã‚¤ã‚º   scnptr   relptr   lnnoptr  nrel  nlnno
 %-6u  %3u %3u  %s %s ãƒã‚¤ãƒˆãƒ–ロック:  (ファイルオフセット: 0x%lx) (バイト)
 (バイト)
  ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãƒ˜ãƒƒãƒ€å§‹ç‚¹:               (バイト)
 (%08x ã§ã‚¿ã‚°ãŒçµ‚了しました)
 (間接文字列、オフセット: 0x%s): %s (文字列はありません):
 (開始 == çµ‚了) (開始 > çµ‚了) (文字列サイズ: %08x):
 <%d><%lx>: ...
 <%d><%lx>: çœç•¥ç•ªå·: %lu <破損: %14ld> <破損: ç¯„囲外> ã‚¢ãƒ‰ãƒ¬ã‚¹:  ã‚¢ãƒ‰ãƒ¬ã‚¹: 0x ä¸‹è¨˜ã®ã‚¹ã‚¤ãƒƒãƒã®ä¸­ã§æœ€ä½Žä¸€ã¤ã¯æŒ‡å®šã—なければいけません:
 æ­£æº– GP å€¤: ã‚¢ãƒ‰ãƒ¬ã‚¹ã‚’行番号/ファイル名の組に変換します。
 ã‚ªãƒ–ジェクトファイルを NetWare ãƒ­ãƒ¼ãƒ€ãƒ–ルモジュールに変換します
 ãƒã‚¤ãƒŠãƒªãƒ•ァイルをコピーします。場合によっては処理中に形式を変換します。
 DW_MACINFO_define - è¡Œç•ªå· : %d ãƒžã‚¯ãƒ­ : %s
 DW_MACINFO_end_file
 DW_MACINFO_start_file - è¡Œç•ªå·: %d ãƒ•ァイル番号: %d
 DW_MACINFO_undef - è¡Œç•ªå· : %d ãƒžã‚¯ãƒ­ : %s
 DW_MACINFO_vendor_ext - å®šæ•° : %d æ–‡å­—列 : %s
 ELF å½¢å¼ã®ãƒ•ァイルの内容に関する情報を表示します
 ã‚ªãƒ–ジェクトファイル <file(s)> ã®æƒ…報を表示する
[file(s)] (デフォルトは標準入力) å†…の表示可能な文字列を表示します
 ãƒã‚¤ãƒŠãƒªãƒ•ァイル内にあるセクションのサイズを表示します
エントリ:
 ã‚¢ã‚¯ã‚»ã‚¹é€Ÿåº¦ã‚’向上させるために書庫に索引を生成します
大域エントリ:
コマンドラインでアドレスが指定されない場合、標準入力から読み取ります
入力ファイルが指定されない場合、 a.out ã§ã‚ると仮定されます
   é•·ã•  å€‹æ•°        å æœ‰çއ      ç¯„囲
 [file(s)] ã«å«ã¾ã‚Œã‚‹ã‚·ãƒ³ãƒœãƒ«ã‚’一覧表示します (デフォルトは a.out)。
局所エントリ:
 ãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ«ãƒã‚¤ãƒ³ã‚¿ (GNU æ‹¡å¼µ)
 å‚™è€ƒ: ã“のセクションには再配置がありますが、このダンプには適用されていません。
 åå‰ (長さ: %u):  ç„¡ã—
番号: åå‰                           å¢ƒç•Œã¾ã§    ãƒ•ラグ
 ã‚ªãƒ•セット æƒ…å ±    åž‹                  ã‚·ãƒ³ãƒœãƒ«å€¤  ã‚·ãƒ³ãƒœãƒ«å
 ã‚ªãƒ•セット æƒ…å ±    åž‹                  ã‚·ãƒ³ãƒœãƒ«å€¤  ã‚·ãƒ³ãƒœãƒ«å + åŠ æ•°
 ã‚ªãƒ•セット æƒ…å ±    åž‹              ã‚·ãƒ³ãƒœãƒ«å€¤ ã‚·ãƒ³ãƒœãƒ«å
 ã‚ªãƒ•セット æƒ…å ±    åž‹              ã‚·ãƒ³ãƒœãƒ«å€¤ ã‚·ãƒ³ãƒœãƒ«å + åŠ æ•°
 ã‚ªãƒ—ション:
  -a --all               -h -l -S -s -r -d -V -A -I ã¨åŒæ§˜
  -h --file-header       ELF ãƒ•ァイルヘッダを表示する
  -l --program-headers   ãƒ—ログラムヘッダを表示する
     --segments          --program-headers ã®åˆ¥å
  -S --section-headers   ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã®ãƒ˜ãƒƒãƒ€ã‚’表示する
     --sections          --section-headers ã®åˆ¥å
  -g --section-groups    ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚°ãƒ«ãƒ¼ãƒ—を表示する
  -t --section-details   ã‚»ã‚¯ã‚·ãƒ§ãƒ³è©³ç´°ã‚’表示する
  -e --headers           -h -l -S ã¨åŒæ§˜
  -s --syms              ã‚·ãƒ³ãƒœãƒ«è¡¨ã‚’表示する
     --symbols           --syms ã®åˆ¥å
  --dyn-syms             å‹•的シンボル表を表示する
  -n --notes             core å‚™è€ƒã‚’表示する (存在する場合)
  -r --relocs            å†é…ç½®ã‚’表示する (存在する場合)
  -u --unwind            å·»ãæˆ»ã— (unwind) æƒ…報を表示する (存在する場合)
  -d --dynamic           å‹•的セクションを表示する (存在する場合)
  -V --version-info      ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚’表示する (存在する場合)
  -A --arch-specific     ã‚¢ãƒ¼ã‚­ãƒ†ã‚¯ãƒãƒ£å›ºæœ‰æƒ…報を表示する (ある物全て)
  -c --archive-index     æ›¸åº«ã®ã‚·ãƒ³ãƒœãƒ«/ファイル索引を表示する
  -D --use-dynamic       ã‚·ãƒ³ãƒœãƒ«ã‚’表示するときに動的セクション情報を使用する
  -x --hex-dump=<number|name>
                         ãƒã‚¤ãƒˆã¨ã—てセクション <number|name> ã®å†…容をダンプする
  -p --string-dump=<number|name>
                         æ–‡å­—列としてセクション <number|name> ã®å†…容を表示する
  -R --relocated-dump=<number|name>
                         å†é…ç½®ã—たバイトとしてセクション <number|name> ã®å†…容を表示する
  -w[lLiaprmfFsoRt] ã¾ãŸã¯
  --debug-dump[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,
               =frames-interp,=str,=loc,=Ranges,=pubtypes,
               =trace_info,=trace_abbrev,=trace_aranges]
                         DWARF2 ãƒ‡ãƒãƒƒã‚°ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã®å†…容を表示する
COFF ã‚ªãƒ–ジェクトファイルを解釈し人間が読みやすい形式で表示します。
シンボルおよびセクションをファイルから取り除きます。
予約されたエントリ:
 ã‚ªãƒ—ション:
 ã‚ªãƒ—ション:
  -A|-B     --format={sysv|berkeley}  å‡ºåŠ›å½¢å¼ã‚’é¸æŠžã™ã‚‹ (デフォルトは %s)
  -o|-d|-x  --radix={8|10|16}         æ•°å­—を八進、十進または十六進数で表示する
  -t        --totals                  åˆè¨ˆã‚µã‚¤ã‚ºã‚’表示する (berkeley ã®ã¿)
            --common                  *COM* ã‚·ãƒ³ãƒœãƒ«ã®åˆè¨ˆã‚µã‚¤ã‚ºã‚’表示する
            --target=<bfdname>        ãƒã‚¤ãƒŠãƒªãƒ•ァイル形式を指定する
            @<file>                   ã‚ªãƒ—ションを <file> ã‹ã‚‰èª­ã¿è¾¼ã‚€
  -h        --help                    ã“の情報を表示する
  -v        --version                 ãƒ—ログラムのバージョン番号を表示する
 
オプションは以下の通りです:
  -I --input-target=<bfdname>   å…¥åŠ›ãƒã‚¤ãƒŠãƒªå½¢å¼ã‚’è¨­å®šã™ã‚‹
  -O --output-target=<bfdname>  å‡ºåŠ›ãƒã‚¤ãƒŠãƒªå½¢å¼ã‚’è¨­å®šã™ã‚‹
  -T --header-file=<file>       <file> for NLM ãƒ˜ãƒƒãƒ€æƒ…報のために <file> ã‚’読み込む
  -l --linker=<linker>          ãƒªãƒ³ã‚¯ã®ãŸã‚ã« <linker> ã‚’使用する
  -d --debug                    ãƒªãƒ³ã‚«ã®ã‚³ãƒžãƒ³ãƒ‰ãƒ©ã‚¤ãƒ³ã‚’標準エラー出力に表示する
  @<file>                       <file> ã‹ã‚‰ã‚ªãƒ—ションを読み込む
  -h --help                     ã“の情報を表示する
  -v --version                  ãƒ—ログラムのバージョンを表示する
オプション:
  -a - --all                ãƒ‡ãƒ¼ã‚¿ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã ã‘でなくファイル全体を走査する
  -f --print-file-name      å„文字列を表示する前にファイル名を表示する
  -n --bytes=[number]       Locate & print any NUL-terminated sequence of at
  -<number>                   least [number] characters (default 4).
  -t --radix={o,d,x}        æ–‡å­—列の位置を基数 8, 10 ã¾ãŸã¯ 16 ã§è¡¨ç¤ºã™ã‚‹
  -o                        --radix=o ã®åˆ¥å
  -T --target=<BFDNAME>     ãƒã‚¤ãƒŠãƒªãƒ•ァイル形式を指定する
  -e --encoding={s,S,b,l,B,L} æ–‡å­—サイズとエンディアンを指定する:
                            s = 7-bit, S = 8-bit, {b,l} = 16-bit, {B,L} = 32-bit
  @<file>                   <file> ã‹ã‚‰ã‚ªãƒ—ションを読み込む
  -h --help                 ã“の情報を表示する
  -v -V --version           ãƒ—ログラムのバージョン番号を表示する
オプション:
  -a --ascii_in                å…¥åŠ›ãƒ•ã‚¡ã‚¤ãƒ«ã‚’ ASCII ãƒ•ァイルとして読み込む
  -A --ascii_out               ãƒã‚¤ãƒŠãƒªãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’ ASCII ã¨ã—て書き込む
  -b --binprefix               ä¸€æ„æ€§ã‚’保つために .bin ãƒ•ァイル名の接頭辞として
                                   .mc ã® filename_ ã‚’付加する
  -c --customflag              ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã«ã‚«ã‚¹ã‚¿ãƒ ãƒ•ラグを設定する
  -C --codepage_in=<val>       mc ãƒ†ã‚­ã‚¹ãƒˆãƒ•ァイル読み込み時にコードページを設定する
  -d --decimal_values          ãƒ†ã‚­ã‚¹ãƒˆãƒ•ァイルに書き込む値を十進数で表す
  -e --extension=<extension>   ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆãƒ˜ãƒƒãƒ€ãƒ•ァイルで使用される拡張子を設定する
  -F --target <target>         å‡ºåŠ›ã‚¿ãƒ¼ã‚²ãƒƒãƒˆã®ã‚¨ãƒ³ãƒ‡ã‚£ã‚¢ãƒ³ã‚’æŒ‡å®šã™ã‚‹
  -h --headerdir=<directory>   ãƒ˜ãƒƒãƒ€ã®ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ¼ã‚’設定する
  -u --unicode_in              å…¥åŠ›ãƒ•ã‚¡ã‚¤ãƒ«ã‚’ UTF16 ãƒ•ァイルとして読み込む
  -U --unicode_out             ãƒã‚¤ãƒŠãƒªãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’ UFT16 ã¨ã—て書き込む
  -m --maxlength=<val>         ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸é•·ã®æœ€å¤§è¨±å®¹å€¤ã‚’設定する
  -n --nullterminate           æ–‡å­—列の区切りとして 0 ã‚’自動的に追加する
  -o --hresult_use             çŠ¶æ…‹ã‚³ãƒ¼ãƒ‰å®šç¾©ã®ä»£ã‚ã‚Šã« HRESULT å®šç¾©ã‚’使用する
  -O --codepage_out=<val>      ãƒ†ã‚­ã‚¹ãƒˆãƒ•ァイルを書き込む時のコードページを設定する
  -r --rcdir=<directory>       rc ãƒ•ァイルのエクスポートディレクトリーを設定する
  -x --xdbg=<directory>        ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ID ã¨ã‚·ãƒ³ãƒœãƒ«åã‚’対応付けるための .dbg C
                                 ã‚¤ãƒ³ã‚¯ãƒ«ãƒ¼ãƒ‰ãƒ•ァイルを作成する場所を指定する
オプション:
  -a, --debug-syms       ãƒ‡ãƒãƒƒã‚°ç”¨ã®ã¿ã®ã‚·ãƒ³ãƒœãƒ«ã‚’表示する
  -A, --print-file-name  å„シンボルの前に入力ファイルの名前を表示する
  -B                     --format=bsd ã¨åŒæ§˜
  -C, --demangle[=STYLE] ä¸‹ä½ãƒ¬ãƒ™ãƒ«ã®ã‚·ãƒ³ãƒœãƒ«åã‚’利用者レベルのシンボル名にデコードする
                          STYLE ã‚’指定する場合は `auto' (デフォルト),
                          `gnu', `lucid', `arm', `hp', `edg', `gnu-v3', `java'
                          ã¾ãŸã¯ `gnat'
      --no-demangle      ä¸‹ä½ãƒ¬ãƒ™ãƒ«ã®ã‚·ãƒ³ãƒœãƒ«ã‚’名前復元 (demangle) ã—ない
  -D, --dynamic          é€šå¸¸ã‚·ãƒ³ãƒœãƒ«ã®ä»£ã‚ã‚Šã«å‹•的シンボルを表示する
      --defined-only     å®šç¾©æ¸ˆã¿ã®ã‚·ãƒ³ãƒœãƒ«ã®ã¿è¡¨ç¤ºã™ã‚‹
  -e                     (無視される)
  -f, --format=FORMAT    å‡ºåŠ›å½¢å¼ã‚’ FORMAT ã«ã™ã‚‹ã€‚FORMAT ã¯ `bsd',
                           `sysv' ã¾ãŸã¯ `posix'。  ãƒ‡ãƒ•ォルトは `bsd'
  -g, --extern-only      å¤–部シンボルのみ表示する
  -l, --line-numbers     å„シンボルに対してファイル名と行番号を探すために
                           ãƒ‡ãƒãƒƒã‚°æƒ…報を使用する
  -n, --numeric-sort     ã‚·ãƒ³ãƒœãƒ«ã‚’アドレスで数値的にソートする
  -o                     -A ã¨åŒæ§˜
  -p, --no-sort          ã‚·ãƒ³ãƒœãƒ«ã‚’ソートしない
  -P, --portability      --format=posix ã¨åŒæ§˜
  -r, --reverse-sort     ã‚½ãƒ¼ãƒˆã®é †ç•ªã‚’逆にする
オプション:
  -h --help        ã“の情報を表示する
  -v --version     ãƒ—ログラムのバージョン番号を表示する
オプション:
  -i --input=<file>            å…¥åŠ›ãƒ•ã‚¡ã‚¤ãƒ«åã‚’ file ã«ã™ã‚‹
  -o --output=<file>           å‡ºåŠ›ãƒ•ã‚¡ã‚¤ãƒ«åã‚’ file ã«ã™ã‚‹
  -J --input-format=<format>   å…¥åŠ›å½¢å¼ã‚’ format ã«æŒ‡å®šã™ã‚‹
  -O --output-format=<format>  å‡ºåŠ›å½¢å¼ã‚’ format ã«æŒ‡å®šã™ã‚‹
  -F --target=<target>         COFF ã‚¿ãƒ¼ã‚²ãƒƒãƒˆã‚’ target ã«æŒ‡å®šã™ã‚‹
     --preprocessor=<program>  rc ãƒ•ァイルを前処理するために使用するプログラム
     --preprocessor-arg=<arg>  å‰å‡¦ç†ç³»ã«è¿½åŠ ã§æ¸¡ã™å¼•æ•°ã‚’æŒ‡å®šã™ã‚‹
  -I --include-dir=<dir>       rc ãƒ•ァイルを前処理する時に dir ã‚’ディレクトリー
                                 ã«å«ã‚ã‚‹
  -D --define <sym>[=<val>]    rc ãƒ•ァイルを前処理する際に SYM ã‚’定義する
  -U --undefine <sym>          rc ãƒ•ァイルを前処理する際に SYM ã‚’未定義にする
  -v --verbose                 å†—é•· - å®Ÿè¡Œã—ていることを表示する
  -c --codepage=<codepage>     ãƒ‡ãƒ•ォルトコードページを指定する
  -l --language=<val>          rc ãƒ•ァイルを読み出すときの言語を設定する
     --use-temp-file           å‰å‡¦ç†ç³»ã®å‡ºåŠ›ã‚’èª­ã¿è¾¼ã‚€æ™‚ã« popen ã®ä»£ã‚ã‚Šã«ä¸€æ™‚
                                 ãƒ•ァイルを使用する
     --no-use-temp-file        popen ã‚’使用する (デフォルト)
 ã‚ªãƒ—ション:
  -q --quick       (廃止 - ç„¡è¦–される)
  -n --noprescan   Do not perform a scan to convert commons into defs
  -d --debug       ä½•を実行しているかに関して情報を表示する
  @<file>          ã‚ªãƒ—ションを <file> ã‹ã‚‰èª­ã¿è¾¼ã‚€
  -h --help        ã“の情報を表示する
  -v --version     ãƒ—ログラムのバージョン番号を表示する
 ã‚ªãƒ—ションは以下の通りです:
  @<file>                      <file> ã‹ã‚‰ã‚ªãƒ—ションを読み込む
オプションは以下の通りです:
  @<file>                ã‚ªãƒ—ションを <file> ã‹ã‚‰èª­ã¿è¾¼ã‚€
  -b --target=<bfdname>  ãƒã‚¤ãƒŠãƒªãƒ•ァイル形式を設定する
  -e --exe=<executable>  å…¥åŠ›ãƒ•ã‚¡ã‚¤ãƒ«åã‚’è¨­å®šã™ã‚‹ (デフォルトは a.out)
  -i --inlines           ã‚¤ãƒ³ãƒ©ã‚¤ãƒ³åŒ–された関数を巻き戻す
  -j --section=<name>    ã‚¢ãƒ‰ãƒ¬ã‚¹ã®ä»£ã‚ã‚Šã«ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã®ç›¸å¯¾ã‚ªãƒ•セットを読み込む
  -s --basenames         ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªåã‚’取り除く
  -f --functions         é–¢æ•°åã‚’表示する
  -C --demangle[=style]  é–¢æ•°ã®åå‰ã‚’復元 (demangle) ã™ã‚‹
  -h --help              ä»Šè¦‹ã¦ã„る情報を表示する
  -v --version           ãƒ—ログラムのバージョンを表示する
 
 ã‚ªãƒ—ションは以下の通りです:
  @<file>                <file> ã‹ã‚‰ã‚ªãƒ—ションを読み込む
  -h --help              ã“のヘルプ情報を表示する
  -v --version           ãƒ—ログラムのバージョンを表示する
 
 åˆ‡ã‚Šè©°ã‚ã‚‰ã‚ŒãŸ .text ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã§ã™
 æ‰±ãˆãªã„バージョンです
ELF ãƒ•ァイルの ELF ãƒ˜ãƒƒãƒ€ã‚’更新します
 [DW_AT_frame_base ç„¡ã—]アドレスがセクション長を超えています
 è¡Œã‚’ %s åˆ†é€²ã‚ %d ã¨ã—ます
 (オフセット 0x%lx) ã¯ %lu å€‹ã®ã‚¨ãƒ³ãƒˆãƒªã‹ã‚‰æ§‹æˆã•れています:
誤ったシンボル索引: %08lx cl:  ã‚³ãƒžãƒ³ãƒ‰ã«é–¢ä¿‚した修飾子:
 ã‚³ãƒžãƒ³ãƒ‰:
 ã‚¨ãƒŸãƒ¥ãƒ¬ãƒ¼ã‚·ãƒ§ãƒ³ã«é–¢ä¿‚したオプション: 
 fixparms: %-3u  floatparms: %-3u  parm_on_stk: %u
 ftype: %02x  ä¸€èˆ¬çš„な修飾子:
 h: parm=%08x sn=%04x al: 2**%u hand_mask_offset: 0x%08x
 has_ctl: %u, tocless: %u, fp_pres: %u, log_abort: %u, int_hndl: %u
 name_pres: %u, uses_alloca: %u, cl_dis_inv: %u, saves_cr: %u, saves_lr: %u
 ã‚¿ã‚°ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“
CTL ã‚¢ãƒ³ã‚«ãƒ¼ã®æ•°: %u
 ä»»æ„æŒ‡å®š:
 parminfo: 0x%08x
 ãƒ—ログラムインタプリタ stores_bc: %u, fixup: %u, fpr_saved: %-2u, spare3: %u, gpr_saved: %-2u
 ã‚¿ã‚°ä½ç½® %08x
 tb_offset: 0x%08x (start=0x%08x)
 typ:  ã‚¿ã‚¤ãƒ—: %lx, åå‰ã®ã‚µã‚¤ã‚º: %08lx, èª¬æ˜Žã®ã‚µã‚¤ã‚º: %08lx
 ãƒãƒ¼ã‚¸ãƒ§ãƒ³: %u, è¨€èªž: %u, global_link: %u, is_eprol: %u, has_tboff: %u, int_proc: %u
#行 %d %08x  %c   %c  %-2u %2d %-8.8s %08x %08x %08x %08x %08x %08x %-5d %-5d
%ld: å‰æ–¹ã«é–¢æ•°ãŒãªã„ .bf ãŒã‚ります%ld: äºˆæœŸã—ない .ef ã§ã™
%lu
%s %s%c0x%s ã¯ä½¿ã‚ã‚Œã‚‹ã“とがありません%s ã‚³ãƒ”ーと削除の両方が指定されました%s ã¯ã‚¹ãƒ†ãƒ¼ã‚¿ã‚¹ %d ã§çµ‚了しました%s ã«ã¯æ›¸åº«ã®ç´¢å¼•がありません
%s ã¯ãƒ©ã‚¤ãƒ–ラリではありません%s ã¯æœ‰åŠ¹ãªæ›¸åº«ã§ã¯ã‚ã‚Šã¾ã›ã‚“%s ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãƒ‡ãƒ¼ã‚¿%s: %s: ã‚¢ãƒ‰ãƒ¬ã‚¹ãŒå¢ƒç•Œã‚’越えています%s: å…¥åŠ›æ›¸åº« %s ã‚’開けません
%s: å‡ºåŠ›æ›¸åº« %s ã‚’開けません
%s: ã‚¨ãƒ©ãƒ¼: %s: ELF ãƒ˜ãƒƒãƒ€ã®èª­ã¿è¾¼ã¿ã«å¤±æ•—しました
%s: ãƒ•ァイルヘッダの読込みが失敗しました
%s: ãƒ•ァイルのマジック番号の読み出しに失敗しました
%s: ELF ãƒ˜ãƒƒãƒ€ã®æŽ¢æŸ» (seek) ã«å¤±æ•—しました
%s: ELF ãƒ˜ãƒƒãƒ€ã®æ›´æ–°ã«å¤±æ•—しました: %s
%s: å½¢å¼ã‚’照合します:%s: ã‚·ãƒ³ãƒœãƒ« "%s" ã®å†å®šç¾©ã§ã™%s: ELF ãƒ•ァイルではありません - é–‹å§‹ã«ã‚るマジックバイトが異なります
%s: ã‚¤ãƒ¡ãƒ¼ã‚¸å '%s' ã‹ã‚‰ãƒ‘スの要素が取り除かれました。%s: ã‚·ãƒ³ãƒœãƒ« "%s" ä½•度か再定義されたターゲットです%s: ä¸€è‡´ã—ない EI_CLASS ã§ã™: %d ã¯ %d ã§ã¯ã‚りません
%s: ä¸€è‡´ã—ない EI_OSABI ã§ã™: %d ã¯ %d ã§ã¯ã‚りません
%s: ä¸€è‡´ã—ない e_machine ã§ã™: %d ã¯ %d ã§ã¯ã‚りません
%s: ä¸€è‡´ã—ない e_type ã§ã™: %d ã¯ %d ã§ã¯ã‚りません
%s: ã‚µãƒãƒ¼ãƒˆã•れない EI_VERSION ã§ã™: %d ã¯ %d ã§ã¯ã‚りません
%s: è­¦å‘Š: %s: èª¤ã£ãŸæ›¸åº«ãƒ•ァイル名です
%s: èª¤ã£ãŸç•ªå·ã§ã™: %s%s: PE å­ã‚·ã‚¹ãƒ†ãƒ å†…に誤ったバージョンがあります%s: ãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ«ãƒ•ァイル %s ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“
%s: ãƒ•ァイル %s ã‚’開けません
%s: ã‚»ã‚¯ã‚·ãƒ§ãƒ³ %s ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“%s: ã‚¢ãƒ¼ã‚«ã‚¤ãƒ–からアドレスを取得できません%s: æ™‚刻を設定できません: %s%s: æœ‰åŠ¹ãªæ›¸åº«ãƒ˜ãƒƒãƒ€ã‚’è¦‹ã¤ã‘ã‚‰ã‚Œã¾ã›ã‚“ã§ã—ãŸ
%s: ç´¢å¼•の終了前にシンボル表の終了に到達しました
%s: %s ã®å®Ÿè¡Œã«å¤±æ•—しました: %s: æ›¸åº«ãƒ˜ãƒƒãƒ€ã®èª­ã¿è¾¼ã¿ã«å¤±æ•—しました
%s: æ›¸åº«ç´¢å¼•の後に続く書庫ヘッダの読み込みに失敗しました
%s: æ›¸åº«ç´¢å¼•の読み込みに失敗しました
%s: æ›¸åº«ã®ã‚·ãƒ³ãƒœãƒ«è¡¨ç´¢å¼•の読み込みに失敗しました
%s: é•·ã„シンボル名文字列表の読み込みに失敗しました
%s: æ›¸åº«å†…のオブジェクトファイルの開始位置への戻り方向の走査 (seek back) ã«å¤±æ•—しました
%s: æ›¸åº«ã®ãƒ¡ãƒ³ãƒã®æŽ¢æŸ» (seek) ã«å¤±æ•—しました
%s: æ›¸åº«ã®ãƒ¡ãƒ³ãƒã®æŽ¢æŸ» (seek) ã«å¤±æ•—しました。
%s: æœ€åˆã®æ›¸åº«ãƒ˜ãƒƒãƒ€ã¸ã®æŽ¢æŸ» (seek) ã«å¤±æ•—しました
%s: æ¬¡ã®æ›¸åº«ãƒ˜ãƒƒãƒ€ã¸ã®æŽ¢æŸ» (seek) ã«å¤±æ•—しました
%s: æ¬¡ã®ãƒ•ァイル名の探査 (seek) ã«å¤±æ•—しました
%s: æ›¸åº«ã‚·ãƒ³ãƒœãƒ«è¡¨ã®ã‚¹ã‚­ãƒƒãƒ—に失敗しました
%s: ãƒ•ァイル %s ã¯æ›¸åº«ã§ã¯ã‚りません
%s: fread(3) ãŒå¤±æ•—しました%s: %lu ã¸ã®æŽ¢æŸ» (fseek) ãŒå¤±æ•—しました: %s%s: --heap ã«å¯¾ã™ã‚‹ç„¡åŠ¹ãªç¢ºå®šå€¤ã§ã™%s: --stack ã«å¯¾ã™ã‚‹ç„¡åŠ¹ãªç¢ºå®šå€¤ã§ã™%s: ç„¡åŠ¹ãªå‡ºåŠ›å½¢å¼ã§ã™%s: ç„¡åŠ¹ãªåŸºæ•°ã§ã™%s: --heap ã«å¯¾ã™ã‚‹ç„¡åŠ¹ãªäºˆç´„å€¤ã§ã™%s: --stack ã«å¯¾ã™ã‚‹ç„¡åŠ¹ãªäºˆç´„å€¤ã§ã™%s: æ›´æ–°ã™ã¹ãæ›¸åº«ã®ãƒžãƒƒãƒ—がありません%s: é–‹ã„ている書庫がありません
%s: å‡ºåŠ›ç”¨æ›¸åº«ãŒé–‹ã‹ã‚Œã¦ã„ã¾ã›ã‚“
%s: å‡ºåŠ›æ›¸åº«ãŒã¾ã æŒ‡å®šã•ã‚Œã¦ã„ã¾ã›ã‚“
%s: èªè­˜ã•れたデバッグ情報はありません%s: ãƒªã‚½ãƒ¼ã‚¹ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãŒæœ‰ã‚Šã¾ã›ã‚“%s: ã‚·ãƒ³ãƒœãƒ«ãŒã‚りません%s: å‹•的オブジェクトではありません%s: ãƒã‚¤ãƒŠãƒªãƒ‡ãƒ¼ã‚¿ãŒä¸ååˆ†ã§ã™%s: ãƒ‡ãƒãƒƒã‚°æƒ…報の出力に失敗しました%s: %lu å€‹ã®èª­è¾¼ã¿ã§ %lu ãŒè¿”ってきました%s: èª­è¾¼ã¿: %s%s: ã‚µãƒãƒ¼ãƒˆã•れているアーキテクチャ:%s: ã‚µãƒãƒ¼ãƒˆã•れているフォーマット:%s: ã‚µãƒãƒ¼ãƒˆã•れているターゲット:%s: ã‚·ãƒ³ãƒœãƒ«è¡¨ç´¢å¼•にシンボルが残っていますが、索引表に関連したエントリがありません
%s: æ›¸åº«ã«ç´¢å¼•はありますが、シンボルがありません
%s: æ›¸åº«ã®ç´¢å¼•が空です
%s: æ›¸åº«ã®ç´¢å¼•からは %ld å€‹ã®ã‚¨ãƒ³ãƒˆãƒªãŒã‚るはずですが、ヘッダのサイズが小さすぎます
%s: ç´¢å¼•が無いため、索引のダンプを行うことが出来ません
%s: äºˆæœŸã—ない EOF ã§ã™%s: è­¦å‘Š: %s: è­¦å‘Š: å…±æœ‰ãƒ©ã‚¤ãƒ–ラリは未初期化データを持つことができません%s: è­¦å‘Š: æ§‹é€ ä½“のフィールド `%s' ã®ã‚µã‚¤ã‚ºãŒä¸æ˜Žã§ã™%s:%d: ã“の行で見つかったゴミを無視しています%s:%d: è¡Œæœ«ã«ã‚´ãƒŸãŒå­˜åœ¨ã—ます%s:%d: æ–°ã—いシンボル名がありません%s:%d: æ—©ã™ãŽã‚‹ãƒ•ァイル終端 (EOF) ã§ã™%u'%s''%s' ã¯æ­£å¸¸ãªãƒ•ァイルではありません
'%s': ãã®ã‚ˆã†ãªãƒ•ァイルはありません'%s': ãã®ã‚ˆã†ãªãƒ•ァイルはありません
(%s(フレーム情報内の DW_OP_GNU_implicit_pointer)(フレーム情報内の DW_OP_call_ref)(ROMAGIC: èª­ã¿å–り専用共有 text ã‚»ã‚°ãƒ¡ãƒ³ãƒˆã§ã™)(TOCMAGIC: èª­ã¿è¾¼ã¿å°‚用 text ã‚»ã‚°ãƒ¡ãƒ³ãƒˆãŠã‚ˆã³ TOC ã§ã™)(不明な位置命令)(ユーザ定義位置命令)(WRMAGIC: æ›¸ãè¾¼ã¿å¯èƒ½ãª text ã‚»ã‚°ãƒ¡ãƒ³ãƒˆã§ã™)(間違ったオフセット: %u)(ベースアドレス)
(inline å®£è¨€ã•れ inline åŒ–)(inline å®£è¨€ã•れたが無視された)(inline åŒ–)(location list)(非 inline åŒ–)(開始 == çµ‚了)(開始 > çµ‚了)*無効*, <不明>, åŸºåº•: , ã‚»ãƒžãƒ•ã‚©: , å†é…ç½®å¯èƒ½, å†é…ç½®å¯èƒ½ãƒ©ã‚¤ãƒ–ラリ, ä¸æ˜Žãª ABI, ä¸æ˜Žãª CPU, ä¸æ˜Žãª ISA, ä¸æ˜Žãª v850 ã‚¢ãƒ¼ã‚­ãƒ†ã‚¯ãƒãƒ£ã®å¤‰ç¨®,%s,%s)
.bss.data%2$s ã‚»ã‚¯ã‚·ãƒ§ãƒ³å†…オフセット 0x%1$lx ã® .debug_info ãŒ CU ãƒ˜ãƒƒãƒ€ã‚’指していません。
.text16-バイト
2 ãƒã‚¤ãƒˆ
2 ã®è£œæ•°ã€ãƒ“ッグエンディアン2 ã®è£œæ•°ã€ãƒªãƒˆãƒ«ã‚¨ãƒ³ãƒ‡ã‚£ã‚¢ãƒ³4 ãƒã‚¤ãƒˆ
4-バイト
8-バイト
8-バイトおよび %d-バイトまでの拡張
末端の SP ã‚’除き 8-バイト
:
  ã‚·ãƒ³ãƒœãƒ«ã¯ã‚りません
: é‡è¤‡ã—た値です
: ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã§ã‚るべきです
: æœ«å°¾è¦ç´ ã§ã‚るべきです
<リストの終端>
<OS å›ºæœ‰>: %d<破損した文字列表索引: %3ld><破損: %14ld><破損: %19ld><破損: %9ld><破損: %ld>
<破損><.debug_str ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãŒã‚りません><名前無し><無し><オフセットが大きすぎます><その他>: %x<プロセッサ固有>: %d<文字列表索引: %3ld><不明な加数: %lx><不明: %lx><不明: %x><不明><不明>: %d<不明>: %lx<不明>: %x<不明>: 0x%x@%08xコードページがスイッチ `%s' ãŠã‚ˆã³ UTF16 ã¨ã§æŒ‡å®šã•れています。
出力ファイルにエクスポートを追加しました出力ファイルにエクスポートを追加していますアドレスアプリケーション
アプリケーションまたはリアルタイム
属性セクション: %s
監査ライブラリ補助ヘッダ:
補助ライブラリBCD æµ®å‹•小数型はサポートされませんBFD ãƒ˜ãƒƒãƒ€ãƒ•ァイルバージョン %s
グループセクション `%s' å†…で誤った sh_info ã§ã™
グループセクション `%s' å†…で誤った sh_link ã§ã™
不正なスタブです: %s
ベアメタル C6000バイナリ %s ã®å†…容:
.debug_info ã‚»ã‚¯ã‚·ãƒ§ãƒ³å†…オフセット %lx ã§èª¤ã£ãŸ end-of-siblings ãƒžãƒ¼ã‚«ãƒ¼ãŒæ¤œå‡ºã•れました
C++ åŸºåº•クラスが定義されていませんC++ åŸºåº•クラスがコンテナ内に見つかりませんC++ ãƒ‡ãƒ¼ã‚¿ãƒ¡ãƒ³ãƒãŒã‚³ãƒ³ãƒ†ãƒŠå†…に見つかりませんC++ ãƒ‡ãƒ•ォルト値が関数内にありませんC++ ã‚ªãƒ–ジェクトがフィールドを持っていませんC++ å‚照がポインタではありませんC++ å‚照が見つかりませんC++ static virtual ãƒ¡ã‚½ãƒƒãƒ‰ã§ã™CORE (コアファイル)オフセット %s ã«ã‚ã‚‹ CU ãŒå£Šã‚Œã¦ã„るか、サポートしないバージョン番号です: %d
CU: %s/%s:
CU: %s:
.lib ãƒ•ァイルを作成できません: %s: %sセクション後の隙間を埋められませんLIBRARY ã‚„ NAME ã‚’持てません.lib ãƒ•ァイルを開けません: %s: %s定義ファイルを開けません: %sファイル %s ã‚’開けません
プログラムヘッダ無しに仮想アドレスを解釈できません。
書庫ファイルから mcore-elf dll ã‚’生成できません: %sコードアドレスが位置依存です
コードアドレスが位置非依存です
設定ファイル%s ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã®å†…容:
 
セクション %s ã®å†…容:%s ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã®å†…容:
%s ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã®å†…容:
 
COFF ã‚ªãƒ–ジェクトファイルを SYSROFF ã‚ªãƒ–ジェクトファイルに変換します
Copyright 2011 Free Software Foundation, Inc.
グループセクション `%s' å†…で破損したヘッダです
グループセクション %s å†…で破損したヘッダです。
%2$s ã‚»ã‚¯ã‚·ãƒ§ãƒ³å†…に壊れたユニット長 (%1$s) ãŒè¦‹ã¤ã‹ã‚Šã¾ã—た
'%s' ã‚’配置できませんでした。システムエラーメッセージ: %s
0x%lx ã‚’含む .ARM.extab ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚’配置できません
名前復元 (demangle) ã•れた組み込み型を取得できませんでした
lib ãƒ•ァイルを作成しましたライブラリファイルを作成しています: %sスタブファイルを作成しています: %s現在開かれている書庫は %s ã§ã™
オフセット %lx ã«ã‚ã‚‹ DIE ãŒå­˜åœ¨ã—ない省略番号 %lu ã‚’参照しています
DLLTOOL å        : %s
DLLTOOL ã‚ªãƒ—ション: %s
DRIVER å        : %s
DRIVER ã‚ªãƒ—ション: %s
DSBT ã‚¢ãƒ‰ãƒ¬ã‚¹ãŒä½¿ç”¨ã•れていません
DSBT ã‚¢ãƒ‰ãƒ¬ã‚¹ãŒä½¿ç”¨ã•れています
sizeof(dwarf_vma) != 8 ã®æ™‚は DW_FORM_data8 ã¯ã‚µãƒãƒ¼ãƒˆã•れません
DW_FORM_strp ã‚ªãƒ•セットが大きすぎます: %s
DYN (共有オブジェクトファイル)データアドレスが位置依存です
データアドレスが位置非依存で、GOT ãŒ DP ã®é ãã«ã‚ります
データアドレスが位置非依存で、 GOT ãŒ DP ã®è¿‘くにあります
データサイズデバッグ情報が壊れています。省略オフセット (%lx) ãŒçœç•¥ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚µã‚¤ã‚º (%lx) ã‚ˆã‚Šå¤§ãã„です
デバッグ情報が壊れています。 %s ã«ã‚ã‚‹ CU ã®é•·ã•がセクション (長さ = %s) ã®çµ‚端を超えています
セクション %s ã®ãƒ‡ãƒãƒƒã‚°å†…容のデコードしたダンプ:
 
一時ベースファイル %s ã‚’削除しています一時 def ãƒ•ァイル %s ã‚’削除します一時エクスポートファイル %s ã‚’削除しています復元 (demangle) ã•れた名前が関数ではありません
依存関係監査ライブラリセクション %s ã®ãƒ‡ãƒãƒƒã‚°å†…容の表示はまだサポートされていません。
このマシンアーキテクチャでの再配置について解っていません
%s ã®èª­å–りが完了しました重複したシンボルがキーワードシンボルに入れられました。動的再配置:
動的シンボル:
ELF ãƒ˜ãƒƒãƒ€:
エラー: èª¤ã£ãŸã‚»ã‚¯ã‚·ãƒ§ãƒ³é•· (%d > %d)
エラー: èª¤ã£ãŸå­ã‚»ã‚¯ã‚·ãƒ§ãƒ³é•· (%d > %d)
EXEC (実行可能ファイル)列の終り
 
エントリポイント ã‚¨ãƒ©ãƒ¼ã€åºæ•°ä»˜ã EXPORT ãŒé‡è¤‡ã—ています: %s例外表:
シンボルを除外しています: %s%s ã®å®Ÿè¡Œã«å¤±æ•—しましたFORMAT ã¯ rc, res ã‚るいは coff ã®ã„ずれかとなり、これが指定されない場合、
ファイル名の拡張子から推定されます。入力ファイルを指定しなければ標準入力が
使用され、rc å½¢å¼ãŒãƒ‡ãƒ•ォルトになります。出力ファイルが指定されなければ
標準出力が使用され、rc å½¢å¼ãŒãƒ‡ãƒ•ォルトになります。
最後のチェイン長の決定に失敗しました
名前復元したテンプレートの表示に失敗しました
バケット数の読込みに失敗しました
チェイン数の読込みに失敗しました
ファイル %s ã¯æ›¸åº«ã§ã¯ãªã„ため索引を表示できません。
ファイル属性
ファイルが複数の動的文字列テーブルを含んでいます
ファイルが複数の動的シンボルテーブルを含んでいます
ファイルに複数の symtab shndx è¡¨ãŒã‚ります
ファイルヘッダ:
ファイル名                           è¡Œç•ªå·         é–‹å§‹ã‚¢ãƒ‰ãƒ¬ã‚¹
フィルタライブラリフラグ:XCOFF ãƒ•ァイル用:
  header      ãƒ•ァイルヘッダを表示する
  aout        è£œåŠ©ãƒ˜ãƒƒãƒ€ã‚’è¡¨ç¤ºã™ã‚‹
  sections    ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãƒ˜ãƒƒãƒ€ã‚’表示する
  syms        ã‚·ãƒ³ãƒœãƒ«è¡¨ã‚’表示する
  relocs      å†é…ç½®ã‚¨ãƒ³ãƒˆãƒªã‚’表示する
  lineno      è¡Œç•ªå·ã‚¨ãƒ³ãƒˆãƒªã‚’表示する
  loader      ãƒ­ãƒ¼ãƒ€ãƒ¼ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚’表示する
  except      ä¾‹å¤–表を表示する
  typchk      åž‹æ¤œæŸ»ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚’表示する
  traceback   ãƒˆãƒ¬ãƒ¼ã‚¹ãƒãƒƒã‚¯ã‚¿ã‚°ã‚’表示する
  toc         toc ã‚·ãƒ³ãƒœãƒ«ã‚’表示する
これ以降の誤った end-of-sibling ãƒžãƒ¼ã‚«ãƒ¼ã«é–¢ã™ã‚‹è­¦å‘Šã¯æŠ‘止されます
GOTエクスポートファイルを生成しましたエクスポートファイルを生成します: %sハードウェア浮動小数
ハードウェア浮動小数 (MIPS32r2 64-bit FPU)
ハードウェア浮動小数 (倍精度)
ハードウェア浮動小数 (単精度)
ハードウェアまたはソフトウェア浮動小数
ID ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªé …ç›®ID ãƒªã‚½ãƒ¼ã‚¹ID ã‚µãƒ–ディレクトリIEEE æ•°å€¤ãŒã‚ªãƒ¼ãƒãƒ¼ãƒ•ローしました: 0xIEEE æ–‡å­—列長がオーバーフローしました: %u
IEEE ã¯è¤‡ç´ æ•°åž‹ã‚µã‚¤ã‚º %u ã‚’サポートしていません
IEEE ã¯æµ®å‹•小数型サイズ %u ã‚’サポートしていません
IEEE ã¯æ•´æ•°åž‹ã‚µã‚¤ã‚º %u ã‚’サポートしていません
索引名          ã‚µã‚¤ã‚º      VMA               LMA               File off  Algn索引名          ã‚µã‚¤ã‚º      VMA       LMA       File off  Algnインポートファイル:
インポートライブラリ `%s' ãŒ2個以上の dll ã‚’指定しています書庫 %s å†…:
書庫 %s ã®ç´¢å¼•: (%ld å€‹ã®ã‚¨ãƒ³ãƒˆãƒª, ã‚·ãƒ³ãƒœãƒ«è¡¨ã®ã‚µã‚¤ã‚º 0x%lx ãƒã‚¤ãƒˆ)
入力ファイル '%s' ãŒèª­ã¿è¾¼ã¿å¯èƒ½ã§ã¯ã‚りません
入力ファイル '%s' ãŒèª­ã¿è¾¼ã‚ã¾ã›ã‚“。
入力ファイル `%s' ã¯ãƒã‚¤ãƒŠãƒªã‚¢ãƒ¼ã‚­ãƒ†ã‚¯ãƒãƒ£ãƒ‘ラメータを無視します。インターフェースバージョン: %s
内部エラー: DWARF ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒ 2、3 ã¾ãŸã¯ 4 ã§ã¯ã‚りません。
内部エラー: ä¸æ˜Žãªãƒžã‚·ãƒ³åž‹ã§ã™: %d内部エラー: ãƒ—ログラムインタプリタを表示するための書式文字列作成に失敗しました
命令ごとの最大操作数が無効です。
無効なオプション '-%c'
無効な基数です: %s
無効な sh_entsize ã§ã™
一時ベースファイル %s ã‚’保存しています一時 def ãƒ•ァイル %s ã‚’保存します一時エクスポートファイル %s ã‚’保存していますフラグのキー:
  W (write), A (alloc), X (実行), M (merge), S (文字列)
  I (情報), L (リンク順), G (グループ), T (TLS), E (排他), x (不明)
  O (追加の OS å‡¦ç†ãŒå¿…要) o (OS å›ºæœ‰), p (プロセッサ固有)
フラグのキー:
  W (write), A (alloc), X (実行), M (merge), S (文字列), l (large)
  I (情報), L (リンク順), G (グループ), T (TLS), E (排他), x (不明)
  O (追加の OS å‡¦ç†ãŒå¿…要) o (OS å›ºæœ‰), p (プロセッサ固有)
LIBRARY: %s ãƒ™ãƒ¼ã‚¹: %xエラーの直前のスタブエントリ:
ライブラリの rpath: [%s]ライブラリの runpath: [%s]ライブラリの soname: [%s]%s (%u) ã®è¡Œç•ªå·
ローダヘッダ:
オフセット 0x%lx ã‹ã‚‰å§‹ã¾ã‚‹ä½ç½®ãƒªã‚¹ãƒˆãŒçµ‚端されていません。
%s ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã®ä½ç½®ãƒªã‚¹ãƒˆãŒ 0x%s ã‹ã‚‰é–‹å§‹ã—ます
マシン '%s' ã¯ã‚µãƒãƒ¼ãƒˆã•れていませんメモリ
マイクロコントローラ
マシン番号 %d ã® DWARF ã‚»ã‚¯ã‚·ãƒ§ãƒ³å†…で使用される 32ビット再配置型に関する知識がありません。
セクション %s ã®åå‰å¤‰æ›´ãŒè¤‡æ•°å›žè¡Œã‚ã‚Œã¦ã„ます少なくとも -o ã‹ --dllname ã‚ªãƒ—ションのどちらかは指定しなければいけませんNAME: %s ãƒ™ãƒ¼ã‚¹: %xNONE
NONE (無し)NT_ARCH (アーキテクチャ)NT_AUXV (補助ベクタ)NT_FPREGS (浮動小数点レジスタ)NT_FPREGSET (浮動小数点レジスタ)NT_GNU_ABI_TAG (ABI ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã‚¿ã‚°)NT_GNU_BUILD_ID (一意なビルドID ãƒ“ット列)NT_GNU_GOLD_VERSION (gold ãƒãƒ¼ã‚¸ãƒ§ãƒ³)NT_GNU_HWCAP (DSO ãŒé©ç”¨ã•れるソフトウェア HWCAP æƒ…å ±)NT_LWPSINFO (lwpsinfo_t æ§‹é€ ä½“)NT_LWPSTATUS (lwpstatus_t æ§‹é€ ä½“)NT_PPC_VMX (ppc Altivec ãƒ¬ã‚¸ã‚¹ã‚¿)NT_PPC_VSX (ppc VSX ãƒ¬ã‚¸ã‚¹ã‚¿)NT_PRPSINFO (prpsinfo æ§‹é€ ä½“)NT_PRSTATUS (prstatus æ§‹é€ ä½“)NT_PRXFPREG (user_xfpregs æ§‹é€ ä½“)NT_PSINFO (psinfo æ§‹é€ ä½“)NT_PSTATUS (pstatus æ§‹é€ ä½“)NT_S390_CTRS (s390 åˆ¶å¾¡ãƒ¬ã‚¸ã‚¹ã‚¿)NT_S390_TIMER (s390 ã‚¿ã‚¤ãƒžãƒ¼ãƒ¬ã‚¸ã‚¹ã‚¿)NT_S390_TODCMP (s390 TOD æ¯”較レジスタ)NT_S390_TODPREG (s390 TOD ãƒ—ログラム可能レジスタ)NT_TASKSTRUCT (task æ§‹é€ ä½“)NT_VERSION (バージョン)NT_VMS_EIDC (一貫性検査)NT_VMS_FPMODE (浮動小数モード)NT_VMS_GSTNAM (シンボル表名)NT_VMS_IMGBID (ビルドID)NT_VMS_IMGID (イメージID)NT_VMS_IMGNAM (イメージ名)NT_VMS_LINKID (リンクID)NT_VMS_LINKTIMENT_VMS_LNM (言語名)NT_VMS_MHD (モジュールヘッダ)NT_VMS_ORIG_DYNNT_VMS_PATCHTIMENT_VMS_SRC (ソースファイル)NT_VMS_TITLENT_WIN32PSTATUS (win32_pstatus æ§‹é€ ä½“)NT_X86_XSTATE (x86 XSAVE æ‹¡å¼µçŠ¶æ…‹)N_LBRAC ãŒé–¢æ•°å†…にありません
名前名前            å€¤             ã‚¯ãƒ©ã‚¹       åž‹         ã‚µã‚¤ã‚º             è¡Œ ã‚»ã‚¯ã‚·ãƒ§ãƒ³
 
名前                  å€¤      ã‚¯ãƒ©ã‚¹       åž‹         ã‚µã‚¤ã‚º     è¡Œ ã‚»ã‚¯ã‚·ãƒ§ãƒ³
 
名前索引: %ld
名前: %s
エントリ数: %-8u ã‚µã‚¤ã‚º: %08x (%u)
NetBSD procinfo æ§‹é€ ä½“%s ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãŒã‚りません
 
%s ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã«ã‚³ãƒ³ãƒ‘イル単位がありませんよ ?項目 %s ã¯æ›¸åº«å†…に存在しません。
-fo ã‚ªãƒ—ションの後にファイル名が続いていません。
.debug_info ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã«ä½ç½®ãƒªã‚¹ãƒˆãŒã‚りません!
"%s" ã®åå‰ã®å¤‰å½¢(mangling) ãŒã‚りません
`%s' ã¨ã„う名前のメンバはありません
このcoreファイルに備考セグメントが有りません。
.debug_info ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã«ç¯„囲リストがありません!
なしなし
ELF ãƒ•ァイルではありません - å§‹ç‚¹ã«ã‚るマジック番号が異なります
%u å€‹ã®ã‚¨ãƒ³ãƒˆãƒªã‚’持つデバッグ情報配列のために十分なメモリがありません不要なオブジェクト: [%s]
未使用
行なうべき事はありません。
OS å›ºæœ‰: (%x)オフセット %2$lx ã«ã‚ã‚‹ DIE ã® DW_AT_import å±žæ€§ã®å€¤ã¨ã—て使用されているオフセット %1$s ã¯å¤§ãã™ãŽã¾ã™ã€‚
オフセット 0x%lx ãŒ .debug_loc ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚µã‚¤ã‚ºã‚ˆã‚Šå¤§ãã„です。
-X 32_64 ã®ã¿ã‚µãƒãƒ¼ãƒˆã•れています現在のところ DWARF 2 ãŠã‚ˆã³ 3 arange ã®ã¿ã‚µãƒãƒ¼ãƒˆã•れています
DWARF 2 ãŠã‚ˆã³ 3 ã® pubnames ã®ã¿ç¾åœ¨ã‚µãƒãƒ¼ãƒˆã•れています
現在のところ、DWARF ãƒãƒ¼ã‚¸ãƒ§ãƒ³ 2, 3 ãŠã‚ˆã³ 4 ã®ã¿è¡Œæƒ…報をサポートしています。
一時ファイルを開きました: %sオペレーティングシステム固有: %lxオプション -I ã¯å…¥åŠ›å½¢å¼ã®æŒ‡å®šã¨ã—ã¦ã¯å»ƒæ­¢ã•ã‚Œã¾ã™ã€‚ä»£ã‚ã‚Šã« -J ã‚’使用してください。
メモリが足りません
 %2$s ã®ãŸã‚ã« 0x%1$lx ãƒã‚¤ãƒˆã®ãƒ¡ãƒ¢ãƒªã‚’確保中にメモリが不足しました
ダンプ要求表のメモリを確保中にメモリが足りなくなりました
書庫内の長いシンボル名の読み込み中にメモリが足りなくなりました
書庫のシンボル索引の変換を試みている最中にメモリが不足しました
書庫のシンボル表索引の読み込みを試みている最中にメモリが不足しました
書庫のシンボル索引の読み込みを試みている最中にメモリが不足しました
出力ファイルはアーキテクチャ `%s' ã‚’表すことができません所有者PLT GOTPT_FIRSTMACH+%dPT_GETFPREGS (fpreg æ§‹é€ ä½“)PT_GETREGS (reg æ§‹é€ ä½“)Pascal ãƒ•ァイル名はサポートされていませんDLL å'%s' ã‹ã‚‰ãƒ‘スの要素が取り除かれましたポインタサイズ + ã‚»ã‚°ãƒ¡ãƒ³ãƒˆã‚µã‚¤ã‚ºãŒ2のべき乗数ではありません。
SYSROFF ã‚ªãƒ–ジェクトファイルの解釈を人間が読みやすい形式で表示する
表示幅が初期化されていません (%d)定義ファイルを処理しました定義を処理しました定義ファイルを処理しています: %s定義を処理していますプロセッサ固有: %lxプロセッサ固有: (%x)REL (再配置可能ファイル)%s ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã®ç¯„囲リストが 0x%lx ã‹ã‚‰é–‹å§‹ã—ます
セクション %s ã®ãƒ‡ãƒãƒƒã‚°å†…容の生ダンプ:
 
セクションの読み込みに失敗しましたリアルタイム
巻き戻し (unwind) æ‹’否%s (%u) ç”¨ã®å†é…ç½®
バグを発見したら <%s> ã«å ±å‘Šã—て下さい。
翻訳に関するバグは<translation-team-ja@lists.sourceforge.net>に報告してください。
バグを発見したら <%s> ã«å ±å‘Šã—て下さい。
翻訳に関するバグは<translation-team-ja@lists.sourceforge.net>に報告してください。
セクション %2$s å†…に予約された長さの値 (%1$s) ãŒè¦‹ã¤ã‹ã‚Šã¾ã—た
オブジェクトファイル %s ã‚’走査していますセクション %d ã§ç„¡åŠ¹ãª sh_entsize %lx (予期されるのは %lx) ã§ã™
セクション %d ã¯å­˜åœ¨ã—ないためダンプされませんでした!
セクション '%s' ã¯å­˜åœ¨ã—ないためダンプされませんでした!
セクション属性:セクションヘッダ (%u+%u=0x%08x ã‹ã‚‰ 0x%08x):
セクションヘッダが利用できません!
セクション:
Seg Offset   åž‹                              Addend            Seg Sym Off
共有ライブラリ: [%s]単精度ハードウェア浮動小数
オフセット 0x%lx ã«ã‚る予期しない再配置をスキップしています
所期しない再配置型 %s ã‚’スキップしています
ソフトウェア浮動小数
独立アプリケーション%2$s å†…の %1$s ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‹ã‚‰æƒ…報を取り込んでいますサポートされているアーキテクチャ:サポートされているターゲット:シンボル値シンボル属性:シンボル表 (strtable ä½ç½® 0x%08x)定義ファイル %s ã§æ§‹æ–‡ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ました:%dTOC:
バージョン 3 ã§ã¯ã‚¢ãƒ‰ãƒ¬ã‚¹è¡¨ãƒ‡ãƒ¼ã‚¿ã«é–“違いがあるかもしれません。
セクション %s å†…の情報が壊れているようです - ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãŒå°ã•すぎます
行情報が壊れているようです - ã“のセクションは小さすぎます
%d å€‹ã®ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãƒ˜ãƒƒãƒ€ã€å§‹ç‚¹ã‚ªãƒ•セット 0x%lx:
セクション %2$s ã®æœ«ç«¯ã« %1$ld ãƒã‚¤ãƒˆã®æœªä½¿ç”¨éƒ¨åˆ†ãŒã‚ります
%3$s ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã«ç©´ [0x%1$lx - 0x%2$lx] ãŒã‚ります。
.debug_loc ã‚»ã‚¯ã‚·ãƒ§ãƒ³å†…に穴 [0x%lx - 0x%lx] ãŒã‚ります。
%3$s ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã«é‡ãªã‚Šåˆã£ã¦ã„る部分 [0x%1$lx - 0x%2$lx] ãŒã‚ります。
.debug_loc ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã«é‡ãªã‚Šåˆã£ã¦ã„る部分 [0x%lx - 0x%lx] ãŒã‚ります
この実行ファイルは 64 ãƒ“ットサポート無しでコンパイルされているため
64 ãƒ“ット ELF ãƒ•ァイルを処理できません。
この readelf ã®å®Ÿä½“は 64 ãƒ“ットデータ型サポート無しで構築されており、
64 ãƒ“ット ELF ãƒ•ァイルを読み込めません。
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.
タイムスタンプ: %s
N_RBRAC ã®æ•°ãŒå¤šã™ãŽã¾ã™
`%s' ã‚’試しました
試したファイル: %sグループセクション %s å†…で切り詰められたヘッダです
型ファイル番号型 %d ãŒç¯„囲外です
インデックス番号型 %d ãŒç¯„囲外です
型検査セクション:
UNKNOWN (%*.*lx)不明: ä¸æ˜Ž: é•·ã• %d
入力ファイルのエンディアンを変更できません`%s' ã«å¯¾ã™ã‚‹ dll åã‚’決定できません (インポートライブラリでは無い?)動的文字列テーブルの長さを決定できません
ロードすべきシンボルの数を決定できません
プログラムインタプリタ名は見つかりません
.debug_info ã®ãƒ­ãƒ¼ãƒ‰/構文解析が出来ません。そのため %s ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚’解釈できません。
%s ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã®ä½ç½®ã‚’特定できません!
ベースファイルを開けません: %sオブジェクトファイルを開けません: %s: %s一時アセンブリファイルを開けません: %s%2$s ã® 0x%1$lx ãƒã‚¤ãƒˆã‚’読み込めません
動的データを読込めません
プログラムインタプリタ名を読み込めません
ファイルの形式を認識できません入力ファイル `%s' ã®å½¢å¼ã‚’認識できません%2$s ã® 0x%1$lx ã¾ã§æŽ¢æŸ» (seek) ã§ãã¾ã›ã‚“
ファイル末尾に seek ã§ãã¾ã›ã‚“
ファイル終端 (EOF) ã¾ã§æŽ¢æŸ» (seek) ã§ãã¾ã›ã‚“!
動的情報の開始位置まで探査 (seek) ã§ãã¾ã›ã‚“
N_EXCL ãŒæœªå®šç¾©ã§ã™äºˆæœŸã—ない名前復元 (demangle) ã•れた varargs ã§ã™
v3 å¼•数リストの復元 (demangle) å†…で予期しない型です
SYM_DIFF å†é…ç½®å¾Œã«å‡¦ç†ã•れていない MN10300 å†é…ç½®åž‹ãŒè¦‹ã¤ã‹ã‚Šã¾ã—た取り扱われなかったデータ長: %d
不明な AT å€¤: %lx不明な FORM å€¤: %lx不明な OSABI ã§ã™: %s
不明な TAG å€¤: %lx不明な形式 '%c'
不明なマシン型です: %d
不明なマシン型です: %s
不明な備考タイプ: (0x%08x)不明なタグ: %d
不明な型です: %s
XCOFF ã‚¿ã‚¤ãƒ— %d ã‚’認識できません
認識できないデバッグオプション '%s' ã§ã™
認識できないでバッグセクションです: %s
名前復元 (demangle) ã‚³ãƒ³ãƒãƒ¼ãƒãƒ³ãƒˆ %d ã‚’認識できません
認識できない名前復元 (demangle) ã•れた組み込み型です
認識できない形式: %lu
サポートされない EI_CLASS ã§ã™: %d
バージョン %lu ã¯ã‚µãƒãƒ¼ãƒˆã•れていません。
使用法: %s <option(s)> <object-file(s)>
使用法: %s <option(s)> <file(s)>
使用法: %s <option(s)> elffile(s)
使用法: %s <option(s)> in-file(s)
使用法: %s [emulation options] [-]{dmpqrstx}[abcDfilMNoPsSTuvV] [--plugin <name>] [member-name] [count] archive-file file...
使用法: %s [emulation options] [-]{dmpqrstx}[abcDfilMNoPsSTuvV] [member-name] [count] archive-file file...
使用法: %s [option(s)] [addr(s)]
使用法: %s [option(s)] [file(s)]
使用法: %s [option(s)] [in-file [out-file]]
使用法: %s [option(s)] [input-file]
使用法: %s [option(s)] [input-file] [output-file]
使用法: %s [option(s)] in-file
使用法: %s [option(s)] in-file [out-file]
使用法: %s [options] archive
使用法: readelf <option(s)> elf-file(s)
`%s' ã‚’使います
使用するファイル: %sプリプロセッサ出力を読込むために popen ã‚’使います
プリプロセッサ出力を読込むために一時ファイル `%s' ã‚’使います
--size-sort ãŠã‚ˆã³ --undefined-only ã‚ªãƒ—ションを同時に使用しています。`N' ã®å€¤ã¯æ­£ã§ãªã‘ればいけません。バージョン %ld
バージョン 4 ã§ã¯å¤§æ–‡å­—と小文字を区別しない検索はサポートされません。
仮想アドレス 0x%lx ãŒã©ã® PT_LOAD ã‚»ã‚°ãƒ¡ãƒ³ãƒˆã«ã‚‚位置していません。
警告、重複した EXPORT %s %d,%d ã‚’無視します警告、マシン型 (%d) ã§ã¯é…延インポートはサポートされていません警告: %s: %s
警告: '%s' ã¯è² ã®ã‚µã‚¤ã‚ºã§ã™ã€‚おそらく大きすぎます警告: '%s' ã¯æ­£å¸¸ãªãƒ•ァイルではありません警告: åž‹ã®ã‚µã‚¤ã‚ºã‚’ %d ã‹ã‚‰ %d ã«å¤‰æ›´ã—ます
警告: '%s' ã‚’配置できません。  ç†ç”±: %s警告: å‰ã«ã‚ã‚‹ --reverse-bytes ã®å€¤ %d ã¯ç„¡è¦–しています警告: 0x%s ã‹ã‚‰ 0x%x ã¾ã§ã®éš™é–“の埋め込みを切り詰めます[%3u] 0x%lx - 0x%lx
[%3u] 0x%lx 0x%lx [<不明>: 0x%x] [切り詰められたオペコード]
[切り詰められました]
`N' ã¯ `x' ãŠã‚ˆã³ `d' ã‚ªãƒ—ションと併せて使用したときのみ意味があります。`u' ã¯ `D' ã‚ªãƒ—ションと併せて使用しても意味がありません。`u' ã¯ `r' ã‚ªãƒ—ションと併せて使用したときのみ意味があります。薄い書庫に対して `x' ã‚’使用できません。アクセラレータアーキテクチャ %s ã¯ä¸æ˜Žã§ã™ã‚¢ãƒ¼ã‚­ãƒ†ã‚¯ãƒãƒ£: %s, å±žæ€§ATN65 ãƒ¬ã‚³ãƒ¼ãƒ‰ãŒä¸æ­£ã§ã™C++ ãƒ•ィールドビット位置またはサイズに誤りがあります誤った動的シンボル
%s ç”¨ã¨ã—ては不正な形式です誤った変形 (mangle) å `%s' ã§ã™
不正な misc ãƒ¬ã‚³ãƒ¼ãƒ‰ã§ã™é–“違ったレジスタ: C++ ãƒ¡ã‚½ãƒƒãƒ‰é–¢æ•°ã®åž‹ã«èª¤ã‚ŠãŒã‚ります不正な形式の拡張行命令コードに遭遇しました!
bfd_coff_get_auxent ãŒå¤±æ•—しました: %sbfd_coff_get_syment ãŒå¤±æ•—しました: %sbfd_open ãŒã‚¹ã‚¿ãƒ–ファイルを開けませんでした: %s: %sbfd_open ãŒã‚¹ã‚¿ãƒ–ファイルを開けませんでした: %s: %sブロックがスタックの終りに残っていますバイト数は interleave æœªæº€ã§ãªã‘ればなりませんバイト数は非負でなければなりませんファイル `%s' ã®åž‹ã‚’決定できません。-J ã‚ªãƒ—ションを使用してください隙間詰めを追加できませんセクション '%s' ã‚’追加できません%s ãƒ•ァイル `%s' ã‚’出力用に作成できません。
デバッグセクションを作成できませんセクション `%s' ã‚’作成できませんアーキテクチャ %s ç”¨ã«é€†ã‚¢ã‚»ãƒ³ãƒ–ルできません
`%s' ã‚’実行できません: %sBFD_RELOC_RVA å†é…ç½®ã‚¿ã‚¤ãƒ—を取得できません%s `%s' ã‚’開けません: %s出力用の `%s' ã‚’開けません: %s一時ファイルを開けません `%s': %s`%s' ã‚’ popen ã§ãã¾ã›ã‚“: %s標準出力にリダイレクトできません: `%s': %sBFD ãƒ‡ãƒ•ォルトターゲットを `%s' ã«è¨­å®šã§ãã¾ã›ã‚“: %sデバッグセクションの内容を設定できません与えられたマシン %s ã‚’使用できませんデバッグリンクセクション `%s' ã‚’作成できません書庫コピーのための一時ディレクトリを作成できません (エラー: %s)%s ã‚’削除できません: %sデバッグリンクセクション `%s' ã‚’埋められません'%s' ã‚’開けません: %s入力ファイル %s ã‚’開けません開くことができません: %s: %s補助ヘッダを読み込めませんヘッダを読み込めません行番号エントリを読み込めません行番号を読み込めません再配置エントリを読み込めません再配置を読み込めませんセクションヘッダを読み込めませんセクションヘッダを読み込めません文字列表を読み込めません文字列表長を読み込めませんシンボル補助エントリを読み込めませんシンボルエントリを読み込めませんシンボル表を読み込めませんバイト順を逆にできません: ã‚»ã‚¯ã‚·ãƒ§ãƒ³ %s ã®é•·ã•は %d ã§å‰²ã‚Šåˆ‡ã‚Œãªã‘ればいけません競合動的シンボルテーブルが無い競合リストが見つかりました
const/volatile æŒ‡ç¤ºå­ã‚’欠いていますコントロールデータには DIALOGEX ãŒå¿…要となります`%s' [%s] ã‹ã‚‰ `%s' [%s] ã¸ã‚³ãƒ”ーします
`%s' [不明] ã‹ã‚‰ `%s' [不明] ã¸ã‚³ãƒ”ーします
core å‚™è€ƒã®ã‚ªãƒ•セット %lx ã«ç ´æã—た備考が見つかりました
取り除かれたコピーを保持する一時ファイルの作成に失敗しましたシンボル番号 %ld ã®åž‹ã‚’決定できませんでした
シンボル再定義ファイル %s ã‚’開けません (エラー: %s)%s ã‚’作成していますカーソルカーソルファイル `%s' ãŒã‚«ãƒ¼ã‚½ãƒ«ãƒ‡ãƒ¼ã‚¿ã‚’含んでいませんカスタムセクションデータ項目データサイズ %lddebug_add_to_current_namespace: ç¾åœ¨ã®ãƒ•ァイルがありませんdebug_end_block: ãƒˆãƒƒãƒ—レベルブロックを閉じようとしましたdebug_end_block: ç¾åœ¨ã®ãƒ–ロックがありませんdebug_end_common_block: å®Ÿè£…されていませんdebug_end_function: ç¾åœ¨ã®é–¢æ•°ãŒã‚りませんdebug_end_function: é–‰ã˜ã‚‰ã‚Œã¦ã„ないブロックがありますdebug_find_named_type: ç¾åœ¨ã®ã‚³ãƒ³ãƒ‘イル単位がありませんdebug_get_real_type: %s ã®ãƒ‡ãƒãƒƒã‚°æƒ…報が循環しています
debug_make_undefined_type: ã‚µãƒãƒ¼ãƒˆã•れていない種類ですdebug_name_type: ç¾åœ¨ã®ãƒ•ァイルがありませんdebug_record_function: debug_set_filename å‘¼ã³å‡ºã—がありませんdebug_record_label: å®Ÿè£…されていませんdebug_record_line: ç¾åœ¨ã®å˜ä½ãŒã‚りませんdebug_record_parameter: ç¾åœ¨ã®é–¢æ•°ãŒã‚りませんdebug_record_variable: ç¾åœ¨ã®ãƒ•ァイルがありませんdebug_start_block: ç¾åœ¨ã®ãƒ–ロックがありませんdebug_start_common_block: å®Ÿè£…されていませんdebug_start_source: debug_set_filename å‘¼ã³å‡ºã—がありませんdebug_tag_type: ä½™åˆ†ãªã‚¿ã‚°ãŒè©¦ã•れましたdebug_tag_type: ç¾åœ¨ã®ãƒ•ァイルがありませんdebug_write_type: ä¸æ­£ãªåž‹ã«é­é‡ã—ましたダイアログコントロールダイアログコントロールデータダイアログコントロール末尾ダイアログフォントポイントサイズダイアログヘッダダイアログ ex ã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ«ãƒ€ã‚¤ã‚¢ãƒ­ã‚° ex ãƒ•ォント情報ディレクトリディレクトリ項目名disassemble_fn ãŒé•·ã• %d ã‚’返しました%s ã«å¯¾ã—てデバッグ情報を書き込む方法が分かりません動的セクション動的セクションイメージ修正動的文字列セクション動的文字列表動的文字列プライベート BFD ãƒ‡ãƒ¼ã‚¿ã‚’コピー中にエラーが発生しましたdataプライベートヘッダデータにエラーがありますエラー: å‘½ä»¤å¹…は正の数値でなければいけませんエラー: prefix strip ã¯éžè² ã®å€¤ã§ãªã‘ればいけませんエラー: å…¥åŠ›ãƒ•ã‚¡ã‚¤ãƒ« '%s' ãŒç©ºã§ã™ã‚¨ãƒ©ãƒ¼: é–‹å§‹ã‚¢ãƒ‰ãƒ¬ã‚¹ã¯çµ‚了アドレスより前でなければいけませんエラー: åœæ­¢ã‚¢ãƒ‰ãƒ¬ã‚¹ã¯é–‹å§‹ã‚¢ãƒ‰ãƒ¬ã‚¹ã‚ˆã‚Šå¾Œã§ãªã‘ればいけません式スタックが一致しません式スタックがオーバーフローしました式スタックがアンダーフローしましたプライベートデータのコピーに失敗しました出力セクションの作成に失敗しました一時 head ãƒ•ァイルを開けません: %s一時 head ãƒ•ァイルを開けません: %s: %s一時 tail ãƒ•ァイルを開けません: %s一時 tail ãƒ•ァイルを開けません: %s: %sベースファイルから項目数を読み込むのに失敗しました整列の設定に失敗しましたサイズの設定に失敗しましたvma ã®è¨­å®šã«å¤±æ•—しましたCOFF å…¥åŠ›ç”¨ã®ãƒ•ã‚¡ã‚¤ãƒ«åãŒå¿…è¦ã§ã™COFF å‡ºåŠ›ç”¨ã®ãƒ•ã‚¡ã‚¤ãƒ«åãŒå¿…è¦ã§ã™å›ºå®šãƒãƒ¼ã‚¸ãƒ§ãƒ³æƒ…å ±ãƒ•ãƒ©ã‚° = %d, ãƒ™ãƒ³ãƒ€ãƒ¼ = %s
フラグ 0x%08x:
fname: %.14sfontdirfontdir ãƒ‡ãƒã‚¤ã‚¹åfontdir ãƒ•ェイス名fontdir ãƒ˜ãƒƒãƒ€ã‚°ãƒ«ãƒ¼ãƒ—カーソルグループカーソルヘッダグループアイコングループアイコンヘッダ子ありヘルプ ID ã«ã¯ DIALOGEX ãŒå¿…要となりますヘルプセクションアイコンファイル `%s' ãŒã‚¢ã‚¤ã‚³ãƒ³ãƒ‡ãƒ¼ã‚¿ã‚’含んでいません代替の値を無視しています型インデックスが不正です変数インデックスが不正です入力と出力は異なるファイルでなければなりません入力ファイルが UFT16 ã§ã¯ç„¡ã„ようです。
入力ファイル名がコマンドラインと INPUT ã®ä¸¡æ–¹ã§ä¸Žãˆã‚‰ã‚Œã¾ã—たinterleave ã¯æ­£ã®æ•°å€¤ã§ãªã‘ればいけませんinterleave ã®é–‹å§‹ãƒã‚¤ãƒˆã‚’ --byte ã§è¨­å®šã—なければいけませんinterleave å¹…は正の数値でなければいけません内部エラー -- ã“のオプションは実装されていません内部状態エラーが %s ã§ç™ºç”Ÿã—ました--format ã«å¯¾ã™ã‚‹ç„¡åŠ¹ãªåŸºæ•°ã§ã™: %s無効なコードページが指定されています。
シンボル配列に無効な添え字です
無効な整数引数 %s ã§ã™ç„¡åŠ¹ãªæœ€å°æ–‡å­—åˆ—é•· %d ã§ã™ç„¡åŠ¹ãªç•ªå·ç„¡åŠ¹ãªã‚ªãƒ—ã‚·ãƒ§ãƒ³ -f ã§ã™
無効な文字列長pragma code_page ã«å¯¾ã—て無効な値が指定されました。
lang reason sym/addr
長さ %d [ライブラリリストliblist æ–‡å­—列テーブル行番号  symndx/paddr
.bss ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã®ä½œæˆ.nlmsections ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã®ä½œæˆmake ã‚»ã‚¯ã‚·ãƒ§ãƒ³menu ãƒ˜ãƒƒãƒ€ãƒ¡ãƒ‹ãƒ¥ãƒ¼ ex ãƒ˜ãƒƒãƒ€ãƒ¡ãƒ‹ãƒ¥ãƒ¼ ex ã‚ªãƒ•セットメニューアイテムメニューアイテムヘッダメッセージセクションインデックス型を欠いています要求された ASN ã‚’欠いています要求された ATN65 ã‚’欠いていますモジュールセクション複数の動的セグメント
名前つきディレクトリ項目名前つきリソース名前つきサブディレクトリ動的セグメントに内 .dynamic ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãŒã‚りません
ファイルに .except ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãŒã‚りません
このファイルには .loader ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãŒã‚りません
ファイルに .typchk ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãŒã‚りません
変形 (mangle) ã•れた文字列に引数の型がありません
子なしエントリ %s ãŒæ›¸åº«ä¸­ã«ã‚りません
項目 %s ã¯æ›¸åº« %s ã«å­˜åœ¨ã—ません!エクスポート定義ファイルが与えられていません。
一つ作成されますが、これはあなたの望むものではないかもしれませんシンボル番号 %ld ã«é–¢ã™ã‚‹æƒ…報がありません
入力ファイルがありません入力ファイルが指定されていません出力ファイル用の名前がありません操作が指定されていませんリソースがありませんシンボルがありません
C++ ãƒ¡ã‚½ãƒƒãƒ‰é–¢æ•°ã®åž‹æƒ…報がありませんなし設定されていません
再配置用に名付けられているためシンボル `%s' ã‚’取り除きません備考終端が null ã® unicode æ–‡å­—列です逆にするバイト数は正の偶数でなければいけません数値がオーバーフローしましたoffset    len  lang-id general-hash language-hash
オフセット: %08xこのファイルではオプション -P/--private ã¯ã‚µãƒãƒ¼ãƒˆã•れていませんオプション再配置を解析中にメモリが不足しました
overflow - nreloc: %u, nlnno: %u
%s ã«å¯¾ã™ã‚‹å†é…ç½®ã‚’調整中にオーバーフローしましたparse_coff_type: ä¸æ­£ãªã‚¿ã‚¤ãƒ—コード 0x%xELF ãƒ•ァイルヘッダが壊れているようです - 0 ã§ãªã„セクションヘッダオフセットがありますが、セクションヘッダがありません
ELF ãƒ˜ãƒƒãƒ€ãŒãŠãã‚‰ãå£Šã‚Œã¦ã„ます - 0 ã§ãªã„ヘッダオフセットがありますが、プログラムヘッダがありません前処理に失敗しました。プログラムヘッダ%2$s ã® %1$s ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã®èª­ã¿è¾¼ã¿ã«å¤±æ•—しました: %3$s参照パラメタがポインタではありません再配置数が負の値です再配置リソース IDリソースデータリソースデータサイズリソース型が不明ですrpc ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚»ã‚¯ã‚·ãƒ§ãƒ³ %u: sh_link ã®å€¤ %u ãŒã‚»ã‚¯ã‚·ãƒ§ãƒ³æ•°ã‚ˆã‚Šå¤§ãã„です
セクション '%s' ã¯ NOBITS åž‹ã§ã™ - å†…容は信頼できません
セクション '%s' ãŒ -j ã‚ªãƒ—ションで指定されましたがどの入力ファイルにもありません.loader ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãŒçŸ­ã™ãŽã¾ã™
グループセクション [%5u] ã«ã‚»ã‚¯ã‚·ãƒ§ãƒ³ 0 ãŒã‚ります
グループセクション [%2$5u] ã®ã‚»ã‚¯ã‚·ãƒ§ãƒ³ [%1$5u]  > æœ€å¤§ã‚»ã‚¯ã‚·ãƒ§ãƒ³ [%3$5u] ã§ã™
グループセクション [%2$5u] ã®ã‚»ã‚¯ã‚·ãƒ§ãƒ³ [%1$5u] ã¯æ—¢ã«ã‚°ãƒ«ãƒ¼ãƒ—セクション [%3$5u] ã«å±žã—ています
セクションの内容セクションデータセクションヘッダ.bss vma ã‚’設定.data size ã‚’設定.nlmsection ã®å†…容を設定.nlmsections ã‚µã‚¤ã‚ºã‚’設定設定アドレス 0x%s
セクション配列を設定セクションフラグを設定セクションサイズを設定開始アドレスを設定sh_entsize ãŒ 0 ã§ã™
共有セクションセクション %2$s å†…にある無効な再配置オフセット 0x%1$lx をスキップしています
セクション %3$s ã® %2$ld ç•ªç›®ã®å†é…ç½®ã«ã‚る予期しないシンボル型 %1$s ã‚’スキップしています
このプログラムはプラグインサポートなしで作成されています
sp = sp + %ldstab_int_type: ä¸æ­£ãªã‚µã‚¤ã‚º %u ã§ã™ã‚¹ã‚¿ãƒƒã‚¯ãŒã‚ªãƒ¼ãƒãƒ¼ãƒ•ローしましたスタックがアンダーフローしましたビットマップファイル `%s' ã®çŠ¶æ…‹å–å¾— (stat) ã«å¤±æ•—しました: %sファイル `%s' ã®çŠ¶æ…‹å–å¾— (stat) ã«å¤±æ•—しました: %sフォントファイル `%s' ã®çŠ¶æ…‹å–å¾— (stat) ã«å¤±æ•—しました: %sstat(2) ãŒ `%s' ã®ã‚µã‚¤ã‚ºã¨ã—て負の値を返しました文字列表string_hash_lookup ãŒå¤±æ•—しました: %sstringtable æ–‡å­—列stringtable æ–‡å­—列長スタブセクションサイズ子プロセスが致命的なシグナルを %d å—け取りました%s ã«å¯¾ã™ã‚‹ã‚µãƒãƒ¼ãƒˆã¯ã‚³ãƒ³ãƒ‘イル時に組み込まれていませんサポートされるフラグ: %sシンボル情報シンボルsymtab shndxターゲット特有のダンプ '%s' ã¯ã‚µãƒãƒ¼ãƒˆã•れていません動的セグメント内に .dynamic ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãŒå«ã¾ã‚Œã¦ã„ません
.dynamic ã‚»ã‚¯ã‚·ãƒ§ãƒ³ãŒå‹•的セグメントの最初のセクションではありません
このターゲットは %lu ä»£æ›¿ãƒžã‚·ãƒ³ã‚³ãƒ¼ãƒ‰ã‚’サポートしませんその番号を代わりに絶対的な e_machine å€¤ã¨ã—て扱います不正な言語を加えようとしています。二つの異なった操作オプションが指定されましたセクション %2$s ã«ã‚µãƒãƒ¼ãƒˆã•れていない再配置型 %1$d ã‚’適用できません
ファイル '%s' ã‚’コピーできません。理由: %sファイル `%s' ã‚’入力として開くことができません。
出力ファイル %s ã‚’開けません代替マシンコードを解析できません%s ã®å†…容を読み込めません'%s' ã®åå‰å¤‰æ›´ã«å¤±æ•—しました。理由: %s未定義の C++ ã‚ªãƒ–ジェクトですC++ ä»®æƒ³é–¢æ•°è¡¨ (vtable) ãŒå®šç¾©ã•れていませんATN ã«æœªå®šç¾©ã®å¤‰æ•°ãŒã‚りますTY ã«æœªå®šç¾©ã®å¤‰æ•°ãŒã‚ります予期しない DIALOGEX ãƒãƒ¼ã‚¸ãƒ§ãƒ³ %d ã§ã™ãƒ‡ãƒãƒƒã‚°æƒ…報が予期しない所で終わっています予期しない固定バージョン情報バージョン %lu予期しない固定バージョン情報長 %ld予期しない固定バージョン識別番号 %lu予期しないグループカーソル型 %d予期しないバージョン文字列 %d予期しない番号です予期しないレコード型ですC++ misc ã«äºˆæœŸã—ない文字列があります予期しない stringfileinfo å€¤ã®é•·ã• %ld予期しない varfileinfo å€¤ã®é•·ã• %ld予期しないバージョン文字列予期しないバージョン文字列長 %ld != %ld + %ld予期しない変数ファイル情報値の長さ %ld < %ld予期しないバージョン stringtable å€¤ã®é•·ã• %ld予期しないバージョンタイプ %d予期しないバージョン値の長さ %ld不明不明な ATN åž‹ã§ã™ä¸æ˜Žãª BB åž‹ã§ã™ä¸æ˜Žãª C++ ã‚¨ãƒ³ã‚³ãƒ¼ãƒ‰åã§ã™ä¸æ˜Žãª C++ å¯è¦–性です不明な PE å­ã‚·ã‚¹ãƒ†ãƒ : %s不明な TY ã‚³ãƒ¼ãƒ‰ã§ã™ä¸æ˜Žãªçµ„み込み型です名前復元 (demangle) ã®æ–¹å¼ `%s' ãŒä¸æ˜Žã§ã™ä¸æ˜Žãªãƒ•ォーマット型 `%s'不明な入力 EFI ã‚¿ãƒ¼ã‚²ãƒƒãƒˆã§ã™: %s長いセクション名の扱いに対する不明なオプション '%s' ã§ã™ä¸æ˜Žãª mac不明なマジック番号です不明な出力 EFI ã‚¿ãƒ¼ã‚²ãƒƒãƒˆã§ã™: %s不明なセクションです基底クラス用仮想文字が不明です基底クラス用可視性文字が不明ですフィールド用の可視性文字が不明です$vb åž‹ã®åå‰ãŒã‚りません--endian ã‚¿ã‚¤ãƒ— `%s' ã‚’認識できません-E ã®ã‚ªãƒ—ションを認識できませんC++ çœç•¥åã‚’認識できません認識できない C++ ãƒ‡ãƒ•ォルト型です認識できない C++ misc ãƒ¬ã‚³ãƒ¼ãƒ‰ã§ã™C++ ã‚ªãƒ–ジェクトオーバーヘッド仕様を認識できません認識できない C++ ã‚ªãƒ–ジェクト仕様です認識できない C++ å‚照型です相互参照型を認識できませんセクションフラグ `%s' ã‚’認識できません認識できません: %-7lx%s ã«å¯¾ã™ã‚‹ PC é–¢é€£å†é…ç½®ã‚’解決できませんサポートされていない ATN11 ã§ã™ã‚µãƒãƒ¼ãƒˆã•れていない ATN12 ã§ã™ã‚µãƒãƒ¼ãƒˆã•れていない C++ ã‚ªãƒ–ジェクト型ですサポートされていない IEEE å¼æ¼”算子ですサポートされていないメニューバージョン %dサポートされないまたは不明な Dwarf ãƒ•レーム呼び出し命令番号: %#x
サポートされない修飾子です巻き戻し (unwind) ãƒ‡ãƒ¼ã‚¿å·»ãæˆ»ã— (unwind) æƒ…報巻き戻し (unwind) è¡¨ãƒ¦ãƒ¼ã‚¶ãƒ¼å®šç¾©: vaddr    sgn mod sz type  symndx symbol
バージョンデータバージョン定義バージョン定義補助バージョン定義セクションバージョン長 %d ã¯ãƒªã‚½ãƒ¼ã‚¹é•· %lu ã®ä¸€è‡´ã—ません必要バージョン必要バージョン補助 (2)必要バージョン補助 (3)必要バージョンセクションバージョン文字列表バージョンシンボルデータバージョン var æƒ…報バージョン varfileinfowait: %s警告: CHECK ãƒ—ロシージャ %s ãŒå®šç¾©ã•れていません警告: EXIT ãƒ—ロシージャ %s ãŒå®šç¾©ã•れていません警告: FULLMAP ã¯ã‚µãƒãƒ¼ãƒˆã•れていません。 ld -M ã‚’試してください警告: ãƒãƒ¼ã‚¸ãƒ§ãƒ³ç•ªå·ãŒä¸Žãˆã‚‰ã‚Œã¦ã„ません警告: START ãƒ—ロシージャ %s ãŒå®šç¾©ã•れていません警告: '%s' ã‚’コピー中に一時ファイルを作成できませんでした (エラー: %s)警告: '%s' ã‚’配置できません。システムエラーメッセージ: %s警告: ãƒ•ァイル引数 (0x%s) > ã‚»ã‚¯ã‚·ãƒ§ãƒ³å¼•æ•° (0x%s)警告: å…¥åŠ›ã¨å‡ºåŠ›ã®å½¢å¼ã«äº’æ›æ€§ãŒã‚ã‚Šã¾ã›ã‚“è­¦å‘Š: ã‚ªãƒ—ションヘッダのサイズが大きすぎます (%d ã‚ˆã‚Šå¤§ãã„)
警告: ã‚·ãƒ³ãƒœãƒ« %s ãŒ import ã•れましたが import ãƒªã‚¹ãƒˆã«ã‚りません未定義シンボルはサイズが 0 ã®ãŸã‚ä½•も出力しません。スタブの書込み中| <不明>