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
Þ•­„-ìZ`yaygywyŠy ŸyÀyÕyîy"
z0zPzhz zz›z&®zÕzáz&{ '{&H{ o{'{¸{Õ{7î{=&|d|u|†|¤|&°|(×|}D}Eb}¨}
¾}É}6å}~,+~,X~…~”~§~%¼~â~ô~-&T(n—§³QÎ0 €,Q€(~€+§€%Ӏ.ù€,(+U3’ƁE؁‚T7‚Œ‚
¨‚C¶‚Bú‚A=ƒ=ƒE½ƒX„\„3o…8£…S܅N0†;†:»†Rö†3I‡N}‡8̇FˆGLˆ”ˆ¤ˆ¾ˆʈ(و(‰(+‰(T‰}‰‰.Ÿ‰Ή!ê‰ŠŠ2ŠDŠ`ŠsŠ*‚Š-­Š*ۊ7‹>‹W‹
p‹~‹Yœ‹bö‹YŒtŒ„Œ&–Œ
½Œ<ˌ33<:p/«Dۍ2 Ž4SŽ,ˆŽ4µŽ<êŽ5'7]5•3ˏ8ÿ8+P8|9µ8ï8(‘:a‘+œ‘0ȑ0ù‘2*’']’8…’"¾’0á’7“HJ“J““9ޓR”7k”L£”7ð”2(•R[•:®•?é•>)–=h–>¦–6å–<—7Y—8‘—<ʗ<˜ID˜NŽ˜=ݘH™)d™=Ž™A̙>šMš`š7sš3«šߚ÷š›)›>›O›d›››@°›8ñ›*œ:œPœkœƒœ›œ±œŜ3֜
5O"_&‚¯©9Yž+“žA¿žŠŸŒŸä äÿ ³ä¡)˜¢Õ£;˜¥qÔ¦éF§¹0¨ê¨þ¨©*'©(R©
{©†©-¢©(Щ
ù©ª"ª"Bª/eª(•ª¾ª%Úª««6«
B«M«-U«ƒ«'«Å«Ù«"ð«+¬#?¬ c¬"„¬"§¬(ʬó¬"ÿ¬""­E­ V­w­#Œ­_°­B®:S®!Ž®°®Æ®å®¯($¯HM¯Q–¯-è¯"°%9°"_°‚°%’° ¸°"Ù°ü°±
-±;±S±"s±–±4­±#â±²²4²3T²ˆ²š²«²¾²Ò²ð²³+!³
M³[³5q³@§³\è³JE´(´¹´×´#ê´&µ)5µ*_µ+Šµ"¶µÙµùµ¶$%¶(J¶/s¶(£¶&̶7ó¶A+·.m·œ·C©·Qí·Y?¸9™¸3Ó¸-¹%5¹[¹5o¹?¥¹,å¹1º@Dº…º>›º.Úº)	»3»
F»6T»‹»Q »ò»¼1*¼\¼w¼¼«¼Ƽ#æ¼
½#½+<½-h½!–½¸½Ó½ì½¾+¾F¾_¾t¾4‰¾¾¾5Ù¾I¿Y¿y¿”¿+²¿Þ¿ù¿À-ÀFÀ1_À‘À­ÀÈÀáÀ2øÀ.+Á	ZÁdÁzÁ8ŽÁ	ÇÁÑÁéÁøÁ	ÂÂ)Â8ÂPÂa€ž°ÂÉÂ	ÑÂ7ÛÂÃ5)Ã?_Ã,ŸÃÌÃ0âÃ+Ä3?Ä<sÄ,°Ä;ÝÄ4Å
NÅ/YʼnÅQ›Å5íÅ#Æ*3Æ^Æ/xÆ¨Æ¹Æ ÊÆëÆ^ñÆPÇbÇÇ7†ÇB¾ÇKÈ9MÈB‡ÈÊÈ=ÞÈ)ÉFÉZÉEmÉ	³Ët½ÐÜ2ÑNÕJ^Ö7©Ö®áÙÚªÚ ¾Ú$ßÚÛ Û>Û'CÛkÛ‰Û•Û©ÛÂÛØÛñÛÜÜ*Ü>ÜRÜlÜ|ܘܤܹÜÌÜ
ÛÜæÜòÜ#Ý&Ý;Ý@ÝZÝq݊ݣݷÝÑÝáÝ ÿÝ! ÞBÞNÞmÞ'Þ!µÞ$×ÞüÞ(ß3;ß7oß%§ß&Íß#ôß)à
BàPàkà~àžà½àÕà%ðàá&.á$Uá(zá@£á"äá:â!Bâ.dâ1“â@Åâ%ã&,ã+Sã*ã%ªã(Ðãùãä)ä#Eä$iäŽä¨ä$ºä%ßäå"å7å$Så'xå å¸åÇåàå)ûå%æBæ_ævæ,æºæ/Úæ
ç
ç2+ç*^ç#‰ç­çÌçéçèè.è+Mè*yè
¤è!²èÔèåèé é 6é!Wé"yéœé	¹é
ÃéÑé
àéîéúéê!ê6êEêZêoêƒê’ê	•êŸê«ê·ê
Àê
ÎêÜê
îê
üê

ë#ë*<ëIgë)±ëÛëèëñëúëì3ìJìSì[ìrì"zììµìÅìÞìñìí	(í&2íYíhí"zíí®í¿í	ÏíÙí"óíî'î@îXîtî#”î¸îÁîÈîÜîèîïï0ï
Fï	Tï
^ïlï
{ï‰ï0™ïÊïÑïîïðð$ð1ð<Jð
‡ð•ð¨ðºð"Öð"ùð
ñ*ñB;ñ~ñDñÔñàñéñò%òAò^òvò1Šò8¼ò<õò22ó#eó%‰ó¯óÂó Üóýóô63ô
jô+xô¤ô%Ãô"éô/õ1<õ6nõ$¥õÊõÛõõõö(ö5öKöaöwöö§ö2½ö)ðö:÷ U÷&v÷.÷Ì÷#å÷6	ø2@ø	søV}øÔøôøù!2ùTùBmù:°ùëù+ûù'ú8úJúWúnúrú„ú)šúÄúÖúÒëú&¾û#åû$	ü#.ü<Rüü- ü-Îü
üü
ýýú ý?ÿ	[ÿeÿ|ÿ—ÿ°ÿÏÿîÿ!1.@o– ž!¿6á0.(_Nˆ0×$!-%Ou‹ž½Ûù!7Kav µÅ:Õ+
<GOXhƒ˜,©"ÖTùN4m¢´ÌÑ#Ý "595o ¥Æå$&< c+„"°/Ó"$&"Kn  ®$Ïô	%0	.V	5…	%»	3á	/
#E
-i
0—
È
(ä

,Aay˜±Éäü2)L(vŸ¼`ÁP"
s
	„
"Ž
±
µ
Ï
ç
&*'R+h'”¼Á<Ç	'75I#£4¾4ó(BMa¯-¾3ì@ ?a9¡.Û
/J,V3ƒ?·)÷!>Qg–®Ç)Þ+	4>O[t‡1›Í
ßêö5/D0t$¥7Ê-#D
hFsKº/3cjv…•¤ª%Âè;"Nq2–/É7ù31;eq¡wËO^q}Œ$’·!¼"Þ'	@,J>w;¶2ò(%RN¡¿"Ü+ÿ(+&T5{±/Ñ#)Ak,†³Éá'ô 6 R c u ‘ ± #Ñ $õ !2!&L! s!!”!!¶!}Ø!kV" Â" ã"##1(#Z#)y#£#'À#è#ô#($6,$;c$Ÿ$®$Î$5Û$.%.@%o%:…%À%È%+Õ%9&;&9L&†&%£&*É&+ô&6 '.W'†'Œ'¡'´'¼'Ð'Ö'4ã'*(+C(7o($§(Ì(Ø(ð(	)

)
)&)8)O)^)})&œ)(Ã)
ì)÷)(þ) '*6H**‘*&¨*Ï*î*&++/+'[+ ƒ+¤+'»+ã+ú+",<,Q,(q,$š,¿,Ý,%õ,5-Q-#f-Š-Ÿ-¹-Í-à-..1.J.h.…..¸.Ô.ó. 
/./K/d/I}/Ç/Ì/3Õ/ 	0*0!I0+k0—0¶05Ð0612=1 p1#‘15µ1ë1÷1-þ1
,2/721g2!™2'»2'ã2/32;37n3+¦3 Ò31ó3#%4"I4+l4&˜4#¿4)ã4.
5#<5`5*€5«5È5×5ë5þ5
6#646	N6X6!m646Ä6Ë6Û6!ø6717F7V7i7y7ˆ7§7!Ä7"æ7"	8),8(V868#¶89Ú899N9j9&Š9*±9&Ü9*:3.:b:z:: Ÿ:!À:â:õ:;; ;2;A;J;];_;f;s;
‡;’;¤;±;)Ë;õ;(<'=<e<-<A¯<!ñ<-=A= [=|= ™=º= Ö=÷=.
>9>E>Z>o>
…>“>
Ÿ>
­>»>Ä>Ô>ç>??+?+>?j?†?¢?$¾?ã?ï?@S"@v@%~@¤@¼@Ó@à@ì@ñ@=ú@=8AvA|A4›AÐAáAîA.úA)B1B7B!UB#wB
›B¦Bc²BC,C<C#NCrCC
›C©C¼C
ÒCÝC8ßCFD@_DF DçD!E='EDeEªE»E!ÈEêE(úE#F8F	QF[F	dF7nF=¦F;äF
 G.G#IGmG!ŠG#¬GÐG×GäGHH/HDHXHxH—H«H¾H'ÆHAîHF0I:wI;²IîI)	J3J88J$qJ$–J»J(ÙJK! KBK)aK/‹K&»KâKL* L'KLsL1L*¿L/êLM#5MYMaMzM“M±MÀMÙM&öMN
)N7N'UN*}N&¨NÏNàNOO!5OWOvOŠO¦O®O¶O¾OÊOÖOãOòOûOPPP,PGPTPiP~PP¢P¶PÊPÛPïPIøP9BQ9|Q/¶Q=æQ¬$RÑS×SéST1TJT^TvT#–TºTÚTðT"U!/U0QU‚U&ŽU,µU&âU0	V+:V(fV)V¹V4ÖVGWSWfW'{W£W;¯WCëW#/XMSXT¡XöXY #YTDY™Y9µY1ïY!Z2ZMZ-jZ˜Z±Z5ËZ7["9[2\[[¤[°[nÍ[8<\7u\,­\-Ú\(]-1]4_]1”]Æ]:ß]^D.^s^U’^è^_C_A\_Fž_=å_F#`hj`0Ó`6b>;b^zbXÙbI2cB|cZ¿c:dQUdG§dOïdP?ee e
ºeÅe(Ôe(ýe(&f(Ofxf‹fA£fåf,g1gFg\g"qg”g®g0ÂgEóg=9hKwhÃhßhüh	iY'ibiäijj)-jWjJfj4±j6æjNk>lkX«kBlJGl@’l>ÓlMm6`m=—mNÕm5$n;Zn–n-¯nIÝn;'o7co7›o<Óo8p@IpAŠpBÌp2q7Bq(zq7£q;ÛqbrZzrHÕrNs:ms`¨s9	t5Cteyt=ßtTuRru;ÅuEvDGvJŒv9×v;w?MwIwQ×w_)x?‰x[Éx9%y;_yU›yDñy6zIz>\z:›z Öz÷z%{7{O{^{}{š{´{@Ô{8|N|b|{|™|±|Ï|æ|ú|<
}J}_}y}“}6£}/Ú}Á
~@Ì~2
H@³‰µ=€æó€þځôقk΃;:…nv‡våˆ\‰à_Š@‹T‹h‹6…‹)¼‹	æ‹ ð‹6Œ(HŒ
qŒ|Œ)›Œ#Ō=éŒ('#P&t› °
эߍ
ì-ú(Ž5GŽ}Ž•Ž$­Ž+Ҏ#þŽ "$C$h)·*ď&,6!c:…bÀC#‘:g‘"¢‘ő#å‘%	’ /’(P’Ly’Tƒ/“ K“)l“"–“¹“&ϓ%ö“"”?”T”
s””›”$»”à”Eù”&?•f•€•š•Kº•––3–O–&l–“–$­–0Җ——4-—@b—\£—K˜(L˜*u˜ ˜%·˜?ݘK™+i™,•™#™ æ™ š(š$5š+Zš2†š+¹š'åš>
›RL›4Ÿ›ԛFà›Q'œZyœ;ԜF7W#³=ȝIž.Pž?žL¿žŸB+Ÿ5nŸ.¤ŸӟæŸA÷Ÿ9 kI +µ á 4ý 2¡O¡j¡‰¡!¦¡'È¡*ð¡¢89¢/r¢"¢¢"Å¢è¢"£+£8@£y£“£ ª£=Ë£	¤:)¤Sd¤"¸¤#Û¤ÿ¤+¥I¥d¥5¥+µ¥"á¥8¦=¦X¦t¦Ž¦3¥¦.Ù¦	§!§4§CH§	Œ§–§µ§ŧ à§
¨¨,¨I¨&Z¨%¨§¨º¨Ô¨Û¨5䨩D/©Dt©2¹©ì©?ª1Bª3tªF¨ª4ïªO$«:t«¯«:»«ö«U
¬9`¬š¬+¬¬$ج7ý¬5­G­"[­~­`ƒ­ä­0ú­+®=1®Ao®K±®=ý®D;¯€¯K—¯2㯰-°›@°Åܲ¢ºG$»alÀWÎÁì&¹ÆÍÆåÆ*üÆ.'ÇVÇ.pÇŸÇ*£Ç&ÎÇ	õÇÿÇÈ,ÈDÈdÈșȪȿÈÔÈîÈÉ)É5ÉNÉaÉvÉ	ƒÉÉ$ ÉÅÉÚÉßÉþÉÊ5ÊSÊlʇʞÊ-¾Ê)ìÊË+"Ë2NË5Ë+·Ë4ãËÌ+1ÌF]Ì9¤Ì0ÞÌ1Í.AÍ*pÍ›Í ­ÍÎÍ$éÍ,Î!;Î"]Î.€Î#¯Î#ÓÎ$÷Î8ÏQUÏ5§ÏXÝÏ06ÐEgÐH­ÐGöÐ.>Ñ4mÑ9¢Ñ;ÜÑ2Ò9KÒ"…Ò¨Ò ÀÒ/áÒ0ÓBÓbÓ+uÓ,¡Ó,ÎÓûÓ'Ô3@Ô+tÔ$ ÔÅÔÛÔ!úÔ;Õ%XÕ~՜ճÕ,ÊÕ#÷ÕCÖ_Ö}Ö;Ö6ËÖ/×!2×$T×y×™× ¶×'××8ÿ×/8ØhØ'yØ¡Ø)¸ØâØ/õØ*%Ù!PÙ"rٕٳٿÙ
ÔÙâÙïÙüÙÚ*ÚCÚVÚpÚŠÚ§Ú¾Ú	ÁÚËÚØÚçÚðÚýÚ
ÛÛ-Û?Û'QÛ6yÛS°Û5Ü:ÜGÜPÜYÜvܔܴܽÜÅÜåÜíÜ
Ý*ÝAÝ\Ý"nÝ‘Ý±Ý=¾ÝüÝÞ8*ÞcÞuÞ‡Þ
˜Þ-£Þ7ÑÞ	ßß8ß!Vß$xß)ß	ÇßÑß!×ßùß#à/,à\àwàà¡à®à¿àÑàâà=õà3á2:á5má£á«á¿áËáZäá?âVâlâ€â+žâ*ÊâõâãQãhãOãÏãÛã&äã/ä ;ä&\ä,ƒä!°ä;Òä:åQIå=›å-Ùå/æ7æOæ'næ–æ³æ>Òæç5(ç-^ç/Œç%¼çAâç?$èAdè<¦èãè'é$+é"Pé
séé–é¯éÌé êéê=)ê3gê=›ê*Ùê1ë-6ëdë-ƒëA±ëBóë6ì…Hì/Îì5þì54í#jí'ŽíP¶íOîWî>pî¯îÎîãîôî	
ïï(.ï-Wï…ïšïºï6Êð6ñ*8ñ*cñOŽñÞñ9òñ9,òfò}ò“òb òRõVõ%kõ,‘õ*¾õ'éõ(ö:öSömöyö‹ö;£ößöîö÷(÷*4÷F_÷¦÷0À÷.ñ÷T ø/uø#¥ø1Éø(ûø$ù=ù/Qù5ù5·ùíùú*ú6úSúrú!ú²úÂúÙúìúPû=Yû
—û¢ûªû³û#Çûëûü7ü+Oüm{ü)éü8ýLý ]ý~ý	‚ý#Œý °ýÑýEèýC.þ rþ“þ²þÌþ%çþ'
ÿ*5ÿ3`ÿ ”ÿ?µÿ#õÿ%"?b!!£%Åë	()7RFŠ+Ñ:ý581n- /Îþ+%Gm+‚®+Æ!ò/!Ln!ˆ!ª*Ì&÷=aAQ£õ
$8< W#x0œ<Í 
>+3jž¢E§"í
5FL5“É<æ:#	!^	$€	T¥	ú	P
R_
\²
eYu;Ï
6R?nF®Eõ2;
0n
'Ÿ
Ç
/ç
": Z{5“?É	)5UoA‰ËÜì&2*C]J¡1ì4S7h1 
ÒJÝN(w?«ëò0G'N@v·Ñä$í%'0M~F„0Ë8ü95@o~°’/㦹ÉÛõ%þ$+**V–ªÈIÕWRw8Ê;d?$¤#É-í45P.†=µ'óB^p&ƒ/ª$Ú1ÿ1Je<{"¸#Ûÿ0(M(v,Ÿ0Ìý02)c+/¹‰é‰s ,ý )*!.T!>ƒ!,Â!=ï!!-"/O""“"=¤"Oâ"E2#x##‡#«#N¸#+$-3$a$H~$Ç$Ï$8Ü$I%_%Dt%"¹%+Ü%9&4B&@w&A¸&ú&ý&'
%'0'	B'
L':W')’'1¼'<î'(+(T(`(|(	(™(¨(±(È(ã(!õ(!)69)7p)
¨)³)6¹)'ð)C*\* w*/˜*(È*ñ*/+2A+/t+*¤+Ï+?ë++,&K,,r,Ÿ,3¾,7ò,?*-&j-(‘-<º-O÷-G.=a.Ÿ.&¸.ß.'÷.5/U/1t/)¦/7Ð/00'90)a00‹0:¼01÷0A)1/k1/›1%Ë1dñ1V2	[2Ke2±2)Ñ2û2/3(K3t3G”3GÜ3:$42_45’4HÈ45#52*5]51n5> 5 ß5,6&-60T67…6A½6,ÿ6",7>O7(Ž7$·7*Ü7(8"08.S8;‚80¾8!ï8093B9v9‰9¥9*Â9í9:*:	B:L:)g:G‘:Ù:à:)ò:1;,N;*{;!¦;#È;ì;<1$<$V<!{<+<*É<5ô<4*=I_=*©=AÔ=G>(^>1‡>5¹>9ï>.)?2X?=‹?#É?í?@2*@3]@‘@­@Â@Ê@*ä@A%A-A?AAAHAWA
tA‚A	A§A0ÇAøA4B)MB wB:˜BMÓB.!C4PC…C% C.ÆC&õCD6:DqD<‡D
ÄDÒD&ëDE
(E6EJE\ElEuE‰EŸE»EØEçE)üE'&F'NF'vF@žFßF"ëF$Gr3G¦G0¸G'éG!H3HBHUH
YHKgHG³HûH/I81IjI€I
I:IØIàIBéI&,J*SJ~J
‡Jƒ•JK6KNK/`K7KÈK×KçKÿKL)L9+LKeLF±LTøL#MM"qMA”MMÖM$N=N#NNrN@‰NÊN äN	OO	OL"OToOIÄO
PP+;P#gP6‹P)ÂPìPõP Q85QDnQ³QËQ1éQ)RER_RwR6€RC·RFûR:BSC}S ÁS4âSTRT)pT4šT+ÏT6ûT*2U)]U!‡U4©U5ÞU(V$=V"bV/…V,µV*âVG
W@UWM–WäW+X
.X9XVX(sXœX ®X#ÏX0óX$Y3Y$EY,jY3—Y/ËYûY Z0ZHZ)fZ'Z¸Z ÌZíZõZýZ[[7[I[`[i[v[‡[[ ·[Ø[î[\*\)J\)t\ž\#»\ß\
ö\\]K^]Gª]Aò]K4^g)L À"Môb%ˆÐEd›L`<3AúÊœ5¡ÜÕ*`ŠŠ"sŒ•°Íõ°·Oý¸¬<«?ˆ´ùøÞ~úÈ¿pv^ñÌل|%*˜)€5Ÿ®Ê~ôPïêák¿ÿpÃT ·‹.õ*5‡w*ŸÒ(õØ+ÜÉd¹Ôx~kì¤ÌÚ$—EBqOÁ	H2Þíö™\ꍰ=¬ÅuK#–‘„‡oøö®•ë|Yq(üZ>9O°ӂOrÕ_!'âÏ0Í7q¨ÉLØä„<{¤O[óe¬/Ï3Óž”"ªÏ[
þ“Þ*.ãrô ¹U]E7XŽ§A9y!à:&.ªÝ
Ÿ6h
ƒ‘BT —¬•oGˆ©:%†T‡Y馳®}w¨FRæ§äb`[à\ÈU%º¯Ãƒlr‰§i¦ïrûB“˜äˆ×wÛ}d–ˆ4Mi<™Û“å7a’ԁ@Æ NoÓgª†îÑã|åÂþ}™–ך38ÞªúüV™S²‰=5.]œÈ²V’Ð;´(ð¸)ãXÝäO¸fŽ•JŠÛH¯»=î$xI¹•ç—€t&±C8iKs,fúT“·7¢rè-ëºRSåzì4/’Øfhˤö‚±¾é‚[etЩŒJ@ò_18±i*U)N­
ãâêÈd¶B! ç÷Ç]±Õß?ÙQþ®dcEèa¢h(ù6óØ”ŒnýQ›‹50XpëU»h†Mm¼›ÊêKx€´úÛk7]á~ÖöçIaŒdê?mZËSŸZÄìRÏQ^6P%LŽEâ­©J»’tßx©9Viy
Æ¢8‰0Æ4|p0-¤jma)Ö5
˶ֵ¨Ñ;ÇžV¼Øñ«Qÿ}ÚukuNƒ¢õíóù-Ïxë¿3n‹ü¡Á‘á^6çoð‚QuWjÁïK£©6_¨)v8nAņÿÚ²šD‹NH²¢þÒ³Z‹Ü@}I3§Plz,¦,£¥:nÉIà˜‡¹—YÂ:{<¤g
g,ÃfP2ÿÎeð÷£M7JšP/ÑüÅ žڞb¡XD·ý'œFÑÄ“÷Ò¤DmŠ=î„?GÝJ“Λý¼û&¥FuáhÉp¦¾mù¸B…ÝßÎÃÇ|ý²€Ä>_ðûÜ0ͼ1ïš4ÕÍU4ÃslDÉI…!ÇÀwleR÷–”Ž¿eo,ß(å·øD‰Ž›\	 È$§!G;]2VXygH#s>kZë´+éz­ÐC¹"4Cí°c¨ÖˆÛÎ	ÿÓ­«fāyÂ+¸ !o[û¯mƒ
×	\
q`Ô¦Ìsõ&˜ª=´¯;ŸY™:r’¼>ZRGa"¯‚(³€Þ'qFpWKFæš»ÂyèâãÙiSDb¿ô
Gf¡xJÅT€c:6/v\î-•c™z&¾ºéW
à,…jƒÑ-®B{bEP$”Tï¶ÌM˝½ò‡	`29#v_ Y£RµÁ;Úñ+{½Õ/³Ö}_Á¡‚ -hŘ£]—$‰»¾	 ºC"æáe{AÆz|«#¥‰ó>+M„['%1¬=tsqLñÒ@ì×åèäœNòµN
éš½U8ŸÎŠ¾œXwàn&„ÊAžð…@Šø‘«ù”º?2¶˜ÜW†¨µæWcÓG^—­z>v<0ÍßSny'k…Ù£¢1#la#jj§`QíîóÌ\öI‹9t‘ªò±¥û÷FÊñKçA­S~ø¥.{/©µ;Žƒ~b2Ygì+…l@.üÀ”–œ$×^L–íÙWæ›Ô³¥ŒÝuV'¶HC1Ò‡þ?cH1CžŒwÐÀÇòƆÔĽ¬Ëâô«À^3¡½’èj‘¦vt9	%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]:


    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 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 symbol information is not available for displaying symbols.

Elf file type is %s

File: %s

Hex dump of section '%s':

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

Image relocs

No version information found in this file.

Options supported for -P/--private switch:

Primary GOT:

Program Headers:

Relocation section 
Section '%s' has no debugging data.

Section Header:

Section Headers:

String dump of section '%s':

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 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 
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
    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
    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
  %*s %*s Purpose
  %*s %10s %*s Purpose
  %-20s %10s	Description
  %4u %08x %3u   (Starting at file offset: 0x%lx)  (Unknown inline attribute value: %s)  --dwarf-depth=N        Do not display DIEs at depth N or greater
  --dwarf-start=N        Display DIEs starting with N, at the same depth
                         or deeper
  --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
  -i --instruction-dump=<number|name>
                         Disassemble the contents of section <number|name>
  -r                           Ignored for compatibility with rc
  @<file>                      Read options from <file>
  -h --help                    Print this help message
  -V --version                 Print version information
  -t                           Update the archive's symbol map timestamp
  -h --help                    Print this help message
  -v --version                 Print version information
  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 fixed size amount %s to 0x%s
  Class:                             %s
  Cnt: %d
  Compact model index: %d
  Compilation Unit @ offset 0x%s:
  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 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 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
  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 table
  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:   Version def aux past end of section
  Version definition past end of section
  Version:                             %d
  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
  [O]          - display offsets of files in the archive
  [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[O][v]      - display contents of the 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  (File Offset: 0x%lx) (bytes into file)
 (bytes into file)
  Start of section headers:           (bytes)
 (end of tags at %08x)
 (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.
 Copies a binary file, possibly transforming it in the process
 DW_MACINFO_define - lineno : %d macro : %s
 DW_MACINFO_end_file
 DW_MACINFO_start_file - lineno: %d filenum: %d
 DW_MACINFO_undef - lineno : %d macro : %s
 DW_MACINFO_vendor_ext - constant : %d string : %s
 Display information about the contents of ELF format files
 Display information from object <file(s)>.
 Display printable strings in [file(s)] (stdin by default)
 Displays the sizes of sections inside binary files
 Entries:
 Generate an index to speed access to archives
 Global entries:
 If no addresses are specified on the command line, they will be read from stdin
 If no input file(s) are specified, a.out is assumed
 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
 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:
  -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:
  -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
  -R --recurse-limit     Enable a limit on recursion whilst demangling.  [Default]
  -r --no-recurse-limit  Disable a limit on recursion whilst demangling
  -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
 at  at offset 0x%lx contains %lu entries:
 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
 tags at %08x
#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: %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: Path components stripped from image name, '%s'.%s: Symbol "%s" is target of more than one redefinition%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: 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: supported architectures:%s: supported formats:%s: supported targets:%s: the archive has an index but no symbols
%s: the archive index is empty
%s: unable to dump the index as none was found
%s: unexpected EOF%s: warning: %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' is not an ordinary file
'%s': No such file'%s': No such file
(DW_OP_call_ref in frame info)(ROMAGIC: readonly sharablee text segments)(TOCMAGIC: readonly text segments and TOC)(Unknown: %s)(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: %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 sym><none><offset is too big><other>: %x<processor specific>: %d<string table index: %3ld><time data corrupt><unknown addend: %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 MSA or not
Application
Application or Realtime
Archive member uses long names, but no longname table found
Audit libraryAuxiliary header:
Auxiliary libraryBFD 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
CORE (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:

Convert a COFF object file into a SYSROFF object file
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 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 TYPEDLLTOOL 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_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)
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:
EXEC (Executable file)EndEnd of Sequence

Enum Member offset %xError, duplicate EXPORT with ordinals: %sException table:
Excluding symbol: %sFORMAT 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 header:
Filter libraryFlags:For XCOFF files:
  header      Display the file header
  aout        Display the auxiliary header
  sections    Display the section headers
  syms        Display the symbols table
  relocs      Display the relocation entries
  lineno      Display the line number entries
  loader      Display loader section
  except      Display exception table
  typchk      Display type-check section
  traceback   Display traceback tags
  toc         Display toc symbols
  ldinfo      Display loader info in core files
Further warnings about bogus end-of-sibling markers suppressed
GOT A %x
Generated exports fileGenerating export file: %sGlobal Offset Table dataHard float (double precision)
Hard float (single precision)
Hard or soft float
ID directory entryID resourceID subdirectoryImport files:
Import library `%s' specifies two or more dllsIn archive %s:
In nested archive %s:
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
Keeping temporary base file %sKeeping temporary def file %sKeeping temporary exp file %sLIBRARY: %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 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 entry %s in archive.
No filename following the -fo option.
No location lists in .debug_info section!
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 needed object: [%s]
Not used
Nothing to do.
OS Specific: (%x)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
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 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 OffsetPath 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:

Realtime
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 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]Skipping unexpected relocation at offset 0x%lx
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.
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 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 start of dynamic information
Undefined N_EXCLUndefined symbolUnexpected demangled varargs
Unexpected type in v3 arglist demangling
Unhandled data length: %d
Unknown ARM compact model index encountered
Unknown AT value: %lxUnknown FORM value: %lxUnknown OSABI: %s
Unknown location list entry type 0x%x.
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 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}[abcDfilMNoOPsSTuvV] [--plugin <name>] [member-name] [count] archive-file file...
Usage: %s [emulation options] [-]{dmpqrstx}[abcDfilMNoOPsSTuvV] [member-name] [count] archive-file file...
Usage: %s [option(s)] [addr(s)]
Usage: %s [option(s)] [file(s)]
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 a directoryWarning: '%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 [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 format for %sbad mangled name `%s'
bad register: 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 endianblocksbyte 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 index table entry: %x
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 datadata entrydebug_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 addressfailed 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 infoflags 0x%08x:
fontdirfontdir device namefontdir face namefontdir headerfunctionfunction returninggglobalgroup cursorgroup cursor headergroup icongroup icon headerhas childrenhelp ID requires DIALOGEXicon file `%s' does not contain icon dataignoring the alternative valueinput and output files must be differentinput file does not seems to be UFT16.
interleave 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 option -f
invalid value specified for pragma code_page.
length %d [liblist section dataliblist string tablelineno  symndx/paddr
little endianmenu headermenuex headermenuex offsetmenuitemmenuitem headermissing index typemore 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 file specifiedno operation specifiedno resourcesno symbols
nonenot 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
parse_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
preprocessing failed.program headerspwait returns: %sreading %s section of %s failed: %srelocation count is negativeresource IDresource dataresource data sizeresource type unknownrun: %s %sssection %s %d %d address %x size %x number %d nrelocs %usection %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 Address to 0x%s
set Discriminator to %s
signaturesize %d size: %s skipping invalid relocation offset 0x%lx in section %s
skipping invalid relocation symbol index 0x%lx in section %s
sorry - this program has been built without plugin support
sp = sp + %ldstab_int_type: bad size %ustat 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 structsubprocess got fatal signal %dsupported flags: %ssymbol informationsymbolstarget 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: %sunexpected DIALOGEX version %dunexpected fixed version info version %luunexpected fixed version information length %ldunexpected fixed version signature %luunexpected group cursor type %dunexpected group icon type %dunexpected 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 C++ encoded nameunknown PE subsystem: %sunknown 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 virtual character for baseclassunknown visibility character for baseclassunknown visibility character for fieldunnamed $vb typeunrecognized --endian type `%s'unrecognized -E optionunrecognized C++ abbreviationunrecognized cross reference typeunrecognized section flag `%s'unrecognized: %-7lxunsupported menu version %dunused5unused6unused7unwind dataunwind infounwind tableuser defined: variablevars %dversion dataversion defversion def auxversion definition sectionversion needversion need aux (2)version need aux (3)version stringversion string tableversion stringtableversion symbol dataversion var infoversion varfileinfowait: %swarning: 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: optional header size too large (> %d)
will produce no output, since undefined symbols have no size.Project-Id-Version: binutils 2.31.90
Report-Msgid-Bugs-To: bug-binutils@gnu.org
POT-Creation-Date: 2019-01-19 16:32+0000
PO-Revision-Date: 2019-05-17 15:09+0200
Last-Translator: Walter Garcia-Fontes <walter.garcia@upf.edu>
Language-Team: Catalan <ca@dodds.net>
Language: ca
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Bugs: Report translation errors to the Language-Team address.
	%d:		Índex	Addreça
	Versió desconeguda.
[Nom d'abreviatura: %ld	s'ignoraran els paràmetres de codi de pàgina.


Símbols de %s:



Símbols de %s[%s]:



Símbols no definits de %s:



Símbols no definits de %s[%s]:


    Adreça              Mida

    Adreça    Mida

    Posició          Nom

    Posició    Tipus        Nom

   Senyaladors d'enllaçament : 
  Començament de les capçaleres del programa:
 Opcodes:

 Correspondència secció a segment:

 La taula de directoris (posició 0x%lx)::

 La taula de directoris està buida.

 La taula de noms de fitxers (posició 0x%lx):

 La taula de noms de fitxers està buida.

 Les opcions següents són opcionals:

 [Usa l'entrada de taula de fitxers %d]

%s:     format de fixer %s

%sgrup secció [%5u] `%s' [%s] conté %u seccions:

'%s' secció de relocalització a la posició 0x%lx conté %ld bytes:

Taula d'adreces:

Índex de l'arxiu:

Bolcat d'ensamblatge de la secció %s

Taula CU:

No es poden obtenir els continguts per a la secció '%s'.

No s'ha pogut trobar la secció d'informació de desplegament per 
Desassemblament de la secció %s:

S'estan mostrant notes trobades a la posició 0x%08lx amb longitud 0x%08lx:

La informació de símbols dinàmics no està disponible per mostrar els símbols.

El tipus de fitxer Elf és %s

Fitxer: %s

Bolcat hex de la secció '%s':

Correcciones de imatge per la biblioteca que es necessita #%d: %s - identitat: %lx

Relocalitzacions d'imatge

No s'ha trobat informació de versió en aquest fitxer.

Opcions suportades per a l'opció -P/--private:

GOT Primària:

Capçaleres de programa:

Secció de relocalització 
La secció '%s' no té dades de depuració.

Capçalera de secció:

Capçaleres de secció:

Bolcat de cadenes de caràcters de la secció '%s':

La taula de símbols '%s' té una sh_entsize de zero!

Taula de símbols per la imatge:

Taula de símbols de `.gnu.hash' per a l'imatge:

Tauls de símbols:

Taula TU:

La secció %s està buida.

La decodificació de les seccions de desplegament per al tipus de màquina %s no està suportada actualment.

No hi ha relocalitzacions dinàmiques a aquest fitxer.

No hi ha cap capçalera de programa en aquest fitxer.

No hi ha relocalitzacions a aquest fitxer.

No hi ha grups de secció en aquest fitxer.

No hi ha cap secció en aquest fitxer.

No hi seccions per agrupar a aquest fitxer.

No hi ha seccions sense desplegar a aquest fitxer.

No hi ha una secció dinàmica a aquest fitxer.

Secció de desplegament
el bolcat ldinfo no està suportat en entorns de 32 bits

adreça d'inici 0x                 MidaFit            MidaMem             Seny   Alin
            Senyaladors: %08x         <màquina> possible: arm[_interwork], i386, mcore[-elf]{-le|-be}, ppc, thumb
       %s -M [<script-mri]
       Senyaladors
       Mida              MidaEnt          Seny  Enllaç Info  Alin
       Mida              MidaEnt          Info              Alin
       Tipus             Adreça           Posició           Enllaç
       Tipus           Adr      Pos    Mida   ES   Lk Inf Al
       Tipus           Adreça           Pos    Mida   ES   Lk Inf Al
      --add-stdcall-underscore Afegeix subratllats als símbols stdcall de la biblioteca d'interfície.
      --dwarf-depth=N        No mostris els DIEs a una profunditat N o més gran
      --dwarf-start=N        Mostra els DIEs que comencen amb N, a la mateixa
                             profunditat o més gran
      --dwarf-check          Fes verificacions addicionals de consistència interna de DIEs
      --exclude-symbols <llista> No exportis <llista>
      --export-all-symbols   Exporta tots els símbols a .def
      --identify-strict      Causa que --identify reporti un error quan hi ha multiples DLLs.
      --leading-underscore   S'haurien de prefixar tots els símbols per un subratllat.
      --no-default-excludes  Neteja els símbols per defecte d'exclusió
      --no-export-all-symbols  Exporta sols els símbols llistats
      --no-leading-underscore No s'hauria de prefixar tots els simbols per un subratllat.
      --plugin NOM       Carrega el connector especificat
      --use-nul-prefixed-import-tables Usa idata$4 i idata$5 prefixat per zeros.
     --yydebug                 Engegueu la depuració de l'analitzador
     Biblioteca           Marca de temps      Checksum   Senyaladors de versió     Biblioteca           Marca de temps      Checksum   Senyaladors de versió
     [Reservat]     [opcode no suportat]     acaba    %*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
    ID de compilació:     No es pot decodificar la nota de 64-bit a compilació 32-bit
    Data de creació  : %.17s
    Nom de la taula de símbols globals: %s
    Id d'imatge: %s
    Nom d'imatge: %s
    Mida no vàlida
    Data de l'últim pegat: %.17s
    Id d'enllaçador: %s
    Localització:     Nota formada malament - no finalitza amb \0
Nota formada malament - els noms dels fitxers finalitzen massa aviat
    Nota formada malament - massa petita per a la capçalera
    Nota formada malament - massa curta per al compte de fitxers proveïts
    Nom del mòdul    : %s
    Versió del mòdul : %s
    Nom: %s
    SO: %s, ABI: %ld.%ld.%ld
    Posició            Info             Tipus              Valor Símbol    Nom Símbol
    Posició            Info             Tipus              Valor Símbol    Nom Símbol + Sumand
    Posició     Inici    Fi
     Mida de pàgina:     Proveïdor: %s
    opcode DW_LNE_HP_SFC desconegut (%u)
    Versió::    --add-indirect         Afegeix indirectes dll al fitxer d'exportació.
   --add-stdcall-alias    Afegeix àlies sense @<n>
   --as <nom>             Usa <nom> per l'assemblador
   --base-file <fitxer-base> Llegeix el fitxer base generat pel l'enllaçador
   --def <fitxer-def>        Nomeneu el fitxer .def d'entrada
   --dllname <name>       Nom del dll d'entrada per a posar a la biblioteca de sortida.
   --dlltool-name <dlltool> Valors predeterminats per a "dlltool"
   --driver-flags <senyaladors> Redefineix els senyaladors ld per defecte
   --driver-name <dispositiu> Valors predeterminats per a "gcc"
   --dry-run              Mostra el que es necessita executar
   --entry <entrada>      Especifiqueu un punt alternatiu d'entrada a la DLL
   --exclude-symbols <llista> Exclou <llista> de .def
   --export-all-symbols     Exporta tots els símbols a .def
   --image-base <base>    Especifiqueu una adreça per a la base de la imatge
   --implib <nom-sortida>   Sinònim de --output-lib
   --leading-underscore     Punt d'entrada amb subratllat.
   --machine <màquina>
   --mno-cygwin           Crea una DLL Mingw
   --no-default-excludes    No usis els símbols d'exclusió per defecte
   --no-export-all-symbols  Exporta sols símbols.drectve 
   --no-idata4           No generis la secció idata$4
   --no-idata5           No generis la secció idata$5
   --no-leading-underscore  Punt d'entrada sense subratllat
   --nodelete             Manté els fitxers temporals.
   --output-def <fitxer-def> Anomeneu el fitxer de sortida .def
   --output-exp <nom-de-sortida> Genera un fitxer d'exportació.
   --output-lib <nom-de-sortida> Genera una biblioteca d'entrada.
   --quiet, -q            Treballa silenciosament
   --target <machine>     i386-cygwin32 o i386-mingw32
   --verbose, -v          Amb missatges
   --version              Imprimeix la versió dllwrap
   -A --add-stdcall-alias    Afegeix els àlies sense @<n>
   -C --compat-implib        Crea una biblioteca d'importació compatible amb versions anteriors.
   -D --dllname <nom>       Nom de l'entrada dll per posar a la biblioteca d'interfície.
   -F --linker-flags <senyaladors> Passa <senyaladors> a l'enllaçador.
   -I --identify <implib>    Reporta el nom de la DLL associada amb <implib>.
   -L --linker <nom>         Usa <nom> com l'enllaçador.
   -M --mcore-elf <nom-de-sortida>  Processa els fitxers objectes mcore-els a <nom-de-sortida>.
   -S --as <nom>            Usa <nom> per l'assemblador.
   -U                     Afegeix subratllats a .lib
   -U --add-underscore       Afegeix subratllats a tots els símbols de la biblioteca d'interfície.
   -V --version              Mostra la versió del programa.
   -a --add-indirect         Afegeix els indirectes de dll al fitxer d'exportació.
   -b --base-file <fitxer-base> Llegeix el fitxer base generat per l'enllaçador.
   -c --no-idata5            No generis la secció idata$5
   -d --input-def <fitxer-definició>  Nom del fitxer .def a llegir.
   -e --output-exp <nom-de-sortida> Genera un fitxer d'exportació.
   -f --as-flags <senyaladors>   Passa <senyaladors> per a l'assemblador.
   -h --help                 Mostra aquesta informació.
   -k                     Elimina @<n> dels noms exportats
   -k --kill-at              Elimina @<n> dels noms exportats.
   -l --output-lib <nom-de-sortida> Genera una biblioteca d'interfície.
   -m --machine <màquina>    Crea com a DLL per a <màquina>. [per defecte: %s]
   -n --no-delete            Manté els fitxers temporals (repeteix per a preservació extra).
   -p --ext-prefix-alias <prefix> Afegeix àlies amb <prefix>.
   -t --temp-prefix <prefix> Usa <prefix> per construir el noms dels
   fitxers temporals.
   -v --verbose              Ensenya tots els missatges.
   -x --no-idata4            No generis la secció idata$4
   -y --output-delaylib <nom-de-sortida> Crea una biblioteca d'importació diferida.
   -z --output-def <fitxer-definició> Nom del fitxer .def a crear.
   0 (*local*)       1 (*global*)      @<fitxer>                 Llegeix les opcions de <fitxer>.
   @<fitxer>              Llegeix les opcions de <fitxer>
   Posició d'abreviatura: 0x%s
   Mode de punt flotant:    Senyaladors de capçalera: 0x%08x
   Id d'imatge    : %s
   Idioma: %s
   Modificat per últim cop :    Longitud:      0x%s (%s)
   Temps d'enllaçament:    Id major: %u,  id menor: %u
   Nom.:   Valor          Mida Tipus   Unió   Vis      Nom Ndx
   Nom.:   Valor  Mida Tipus   Unió   Vis      Nom Ndx
   Temps de pegat:    Mida del punter:  %d
Contribucions de la secció:
   Signatura:     0x%s
   Posició de tipus:   0x%s
   Versió:        %d
   [Índex]    Nom
    identitat: %s
  # sc         valor    secció  tipus aux nom/deshabilitat
  %*s %*s Propòsit
  %*s %10s %*s Propòsit
  %-20s %10s	Descripció
  %4u %08x %3u   (S'està començant a la posició del fitxer: 0x%lx)  (Valor de l'atribut en línia desconegut: %s)  --dwarf-depth=N        No mostris DIEs a una profunditat N o més gran
  --dwarf-start=N        Mostra DIEs que comencen amb N, a la mateixa
                          profunditat o més gran
  --plugin <nom>               Carrega el connector especificat
  --plugin <p> - carrega el connector especificat
  --target=NOMBFD  - especifica el format de l'object destí com NOMBFD
  -D                           Usa zero per a marques horàries del mapa de símbols
  -U                           Usa la marca horària real del mapa de simbols (predeterminat)
  -D                           Usa zero per a la marca horària del mapa de símbols (predeterminat)
  -U                           Usa una marca horària real del mapa de símbols
  -D --enable-deterministic-archives
                                   Produeix sortida determinista quan es redueixin fitxers
  -U --disable-deterministic-archives
                                   Desactiva el comportament -D
  -D --enable-deterministic-archives
                                   Produeix sortida determinística quan es redueixin els fitxers (predeterminat)n
  -U --disable-deterministic-archives
                                   Desactiva el comportament -D
  -H --help                    Imprimeix aquest missatge d'ajuda
  -v --verbose                 Imprimeix missatges - us diu el que s'està 
                                fent
  -V --version                 Imprimeix la versió d'informació
  -I --histogram         Mostra l'histograma de les longituds de llistes de 
                          cubells
  -W --wide              Permet amplada de sotrida que excedeix 80 caràcters
  @<fitxer>              Llegeix les opcions de <fitxer>
  -H --help              Mostra aquesta informació
  -v --version           Mostar el número de versió de readelf
  -I --input-target <bfdname>      Suposa que el fitxer d'entrada està en format <bfdname>
  -O --output-target <bfdname>     Crea un fitxer de sortida en format <bfdname>
  -B --binary-architecture <arch>  Estableix la sortida a <arch>, quan l'entrada és independent de l'arquitectura
  -F --target <bfdname>            Estableix el format tant d'entrada com de sortida a <bfdname>
     --debugging                   Converteix la informació de depuració, si és possible
  -p --preserve-dates              Copia les marques horàries de modificat/accés a l'output
  -I --input-target=<bfdname>      Suposa que el fitxer d'entrada és en format <bfdname>
  -O --output-target=<bfdname>     Crea un fitxer de sortida en format <bfdname>
  -F --target=<bfdname>            Estableix el format tant d'entrada com de sortida a <bfdname>
  -p --preserve-dates              Copia les marques horàries de modificació/accés a <bfdname>
  -i --instruction-dump=<número|nom>
                         Desassembla els continguts de la secció <número|nom>
  -r                           S'ignorarà per compatibilitat amb rc
  @<fitxer>                    Llegeix les opcions a <fitxer>
  -h --help                    Imprimeix aquest missatge
  -V --version                 Imprimeix la informació de la versió
  -t                           Actualitza la marca horària del mapa de símbols de l'arxiu
  -h --help                    Imprimeix aquest missatge d'ajuda
  -v --version                 Imprimeix informació de la versió
punters de 32 bit:
punters de 64 bit:
<Senyalador desconegut %d>:   @<file>      - llegeix les opcions des del <fitxer>
  Versió ABI:                        %d
  Adr: 0x  Avança la línia per %s a %d
  Avança PC per una quantitat %s de mida fixa a 0x%s
  Classe:                            %s
  Cnt: %d
  Índex de model compacte %d
  Unitat de compilació @ posició 0x%s:
  Versió DWARF:                %d
  DW_CFA_??? (op de marc de crida definit per l'usuari: %#x)
  Dades:                             %s
  Entrada	Directori	Temps	Mida	Nom
  Adreça del punt d'entrada:           Opcode estès %d:   Arguments opcode d'extensió:
  Fitxer: %lx  Fitxer: %s  Senyaladors  Senyaladors:                       0x%lx%s
  Senyaladors: %s Versió: %d
  Per a la unitat de compilació a la posició 0x%s:
  Opcions genèriques:
  Índex: %d  Cnt: %d    El valor inicial de 'is_stmt': %d
  Longitud:                            %ld
  Longitud:                    %ld
  Longitud:                 %ld
  Base de línia:                %d
  Rang de línia:                %d
  Màquina:                           %s
  Màgic:     Màxim d'operacions per instrucció: %d
  Longitud mínima d'instrucció:  %d
  No hi ha capçalera auxiliar
 No hi ha opcions específiques d'emulació
  No hi ha capçalera de secció
  No s'han trobat cadenes de caràcter en aquesta secció.  Nota: Aquesta secció té relocalitzacions contra ella, però NO s'han aplicat a aquest bolcat 
  Nom. Cub:    Valor          Mida   Tipus  Unió Vis      Nom Ndx
  Nom. Cub:   Valor  Mida   Tipus  Unió Vis      Nom Ndx
  Núm:    Índex       Valor  Nom  INDICADOR de número (0x%lx)
  Nombre de columnes:           %d
  Nombre de posicions:            %d
  Nombre d'entrades usades:  %d
  SO/ABI:                            %s
  Posició         Info           Tipus          Valor Símbol  Nom Símbol
  Posició         Info           Tipus          Valor Sim.    Nom Símbol + Sumand
  Posició a la secció .debug_info:     0x%lx
  Posició a .debug_info: 0x%lx
  Posició a dins de .debug-line:  0x%lx
  Mida de posicio:             %d
  Taula de posicions
  Posició:                     0x%lx
  Posició: %#08lx  Enllaç: %u (%s)
  Base d'opcode:               %d
  Opcions per a %s:
  Opcions passades a DLLTOOL:
  PPC hi-16:
 Rutina de personalitat:   Mida del punter:          %d
  Longitud de pròleg:           %d
  Registres restaurats:   La resta es passen sense modificació al controlador de llenguatge
  Recupera la pila del punter de marc
  Registre de retorn: %s
  Seccions de segment...
  Mida del segment:         %d
  Estableix el nom del fitxer a l'entrada %s a la taula de noms de fitxers
  Estableix ISA a %lu
  Estableix ISA a %s
  Estableix el bloc bàsic
  Estableix la columna a %s
  Estableix epilogue_begin a vertader
  Estableix is_stmt a %s
  Estableix prologue_end a vertader
  Mida de l'àrea a la secció .debug_info: %ld
Mida de la taula
  Increment de pila %d
  Seny       Tipus                        Nom/Valor
  Tipus          Posició            AdrVirt            AdrFís
  Tipus          Posició  AdrVirt            AdrFís           MidaFit MidaMem   Seny Alin
  Tipus          Posició  AdrVirt    AdrFís   MidaFit MidaMem  Seny Alin
  Tipus:                             %s
  Tipus de localització no gestionada %u
  Màgic no gestionat
  Opcode desconegut %d amb operands:   Versió def aux s'estén més enllà del final de la secció
  La definició de la versió s'estén més enllà del final de la secció
  Versió:                              %d
  Versió:                            0x%lx
  Versió:                      %d
  Versió:                   %d
  Versió:                   %d
  [%3d] 0x%s  [%3d] Signatura:  0x%s  Seccions:   [-X32]       - ignora objectes de 64 bit
  [-X32_64]    - accepta objectes de 32 i 64 bits
  [-X64]       - ignora objectes de 32 bit
  [-g]         - arxiu petit de 32 bit
  [D]          - usa zero per a marques horàries i uids/gids
  [D]          - usa zero per a les marques horàries i uids/gids (predeterminat)
  [N]          - usa la instància [nombre] del nom
  [Nr] Nom
  [Nr] Nom               Tipus            Adreça            Posició
  [Nr] Nom               Tipus           Adr      Pos    Mida   ES Sen Lk Inf Al
  [Nr] Nom              Tipus            Adreça           Pos    Mida   ES Sen Lk Inf Al
  [O]           - mostra els inicis dels fitxers a l'arxiu
  [P]          - usa noms complets de camí quan es facin emparellats
  [S]          - no construeixis una taula de símbols
  [T]          - fes un arxiu prim
  [Dades truncades]
  [D]          - usa les marques horàries i uids/gids reals
  [D]          - usa marques horàries i uids/gids reals (predeterminat)
  [V]          - mostra el número de versió
  [a]          - posa el(s) fitxer(s) després de [nom-membre]
  [b]          - posa el(s) fitxer(s) abans de [nom-membre] (igual que [i])
[longitud incorrecta de bloc]
  [c]          - no adverteixis si s'hagut de crear la biblioteca
  [f]          - trunca els noms inserits de fitxers
  [o]          - preserva les dates originals
  [reservat (%d)]
     [reservat]
  [s]          - crea un índex de l'arxiu (compareu amb ranlib)
[bloc truncat]
  [u]          - reemplaça únicament els fitxers que siguin més nous que el contingut actual de l'arxiu
  [v]          - mostra tots els missatges
  límit de codi      %08x
  d            - esborra el(s) fitxer(s) de l'arxiu
  senyaladors:         %08x
  senyaladors:     0x%04x   posició del resum:    %08x
  mida del resum:      %02x
  tipus de resum:      %02x (%s)
  posició del sagnat:   %08x (- %08x)
  importació de fitxer deshabilitat:  %u
  importació strtab len: %u
  entrada d'índex %u: tipus: %08x, desplaçament: %08x
  m[ab]        - mou el(s) fitxer(s) a l'arxiu
  màgic:         0x%04x (0%04o)      posicions de codi nbr:   %08x
  fitxers importació nbr:  %u
  relocalitzacions nbr:        %u
  seccions nbr:  %d
  posicions especials nbr: %08x (al desplaçament %08x)
  símbols nbr:       %u
  símbols nbrs:   %d
  mida de capçaleres opt:   %d
  p            - imprimeix el(s) fitxer(s) trobats a l'arxiu
  mida de la pàgina:     %02x
  q[f]         - afegeix ràpid el(s) fitxer(s) a l'arxiu
  r[ab][f][u]  - reemplaça l'existent i insereix un(s) nou(s) fitxer(s) a l'arxiu
  s            - actua com ranlib
  posició de la dispersió:  %08x
  scnlen: %08x  nreloc: %-6u
  scnlen: %08x  nreloc: %-6u  nlinno: %-6u
  spare1:            %02x
  spare2:            %08x
  longitud de la taula de cadenes de caràcters:  %u
  cadena de caràcters deshabilitades:  %u
  simbols deshabilitats:   0x%08x
  t[O][v]            - mostra els continguts de l'arxiu
  temps i data: 0x%08x  -   versió:            %08x
  versió:            %u
  versió:    0x%08x    x[o]         - extrau el(s) fitxer(s) de l'arxiu
 #: Nom de Segment   Nom de secció   Adreça
 %3u %3u  (Desplaçament de fitxer: 0x%lx) (bytes al fitxer)
 (bytes al fitxer)
  Començament de les capçaleres de la secció: (bytes)
 (fi dels senyaladors a %08x)
 (inserit per) (llista de localitzacions) (no hi cadenes de caràcters):
(inici == fi)(inici > fi) (mida de les cadenes de caràcters: %08x):
 <%d><%lx>: ...
 <%d><%lx>: Número d'abreviatura: %lu <%d><%lx>: Número d'abreviatura: 0
 <corrupte: %14ld> <corrupte: fora de rang> Adr:  Adr: 0x S'ha de donar almenys una de les opcions següents:
 Valor gp canònic:  Converteix les adreces a parelles número de línia/nom de fitxer.
Còpia un fitxer binari, possiblement transformant-lo en el procés
 DW_MACINFO_define - línia-número: %d macro: %s
 DW_MACINFO_end_file
 DW_MACINFO_start_file - línia-número: %d fitxer-número: %d
 DW_MACINFO_undef - línia-número: %d macro: %s
 DW_MACINFO_vendor_ext - constant : %d cadena : %s
Mostra la informació sobre els continguts dels fitxers en format ELF
Mostra la informació del(s) <fitxer(s)> object(es)
Mostra les cadenes de caràcters imprimibles a [fitxer(s)] (per defecte stdin)
 Mostra les mides de les seccions dins de fitxers binaris
 Entrades:
Genera un índex per fer més ràpid l'accés als fitxers
 Entrades globals:
Si no s'especifiquen adreces a la línia d'ordres, es llegiran  l'entrada estàndard
 Si no s'especifica fitxer(s) d'entrada, se suposa a.out
Resolvedor fluix
 Longitud Nombre    %% del total Cobertura
Declaracions de números de línia:
Llista els símbols a [fitxer(s)] (per defecte a.out).
 Entrades locals
 Punter de mòduls
Punter de mòduls (extensió GNU)
 CAP NOTA: Aquesta secció té relocalitzacions contra ella, pero NO s'han aplicat a aquest bolcat.
 Nom (longitud: %u):  No hi ha cap declaració de número de línia.
 Cap
 Nomb.: Nom                          Unit a      Senyaladors
 Posició     Info    Tipus              Valor Sim.  Nom Símbol
 Posició    Info    Tipus               Valor Sim.   Nom símbol + sumand
Posició    Info    Tipus            Valor Sim.  Nom Símbol
 Posició  Info    Tips            Valor Sim.  Nom símbol + sumand
 Resolvedor fluix PLT
 Imprimeix una interpretació llegible per humans d'un fitxer objecte COFF
 Elimina els símbols i les seccions dels fitxers
 Entrades reservades:
Les opcions són:
 Les opcions són:
  -A|-B     --format={sysv|berkeley}  Seleccioneu l'estil de la sortida (per 
                                       defecte és %s)
  -o|-d|-x  --radix={8|10|16}         Mostra els nombres en octal, decimal o hex
  -t        --totals                  Mostra les mides totals (sols Berkeley)
            --common                  Mostra la mida total per a *COM* syms
            --target=<nom-bfd>        Estableix el format de fitxer binari
            @<fitxer>                 Llegeix les opcions de <fitxer>
  -h        --help                    Mostra aquesta informació
  -v        --version                 Mostra la versió del programa

 Les opcions són:
  -a --ascii_in                Llegeix el fitxer d'entrada com fitxer ASCII
  -A --ascii_out               Escriu els missatges binaris com ASCII
  -b --binprefix               El nom de fitxer .bin es prefixa amb un nom 
                                .mc filename_ per a que sigui únic.
  -c --customflag              Estableix senyaladors personalitzats per als 
                                missatges
  -C --codepage_in=<val>       Estableix el codi de pàgina quan s'estigui 
                                llegint un fitxer mc de text
  -d --decimal_values          Imprimeix els valors a decimal de fitxers de text
  -e --extension=<extension>   Estableix l'extensió de capçalera usada el 
                                fitxer de capçaleres d'exportació
  -F --target <destí>          Especifiqueu el destí de la sortida per a la 
                                codificació endian
  -h --headerdir=<directori>   Estableix el directori d'exportació per a les 
                                capçaleres
  -u --unicode_in              Llegeix el fitxer d'entrada com fitxer UTF16
  -U --unicode_out             Escriu els missatges binaris com UTF16
  -m --maxlength=<val>         Estableix la longitud permesa de missatge màxima
  -n --nullterminate           Afegeix automàticament terminació zero a les
                                 cadenes de caràcters
  -o --hresult_use             Usa la definició HRESULT en comptes de la 
                                definició de codi d'estat
  -O --codepage_out=<val>      Estableix el codepage usat per escriure un fitxer
                                de text
  -r --rcdir=<directori>       Estableix el directori d'exportació per a fitxers
                                rc
  -x --xdbg=<directori>        On crear el fitxer d'inclusió C .dbg que fa la
                                 correspondència entre IDs de missatge als seus
                                 noms simbòlics. 
 Les opcions són:
  -h --help        Mostra aquesta informació
  -v --version     Imprimeix el número de versió del programa
 Les opcions són:
  -i --input=<fitxer>          Poseu-li nom al fitxer d'entrada
  -o --output=<fitxer>         Poseu-li nom al fitxer de sortida
  -J --input-format=<format>   Especifiqueu el format de l'entrada
  -O --output-format=<format>  Especifiqueu el format de la sortida
  -F --target=<destí>          Especifiqueu el destí COFF
     --preprocessor=<programa> Programa a usar per preprocessar el fitxer rc
     --preprocessor-arg=<arg>  Argument addicional del preprocessador
  -I --include-dir=<dir>       Inclou un directori quan s'estigui preprocessant
                                el fitxer rc
  -D --define <sym>[=<val>]    Definiu el SYM quan s'estigui preprocessant el
                                fitxer rc
  -U --undefine <sym>          Cancel·leu la definició del SYM quen s'estigui 
                                preprocessant el fitxer rc
  -v --verbose                 Mostra els missatges - us diu el que està fent
  -c --codepage=<codi de pàgina>  Especifiqueu el codi de pàgina
  -l --language=<val>          Establiu el llenguatge quen s'estigui llegint 
                                el fitxer rc
     --use-temp-file           Useu un fitxer temporari en comptes de popen per
                                llegir la sortida del preprocessador
     --no-use-temp-file        Useu popen (predeterminat)
 Les opcions són:
  -q --quick       (Obsolet - s'ignorarà)
  -n --noprescan   No facis un escan per convertir comuns a defs
  -d --debug       Mostra informació sobre el què s'està fent
  @<fitxer>        Llegeix les opcions de <fitxer>
  -h --help        Mostra aquesta informació
  -v --version     Imprimeix el número de versió del programa
 Les opcions són:
  @<fitxer>                    Llegeix les opcions des del <fitxer>
 Les opcions són:
  @<fitxer>              Llegeix les opcions de <fitxer>
  -a --addresses         Mostra les adreces
  -b --target=<bfdname>  Estableix el format del fitxer binari
  -e --exe=<executable>  Estableix el nom del fitxer d'entrada (per defecte és 
                          és a.out)
  -i --inlines           Desplega les funcions inserides
  -j --section=<nom>     Llegeix els desplaçaments relatius a la secció en
                          comptes d'adreces
  -p --pretty-print      Fes la sortida més fàcil de llegir per als humans
  -s --basenames         Elimina els noms de directoris
  -f --functions         Mostra els noms de les funcions
  -C --demangle[=style]  Descodifica els noms de les funcions
  -R --recurse-limit     Habilita un límit quan desemboliquies. [Predeterminat]
  -r --no-recurse-limit  Deshabilita un límit quan desemboliquies. [Predeterminat]
  -h --help              Mostra aquesta informació
  -v --version           Mostra la versió del programa
 Les opcions són:
  @<fitxer>              Llegeix les opcions de <fitxer>
  -h --help              Mostra aquesta informació
  -v --version           Mostra la versió del programa

Secció .text truncada
Versió no gestionada
S'ha vist un macro opcode desconegut %02x
Actualitza la capçalera ELF dels fitxers ELF
 [sense DW_AT_frame_base] adreça més enllà de la mida de la secció
 a  a la posició 0x%lx conté %lu entrades:
 modificadors específics de l'ordre:
 ordres:
 cpusubtype: %08lx
 cputype   : %08lx (%s)
 opcions d'emulació: 
 tipus de fitxer  : %08lx (%s)
 senyaladors     : %08lx ( modificadors genèrics:
 longitud: %08x
 màgic     : %08lx
 màgic : %08x (%s)
 ncmds     : %08lx (%lu)
 no s'han trobat senyaladors
 número d'àncores CTL: %u
 opcional:
 intèrpret del programa reservat  : %08x
 senyaladors a %08x
#línies %d #fonts %d%08x: <desconegut>%ld: .bf sense funció que precedeix%ld: .ef no esperat
%lu
%s
 (capçalera %s, dades %s)
no s'ha usat mai %s %s%c0x%s%s ha sortit amb estat %d%s no té cap índex d'arxiu
%s no és una biblioteca%s no és un fitxer vàlid%s dades de la secció%s: %s: adreça fora de límits%s: No s'ha pogut obrir l'arxiu d'entrada %s
%s: No es pot obrir l'arxiu d'entrada %s
%s: Error: %s: No s'ha pogut llegir la capçalera ELF
%s: No s'ha pogut llegir la capçalera del fitxer
%s: No s'ha pogut llegir el número màgic del fixer
%s: No s'ha pogut buscar la capçalera ELF
%s: No s'ha pogut actualitzar la capçalera ELF: %s
%s: Formats coincidents:%s: Redefinició múltiple del símbol "%s"%s: El components de camí han estat trets del nom de la imatge, '%s'.%s: Símbol "%s" és el destí de més d'una redefinició%s: EI_OSABI sense coincidència:; %d no és %d
%s: Màquina e sense coincidència: %d no és %d
%s: Tipus e sense coincidència: %d no és %d
%s: Versió EI no suportada: %d no és %d
%s: Advertiment: %s: nom dolent de fixer d'arxiu
%s: número incorrecte: %s%s: versió dolenta al subsistema PE%s: no es pot trobar el fitxer de mòdul %s
%s: no es pot obrir el fitxer %s
%s: no es pot trobar la secció %s%s: no es poden obtenir les adreces del fitxer%s: no es pot establir el temps: %s%s: conté arxiu prim corrupte: %s
%s: la secció debuglink ja existeix%s: no s'ha pogut trobar una capçalera vàlida d'arxiu
%s: s'ha assolit el final de la taula de símbols abans que el final de l'índex
%s: ha fallat la lectura de la capçalera del fitxer
%s: no s'ha pogut llegir la capçalera de l'arxiu a continuació de l'índex de l'arxiu
%s: ha fallat la lectura de l'índex del fitxer
%s: no s'ha pogut llegir la taula de símbols de l'índex de l'arxiu
%s: no s'ha pogut llegir la taula de cadenes de noms llargs de símbols
%s: no s'ha pogut buscar fins a l'inici dels fitxers objecte a l'arxiu
%s: no s'ha pogut buscar el membre de l'arxiu
%s: no s'ha pogut buscar fins al membre de l'arxiu.
%s: ha fallat la cerca a la primera capçalera de fitxer
%s: no s'ha pogut buscar la capçalera següent de l'arxiu
%s: no s'ha pogut buscar el pròxim nom de fitxer
%s: no s'ha pogut saltar la taula de símbols de l'arxiu
%s: el fitxer %s no és un arxiu 
%s: lectura-f ha fallat%s: ha fallat el fseek a %lu: %s%s: valor de publicació no vàlid per a --heap%s: valor de publicació no vàlid per a --stack%s: format de sortida no vàlid%s radix no vàlid%s: valor de reserva no vàlid per a --heap%s: valor de reserva no vàlid per a --stack%s: ni hi ha un mapa d'arxiu per actualitzar%s: no hi ha un arxiu obert
%s: no hi ha un arxiu de sortida obert
%s: no s'ha especificat un arxiu de sortida encara
%s: informació de depuració no reconeguda%s: no hi ha una secció de recursos%s: no hi ha símbols%s: no és un objecte dinàmic%s: no hi ha prou dades binàries%s: ha fallat la impressió de la informació de depuració%s: la lectura de %lu ha retornat %lu%s: arquitectures suportades:%s_ formats suportats:%s: destins suportats:%s: l'arxiu té un índex però cap símbol
%s: l'índex del fitxer està buit
%s: no s'ha pogut el bolcat de l'índex perquè no s'ha trobat cap
%s: final inesperat de fitxer%s: advertiment: %s: advertiment: mida desconeguda per al camp `%s' a struct%s:%d: S'ignorarà la brossa trobada en aquesta línia%s:%d: s'ha trobat brossa al final de la línia%s:%d: nom del nou símbol absent%s:%d: acabament prematur del fitxer'%s' no és un fitxer ordinari
'%s': No hi és aques fitxer'%s': No existeix aquest fitxer
(DW_OP_call_ref informació en el marc)(ROMAGIC: segments de text compartibles de sols lectura)(TOCMAGIC: segments de text sols lectura i TOC)(Desconegut: %s)(WRMAGIC: segments de text escrivibles)(posició dolenta: %u)(entrada de selecció d'adreça de base)
(adreça de base)
(declarat com en línia i s'ha posat en línia)(declarat com en línia però s'ignorarà)(format dumpx - aix4.3 / 32 bits)(format dumpxx - aix5.0 / 64 bits)(implementació definida: %s)(en línia)(no està en línia)(inici == fi)(inici < fi)(no definit)(accessibilitat desconeguda)(cas desconegut)(convenció desconeguda)(tipus desconegut)(virtualitat desconeguda)(visibilitat desconeguda)(tipus definit per l'usuari)(definit per l'usuari))
no vàlid*no definit*, <desconegut>, Base: , Semàfor: , reubicable, bib-reubicable, ABI desconeguda, CPU desconeguda, ISA desconegudavariant d'arquitectura v850 desconegudaLa secció .debug_abbrev no està terminada amb zeros
La posició de .debug_infor de 0x%lx a la secció %s no apunta a una capçalera CU
La secció .debug_macro no està terminada amb zeros
128-bit MSA
16-byte
2 bytes
complement de 2, endian grancomplement de 2, endian petitDades de relocalització 32-bit4 bytes
4-byte
dades de relocalització 64-bit8-byte
8-byte i fins a %d-byte estès
8-byte, excepte la fulla SP
:
  No hi ha símbols
: variant d'arquitectura: : valor duplicat
: s'esperava que fos un directori
: s'esperava que fos una fulla
: desconegut: bits desconeguts de senyaladors extra també estan presents<Final de llista>
<específic per al SO>: %d<índex corrupte de taula de cadena de caràcters: %3ld><corrupte: %14ld><corrupte: %19ld><corrupte: %9ld><corrupte><el desplaçament de l'índex és massa gran><el desplaçament de l'índex indirecte és massa gran><localentry>: %d<no hi ha secció .debug_str><no hi ha secció .debug_str><no hi ha secció .debug_str.dwo><no hi ha secció .debug_str_offset><no hi ha secció .debug_str_offsets.dwo><no sím><cap><el desplaçament és massa gran><un altre>: %x<específic per al processador>: %d<índex de taula de cadena de caràcters: %3ld><dades de temps corruptes><sumand desconegut: %lx><desconegut: %x><desconegut><desconegut>: %d<desconegut>: %lx<desconegut>: %x<desconegut>: 0x%xS'ha especificat un codi de pàgina amb opció `%s' i UTF16.
AccésS'han afegit les exportacions al fitxer de sortidaS'estan afegint les exportacions al fitxer de sortidaAdreçaQualsevol MSA o no
Aplicació
Aplicació o temps real
El membre de l'arxiu fa servir noms llargs, però no s'ha trobar cap taula de noms llargs
Biblioteca d'auditoriaCapçalera auxiliar:
Biblioteca auxiliarVersió %s de capçalera BFD
sh_info dolenta en la secció de grup `%s'
sh_link dolent en la secció de grup `%s'
Stab dolent: %s
C6000 metall nuS'ha detectat un marcador end-of-siblings fals a la posició %lx a la secció %s
CORE (Fitxer de nucli)La CU a la posició %s conté un número de versió corrupte o no suportat: %d
CU: %s/%s:
CU: %s:
No es pot crear un fitxer .lib: %s: %sNo es pot omplir el buit després de la seccióNo pot haver-hi BIBLIOTECA i NOMNo es pot obrir el fitxer .lib: %s: %sNo es pot obrir el fitxer de definicions: %sNo s'ha pogut obrir el fitxer %s
No es pot convertir la llibreria existent %s al format primNo es pot convertir la llibreria prima %s al format normalNo es poden interpretar les adreces virtuals sense les capçaleres del programa.
No es pot produir un dll mcore-elf des del fitxer d'arxiu: %sAdreçament de codi dependent de la posició
Adreçament de codi independent de la posició
Fitxer de configuracióContinguts de la secció %s:

Continguts del binari %s a la posició Continguts de la secció %s:Continguts de la secció %s:

Converteix un fitxer objecte COFF a un fitxer objecte SYSROFF
Capçalera del nucli:
Entrada corrupta de tauls de model compacte ARM: %x 
Entrada corrupta de taula de noms de fitxers
Capçalera corrupta en la secció de grup `%s'
Capçalera corrupta a la secció %s.
S'ha trobat un valor corrupte de longitud (0x%s) a la secció %s
No s'ha pogut localitzar '%s'. Missatge d'error de sistema: %s
No s'ha pogut localitzar la secció .ARM.extab que conté 0x%lx.
NO s'ha pogut obtenir el tipus incorporat de decodificació
S'ha creat un fitxer bibliotecaS'està creant un fitxer biblioteca: %sS'està creant un fixer marcador: %sEl fitxer actualment obert és %s
TIPUS DERIVATNom de DLLTOOL : %s
Opcions de DLLTOOL : %s
Nom de CONTROLADOR     : %s
Opcions de CONTROLADOR  : %s
No s'ha usat l'adreçament DSBT
S'ha usat l'adreçament DSBT
Desplaçament indirecte DW_FORM_GNU_str_index massa gran: %s
Desplaçament DW_FORM_GNU_str_index massa gran: %s
DW_FORM_data8 no està suportat quan sizeof (dwarf_vma) != 8
Desplaçament DW_FORM_strp massa gran: %s
DW_LNE_define_file: Longitud d'opcode incorrecta
DW_OP_GNU_push_tls_address o DW_OP_HP_unknownDYN (Fitxer objecte compartit)Adreçament de dades depenent de la posició
Adreçament de dades independent de la posició, GOT lluny de DP
Adreçament de dades independent de la posició, GOT a prop de DP
Mida de les dadesLa informació de depuració està corrupta, la posició d'abreviació (%lx) és més gran que la mida de la secció abreujada (%lx)
S'està esborrant el fitxer temporal de base %sS'està esborrant el fitxer temporal de definició %sS'està esborrant el fitxer temporal d'exportació %sNom decodificat no és una funció
Biblioteca d'auditoria de dependènciesEncara no està suportat mostrar els continguts de depuració de la secció %s.
No hi ha informació sobre relocalitzacions a aquesta arquitectura de màquina
S'ha acabat de llegir %sS'ha entrat un símbol duplicat a una llista de paraules clau.Relocalitzacions dinàmiques:
Símbols dinàmics:
Capçalera ELF:
EXEC (Fitxer executable)FinalitzaFinal de seqüència

Desplaçament de membre d'enumeració %xError, EXPORTACIÓ duplicada amb ordinals: %sTaula d'excepcions:
S'està excloent el símbol: %sEl FORMAT és un de rc, rec o coff, i es dedueix a partir del nom de l'extensió
del fitxer si no es proveeix. Un nom de fitxer únic és un fitxer d'entrada.
Si no hi ha nom de fitxer és stdin, per defecte rc. Si no hi ha fitxer de 
sortida és stdout, per defecte rc.
No s'ha pogut determinar l'última longitud de cadena
No s'ha pogut imprimir la plantilla de decodificació
No s'ha pogut llegir el nombre de cubells
No s'ha pogut llegir el nombre de cadenes
El fitxer %s no és un arxiu i en conseqüència el seu índex no es  mostrar.
Atributs de fitxer
El fitxer conté múltiples taules de símbols dinàmics
El fitxer conté múltiples taules de símbols dinàmics
Capçalera de fitxer:
Biblioteca de filtresSenyaladors:Per a fitxers XCOFF:
  header      Mostra la capçalera del fitxer
  aout        Mostra la capçalera auxiliar
  sections    Mostra les capçaleres de les seccions
  syms        Mostra la taula dels símbols
  relocs      Mostra les entrades de relocalització
  lineno      Mostra les entrades de números de línia
  loader      Mostra la secció del carregador
  except      Mostra la taula d'excepcions
  typchk      Mostra la secció type-check
  traceback   Mostra els indicadors de les traces d'error
  toc         Mostra els símbols
  ldinfo      Mostra la informació del carregador als fitxers core
S'han suprimit els advertiments addicionals sobre marcadors end-of-sibling falsos
S'HA OBTINGUT UN %x
S'ha generat el fitxer d'exportacionsS'està generant el fitxer d'exportació: %sDades de la taula de les posicions globalsTipus flotant dur (de precisió doble)
Tipus flotant tou (de precisió simple)
Tipus flotant dur o tou
entrada de directori d'IDrecurs d'IDsubdirectori d'IDFitxers d'importació:
La biblioteca d'importació `%s' especifica una o més dllsAl fitxer %s:
Al fitxer niuat %s:
InicialEl fixer '%s' d'entrada no és llegible
El fitxer d'entrada '%s' no és llegible.
El fitxer d'entrada `%s' ignora el paràmetre d'arquitectura binària.Versió d'interfície: %sError intern: La versió DWARF no és 2, 3 o 4.
Error intern: Tipus de màquina desconegut: %dError intern: no s'ha pogut crear la cadena de format per l'intèrpret del programa
Error intern: espai exhaurit al conjunt shndx.
Adreça invàlida a la secció %s!
Formulari invàlid per a l'opcode d'extensió %s
Màxim invàlid de operacions per insn.
Opció no vàlida '-%c'
Radix invàlid: %s
S'està mantenint el fitxer temporal de base %sS'està mantenint el fitxer temporal de definició %sS'està mantenint el fitxer temporal d'exportació %sBIBLIOTECA: %s base: %xGran
Últimes entrades stabs abans de l'error:
rpath de la biblioteca: [%s]runpath de la biblioteca: [%s]soname de la biblioteca: [%s]Números de línia per a %s (%u)
Llista de blocsLlista de fitxers fontLlista de símbolsCapçalera del carregador:
La llista de localització que comença a la posició 0x%lx no està terminada.
Les llistes de localització a la secció %s comencen a 0x%s
MÒDUL***
MSP430
MSP430X
Capçalera Mach-O:
La màquina '%s' no està suportadaSecció de memòria %s+%xMicrocontrolador
La versió que falta necessita de informació auxiliar
La versió que falta necessita informació
Coneixement absent dels tipus de relocalització 32-bit usats a les seccions DWARF de la màquina número %d
Canvis de nom múltiples de la secció %sHeu de proveir almenys una de les opcions -o o --dllnameNom: %s base: %xSecció de senyaladors NDS32 elfCAPCAP (cap)NT_386_IOPERM (informació x86 I/O)NT_386_TLS (informació x86 TLS)NT_ARCH (arquitectura)NT_ARM_HW_BREAK (registres de punt d'interrupció de maquinari AArch)NT_ARM_HW_WATCH (registres de punt d'inspecció de maquinari AArch)NT_ARM_TLS (registres AArch TLS)NT_ARM_VFP (registres arm VFP)NT_AUXV (vector auxiliar)NT_FILE (fitxers mapejats)NT_FPREGS (registres de punt flotant)NT_FPREGSET (registres de punt flotant)NT_GNU_ABI_TAG (senyalador de versió ABI)NT_GNU_BUILD_ID (bitsring ID de compilació única)NT_GNU_GOLD_VERSION (versió or)NT_GNU_HWCAP (informació HWCAP de programari proveït per DSO)NT_LWPSINFO (estructura lwpsinfo_t)NT_LWPSTATUS (estructura lwpstatus_t)NT_PPC_VMX (registres ppc Altivec)NT_PPC_VSX (registres ppc VSX)NT_PRPSINFO (estructura prpsinfo)NT_PRSTATUS (estructura prstatus)NT_PRXFPREG (estructura user_xfpregs)NT_PSINFO (estructura psinfo)NT_PSTATUS (estructura pstatus)NT_S390_CTRS (registres de control s390)NT_S390_HIGH_GPRS (s390 meitats de registres superiors)NT_S390_LAST_BREAK (s390 adreça de l'últim esdeveniment interruptor)NT_S390_PREFIX (registres de prefixos s390)NT_S390_SYSTEM (dades de reinici de crida de sistema s390)NT_S390_TDB (bloc de diagnòstic de transacció s390)NT_S390_TIMER (registre de temporalització s390)NT_S390_TODCMP (registre comparatiu s390 TOD)NT_S390_TODPREG (registre programable s390 TOD)NT_SIGINFO (dades siginfo_t)NT_STAPSDT (descriptors de sonda SystemTap)NT_TASKSTRUCT (estructura de tasques)NT_VERSION (versió)NT_VMS_EIDC (verificació de consistència)NT_VMS_FPMODE (mode FP)NT_VMS_GSTNAM (nom de la taula de símbols)NT_VMS_IMGBID (id de compilació)NT_VMS_IMGID (id d'imatge)NT_VMS_IMGNAM (nom d'imatge)NT_VMS_LINKID (id d'enllaçament)NT_VMS_LNM (nom d'idioma)NT_VMS_MHD (capçalera de mòdul)NT_VMS_SRC (fitxers de codi font)NT_WIN32PSTATUS (estructura win32_pstatus)NT_X86_XSTATE (estat estès x86 XSAVE)N_LBRAC no està a la funció
NomNom                   Valor           Classe       Tipus        Mida             Línia Secció

Nom                   Valor   Classe       Tipus        Mida     Línia Secció

Índex de noms: %ld
Nom: %s
Entrades nbr : %-8u Mida: %08x (%u)
NdxEstructura procinfo NetBSDNi ha ha una secció %s present
No hi ha una entrada %s a l'arxiu.
No hi ha un nom de fitxer seguint l'opció -fo.
No hi ha llistes de localització a la secció .debug_info!
No hi ha un membre nomenat `%s'
No s'han trobat segments de notes presents al fitxer central.
No hi ha llistes de rang a la secció .debug_info.
CapCap
No és un fitxer ELF - té els bytes màgics incorrectes al principi
Objecte que no es necessita: [%s]
No s'ha usat
No hi ha res per fer.
Específic de SO: (%x)La posició 0x%lx és més gran que la mida de la secció .debug_loc.
La posició dins de la secció %s és massa gran: %s
Sols està suportat -X 32_64Actualment sols estan suportats organitzacions DWARF 2 i 3.
Actualment sols estan suportats els noms pub DWARF 2 i 3.
S'ha obert el fitxer temporal: %sEspecífic del sistema operatiu. %lxL'opció -I és obsoleta per establir el format d'input, sisplau useu en comptes -J
Memòria exhaurida
S'ha exhaurit la memòria quan s'estava assignant la taula de demanda de bolcat
S'ha exhaurit la memòria quan s'estaven llegint noms llargs de símbol a l'arxiu
S'ha exhaurit la memòria quan s'estava intentant convertir l'índex de simbols dels fitxer
S'ha exhaurit la memòria quan s'estava intentant llegir la taula de símbols de l'índex de l'arxiu
S'ha exhaurit la memòria quan s'estava intentant llegir l'índex de símbols de l'arxiu
El fitxer de sortida no pot representar l'arquitectura `%s'PropietariPT_GETFPREGS (estructura fpreg)PT_GETREGS (estructura reg)Desplaçament de la pàginaEls components de camí s'han eliminat del nom de la dll, '%s'.La mida del punter + la mida del segment no és una potència de dos.
Imprimeix una interpretació llegible per humans d'un fitxer SYSROFF
No s'ha inicialitzat l'ample de la impressió (%d)Dades de la taula d'enllaçament de procedimentsS'ha processat el fitxer de definicionsS'han processat les definicionsS'està processant el fitxer de definicions: %sS'estan processant les definicionsEspecífic del processador: %lxEspecífic del processador: (%x)REL (Fitxer reubicable)Les llistes de rang a la secció %s comencen a 0x%lx
Volcat en brut dels continguts de depuració de la secció %s:
Temps real
No es pot desplegarRegistre %dRelocalitzacions per a %s (%u)
Informa dels errors a %s
Informeu els erros a %s.
S'ha trobat un valor reservat de longitud (0x%s) a la secció %s
Gran restringit
LA SUMA ÉS %x
INFORMACIÓ DE SÍMBOLS'està explotant el fitxer objecte %sLa secció %d no s'ha bolcat perquè no existeix!
La secció %s és massa petita per a %d entrades de taula de resum
La secció %s és massa petita per a les taules de desplaçaments i mides
La secció %s és massa petita per al fons shndx
La secció '%s' no s'ha bolcat perquè no existeix!
Atributs de secció:Capçaleres de la secció (at %u+%u=0x%08x to 0x%08x):
Les capçaleres de secció no estan disponibles!
Seccions:
Posició Seg          Tipus                            SymVec Tipus Dades
Posició Seg Tipus                            Apèndix            Pos Sim Seg
  Segments i seccions:
Biblioteca compartida: [%s]Se saltarà la relocalització no esperada a la posició 0x%lx
Petit
Tipus flotant tou
Fitxer font %sDesplaçament de la pila %xAplicació independentIniciaDesplaçament de membre d'estructura %xS'està xuclant informació des de la secció %s a la secció %sArquitectures suportades:Destins suportats:Val.Sim.Símbol  %s, etiqueta %d, número %dAtributs de símbol:Taula de símbols (strtable a 0x%08x)Error de sintaxis al fitxer de definicions %s:%dTOC:
Les dades de la taula d'adreces a la versió 3 poden ser incorrectes.
Hi ha un forat [0x%lx - 0x%lx] a la secció %s.
Hi ha un forat [0x%lx - 0x%lx] a la secció .debug_loc.
Hi ha una superposició [0x%lx - 0x%lx] a la secció %s.
Hi ha un desplaçament [0x%lx - 0x%lx] a la secció .debug_loc.
Aquest executable s'ha construït sense suport per a un tipus
de 64 bits i per això no pot processar fitxers ELF de 64 bits.
Aquesta instància de readelf s'ha compilat sense suport per a
tipus de dades de 64 bit i en conseqüència no pot llegir fitxers ELF de 64 bits.
Aquest programa és programari lliure; podeu redistribuir-lo sota els
terminis de la LLicència Pública General GNU versió 3 o (d'acord amb
la vostra opció) qualsevol versió posterior.

Aquest programa no té cap garantia.
Marca de temps: %sMassa N_RBRACs
S'ha provat `%s'
S'ha provat el fitxer: %sVeritat
Capçalera truncada a la secció %s.
TipusNúmero %d de fitxer de tipus fora de rang
Número %d d'índex de tipus fora de rang
Secció type-check:
DESCONEGUT (%*.*lx)DESCONEGUT (%u): longitud %d
DESCONEGUT: No és possible canviar la codificació endian del(s) fitxer(s) d'entradaNo es pot determinar el nom de la dll per a `%s' (no és una biblioteca d'importació?)No es pot determinar la longitud de la taula de cadenes dinàmiques de caràcters
No es pot determinar el nombre de símbols per carregar
No és possible trobar el nom de l'intèrpret del programa
No es pot carregar/analitzar la secció .debug_info, per això no es pot interpretar la secció %s.
No s'ha pogut trobar la secció %s!
No s'ha pogut obrir fitxer-base: %sNo s'ha pogut obrir el fitxer objecte: %s: %sNo es pot obrir el fitxer temporal d'assemblador: %sNo es pot llegir el nom de l'intèrpret del programa
No s'ha pogut reconèixer el format del fitxerNo s'ha pogut reconèixer el format del fitxer d'entrada `%s'No es pot buscar fins a 0x%lx per a %s
No s'ha pogut buscar fins al principi de la informació dinàmica
N_EXCL no definitSímbol no definitVarargs inesperades de decodificació
Tipus inesperat a la decodificació v3 arglist
Longitud de dades no controlada: %d
Trobat u índex desconegut de model compacte ARM
Valor AT desconegut: %lxValor FORM desconegut: %lxOSABI desconegut: %s
Tipus desconegut d'entrada de llista de localització 0x%x.
Tipus de màquina desconeguda: %s
Tipus de nota desconeguda: (0x%08x)Senyalador desconegut: %d
Tipus desconegut: %s
Tipus XCOFF no reconegut %d
Opció de depuració '%s' no reconeguda
Secció de depuració no reconeguda: %s
Component %d de decodificació no reconegut
Tipus incorporat no reconegut de decodificació
Forma no reconeguda: %lu
Versió no suportada %lu.
Forma d'ús %s <opció(ns)> <fitxer(s)-objecte>
Forma d'ús: %s <opció(ns)> <fitxer(s)>
Forma d'ús: %s <opció(ns)> fitxer(s)-elf
Forma d'ús: %s <opció(ns)> fitxer(s)-entrada
Forma d'ús: %s [opcions d'emulació] [-]{dmpqrstx}[abcDfilMNoPsSTuvV] [--plugin <nom>] [nom-del-membre] [nombre] fitxer-arxiu fitxer...
Forma d'ús: %s [opcions d'emulació] [-]{dmpqrstx}[abcDfilMNoPsSTuvV] [--plugin <nom>] [nom-del-membre] [nombre] fitxer-arxiu fitxer...
Forma d'ús: %s [opcions(ns)] [adreça(es)]
Forma d'ús: %s [opció(ns)] [fitxer(s)]
Forma d'ús: %s [opció(ns)] [fitxer-entrada]
Forma d'ús: %s [opció(ns)] [fitxer-entrad] [fitxer-sortida]
Forma d'ús: %s [opció(ns)] fitxer-entrada
Forma d'ús: %s [opció(ns)] fitxer-entrada [fitxer-sortida]
Forma d'ús: %s [opcions] fitxer
Forma d'ús: readelf <opció(ns> fitxer(s)-elf
S'està usant `%s'
S'està usant %sS'està usant popen per llegir la sortida del preprocessador
S'està usant el fitxer temporari `%s' per llegir la sortida de preprocessador
S'estan usant conjuntament les opcions --size-sort i --undefined-onlyVERSIÓ %d.%d
El valor per `N' ha de ser positiu.Versió %ld
La versió 4 no dóna suport a cerques no sensitives a majúscula/minúscula.
La versió 5 no inclou funcions en línia.
La versió 6 no inclou atributs de símbols.
La versió necessita seccióLes adreces virtual 0x%lx no estan localitzades en cap segment PT_LOAD.
VisibleES VOL %x!!
Advertiment, s'ignorarà EXPORTACIÓ duplicada %s %d, %dAdvertiment, la màquina tipus (%d) no està suportada per a delayimport.Advertiment: %s: %s
Advertiment: '%s' té una mida negativa, probablement és massa granAdvertiment: '%s' és un directoriAdvertiment: '%s' no és un fitxer ordinariAdvertiment: s'esta canviant la mida de tipus de %d a %d
Advertiment: no s'ha pogut localitzar '%s'. raó: %sAdvertiment: s'ignoraran els valors previs --reverse-bytes de %dAdvertiment: s'està truncant el farciment de buit de 0x%s a 0x%xOn[%3u] 0x%lx - 0x%lx
[%3u] 0x%lx 0x%lx [Estalvia][Opcode truncat]
[farceix][truncat]
`N' és significatiu únicament amb les opcions `x' i `d'.`u' no és significatiu amb l'opció `D'.`u' és significatiu únicament amb l'opció `r'.s'ha ignorat `u' ja que `D' és el predeterminat (vegeu `U')`x' no es pot utilitzar en arxius prims.acceleradorarquitectura %s desconegudaarquitectura: %s, argumentsmatriu [%d] deatributsformat dolent per a %snom codificat dolent `%s'
registre dolent: ha fallat bfd_coff_get_auxent: %sha fallat bfd_coff_get_syment: %sbfd_open ha fallat d'obrir un fitxer marcador: %s: %s bfd_open no ha pogut reobrir el fitxer marcador: %s: %sbig endianblocsel número de bytes ha de ser menor a la intercalacióel nombre de bytes ha de ser no-negatiuno s'ha pogut determinar el tipus de fitxer `%s';: useu l'opció -Jno es pot afegir el farcitno es pot afegir la secció '%s'no es pot crear %s el fitxer %s per a sortida.
no es pot crear la secció de depuracióno es pot crear la secció `%s'no es pot desassemblar per a l'arquitectura %s
no s'ha pogut bolcar La secció '%s' - no existeixno es pot bolcar la secció - no té contingutsno es pot bolcar la seccció - està buidano es pot executar `%s': %sno s'ha pogut obtenir el tipus de relocalització BFD_RELOC_RVAno s'ha pogut obrir %s `%s': %sno es pot obrir `%s' per a sortida: %sno es pot obrir el fitxer temporari `%s': %sno es pot fer popen a `%s': %sno es pot redirigir la sortida estàndard: `%s': %sno es pot establir el destí per defecte BFD a `%s': %sno es poden establir els continguts de la secció de depuracióno es pot usar la màquina aportada %sno es pot llegir la capçalera del nuclino es pot crear la secció d'enllaçament de depuració `%s'no es pot crear el directori temporal per al fitxer que es copiarà (error: %s)no es pot esborrar %s: %sno es pot omplir la secció d'enllaçament de depuració `%s'no es pot obrir '%s': %sno es pot obrir el fitxer d'entrada %sno es pot obrir: %s: %sno es pot llegir la capçalera auxiliarno es poden llegir les dades de la signatura del codino es pot llegir la capçalerano es pot llegir l'entrada de números de líniesno es poden llegir los números de líniano es pot llegir la taula de informació del carregadorno es pot llegir l'entrada de la relocalitzacióno es poden llegir les relocalitzacionsno es pot llegir la capçalera de seccióno es poden llegir les capçaleres de la seccióno es pot llegir la informació de la divisió de segmentsno es pot llegir la taula de cadena de caràctersno es pot llegir la longitud de la taula de cadenes de caràctersno es pot llegir l'entrada auxiliar de símbolsno es pot llegir l'entrada auxiliar de símbolsno es pot llegir la taula de símbolsno es poden revertir els bits: la longitud de la secció %s ha de poder-se dividir exactament per %dcodiconflictes'ha trobat una llista de conflictes sense una taula de símbols dinàmics
indicador const/volàtil absentles dades de control requereixen DIALOGEXcopia de `%s' [%s] a `%s' [%s]
copia de `%s' [desconegut] a `%s' [desconegut]
entrada de taula d'índex corrrupta: %x
atribut corrupte de proveïdor
no s'ha pogut crear el fitxer temporari per mantenir la còpia netejadano s'ha pogut crear un fitxer temporari quan s'estava escrivint l'arxiuno s'ha pogut determinar el tipus del símbol número %ld
no s'ha pogut obrir el fitxer de bolcat de seccióno s'han pogut recuperar els continguts de la seccióno s'ha pogut obrir el fitxer de redefinició de símbols %s (error: %s)s'està creant %scursorel fitxer de cursos `%s' no conté dades de cursorentrada de dadesdebug_add_to_current_namespace: cap fitxer actualdebug_end_block: s'ha intentat tancar al bloc de primer nivelldebug_end_block: cap bloc actualdebug_end_common_block: no està implementatdebug_end_function: cap funció actualdebug_end_function: no s'han tancat alguns blocsdebug_find_named_type: cap unitat actual de compilaciódebug_get_real_type: informació circular de depuració per a %s
debug_make_undefined_type: tipus no suportatdebug_name_type: cap fitxer actualdebug_record_function: no hi ha una crida a debug_set_filenamedebug_record_label: no està implementatdebug_record_line: cap unitat actualdebug_record_parameter: cap funció actualdebug_record_variable: cap fitxer actualdebug_start_block: cap bloc actualdebug_start_common_block: no està implementatdebug_start_source: no hi ha una crida a debug_set_filenamedebug_tag_type: s'ha intentat una etiqueta extradebug_tag_type: cap fitxer actualdebug_write_type: s'ha trobat un tipus il·legal  defineix una nova entrada de la taula de fitxers
control de diàlegdades de control de diàlegfinal del control de diàlegmida de punt de tipus de lletra de diàlegcapçalera de diàlegcontrol de dialogexinformació de tipus de lletra de dialogexdirectorinom d'entrada de directoridisassemble_fn ha retornat la longitud %dno hi ha informació per escriure la informació de depuració per a %sdwo_idsecció dinàmicacorreccions d'imatge de secció dinàmicarelocalitzacions dinàmiques d'imatge de seccionssecció de cadenes dinàmiques de caràcterstaula de cadenes dinàmiques de caràcterscadenes de caràcters dinàmiqueses desconeix la codificació endiandefinició d'enumeracióreferència d'enumeració a %ss'ha produït un error copiant dades BFD privadeserror en dades de capçalera privadaerror: %s tan copiat com esborraterror: %s tant estableix com altera el VMA<error: %s tant estableix com altera el VMAerror: l'amplada de la instrucció ha de ser positivaerror: l'eliminació de prefix ha de ser no-negativaerror: les concordances de la secció %s tant eliminen com copies opcionserror: el fitxer d'entrada '%s' està buiterror: l'adreça d'inici hauria d'estar abans que l'adreça finalerror: l'adreça d'aturada hauria d'estar després de l'adreça d'inicino s'han pogut copiar les dades privadesha fallat la creació d'una secció de la sortidano s'ha pogut obrir un fitxer capçalera temporal: %sno s'ha pogut obrir un fitxer capçalera temporal: %s: %sno s'ha pogut obrir un fitxer cua temporal: %sno s'ha pogut obrir un fitxer cua temporal: %s: %sno s'ha pogut llegir el nombre d'entrades des del fitxer baseno s'ha pogut establir l'alineacióno s'ha pogut establir la midano s'ha pogut establir la vmaes requereix un nom de fitxer per a l'entrada COFFes requereix un nom de fitxer per a la sortida COFFinformació de versió fixasenyaladors 0x%08x:
fontdirnom de dispositiu fontdirnom de família de tipus de lletra fontdircapçalera de fontdirfuncióretorn de funciógglobalcursor de grupcapçalera de cursor de grupicona de grupcapçalera d'icona de grupté fillsl'ID d'ajuda requereix DIALOGEXel fitxer d'icones `%s' no conté dades d'iconess'ignorarà el valor alternatiuels fitxers d'entrada i sortida han de ser diferentsel fitxer d'entrada no sembla ser UFT16.
l'interllaçat ha de ser positiuel byte d'inici d'intercalació s'ha d'establir amb --bytel'amplada de la intercalació ha de ser menor o igual a intercalació - byte`l'amplada de l'interllaçat ha de ser positivaerror intern -- aquesta opció no està implementadaerror intern en accedir %sargument no vàlid per a --format: %ss'ha especificat un codi no vàlid de pàgina
índex no vàlid a matriu de símbols
argument %s d'enter no vàlidlongitud %d no vàlida de cadena de caràcters mínimaopció -f no vàlida
s'ha especificat un valor no vàlid per a pragma code_page.
longitud %d [dades de secció liblist taula de cadena de caràcters liblistlineno  symndx/paddr
little endiancapçalera de menúcapçalera menuexposició menuexmenuitemcapçalera menuitemtipus absent d'índexmés d'un segment dinàmic
entrada amb nom de directorirecurs amb nomsubdirectori amb nomcap secció .dynamic al segment dinàmic
no hi ha una secció .except al fitxer
no hi ha una secció .loader al fitxer
no hi ha una secció .typchk al fitxer
no hi ha tipus d'arguments a la cadena codificada de caràcters
sense fillsno hi ha una entrada %s al fitxer
no hi ha una entrada %s a l'arxiu %sno s'ha proveït un fitxer de definicions d'exportació.
S'està creant un, però potser això no és el que voleusense informacióno hi ha informació per al símbol número %ld
no s'ha especificat un fitxer d'entradano s'ha especificat una operaciósense recursosno hi ha símbols
capno establert
no s'eliminarà el símbol `%s' perquè se'l menciona a una relocalitzaciónota amb namesz no vàlida i/o descsz no trobat al desplaçament 0x%lx
notescadena de caràcters unicode terminat amb zerosel nombre de bytes a revertir ha de ser positiu i parelldesbordament numèricposició: %08xposició: %s l'opció -P/--private no està suportada per aquest fitxeropcionsun altrememòria exhaurida quan s'estaven analitzant les relocalitzacions
sobreeiximent - nreloc: %u, nlnno: %u
parse_coff_type: Codi de tipus dolent 0x%xpunter amostra marc {capçalera de fitxer ELF possiblement corrupte - té una posició no- de la capçalera de secció, però cap capçalera de secció
ha fallat el preprocessamentcapçaleres de programapwait retorna: %sha fallat la lectura de %s de la secció %s: %sla comptabilització de la relocalització és negativaID de recursosdades de recursmida de dades de recurstipus desconegut de recursexecuta: %s %sssecció %s %d %d adreça %x mida %x número %d nrelocs %usecció %u: el valor sh_link de %u és més gran que el nombre de seccions
la secció '%s' té el tipus NOBITS - els seus continguts no fiables.
la secció '%s' mencionada en una opció -j, pero no trobada en cap fitxer d'entradala secció .loader és massa curta
secció 0 a secció de grup [%5u]
secció [%5u] a la secció de grup [%5u] > secció màxima [%5u]
secció [%5u] a la secció de grup [%5u] ja està a la secció de grup [%5u]
continguts de la secciódades de secciódefinició de secció a %x mida %x
capçaleres de seccióla informació de divisió de segment no està terminada amb nulestableix Adreça a 0x%s
estableix el Discriminador a %s
signaturamida %d mida: %s se saltarà la posició 0x%lx de relocalització no vàlida a la secció %s
se saltarà l'índex 0x%lx no vàlid de símbols de relocalització a la secció %s
ho sento - aquest programa s'ha construït sense suport per a connectors
sp = sp + %ldstab_int_type: mida dolenta %uha fallat el stat al fitxer bitmap `%s': %sha fallat l'stat al fitxer `%s': %sha fallat l'stat al fitxer de tipus de lletra `%s': %sstat retorna una mida negativa per a `%s'estàtictaula de cadenes de caràctersha fallat string_hash_lookup: %scadena de caràcters de la taula de cadena de caràcterslongitud de cadena de caràcters de la taula de cadena de caràctersdefinició d'estructurareferència d'estructura a %sreferència d'estructura a estructura DESCONEGUDAel subprocés ha rebut un senyal fatal %dsenyaladors suportats: %sinformació de símbolssímbolsel bolcat '%s' específic del destí no està suportatla secció .dynamic no està continguda dins del segment dinàmica
la secció .dynamic no és la primera secció en la segment dinàmic.
aquest destí no suporta codis de màquina alternatius %lues tractarà aquest número en canvi com un valor e_machine absolutprova d'afegir un idioma malalt.s'han especificat dues opcions d'operació diferentstipusno s'ha pogut aplicar el tipus %d de relocalització no suportada a la secció %s
no es pot copiar el fitxer '%s'; raó: %sno s'ha pogut obrir el fitxer `%s' per a l'entrada.
no s'ha pogut obrir el fitxer de sortida %sno s'ha pogut analitzar el codi alternatiu de màquinano s'han pogut llegir els continguts de %sno es pot canviar el nom a '%s?; raó: %sversió %d inesperada de DIALOGEXversió %lu inesperada d'informació de versió fixalongitud %ld inesperada d'informació de versió fixasignatura %lu inesperada de versió fixatipus %d inesperat de cursor de gruptipus %d inesperat d'icona de gruplongitud %ld inesperada de valor stringfileinfolongitud %ld inesperada de valor varfileinfocadena de caràcters inesperada de versiólongitud %ld != %ld + %ld inesperada de cadena de caràcters de versiólongitud %ld < %ld inesperada de cadena de caràcters de versiólongitud %ld inesperada de valor de taula de cadenes de caràcters de versiótipus %d inesperat de versiólongitud %ld inesperada de valor de versiódesconegutnom codificat C++ desconegutsubsistema PE desconegut: %sestil desconegut de descodificació `%s'format desconegutTipus `%s' desconegut de format destí EFI d'entrada desconegut: %sopció desconeguda '%s' de nom llargs de secciómac desconegutmàgic desconegutdestí EFI de sortida desconegut: %scaràcter virtual desconegut per a baseclasscaràcter de visibilitat desconegut per a baseclasscaràcter desconegut de visibilitat per al camptipus $vb sense nomtipus --endian no reconegut `%s'opció -E no reconegudaabreviació C++ no reconegudatipus no reconegut de referència creuadasenyalador `%s' de secció no reconegutno reconegut: %-7lxversió %d no suportada de menúunused5unused6unused7dades de desplegamentinformació de desplegamentdesplega la tauladefinit per l'usuari: variablevariables %ddades de versiódefinició de versiódefinició de versió auxsecció de definició de versiónecessitat de versiónecessitat aux (2) de versióaux necessitat de versió (3)cadena de caràcters de versiótaula de cadenes de caràcters de versiótaula de cadenes de caràcters de versiódades de símbols de versióinformació de variables de versióvarfileinfo de versióespera: %sadvertiment: no s'ha pogut crear el fitxer temporari quan s'estava copiant '%s', (error: %s)advertiment: no s'ha pogut localitzar '%s'. Missatge d'error de sistema: %sadvertiment: alineació de fitxer (0x%s) > alineació de secció (0x%s)advertiment: la mida de la capçalera opcional massa gran (> %d)
no es produirà cap sortida, ja que els símbols no definits no tenen mida.