Training courses

Kernel and Embedded Linux

Bootlin training courses

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

Bootlin logo

Elixir Cross Referencer

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
Þ•£45ÛLj¸¹¿ύ⍠÷Ž-ŽFŽ"eŽ+ˆŽ´ŽԎìŽ þŽ&2Ye&„ «&̏ ó'!<^{7”=̐
‘‘,‘J‘&V‘(}‘¦‘DÑ;’6D’E{’Á’
גâ’Fþ’:E“6€“·“1Ɠ,ø“,%”R”a”t”#‰”#­”%є+÷”*#•N•`•s•)’•-¼•ê•(–-–=–I–Qd–2¶–0é–,—(G—+p—%œ—.—,ñ—+˜J˜?[˜6›˜1Ҙ3™38™l™E~™ęTݙ2š
NšC\šB šAãš=%›Ec›X©›œ38IS‚N֝;%ž:ažRœž3ïžN#Ÿ8rŸF«ŸGòŸ: J d p ( (¨ (Ñ (ú #¡6¡.E¡t¡!¡'²¡!Ú¡ü¡¢"¢4¢P¢c¢*r¢-¢*Ë¢7ö¢.£G£
`£n£YŒ£bæ£I¤*d¤¤Ÿ¤&±¤
ؤ<æ¤3#¥3W¥:‹¥/Æ¥Dö¥2;¦4n¦,£¦4Ц<§5B§7x§5°§3æ§8¨S¨+k¨8—¨9Ш8
©8C©:|©+·©0ã©0ª2Eª'xª8 ª"Ùª0üª7-«He«J®«9ù«R3¬7†¬L¾¬7­2C­Rv­:É­?®>D®=ƒ®>Á®6¯<7¯7t¯8¬¯<å¯<"°I_°N©°=ø°H6±)±=©±Aç±>)²h²{²7Ž²3Ʋú²³+³D³Y³j³³œ³«³@˳8´E´U´k´†´ž´¶´Ì´à´3ñ´%µ@µ$Tµyµ‘µ­µµÕµíµ¶¶",¶&O¶¯v¶ç&·9¹+H¹At¹Š¶¹AºäϺ䴻³™¼)M½Õw¾;MÀ¡‰Á§+ÆèÓÈM¼Ïq
×Õ|×éRð¹<ñöñ
òò*3ò(^ò
‡ò’ò®òÊò$êò(ó-8ó(fó
óšó"µóØó"àó/ô(3ô\ô%xôžôµôÔô
àôëô-óô!õ';õcõwõ"Žõ+±õ#Ýõ ö""ö"Eö(hö‘ö"ö"Àöãö ôö÷#*÷_N÷B®÷:ñ÷!,øNødø(ƒø(¬øÕøõø(ùH=ùQ†ù-Øù"ú%)ú"Oúrú%‚ú ¨úÉú"âúûû
6ûDû\û"|ûŸû4¶û#ëûü(&üOüfü3†üºüÌüÝüðüý"ý7ý+Sý1ý1±ý1ãý
þ2#þ6Vþþ5£þ@Ùþ\ÿJwÿ(Âÿëÿ	#@\&s)š*Ä+ï+"GjŠ©$¶(Û/(4&]7„A¼.þ-C:Q~YÐ3*-^%Œ²5Æ?ü,<1i@›Ü>ò.1)`Š
6«âQ÷If1³Îç#=az+“-¿!í	*	C	\	+q		¶	Ë	4à	
50
If
°
Ð
ë
+	5Pk„-¶ä42K.~	­·ÈÞ$ö
8/
	h
r
Š
$¦
Ë
Ú
ë
û
2Cb€’«	³7½õ57A?y,¹æ0ü+-3Y¡.¶7åEc2{C®3ò7&-^6ŒDÃ<,E;r4®
ã/îQ05‚¸*Èó/
=N _€^†å÷7BSK–9âBZ_º=Î)6JE]£!7¸#	ð&÷ú+tò0Üg1ND5J“6œÞ6®{9*:D: X:$y:ž:º:Ø:ï:'ô:;5;S;_;s;Œ;¢;»;Ð;å;ô;<<6<F<b<n<ƒ<–<ª<3¹<
í<ø<=#=8=M=R=l=ƒ=œ=µ=É=ã=_ó=S> q>!’>´>À>ß>'ÿ>!'?$I?n?(„?5­?3ã?7@%O@%u@&›@#Â@)æ@
AA9ALAlA‹A£A%¾AäA&üA$#B(HB@qB²B"ÏB:òB!-C.OC1~C@°C%ñC&D+>D*jD%•D(»DäDEE#0E$TEyE“E$¥E%ÊEðE
F"F$>F'cF‹F£F²FËF)æFG-G:GWGnG,…G²G\ÒG//H_H
rH=€H2¾H*ñH#I@I_I|IIŸI²I*ÆIñI+J*<JgJ
}J‹J:¦J!áJKK4K DK eK!†K"¨KËK	èK
òKL
LL)LALPLeLtL‰LžL²LÁL	ÄLÎLÚLæL
ïL
ýLM
M
+M
9M#GM*kMI–M)àM
NN N)NDNbNyN‚NŠN¡N"©NÌNäNôN
O O>O	WO&aOˆO—O"©OÌOØOéOúO	
PP".PQPbP{P“P¯P#ÏP	óPýPQQ$Q=QXQnQ
}Q	‹Q
•Q£Q
²QÀQ0ÐQRR%RCRKRPR`RmR<†RÃR
ÚRèRûR
S*S"FS"iS
ŒSšSB«SîS%	T&/T$VT{T”T±TÉTãTDôT9UEUNUmUŠU¦UÃUÛU1ïU8!V<ZV2—V#ÊV%îVW'W AWbWzW—W6µW.ìW
X+)XUX%tX"šX?½X/ýX1-Y6_Y$–Y»YÌYæYýYZI&ZpZ†ZœZ²ZÈZâZ2øZ)+[:U[ [&±[BØ[.\J\#c\6‡\2¾\	ñ\Vû\XR]/«]Û]û]^!9^[^Bt^:·^ò^+_._?_Q_$^_'ƒ_«_Â_Æ_Ø_å_)û_%`7`L`Òc`&6a#]a$a#¦a<Êab-b-Fb+tb
 bE®bôbcQ
cú\d?Wf	—f¡f¸fÓfÜfõf!g#gBgagugˆg”g¤g ¾g&ßg$h&+hNRh>¡hàh.ïhi.iDEiŠi ’i!³i6Õij0"j(SjN|j0Ëj$üj!!k%Ckikk’k¦kÅkãkÞléàlÊmßm!æmnn2nGnanqn†n–n:¦n+án

oo o)o9oTo\oqo,‚o"¯oTÒo'p4Fp{pp¥pªp#¶p Úpûp5q5Hq ~qŸq¾qÙq$ðq&r <r+]r"‰r/¬r"Ür$ÿr"$sGs fs ‡s$¨sÍsês%	t./t5^t%”t3ºt/ît#u-Bu0pu¡u(½uæuvv:vRvqvŠv¢v½vÕvðvw)%w(Owxw•w`šwPûwLx	]x"gxŠxŽx¨xÀxÞx&÷x*yIy_y+uy'¡yÉyÎy<Ôy6zHz	azkz{zTz5âz#{<{4W{4Œ{@Á{<|?|Y|Mx|Æ|,Õ|-}30}@d}?¥}9å}.~N~T~s~Ž~š~,¹~3æ~?)Z„¡´Êâù€*€)A€+k€—€	®€¸€ɀՀ1G
Ydp&ˆ5¯/å0‚$F‚7k‚£‚-·‚#å‚
	ƒFƒK[ƒ§ƒ¿ƒԃ/ñƒ'!„I„P„\„k„{„Š„„%¨„΄ç„ú„…!…"4…W…v…2|…?¯…8ï…4(†/]†7†3ņ;ù†q5‡w§‡Ãˆãˆòˆ‰‰ ‰$&‰K‰!P‰"r‰•‰ª‰»‰	ԉ,މ>Š;JŠ2†Š(¹ŠRâŠ5‹S‹"p‹+“‹$¿‹ä‹(Œ&-Œ5TŒŠŒªŒɌ/錍*;)Y7ƒ6»ò,
Ž:ŽPŽhŽ{Ž’Ž'§Žώ鎏0B^~#ž$çÿGIa«&Ő ì!
‘!/‘|Q‘jΑ 9’ Z’+{’#§’1˒ý’)“F“'c“‹“—“(¦“6ϓ;”B”Q”q”5~”.´”.㔕:(•c•k•+x•9¤•ޕ9ï•%)–*O–+z–6¦–.ݖ——'—:—M—U—i—o—4|—*±—+ܗ7˜$@˜e˜q˜‰˜	œ˜
¦˜
´˜¿˜И™+™;™ J™+k™—™¶™&ՙ(ü™
%š0š7š(Sš |š6šԚæš&ýš$›C›&]›+„›'°› ؛ù›'œ8œOœ"nœ‘œ¦œ(Ɯ$2%J5p¦#»ߝôž"ž5žUžhž†žŸž½žڞòž
Ÿ)ŸHŸ bŸƒŸ Ÿ¹ŸIҟ ! 3*  ^  !ž +À 'ì ¡'¡F¡S¡5m¡6£¡2Ú¡ 
¢#.¢5R¢ˆ¢”¢-›¢É¢
Ø¢
ã¢/ñ¢1!£!S£'u£'£/Å£2õ£7(¤+`¤ Œ¤1­¤#ߤ"¥+&¥&R¥#y¥)¥.Ç¥#ö¥¦*:¦e¦‚¦‘¦¥¦¸¦
Ϧݦî¦	§§!'§4I§~§…§•§!²§Ô§ë§¨¨#¨3¨B¨a¨!~¨" ¨"è)æ¨(©69©#p©9”©9Ωª"ª<ªWªsª&“ª*ºª&åª*«37«k«ƒ«–« ¨«!É«ë«þ«¬5¬D¬L¬`¬r¬¬Š¬¬Ÿ¬¦¬³¬
ǬÒ¬ä¬ñ¬­)­B­a­t­(‹­'´­4Ü­®--®A[®!®-¿®í® ¯(¯ E¯f¯ ‚¯£¯²¯ů.Û¯
°°+°@°
V°d°v°°°
©°
·°Å°ΰÞ°î°±±-±<±[±q±€±+“±¿±Û±÷±$²8²D²\²Sw²˲%Ó²
ù²³³7³N³[³+g³“³˜³=¡³=ß³´#´4B´w´ˆ´•´.¡´дØ´Þ´!ü´-µ#Lµ
pµ{µc‡µ]ëµI¶_¶o¶#¶$¥¶ʶç¶
ó¶··*·
6·A·8C·F|·@÷F¸K¸!i¸=‹¸Dɸ¹¹!,¹N¹(^¹‡¹”¹£¹¼¹Ò¹ç¹ºº(º9ºKº_º	nºxº	º7‹º=úF»;H»
„»’»­»¼»#Ì»ð»!
¼#/¼S¼Z¼g¼…¼˜¼²¼ǼÛ¼û¼½-½L½`½s½‘½'™½AÁ½F¾:J¾;…¾Á¾)ܾ¿8¿$D¿$i¿Ž¿(¬¿Õ¿!ó¿À*À?ÀYÀrÀ'‘À)¹À/ãÀ&Á:ÁZÁxÁŠÁ¡Á*¿Á'êÁÂ1,Â*^Â/‰Â¹Â#ÔÂøÂÃÃ!Ã:ÃQÃjÃzÏíüÃÕÃ&òÃÄ
%Ä3ÄQÄ'aÄ*‰Ä&´ÄÛÄìÄÅ#ÅAÅ_Å%|ŢſÅ!ßÅÆ Æ'4Æ\ÆnÆ€Æ$œÆÁÆ@ÝÆÇ4Ç<ÇDÇLÇXÇdÇqǀljÇ‘ǞǪǺÇ4ÕÇ
ÈÈ,ÈAÈPÈeÈyȍȞȲÈ'»È&ãÈ,
É 7É'XÉI€É9ÊÉ9Ê4>Ê/sÊ2£Ê=ÖÊË!Ë_-ˍ͓ͤ͹Í'ÎÍöÍÎ31Î7eÎ'ÎÅÎäÎûÎ!Ï0Ï)FÏpÏ!Ï"£ÏÆÏ%ãÏ	Ð))Ð%SÐ$yОÐ:¹ÐKôÐ@ÑOÑaÑ|Ñ(—Ñ3ÀÑôÑeÒFwÒ=¾Ò?üÒ<ÓWÓ*fÓQ‘ÓAãÓ<%ÔbÔ9yÔ1³Ô9åÔÕ3ÕGÕ(aÕ/ŠÕ.ºÕ0éÕ/ÖJÖZÖ"mÖ0Ö8ÁÖ"úÖ2×P×`×{×A‘×2Ó×=Ø/DØ2tØ*§Ø%ÒØ.øØ-'Ù/UÙ…ÙK”Ù:àÙ6Ú5RÚ2ˆÚ»ÚFÍÚÛV-Û„Û
¡ÛD¯ÛCôÛC8ÜA|ÜI¾Ü_Ý<hÝA¥ÞHçÞl0ß]ßGûß@Càb„à5çà`áI~áFÈáGâWâfâ
ƒâŽâ(â(Æâ(ïâ(ãAãUãXnã#Çã"ëã*ä!9ä[ärä…ä0œäÍäçä:öäM1å;åO»åæ$æ
=æ0KæY|æhÖæ?ç'\ç„ç”ç.­ç
ÜçMêçA8èDzèD¿è?éPDé>•é2Ôé:êKBêFŽêCÕêCëF]ë>¤ë3ãëì,,ìBYì:œì:×ì:í6Mí<„í@Áí5î58î.nî;î#Ùî1ýîG/ïQwïYÉïB#ðQfðL¸ðdñCjñA®ñ_ðñ=PòRŽòJáò@,óImó:·óDòó;7ôCsôJ·ô=õI@õ[ŠõBæõX)ö.‚ö@±öAòöB4÷w÷Š÷K÷@é÷*øCøVønø
…ø“ø¬øÊø+ÜøAù9Jù„ù–ù­ùÂùÛùôùúú84úmúŠú&žúÅúÝúùúû#û=ûRûbû'xû2 ûÔÓûó¨ü;œþ-ØþDÿ£Kÿ¤ïÿý”ý’­2>)qG›¯ãÚ“ùnœhkqòŒ:¶;6<Q<l<;‰<+Å<ñ<&þ<1%=5W=2=6À=E÷=+=>
i>t>%>	¶>"À>=ã>+!? M?(n?—?&¶?Ý?í?ü?0@5@.N@}@”@%­@+Ó@#ÿ@##A"GA"jA+A¹A$ÏA#ôAB#-BQB-hBq–BEC>NC!C¯C!ÊC.ìC.DJD(hD/‘DJÁDWE-dE%’E.¸E"çE
F%F"@F&cF#ŠF®F%ÊF
ðFþF"G"5GXG>rG!±GÓG+éGH"+H5NH„HHµHÉH$áHI""I+EI4qI4¦I6ÛIJ;JI[J¥J4½JFòJ]9KK—K+ãK%L!5L3WL ‹L¬L)ÀL)êL*M.?M.nM"M"ÀMãMN$N:4N7oN:§N+âNfOouO:åO PD1PUvP]ÌP@*Q,kQ"˜Q»QdÒQm7R&¥RCÌROS`S;zS1¶S6èST1T@>TTU•TëTU/!UQUlU…U U»U#ÛUÿUV/9V/iV!™V»V×VóVW5&W\WuW‹W;¨WäW>ÿWR>X$‘X¶XÑX+ïXY6YQYpYY,­Y%ÚYZZ4Z-KZ-yZ	§Z±ZÁZÛZ5óZ)[<>[	{['…["­[*Ð[û[\#\8\I\Y\w\ˆ\§\Å\!Õ\	÷\]:
])H]3r]9¦]Fà],'^T^0j^+›^4Ç^ü^_.%_7T_EŒ_Ò_2ê_G`4e`8š`-Ó`6aD8a:}a-¸aWæa8>b	wb4b¶bMÅbHc\c+ncšc<¯cìcÿc d1dq>d°dÅdàd7ídB%eQhe9ºeHôe=f\m:sm)®mØmêmeýmAcpv¥rvvž{l‚t—…N‡–[‡²ò‰¥Š¾Š+؊&‹+‹G‹`‹
z‹$ˆ‹$­‹ҋñ‹ý‹Œ:ŒRŒpŒ…Œ›ŒªŒ¾ŒՌïŒ
*<K^r5
ƍэݍ%ðŽ,Ž1Ž KŽ$lŽ%‘Ž·ŽʎèŽYõŽ*O#z$žÏ)Ϗ.ù6($_-„²5̐@‘>C‘Q‚‘,ԑ,’-.’*\’'‡’¯’%¾’ä’/“"0“S“r“ Š“«“.ȓ+÷“/#”;S”&”-¶”Gä”+,•7X•?•AЕ&–'9–5a–2—–.ʖ8ù–2—R—,o—0œ—1͗ÿ—˜18˜2j˜-˜˘ä˜*™*/™Z™p™™!Ÿ™3Á™/õ™%š7šRšeš.yš¨šXƚA›$a›†›D•›Aڛ<œ#Yœ}œ$œœ$˜ðœ+-Y6yB° óž2%žAXž-šžȞ垟4ŸDEŸ$ŠŸ%¯Ÿ՟òŸ  + : P k  ˜ ¬ Ç %Þ ¡#¡&¡5¡K¡Z¡j¡v¡Ž¡¦¡·¡Ï¡(à¡/	¢W9¢.‘¢À¢Ò¢ߢ4è¢7£U£n£w£ƒ£œ£'¨£Уé£û£¤,¤L¤h¤,u¤¢¤$µ¤+Ú¤	¥¥¥
.¥<¥D¥)d¥Ž¥Ÿ¥·¥Î¥é¥"¦
+¦
6¦D¦]¦j¦ ‚¦£¦¦Ô¦å¦ò¦§§&§09§j§"o§%’§¸§¿§Χ	è§ò§M
¨[¨q¨
ƒ¨‘¨4¨Ò¨5ñ¨5'©]©t©H…©$Ω+ó©.ª"Nªqªª©ªÀªߪfòªY«u«,Ž«3»«=ï«--¬([¬„¬AŸ¬Lá¬@.­?o­+¯­*Û­®®*-®X®m®ƒ®9š®.Ô®¯+¯ <¯+]¯ ‰¯Tª¯7ÿ¯>7°Dv°9»°õ°±%±?±]±Mm±»±Ô±í±²+!²'M²8u².®²9ݲ%³/=³Wm³/ųõ³+´>>´@}´	¾´cÈ´w,µ5¤µ'Úµ.¶(1¶Z¶y¶F•¶;ܶ	·8"·[·x·Ž·*›·-Æ·ô·¸¸
*¸(5¸3^¸’¸¢¸ º¸Û¸7ß¹/º-Gº.uºC¤ºèº9ýº67»7n»¦»B¸»û»¼J¼û^½AZ¿œ¿¨¿À¿Ý¿æ¿À=À&UÀ)|À¦ÀÆÀÙÀåÀõÀ%Á*8Á&cÁ)ŠÁP´Á@ÂFÂJX£ ³Â@ÔÂÃ(Ã)GÃ?qñÃ3ÅÃ*ùÃO$Ä/tÄ%¤Ä*ÊÄ7õÄ -ÅNÅjÅ'ƒÅ.«Å(ÚÅ&Æ1*Ç!\È~È(…È®ÈÄÈÞÈöÈÉ(ÉCÉVÉ@fÉ7§ÉßÉëÉóÉüÉÊ&Ê.Ê@Ê!RÊtÊi‘Ê&ûÊ/"ËRËqËŠË–Ë/©ËÙËõË:
Ì6HÌ!Ì¡ÌÁÌÖÌ"ðÌ$Í#8Í;\Í!˜Í1ºÍ ìÍ"
Î#0ÎTÎtΓÎ"²ÎÕÎðÎ$
Ï42Ï8gÏ' ÏHÈÏ7Ð%IÐ1oÐ1¡ÐÓÐ*ñÐÑ9Ñ&MÑtÑ ŒÑ"­ÑÐÑíÑ Ò(Ò?ÒZÒ'wÒ*ŸÒ"ÊÒíÒ^òÒMQÓŸÓ	²Ó"¼ÓßÓãÓûÓ&Ô5Ô0PÔ,Ô®Ô-ÎÔ*üÔ,'ÕTÕ`Õ<mÕAªÕìÕ
ÖÖ$-ÖjRÖ7½Ö&õÖ×/6×7f×?ž×CÞ×"Ø#BØVfؽØ3ÌØ6Ù:7Ù@rÙ?³Ù>óÙ62ÚiÚrڏڨڴÚ1ÓÚ4Û5:Û'pÛ!˜ÛºÛÕÛ òÛÜ2ÜIÜ$aÜ8†Ü/¿ÜïÜ

ÝÝ5ÝBݧaÝ’	Þ.œÞËÞßÞ
ìÞúÞ(ß:@ß/{ß2«ß)Þß@àIà@[à$œàÁàIÊàVákáá —áE¸á2þá1â8âMâ_âuâˆâ&â*´âßâöâã#ã3ã-Gã#uã™ã<­ãDêã7/ä4gä#œä.Àä/ïä:åZåëåêmæ
Xçfç„ç™ç²ç%¸çÞç4åç2èMèdèxè”è9¡èPÛè:,é:gé¢ébÂé&%êLê/lê:œê&×êþê$ë+Bë0në(Ÿë)Èë*òë(ì7Fì~ì!šìC¼ìOíMPí"ží,Áíîíî î6î Sî-tî¢î½î)Øîïï2ï-Qï%ï$¥ï8ÊïððI5ðJðÊð.áð(ñ*9ñ,dñŽ‘ñ| ò'ò(Åò=îò+,ó=Xó)–ó;Àó"üó/ôOôfô6ôM¸ôMõ
Tõ%bõˆõ0”õ)Åõ,ïõöB.öqözö=Šö.Èö÷ö@	÷-J÷,x÷3¥÷GÙ÷8!øZøaøvø‰øŸø±øËø
ÜøHêø;3ù;oùE«ù0ñù"ú6úRú
fúqúúú.§ú Öú÷ú$û<ûUû&nû=•û$Óû$øû6ü@Tü•üµü¼ü(Øü%ýO'ý#wý)›ý:Åý)þ%*þ(PþAyþ>»þ/úþ&*ÿ4Qÿ%†ÿ/¬ÿ0Üÿ#
41/f7–%Îô8II'“=»+ù%E%`3†º*Ó%þ($$M"r(•(¾1ç'&A-h(–$¿~äc
i<t#±Õ<òF/,v£"½à$÷J<g9¤*Þ)	F3z	6—Î
ã
î6ü73	$k	%	*¶	6á	8
<Q
.Ž
'½
3å
!*;.f-•&Ã'ê09C&}.¤%Óù

&
%?
e
y
*–
	Á
Ë
#ß
?CJ[ {œ·Ò&é%(D!m(,¸,å//BBr(µ:Þ>!Xz)§#Ñ5õ9+5e9›?Õ"85V(Œ(µÞó!2AI[s‚Š›¥µËØëý0#&T{—4´0éD$_=„JÂ)
67&n1• Ç'è&&7^rŒ/ªÚæø"&IX	oyˆž´Êçó	5'Bj€‘-¦Ôó52hz˜m·
% 0Qdƒ!ž
À
Î$Ü
GPb³$¹eÞD
Xf.y
¨³0º!ë;
.Ix‹„—t ‘ ­ ¾ 1Ò !("!K!
W!e!v!	!š!©!8«!Gä!F,"Ss"Ç"å"6#<:#w#	†#)#º#4Ê# ÿ# $1$M$e$}$™$«$¼$Ì$Ý$ò$ÿ$%	%B%Ba%O¤%@ô%
5&#C&g&v&<†&1Ã&9õ&9/'
i't'#„'¨'¿'Ü'ò'-(:(%I(&o(–(
§( µ(Ö((ß(5)?>)2~)B±)ô)**=*?D*2„*'·* ß*5+)6+;`+œ+¼+*Û+),0,,O,*|,*§,,Ò,$ÿ,!$-F-Y-+r-)ž-&È-ï-3.,@.-m.›. ·.
Ø.ã.ù./6/"O/r/*†/ ±/Ò/ã/0/#0S0b0 {0œ0(­0(Ö0$ÿ0$1+=1i1‰1£1Â10á1%282V2!u2—2C¬2ð233!,3N3;i3¥3¸3À3È3
Ð3Þ3
í3û34#4
+464I4e48}4¶4Â4Û4ô455-5?5R5e52x51«5-Ý5/62;6an6TÐ64%7;Z77–79Î7W8`8r8K« ÏZÄJÓ=ôyb¶â°™	Jä×ËÞ#!I
'q™OÉÑWAĆM@‹%§„	žŒqÍÙÉz ¼_S£mõR†¤®‡5‘ò‡Â<€»õk}ùrd“IðŒÀ›¼0Ú:—ÆåBó¹YšRâÁº¢”ÈdAyj«Û&ž:Šašº±™ièL¿SÎ4SD8Û1ë˜üªi-ïÖ6ÙßoöøƒŒI¦Ñ›¡„ØêwµcæU¾“”müÇVgI1”ýß{S°“}ub›Ç•2RmZ…‚jÑöîBR´ ÌK…¨8	¶’˜†ÿò·Iœ½«ÅãzÞ½ŸŒW"ŠêÈþo¸¨ù£Ž\SEh)?*@XXä
˜–wx C³á°þÊ
0]GÈãQá);åö0Œ\¿˜ˆ_Mt„¢ë'–î.äU.k4ž*¹]ÅÚ5³3H9N®f'lÊϘ‰
Ô}®<#G$‹$gÔVXmÏÞ¥^÷º<:ªÔ¯:Út!2Þ»¦D…mÿ*xÒêUQÎ!ÅÊ.ËÑ£Ûe6úöµBÎZn†'-=ÕÇW†j†b½E¶y”ž/ïF7&¦dÁÕ~`úhzÕ¯MFHËe[û_‘2𘁴¡]³›*â4R¦sz}(N! Åé¿£¼Â÷;ÁØCâ%/ûvãux5ƒB>x0Ýêl.ÜKŠŸf`U«ØkN©¯XP	÷Vö‚+/aÍ,°œ
Q.?U‰W¨Ú ZSO‚]5ͼ5…(xÜ‘YaÎÔó݃v2W wßN^q~D5ð€kji®\§F‹çª §>Îy
NŽ͏h¦„ì""´ûV1Ꜳ+–ap­çÊÀ¤,bw·[ùݱÃ#TŒº–[
Gæn|ëQÉ5³!©Ùúà·ó¼u(Ç^ãL”ú
8MˆýÖT¬ЃV`õíðÉñ®³&B9KµÈÆùš¯8€ÒW{>ršc´‰ñpšP£zt·vÂ¸zŸ¿é×ÎZo½Íàr¼tílgœÌdrE(^~üt„FÆ1Ä0L™Ÿµû×KI´ž°ž²d$øA\?*ùc²AÓg;­ìuGn»¡/HóèÚ:۝•JÀ=6cp\áߏ%ñ.»r„g€àCÀ«²@·¢ä"Lôo͐6uë)Mdƒ¹þ׊[íîÓ´PبÂRGYªÏ£Ì%Óµ’öÕ&Võt+ù'оEÆĸŠîAìËà婤O—Às^1”&¾
qòëŸñ¡ËW2‹<…¤|†å—)si$Ýh&óTïÆ¥ÜÃTVY8Ö²L÷>ú3ˆ{ ;Ò™%Ÿ›Ä¢Èô,š»
NôuxÓ]é‰l¸ÒÑ›‚[Cqó˜XS⸇C6|‰%p±ƒlÙ]9¶X™4¾»¬ÐÆáÛ!=ûAŒð?|O¥Ošýé9 aaÞ{|-Clm31}¿œÜi_è~…¬‰+•	¬Á<'?¦¬"i,\s,Áø6e€û£ñhÿnÉ‘Õý¹0¡Žú€¿b\c
:Äç#Epä ŸuïâsÿmU+_“‚fèHZôH=‰õԁ±…E½/ˆï"g{‡/güPß,þ7
ÜqRjr­A”¥]Öx?®È9h	FGj ý7à§Že­¡f3ÀDe_ïvò'ÇéTÙ@•Šk@9;Tæ-ƒJ-Ç÷É6¶î[= ·^µt`"Qkœ,íE`ÿòÞæ-¶[ÙnnêÏd.‹fŽ¨’ºô„;$àJòsÝ{ì/)Dåè™’2&鲍ØËÜJ*<cwÑ3cQ3`2?æîøÌïЋ`©©K­@³Š)L0h|GMá÷z’Ê¡!iÊ@#‘KYQëÖ¢¬ˆ© )§áF¾ç(B’üä•«:I•Ú’ã§Ô>4lþŽo•Ž
íqÒ~çæçrÛp‚Z±ýÌØ(7¢(OÖ7èø—o–ñÏ—#¥Å>jÿ‘‡¥4~3üf¤=¹y‡8—øv+N‚±B#P7OUêínLYˆã>Ó“ÁDyHb%Yf“F½v;HõTð^¹DÐC×<ª¾_äy}P
­|ˆJ°P¯8쑇peÕ4ß$ºb17	}ÝXw“ÒåÌ€+sœMa$eþ9*v‹×¢Ðw–k-ìo~—ž›Ö¨Ÿ{	%d:		Index	Address
	Unknown version.
	[Abbrev Number: %ld	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

    Offset  Kind          Name

   Link flags  : 
  Start of program headers:          
 Opcodes:

 Section to Segment mapping:

 The Directory Table (offset 0x%lx):

 The Directory Table is empty.

 The File Name Table (offset 0x%lx):

 The File Name Table is empty.

 The following switches are optional:

 [Use directory table entry %d]

 [Use file table entry %d]

%s:     file format %s

%sgroup section [%5u] `%s' [%s] contains %u sections:

'%s' relocation section at offset 0x%lx contains %ld bytes:

Address table:

Archive index:

Assembly dump of section %s

CU table:

Can't get contents for section '%s'.

Could not find unwind info section for 
Disassembly of section %s:

Displaying notes found at file offset 0x%08lx with length 0x%08lx:

Dynamic info segment at offset 0x%lx contains %d entries:

Dynamic section at offset 0x%lx contains %u entries:

Dynamic symbol information is not available for displaying symbols.

Elf file type is %s

File: %s

Hex dump of section '%s':

Histogram for `.gnu.hash' bucket list length (total of %lu buckets):

Histogram for bucket list length (total of %lu buckets):

Image fixups for needed library #%d: %s - ident: %lx

Image relocs

Library list section '%s' contains %lu entries:

No version information found in this file.

Options supported for -P/--private switch:

Primary GOT:

Program Headers:

Relocation section 
Section '%s' contains %d entries:

Section '%s' has no data to dump.

Section '%s' has no debugging data.

Section '.conflict' contains %lu entries:

Section '.liblist' contains %lu entries:

Section Header:

Section Headers:

String dump of section '%s':

Symbol table '%s' contains %lu entries:

Symbol table '%s' has a sh_entsize of zero!

Symbol table for image:

Symbol table of `.gnu.hash' for image:

Symbol table:

TU table:

The %s section is empty.

The decoding of unwind sections for machine type %s is not currently supported.

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:

ldinfo dump not supported in 32 bits environments

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
      --dwarf-check          Make additional dwarf internal consistency checks.      

      --exclude-symbols <list> Don't export <list>
      --export-all-symbols   Export all symbols to .def
      --identify-strict      Causes --identify to report error when multiple DLLs.
      --leading-underscore   All symbols should be prefixed by an underscore.
      --no-default-excludes  Clear default exclude symbols
      --no-export-all-symbols  Only export listed symbols
      --no-leading-underscore All symbols shouldn't be prefixed by an underscore.
      --plugin NAME      Load the specified plugin
      --use-nul-prefixed-import-tables Use zero prefixed idata$4 and idata$5.
     --yydebug                 Turn on parser debugging
     Library              Time Stamp          Checksum   Version Flags     Library              Time Stamp          Checksum   Version Flags
     [Reserved]     [unsupported opcode]     finish    %*s%*s%*s
    .debug_abbrev.dwo:       0x%s  0x%s
    .debug_line.dwo:         0x%s  0x%s
    .debug_loc.dwo:          0x%s  0x%s
    .debug_str_offsets.dwo:  0x%s  0x%s
    Arguments: %s
    Build ID:     Cannot decode 64-bit note in 32-bit build
    Creation date  : %.17s
    DW_MACRO_GNU_%02x arguments:     DW_MACRO_GNU_%02x has no arguments
    Global symbol table name: %s
    Image id: %s
    Image name: %s
    Invalid size
    Last patch date: %.17s
    Linker id: %s
    Location:     Malformed note - does not end with \0
    Malformed note - filenames end too early
    Malformed note - too short for header
    Malformed note - too short for supplied file count
    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
    Page size:     Provider: %s
    UNKNOWN DW_LNE_HP_SFC opcode (%u)
    Version:    --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: 0x%s
   Floating Point mode:    Header flags: 0x%08x
   Image id    : %s
   Language: %s
   Last modified  :    Length:        0x%s (%s)
   Link time:    Major id: %u,  minor id: %u
   Num:    Value          Size Type    Bind   Vis      Ndx Name
   Num:    Value  Size Type    Bind   Vis      Ndx Name
   Patch time:    Pointer Size:  %d
   Section contributions:
   Signature:     0x%s
   Type Offset:   0x%s
   Version:       %d
   [Index]    Name
   identity: %s
  # sc         value    section  type aux name/off
  %#06x:   Name index: %lx  %#06x:   Name: %s  %#06x: Parent %d, name index: %ld
  %#06x: Parent %d: %s
  %#06x: Rev: %d  Flags: %s  %#06x: Version: %d  %*s %*s Purpose
  %*s %10s %*s Purpose
  %-20s %10s	Description
  %4u %08x %3u   %u index entries:
  (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
  -D                           Use zero for symbol map timestamp
  -U                           Use actual symbol map timestamp (default)
  -D                           Use zero for symbol map timestamp (default)
  -U                           Use an actual symbol map timestamp
  -D --enable-deterministic-archives
                                   Produce deterministic output when stripping archives
  -U --disable-deterministic-archives
                                   Disable -D behavior (default)
  -D --enable-deterministic-archives
                                   Produce deterministic output when stripping archives (default)
  -U --disable-deterministic-archives
                                   Disable -D behavior
  -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
  -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-dwo                   Remove all DWO 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,
          =addr,=cu_index]
                           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>
  -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-dwo                   Remove all DWO 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-dwo                 Copy only DWO sections
     --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
     --dump-section <name>=<file>  Dump the contents of section <name> into <file>
     --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
  -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
  32 bit pointers:
  64 bit pointers:
  <unknown tag %d>:   @<file>      - read options from <file>
  ABI Version:                       %d
  Addr: 0x  Advance Line by %s to %d
  Advance PC by %s to 0x%s
  Advance PC by %s to 0x%s[%d]
  Advance PC by constant %s to 0x%s
  Advance PC by constant %s to 0x%s[%d]
  Advance PC by fixed size amount %s to 0x%s
  Class:                             %s
  Cnt: %d
  Compact model index: %d
  Compilation Unit @ offset 0x%s:
  Copy
  DWARF Version:               %d
  DW_CFA_??? (User defined call frame op: %#x)
  Data:                              %s
  Entry	Dir	Time	Size	Name
  Entry point address:                 Extended opcode %d:   Extension opcode arguments:
  File: %lx  File: %s  Flags  Flags:                             0x%lx%s
  Flags: %s  Version: %d
  For compilation unit at offset 0x%s:
  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 (0x%lx)
  Number of columns:       %d
  Number of program headers:         %ld  Number of section headers:         %ld  Number of slots:         %d

  Number of used entries:  %d
  OS/ABI:                            %s
  Offset          Info           Type           Sym. Value    Sym. Name
  Offset          Info           Type           Sym. Value    Sym. Name + Addend
  Offset into .debug_info section:     0x%lx
  Offset into .debug_info:  0x%lx
  Offset into .debug_line:     0x%lx
  Offset size:                 %d
  Offset table
  Offset:                      0x%lx
  Offset: %#08lx  Link: %u (%s)
  Opcode %d has %d args
  Opcode Base:                 %d
  Options for %s:
  Options passed to DLLTOOL:
  PPC hi-16:
  Personality routine:   Pointer Size:             %d
  Prologue Length:             %d
  Registers restored:   Rest are passed unmodified to the language driver
  Restore stack from frame pointer
  Return register: %s
  Section header string table index: %ld  Segment Sections...
  Segment Size:             %d
  Set File Name to entry %s in the File Name Table
  Set ISA to %lu
  Set ISA to %s
  Set basic block
  Set column to %s
  Set epilogue_begin to true
  Set is_stmt to %s
  Set prologue_end to true
  Size of area in .debug_info section: %ld
  Size of program headers:           %ld (bytes)
  Size of section headers:           %ld (bytes)
  Size of this header:               %ld (bytes)
  Size table
  Special opcode %d: advance Address by %s to 0x%s  Special opcode %d: advance Address by %s to 0x%s[%d]  Stack increment %d
  Tag        Type                         Name/Value
  Type           Offset             VirtAddr           PhysAddr
  Type           Offset   VirtAddr           PhysAddr           FileSiz  MemSiz   Flg Align
  Type           Offset   VirtAddr   PhysAddr   FileSiz MemSiz  Flg Align
  Type:                              %s
  Unhandled location type %u
  Unhandled magic
  Unknown opcode %d with operands:   Unknown section contexts
  Unsupported version
  Version def aux past end of section
  Version definition past end of section
  Version:                             %d
  Version:                           %d %s
  Version:                           0x%lx
  Version:                     %d
  Version:                  %d
  Version:                 %d
  [%3d] 0x%s  [%3d] Signature:  0x%s  Sections:   [-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
  [D]          - use zero for timestamps and uids/gids (default)
  [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]
  [U]          - use actual timestamps and uids/gids
  [U]          - use actual timestamps and uids/gids (default)
  [V]          - display the version number
  [a]          - put file(s) after [member-name]
  [b]          - put file(s) before [member-name] (same as [i])
  [bad block length]
  [c]          - do not warn if the library had to be created
  [f]          - truncate inserted file names
  [o]          - preserve original dates
  [reserved (%d)]
  [reserved]
  [s]          - create an archive index (cf. ranlib)
  [truncated block]
  [u]          - only replace files that are newer than current archive contents
  [v]          - be verbose
  code limit:        %08x
  d            - delete file(s) from the archive
  flags:             %08x
  flags:         0x%04x   hash offset:       %08x
  hash size:         %02x
  hash type:         %02x (%s)
  ident offset:      %08x (- %08x)
  import file off:   %u
  import strtab len: %u
  index entry %u: type: %08x, offset: %08x
  m[ab]        - move file(s) in the archive
  magic:         0x%04x (0%04o)    nbr code slots:    %08x
  nbr import files:  %u
  nbr relocs:        %u
  nbr sections:  %d
  nbr special slots: %08x (at offset %08x)
  nbr symbols:       %u
  nbr symbols:   %d
  opt hdr sz:    %d
  p            - print file(s) found in the archive
  page size:         %02x
  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
  scatter offset:    %08x
  scnlen: %08x  nreloc: %-6u
  scnlen: %08x  nreloc: %-6u  nlinno: %-6u
  spare1:            %02x
  spare2:            %08x
  string table len:  %u
  string table off:  %u
  symbols off:   0x%08x
  t            - display contents of archive
  time and date: 0x%08x  -   version:           %08x
  version:           %u
  version:    0x%08x    x[o]         - extract file(s) from the archive
 #: Segment name     Section name     Address
 %3u %3u  %s byte block:  (File Offset: 0x%lx) (addr_index: 0x%s): %s (alt indirect string, offset: 0x%s) (bytes into file)
 (bytes into file)
  Start of section headers:           (bytes)
 (end of tags at %08x)
 (indexed string: 0x%s): %s (indirect string, offset: 0x%s): %s (inlined by)  (location list) (no strings):
 (start == end) (start > end) (strings size: %08x):
 <%d><%lx>: ...
 <%d><%lx>: Abbrev Number: %lu <%d><%lx>: Abbrev Number: 0
 <corrupt: %14ld> <corrupt: out of range> Addr:  Addr: 0x At least one of the following switches must be given:
 Canonical gp value:  Convert addresses into line number/file name pairs.
 Convert an object file into a NetWare Loadable Module
 Copies a binary file, possibly transforming it in the process
 DW_MACINFO_define - lineno : %d macro : %s
 DW_MACINFO_end_file
 DW_MACINFO_start_file - lineno: %d filenum: %d
 DW_MACINFO_undef - lineno : %d macro : %s
 DW_MACINFO_vendor_ext - constant : %d string : %s
 DW_MACRO_GNU_%02x
 DW_MACRO_GNU_%02x - DW_MACRO_GNU_define - lineno : %d macro : %s
 DW_MACRO_GNU_define_indirect - lineno : %d macro : %s
 DW_MACRO_GNU_define_indirect_alt - lineno : %d macro offset : 0x%lx
 DW_MACRO_GNU_end_file
 DW_MACRO_GNU_start_file - lineno: %d filenum: %d
 DW_MACRO_GNU_start_file - lineno: %d filenum: %d filename: %s%s%s
 DW_MACRO_GNU_transparent_include - offset : 0x%lx
 DW_MACRO_GNU_transparent_include_alt - offset : 0x%lx
 DW_MACRO_GNU_undef - lineno : %d macro : %s
 DW_MACRO_GNU_undef_indirect - lineno : %d macro : %s
 DW_MACRO_GNU_undef_indirect_alt - lineno : %d macro offset : 0x%lx
 Display information about the contents of ELF format files
 Display information from object <file(s)>.
 Display printable strings in [file(s)] (stdin by default)
 Displays the sizes of sections inside binary files
 Entries:
 Generate an index to speed access to archives
 Global entries:
 If no addresses are specified on the command line, they will be read from stdin
 If no input file(s) are specified, a.out is assumed
 Lazy resolver
 Length  Number     %% of total  Coverage
 Line Number Statements:
 List symbols in [file(s)] (a.out by default).
 Local entries:
 Module pointer
 Module pointer (GNU extension)
 NONE NOTE: This section has relocations against it, but these have NOT been applied to this dump.
 Name (len: %u):  No Line Number Statements.
 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,
               =addr,=cu_index]
                         Display the contents of DWARF2 debug sections
 PLT lazy resolver
 Print a human readable interpretation of a COFF object file
 Removes symbols and sections from files
 Reserved entries:
 The options are:
 The options are:
  -A|-B     --format={sysv|berkeley}  Select output style (default is %s)
  -o|-d|-x  --radix={8|10|16}         Display numbers in octal, decimal or hex
  -t        --totals                  Display the total sizes (Berkeley only)
            --common                  Display total size for *COM* syms
            --target=<bfdname>        Set the binary file format
            @<file>                   Read options from <file>
  -h        --help                    Display this information
  -v        --version                 Display the program's version

 The options are:
  -I --input-target=<bfdname>   Set the input binary file format
  -O --output-target=<bfdname>  Set the output binary file format
  -T --header-file=<file>       Read <file> for NLM header information
  -l --linker=<linker>          Use <linker> for any linking
  -d --debug                    Display on stderr the linker command line
  @<file>                       Read options from <file>.
  -h --help                     Display this information
  -v --version                  Display the program's version
 The options are:
  -a - --all                Scan the entire file, not just the data section
  -f --print-file-name      Print the name of the file before each string
  -n --bytes=[number]       Locate & print any NUL-terminated sequence of at
  -<number>                   least [number] characters (default 4).
  -t --radix={o,d,x}        Print the location of the string in base 8, 10 or 16
  -o                        An alias for --radix=o
  -T --target=<BFDNAME>     Specify the binary file format
  -e --encoding={s,S,b,l,B,L} Select character size and endianness:
                            s = 7-bit, S = 8-bit, {b,l} = 16-bit, {B,L} = 32-bit
  @<file>                   Read options from <file>
  -h --help                 Display this information
  -v -V --version           Print the program's version number
 The options are:
  -a --ascii_in                Read input file as ASCII file
  -A --ascii_out               Write binary messages as ASCII
  -b --binprefix               .bin filename is prefixed by .mc filename_ for uniqueness.
  -c --customflag              Set custom flags for messages
  -C --codepage_in=<val>       Set codepage when reading mc text file
  -d --decimal_values          Print values to text files decimal
  -e --extension=<extension>   Set header extension used on export header file
  -F --target <target>         Specify output target for endianness.
  -h --headerdir=<directory>   Set the export directory for headers
  -u --unicode_in              Read input file as UTF16 file
  -U --unicode_out             Write binary messages as UFT16
  -m --maxlength=<val>         Set the maximal allowed message length
  -n --nullterminate           Automatic add a zero termination to strings
  -o --hresult_use             Use HRESULT definition instead of status code definition
  -O --codepage_out=<val>      Set codepage used for writing text file
  -r --rcdir=<directory>       Set the export directory for rc files
  -x --xdbg=<directory>        Where to create the .dbg C include file
                               that maps message ID's to their symbolic name.
 The options are:
  -a, --debug-syms       Display debugger-only symbols
  -A, --print-file-name  Print name of the input file before every symbol
  -B                     Same as --format=bsd
  -C, --demangle[=STYLE] Decode low-level symbol names into user-level names
                          The STYLE, if specified, can be `auto' (the default),
                          `gnu', `lucid', `arm', `hp', `edg', `gnu-v3', `java'
                          or `gnat'
      --no-demangle      Do not demangle low-level symbol names
  -D, --dynamic          Display dynamic symbols instead of normal symbols
      --defined-only     Display only defined symbols
  -e                     (ignored)
  -f, --format=FORMAT    Use the output format FORMAT.  FORMAT can be `bsd',
                           `sysv' or `posix'.  The default is `bsd'
  -g, --extern-only      Display only external symbols
  -l, --line-numbers     Use debugging information to find a filename and
                           line number for each symbol
  -n, --numeric-sort     Sort symbols numerically by address
  -o                     Same as -A
  -p, --no-sort          Do not sort the symbols
  -P, --portability      Same as --format=posix
  -r, --reverse-sort     Reverse the sense of the sort
 The options are:
  -h --help        Display this information
  -v --version     Print the program's version number
 The options are:
  -i --input=<file>            Name input file
  -o --output=<file>           Name output file
  -J --input-format=<format>   Specify input format
  -O --output-format=<format>  Specify output format
  -F --target=<target>         Specify COFF target
     --preprocessor=<program>  Program to use to preprocess rc file
     --preprocessor-arg=<arg>  Additional preprocessor argument
  -I --include-dir=<dir>       Include directory when preprocessing rc file
  -D --define <sym>[=<val>]    Define SYM when preprocessing rc file
  -U --undefine <sym>          Undefine SYM when preprocessing rc file
  -v --verbose                 Verbose - tells you what it's doing
  -c --codepage=<codepage>     Specify default codepage
  -l --language=<val>          Set language when reading rc file
     --use-temp-file           Use a temporary file instead of popen to read
                               the preprocessor output
     --no-use-temp-file        Use popen (default)
 The options are:
  -q --quick       (Obsolete - ignored)
  -n --noprescan   Do not perform a scan to convert commons into defs
  -d --debug       Display information about what is being done
  @<file>          Read options from <file>
  -h --help        Display this information
  -v --version     Print the program's version number
 The options are:
  @<file>                      Read options from <file>
 The options are:
  @<file>                Read options from <file>
  -a --addresses         Show addresses
  -b --target=<bfdname>  Set the binary file format
  -e --exe=<executable>  Set the input file name (default is a.out)
  -i --inlines           Unwind inlined functions
  -j --section=<name>    Read section-relative offsets instead of addresses
  -p --pretty-print      Make the output easier to read for humans
  -s --basenames         Strip directory names
  -f --functions         Show function names
  -C --demangle[=style]  Demangle function names
  -h --help              Display this information
  -v --version           Display the program's version

 The options are:
  @<file>                Read options from <file>
  -h --help              Display this information
  -v --version           Display the program's version

 Truncated .text section
 Unhandled version
 Unknown macro opcode %02x seen
 Update the ELF header of ELF files
 [without DW_AT_frame_base] address beyond section size
 and Line by %s to %d
 at  at offset 0x%lx contains %lu entries:
 bad symbol index: %08lx command specific modifiers:
 commands:
 cpusubtype: %08lx
 cputype   : %08lx (%s)
 emulation options: 
 filetype  : %08lx (%s)
 flags     : %08lx ( generic modifiers:
 length: %08x
 magic     : %08lx
 magic : %08x (%s)
 ncmds     : %08lx (%lu)
 no tags found
 number of CTL anchors: %u
 optional:
 program interpreter reserved  : %08x
 sizeofcmds: %08lx
 tags at %08x
 type: 0x%lx, namesize: 0x%08lx, descsize: 0x%08lx
#lines %d #sources %d%08x: <unknown>%ld: .bf without preceding function%ld: unexpected .ef
%lu
%s
 (header %s, data %s)
%s %s%c0x%s never used%s exited with status %d%s has no archive index
%s is not a library%s is not a valid archive%s section data%s: %ld bytes remain in the symbol table, but without corresponding entries in the index table
%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: contains corrupt thin archive: %s
%s: debuglink section already exists%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: the archive has an index but no symbols
%s: the archive index is empty
%s: the archive index is supposed to have %ld entries of %d bytes, but the size is only %ld
%s: unable to dump the index as none was found
%s: unexpected EOF%s: warning: %s: warning: shared libraries can not have uninitialized data%s: warning: unknown size for field `%s' in struct%s:%d: Ignoring rubbish found on this line%s:%d: garbage found at end of line%s:%d: missing new symbol name%s:%d: premature end of file'%s''%s' is not an ordinary file
'%s': No such file'%s': No such file
(DW_OP_GNU_implicit_pointer in frame info)(DW_OP_call_ref in frame info)(ROMAGIC: readonly sharablee text segments)(TOCMAGIC: readonly text segments and TOC)(Unknown location op)(Unknown: %s)(User defined location op)(Using the expected size of %d for the rest of this dump)
(WRMAGIC: writable text segments)(bad offset: %u)(base address selection entry)
(base address)
(declared as inline and inlined)(declared as inline but ignored)(dumpx format - aix4.3 / 32 bits)(dumpxx format - aix5.0 / 64 bits)(implementation defined: %s)(inlined)(not inlined)(start == end)(start > end)(undefined)(unknown accessibility)(unknown case)(unknown convention)(unknown type)(unknown virtuality)(unknown visibility)(user defined type)(user defined))
*invalid**undefined*, <unknown>, Base: , Semaphore: , relocatable, relocatable-lib, unknown ABI, unknown CPU, unknown ISA, unknown v850 architecture variant.debug_abbrev section not zero terminated
.debug_info offset of 0x%lx in %s section does not point to a CU header.
.debug_macro section not zero terminated
128-bit MSA
16-byte
2 bytes
2's complement, big endian2's complement, little endian32-bit relocation data4 bytes
4-byte
64-bit relocation data8-byte
8-byte and up to %d-byte extended
8-byte, except leaf SP
:
  No symbols
: architecture variant: : duplicate value
: expected to be a directory
: expected to be a leaf
: unknown: unknown extra flag bits also present<End of list>
<OS specific>: %d<corrupt string table index: %3ld><corrupt: %<corrupt: %14ld><corrupt: %19ld><corrupt: %9ld><corrupt><index offset is too big><indirect index offset is too big><localentry>: %d<no .debug_addr section><no .debug_str section><no .debug_str.dwo section><no .debug_str_offsets section><no .debug_str_offsets.dwo section><no-name><none><offset is too big><other>: %x<processor specific>: %d<string table index: %3ld><unknown addend: %lx><unknown: %lx><unknown: %x><unknown><unknown>: %d<unknown>: %lx<unknown>: %x<unknown>: 0x%xA codepage was specified switch `%s' and UTF16.
AccessAdded exports to output fileAdding exports to output fileAddressAny
Any MSA or not
Application
Application or Realtime
Archive member uses long names, but no longname table found
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 C6000Bogus end-of-siblings marker detected at offset %lx in %s 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 convert existing library %s to thin formatCannot convert existing thin library %s to normal formatCannot 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 binary %s at offset 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 2014 Free Software Foundation, Inc.
Core header:
Corrupt ARM compact model table entry: %x 
Corrupt file name table entry
Corrupt header in group section `%s'
Corrupt header in the %s section.
Corrupt note: only %d bytes remain, not enough for a full note
Corrupt unit length (0x%s) found in section %s
Could not locate '%s'.  System error message: %s
Could not locate .ARM.extab section containing 0x%lx.
Couldn't get demangled builtin type
Created lib fileCreating library file: %sCreating stub file: %sCurrent open archive is %s
DERIVED TYPEDIE at offset %lx refers to abbreviation number %lu which does not exist
DLLTOOL name    : %s
DLLTOOL options : %s
DRIVER name     : %s
DRIVER options  : %s
DSBT addressing not used
DSBT addressing used
DW_FORM_GNU_str_index indirect offset too big: %s
DW_FORM_GNU_str_index offset too big: %s
DW_FORM_data8 is unsupported when sizeof (dwarf_vma) != 8
DW_FORM_strp offset too big: %s
DW_LNE_define_file: Bad opcode length
DW_MACRO_GNU_start_file used, but no .debug_line offset provided.
DW_OP_GNU_push_tls_address or DW_OP_HP_unknownDYN (Shared object file)Data addressing position-dependent
Data addressing position-independent, GOT far from DP
Data addressing position-independent, GOT near DP
Data sizeDebug info is corrupted, abbrev offset (%lx) is larger than abbrev section size (%lx)
Debug info is corrupted, length of CU at %s extends beyond end of section (length = %s)
Decoded dump of debug contents of section %s:

Deleting temporary base file %sDeleting temporary def file %sDeleting temporary exp file %sDemangled name is not a function
Dependency audit libraryDisplaying the debug contents of section %s is not yet supported.
Don't know about relocations on this machine architecture
Done reading %sDuplicate symbol entered into keyword list.Dynamic relocs:
Dynamic symbols:
ELF Header:
ERROR: Bad section length (%d > %d)
ERROR: Bad subsection length (%d > %d)
EXEC (Executable file)EndEnd of Sequence

Entry point Enum Member offset %xError, duplicate EXPORT with ordinals: %sException table:
Excluding symbol: %sExecution of %s failedFORMAT is one of rc, res, or coff, and is deduced from the file name
extension if not specified.  A single file name is an input file.
No input-file is stdin, default rc.  No output-file is stdout, default rc.
Failed to determine last chain length
Failed to print demangled template
Failed to read in number of buckets
Failed to read in number of chains
File %s is not an archive so its index cannot be displayed.
File Attributes
File contains multiple dynamic string tables
File contains multiple dynamic symbol tables
File contains multiple symtab shndx tables
File header:
File name                            Line number    Starting address
Filter libraryFlags:For Mach-O files:
  header         Display the file header
  section        Display the segments and sections commands
  map            Display the section map
  load           Display the load commands
  dysymtab       Display the dynamic symbol table
  codesign       Display code signature
  seg_split_info Display segment split info
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
  ldinfo      Display loader info in core files
Further warnings about bogus end-of-sibling markers suppressed
GOT A %x
Generated exports fileGenerating export file: %sGeneric
Global Offset Table dataHard float
Hard float (MIPS32r2 64-bit FPU)
Hard float (double precision)
Hard float (single precision)
Hard or soft float
ID directory entryID resourceID subdirectoryIEEE numeric overflow: 0xIEEE string length overflow: %u
IEEE unsupported complex type size %u
IEEE unsupported float type size %u
IEEE unsupported integer type size %u
Idx Name          Size      VMA               LMA               File off  AlgnIdx Name          Size      VMA       LMA       File off  AlgnImport files:
Import library `%s' specifies two or more dllsIn archive %s:
In nested archive %s:
Index of archive %s: (%ld entries, 0x%lx bytes in the symbol table)
InitialInput file '%s' is not readable
Input file '%s' is not readable.
Input file `%s' ignores binary architecture parameter.Interface Version: %sInternal 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
Internal error: out of space in the shndx pool.
Invalid address size in %s section!
Invalid extension opcode form %s
Invalid maximum operations per insn.
Invalid option '-%c'
Invalid radix: %s
Invalid sh_entsize
Keeping temporary base file %sKeeping temporary def file %sKeeping temporary exp file %sKey to Flags:
  W (write), A (alloc), X (execute), M (merge), S (strings)
  I (info), L (link order), G (group), T (TLS), E (exclude), x (unknown)
  O (extra OS processing required) o (OS specific), p (processor specific)
Key to Flags:
  W (write), A (alloc), X (execute), M (merge), S (strings), l (large)
  I (info), L (link order), G (group), T (TLS), E (exclude), x (unknown)
  O (extra OS processing required) o (OS specific), p (processor specific)
LIBRARY: %s base: %xLarge
Last stabs entries before error:
Library rpath: [%s]Library runpath: [%s]Library soname: [%s]Line numbers for %s (%u)
List of blocks List of source filesList of symbolsLoader header:
Location list starting at offset 0x%lx is not terminated.
Location lists in %s section start at 0x%s
MODULE***
MSP430
MSP430X
Mach-O header:
Machine '%s' not supportedMemory
Memory section %s+%xMicrocontroller
Missing Version Needs auxillary information
Missing Version Needs information
Missing knowledge of 32-bit reloc types used in DWARF sections of machine number %d
Multiple renames of section %sMust provide at least one of -o or --dllname optionsNAME: %s base: %xNDS32 elf flags sectionNONENONE (None)NT_386_IOPERM (x86 I/O permissions)NT_386_TLS (x86 TLS information)NT_ARCH (architecture)NT_ARM_HW_BREAK (AArch hardware breakpoint registers)NT_ARM_HW_WATCH (AArch hardware watchpoint registers)NT_ARM_TLS (AArch TLS registers)NT_ARM_VFP (arm VFP registers)NT_AUXV (auxiliary vector)NT_FILE (mapped files)NT_FPREGS (floating point registers)NT_FPREGSET (floating point registers)NT_GNU_ABI_TAG (ABI version tag)NT_GNU_BUILD_ID (unique build ID bitstring)NT_GNU_GOLD_VERSION (gold version)NT_GNU_HWCAP (DSO-supplied software HWCAP info)NT_LWPSINFO (lwpsinfo_t structure)NT_LWPSTATUS (lwpstatus_t structure)NT_PPC_VMX (ppc Altivec registers)NT_PPC_VSX (ppc VSX registers)NT_PRPSINFO (prpsinfo structure)NT_PRSTATUS (prstatus structure)NT_PRXFPREG (user_xfpregs structure)NT_PSINFO (psinfo structure)NT_PSTATUS (pstatus structure)NT_S390_CTRS (s390 control registers)NT_S390_HIGH_GPRS (s390 upper register halves)NT_S390_LAST_BREAK (s390 last breaking event address)NT_S390_PREFIX (s390 prefix register)NT_S390_SYSTEM_CALL (s390 system call restart data)NT_S390_TDB (s390 transaction diagnostic block)NT_S390_TIMER (s390 timer register)NT_S390_TODCMP (s390 TOD comparator register)NT_S390_TODPREG (s390 TOD programmable register)NT_SIGINFO (siginfo_t data)NT_STAPSDT (SystemTap probe descriptors)NT_TASKSTRUCT (task structure)NT_VERSION (version)NT_VMS_EIDC (consistency check)NT_VMS_FPMODE (FP mode)NT_VMS_GSTNAM (sym table name)NT_VMS_IMGBID (build id)NT_VMS_IMGID (image id)NT_VMS_IMGNAM (image name)NT_VMS_LINKID (link id)NT_VMS_LNM (language name)NT_VMS_MHD (module header)NT_VMS_SRC (source files)NT_WIN32PSTATUS (win32_pstatus structure)NT_X86_XSTATE (x86 XSAVE extended state)N_LBRAC not within function
NameName                  Value           Class        Type         Size             Line  Section

Name                  Value   Class        Type         Size     Line  Section

Name index: %ld
Name: %s
Nbr entries: %-8u Size: %08x (%u)
NdxNetBSD procinfo structureNo %s section present

No comp units in %s section ?No entry %s in archive.
No filename following the -fo option.
No location lists in .debug_info section!
No mangling for "%s"
No member named `%s'
No note segments present in the core file.
No range lists in .debug_info section.
NoneNone
Not an ELF file - it has the wrong magic bytes at the start
Not enough memory for a debug info array of %u entriesNot needed object: [%s]
Not used
Nothing to do.
OS Specific: (%x)Offset %s used as value for DW_AT_import attribute of DIE at offset %lx is too big.
Offset 0x%lx is bigger than .debug_loc section size.
Offset into section %s too big: %s
Only -X 32_64 is supportedOnly DWARF 2 and 3 aranges are currently supported.
Only DWARF 2 and 3 pubnames are currently supported
Only DWARF version 2, 3 and 4 line info is currently supported.
Only GNU extension to DWARF 4 of %s is currently supported.
Opened temporary file: %sOperating System specific: %lxOption -I is deprecated for setting the input format, please use -J instead.
Out of memory
Out of memory allocating 0x%lx bytes for %s
Out of memory allocating dump request table.
Out of memory reading long symbol names in archive
Out of memory whilst trying to convert the archive symbol index
Out of memory whilst trying to read archive index symbol table
Out of memory whilst trying to read archive symbol index
Output file cannot represent architecture `%s'OwnerPT_GETFPREGS (fpreg structure)PT_GETREGS (reg structure)Page OffsetPascal file name not supportedPath components stripped from dllname, '%s'.Pointer size + Segment size is not a power of two.
Print a human readable interpretation of a SYSROFF object file
Print width has not been initialized (%d)Procedure Linkage Table dataProcessed def fileProcessed definitionsProcessing def file: %sProcessing definitionsProcessor Specific: %lxProcessor Specific: (%x)REL (Relocatable file)Range lists in %s section start at 0x%lx
Raw dump of debug contents of section %s:

Reading section failedRealtime
Refuse to unwindRegister %dRelocations for %s (%u)
Report bugs to %s
Report bugs to %s.
Reserved length value (0x%s) found in section %s
Restricted Large
SUM IS %x
SYMBOL INFOScanning object file %sSection %d has invalid sh_entsize of %Section %d was not dumped because it does not exist!
Section %s too small for %d hash table entries
Section %s too small for offset and size tables
Section %s too small for shndx pool
Section '%s' was not dumped because it does not exist!
Section Attributes:Section headers (at %u+%u=0x%08x to 0x%08x):
Section headers are not available!
Sections:
Seg Offset           Type                             SymVec DataType
Seg Offset   Type                            Addend            Seg Sym Off
Segments and Sections:
Shared library: [%s]Single-precision hard float
Skipping unexpected relocation at offset 0x%lx
Skipping unexpected relocation type %s
Small
Soft float
Source file %sStack offset %xStandalone AppStartStruct Member offset %xSucking in info from %s section in %sSupported architectures:Supported targets:Sym.Val.Symbol  %s, tag %d, number %dSymbol Attributes:Symbols table (strtable at 0x%08x)Syntax error in def file %s:%dTOC:
The address table data in version 3 may be wrong.
The 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: %sToo many N_RBRACs
Tried `%s'
Tried file: %sTrue
Truncated header in the %s section.
TypeType file number %d out of range
Type index number %d out of range
Type-check section:
UNKNOWN (%*.*lx)UNKNOWN (%u): length %d
UNKNOWN: Unable to change endianness of input file(s)Unable to determine dll name for `%s' (not an import library?)Unable to determine the length of the dynamic string table
Unable to determine the number of symbols to load
Unable to find program interpreter name
Unable to load/parse the .debug_info section, so cannot interpret the %s section.
Unable to locate %s section!
Unable to open base-file: %sUnable to open object file: %s: %sUnable to open temporary assembler file: %sUnable to read in 0x%lx bytes of %s
Unable to read in dynamic data
Unable to read program interpreter name
Unable to recognise the format of fileUnable to recognise the format of the input file `%s'Unable to seek to 0x%lx for %s
Unable to seek to end of file
Unable to seek to end of file!
Unable to seek to start of dynamic information
Undefined N_EXCLUndefined symbolUnexpected demangled varargs
Unexpected type in v3 arglist demangling
Unhandled MN10300 reloc type found after SYM_DIFF relocUnhandled MSP430 reloc type found after SYM_DIFF relocUnhandled data length: %d
Unknown ARM compact model index encountered
Unknown AT value: %lxUnknown FORM value: %lxUnknown OSABI: %s
Unknown TAG value: %lxUnknown format '%c'
Unknown location list entry type 0x%x.
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 architecture type %d encountered when decoding unwind tableUnsupported architecture type %d encountered when processing unwind tableUnsupported version %lu.
Usage %s <option(s)> <object-file(s)>
Usage: %s <option(s)> <file(s)>
Usage: %s <option(s)> elffile(s)
Usage: %s <option(s)> in-file(s)
Usage: %s [emulation options] [-]{dmpqrstx}[abcDfilMNoPsSTuvV] [--plugin <name>] [member-name] [count] archive-file file...
Usage: %s [emulation options] [-]{dmpqrstx}[abcDfilMNoPsSTuvV] [member-name] [count] archive-file file...
Usage: %s [option(s)] [addr(s)]
Usage: %s [option(s)] [file(s)]
Usage: %s [option(s)] [in-file [out-file]]
Usage: %s [option(s)] [input-file]
Usage: %s [option(s)] [input-file] [output-file]
Usage: %s [option(s)] in-file
Usage: %s [option(s)] in-file [out-file]
Usage: %s [options] archive
Usage: readelf <option(s)> elf-file(s)
Using `%s'
Using file: %sUsing popen to read preprocessor output
Using temporary file `%s' to read preprocessor output
Using the --size-sort and --undefined-only options togetherVERSION %d.%d
Value for `N' must be positive.Version %ld
Version 4 does not support case insensitive lookups.
Version 5 does not include inlined functions.
Version 6 does not include symbol attributes.
Version Needs sectionVirtual address 0x%lx not located in any PT_LOAD segment.
VisibleWANTED %x!!
Warning, ignoring duplicate EXPORT %s %d,%dWarning, machine type (%d) not supported for delayimport.Warning: %s: %s
Warning: '%s' has negative size, probably it is too largeWarning: '%s' is not an ordinary fileWarning: changing type size from %d to %d
Warning: could not locate '%s'.  reason: %sWarning: ignoring previous --reverse-bytes value of %dWarning: truncating gap-fill from 0x%s to 0x%xWhere[%3u] 0x%lx - 0x%lx
[%3u] 0x%lx 0x%lx [<unknown>: 0x%x] [Spare][Truncated opcode]
[pad][truncated]
`N' is only meaningful with the `x' and `d' options.`u' is not meaningful with the `D' option.`u' is only meaningful with the `r' option.`u' modifier ignored since `D' is the default (see `U')`x' cannot be used on thin archives.acceleratorarchitecture %s unknownarchitecture: %s, argumentsarray [%d] ofattributesbad ATN65 recordbad C++ field bit pos or sizebad dynamic symbol
bad format for %sbad mangled name `%s'
bad misc recordbad register: bad type for C++ method functionbadly formed extended line op encountered!
bfd_coff_get_auxent failed: %sbfd_coff_get_syment failed: %sbfd_open failed open stub file: %s: %sbfd_open failed reopen stub file: %s: %sbig endianblocksblocks left on stack at endbyte number must be less than interleavebyte number must be non-negativecan not determine type of file `%s'; use the -J optioncan't add paddingcan't add section '%s'can't create %s file `%s' for output.
can't create debugging sectioncan't create section `%s'can't disassemble for architecture %s
can't dump section '%s' - it does not existcan't dump section - it has no contentscan't dump section - it is emptycan'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 core read headercannot 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 code signature datacannot read headercannot read line number entrycannot read line numberscannot read loader info tablecannot read relocation entrycannot read relocationscannot read section headercannot read section headerscannot read segment split infocannot read strings tablecannot read strings table lengthcannot read symbol aux entrycannot read symbol entrycannot read symbol tablecannot reverse bytes: length of section %s must be evenly divisible by %dcodeconflictconflict list found without a dynamic symbol table
const/volatile indicator missingcontrol data requires DIALOGEXcopy from `%s' [%s] to `%s' [%s]
copy from `%s' [unknown] to `%s' [unknown]
corrupt Tag_GNU_Power_ABI_Struct_Returncorrupt attribute
corrupt index table entry: %x
corrupt tag
corrupt vendor attribute
could not create temporary file to hold stripped copycould not create temporary file whilst writing archivecould not determine the type of symbol number %ld
could not open section dump filecould not retrieve section contentscouldn'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 encountereddefine new File Table entry
dialog 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 %sdwo_iddynamic sectiondynamic section image fixupsdynamic section image relocationsdynamic string sectiondynamic string tabledynamic stringsendianness unknownenum definitionenum ref to %serror copying private BFD dataerror in private header dataerror: %s both copied and removederror: %s both sets and alters LMAerror: %s both sets and alters VMAerror: instruction width must be positiveerror: prefix strip must be non-negativeerror: section %s matches both remove and copy optionserror: 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
flag = %d, vendor = <corrupt>
flags 0x%08x:
fontdirfontdir device namefontdir face namefontdir headerfunctionfunction returninggglobalgroup cursorgroup cursor headergroup icongroup icon headerhas childrenhelp ID requires DIALOGEXhelp sectionicon file `%s' does not contain icon dataignoring the alternative valueillegal type indexillegal variable indexinput and output files must be differentinput file does not seems to be UFT16.
input file named both on command line and with INPUTinterleave must be positiveinterleave start byte must be set with --byteinterleave width must be less than or equal to interleave - byte`interleave width must be positiveinternal error -- this option not implementedinternal stat error on %sinvalid argument to --format: %sinvalid codepage specified.
invalid index into symbol array
invalid integer argument %sinvalid minimum string length %dinvalid numberinvalid option -f
invalid string lengthinvalid value specified for pragma code_page.
length %d [liblist section dataliblist string tablelineno  symndx/paddr
little endianmake .bss sectionmake .nlmsections sectionmake sectionmenu headermenuex headermenuex offsetmenuitemmenuitem headermessage sectionmissing index typemissing required ASNmissing required ATN65module sectionmore than one dynamic segment
named directory entrynamed resourcenamed subdirectoryno .dynamic section in the dynamic segment
no .except section in file
no .loader section in file
no .typchk section in file
no argument types in mangled string
no childrenno entry %s in archive
no entry %s in archive %s!no export definition file provided.
Creating one, but that may not be what you wantno infono 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 relocationnote with invalid namesz and/or descsz found at offset 0x%lx
notesnull terminated unicode stringnumber of bytes to reverse must be positive and evennumeric overflowoffset: %08xoffset: %s option -P/--private not supported by this fileoptionsotherout of memory parsing relocs
overflow - nreloc: %u, nlnno: %u
overflow when adjusting relocation against %sparse_coff_type: Bad type code 0x%xpointer topop frame {possibly corrupt ELF file header - it has a non-zero section header offset, but no section headers
possibly corrupt ELF header - it has a non-zero program header offset, but no program headerspreprocessing failed.program headerspwait returns: %sreading %s section of %s failed: %sreference parameter is not a pointerrelocation count is negativeresource IDresource dataresource data sizeresource type unknownrpc sectionrun: %s %sssection %s %d %d address %x size %x number %d nrelocs %dsection %u: sh_link value of %u is larger than the number of sections
section '%s' has the NOBITS type - its contents are unreliable.
section '%s' mentioned in a -j option, but not found in any input filesection .loader is too short
section 0 in group section [%5u]
section [%5u] in group section [%5u] > maximum section [%5u]
section [%5u] in group section [%5u] already in group section [%5u]
section contentssection datasection definition at %x size %x
section headerssegment split info is not nul terminatedset .bss vmaset .data sizeset .nlmsection contentsset .nlmsections sizeset Address to 0x%s
set Discriminator to %s
set section alignmentset section flagsset section sizeset start addresssh_entsize is zero
shared sectionsignaturesize %d size: %s skipping invalid relocation offset 0x%lx in section %s
skipping invalid relocation symbol index 0x%lx in section %s
skipping unexpected symbol type %s in %ld'th relocation in section %s
sorry - this program has been built without plugin support
sp = sp + %ldstab_int_type: bad size %ustack overflowstack underflowstat failed on bitmap file `%s': %sstat failed on file `%s': %sstat failed on font file `%s': %sstat returns negative size for `%s'staticstring tablestring_hash_lookup failed: %sstringtable stringstringtable string lengthstructure definitionstructure ref to %sstructure ref to UNKNOWN structstub section sizessubprocess got fatal signal %dsupport not compiled in for %ssupported flags: %ssymbol informationsymbol table section indiciessymbolstarget specific dump '%s' not supportedthe .dynamic section is not contained within the dynamic segment
the .dynamic section is not the first section in the dynamic segment.
this target does not support %lu alternative machine codestreating that number as an absolute e_machine value insteadtry to add a ill language.two different operation options specifiedtypeunable 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 formatunknown 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 qualifierunused5unused6unused7unwind dataunwind infounwind tableuser defined: variablevars %dversion dataversion defversion def auxversion definition sectionversion length %d does not match resource length %luversion needversion need aux (2)version need aux (3)version stringversion string tableversion stringtableversion symbol dataversion var infoversion varfileinfowait: %swarning: CHECK procedure %s not definedwarning: EXIT procedure %s not definedwarning: FULLMAP is not supported; try ld -Mwarning: No version number givenwarning: START procedure %s not definedwarning: could not create temporary file whilst copying '%s', (error: %s)warning: could not locate '%s'.  System error message: %swarning: file alignment (0x%s) > section alignment (0x%s)warning: input and output formats are not compatiblewarning: optional 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.24.90
Report-Msgid-Bugs-To: bug-binutils@gnu.org
POT-Creation-Date: 2014-02-10 09:42+1030
PO-Revision-Date: 2014-11-02 19:39+0200
Last-Translator: Jorma Karvonen <karvonen.jorma@gmail.com>
Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>
Language: fi
X-Bugs: Report translation errors to the Language-Team address.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
X-Poedit-Language: Finnish
X-Poedit-Country: FINLAND
X-Poedit-SourceCharset: utf-8
X-Generator: KBabel 1.11.2
	%d:		Indeksi	Osoite
	Tuntematon versio.
	[Lyhennenumero: %ld	koodisivuasetuksia ei oteta huomioon.


Symboleja kohteesta %s:



Symbolit kohteesta %s[%s]:



Määrittelemättömiä symboleja kohteesta %s:



Määrittelemättömiä symboleja kohteesta %s[%s]:


      [Pyydetään ohjelmatulkkia: %s]
    Osoite            Pituus

    Osoite    Pituus

    Siirros	Nimi

    Siirros  Lajittelu     Nimi

   Linkitysliput  : 
  Ohjelmaotsakkeiden alku:              
 Käskykoodit:

 Lohkosta segmenttiin ḱuvaus:

 Hakemistotaulu (siirros 0x%lx):

 Hakemistotaulu on tyhjä.

 Tiedostonimitaulu (siirros 0x%lx):

 Tiedostonimitaulu on tyhjä.

 Seuraavat valitsimet ovat valinnaisia:

 [Käytä hakemistotaulualkiota %d]

 [Käytä tiedostotaulualkiota %d]

%s:     tiedostomuoto %s

%sryhmälohko [%5u] ”%s” [%s] sisältää %u lohkoa:

’%s’ uudelleensijoituslohko siirroksessa 0x%lx sisältää %ld tavua:

Osoitetaulu:

Arkistoindeksi:

Lohkon %s assembly-vedos

Käännösyksikkötaulu:

Lohkon ’%s’ sisältöjä ei saada.

Ei voitu löytää palautustietolohkoja kohteelle 
Lohkon %s disassemblointi:

Näytetään notes-segmenttejä, jotka löytyivät tiedostosiirroksessa 0x%08lx pituudella 0x%08lx:

Dynaaminen info-segmentti siirroksessa 0x%lx sisältää %d alkiota:

Dynaaminen lohko siirroksessa 0x%lx sisältää %u alkiota:

Dynaamisia symbolitietoja ei ole näytettäville symboleille.

Elf-tiedostotyyppi on %s

Tiedosto: %s

Lohkon ’%s’ heksadesimaalilukuvedos:

”.gnu.hash”-bucket-luettelopituuden histogrammi (yhteensä %lu bucketista):

Bucket-luettelopituuden histogrammi (yhteensä %lu bucketista):

Kuvakorjaukset tarvitulle kirjastolle #%d: %s - ident: %lx

Vedos reloc-tietueet

Kirjastoluettelolohko ’%s’ sisältää %lu alkiota:

Tästä tiedostosta ei löytynyt versiotietoja.

Valitsimet, jotka on tuettu -P/--private -argumentille:

Ensisijainen GOT:

Ohjelmaotsakkeet:

Uudelleensijoituslohkon 
Lohko ’%s’ sisältää %d alkiota:

Lohkossa ’%s’ ei ole vedostettavaa dataa.

Lohkossa ’%s’ ei ole vianjäljitysdataa.

Lohko ’.conflict’ sisältää %lu alkiota:

Lohko ’.liblist’ sisältää %lu alkiota:

Lohko-otsake:

Lohko-otsakkeet:

Lohkon ’%s’ merkkijonovedos:

Symbolitaulu ’%s’ sisältää %lu alkiota:

Symbolitaulussa ’%s’ on nolla sh_entsize-kohdetta!

Symbolitaulu tiedostovedokselle:

Symbolitaulu ”.gnu.hash” tiedostovedokselle:

Symbolitaulu:

Käännösyksikkötaulu:

Lohko %s on tyhjä.

Palautuslohkojen dekoodausta konetyypille %s ei nykyisin tueta.

Ohjelmaotsakkeita on %d kpl, alkaen siirroksesta 
Tässä tiedostossa ei ole dynaamisia uudelleensijoituksia.

Tässä tiedostossa ei ole ohjelmaotsakkeita.

Tässä tiedostossa ei ole uudelleensijoituksia.

Tässä tiedostossa ei ole lohkoryhmiä.

Tässä tiedostossa ei ole lohkoja.

Tässä tiedostossa ei ole lohkoja ryhmille.

Tässä tiedostossa ei ole palautuslohkoja.

Tässä tiedostossa ei ole dynaamista lohkoa.

Unwind-lohko 
Palautustauluindeksi ’%s’ siirroksessa 0x%lx sisältää %lu alkiota:

Versiomäärittelylohko ’%s’ sisältää %u alkiota:

Versiotarpeet-lohko ’%s’ sisältää %u alkiota:

Versiosymbolilohko ’%s’ sisältää %d alkiota:

ldinfo-vedosta ei tueta 32-bittiympäristöissä

aloitusosoite 0x                 TiedostoKoko       MuistiKoko          Liput  Tasaus
            Liput: %08x         mahdolliset <koneet>: arm[_interwork], i386, mcore[-elf]{-le|-be}, ppc, thumb
       %s -M [<mri-skripti]
       Liput
       Koko              KokonaisKoko     Liput  Link  Tied. Tasaus
       Koko              KokonaisKoko     Tiedot            Tasaus
       Tyyppi           Osoite            Siirros           Linkki
       Tyyppi          Osoite   Siirr. Koko   Yht  LnkTdt Tasaus
       Tyyppi          Osoite          Siirros Koko   Yht  Lk Tdt Tasaus
   -U --add-underscore              Lisää alaviivat rajapintakirjaston std-kutsusymboleihin.
      --dwarf-depth=N        Älä näytä DIE-kohteita syvyydellä N tai syvemmällä
      --dwarf-start=N        Näytä DIE-kohteet aloittaen numerolla N, samalla syvyydellä
                             tai syvemmällä
      --dwarf-check          Tee lisää dwarf-sisäisiä yhteensopivuustarkistuksia.    

      --exclude-symbols <lista>     Älä vie <listan> symboleja
      --export-all-symbols          Vie kaikki symbolit .def-tiedostoon
      --identify-strict      Saa valitsimen --identify ilmoittamaan virheestä kun DLL-moduleita on useita.
      --leading-underscore   Kaikkiin symboleihin pitäisi liittää alaviiva etuliitteenä.
      --no-default-excludes         Nollaa oletuspoissulkevat symbolit
      --no-export-all-symbols       Vie vain luetellut symbolit
      --no-leading-underscore Kaikkiin symboleihin ei pitäisi liittää alaviivaa etuliitteenä.
      --plugin NIMI      Lataa määritelty lisäosa
      --use-nul-prefixed-import-tables Käytä nollaetuliitteisiä idata$4- ja idata$5-lohkoja.
     --yydebug                 Käännä jäsenninvianjäljitys päälle
     Kirjasto             Aikaleima           Tark.sum.  Versio  Liput     Kirjasto             Aikaleima           Tark.sum.  Versio  Liput
     [Varattu]     [tukematon käskykoodi]     loppu    %*s%*s%*s
    .debug_abbrev.dwo:       0x%s  0x%s
    .debug_line.dwo:         0x%s  0x%s
    .debug_loc.dwo:          0x%s  0x%s
    .debug_str_offsets.dwo:  0x%s  0x%s
    Argumentit: %s
    Rakentamistunniste:     64-bittisen segmentin dekoodaus epäonnistui 32-bittisessä rakennusympäristössä
    Luontipäivämäärä  : %.17s
    DW_MACRO_GNU_%02x-argumentit:     DW_MACRO_GNU_%02x ei ole argumentteja
    Yleinen symbolitaulunimi: %s
    Vedostunniste: %s
    Vedosnimi: %s
    Virheellinen koko
    Viimeisen korjausken päivämäärä: %.17s
    Linkkeritunniste: %s
    Sijainti:     Vääränmuotoinen segmentti - ei pääty merkkiin \0
    Vääränmuotoinen segmentti - tiedostonimet päättyvät liian aikaisin
    Vääränmuotoinen segmentti - liian lyhyt otsakkeelle
    Vääränmuotoinen segmentti - liian lyhyt toimitetulle tiedostolaskurille
    Moduulinimi    : %s
    Moduuliversio  : %s
    Nimi: %s
    Käyttöjärjestelmä: %s, ABI: %ld.%ld.%ld
    Siirros            Tiedot           Tyyppi             Symbolin arvo   Symbolin nimi
    Siirros            Tiedot           Tyyppi             Symbolin arvo   Symbolin nimi + Lisättävä
    Siirros  Alku     Loppu
    Siirros  Alku     Loppu    Lauseke
    Sivukoko:      Palvelutarjoaja: %s
    TUNTEMATON DW_LNE_HP_SFC-käskykoodi (%u)
    Versio:     --add-indirect              Lisää ”dll indirects” vientitiedostoon.
   --add-stdcall-alias         Lisää aliakset ilman @<numeroa>
   --as <nimi>                 Käytä ohjelmaa <nimi> assemblerina
   --base-file <perustiedosto> Lue linkkerin tuottama perustiedosto
   --def <def-tiedosto>        Aseta .def-syötetiedoston nimi
   --dllname <nimi>            Tulostekirjastoon laitettavan syöte-dll:n nimi.
   --dlltool-name <dlltool> Oletukset kohteelle ”dlltool”
   --driver-flags <liput>   Korvaa ld-oletusliput
   --driver-name <driveri>  Oletukset kohteelle ”gcc”
   --dry-run                Näytä mitä pitää suorittaa, älä toteuta
   --entry <tulokohta>      Määrittele vaihtoehtoinen DLL-tulokohta
   --exclude-symbols <lista>   Sulje pois symbolit <listasta> .def
   --export-all-symbols        Vie kaikki symbolit kohteeseen .def
   --image-base <perus>     Määrittele tiedostovedoksen perusosoite
   --implib <tulostenimi> Synonyymi valitsimelle --output-lib
   --leading-underscore     Tulokohta alaviivalla.
   --machine <kone>
   --mno-cygwin             Luo Mingw DLL:n
   --no-default-excludes       Poista oletuspoissulkevat symbolit
   --no-export-all-symbols     Vie vain .drectve-symbolit
   --no-idata4                 Älä tuota idata$4-lohkoa
   --no-idata5                 Älä tuota idata$5-lohkoa
   --no-leading-underscore  Tulokohta ilman alaviivaa
   --nodelete                  Pidä tilapäiset tiedostot.
   --output-def <def-tiedosto> Aseta .def-tulostetiedoston nimi
   --output-exp <tulostenimi>  Tuota vientitiedosto.
   --output-lib <tulostenimi>  Tuota syötekirjasto.
   --quiet, -q            Työskentele hiljaa
   --target <kone>          i386-cygwin32 tai i386-mingw32
   --verbose, -v          Laveasti
   --version              Tulosta dllwrap-versio
   -A --add-stdcall-alias           Lisää aliaksia ilman @<numeroa>.
   -C --compat-implib               Luo taaksepäin yhteensopiva tuontikirjasto.
   -D --dllname <nimi>              Rajapintakirjastoon sijoitettavan syöte-dll:n nimi.
   -F --linker-flags <liput>        Välitä <liput> linkkerille.
   -I --identify <implib>    Ilmoita DLL-nimi, joka liittyi <implib>-kirjastoon.
   -L --linker <nimi>               Käytä parametriä <nimi> linkkerinä.
   -M --mcore-elf <tulostenimi>     Käsittele mcore-elf-objektitiedostot kohteeseen <tulostenimi>.
   -S --as <nimi>                   Käytä <nimeä> assemblerina.
   -U                          Lisää alaviivat kohteeseen .lib
   -U --add-underscore              Lisää alaviivat rajapintakirjaston kaikkiin symboleihin.
   -V --version                     Näytä ohjelman versio.
   -a --add-indirect                Lisää ”dll indirects” vientitiedostoon.
   -b --base-file <kantatiedosto>   Lue linkkerin tuottama perustiedosto.
   -c --no-idata5                   Älä tuota idata$5-lohkoa.
   -d --input-def <def-tiedosto>    Luettavan .def-syötetiedoston nimi.
   -e --output-exp <tulostenimi>    Tuota vientitiedosto.
   -f --as-flags <liput>            Välitä <liput> assemblerille.
   -h --help                        Näytä nämä tiedot.
   -k                          Tuhoa @<numero> viedyistä nimistä
   -k --kill-at                     Tuhoa @<numeron> viedyistä nimistä.
   -l --output-lib <tulostenimi>    Tuota rajapintakirjasto.
   -m --machine <kone>       Luo DLL:nä kohteelle <kone>.  [oletus: %s]
   -n --no-delete                   Pidä tilapäistiedostot (toisto lisäsäilytykseksi).
   -p --ext-prefix-alias <prefiksi> Lisää aliaksiin <prefiksi>.
   -t --temp-prefix <prefiksi>      Liitä <prefiksi> tilapäistiedostojen nimen eteen.
   -v --verbose                     Laveasti.
   -x --no-idata4                   Älä tuota idata$4-lohkoa.
   -y --output-delaylib <tulostenimi>  Luo viive-tuontikirjasto.
   -z --output-def <def-tiedosto>   Luotavan .def-tiedoston nimi.
   0 (*lokaali*)     1 (*yleinen*)     @<tiedosto>                      Lue valitsimet tiedostosta <tiedosto>.
   @<tiedosto>            Lue valitsimet tiedostosta <tiedosto>
   Lyhennesiirros: 0x%s
   Liukulukutila:    Otsakeliput: 0x%08x
   Vedostunniste : %s
   Kieli: %s
   Viimeksi muokattu  :    Pituus:         0x%s (%s)
   Linkitysaika:    Major-tunniste: %u,  minor-tunniste: %u
   Num:    Arvo           Koko Tyyppi  Sidnta Näkyvyys Ind Nimi
   Num:    Arvo   Koko Tyyppi  Sidnta Näkyvyys Ind Nimi
   Paikkausaika:    Osoitinkoko:    %d
   Lohkoavustukset:
   Tuntomerkki:    0x%s
   Tyyppisiirros:  0x%s
   Versio:         %d
   [Indeksi]  Nimi
   identiteetti: %s
  # sc         arvo     lohko    tyyppi lisä nimi/pois
  %#06x:   Nimi-indeksi: %lx  %#06x:   Nimi: %s  %#06x: Lähde %d, nimi-indeksi: %ld
  %#06x: Lähde %d: %s
  %#06x: Rev: %d  Liput: %s  %#06x: Versio:  %d  %*s %*s Tarkoitus
  %*s %10s %*s Tarkoitus
  %-20s %10s	Kuvaus
  %4u %08x %3u   %u indeksialkiota:
  (Aloitus tiedostosiirroksessa: 0x%lx)  (Tuntematon inline-funktion attribuuttiarvo: %s)  --dwarf-depth=N        Älä näytä DIE-kohteita syvyydellä N tai suuremmalla
  --dwarf-start=N        Näytä DIE-kohteet aloittaen numerolla N, samalla syvyydellä
                         tai syvemmällä
  --input-mach <kone>         Aseta syötekoneen tyypiksi <kone>
  --output-mach <kone>        Aseta tulostekoneen tyypiksi <kone>
  --input-type <tyyppi>       Aseta syötetiedostotyypiksi <tyyppi>
  --output-type <tyyppi>      Aseta tulostetiedostotyypiksi <tyyppi>
  --input-osabi <osabi>       Aseta syöte-OSABI:ksi <osabi>
  --output-osabi <osabi>      Aseta tuloste-OSABI:ksi <osabi>
  -h --help                   Näytä nämä tiedot
  -v --version                Näytä %s:n versionumero
  --plugin <nimi>              Lataa määritelty lisäosa
  --plugin <p> - lataa määritelty lisäosa
  --target=BFDNAME - määrittele kohdeobjektimuoto BFDNAME-nimenä
  -D                           Käytä nollaa symbolikuvauksen aikaleimalle
  -U                           Käytä todellista symbolikuvauksen aikaleimaa (oletus)
  -D                           Käytä nollaa symbolikuvauksen aikaleimoihin (oletus)
  -U                           Käytä todellista symbolikuvauksen aikaleimaa
  -D --enable-deterministic-archives
                                   Tuota deterministinen tuloste, kun riisutaan arkistoja
  -U --disable-deterministic-archives
                                   Ota pois käytöstä valitsimen -D toiminta (oletus)
  -D --enable-deterministic-archives
                                   Tuota deterministinen tuloste, kun riisutaan arkistoja (oletus)
  -U --disable-deterministic-archives
                                   Ota pois käytöstä valitsimen -D toiminta
  -H --help                    Tulosta tämä ohje
  -v --verbose                 Kerro laveasti, mitä olet tekemässä
  -V --version                 Tulosta versiotiedot
  -I --histogram         Näytä bucket-luettelopituuksien histogrammi
  -W --wide              Salli yli 80 merkin levyinen tuloste
  @<tiedosto>            Lue valitsimet tiedostosta <tiedosto>
  -H --help              Näytä nämä tiedot
  -v --version           Näytä readelf-ohjelman versionumero
  -I --input-target <bfd-nimi>     Otaksu syötetiedoston olevan muotoa <bfd-nimi>
  -O --output-target <bfd-nimi>    Luo tulostetiedosto muodossa <bfd-nimi>
  -B --binary-architecture <arch>  Aseta tulostearkkitehtuuri, kun syötteen
                                   arkkitehtuuria ei ole määritelty
  -F --target <bfd-nimi>           Aseta sekä syöte- että tulostemuodoksi <bfd-nimi>
     --debugging                   Muunna vianjäljitystiedot, jos mahdollista
  -p --preserve-dates              Kopioi muokkaus-/kutsuaikaleimat tulosteeseen
  -I --input-target=<bfd-nimi>     Otaksu syötetiedoston olevan muotoa <bfd-nimi>
  -O --output-target=<bfd-nimi>    Luo tulostetiedosto muodossa <bfd-nimi>
  -F --target=<bfd-nimi>           Aseta sekä syöte- että tulostemuodoksi <bfd-nimi>
  -p --preserve-dates              Kopioi muokkaus-/kutsuaikaleimat tulosteeseen
  -R --remove-section=<nimi>       Poista <nimi>-lohkon tulosteesta
  -s --strip-all                   Poista kaikki symbolit ja uudelleensijoitustiedot
  -g -S -d --strip-debug           Poista kaikki vianjäljityssymbolit & -lohkot
     --strip-unneeded              Poista kaikki symbolit, joita ei tarvita uudelleensijoituksessa
     --only-keep-debug             Riisu kaikki paitsi vianjäljitystiedot
  -N --strip-symbol=<nimi>         Älä kopioi symbolia <nimi>
  -K --keep-symbol=<nimi>          Älä riisu symbolia <nimi>
     --keep-file-symbols           Älä riisu tiedostosymboleja
  -w --wildcard                    Salli jokerimerkit symbolien vertailussa
  -x --discard-all                 Poista kaikki ei-yleiset symbolit
  -X --discard-locals              Poista kaikki kääntäjän tuottamat symbolit
  -v --verbose                     Luettele kaikki muutetut objektitiedostot
  -V --version                     Näytä tämän ohjelman versionumero
  -h --help                        Näytä tämä tuloste
     --info                        Luettele tuetut objektimuodot & arkkitehtuurit
  -o <tiedosto>                    Sijoita riisuttu tuloste kohteeseen <tiedosto>
  -S, --print-size       Tulosta määriteltyjen symbolien koko
  -s, --print-armap      Sisällytä indeksi arkistojäsensymboleille
      --size-sort        Lajittele symbolit koon mukaan
      --special-syms     Sisällytä erityissymbolit tulosteeseen
      --synthetic        Näytä myös synteettiset symbolit
  -t, --radix=KANTALUKU  Käytä KANTALUKUa symboliarvojen tulosteeseen
      --target=BFD-NIMI  Määrittele kohdeobjektin muodoksi BFD-NIMI
  -u, --undefined-only   Näytä vain määrittelemättömät symbolit
  -X 32_64               (ei oteta huomioon)
  @TIEDOSTO              Lue valitsimet TIEDOSTOsta
  -h, --help             Näytä nämä tiedot
  -V, --version          Näytä ohjelman versionumero

  -a, --archive-headers    Näytä arkisto-otsaketiedot
  -f, --file-headers       Näytä ylimmän tiedosto-otsakkeen sisältö
  -p, --private-headers    Näytä objektimuotokohtaisen tiedosto-otsakkeen sisältö
  -P, --private=OPT,OPT... Näytä objektimuotokohtaiset sisällöt
  -h, --[section-]headers  Näytä lohko-otsakkeiden sisältö
  -x, --all-headers        Näytä kaikkien otsakkeiden sisältö
  -d, --disassemble        Näytä suoritettavien lohkojen assembler-sisältö
  -D, --disassemble-all    Näytä kaikkien lohkojen assembler-sisältö
  -S, --source             Sekoita lähdekoodi disassembly:n kanssa
  -s, --full-contents      Näytä kaikkien vaadittujen lohkojen koko sisältö
  -g, --debugging          Näytä vianjäljitystiedot objektitiedostossa
  -e, --debugging-tags     Näytä vianjäljitystiedot käyttäen ctags-tyyliä
  -G, --stabs              Näytä (raakamuodossa) kaikki tiedoston STABS-tiedot
  -W[lLiaprmfFsoRt] tai
  --dwarf[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,
          =frames-interp,=str,=loc,=Ranges,=pubtypes,
          =gdb_index,=trace_info,=trace_abbrev,=trace_aranges,
          =addr,=cu_index]
                           Näytä DWARF-tiedot tiedostossa
  -t, --syms               Näytä symbolitaulujen sisältö
  -T, --dynamic-syms       Näytä dynaamisen symbolitaulun sisältö
  -r, --reloc              Näytä uudelleensijoitusalkiot tiedostossa
  -R, --dynamic-reloc      Näytä dynaamisen uudelleensijoitusalkiot tiedostossa
  @<tiedosto>              Lue valitsimet <tiedostosta>
  -v, --version            Näytä tämän ohjelman versionumero
  -i, --info               Luettele tuetut objektimuodot ja arkkitehtuurit
  -H, --help               Näytä nämä tiedot
  -b, --target=BFD-NIMI          Määrittele kohdeobjektimuodoksi BFD-NIMI
  -m, --architecture=KONE        Määrittele kohdearkkitehtuuriksi KONE
  -j, --section=NIMI             Näytä tiedot vain lohkosta NIMI
  -M, --disassembler-options=OPT Välitä teksti OPT disassemblerille
  -EB --endian=big               Otaksu, että big-endian-tavujärjestystä käytetään disassembloinnissa
  -EL --endian=little            Otaksu, että little-endian-tavujärjestystä käytetään disassembloinnissa
      --file-start-context       Sisällytä asiayhteys tiedoston alusta (yhdessä -S:n kanssa)
  -I, --include=HAKEMISTO        Lisää HAKEMISTO lähdetiedostojen etsintäluetteloon
  -l, --line-numbers             Sisällytä rivinumerot ja tiedostonimet tulosteeseen
  -F, --file-offsets             Sisällytä tiedostosiirrokset kun näytetään tietoja
  -C, --demangle[=TYYLI]         Eheytä runnellut/käsitellyt symbolinimet
                                  TYYLI, jos annettu, voi olla ”auto”, ”gnu”,
                                  ”lucid”, ”arm”, ”hp”, ”edg”, ”gnu-v3”, ”java”
                                  tai ”gnat”
  -w, --wide                     Muotoile tuloste yli 80 sarakkeen levyiseksi
  -z, --disassemble-zeroes       Älä hyppää nollalohkojen yli disassembloinnissa
      --start-address=OSOITE     Käsittele vain dataa, jonka osoite on >= OSOITE
      --stop-address=OSOITE      Käsittele vain dataa, jonka osoite on <= OSOITE
      --prefix-addresses         Tulosta disassemblyn mukana täydellinen osoite
      --[no-]show-raw-insn       Näytä heksadesimaaliluvut symbolisen disassemblyn mukana
      --adjust-vma=SIIRROS       Lisää arvo SIIRROS kaikkiin näytettyihin lohko-osoitteisiin
      --insn-width=LEVEYS        Näytä LEVEYS tavua yhdellä rivillä valitsimella -d
      --adjust-vma=SIIRROS       Lisää SIIRROS kaikkiin näytettyihin lohko-osoitteisiin
      --special-syms             Sisällytä erikoissymbolit symbolivedoksiin
      --prefix=ETULIITE          Lisää ETULIITE absoluuttisiin polkuihin valitsimelle -S
      --prefix-strip=TASO        Riisu alustavat hakemistonimet valitsimelle -S
  -i --instruction-dump=<numero|nimi>
                         Disassembloi lohkon <numero|nimi> sisältö
  -j --only-section <nimi>         Kopioi vain lohko <nimi> tulosteeseen
     --add-gnu-debuglink=<tiedosto> Lisää lohkon  .gnu_debuglink linkitys <tiedostoon>
  -R --remove-section <nimi>       Poista lohko <nimi> tulosteesta
  -S --strip-all                   Poista kaikki symbolit ja uudelleensijoitustiedot
  -g --strip-debug                 Poista kaikki vianjäljityssymbolit & -lohkot
     --strip-dwo                   Poista kaikki DWO-lohkot
     --strip-unneeded              Poista kaikki symbolit, joita ei tarvita uudelleensijoituksissa
  -N --strip-symbol <nimi>         Älä kopioi symbolia <nimi>
     --strip-unneeded-symbol <nimi>
                                   Älä kopioi symbolia <nimi>, jollei sitä tarvita
                                     uudelleensijoituksissa
     --only-keep-debug             Riisu kaikki paitsi vianjäljitystiedot
     --extract-symbol              Poista lohkon sisältö, mutta pidä symbolit
     --extract-dwo                 Kopioi vain DWO-lohkot
  -K --keep-symbol <nimi>          Älä riisu symbolia <nimi>
     --keep-file-symbols           Älä riisu tiedostosymboleja
     --localize-hidden             Muunna kaikki ELF-piilosymbolit paikallisiksi
  -L --localize-symbol <nimi>      Pakota symboli <nimi> merkityksi paikallisena
     --globalize-symbol <nimi>     Pakota symboli <nimi> merkityksi yleisenä
  -G --keep-global-symbol <nimi>   Paikallista kaikki symbolit paitsi <nimi>
  -W --weaken-symbol <nimi>        Pakota symboli <nimi> merkatuksi heikkona symbolina
     --weaken                      Pakota kaikki yleissymbolit merkityiksi heikkona symboleina
  -w --wildcard                    Salli jokerimerkit symbolivertailussa
  -x --discard-all                 Poista kaikki ei-yleissymbolit
  -X --discard-locals              Poista kaikki kääntäjän tuottamat symbolit
  -i --interleave [<numero>]       Kopioi vain yksi joka <numero>:stä tavusta
     --interleave-width <numero>   Aseta N valitsimelle --interleave
  -b --byte <numero>               Valitse tavu <numero> jokaisessa lomittuvassa lohkossa
     --gap-fill <arvo>             Täytä aukot lohkojen välillä <arvo>lla
     --pad-to <osoite>             Täytä viimeinen lohko aina <osoitteeseen> saakka
     --set-start <osoite>          Aseta aloitusosoitteeksi <osoite>
    {--change-start|--adjust-start} <kasvatusarvo>
                                   Lisää <kasvatusarvo> alkuosoitteeseen
    {--change-addresses|--adjust-vma} <kasvatusarvo>
                                   Lisää <kasvatusarvo> LMA-, VMA- ja alkuosoitteisiin
    {--change-section-address|--adjust-section-vma} <nimi>{=|+|-}<arvo>
                                   Vaihda LMA- ja VMA-lohkon <nimi> arvolla <arvo>
     --change-section-lma <nimi>{=|+|-}<arvo>
                                   Vaihda LMA-lohkon <nimi> arvolla <arvo>
     --change-section-vma <nimi>{=|+|-}<arvo>
                                   Vaihda VMA-lohkon <nimi> arvolla <arvo>
    {--[no-]change-warnings|--[no-]adjust-warnings}
                                   Varoita, jos nimettyä lohkoa ei ole olemassa
     --set-section-flags <nimi>=<liput>
                                   Aseta lohko<nimen> ominaisuudet <lipuilla>
     --add-section <nimi>=<tiedosto> Lisää tulosteeseen lohko <nimi>, joka löytyi <tiedostosta>
     --dump-section <nimi>=<tiedosto>
                                   Vedosta lohkon <nimi> sisältö tiedostoon <tiedosto>
     --rename-section <vanha>=<uusi>[,<liput>] Nimeä lohko <vanha> nimellä <uusi>
     --long-section-names {enable|disable|keep}
                                   Käsittele Coff-objektien pitkiä lohkonimiä.
     --change-leading-char         Pakota tulostemuodon alkukirjaintyyli
     --remove-leading-char         Poista alkukirjain yleissymboleista
     --reverse-bytes=<numero>      Käännä <numero> tavua kerrallaan päinvastoin, tulostelohkossa sisällöllä
     --redefine-sym <vanha>=<uusi> Määrittele <vanha> symbolinimi <uudeksi>
     --redefine-syms <tiedosto>    --redefine-sym kaikille symbolipaireille, 
                                     jotka on lueteltu <tiedostossa>
     --srec-len <number>           Rajoita tuotettujen Srecords-tietueiden pituus
     --srec-forceS3                Rajoita tuotettujen Srecords-tietueiden tyypiksi S3
     --strip-symbols <tiedosto>    -N kaikille <tiedostossa> luetelluille symboleille
     --strip-unneeded-symbols <tiedosto>
                                   --strip-unneeded-symbol kaikille <tiedostossa>
                                     luetelluille symboleille
     --keep-symbols <tiedosto>         -K kaikille <tiedostossa> luetelluille symboleille
     --localize-symbols <tiedosto>     -L kaikille <tiedostossa> luetelluille symboleille
     --globalize-symbols <tiedosto>    --globalize-symbol kaikille <tiedostossa> luetelluille symboleille
     --keep-global-symbols <tiedosto>  -G kaikille <tiedostossa> luetelluille symboleille
     --weaken-symbols <tiedosto>       -W kaikille <tiedostossa> luetelluille symboleille
     --alt-machine-code <indeksi>  Käytä kohteen vaihtoehtoista konetta numero <indeksi>
     --writable-text               Merkitse tulosteteksti kirjoitettavaksi
     --readonly-text               Tee tulosteteksti kirjoitussuojatuksi
     --pure                        Merkitse tulosteteksti pyyntösivutetuksi
     --impure                      Merkitse tulosteteksti epäpuhtaaksi
     --prefix-symbols <prefiksi>   Lisää <prefiksi> jokaisen symbolinimen alkuun
     --prefix-sections <prefiksi>  Lisää <prefiksi> jokaisen lohkonimen alkuun
     --prefix-alloc-sections <prefiksi>
                                   Lisää <prefiksi> jokaisen varattavan lohkonimen
                                     alkuun
     --file-alignment <numero>     Aseta PE-tiedostotasaukseksi <numero>
     --heap <reserve>[,<commit>]   Aseta PE-reserve/commit-keoksi <reserve>/
                                   <commit>
     --image-base <osoite>         Aseta PE-vedosperustaksi <osoite>
     --section-alignment <numero>  Aseta PE-lohkotasaukseksi <numero>
     --stack <reserve>[,<commit>]  Aseta PE-reserve/commit-pinoksi <reserve>/
                                   <commit>
     --subsystem <nimi>[:<versio>]
                                   Aseta PE-alijärjestelmäksi <nimi> [& <versio>]
     --compress-debug-sections     Tiivistä DWARF-vianjäljityslohkot käyttäen zlib-kirjastoa
     --decompress-debug-sections   Pura DWARF-vianjäljityslohkojen tiivistys käyttäen zlib-kirjastoa
  -v --verbose                     Luettele kaikki muokatut objektitiedostot
  @<tiedosto>                      Lue valitsimet tiedostosta <tiedosto>
  -V --version                     Näytä tämän ohjelman versionumero
  -h --help                        Näytä tämä tuloste
     --info                        Luettele tuetut objektimuodot & arkkitehtuurit
  -r                           Älä ota huomioon rc-yhteensopivuutta
  @<tiedosto>                  Lue valitsimet tiedostosta <tiedosto>
  -h --help                    Tulosta tämä ohje
  -V --version                 Tulosta versiotiedot
  -t                           Päivitä arkiston symbolikuvauksen aikaleima
  -h --help                    Tulosta tämä opaste
  -V --version                 Tulosta versiotiedot
  32-bittiset osoittimet:
  64-bittiset osoittimet:
  <untematon tunniste: %d>:   @<tiedosto>      - lue valitsimet tiedostosta <tiedosto>
  ABI-versio:                           %d
  Osoite: 0x  Kasvata riviä arvolla %s arvoon %d
  Kasvata ohjelmalaskuria arvolla %s arvoon 0x%s
  Kasvata ohjelmalaskuria arvolla %s arvoon 0x%s[%d]
  Kasvata ohjelmalaskuria vakiolla %s arvoon 0x%s
  Kasvata ohjelmalaskuria vakiolla %s arvoon 0x%s[%d]
  Kasvata ohjelmalaskuria kiinteäkokoisella summalla %s arvoon 0x%s
  Luokka:                               %s
  Lkm: %d
  Suppea malli-indeksi: %d
  Käännösyksikkö @ siirros 0x%s:
  Kopioi
  DWARF-versio:                %d
  DW_CFA_??? (Käyttäjämääritelty kutsukehyskäsky: %#x)
  Data:                                 %s
  Rivi	Hakemisto	Aika	Koko	Nimi
  Tulokohtaosoite:                        Laajennettu käskykoodi %d:   Laajennuksen käskykoodiargumentit:
  Tiedosto: %lx  Tiedosto: %s  Liput  Liput:                                0x%lx%s
  Liput: %s  Versio: %d
  Käännösyksikkö siirrososoitteessa 0x%s:
  Yleiset valitsimet:
  Indeksi: %d  Lkm: %d    Kohteen ’is_stmt’ alkuarvo: %d
  Pituus:                              %ld
  Pituus:                      %ld
  Pituus:                      %ld
  Rivin kantaluku:             %d
  Rivinumeroalue:              %d
  Kone:                                 %s
  Maaginen numero:     Enimmäistoimintoja per käsky:%d
  Minimikäskypituus:           %d
  Ei lisäotsaketta
  Ei emulointikohtaisia valitsimia
  Ei lohko-otsakkeita
  Tästä lohkosta ei löytynyt merkkijonoja. Huomaa: Tässä lohkossa on uudelleensijoituksia sitä vastaan, mutta niitä EI ole liitetty tähän vedokseen.
  Lohkolkm:   Arvo           Koko   Tyyppi Sidnta Näkyvyys Ind Nimi
  Lohkolkm:   Arvo   Koko   Tyyppi Sidonta Näkyvyys Ind Nimi
  Num:    Indeksi     Arvo   Nimi  Numero Tunniste (0x%lx)
  Sarakkeiden lukumäärä:   %d
  Ohjelmaotsakkeiden lukumäärä:         %ld  Lohko-otsakkeiden lukumäärä:          %ld  Välien numero:        %d

  Käytettyjen kohtien lukumäärä: %d
  Käyttöjärjestelmä/ABI:                %s
  Siirros         Tiedot         Tyyppi         Sym. arvo     Symbolinimi
  Siirros         Tiedot         Tyyppi         Sym. arvo     Sym. nimi + Lisättävä
  Siirros lohkoon .debug_info:         0x%lx
  Siirros lohkoon .debug_info: 0x%lx
  Siirrososoite kohteeseen .debug_line: 0x%lx
  Siirrososoitekoko:           %d
  Siirrostaulu
  Siirros:                     0x%lx
  Siirros: %#08lx Linkki: %u (%s)
  Käskykoodilla %d on %d argumenttia
  Käskykoodin kantaluku:       %d
  Valitsimet kohteelle %s:
  DLLTOOL:lle välitetyt valitsimet:
  PPC hi-16:
  Henkilörutiini:   Osoitinkoko:                 %d
  Esitoimipituus:              %d
  Rekisterit palautettu:   Loput on välitetty sellaisenaan ohjelmointikieliyksikölle
  Palauta pino kehysosoittimesta
  Paluurekisteri: %s
  Lohko-otsakemerkkijonotaulun indeksi: %ld  Segmenttilohkot...
  Segmenttikoko:               %d
  Aseta tiedostonimi riville %s tiedostonimitaulussa
  Aseta ISA-arvoksi %lu
  Aseta ISA-arvoksi %s
  Aseta peruslohko
  Aseta sarakkeeksi %s
  Aseta epilogue_begin-arvoksi true
  Aseta is_stmt-arvoksi %s
  Aseta prologue_end-arvoksi true
  Alueen koko .debug_info-lohkossa:    %ld
  Ohjelmaotsakkeiden koko:              %ld (tavua)
  Lohko-otsakkeiden koko:               %ld (tavua)
  Tämän otsakkeen koko:                 %ld (tavua)
  Kokotaulu
  Erikoiskäskykoodi %d: kasvata %s tavua osoitteeseen 0x%s  Erikoiskäskykoodi %d: kasvata osoitetta %s tavua osoitteeseen 0x%s[%d]  Pinoaskelkasvatus %d
  Tunniste   Tyyppi                       Nimi/Arvo
  Tyyppi         Siirros            VirtuaaliOsoite    FyysinenOsoite
  Tyyppi         Siirros  VirtuaaliOsoite    FyysinenOsoite     TiedKoko MuisKoko Lip Tasaus
  Tyyppi         Siirros  VirtOsoite FyysOsoite TiedKok MuisKok Lip Tasaus
  Tyyppi:                               %s
  Käsitelemätön sijaintityyppi %u
  Käsitelemätön maaginen arvo
  Tuntematon käskykoodi %d, jonka operandit ovat:   Tuntemattomat lohkosisällöt
  Tukematon versio
  Versiomäärittely lohkon lopun ohitse
  Versiomäärittely lohkon lopun ohitse
  Versio:                              %d
  Versio:                               %d %s
  Versio:                               0x%lx
  Versio:                      %d
  Versio:                      %d
  Versio:                  %d
  [%3d] 0x%s  [%3d] Tuntomerkki:  0x%s  Lohkot:   [-X32]       - ei oteta huomioon 64-bittisiä objekteja
  [-X32_64]    - hyväksyy 32- ja 64-bittiset objektit
  [-X64]       - ei oteta huomioon 32-bittisiä objekteja
  [-g]         - 32-bittinen pieni arkisto
  [D]          - käytä nollaa aikaleimoille ja uid-käyttäjätunnisteisiin/gid-ryhmätunnisteisiin
  [D]          - käytä nollaa aikaleimoille ja uid-käyttäjätunnisteisiin/gid-ryhmätunnisteisiin (oletus)
  [N]          - käytä nimen[lukumäärä]-ilmentymää
  [Numero] Nimi
  [Nr] Nimi              Tyyppi           Osoite            Siirros
  [Nr] Nimi              Tyyppi          Osoite   Siirr. Koko  Yht Lip Lk Tdt Tasaus
  [Nr] Nimi              Tyyppi          Osoite           Siirr. Koko  Yht Lip Lk Tdt Tasaus
  [P]          - käytä täyttä polkunimeä, kun se täsmää
  [S]          - älä koosta symbolitaulua
  [T]          - tee ohut arkisto
  [Typistetyt tiedot]
  [U]          - käytä todellisia aikaleimoja ja uid-käyttäjätunnisteita/gid-ryhmätunnisteita
  [U]          - käytä todellisia aikaleimoja ja uid-käyttäjätunnisteita/gid-ryhmätunnisteita (oletus)
  [V]          - näytä versionumero
  [a]          - sijoita tiedosto(t) kohteen [jäsennimi] jälkeen
  [b]          - laita tiedosto(t) kohteen [jäsennimi] edelle (sama kuin [i])
  [väärä lohkopituus]
  [c]          - älä varoita, jos kirjasto pitää luoda
  [f]          - katkaise lisätyt tiedostonimet
  [o]          - säilytä alkuperäiset päiväykset
  [varattu (%d)]
  [varattu]
  [s]          - luo arkiston sisältöhakemiston (vrt. ranlib)
  [typistetty lohko]
  [u]          - korvaa vain tiedostot, jotka ovat arkiston nykysisältöä uudempia
  [v]          - laveasti
  koodiraja:         %08x
  d            - poista tiedosto(t) arkistosta
  liput:             %08x
  liput:         0x%04x   hash-siirros:      %08x
  hash-koko:         %02x
  hash-tyyppi:       %02x (%s)
  ident-siirros:     %08x (- %08x)
  tuonti tiedostosiirros: %u
  tuonti strtab pituus: %u
  indeksialkio %u: tyyppi: %08x, siirros: %08x
  m[ab]        - siirrä tiedosto(t) arkistoon
  maaginen:      0x%04x (0%04o)    numerokoodivälit:  %08x
  numerotuontitiedostot:%u
  numero-reloc-tietueet:%u
  numerolohkot:    %d
  numeroerityisvälit:%08x (siirrososoitteessa %08x)
  numerosymbolit:    %u
  numerosymbolit: %d
  valitsinotsakekoko:    %d
  p            - tulosta arkistosta löytyvät tiedosto(t)
  sivukoko:          %02x
  q[f]         - liitä tiedosto(t) nopeasti arkiston loppuun
  r[ab][f][u]  - korvaa olemassa oleva(t) tai lisää uudet tiedosto(t) arkistoon
  s            - toimi kuten ranlib
  sirotussiirros:    %08x
  scnlen: %08x  nreloc: %-6u
  scnlen: %08x  nreloc: %-6u  nlinno: %-6u
  spare1:            %02x
  spare2:            %08x
  merkkijonotaulun pituus: %u
  merkkijonotaulun siirros: %u
  symbolien siirros: 0x%08x
  t            - näytä arkiston sisältö
  aika ja päivämäärä: 0x%08x  -   versio:            %08x
   Versio:           %u
  versio:     0x%08x    x[o]         - pura tiedosto(t) arkistosta
 #: Segmenttinimi    Lohkonimi        Osoite
 %3u %3u  %s tavulohko:  (Tiedostosiirros: 0x%lx) (addr_index: 0x%s): %s (vaihtoehtoinen epäsuora merkkijono, siirros: 0x%s) (tavua tiedostoon)
 (tavua tiedostoon)
  Lohko-otsakkeiden alku:                (tavua)
 (tunnisteiden loppu osoitteessa %08x)
 (indeksoitu merkkijono: 0x%s): %s (epäsuora merkkijono, siirros: 0x%s): %s(inline-funktiona)  (sijoitusluettelo) (ei merkkijonoja):
 (alku == loppu) (alku > loppu) (merkkijonojen koko: %08x):
 <%d><%lx>: ...
 <%d><%lx>: Lyhennenumero: %lu <%d><%lx>: Lyhennenumero: 0
 <rikki: %14ld> <rikki: lukualueen ulkopuolella> Osoite:  Osoite: 0x Seuraavista valitsimista on valittava vähintään yksi:
 Sääntöjenmukainen yleiskäyttöarvo:  Muunna osoitteet rivinumero-tiedostonimipareiksi.
 Muunna objektitiedosto NetWare Loadable Module -muotoon
 Kopioi binaaritiedoston, mahdollisesti muuntaen sitä käsittelyssä
 DW_MACINFO_define - rivinro: %d makro : %s
 DW_MACINFO_end_file
 DW_MACINFO_start_file - rivinro:%d tied.nro:%d
 DW_MACINFO_undef - rivinro: %d makro : %s
 DW_MACINFO_vendor_ext - vakio : %d merkkijono : %s
 DW_MACRO_GNU_%02x
 DW_MACRO_GNU_%02x - DW_MACRO_GNU_define - rivinro: %d makro : %s
 DW_MACRO_GNU_define_indirect - rivinro: %d makro : %s
 DW_MACRO_GNU_define_indirect_alt - rivinro: %d makrosiirros : 0x%lx
 DW_MACRO_GNU_end_file
 DW_MACRO_GNU_start_file - rivinro:%d tied.nro:%d
 DW_MACRO_GNU_start_file - rivinro:%d tied.nro:%d tiedostonimi: %s%s%s
 DW_MACRO_GNU_transparent_include - siirros : 0x%lx
 DW_MACRO_GNU_transparent_include_alt - siirros : 0x%lx
 DW_MACRO_GNU_undef - rivinro: %d makro : %s
 DW_MACRO_GNU_undef_indirect - rivinro: %d makro : %s
 DW_MACRO_GNU_undef_indirect_alt - rivinro: %d makrosiirros : 0x%lx
 Näytä tietoja ELF-muotoisten tiedostojen sisällöstä
 Näyttää tietoja objekti<tiedosto(i)sta>.
 Näyttää tulostettavat merkkijonot kohteesta [tiedosto(t)] (oletuksena vakiosyöte)
 Näyttää binaaritiedostojen sisäisten lohkojen koot
 Alkiot:
 Tuota sisältöhakemisto nopeuttamaan arkistohakua
 Yleisalkiot:
 Jos komentorivillä ei ole annettu osoitteita, ne luetaan vakiosyötteestä
 Jos syötetiedosto(j)a ei ole annettu, a.out on oletussyötetiedostona
 Lazy-ratkaisija
 Pituus  Numero     %% kaikesta  Yhteensä
 Rivinumerolauseke:
 Luettele symbolit kohteessa [tiedosto(t)] (oletus: a.out).
 Paikallisalkiot:
 Moduuliosoitin
 Moduuliosoitin (GNU-laajennus)
 EI MITÄÄN HUOMAA: Tässä lohkossa on uudelleensijoituksia sitä vastaan, mutta niitä EI ole liitetty tähän vedokseen.
 Nimi (pituus: %u):  Ei rivinumerolausekeita.
Ei mitään
 Num: Nimi                           Sidotaan    Liput
 Siirros    Tiedot  Tyyppi              Sym. arvo   Symbolin nimi
 Siirros    Tiedot  Tyyppi              Sym. arvo   Symbolin nimi + Lisättävä
 Siirros  Tiedot   Tyyppi           Sym.arvo   Sym. nimi
 Siirros    Tiedot  Tyyppi          Sym.arvo   Sym. nimi + Lisättävä
 Valitsimet ovat:
  -a --all               Sama kuin: -h -l -S -s -r -d -V -A -I
  -h --file-header       Näytä ELF-tiedosto-otsake
  -l --program-headers   Näytä ohjelmaotsakkeet
     --segments          Alias valitsimelle --program-headers
  -S --section-headers   Näytä lohkojen otsake
     --sections          Alias valitsimelle --section-headers
  -g --section-groups    Näytä lohkoryhmät
  -t --section-details   Näytä lohkon yksityiskohdat
  -e --headers           Sama kuin: -h -l -S
  -s --syms              Näytä symbolitaulu
     --symbols           Alias valitsimelle --syms
  --dyn-syms             Näytä dynaaminen symbolitaulu
  -n --notes             Näytä ydin notes (jos on olemassa)
  -r --relocs            Näytä uudelleensijoitukset (jos on olemassa)
  -u --unwind            Näytä palautustiedot (jos on olemassa)
  -d --dynamic           Näytä dynaaminen lohko (jos on olemassa)
  -V --version-info      Näytä versiolohkot (jos on olemassa)
  -A --arch-specific     Näytä arkkitehtuurikohtaiset tiedot (jos niitä on).
  -D --use-dynamic       Käytä dynaamisia lohkotietoja, kun näytetään symboleja
  -x --hex-dump=<numero|nimi>
                         Vedosta lohkon <numero|nimi> sisältö tavuina
  -p --string-dump=<numero|nimi>
                         Vedosta lohkon <numero|nimi> sisältö merkkijonoina
  -R --relocated-dump=<numero|nimi>
                         Vedosta lohkon <numero|nimi> sisältö merkkijonoina
  -w[lLiaprmfFsoRt] tai
  --debug-dump[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,
               =frames-interp,=str,=loc,=Ranges,=pubtypes,
               =gdb_index,=trace_info,=trace_abbrev,=trace_aranges,
               =addr,=cu_index]
                         Näytä DWARF2-vianjäljityslohkojen sisältö
 PLT lazy -ratkaisija
 Tulosta luettavamerkkinen COFF-objektitiedoston tulkinta
 Poistaa symbolit ja lohkot tiedostoista
 Varatut alkiot:
 Valitsimet ovat:
 Valitsimet ovat:
  -A|-B     --format={sysv|berkeley}  Valitse tulostetyyli (oletus on %s)
  -o|-d|-x  --radix={8|10|16}         Näytä numerot oktaali-, desimaali- tai heksadesimaalilukuna
  -t        --totals                  Näytä kokonaiskoko (vain Berkeley)
            --common                  Näytä kokonaiskoot kohteille *COM* syms
            --target=<bfd-nimi>       Aseta binaaritiedoston muoto
            @<tiedosto>               Lue valitsimet tiedostosta <tiedosto>
  -h        --help                    Näytä nämä tiedot
  -v        --version                 Näytä ohjelman versio

 The options are:
  -I --input-target=<bfd-nimi>  Aseta binaarin syötetiedoston muoto
  -O --output-target=<bfd-nimi> Aseta binaarin tulostetiedoston muoto
  -T --header-file=<tiedosto>   Lue tiedosto <tiedosto> NLM-otsaketiedoille
  -l --linker=<linkkeri>        Käytä parametriä <linkkeri> linkittämiseen
  -d --debug                    Näytä vakiovirhetulosteessa linkkerin komentorivi
  @<tiedosto>                   Lue valitsimet tiedostosta <tiedosto>.
  -h --help                     Näytä nämä tiedot
  -v --version                  Näytä ohjelman versio
 Valitsimet ovat:
  -a - --all                  Selaa koko tiedosto, ei vain datalohkoa
  -f --print-file-name        Tulosta tiedostonimi ennen jokaista merkkijonoa
  -n --bytes=[numero]         Paikanna & tulosta jokainen NUL-päätteinen
  -<numero>                     vähintään [numero] merkin sekvenssin (oletuksena 4).
  -t --radix={o,d,x}          Tulosta merkkijonon paikka kantaluvulla 8, 10 tai 16
  -o                          Alias kohteelle --radix=o
  -T --target=<BFD-NIMI>      Määrittele binaaritiedostomuoto
  -e --encoding={s,S,b,l,B,L} Valitse merkin koko ja tavujärjestystyyppi:
                              s = 7-bittiä, S = 8-bittiä, {b,l} = 16-bittiä, {B,L} = 32-bittiä
  @<tiedosto>                 Lue valitsimet tiedostosta <tiedosto>
  -h --help                   Näytä nämä tiedot
  -v -V --version             Tulosta ohjelman versionumero
 Valitsimet ovat:
  -a --ascii_in                Lue syötetiedosto ASCII-tiedostona
  -A --ascii_out               Kirjoita binaarisanomat ASCII-muodossa
  -b --binprefix               ”.bin”-tiedostonimillä on ”.mc tiedostonimi_” -prefiksi ainutlaatuisuuden takaamiseksi.
  -c --customflag              Aseta räätälöintiliput sanomille
  -C --codepage_in=<arvo>      Aseta koodisivu luettaessa mc-tekstitiedostoa
  -d --decimal_values          Tulosta arvoja tekstitiedostoon desimaalina
  -e --extension=<extension>   Aseta vientiotsaketiedostossa käytetty otsakelaajennus
  -F --target <kohde>          Määrittele tulostekohteen tavujärjestystyyppi.
  -h --headerdir=<hakemisto>   Aseta vientihakemisto otsakkeille
  -u --unicode_in              Lue syötetiedosto UTF16-tiedostona
  -U --unicode_out             Kirjoita binaarisanomat UFT16-muodossa
  -m --maxlength=<arvo>        Aseta sanomapituuden maksimiarvo
  -n --nullterminate           Lisää automaatisesti nolla merkkijonojen päätemerkiksi
  -o --hresult_use             Käytä HRESULT-määrittelyä eikä tilakoodimäärittelyä
  -O --codepage_out=<arvo>     Aseta kirjoitustekstitiedoston koodisivu
  -r --rcdir=<hakemisto>       Aseta vientihakemisto rc-tiedostoille
  -x --xdbg=<hakemisto>        Missä luoda .dbg C include-tiedosto,
                               joka kuvaa sanomatunnukset niiden symbolinimeen.
 Valitsimet ovat:
  -a, --debug-syms       Näytä vain vianjäljityssymbolit
  -A, --print-file-name  Tulosta syötetiedoston nimi ennen jokaista symbolia
  -B                     Sama kuin --format=bsd
  -C, --demangle[=TYYLI] Eheytä alemman tason symbolinimet käyttäjätason nimiksi
                          TYYLI, jos annettu, voi olla ”auto” (oletus),
                          ”gnu”, ”lucid”, ”arm”, ”hp”, ”edg”, ”gnu-v3”, ”java”
                          tai ”gnat”
      --no-demangle      Älä eheytä alemman tason symbolinimiä
  -D, --dynamic          Näytä dynaamiset symbolit normaalien symbolien sijasta
      --defined-only     Näytä vain määritellyt symbolit
  -e                     (ei oteta huomioon)
  -f, --format=MUOTO     Käytä tulostemuotoa MUOTO.  MUOTO voi olla ”bsd”,
                          ”sysv” tai ”posix”.  Oletus on ”bsd”
  -g, --extern-only      Näytä vain ulkoiset symbolit
  -l, --line-numbers     Käytä vianjäljitystietoja tiedostonimen löytämiseen ja
                          rivinumeroa jokaiselle symbolille
  -n, --numeric-sort     Lajittele symbolit numeerisesti osoitteen mukaan
  -o                     Sama kuin -A
  -p, --no-sort          Älä lajittele symboleja
  -P, --portability      Sama kuin --format=posix
  -r, --reverse-sort     Käännä lajittelu käänteiseksi
 Valitsimet ovat:
  -h --help        Näytä nämä tiedot
  -v --version     Tulosta ohjelman versionumero
 Valitsimet ovat:
  -i --input=<tiedosto>        Nimeä syötetiedosto
  -o --output=<tiedosto>       Nimeä tulostetiedosto
  -J --input-format=<muoto>    Määrittele syötemuoto
  -O --output-format=<muoto>   Määrittele tulostemuoto
  -F --target=<kohde>          Määrittele COFF-kohde
     --preprocessor=<ohjelma>  Ohjelma, jota käytetään rc-tiedoston esikäsittelyyn
  -I --include-dir=<hakemisto> Include-hakemisto rc-tiedoston esikäsittelyssä
  -D --define <sym>[=<arvo>]   Määrittele symboli SYM, kun rc-tiedostoa esikäsitellään
  -U --undefine <sym>          Poista SYM-määrittely, kun rc-tiedostoa esikäsitellään
  -v --verbose                 Laveasti - kertoo mitä se olet tekemässä
  -c --codepage=<koodisivu>    Määrittele oletuskoodisivu
  -l --language=<arvo>         Aseta kieli, kun rc-tiedostoa luetaan
     --use-temp-file           Käytä tilapäistä tiedostoa, ei popen:ia lukemaan
                               esikääntäjätulostetta
     --no-use-temp-file        Käytä popenia (oletus)
 Valitsimet ovat:
  -q --quick       (Vanhentunut - ei oteta huomioon)
  -n --noprescan   Älä suorita selausta common-lohkojen muuntamiseksi defs-lohkoiksi
  -d --debug       Näytä tietoja siitä mitä ollaan tekemässä
  @<tiedosto>      Lue valitsimet tiedostosta <tiedosto>
  -h --help        Näytä nämä tiedot
  -v --version     Tulosta ohjelman versionumero
 Valitsimet ovat:
  @<tiedosto>                  Lue valitsimet <tiedosto>sta
 Valitsimet ovat:
  @<tiedosto>                 Lue valitsimet tiedostosta <tiedosto>
  -a --addresses              Näytä osoitteet
  -b --target=<bfd-nimi>      Aseta binaaritiedoston muoto
  -e --exe=<suoritustiedosto> Aseta syötetiedoston nimi (oletus on a.out)
  -i --inlines                Palauta inline-funktiot
  -j --section=<nimi>         Lue lohkosuhteelliset siirrokset eikä osoitteet
  -s --basenames              Riisu hakemistonimet
  -f --functions              Näytä funktionimet
  -C --demangle[=tyyli]       Eheytä funktionimet
  -h --help                   Näytä nämä tiedot
  -v --version                Näytä ohjelman version

 Valitsimet ovat:
  @<tiedosto>            Lue valitsimet tiedostosta <tiedosto>
  -h --help              Näytä nämä tiedot
  -v --version           Näytä ohjelman versio

 Typistetty .text-lohko
Käsittelemätön versio
 Havaittu tuntematon makrokäskykoodi %02x
 Päivitä ELF-tiedostojen ELF-otsake
 [DW_AT_frame_base puuttuu]osoite lohkokoon takana
 ja %s riviä riville %d
 osoitteessa  siirroksessa 0x%lx on %lu alkiota:
 virheellinen symboli-indeksi: %08lx komentokohtaiset valitsimet:
 komennot:
 prosessorialityyppi: %08lx
 prosessorityyppi : %08lx (%s)
 emulointivalitsimet: 
 tiedostotyyppi : %08lx (%s)
 liput     : %08lx ( yleiset valitsimet:
 pituus: %08x
 maaginen  : %08lx
 maaginen : %08x (%s)
 ncmds     : %08lx (%lu)
 tunnisteita ei löytynyt
 CTL-linkkien lukumäärä: %u
 vaihtoehtoinen:
 ohjelmatulkki varattu   : %08x
 sizeofcmds: %08lx
 tunnisteet osoitteessa %08x
 tyyppi:0x%lx, nimikoko:0x%08lx, kuvauskoko: 0x%08lx
#rivit %d #sources %d%08x: <tuntematon>%ld: .bf ilman edeltävää funktiota%ld: odottamaton .ef
%lu
%s
 (otsake %s, data %s)
%s %s%c0x%s ei käytetty koskaan%s-ohjelmasta poistuttiin tilassa %dkohteessa %s ei ole arkistoindeksiä
%s ei ole kirjasto%s ei ole kelvollinen arkisto%s lohkodata%s: %ld tavua jäljellä symbolitaulussa, mutta ilman vastaavia alkioita indeksitaulussa
%s: %s: osoite ei ole lukualueen sisällä%s: Ei voi avata syötearkistoa %s
%s: Ei voi avata tulostearkistoa %s
%s: Virhe: %s: ELF-otsakkeen lukeminen epäonnistui
%s: Tiedosto-otsakkeen lukeminen epäonnistui
%s: Tiedoston maagisen numeron lukeminen epäonnistui
%s: ELF-otsakkeen haku epäonnistui
%s: ELF-otsakkeen päivitys epäonnistui: %s
%s: Täsmäävät muodot:%s: Useita symbolin ”%s” uudelleenmäärittelyjä%s: Ei ELF-tiedosto - siinä on väärät maagiset tavut alussa
%s: Polkukomponentit riisuttu tiedostovedosnimestä, ’%s’.%s: Symboli ”%s” on kohteena useammalle kuin yhdelle uudelleenmäärittelylle%s: Täsmäämätön EI_CLASS: %d ei ole %d
%s: Täsmäämätön EI_OSABI: %d ei ole %d
%s: Täsmäämätön e_machine: %d ei ole %d
%s: Täsmäämätön e_type: %d ei ole %d
%s: Tukematon EI_VERSION: %d ei ole %d
%s: Varoitus: %s: virheellinen arkistotiedostonimi
%s: virheellinen numero: %s%s: virheellinen versio PE-alijärjestelmässä%s: ei voi löytää jäsentä %s
%s: ei voi avata tiedostoa %s
%s: lohkoa %s ei löydy%s: osoitteita ei saa arkistosta%s: ei voi asettaa aikaa: %s%s: sisältää rikkinäisen ohutarkiston: %s
%s: vianjäljityslinkkilohko on jo olemassa%s: kelvollista arkisto-otsaketta ei löytynyt
%s: symbolitaulun loppu tavoitettiin ennen indeksin loppua
%s: kohteen %s suoritus epäonnistui: %s: arkisto-otsakkeen lukeminen epäonnistui
%s: arkisto-otsaketta seuraavan arkistoindeksin lukeminen epäonnistui
%s: arkistoindeksin lukeminen epäonnistui
%s: arkistoindeksisymbolitaulun lukeminen epäonnistui
%s: pitkän symbolinimimerkkijonotaulun lukeminen epäonnistui
%s: objektitiedostojen alkuunpaluun haku arkistossa epäonnistui
%s: arkistojäsenen haku epäonnistui
%s: arkistojäsenen haku epäonnistui.
%s: ensimmäisen arkisto-otsakkeen haku epäonnistui
%s: seuraavan arkisto-otsakkeen haku epäonnistui
%s: seuraavan tiedostonimen haku epäonnistui
%s: arkistosymbolitaulun yli hyppääminen epäonnistui
%s: tiedosto %s ei ole arkisto
%s: fread-kutsu epäonnistui%s: fseek-kutsu kohtaan %lu epäonnistui: %s%s: virheellinen commit-arvo valitsimelle --heap%s: virheellinen commit-arvo valitsimelle --stack%s: virheellinen tulostemuoto%s: virheellinen kantaluku%s: virheellinen reserve-arvo valitsimelle --heap%s: virheellinen reserve-arvo valitsimelle --stack%s: ei sisältöhakemistoa päivitettävänä%s: ei avointa arkistoa
%s: ei avointa tulostearkistoa
%s: tulostearkistoa ei ole vielä annettu
%s: ei tunnistettavia vianjäljitystietoja%s: ei resurssilohkoa%s: ei symboleja%s: ei ole dynaaminen objekti%s: binaaridataa ei ole tarpeeksi%s: vianjäljitystietojen tulostaminen epäonnistui%s: lukeminen palautti %lu merkistä (vain) %lu%s: lukuvirhe: %s%s: tuetut arkkitehtuurit:%s: tuetut muodot:%s: tuetut kohteet:%s: arkistossa on indeksi, mutta ei symboleja
%s: arkistoindeksi on tyhjä
%s: arkistoindeksissä otaksutaan olevan %ld %d:n tavun alkiota, mutta koko on vain %ld
%s: ei kyetä vedostamaan indeksiä, koska mitään ei löytynyt
%s: odottamaton tiedostonloppumerkki%s: varoitus: %s: varoitus: jaetuissa kirjastoissa ei voi olla alustamatonta dataa%s: varoitus: kentän ”%s” koko tuntematon struct-rakenteessa%s:%d: Ei oteta huomioon tältä riviltä löydettyä roskaa%s:%d: rivin lopusta löytyi roskaa%s:%d: uusi symbolinimi puuttuu%s:%d: ennenaikainen tiedoston loppu’%s’’%s’ ei ole tavallinen tiedosto
’%s’: Tiedostoa ei löydy’%s’: Tiedostoa ei löydy
(DW_OP_GNU_implicit_pointer kehystiedoissa)(DW_OP_call_ref kehystiedoissa)(ROMAGIC: kirjoitussuojatut jaettavat tekstisegmentit)(TOCMAGIC: kirjoitussuojatut tekstisegmentit ja sisällysluettelo)(Tuntematon sijoituskäskykoodi)(Tuntematon: %s)(Käyttäjän määrittelemä sijoituskäskykoodi)(Käytetään %d:n otaksuttua kokoa tämän vedoksen loppuosaan)
(WRMAGIC: kirjoituskelpoiset tekstisegmentit)(väärä siirrososoite: %u)(perusosoite valintakohta)
(perusosoite)
(esitelty inline-funktiona ja toteutettu sellaisena)(esitelty inline-funktiona, mutta esittelyä ei ole otettu huomioon)(dumpx-muoto - aix4.3 / 32-bittinen)(dumpxx-muoto - aix5.0 / 64-bittinen)(toteutuss määritelty: %s)(inline-funktiona)(ei inline-funktiona)(alku == loppu)(alku > loppu)(määrittelemätön)(tuntematon esteettömyys)(tuntematon tapaus)(tuntematon käytäntö)(tuntematon tyyppi)(tuntematon näennäisyys)(tuntematon näkyvyys)(käyttäjän määrittelemä tyyppi)(käyttäjän määrittelemä))
*virheellinen**määrittelemätön*, <tuntematon>, Perusosoite: , Opastin: , uudelleensijoitettava, sijoitettava kirjasto, tuntematon ABI, tuntematon prosessori, tuntematon ISA, tuntematon v850-arkkitehtuurivariantti.debug_abbrev-lohkoa ei ole päätetty nollaan
.debug_info-siirrososoite: 0x%lx lohkossa %s ei osoita käännösyksikköotsakkeeseen.
.debug_macro-lohkoa ei ole päätetty nollaan
128-bittinen MSA
16-tavuinen
2 tavua
kahden komplementti, ”big endian”-tavujärjestyskahden komplementti, ”little endian”-tavujärjestys32-bittinen sijoitusdata4 tavua
4-tavuinen
64-bittinen sijoitusdata8-tavuinen
8-tavuun ja aina %d-tavuun laajennettu
8-tavua, paitsi sivu SP
:
  Ei symboleja
: arkkitehtuurivariantti: : kaksoiskappalearvo
: otaksuttiin olevan hakemisto
: otaksuttiin olevan lehti
: tuntematon: tuntemattomat lisälippubitit myös mukana<Luettelon loppu>
<Käyttöjärjestelmäkohtainen>: %d<rikkinäinen merkkijonotauluindeksi: %3ld><rikki: %<rikki: %14ld><rikki: %19ld><rikki: %9ld><rikki><indeksisiirros on liian suuri><epäsuora indeksisiirros on liian suuri><localentry>: %d<ei .debug_addr-lohkoa><ei .debug_str-lohkoa><ei .debug_str.dwo-lohkoa><ei .debug_str_offsets-lohkoa><ei .debug_str_offsets.dwo-lohkoa><nimetön><ei mitään><siirros on liian suuri><toinen>: %x<suoritinkohtainen>: %d<merkkijonotaulun indeksi: %3ld><tuntematon lisättävä: %lx><tuntematon: %lx><tuntematon: %x><tuntematon><tuntematon>: %d<tuntematon>: %lx<tuntematon>: %x<tuntematon>: 0x%xKoodisivu oli annettu kytkin ”%s” ja UTF16.
HakuViennit lisätty tulostetiedostoonViennit lisätään tulostetiedostoonOsoiteMikä tahansa
Mikä tahansa MSA tai ei
Sovellus
Sovellus tai tosiaikainen
Arkistojäsen käyttää pitkiä nimiä, mutta pitkänimitaulua ei löytynyt
Attribuuttilohko: %s
TarkastuskirjastoLisäotsake:
Apukirjastoei-tuettu binäärikoodattu desimaaliliukulukutyyppiBFD-otsaketiedoston versio %s
Virheellinen sh_info-kenttä ryhmälohkossa ”%s”
Virheellinen sh_link-kenttä ryhmälohkossa ”%s”
Virheellinen stab: %s
Bare-metal C6000Valesisarusloppumerkitsijä havaittu siirrososoitteessa %lx lohkossa %s
C++-kantaluokkaa ei ole määriteltyC++-kantaluokkaa ei löytynyt containeristaC++-data -jäsentä ei löytynyt containeristafunktiossa ei ole C++-oletusarvojaC++-objektissa ei ole kenttiäC++-viite ei ole osoitinC++-viite ei löytynytC++ staattinen virtuaalimetodiCORE (Muistivedos)Käännösyksikkö siirrososoitteessa %s sisältää rikkinäisen tai tukemattoman versionumeron: %d.
Käännösyksikkö: %s/%s:
Käännösyksikkö: %s:
Tiedoston .lib luominen epäonnistui: %s: %sLohkon jälkeisen välin täyttäminen epäonnistuiMääriteltynä ei voi olla sekä LIBRARY- että NAME-komentoTiedoston .lib avaaminen epäonnistui: %s: %sDef-tiedoston avaaminen epäonnistui: %sTiedostoa %s ei voi avata
Olemassaolevan kirjaston %s muuntaminen thin-muotoon epäonnistuiOlemassaolevan thin-kirjaston %s muuntaminen normaaliin muotoon epäonnistuiVirtuaalisia osoitteita ei voi tulkata ilman ohjelmaotsakkeita.
Mcore-elf-dll:n tuottaminen arkistotiedostosta epäonnistui: %sPaikkariippuvainen koodiosoitteenmuodostus
Paikkariippumaton koodiosoitteenmuodostus
AlustustiedostoLohkon %s sisältö:

Binaari %s:n sisältö siirrososoitteessa Lohkon %s sisältö:Lohkon %s sisältö:
Lohkon %s sisältö:

Muuntaa COFF-objektitiedoston SYSROFF-objektitiedostoksi
Copyright 2014 Free Software Foundation, Inc.
Ydinotsake:
Rikkinäinen ARM-suppeamallitaulurivi: %x 
Rikkinäinen tiedostotaulualkio
Rikkoutunut otsake ryhmälohkossa ”%s”
Rikkoutunut otsake lohkossa %s.
Rikkinäinen segmentti: vain %d tavua jäljellä, se ei riitä täyteen segmenttiin
Rikkinäinen yksikköpituus (0x%s) löytyi lohkossa %s
Tiedostoa ’%s’ ei löytynyt. Järjestelmävirhesanoma: %s
Ei voitu paikantaa ”.ARM.extab”-lohkoa, joka sisältää 0x%lx.
Ei saatu eheytettyä rakenteeseen sisältyvää tyyppiä
Luotu lib-tiedostoLuodaan kirjastotiedosto: %sLuodaan stub-tiedosto: %sNykyinen avoin arkisto on %s
JOHDETTU TYYPPIDIE siirrososoitteessa %lx viittaa lyhennenumeroon %lu, jota ei ole olemassa
DLLTOOL-nimi       : %s
DLLTOOL-valitsimet : %s
YKSIKKÖ-nimi       : %s
YKSIKKÖ-valitsimet : %s
DSBT-osoitteenmuodostusta ei ole käytetty
DSBT-osoitteenmuodostusta on käytetty
Epäsuora DW_FORM_GNU_str_index-siirros liian suuri: %s
DW_FORM_GNU_str_index-siirros liian suuri: %s
DW_FORM_data8 ei ole tuettu, kun sizeof (dwarf_vma) != 8
DW_FORM_strp-siirros liian suuri: %s
DW_LNE_define_file: Väärä käskykoodipituus
DW_MACRO_GNU_start_file käytetty, mutta ei ole tarjottu .debug_line siirrososoitetta.
DW_OP_GNU_push_tls_address tai DW_OP_HP_unknownDYN (Jaettu objektitiedosto)Paikkariippuvainen data-osoitteenmuodostus
Paikkariippumaton data-osoitteenmuodostus, GOT kaukana DP:sta
Paikkariippumaton data-osoitteenmuodostus, GOT lähellä DP:tä
Data-kokoVianjäljitystieto on rikkinäinen, lyhennesiirros (%lx) on laajempi kuin lyhennelohkon koko (%lx)
Vianjäljitystieto on rikkinäinen, käännösyksikön pituus osoitteessa %s ulottuu lohkon lopun ylitse (pituus = %s)
Lohkon %s vianjäljityssisällön dekoodattu vedos:

Tilapäinen perustiedosto %s poistetaanTilapäinen määrittelytiedosto %s poistetaanTilapäinen vientitiedosto %s poistetaanEheytetty nimi ei ole funktio
RiippuvuustarkastuskirjastoLohkon %s vianjäljityssisällön näyttäminen ei ole vielä tuettu.
Tämän konearkkitehtuurin uudelleensijoituksia ei tunneta
Luettu %sSymbolin kaksoiskappale kirjoitettu avainsanaluetteloon.Dynaamiset relocs-tietueet:
Dynaamiset symbolit:
ELF-otsake:
VIRHE: Virheellinen lohkopituus (%d > %d)
VIRHE: Virheellinen alilohkopituus (%d > %d)
EXEC (Suoritettava tiedosto)LoppuSekvenssin loppu

Tulokohta Enum-enumeraation jäsensiirrososoite %xVirhe, EXPORT-kaksoiskappale järjestysluvuilla: %sPoikkeustaulu:
Poissulkeva symboli: %sKohteen %s suoritus epäonnistuiMUOTO on yksi muodoista rc, res tai coff ja päätellään tiedostonimi-
tarkentimesta, jos muotoa ei ole annettu. Yksi tiedostonimi on
syötetiedosto, ei syötetiedostoa on vakiosyöte, oletusmuoto on rc.
Ei tulostetiedostoa on vakiotuloste, oletusmuoto rc.
Viimeisen ketjupituuden määritteleminen epäonnistui
Runnellun mallinteen tulostaminen epäonnistui
Buckets-lukumäärän lukeminen epäonnistui
Ketjujen lukumäärän lukeminen epäonnistui
Tiedosto %s ei ole arkisto, joten sen indeksiä ei voi näyttää.
Tiedostoattribuutit
Tiedosto sisältää useita dynaamisia merkkijonotauluja
Tiedosto sisältää useita dynaamisia symbolitauluja
Tiedosto sisältää useita ”symtab shndx”-tauluja
Tiedosto-otsake:
Tiedostonimi                         Rivinumero     Aloitusosoite
SuodatinkirjastoLiput:Mach-O-tiedostoille:
  header         Näytä tiedosto-otsake
  section        Näytä segmentti- ja lohkokomennot
  map            Näytä lohkokartta
  load           Näytä latauskomennot
  dysymtab       Näytä dynaaminen symbolitaulu
  codesign       Näytä koodiallekirjoitus
  seg_split_info Näytä segmentinjakotiedot
XCOFF-tiedostoille:
  header      Näytä tiedosto-otsake
  aout        Näytä lisäotsake
  sections    Näytä lohko-otsakkeet
  syms        Näytä symbolien taulu
  relocs      Näytä sijoittelualkiot
  lineno      Näytä rivinumeroalkiot
  loader      Näytä lataajalohko
  except      Näytä poikkeustaulu
  typchk      Näytä tyyppitarksituslohko
  traceback   Näytä paluujäljitystunnisteet
  toc         Näytä sisällysluettelosymbolit
  ldinfo      Näytä lataustiedot ydintiedostoissa
Lisävaroitukset valesisarusloppumerkitsijöistä on vaimennettu
SAATIIN %x
Tuotettu vientitiedostoTuotetaan vientitiedosto: %sYleinen
Yleinen Siirros TaulutiedotLaitteistoliukuluku
Laitteistoliukuluku (MIPS32r2 64-bittinen liukulukuyksikkö)
Laitteistoliukuluku (kaksoistarkkuus)
Laitteistoliukuluku (yksittäistarkkuus)
Laite- tai ohjelmistoliukuluku
ID-hakemiston riviID-resurssiID-alihakemistoIEEE numeerinen ylivuoto: 0xIEEE merkkijonopituuden ylivuoto: %u
ei-tuettu IEEE kompleksilukutyyppikoko %u
ei-tuettu IEEE liukulukutyyppikoko %u
ei-tuettu IEEE kokonaislukutyyppikoko %u
Ind Nimi          Koko      VirtMuistiOsoite  LatausMuistOsoite TiedSiir  TasausInd Nimi          Koko      VirMuisOs LatMuisOs TiedSiir  TasausTuontitiedostot:
Tuontikirjasto ”%s” määrittelee kaksi tai useampia dll-komponenttejaArkistossa %s:
Sisäkkäisessä arkistossa %s:
Arkiston %s indeksi: (%ld alkiota, 0x%lx tavua symbolitaulussa)
AlustavaSyötetiedosto ’%s’ ei ole luettava
Syötetiedosto ’%s’ ei ole luettava.
Syötetiedosto ”%s” ohittaa binaariarkkitehtuuriparametrin.Rajapintaversio: %sSisäinen virhe: DWARF-versio ei ole 2, 3 eikä 4.
Sisäinen virhe: Tuntematon konetyyppi: %dSisäinen virhe: ei voitu luoda muotomerkkijonoa ohjelmatulkin näyttämiseksi
Sisäinen virhe: tila loppui shndx-varannossa.
Virheellinen osoitekoko %s-lohkossa!
Virheellinen laajennuskäskykoodimuoto %s
Virheellinen toimintojen enimmäismäärä per käsky.
Virheellinen valitsin ’-%c’
Virheellinen kantaluku: %s
Virheellinen sh_entsize
Tilapäinen perustiedosto %s pidetäänTilapäinen määrittelytiedosto %s pidetäänTilapäinen vientitiedosto %s pidetäänLippuavaimet:
  W (kirjoita), A (varaa), X (suorita), M (lomita), S (merkkijonot)
  I (tiedot), L (linkitysjärjestys), G (ryhmä), T (TLS), E (sulje pois), x (tuntematon)
  O (vaatii käyttöjärjestelmäkohtaista lisäkäsittelyä) o (Käyttöjärjestelmäkohtainen),
  p (suoritinkohtainen)
Lippuavaimet:
  W (kirjoita), A (varaa), X (suorita), M (lomita), S (merkkijonot), l (large)
  I (tiedot), L (linkitysjärjestys), G (ryhmä), T (TLS), E (sulje pois), x (tuntematon)
  O (vaatii käyttöjärjestelmäkohtaista lisäkäsittelyä) o (Käyttöjärjestelmäkohtainen),
  p (suoritinkohtainen)
LIBRARY-komento: %s kantaluku: %xSuuri
Viimeiset stabs-alkiot ennen virhettä:
Kirjaston rpath: [%s]Kirjaston run-polku: [%s]Kirjaston so-nimi: [%s]Rivinumerot kohteelle %s (%u)
Lohkojen luettelo Lähdetiedostojen luetteloSymbolien luetteloLoader-otsake:
Siirroksesta 0x%lx alkavaa sijaintiluetteloa ei ole päätetty.
Sijaintiluettelot %s-lohkossa alkavat osoitteesta 0x%s
MODUULI***
MSP430
MSP430X
Mach-O-otsake:
Konetta ’%s’ ei tuetaMuisti
Muistilohko %s+%xMikrokontrolleri
Puuttuu Versiotarve-lisätietoja
Puuttuu Versiotarve-tietoja
Kolmekymmentäkaksibittisten reloc-tyyppien puuttuvaa tietoa käytetään konenumeron %d DWARF-lohkoissa
Useita lohkon %s uudelleennimeämisiäValitsimista on annettava joko -o tai --dllnameNAME-komento: %s kantaluku: %xNDS32-elf-lippujen lohkoEI MITÄÄNNONE (Ei mitään)NT_386_IOPERM (x86-siirräntäkäyttöoikeudet)NT_386_TLS (x86-TLS-tiedot)NT_ARCH (arkkitehtuuri)NT_ARM_HW_BREAK (AArch laitteistopysäytyspisterekisterit)NT_ARM_HW_WATCH (AArch laitteistovahtipisterekisterit)NT_ARM_TLS (AArch TLS-rekisterit)NT_ARM_VFP (arm VFP-rekisterit)NT_AUXV (apuvektori)NT_FILE (kuvaustiedostot)NT_FPREGS (liukulukurekistereitä)NT_FPREGSET (liukulukurekistereitä)NT_GNU_ABI_TAG (ABI-versiotunniste)NT_GNU_BUILD_ID (uniikki rakentamistunnistebittimerkkijono)NT_GNU_GOLD_VERSION (kultaversio)NT_GNU_HWCAP (DSO-tuettu ohjelmisto-HWCAP-tiedot)NT_LWPSINFO (lwpsinfo_t-rakenne)NT_LWPSTATUS (lwpstatus_t-rakenne)NT_PPC_VMX (ppc Altivec-rekisterit)NT_PPC_VSX (ppc VSX-rekisterit)NT_PRPSINFO (prpsinfo-rakenne)NT_PRSTATUS (prstatus-rakenne)NT_PRXFPREG (user_xfpregs-rakenne)NT_PSINFO (psinfo-rakenne)NT_PSTATUS (pstatus-rakenne)NT_S390_CTRS (s390 ohjausrekisterit)NT_S390_HIGH_GPRS (s390 ylemmät rekisteripuoliskot)NT_S390_LAST_BREAK (s390 viimeinen katkotapahtumaosoite)NT_S390_PREFIX (s390 prefiksirekisteri)NT_S390_SYSTEM_CALL (s390 järjestelmäkutsu-uudelleenkäynnistystiedot)NT_S390_TDB (s390 vuorovaikutteinen diagnostiikkalohko)NT_S390_TIMER (s390 ajastinrekisteri)NT_S390_TODCMP (s390 TOD -komparaattorirekisteri)NT_S390_TODPREG (s390 TOD ohjelmoitava rekisteri)NT_SIGINFO (siginfo_t-tiedot)NT_STAPSDT (SystemTap-tunnusteluselosteet)NT_TASKSTRUCT (task-rakenne)NT_VERSION (versio)NT_VMS_EIDC (johdonmukaisuustarkistus)NT_VMS_FPMODE (FP-tila)NT_VMS_GSTNAM (symbolitaulunimi)NT_VMS_IMGBID (rakentamistunniste)NT_VMS_IMGID (vedostunniste)NT_VMS_IMGNAM (vedosnimi)NT_VMS_LINKID (linkitystunniste)NT_VMS_LNM (kielinimi)NT_VMS_MHD (moduuliotsake)NT_VMS_SRC (lähdetiedostot)NT_WIN32PSTATUS (win32_pstatus-rakenne)NT_X86_XSTATE (x86 XSAVE laajennettu tila)N_LBRAC-symboli ei ole funktiossa
NimiNimi                  Arvo            Luokka       Tyyppi       Koko             Rivi  Lohko

Nimi                  Arvo    Luokka       Tyyppi       Koko    Rivi  Lohko

Nimi-indeksi: %ld
Nimi: %s
Numerorivit: %-8u Koko: %08x (%u)
NdxNetBSD procinfo-rakenneEi ole %s-lohkoa

Ei käännösyksikköjä %s-lohkossa ?Ei alkiota %s arkistossa.
Mikään tiedostonimi ei seuraa valitsinta -fo.
Ei sijaintiluetteloja .debug_info-lohkossa!
Kohdetta ”%s” ei eheytetä
Millään jäsenellä ei ole nimeä ”%s”
Ydintiedostossa ei ole note-segmenttejä.
Ei lukualueluetteloja .debug_info-lohkossa.
Ei mitäänEi mitään
Ei ELF-tiedosto - siinä on väärät maagiset tavut alussa
Muistia ei ole tarpeeksi %u:n alkion vianjäljitystietotaulukolleTarpeeton objekti: [%s]
Ei käytetty
Ei mitään tehtävää.
Käyttöjärjestelmäkohtainen: (%x)Siirros %s, jota käytettiin DIE:n DW_AT_import-attribuutin arvona siirrososoitteessa %lx on liian suuri.
Siirros 0x%lx on suurempi kuin .debug_loc-lohkon koko.
Siirros lohkoon %s on liian suuri: %s
Vain -X 32_64 on tuettunaVain DWARF 2- ja 3-aranges on nykyisin tuettu.
Vain DWARF 2:n ja 3:n pub-nimet ovat nykyisin tuettuja
Vain DWARF-versioiden 2, 3 ja 4 rivitiedot on nykyisin tuettu.
Vain GNU-laajennus kohteen %s DWARF-versioon 4 on nykyisin tuettu.
Avattu tilapäinen tiedosto: %sKäyttöjärjestelmäkohtainen: %lxValitsin -I on vanhentunut syötemuodon asetukseen, käytä sen sijaan valitsinta -J.
Muisti loppui
Muisti loppui varattaessa 0x%lx tavua kohteelle %s
Muisti loppui varattaessa tiedostovedospyyntötaulua.
Muisti loppui luettaessa pitkiä symbolinimiä arkistossa
Muisti loppui kun yritettiin muuntaa arkiston symboli-indeksiä
Muisti loppui yritettäessä lukea arkistoindeksisymbolitaulua
Muisti loppui kun yritettiin lukea arkiston symboli-indeksiä
Tulostetiedosto ei voi edustaa arkkitehtuuria ”%s”OmistajaPT_GETFPREGS (fpreg-rakenne)PT_GETREGS (reg-rakenne)SivusiirrosPascal-tiedostonimeä ei tuetaPolkukomponentit riisuttu dll-nimestä, ’%s’.Osoitinkoko + segmenttikoko ei ole kahden potenssi.
Tulosta luettava tulkinta SYSROFF-objektitiedostosta
Tulostusleveyttä ei ole alustettu (%d)Proseduuri Liitäntä TaulutiedotKäsiteltiin def-tiedostoaKäsiteltiin määrittelyjäKäsitellään def-tiedostoa: %sKäsitellään määrittelyjäSuoritinkohtainen: %lxSuoritinkohtainen: (%x)REL (Uudelleensijoitettava tiedosto)Lukualueluettelot %s-lohkossa alkavat osoitteesta 0x%lx
Lohkon %s vianjäljityssisällön raakavedos:

Lohkon lukeminen epäonnistuiTosiaikainen
Kieltäytyä palauttamaanRekisteri %dSijoitukset kohteelle %s (%u)
Ilmoita ohjelmistovioista englanniksi osoitteeseen %s
Suomennoksen virheistä voi ilmoittaa (suomeksi) osoitteeseen <mailto:translation-team-fi@lists.sourceforge.net>
Ilmoita ohjelmointivirheistä englanniksi osoitteeseen %s.
Ilmoita käännösvirheistä osoitteeseen <translation-team-fi@lists.sourceforge.net>.
Varattu pituusarvo (0x%s) löytyi lohkossa %s
Suuruus rajoitettu
SUMMA ON %x
SYMBOLITIEDOTSelataan objektitiedostoa %sLohkossa %d on virheellinen % sh_entsizeLohkoa %d ei voitu vedostaa, koska sitä ei ole olemassa!
Lohko %s on liian pieni %d hash-taulualkioille
Lohko %s on liian pieni siirros- ja kokotauluille
Lohko %s on liian pieni shndx-varannolle
Lohkoa ’%s’ ei voitu vedostaa, koska sitä ei ole olemassa!
Lohkoattribuutit:Lohko-otsakkeet (osoitteesta %u+%u=0x%08x osoitteeseen 0x%08x):
Lohko-otsakkeita ei ole saatavilla!
Lohkot:
Lohkosiirros         Tyyppi                           SymVek.Tietotyyppi
Lohko Siirros Tyyppi                         Yhteenlaskettava  Lohko Symbolit Siirros
Segmentit ja lohkot:
Jaettu kirjasto: [%s]Yksitarkkuuslaitteistoliukuluku
Ohittaa odottamattoman uudelleensijoituksen siirrososoitteessa 0x%lx
Ohittaa odottamattoman uudelleensijoitustyypin %s
Pieni
Ohjelmistoliukuluku
Lähdetiedosto %sPinosiirrososoite: %xErillinen sovellusAlkuStruct-tietuejäsenen siirrososoite %xImetään tietoja lohkosta %s kohteessa %sTuetut arkkitehtuurit:Tuetut kohteet:Sym.ArvoSymboli  %s, tunniste %d, numero %dSymboliattribuutit:Symbolien taulu (strtable osoitteessa 0x%08x)Syntaksivirhe def-tiedostossa %s:%dSisällysluettelo:
Osoitetaulutiedot versiossa 3 saattavat olla virheellisiä.
Rivitiedot näyttävät olevan rikkinäisiä - lohko on liian pieni
Lohko-otsakkeita on %d kpl, alkaen siirroksesta 0x%lx:
Käyttämättömiä tavuja on %ld lohkon %s lopussa
Aukko [0x%lx - 0x%lx] lohkossa %s.
Lohkossa .debug_loc on aukko [0x%lx - 0x%lx].
Päällekkäisyys [0x%lx - 0x%lx] lohkossa %s.
Lohkossa .debug_loc on päällekkäisyys [0x%lx - 0x%lx].
Tähän suoritettavaan tiedostoon ei ole käännetty tukea 64-bittiselle
datatyypille, joten se ei voi käsitellä 64-bittisiä ELF-tiedostoja.
Tähän readelf-binaariin ei ole käännetty tukea 64-bittiselle
datatyypille, joten 64-bittisiä ELF-tiedostoja ei voida lukea.
Tämä ohjelma on vapaa ohjelmisto; voit jakaa sitä edelleen GNU General Public License
version 3 tai (valintasi mukaan) millä tahansa myöhäisemmän version ehtojen mukaan.
Tällä ohjelmalla ei ehdottomasti ole mitään takuuta.
Aikaleima: %sLiian monta N_RBRAC-symbolia
Yritettiin ”%s”
Yritettiin tiedostoa: %sTosi
Rikkoutunut otsake lohkossa ”%s”
TyyppiTyyppitiedoston numero %d numeroalueen ulkopuolella
Tyyppi-indeksinumero %d numeroalueen ulkopuolella
Tyyppitarkistuslohko:
TUNTEMATON (%*.*lx)TUNTEMATON (%u): pituus %d
TUNTEMATON: Ei voi muuttaa syötetiedosto(je)n tavujärjestystyyppiäDll-nimen määritteleminen kohteelle ”%s” epäonnistui (ei tuontikirjasto?)Dynaamisen merkkijonotaulun pituutta ei voi määritellä
Ei voi määritellä ladattavien symbolien lukumäärää
Ohjelmatulkin nimeä ei löydy
Lohkon .debug_info lataaminen/jäsentäminen epäonnistui, joten lohkon %s tulkinta epäonnistui.
Lohkon %s paikantaminen epäonnistui!
Ei voi avata perustiedostoa: %sObjektitiedoston avaaminen epäonnistui: %s: %sTilapäisen assembler-tiedoston avaaminen epäonnistui: %sEi voi lukea 0x%lx tavua kohteesta %s
Ei voi lukea dynaamista dataa
Ohjelmatulkin nimeä ei voitu lukea
Tiedoston muodon tunnistaminen epäonnistuiSyötetiedoston ”%s” muotoa ei voi tunnistaaEi voida hakea arvoa 0x%lx kohteelle %s
Hakua ei voi suorittaa tiedoston loppuun
Hakua ei voi suorittaa tiedoston loppuun!
Ei voi hakea dynaamisten tietojen alkua
Määrittelemätön linkkerin poistama include-tiedostoMäärittelemätön symboliOdottamaton eheytetty totuusarvo
Tuntematon tyyppi eheytettäessä puumuotoista argumenttiluetteloa
Käsittelemätön MN10300 reloc-tyyppi löytyi SYM_DIFF reloc-tyypin jäljestäKäsittelemätön MN430 reloc-tyyppi löytyi SYM_DIFF reloc-tyypin jäljestäKäsittelemätön data-pituus: %d
Tuntematon ARM-suppeamalli-indeksi kohdattu
Tuntematon AT-arvo: %lxTuntematon FORM-arvo: %lxTuntematon OSABI: %s
Tuntematon tunnistearvo: %lxTuntematon muototyyppi ’%c’
Tuntematon sijaintiluettelokohtatyyppi 0x%x.
Tuntematon konetyyppi: %d
Tuntematon konetyyppi: %s
Tuntematon note-segmenttityyppi: (0x%08x)Tuntematon tunniste: %d
Tuntematon tyyppi: %s
Tunnistamaton XCOFF-tyyppi %d
Tunnistamaton vianjäljitysvalitsin ’%s’
Tunnistamaton vianjäljityslohko: %s
Tunnistamaton eheytyskomponentti %d
Tunnistamaton eheytetty rakenteeseen sisältyvä tyyppi
Tunnistamaton muoto: %lu
Tukematon EI_CLASS: %d
Kohdattiin tukematon arkkitehtuurityyppi %d dekoodattaessa palautustauluaKohdattiin tukematon arkkitehtuurityyppi %d prosessoitaessa palautustauluaTukematon versio %lu.
Käyttö %s <valitsimet> <objektitiedosto(t)>
Käyttö: %s <valitsimet> <tiedosto(t)>
Käyttö: %s <valitsimet> elf-tiedosto(t)
Käyttö: %s <valitsimet> syötetiedosto(t)
Käyttö: %s [emulointivalitsimet] [-]{dmpqrstx}[abcDfilMNoPsSTuvV] [--plugin <nimi>] [jäsennimi] [lukumäärä] arkistotiedosto tiedosto...
Käyttö: %s [emulointivalitsimet] [-]{dmpqrstx}[abcDfilMNoPsSTuvV] [jäsennimi] [lukumäärä] arkistotiedosto tiedosto...
Käyttö: %s [valitsimet] [osoitteita]
Käyttö: %s [valitsimet] [tiedosto(t)]
Käyttö: %s [valitsimet] [syötetiedosto [tulostetiedosto]]
Käyttö: %s [valitsimet] [syötetiedosto]
Käyttö: %s [valitsimet] [syötetiedosto] [tulostetiedosto]
Käyttö: %s [valitsimet] syötetiedosto
Käyttö: %s [valitsimet] syötetiedosto [tulostetiedosto]
Käyttö: %s [valitsimet] arkisto
Käyttö: readelf <valitsimet> elf-tiedosto(t)
Käytetään ”%s”
Käytetään tiedostoa: %sKäytetään popen:ia lukemaan esikääntäjätuloste
Käytetään tilapäistä tiedostoa ”%s” lukemaan esikääntäjätuloste
Käytetään ”--size-sort”- ja ”--undefined-only”-valitsimia yhdessäVERSIO %d.%d
Arvon ”N” on oltava positiivinen.versio %ld
Versio 4 ei tue kirjainkoosta riippuvia hakuja.
Versio 5 ei sisällä inline-funktioita.
Versio 6 ei sisällä symboliattribuutteja.
Versiotarve-lohkoVirtuaaliosoite 0x%lx ei sijaitse missään PT_LOAD-segmentissä.
NäkyväHALUTTIIN %x!!
Varoitus, ei oteta huomioon EXPORT-kaksoiskappaletta %s %d,%dVaroitus, konetyyppi (%d) ei tue viivetuontia.Varoitus: %s: %s
Varoitus: ’%s’ on negatiivinen koko, ehkä se on liian suuriVaroitus: ’%s’ ei ole tavallinen tiedostoVaroitus: tyyppikoko %d muutetaan kokoon %d
Varoitus: tiedostoa ’%s’ ei löytynyt.  syy: %sVaroitus: ei oteta huomioon edellistä %d:n ”--reverse-bytes”-arvoaVaroitus: katkaistaan välitäyte 0x%s tavumuodoksi 0x%xMissä[%3u] 0x%lx - 0x%lx
[%3u] 0x%lx 0x%lx [<tuntematon>: 0x%x] [Ylimääräinen][Typistetty käskykoodi]
[näppäimistö][typistetty]
”N” on merkityksellinen vain ”x”- ja ”d”-valitsimien kanssa.”u” on merkityksellinen vain ”D”-valitsimen kanssa.”u” on merkityksellinen vain ”r”-valitsimen kanssa.”u” määre ohitetaan koska ”D” on oletusarvo (katso ”U”)”x” ei voida käyttää ohuissa arkistoissa.accelerator-rakennearkkitehtuuri %s tuntematonarkkitehtuuri: %s, argumentittaulukko [%d} /attribuutitvirheellinen ATN65-tietuevirheellinen C++-kenttäbittisijainti tai kokovirheellinen dynaaminen symboli
virheellinen muoto kohteelle %svirheellinen runneltu nimi ”%s”
virheellinen misc-tietuevirheellinen rekisteri: virheellinen C++-metodifunktion tyyppivirheellisesti muotoiltu laajennusrivin käskykoodi tavattu!
bfd_coff_get_auxent epäonnistui: %sbfd_coff_get_syment epäonnistui: %sbfd_open ei onnistunut avaamaan stub-tiedostoa: %s: %sbfd_open ei onnistunut avaamaan uudelleen stub-tiedostoa: %s: %s”big endian”-tavujärjestyslohkotlohkoja jäi pinoon lopussatavunumeron on oltava lomitusta pienempitavunumeron on oltava ei-negatiivinentiedoston ”%s” tyyppiä ei voitu määritellä; käytä ”-J”-valitsintatäytteen lisääminen epäonnistuilohkon ’%s’ lisääminen epäonnistuitiedoston %s luominen tulosteeseen ”%s” epäonnistui.
vianjäljityslohkon luominen epäonnistuilohkon ”%s” luominen epäonnistuiei voi disassembloida arkkitehtuuria %s
lohkon ’%s’ vedostaminen epäonnistui - sitä ei ole olemassalohkon vedostaminen epäonnistui - siinä ei ollut sisältöälohkon vedostaminen epäonnistui - se on tyhjäkohdetta ”%s”: %s ei voi suorittaaei voi saada BFD_RELOC_RVA-uudelleensijoitustyyppiäei voi avata kohdetta %s ”%s”: %sei voi avata kohdetta ”%s” tulosteeseen: %stilapäistä tiedostoa ”%s” ei voi avata: %sei voi kutsua popen:ia ”%s”: %svakiotulostetta: ”%s” ei voi uudelleenohjata: %sei voi asettaa BFD-oletuskohteeksi ”%s”: %svianjäljityslohkon sisällön asettaminen epäonnistuiei voi käyttää annettua konetta %sydinlukuotsake epäonnistuivianjäljityslinkkilohkon ”%s” luominen epäonnistuitempdir-hakemiston luominen arkiston kopiointiin (virhe: %s) epäonnistuikohteen %s poistaminen epäonnistui: %svianjäljityslinkkilohkon ”%s” täyttäminen epäonnistuikohteen ’%s’ avaaminen epäonnistui: %ssyötetiedostoa %s ei voi avataavaus epäonnistui: %s: %slisäotsakkeen lukeminen epäonnistuikoodin allekirjoitustietojen lukeminen epäonnistuiei voida lukea otsakettarivinumerokohteiden lukeminen epäonnistuirivinumeroiden lukeminen epäonnistuilataustietotaulun lukeminen epäonnistuisijoitusrivin lukeminen epäonnistuisijoitusten lukeminen epäonnistuilohko-otsakkeiden lukeminen epäonnistuilohko-otsakkeiden lukeminen epäonnistuisegmentin halkaisutietojen lukeminen epäonnistuimerkkijonotaulun lukeminen epäonnistuiei voida lukea merkkijonotaulupituuttasymbolilisätulokohdan lukeminen epäonnistuisymbolitaulurivin lukeminen epäonnistuisymbolitaulun lukeminen epäonnistuitavujen järjestyksen kääntäminen päinvastaiseksi epäonnistui: lohkon %s pituuden on oltava parillisesti jaollinen %d:llakoodiristiriitaristiriitaluettelo löydetty ilman dynaamista symbolitaulua
const/volatile-indikaattori puuttuuohjaindata vaatii DIALOGEX:nkopioidaan kohteesta ”%s” [%s] kohteeseen ”%s” [%s]
kopioidaan arvosta ”%s” [tuntematon] arvoon ”%s” [tuntematon]
rikkinäinen Tag_GNU_Power_ABI_Struct_Returnrikkinäinen attribuutti
rikkinäinen indeksitaulurivi: %x
rikkinäinen tunniste
rikkinäinen toimittaja-attribuutti
tilapäisen tiedoston luominen tallentamaan riisuttua kopiota epäonnistuiei voi luoda tilapäistä tiedostoa arkistoa kirjoitettaessasymbolinumeron %ld tyypin määritteleminen epäonnistui
lohkovedostiedoston avaaminen epäonnistuilohkon sisällön noutaminen epäonnistuiei voitu avata symbolien uudelleenmäärittelytiedostoa %s (virhe: %s)luodaan arkisto %skohdistinkohdistintiedosto ”%s” ei sisällä kohdistindataaräätälöity lohkodata-alkiodata-koko %lddebug_add_to_current_namespace: ei nykyistä tiedostoadebug_end_block: yritettiin sulkea ylimmän tason lohkodebug_end_block: ei nykyistä lohkoadebug_end_common_block: ei toteutettudebug_end_function: ei nykyistä funktiotadebug_end_function: joitakin lohkoja ei ollut suljettudebug_find_named_type: ei nykyistä käännösyksikköädebug_get_real_type: kehä-vianjäljitystietoa kohteella %s
debug_make_undefined_type: lajittelua ei tuetadebug_name_type: ei nykyistä tiedostoadebug_record_function: ei debug_set_filename-kutsuadebug_record_label: ei toteutettudebug_record_line: ei nykyistä yksikköädebug_record_parameter: ei nykyistä funktiotadebug_record_variable: ei nykyistä tiedostoadebug_start_block: ei nykyistä lohkoadebug_start_common_block: ei toteutettudebug_start_source: ei debug_set_filename-kutsuadebug_tag_type: yritetty asettaa ylimääräinen tunnistedebug_tag_type: ei nykyistä tiedostoadebug_write_type: kohdattu virheellinen tyyppimäärittele uusi tiedostotaulualkio
valintaikkunaohjainvalintaikkunaohjaindataavalintaikkunaohjainloppuvalintaikkunan kirjainlajin pistekokovalintaikkunaotsakedialogex-valintaikkunaohjaindialogex-valintaikkunan kirjainlajitietojahakemistohakemistorivin nimidisassemble_fn palautti pituuden %dei tiedetä kuinka kirjoittaa vianjäljitystietoja kohteelle %sdwo_iddynaaminen lohkodynaamiset lohkovedoskorjauksetdynaamiset lohkovedossijoituksetdynaaminen merkkijonolohkodynaaminen merkkijonotauludynaamiset merkkijonotendian-tavujärjestystyyppi tuntematonenum-määrittelyjäenumeraatioviite kohteeseen %svirhe kopioitaessa yksityistä BFD-dataavirhe yksityisessä otsakedatassavirhe: %s sekä kopioitu että poistettuvirhe: %s sekä asettaa että muuttaa LMA:tavirhe: %s sekä asettaa että muuttaa VMA:tavirhe: käskyleveyden täytyy olla positiivinenvirhe: etuliitenauhan on oltava ei-negatiivinenvirhe: lohko %s täsmää sekä poisto- että kopiointivalitsimiinvirhe: syötetiedosto ’%s’ on tyhjävirhe: aloitusosoitteen pitäisi olla ennen loppuosoitettavirhe: pysähtymisosoitteen tulisi olla alkuosoitteen jälkeenlausekepinon täsmäämättömyyslausekepinon ylivuotolausekepinon ehtyminenyksityisen datan kopioiminen epäonnistuitulostelohkon luominen epäonnistuitilapäisen head-tiedoston avaaminen epäonnistui: %stilapäisen head-tiedoston avaaminen epäonnistui: %s: %stilapäisen tail-tiedoston avaaminen epäonnistui: %stilapäisen tail-tiedoston avaaminen epäonnistui: %s: %salkioiden lukumäärän lukeminen perustiedostosta epäonnistuitasauksen asettaminen epäonnistuikoon asettaminen epäonnistuivirtuaalisen muistiosoitteen asettaminen epäonnistuiCOFF-syötteeseen vaaditaan tiedostonimiCOFF-tulosteeseen vaaditaan tiedostonimikiinteä versiotietolippu = %d, toimittaja = %s
lippu = %d, toimittaja = <rikki>
liput 0x%08x:
fontdirfontdir-laitenimi”fontdir face”-nimifontdir-otsakefunktiofuntio palauttaagyleinenryhmäkohdistinryhmäkohdistinotsakeryhmäkuvakeryhmäkuvakeotsakeon jälkeläisiäohje-ID vaatii DIALOGEX:nopastelohkokuvaketiedosto ”%s” ei sisällä kuvakedataaei oteta huomioon vaihtoehtoista arvoavirheellinen tyyppi-indeksivirheellinen muuttujaindeksisyöte- ja tulostetiedosto ei saa olla sama tiedostosyötetiedosto ei tunnu olevan UFT16-muotoinen.
syötetiedosto nimetty sekä komentorivillä että INPUT-tiedostossalomituksen täytyy olla positiivinenlomituksen alkutavu täytyy olla asetettu valitsimella --bytelomitusleveyden on oltava vähemmän tai yhtä paljon kuin lomitus - byte`lomitusleveyden täytyy olla positiivinensisäinen virhe -- tätä valitsinta ei ole toteutettusisäinen stat-kutsuvirhe kohteessa %svirheellinen argumentti valitsimelle --format: %sannettu virheellinen koodisivu.
virheellinen indeksi symbolitaulukkoon
virheellinen kokonaislukuargumentti %svirheellinen minimimerkkijonopituus %dvirheellinen numerovirheellinen valitsin -f
virheellinen merkkijonopituusvirheellinen arvo annettu code_page-pragmalle.
pituus %d [liblist-lohkodataliblist-merkkijonotaulurivinro symndx/paddr
”little endian”-tavujärjestystee .bss-lohkotee .nlmsections-lohkotee lohkovalikko-otsakemenuex-valikko-otsakemenuex-valikkosiirrosmenuitem-valikkoalkiomenuitem-valikkoalkio-otsakesanomalohkoindeksityyppi puuttuuvaadittu ASN puuttuuvaadittu ATN65 puuttuumoduulilohkouseampi kuin yksi dynaaminen segmentti
nimetty hakemistorivinimetty resurssinimetty alihakemistoei .dynamic-lohkoa dynaamisessa segmentissä
ei .except-lohkoa tiedostossa
ei .loader-lohkoa tiedostossa
ei .typchk-lohkooa tiedostossa
runnellussa merkkijonossa ei ole argumenttityyppejä
ei jälkeläisiäarkistossa ei ole alkiota %s
ei tiedostoa %s arkistossa %s!vientimäärittelytiedostoa ei ole (erikseen) annettu.
Sen tilalle luotava ei ehkä ole sellainen kuin haluatei tietojaei tietoja symbolinumerolla %ld
ei syötetiedostoasyötetiedostoa ei ole annettuei tulostetiedoston nimeämitään toimintaa ei ole annettuei resurssejaei symboleja
ei tyyppitietoa C++-metodifunktiossaei mitäänei asetettu
ei riisuta symbolia ”%s” koska se on nimetty uudelleensijoituksessasegmentti virheellisellä namesz ja/tai descsz löytyi siirrososoitteessa 0x%lx
notesnull-päätteinen unicode-merkkijonopäinvastaiseen järjestykseen asetettujen tavujen lukumäärän on oltava positiivinen ja parillinennumeerinen ylivuotosiirros: %08xsiirrososoite: %s tämä tiedosto ei tue valitsinta -P/--privatevalitsimettoinenmuisti loppui jäsenneltäessä relocs-alkioita
ylivuoto - nreloc: %u, nlnno: %u
ylivuoto säädettäessä uudelleensijoitusta symbolille %sparse_coff_type: Virheellinen tyyppikoodi 0x%xosoitin kohteeseenpop-kehys {mahdollisesti rikkinäinen ELF-tiedosto-otsake - sillä on nollasta poikkeava lohko-otssakesiirrososoite, mutta ei lohko-otsakkeita
mahdollisesti rikkinäinen ELF-otsake - sillä on nollasta poikkeava otsakesiirrososoite, mutta ei ohjelmaotsakkeitaesikäsittely epäonnistui.ohjelmaotsakkeetpwait palauttaa: %slohkon %s lukeminen kohteesta %s epäonnistui: %sviiteparametri ei ole osoitinuudelleensijoituslaskuri on negatiivinenresurssi-IDresurssidataaresurssidatakokoresurssityyppi tuntematonrpc-lohkosuorita: %s %sslohko   %s %d %d osoite  %x koko %x numero %d nrelocs %dlohko %u: %u-linkkiarvo sh_link on suurempi kuin lohkojen lukumäärä
lohkossa ’%s’ on NOBITS-tyyppi - sen sisältö on epäluotettava.
lohko '%s' mainittu valitsimessa -j, mutta ei löytynyt mistään syötetiedostostalohko .loader on liian lyhyt
lohko 0 ryhmälohkossa [%5u]
lohko [%5u] ryhmälohkossa [%5u] > maksimilohko [%5u]
lohko [%5u] ryhmälohkossa [%5u] on jo ryhmälohkossa [%5u]
lohkosisältölohkodatalohkomäärittely osoitteessa %x koko %x
lohko-otsakkeetsegmentin halkaisutiedot eivät pääty nul-merkkiinaseta .bss-virtuaalimuistiosoiteaseta .data-kokoaseta .nlmsection-sisältöaseta .nlmsections-kokoaseta osoitteeksi 0x%s
aseta Erottajan arvoksi %s
aseta lohkotasausaseta lohkoliputaseta lohkokokoaseta alkuosoitesh_entsize on nolla
jaettu lohkotuntomerkkikoko %d koko: %s hypätään virheellisen sijoitussiirroksen 0x%lx yli lohkossa %s
hypätään virheellisen sijoitussiirroksen 0x%lx yli lohkossa %s
hypätään odottamattoman symbolityypin %s yli %ld. sijoituksessa lohkossa %s
Valitettavasti tämä ohjelma on rakennettu ilman lisäosatukea
sp = sp + %ldstab_int_type: virheellinen koko %upinon ylivuotopinon ehtyminenstat-kutsu ei onnistunut bittikuvaustiedostossa ”%s”: %sstat-kutsu ei onnistunut tiedostossa ”%s”: %sstat-kutsu ei onnistunut kirjasintiedostossa ”%s”: %sstat-kutsu palauttaa negatiivisen koon kohteelle ”%s”staattinenmerkkijonotaulustring_hash_lookup epäonnistui: %sstringtable-merkkijonostringtable-merkkijonopituustietuemäärittelyjätietueviite kohteeseen %stietueviite TUNTEMATTOMAAN struct-tietueeseenstub-lohkokootaliprosessi sai tuhoisan signaalin %dtukea ei ole käännetty kohteeseen %stuetut liput: %ssymbolitiedotsymbolitaulukkolohkojen indeksitsymbolitkohdekohtaista vedosta ’%s’ ei tueta.dynamic-lohko ei ole dynaamisen segmentin sisällä
.dynamic-lohko ei ole dynaamisen segmentin ensimmäinen lohko.
tämä kohde ei tue %lu vaihtoehtoisia konekoodejakäsitellään tuota numeroa absoluuttisena e_machine-arvona eikäyritä lisätä sairas kieli.kaksi erilaista toimintavalitsinta annettutyyppiei kyetä soveltamaan tukematonta reloc-tyyppiä %d lohkoon %s
tiedoston ’%s’ kopiointi epäonnistui; syy: %sei voi avata syötetiedostoa ”%s”.
ei voi avata tulostetiedostoa %svaihtoehtoisen konekoodin jäsentäminen epäonnistuikohteen %s sisältöä ei kyetä lukemaantiedoston ’%s’ nimeä ei onnistuttu muuttamaan; syy: %smäärittelemätön C++-objektimäärittelemätön C++-vtablemäärittelemätön muuttuja kohteessa ATNmäärittelemätön muuttuja kohteessa TYodottamaton DIALOGEX-versio %dodottamaton IEEE-vianjäljitystietojen loppuodottamaton kiinteä versiotietoversio %luodottamaton kiinteä versiotietopituus %ldodottamaton kiinteä versioallekirjoitus %luodottamaton ryhmäkohdistintyyppi %dodottamaton ryhmäkuvaketyyppi %dodottamaton numeroodottamaton tietuetyyppiodottamaton merkkijono C++-misc -tietueessaodottamaton stringfileinfo-arvopituus %ldodottamaton varfileinfo-arvopituus %ldodottamaton versiomerkkijonoodottamaton versiomerkkijonopituus %ld != %ld + %ldodottamaton versiomerkkijonopituus %ld < %ldodottamaton versio-stringtable-arvopituus %ldodottamaton versiotyyppi %dodottamaton versioarvopituus %ldtuntematontuntematon ATN-tyyppituntematon IEEE-BB-tietuetyyppituntematon C++-koodattu nimituntematon C++-näkyvyystuntematon PE-alijärjestelmä: %stuntematon TY-koodituntematon rakenteeseen sisältyvä tyyppituntematon eheytystyyli ”%s”tuntematon muototuntematon muototyyppi ”%s”tuntematon syöte-EFI-kohde: %stuntematon pitkä lohkonimien valitsin ’%s’tuntematon mactuntematon maaginen arvotuntematon tuloste-EFI-kohde: %stuntematon lohkotuntematon virtuaalimerkki kantaluokalletuntematon näkyvyysmerkki kantaluokalletuntematon näkyvyysmerkki kentällenimeämätön $vb-tyyppitunnistamaton tavujärjestystyyppi ”%s”tunnistamaton ”-E”-valitsintunnistamaton C++-lyhennetunnistamaton C++-oletustyyppitunnistamaton C++-misc -tietuetunnistamaton C++-objektin yleisrasitemääritystunnistamaton C++-objektimäärittelytunnistamaton C++-viitetyyppitunnistamaton ristiviitetyyppitunnistamaton lohkolippu ”%s”tunnistamaton: %-7lxratkaisematon ohjelmalaskurisuhteellinen reloc-tietue symbolille %sei-tuettu ATN11ei-tuettu ATN12ei-tuettu C++-objektityyppiei-tuettu IEEE-lausekeoperaattoriei-tuettu valikkoversio %dtukematon tai tuntematon Dwarf-kutsukehyskäskynumero: %#x
ei-tuettu tarkenneunused5unused6unused7unwind-tiedotpalautustiedotpalautustaulukäyttäjän määrittelemä: muuttujavars %dversiodataversiomäärittelyulkoinen versiomäärittelyversiomäärittelylohkoversiopituus %d ei täsmää resurssipituuden %lu kanssaversiotarveulkoinen versiotarve (2)ulkoinen versiotarve (3)versiomerkkiversiomerkkijonotauluversiomerkkijonotauluversiosymbolidataversion var-tiedotversio varfileinfowait-tilavirhe: %svaroitus: CHECK-proseduuria %s ei ole määriteltyvaroitus: EXIT-proseduuria %s ei ole määriteltyvaroitus: FULLMAP ei ole tuettu; yritä ld -Mvaroitus: Mitään versionumeroa ei ole annettuvaroitus: START-proseduuria %s ei ole määriteltyvaroitus: tilapäisen tiedoston luominen kopioitaessa kohdetta ’%s’ epäonnistui, (virhe: %s)varoitus: kohteen ’%s’ sijoittaminen epäonnistui.  Järjestelmävirhesanoma: %svaroitus: tiedostotasaus (0x%s) > lohkotasaus (0x%s)varoitus: syöte- ja tulostemuodot eivät ole yhteensopiviavaroitus: valinnainen otsakekoko on liian suuri (> %d)
varoitus: symboli %s tuotu mutta ei ole tuontiluettelossaei tuota mitään tulostetta, koska määrittelemättömissä symboleissa ei ole kokoa.kirjoitetaan stub| <tuntematon>