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
Þ•Ô¼\=ÈQÉQÞQ÷Q"R+9ReR{R&R´RÏRÛR úRS 3STS'lS”S=­SëSóST("T(KT;tT6°TEçT-U
CUNU:jU1¥U,×U.V3VFV#[V#V%£V+ÉVõVW)WDW"^W%W"§W2ÊW0ýW,.X([X+„X%°X,ÖX+Y/Y7@Y2xY3«YßYEñYT7ZŒZC¨Z3ìZ8 [;Y[:•[8Ð[
	\\Y1\b‹\î\*	]4];]<S]3]3Ä]:ø]/3^Dc^2¨^4Û^,_4=_<r_5¯_7å_5`3S`‡`+Ÿ`8Ë`9a8>a8wa+°a0Üa0
b2>b'qb8™b"Òb0õb7&cH^cJ§c9òc7,dLdd7±d2édNe:ke?¦e>æe=%f>cf6¢f<Ùf7g8Ng<‡g<ÄgIhNKh=šhHØh)!i=Ki>‰iÈiÛiîij@j8]j–j¬jÂjÖjñj$k*kBk^kskyk#k'£k÷ËkTÃl_?x†$¸‹gݑ±E’(÷’
 “+“G“%b“.ˆ“(·“
à“ë“”"”(1”Z”%v”œ”³”
¿”ʔ-Ҕ••.•"E•+h•#”• ¸•"ٕ"ü•(–H–"T– w–B˜–:ۖ!—
8—)F—(p—(™—H—Q˜+]˜ ‰˜,ª˜!טù˜"™5™H™f™†™‹™"«™4Ι(š,šCš3cš—š¨š»šϚíš›+›1J›1|›1®›3à›5œ@Jœ\‹œJèœ(3#\*€+«+םž(#ž/Lž(|ž&¥ž.̞CûžQ?ŸY‘Ÿ3ëŸ- ,M 1z @¬ >í .,¡)[¡6…¡Q¼¡¢1+¢]¢-|¢4ª¢5ߢI£-_£2£À£Ò£8æ£%¤E¤U¤$d¤‰¤	‘¤›¤7°¤5è¤7¥?V¥,–¥Ã¥0Ù¥+
¦36¦<j¦,§¦;Ô¦4§/E§Qu§5ǧ*ý§/(¨X¨7_¨B—¨KÚ¨9&©B`©ñ£©@•®)Ö®¯¾¯ÚÒ°­²n®µ½‚Ÿ¾|"¿tŸ¿dÀ"yÜĸÄ'ÏÄ÷ÄÅ!Å7ÅLÅ,aÅ
ŽÅ#™Å½ÅÒÅ×ÅÛÅàÅ	÷ÅÆÆ5Æ8OÆ1ˆÆºÆ ØÆ!ùÆÇ'ÇGÇ(]Ç3†Ç7ºÇ
òÇÈÈ&.È&UÈ|È›È,³ÈàÈ8øÈ&1ÉXÉlÉ"‰É ¬É*ÍÉ(øÉ!Ê@ÊQÊ,mʚʴÊÆÊãÊøÊ$Ë'9ËaËyˈˡË)¼ËæËÌ!ÌH2Ì{̘̯ÌÆÌ
ÙÌ=çÌ2%Í
XÍ*cÍ#ŽÍ²ÍÑÍîÍóÍÎ$Î8ÎNÎ iÎ ŠÎ	«ÎµÎ
ÅÎÓÎîÎÏÏ=ÏVÏ"hϋϣϷÏÐÏ
ëÏ
ùÏÐ
Ð$ÐAÐ
_ÐmÐÐœÐ"¸Ð"ÛÐ
þÐÑ%'Ñ&MÑ$tљѲÑÏÑçÑÒÒ&.ÒUÒqҍҦҾÒÒÒ<ðÒ2-Ó`ÓsӍӦÓ%ÄÓ(êÓ%Ô69Ô.pÔ1ŸÔ$ÑÔöÔÕ!Õ8ÕTÕjÕ€Õ–Õ>¬ÕëÕÖ$ÖCÖ!bք֝ÖB¹Ö:üÖ7×G×T×k×}×*Š×µ×Ê×Òá×#´Ø$ØØ#ýØ-!Ù-OÙ+}٩ٸٿÙÖÙñÙÚÚ Ú :Ú&[Ú$‚Ú&§ÚNÎÚ>Û\Û!lÛ-ŽÛ(¼ÛåÛûÛÜ-ÜKÜÈiÜ2Ý!GÝiÝ}Ý“ÝA¨Ý4êÝÞ:Þ4YÞŽÞ Þ¬ÞÃÞ$ÞÞ&ß"*ß$Mß rß “ß$´ßÙßößà4à)Iàsà`àPñàBá	Sá]áwá&á¶á&Ïá*öá!â7â+Mâ'yâ¡â<¦â6ãâã3ãCãUã4pã4¥ã=ÚãEä^äxäM—ä
åäóä+å,.å[åkåŠå¥å,Äå?ñå1æDæZæræ‰æ¡æºæ>Ñæ4ç#Eçiç|çç5¨ç#Þç
è
è'"èJè%Yèè˜è«è?Êè
é$é8?é7xé:°é;ëé>'êwfê”Þêsë†ë’ë!¡ë"Ãëæë,úë;'ì2cì(–ì(¿ì5èìí;í+Zí#†íªí3Êíþíî<î.[îŠî›î)¹îãîþîï,ïCï_ï{ï›ï#»ï$ßïð&ð Bð!cðg…ð íð ñ+/ñ1[ññ)¬ñÖñ'óñò'ò(6ò6_ò;–òÒò:òò+-óYó%jó5ó*Æó+ñóJô.hô—ô4©ô+Þô
õ	õ- õNõfõNyõÈõÙõ÷õ
öö3ö Cö+döö¯ö"Îöñö(
÷ 6÷6W÷Ž÷¬÷'Ã÷ë÷ø"!øDøYøuø(•ø¾ø/Óøùù2ùFù2Où ‚ù£ùÂù0Þù2ú5Búxú„ú-‹ú¹ú
Èú
Óúáúôú/û1>û!pû'’û'ºû/âû2ü7Eü}ü+”ü Àüáü1úü#,ý"Pý+sý&Ÿý#Æý)êý.þCþ#Zþ~þ*žþÉþØþìþÿþ
ÿ$ÿ5ÿ	OÿYÿnÿ~ÿ“ÿ£ÿ½ÿ×ÿ/òÿ&"&I p!‘³ÆÌÛã÷	%
9DVc})Š´ÉÜ(ó4Q-m› µÖò&<DYk…’™
¥
³ÁÊÚêý)8Wm|*$ºßëS%r
˜¦¾Öíú+27=\mu-’#Àäñ$:A
M[n„!-²àíý
2I_u‹®ÀÏEÔ	5	D	#T	x	!•	!·	Ù	æ	

1
D
c
‚
–
©
±
@¾
Eÿ
#E)i#“· Õö :S'r)š.Ä&ó
:
X
j

)Ÿ
&É
ð
.
(9.b‘"¬Ïàð	 '0Xm‹¤'´*Ü&.?_v”²%Ïõ!2Ts'‡¯ÁÓ$ï!0RhtŽšª4Åú1F[o€”˜'¡&É,ð '>9f4 2Õ=F²S%4)Z1„¶Ë3ß2!?axŠ¦,½êZ`h%z' 7ÈMBNK‘Ýò+þ8*6c!š9¼ö$.)S/}0­Þõ*9W#t˜Aµ-÷'%%M's›%µ%Û6<N7‹ÃEÛT! v D“ 9Ø C!YV!M°!Nþ!
M"["Zt"bÏ"2#(O#x##J—#=â#= $W^$;¶$Lò$8?%Ox%3È%Eü%CB&H†&BÏ&9'=L'Š'/¡'MÑ'H(:h(:£(4Þ(B)=V)?”)-Ô)H*(K*:t*B¯*Mò*N@+L+CÜ+\ ,?},0½,Rî,<A-N~-WÍ-<%.Fb.?©.Gé.51/Hg/M°/Cþ/TB0h—0H1SI1/1<Í1L
2W2j222Dµ2<ú273O3e3{3™3$®3Ó3é3	44$4$*4-O4}4s”5QˆYB•^pØf»Ig*h0h(<h'eh'h'µh*Ýhii.i%:i(`i‰i'¨iÐiàiíi
ùi3j;j[jrj&Œj+³j#ßj!k&%k)Lk'vkžk#ªk%ÎkGôk?<l#|l l+­l-Ùl(mM0mY~m6Øm-n+=n"in!Œn#®nÒn$ëno/o 4o$Uo>zo.¹oèopH pipƒp˜p-²pàp+üp2(q0[q.Œq1»q9íq7'rD_r_¤rKs'Ps(xs,¡s+Îs+ús&t/Ft6vt/­t+Ýt>	uEHuSŽu]âu=@v,~v0«v9ÜvKwRbw2µw3èw4x`Qx"²x,Õx'y/*y:Zy=•ydÓy08z/iz™z®zFÅz%{2{I{*_{Š{
“{ž{;º{=ö{C4|6x|/¯|ß|4õ|.*}/Y}?‰}'É}Uñ}8G~7€~G¸~8R9<Œ
É@ÔC€OY€C©€Oí€.=Ll†.¹†è†-ø†&‰65‹3lŽ¦ –ƒG˜x˘pD™kµ™!.ž!Fž)hž!’ž´žÀžݞ÷ž.ŸBŸ"QŸtŸŠŸŸ“Ÿ˜Ÿ	¸ŸŸáŸûŸP Kj &¶ "Ý %¡
&¡!1¡S¡'l¡9”¡<Ρ¢¢7¢"M¢1p¢#¢¢Æ¢3䢣F1£,x£¥£2½£"ð£¤-1¤&_¤"†¤©¤!À¤/⤥1¥'E¥m¥ „¥-¥¥'Ó¥û¥¦#¦<¦:X¦%“¦¹¦ ȦMé¦7§T§o§‰§¤§L±§:þ§
9¨0D¨u¨‘¨¯¨ΨÓ¨ñ¨©(©&D©-k©-™©Ç©
שå©ø©ª1ªAªSªfª!xªšªµªͪ䪫«"«4«%E«'k«“«¨«½«#Ý«0¬02¬c¬$t¬4™¬0ά5ÿ¬5­R­q­Œ­¥­º­1Õ­)®"1®T® s®”®!®®>Ю6¯
F¯T¯r¯¯%­¯,Ó¯%°=&°5d°*š°+Å°ñ°#±"/±R±m±ƒ±ž±·±BÕ±#²<²"[²"~²%¡²#Dz$ë²V³Eg³	­³·³ɳâ³î³*ÿ³*´,A´*n´'™µÁµܵ/øµ0(¶.Y¶ˆ¶œ¶©¶#Ƕë¶ü¶	··!/·+Q·(}·)¦·Oз? ¸`¸u¸,”¸%Á¸ç¸¹¹"5¹"X¹ß{¹[º"sº–º ­ºκCæºD*»o»-Œ»Sº»¼#¼:¼K¼$h¼&¼!´¼#Ö¼ú¼½#:½^½z½˜½¸½(ͽ"ö½e¾S¾Ó¾
ç¾ò¾¿0¿O¿1o¿.¡¿пî¿&	À20ÀcÀBlÀE¯ÀõÀÁ%ÁEÁ?dÁ<¤ÁGáÁO)Ây•ÂU´Â
ÃÃ4+Ã3`ÔÃ+¤ÃÐà îÃ3ÄKCďĨĻÄÚÄïÄÅ ÅH?ÅLˆÅ8ÕÅcÆXrÆËÆ5èÆÇ>ÇKÇ.iǘÇ)­Ç×ÇðÇ+È-2È`ÈyÈJ“È<ÞÈ?É>[ÉAšÉoÜɸLÊË
Ë*Ë'<Ë(dˍË=£Ë1áË*Ì,>Ì%kÌ-‘Ì¿ÌßÌ+ÿÌ!+ÍMÍ)fÍ-Í"¾ÍáÍ1Î3Î1EÎ:wÎ"²ÎÕÎðÎ
Ï)ÏGÏ+aÏ)Ï#·Ï*ÛÏÐ.Ð1JÐ/|Ðs¬Ð' Ñ)HÑArÑA´Ñ-öÑ?$Ò#dÒ2ˆÒ»ÒÐÒ+éÒMÓCcÓ§Ó>ÄÓ-Ô1Ô$AÔ5fÔ/œÔ$ÌÔQñÔ+CÕoÕ7‚Õ.ºÕéÕúÕ.Ö2ÖJÖVVÖ­Ö%ÂÖèÖÿÖ%×=×%Q×4w×$¬×$Ñ×-ö×!$Ø4FØ {ØAœØ#ÞØÙ0"ÙSÙ$lÙ'‘Ù¹ÙÖÙ.óÙ1"ÚTÚBfÚ©Ú¿ÚÞÚ
óÚ8þÚ 7Û%XÛ~Û?œÛ-ÜÛ=
ÜHÜ	ZÜ3dÜ
˜Ü¦Ü³ÜËÜéÜ8Ý9>Ý&xÝ3ŸÝ*ÓÝ6þÝ75ÞImÞ·Þ5ÕÞ(ß4ßGSß2›ß,Îß2ûß0.à)_à6‰à?Ààá2á*Lá,wá¤á¶áÍá âáââ*âEâKâ\âpâ†â—âµâÐâ.éâ*ã(Cã%lã&’ã¹ãÏãÛãðãää2äNä_ä
zä…ä›ä!¨äÊä)Üäåå5å,RåDåÄå*áå"æ!/æ Qæræ‚æ•æ¬æÆæÎæäæüæç-ç<çNçaçsç€ç™ç©ç»çËçÝçîçè
 è.è/>è.nèèªè)Ãè]íè%Kéqé„é  éÁé
×éâé)îéêê)#êMê]ê-iê:—ê%Òê
øêëë$1ëVë	fë
pë~ëë
¦ë.´ë8ãëì+ì
AìOì_ì|ì›ì´ìÎìèìíí5íKíJQíœíºíÍí'äí î*-î5Xî
Žî#œîÀîÕîòî(
ï3ïPïlï	{ï…ï3’ïFÆï
ð*'ð&Rð!yð)›ðÅðâðññ!9ñ+[ñ/‡ñ,·ñ%äñ"
ò-òKò]ò"uò1˜ò6Êòó1 ó+Ró3~ó²ó'Îóöó
ôô :ô[ô/nôžô ¹ôÚôöô-	õ97õ.qõ õ·õÖõðõ 
ö.ö$IönöŒö!©ö"Ëöîö1÷2÷G÷\÷#z÷!ž÷)À÷ê÷øø(ø7øHødø;ø»ø!Îø!ðøù-ùAùUù pù‘ù	•ù(Ÿù&Èù6ïù%&ú'Lú1tú2¦ú<ÙúHû_û(
¬Zâ*G•¤"Ñx²½vÅM¸¶X'¨mݨ]ÿ@Èéð§6W<¹=¼![T¶)ædÖwhk^¿šˆKpU·7a
äY6E!„­MÞ´}Â;Uð)gþDžã<lCç{³÷〜i‘¹:Ö4\™`è¥“Ü(ž„~V(¯n]ÈZ¦˜ØëVM9ç.ö›òßÚ-UŽöOBe7Ý»Ë
Ðù^ƒB Lœ=“P‹J–—΢øAÙÃ'Rfýv37~§d÷À"EÀF"%ŒÚjNµñÄ´¿¡¢tÜ¡ ©5½ä&r˜Ö†u
H’7!La½Á‹)wm¬gr៱L|/ÇÉõì°lÑ	ÒÔœs×K,º2úˆHl£Õ{ye3´(ôµ!•¸±RØéõŒ	û d/2…Ž*
vÐIÍqþY¹mî¨Óg-¾]<ÆŠ‹³D|0Öqó‰ÊkZí­¾ƒuðc#aûIÙ¥e€£®’œÇ“Ñ‚óïÏøQðrϪ\C{{Á«¿1­æ@³ýáä¼ô‡¬>ÄʺtwSædu—cPïɔ̝`ªc=¯S`™?‚ŠÊgN™\½}‡Q:¥™ë%,ÌfÇ°¼–&šbW9	Ni©.¢‰Šf=ÛÀÃè]ß?Ó£ÂÜOÕ¶z¶–Qw«èÎ<S^ö
PF}9Ô—>4®|ÄH‘U6”žªÍO_ý51êåKÒìîÞÌ‘©•Ø\ùõ¿˜Ñà¸HEGúuÊ…÷z$ϛ_±¡Ò±á¹v&4¤¤Å†j¦FW[&-*L9çÁfò:j®Æ¬ùí0
Nnîà|“¢Xn%I§E$ÎG"}¤ÅƵÿâ2ÿ”Ÿµ«JˆÓ8Y¨ÎxM1zxêCO?,…h4Ûíq›
‚©»0ûš•Õ¾8a˜+ Ä;Tkƒq­·þêZylÁ`ü/ñŸPt¸Ù3ÛCó>	0³ͧ¾^‡ªsâJË×’;‰Ëhs[yÒT$rúŒ_ŸÆxoÈSÌTл㺣R«·åšiÓŽüÏb.VX1Bp2s‰ tÉ>ލ¯ïA»‡BÈA+„¯åeY@6›5z—D#,×bé¡+·¼%G)+by;€VžDÝ?°²iˆoЮ€ŠcÂò#5ñÇÔŽ'@ì¦8pQü’‚JƒI…WkR~ øͲ8#º ßh[ԑŒ:3Éॲ'mÅ/$„ÚA´nKX-”†Ë†¦o‹jëF*o~ pÀô._

Symbols from %s:



Symbols from %s[%s]:



Undefined symbols from %s:



Undefined symbols from %s[%s]:


      [Requesting program interpreter: %s]
    Address  Length

    Offset	Name

  Start of program headers:          
 Line Number Statements:

 Opcodes:

 Section to Segment mapping:

 The Directory Table is empty.

 The Directory Table:

 The File Name Table is empty.

 The File Name Table:

 The following switches are optional:

%s:     file format %s

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

<%s>


Archive index:

Assembly dump of section %s

Could not find unwind info section for 
Dump of debug contents of section %s:


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

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

Dynamic symbol information is not available for displaying symbols.

Elf file type is %s

File: %s

Hex dump of section '%s':

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

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

No version information found in this file.

Notes at offset 0x%08lx with length 0x%08lx:

Program Headers:

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

Section '%s' has no data to dump.

Section '%s' has no debugging data.

Section '.conflict' contains %lu entries:

Section Header:

Section Headers:

Symbol table '%s' contains %lu entries:

Symbol table for image:

The .debug_loc section is empty.

The .debug_ranges section is empty.

The .debug_str section is empty.

There are %d program headers, starting at offset 
There are no dynamic relocations in this file.

There are no program headers in this file.

There are no relocations in this file.

There are no section groups in this file.

There are no sections in this file.

There are no unwind sections in this file.

There is no dynamic section in this file.

Unwind section 
Version definition section '%s' contains %ld entries:

Version needs section '%s' contains %ld entries:

Version symbols section '%s' contains %d entries:

start address 0x                 FileSiz            MemSiz              Flags  Align
        possible <machine>: arm[_interwork], i386, mcore[-elf]{-le|-be}, ppc, thumb
       %s -M [<mri-script]
       Size              EntSize          Flags  Link  Info  Align
      --exclude-symbols <list> Don't export <list>
      --export-all-symbols   Export all symbols to .def
      --no-default-excludes  Clear default exclude symbols
      --no-export-all-symbols  Only export listed symbols
     --yydebug                 Turn on parser debugging
    %-18s %s
    %8.8lx <End of list>
    Offset             Info             Type               Symbol's Value  Symbol's Name
    Offset             Info             Type               Symbol's Value  Symbol's Name + Addend
    Offset   Begin    End
    Offset   Begin    End      Expression
   %d	   %ld      %s    [%s]
   --add-indirect         Add dll indirects to export file.
   --add-stdcall-alias    Add aliases without @<n>
   --as <name>            Use <name> for assembler
   --base-file <basefile> Read linker generated base file
   --def <deffile>        Name input .def file
   --dllname <name>       Name of input dll to put into output lib.
   --dlltool-name <dlltool> Defaults to "dlltool"
   --driver-flags <flags> Override default ld flags
   --driver-name <driver> Defaults to "gcc"
   --dry-run              Show what needs to be run
   --entry <entry>        Specify alternate DLL entry point
   --exclude-symbols <list> Exclude <list> from .def
   --export-all-symbols     Export all symbols to .def
   --image-base <base>    Specify image base address
   --implib <outname>     Synonym for --output-lib
   --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
   --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.
   -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 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.
   -z --output-def <deffile> Name of .def file to be created.
   0 (*local*)       1 (*global*)      Abbrev Offset: %ld
   Length:        %ld
   Num:    Value          Size Type    Bind   Vis      Ndx Name
   Num:    Value  Size Type    Bind   Vis      Ndx Name
   Pointer Size:  %d
   Version:       %d
   [Index]    Name
  %#06x:   Name index: %lx  %#06x:   Name: %s  %#06x: Parent %d, name index: %ld
  %#06x: Parent %d: %s
  %#06x: Rev: %d  Flags: %s  %#06x: Version: %d  %d	  %s
  (Pointer size:               %u)
  (Unknown inline attribute value: %lx)  -I --histogram         Display histogram of bucket list lengths
  -W --wide              Allow output width to exceed 80 characters
  -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 arch of output file, when input is binary
  -F --target <bfdname>            Set both input and output format to <bfdname>
     --debugging                   Convert debugging information, if possible
  -p --preserve-dates              Copy modified/access timestamps to the output
  -j --only-section <name>         Only copy section <name> into the output
     --add-gnu-debuglink=<file>    Add section .gnu_debuglink linking to <file>
  -R --remove-section <name>       Remove section <name> from the output
  -S --strip-all                   Remove all symbol and relocation information
  -g --strip-debug                 Remove all debugging symbols & sections
     --strip-unneeded              Remove all symbols not needed by relocations
  -N --strip-symbol <name>         Do not copy symbol <name>
     --strip-unneeded-symbol <name>
                                   Do not copy symbol <name> unless needed by
                                     relocations
     --only-keep-debug             Strip everything but the debug information
  -K --keep-symbol <name>          Only copy symbol <name>
  -L --localize-symbol <name>      Force symbol <name> to be marked as a local
  -G --keep-global-symbol <name>   Localize all symbols except <name>
  -W --weaken-symbol <name>        Force symbol <name> to be marked as a weak
     --weaken                      Force all global symbols to be marked as weak
  -w --wildcard                    Permit wildcard in symbol comparison
  -x --discard-all                 Remove all non-global symbols
  -X --discard-locals              Remove any compiler-generated symbols
  -i --interleave <number>         Only copy one out of every <number> bytes
  -b --byte <num>                  Select byte <num> in every interleaved block
     --gap-fill <val>              Fill gaps between sections with <val>
     --pad-to <addr>               Pad the last section up to address <addr>
     --set-start <addr>            Set the start address to <addr>
    {--change-start|--adjust-start} <incr>
                                   Add <incr> to the start address
    {--change-addresses|--adjust-vma} <incr>
                                   Add <incr> to LMA, VMA and start addresses
    {--change-section-address|--adjust-section-vma} <name>{=|+|-}<val>
                                   Change LMA and VMA of section <name> by <val>
     --change-section-lma <name>{=|+|-}<val>
                                   Change the LMA of section <name> by <val>
     --change-section-vma <name>{=|+|-}<val>
                                   Change the VMA of section <name> by <val>
    {--[no-]change-warnings|--[no-]adjust-warnings}
                                   Warn if a named section does not exist
     --set-section-flags <name>=<flags>
                                   Set section <name>'s properties to <flags>
     --add-section <name>=<file>   Add section <name> found in <file> to output
     --rename-section <old>=<new>[,<flags>] Rename section <old> to <new>
     --change-leading-char         Force output format's leading character style
     --remove-leading-char         Remove leading character from global symbols
     --redefine-sym <old>=<new>    Redefine symbol name <old> to <new>
     --redefine-syms <file>        --redefine-sym for all symbol pairs 
                                     listed in <file>
     --srec-len <number>           Restrict the length of generated Srecords
     --srec-forceS3                Restrict the type of generated Srecords to S3
     --strip-symbols <file>        -N for all symbols listed in <file>
     --strip-unneeded-symbols <file>
                                   --strip-unneeded-symbol for all symbols listed
                                     in <file>
     --keep-symbols <file>         -K for all symbols listed in <file>
     --localize-symbols <file>     -L for all symbols listed in <file>
     --keep-global-symbols <file>  -G for all symbols listed in <file>
     --weaken-symbols <file>       -W for all symbols listed in <file>
     --alt-machine-code <index>    Use alternate machine code for output
     --writable-text               Mark the output text as writable
     --readonly-text               Make the output text write protected
     --pure                        Mark the output file as demand paged
     --impure                      Mark the output file as impure
     --prefix-symbols <prefix>     Add <prefix> to start of every symbol name
     --prefix-sections <prefix>    Add <prefix> to start of every section name
     --prefix-alloc-sections <prefix>
                                   Add <prefix> to start of every allocatable
                                     section name
  -v --verbose                     List all object files modified
  -V --version                     Display this program's version number
  -h --help                        Display this output
     --info                        List object formats & architectures supported
  -I --input-target=<bfdname>      Assume input file is in format <bfdname>
  -O --output-target=<bfdname>     Create an output file in format <bfdname>
  -F --target=<bfdname>            Set both input and output format to <bfdname>
  -p --preserve-dates              Copy modified/access timestamps to the output
  -R --remove-section=<name>       Remove section <name> from the output
  -s --strip-all                   Remove all symbol and relocation information
  -g -S -d --strip-debug           Remove all debugging symbols & sections
     --strip-unneeded              Remove all symbols not needed by relocations
     --only-keep-debug             Strip everything but the debug information
  -N --strip-symbol=<name>         Do not copy symbol <name>
  -K --keep-symbol=<name>          Only copy symbol <name>
  -w --wildcard                    Permit wildcard in symbol comparison
  -x --discard-all                 Remove all non-global symbols
  -X --discard-locals              Remove any compiler-generated symbols
  -v --verbose                     List all object files modified
  -V --version                     Display this program's version number
  -h --help                        Display this output
     --info                        List object formats & architectures supported
  -o <file>                        Place stripped output into <file>
  -a, --archive-headers    Display archive header information
  -f, --file-headers       Display the contents of the overall file header
  -p, --private-headers    Display object format specific file header contents
  -h, --[section-]headers  Display the contents of the section headers
  -x, --all-headers        Display the contents of all headers
  -d, --disassemble        Display assembler contents of executable sections
  -D, --disassemble-all    Display assembler contents of all sections
  -S, --source             Intermix source code with disassembly
  -s, --full-contents      Display the full contents of all sections requested
  -g, --debugging          Display debug information in object file
  -e, --debugging-tags     Display debug information using ctags style
  -G, --stabs              Display (in raw form) any STABS info in the file
  -t, --syms               Display the contents of the symbol table(s)
  -T, --dynamic-syms       Display the contents of the dynamic symbol table
  -r, --reloc              Display the relocation entries in the file
  -R, --dynamic-reloc      Display the dynamic relocation entries in the file
  -v, --version            Display this program's version number
  -i, --info               List object formats and architectures supported
  -H, --help               Display this information
  -b, --target=BFDNAME           Specify the target object format as BFDNAME
  -m, --architecture=MACHINE     Specify the target architecture as MACHINE
  -j, --section=NAME             Only display information for section NAME
  -M, --disassembler-options=OPT Pass text OPT on to the disassembler
  -EB --endian=big               Assume big endian format when disassembling
  -EL --endian=little            Assume little endian format when disassembling
      --file-start-context       Include context from start of file (with -S)
  -I, --include=DIR              Add DIR to search list for source files
  -l, --line-numbers             Include line numbers and filenames in output
  -C, --demangle[=STYLE]         Decode mangled/processed symbol names
                                  The STYLE, if specified, can be `auto', `gnu',
                                  `lucid', `arm', `hp', `edg', `gnu-v3', `java'
                                  or `gnat'
  -w, --wide                     Format output for more than 80 columns
  -z, --disassemble-zeroes       Do not skip blocks of zeroes when disassembling
      --start-address=ADDR       Only process data whose address is >= ADDR
      --stop-address=ADDR        Only process data whose address is <= ADDR
      --prefix-addresses         Print complete address alongside disassembly
      --[no-]show-raw-insn       Display hex alongside symbolic disassembly
      --adjust-vma=OFFSET        Add OFFSET to all displayed section addresses
      --special-syms             Include special symbols in symbol dumps

  -i --instruction-dump=<number>
                         Disassemble the contents of section <number>
  -r                           Ignored for compatibility with rc
  -h --help                    Print this help message
  -V --version                 Print version information
  ABI Version:                       %d
  Addr: 0x  Advance Line by %d to %d
  Advance PC by %d to %lx
  Advance PC by constant %d to 0x%lx
  Advance PC by fixed size amount %d to 0x%lx
  Class:                             %s
  Cnt: %d
  Compilation Unit @ %lx:
  Copy
  DWARF Version:               %d
  Data:                              %s
  Entry	Dir	Time	Size	Name
  Entry point address:                 Extended opcode %d:   File: %lx  File: %s  Flags  Flags:                             0x%lx%s
  Flags: %s  Version: %d
  Generic options:
  Index: %d  Cnt: %d    Initial value of 'is_stmt':  %d
  Length:                              %ld
  Length:                      %ld
  Length:                   %ld
  Line Base:                   %d
  Line Range:                  %d
  Machine:                           %s
  Magic:     Minimum Instruction Length:  %d
  No emulation specific options
  Num Buc:    Value          Size   Type   Bind Vis      Ndx Name
  Num Buc:    Value  Size   Type   Bind Vis      Ndx Name
  Num:    Index       Value  Name  Number TAG
  Number of program headers:         %ld
  Number of section headers:         %ld  OS/ABI:                            %s
  Offset          Info           Type           Sym. Value    Sym. Name
  Offset          Info           Type           Sym. Value    Sym. Name + Addend
  Offset into .debug_info section:     %ld
  Offset into .debug_info:  %lx
  Offset: %#08lx  Link to section: %ld (%s)
  Offset: %#08lx  Link: %lx (%s)
  Opcode %d has %d args
  Opcode Base:                 %d
  Options for %s:
  Options passed to DLLTOOL:
  Owner		Data size	Description
  Pg  Pointer Size:             %d
  Prologue Length:             %d
  Rest are passed unmodified to the language driver
  Section header string table index: %ld  Segment Sections...
  Segment Size:             %d
  Set File Name to entry %d in the File Name Table
  Set ISA to %d
  Set basic block
  Set column to %d
  Set epilogue_begin to true
  Set is_stmt to %d
  Set prologue_end to true
  Size of area in .debug_info section: %ld
  Size of program headers:           %ld (bytes)
  Size of section headers:           %ld (bytes)
  Size of this header:               %ld (bytes)
  Special opcode %d: advance Address by %d to 0x%lx  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
  Unknown opcode %d with operands:   Version:                             %d
  Version:                           %d %s
  Version:                           0x%lx
  Version:                  %d
  [-X32]       - ignores 64 bit objects
  [-X32_64]    - accepts 32 and 64 bit objects
  [-X64]       - ignores 32 bit objects
  [-g]         - 32 bit small archive
  [N]          - use instance [count] of name
  [Nr] Name              Type             Address           Offset
  [Nr] Name              Type            Addr     Off    Size   ES Flg Lk Inf Al
  [Nr] Name              Type            Address          Off    Size   ES Flg Lk Inf Al
  [P]          - use full path names when matching
  [S]          - do not build a symbol table
  [V]          - display the version number
  [a]          - put file(s) after [member-name]
  [b]          - put file(s) before [member-name] (same as [i])
  [c]          - do not warn if the library had to be created
  [f]          - truncate inserted file names
  [o]          - preserve original dates
  [s]          - create an archive index (cf. ranlib)
  [u]          - only replace files that are newer than current archive contents
  [v]          - be verbose
  d            - delete file(s) from the archive
  define new File Table entry
  m[ab]        - move file(s) in the archive
  p            - print file(s) found in the archive
  q[f]         - quick append file(s) to the archive
  r[ab][f][u]  - replace existing or insert new file(s) into the archive
  t            - display contents of archive
  x[o]         - extract file(s) from the archive
 %lu byte block:  (bytes into file)
 (bytes into file)
  Start of section headers:           (indirect string, offset: 0x%lx): %s (start == end) (start > end) <%d><%lx>: Abbrev Number: %lu (%s)
 Addr:  Addr: 0x Argument %s ignored At least one of the following switches must be given:
 Convert addresses into line number/file name pairs.
 Convert an object file into a NetWare Loadable Module
 Copies a binary file, possibly transforming it in the process
 DW_MACINFO_define - lineno : %d macro : %s
 DW_MACINFO_end_file
 DW_MACINFO_start_file - lineno: %d filenum: %d
 DW_MACINFO_undef - lineno : %d macro : %s
 DW_MACINFO_vendor_ext - constant : %d string : %s
 Display information about the contents of ELF format files
 Display information from object <file(s)>.
 Display printable strings in [file(s)] (stdin by default)
 Displays the sizes of sections inside binary files
 Generate an index to speed access to archives
 If no addresses are specified on the command line, they will be read from stdin
 If no input file(s) are specified, a.out is assumed
 Length  Number     %% of total  Coverage
 List symbols in [file(s)] (a.out by default).
 None
 Num: Name                           BoundTo     Flags
 Offset     Info    Type                Sym. Value  Symbol's Name
 Offset     Info    Type                Sym. Value  Symbol's Name + Addend
 Offset     Info    Type            Sym.Value  Sym. Name
 Offset     Info    Type            Sym.Value  Sym. Name + Addend
 Options are:
  -a --all               Equivalent to: -h -l -S -s -r -d -V -A -I
  -h --file-header       Display the ELF file header
  -l --program-headers   Display the program headers
     --segments          An alias for --program-headers
  -S --section-headers   Display the sections' header
     --sections          An alias for --section-headers
  -g --section-groups    Display the section groups
  -e --headers           Equivalent to: -h -l -S
  -s --syms              Display the symbol table
      --symbols          An alias for --syms
  -n --notes             Display the core notes (if present)
  -r --relocs            Display the relocations (if present)
  -u --unwind            Display the unwind info (if present)
  -d --dynamic           Display the dynamic section (if present)
  -V --version-info      Display the version sections (if present)
  -A --arch-specific     Display architecture specific information (if any).
  -D --use-dynamic       Use the dynamic section info when displaying symbols
  -x --hex-dump=<number> Dump the contents of section <number>
  -w[liaprmfFsoR] or
  --debug-dump[=line,=info,=abbrev,=pubnames,=aranges,=macro,=frames,=str,=loc,=Ranges]
                         Display the contents of DWARF2 debug sections
 Print a human readable interpretation of a SYSROFF object file
 Removes symbols and sections from files
 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)
            --target=<bfdname>        Set the binary file format
  -h        --help                    Display this information
  -v        --version                 Display the program's version

 The options are:
  -I --input-target=<bfdname>   Set the input binary file format
  -O --output-target=<bfdname>  Set the output binary file format
  -T --header-file=<file>       Read <file> for NLM header information
  -l --linker=<linker>          Use <linker> for any linking
  -d --debug                    Display on stderr the linker command line
  -h --help                     Display this information
  -v --version                  Display the program's version
 The options are:
  -a - --all                Scan the entire file, not just the data section
  -f --print-file-name      Print the name of the file before each string
  -n --bytes=[number]       Locate & print any NUL-terminated sequence of at
  -<number>                 least [number] characters (default 4).
  -t --radix={o,d,x}        Print the location of the string in base 8, 10 or 16
  -o                        An alias for --radix=o
  -T --target=<BFDNAME>     Specify the binary file format
  -e --encoding={s,S,b,l,B,L} Select character size and endianness:
                            s = 7-bit, S = 8-bit, {b,l} = 16-bit, {B,L} = 32-bit
  -h --help                 Display this information
  -v --version              Print the program's version number
 The options are:
  -a, --debug-syms       Display debugger-only symbols
  -A, --print-file-name  Print name of the input file before every symbol
  -B                     Same as --format=bsd
  -C, --demangle[=STYLE] Decode low-level symbol names into user-level names
                          The STYLE, if specified, can be `auto' (the default),
                          `gnu', `lucid', `arm', `hp', `edg', `gnu-v3', `java'
                          or `gnat'
      --no-demangle      Do not demangle low-level symbol names
  -D, --dynamic          Display dynamic symbols instead of normal symbols
      --defined-only     Display only defined symbols
  -e                     (ignored)
  -f, --format=FORMAT    Use the output format FORMAT.  FORMAT can be `bsd',
                           `sysv' or `posix'.  The default is `bsd'
  -g, --extern-only      Display only external symbols
  -l, --line-numbers     Use debugging information to find a filename and
                           line number for each symbol
  -n, --numeric-sort     Sort symbols numerically by address
  -o                     Same as -A
  -p, --no-sort          Do not sort the symbols
  -P, --portability      Same as --format=posix
  -r, --reverse-sort     Reverse the sense of the sort
  -S, --print-size       Print size of defined symbols
  -s, --print-armap      Include index for symbols from archive members
      --size-sort        Sort symbols by size
      --special-syms     Include special symbols in the output
      --synthetic        Display synthetic symbols as well
  -t, --radix=RADIX      Use RADIX for printing symbol values
      --target=BFDNAME   Specify the target object format as BFDNAME
  -u, --undefined-only   Display only undefined symbols
  -X 32_64               (ignored)
  -h, --help             Display this information
  -V, --version          Display this program's version number

 The options are:
  -b --target=<bfdname>  Set the binary file format
  -e --exe=<executable>  Set the input file name (default is a.out)
  -s --basenames         Strip directory names
  -f --functions         Show function names
  -C --demangle[=style]  Demangle function names
  -h --help              Display this information
  -v --version           Display the program's version

 The options are:
  -h --help                    Print this help message
  -V --version                 Print version information
 The options are:
  -h --help              Display this information
  -v --version           Display the program's version

 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
  -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
  -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
  -h --help        Display this information
  -v --version     Print the program's version number
 [without DW_AT_frame_base] and Line by %d to %d
 at offset 0x%lx contains %lu entries:
 command specific modifiers:
 commands:
 emulation options: 
 generic modifiers:
 program interpreter type: %x, namesize: %08lx, descsize: %08lx
#lines %d %ld: .bf without preceding function%ld: unexpected .ef
%lu	%s
%s

%s %s%c0x%s never used%s %s: %s%s both copied and removed%s exited with status %d%s is not a valid archive%s section has more comp units than .debug_info section
%s section needs a populated .debug_info section
%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 file header
%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: Warning: %s: bad archive file name
%s: bad number: %s%s: can not get addresses from archive%s: can't create debugging section: %s%s: can't find module file %s
%s: can't open file %s
%s: can't set debugging section contents: %s%s: cannot set time: %s%s: don't know how to write debugging information for %s%s: error copying private BFD data: %s%s: error in %s: %s%s: execution of %s failed: %s: failed to read archive header
%s: failed to read string table
%s: failed to seek to next archive header
%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 archive string table offset %lu
%s: invalid output format%s: invalid radix%s: no archive map to update%s: no open archive
%s: no open output archive
%s: no output archive specified yet
%s: no recognized debugging information%s: no resource section%s: no symbols%s: not a dynamic object%s: not enough binary data%s: printing debugging information failed%s: read of %lu returned %lu%s: read: %s%s: section `%s': error in %s: %s%s: skipping unexpected symbol type %s in relocation in section .rela%s
%s: supported architectures:%s: supported formats:%s: supported targets:%s: unexpected EOF%s: warning: %s: warning: shared libraries can not have uninitialized data%s: warning: unknown size for field `%s' in struct%s:%d: %s
%s:%d: Ignoring rubbish found on this line%s:%d: garbage found at end of line%s:%d: missing new symbol name%s:%d: premature end of file'%s''%s' is not an ordinary file
'%s': No such file'%s': No such file
(Unknown location op)(User defined location op)(declared as inline and inlined)(declared as inline but ignored)(inlined)(location list)(not inlined)2's complement, big endian2's complement, little endian: duplicate value
: expected to be a directory
: expected to be a leaf
<OS specific>: %d<corrupt string table index: %3ld><no .debug_str section><offset is too big><processor specific>: %d<string table index: %3ld><unknown: %x><unknown>: %d<unknown>: %lx<unknown>: %xAdded exports to output fileAdding exports to output fileAudit libraryAuxiliary libraryBCD float type not supportedBFD header file version %s
Bad sh_info in group section `%s'
Bad sh_link in group section `%s'
Bad stab: %s
C++ base class not definedC++ base class not found in containerC++ data member not found in containerC++ default values not in a functionC++ object has no fieldsC++ reference is not pointerC++ reference not foundC++ static virtual methodCORE (Core file)Can't add padding to %s: %sCan't disassemble for architecture %s
Can't fill gap after %s: %sCan't have LIBRARY and NAMECan't open .lib file: %sCan't open def file: %sCan't open file %s
Can't use supplied machine %sCannot interpret virtual addresses without program headers.
Cannot produce mcore-elf dll from archive file: %sConfiguration fileContents of %s section:

Contents of section %s:
Contents of the %s section:

Contents of the .debug_loc section:

Contents of the .debug_ranges section:

Contents of the .debug_str section:

Convert a COFF object file into a SYSROFF object file
Copyright 2005 Free Software Foundation, Inc.
Could not locate '%s'.  System error message: %s
Couldn't get demangled builtin type
Created lib fileCreating library file: %sCreating stub file: %sCurrent open archive is %s
DLLTOOL name    : %s
DLLTOOL options : %s
DRIVER name     : %s
DRIVER options  : %s
DW_FORM_data8 is unsupported when sizeof (unsigned long) != 8
DYN (Shared object file)Deleting temporary base file %sDeleting temporary def file %sDeleting temporary exp file %sDemangled name is not a function
Dependency audit libraryDisassembly of section %s:
Displaying the debug contents of section %s is not yet supported.
Don't know about relocations on this machine architecture
Done reading %sELF Header:
EXEC (Executable file)End of Sequence

Entry point Error, duplicate EXPORT with oridinals: %sExcluding symbol: %sExecution of %s failedFORMAT is one of rc, res, or coff, and is deduced from the file name
extension if not specified.  A single file name is an input file.
No input-file is stdin, default rc.  No output-file is stdout, default rc.
Failed to print demangled template
Failed to read in number of buckets
Failed to read in number of chains
File contains multiple dynamic string tables
File contains multiple dynamic symbol tables
File contains multiple symtab shndx tables
Filter libraryFlags:Generated exports fileGenerating export file: %sID directory entryID resourceID subdirectoryIEEE numeric overflow: 0xIEEE string length overflow: %u
IEEE unsupported complex type size %u
IEEE unsupported float type size %u
IEEE unsupported integer type size %u
Idx Name          Size      VMA               LMA               File off  AlgnIdx Name          Size      VMA       LMA       File off  AlgnIn archive %s:
Input file '%s' is not readable.
Internal error: DWARF version is not 2 or 3.
Internal error: Unknown machine type: %dInvalid option '-%c'
Invalid radix: %s
Keeping temporary base file %sKeeping temporary def file %sKeeping temporary exp file %sKey to Flags:
  W (write), A (alloc), X (execute), M (merge), S (strings)
  I (info), L (link order), G (group), x (unknown)
  O (extra OS processing required) o (OS specific), p (processor specific)
LIBRARY: %s base: %xLast stabs entries before error:
Library rpath: [%s]Library runpath: [%s]Library soname: [%s]Location lists in .debug_info section aren't in ascending order!
Location lists in .debug_loc section start at 0x%lx
Machine '%s' not supportedMultiple renames of section %sMust provide at least one of -o or --dllname optionsNAME: %s base: %xNONE (None)NT_ARCH (architecture)NT_AUXV (auxiliary vector)NT_FPREGS (floating point registers)NT_FPREGSET (floating point registers)NT_LWPSINFO (lwpsinfo_t structure)NT_LWPSTATUS (lwpstatus_t structure)NT_PRPSINFO (prpsinfo structure)NT_PRSTATUS (prstatus structure)NT_PRXFPREG (user_xfpregs structure)NT_PSINFO (psinfo structure)NT_PSTATUS (pstatus structure)NT_TASKSTRUCT (task structure)NT_VERSION (version)NT_WIN32PSTATUS (win32_pstatus structure)N_LBRAC not within function
Name                  Value           Class        Type         Size             Line  Section

Name                  Value   Class        Type         Size     Line  Section

Name index: %ld
Name: %s
NetBSD procinfo structureNo %s section present

No comp units in .debug_info section ?No entry %s in archive.
No filename following the -fo option.
No location lists in .debug_info section!
No mangling for "%s"
No member named `%s'
No note segments present in the core file.
No range lists in .debug_info section!
NoneNot an ELF file - it has the wrong magic bytes at the start
Not enough memory for a debug info array of %u entriesNot needed object: [%s]
Nothing to do.
OS Specific: (%x)Only -X 32_64 is supportedOnly DWARF 2 and 3 aranges are currently supported.
Only DWARF 2 and 3 pubnames are currently supported
Only DWARF version 2 and 3 line info is currently supported.
Only version 2 and 3 DWARF debug information is currently supported.
Opened temporary file: %sOperating System specific: %lxOption -I is deprecated for setting the input format, please use -J instead.
Out of memoryOut of memory
Out of memory allocating 0x%x bytes for %s
Out of memory allocating dump request table.PT_FIRSTMACH+%dPT_GETFPREGS (fpreg structure)PT_GETREGS (reg structure)Pascal file name not supportedPath components stripped from dllname, '%s'.Print a human readable interpretation of a SYSROFF object file
Processed def fileProcessed definitionsProcessing def file: %sProcessing definitionsProcessor Specific: %lxProcessor Specific: (%x)REL (Relocatable file)Range lists in .debug_info section aren't in ascending order!
Range lists in .debug_ranges section start at 0x%lx
Reading %s section of %s failed: %sReport bugs to %s
Report bugs to %s.
Scanning object file %sSection %d was not dumped because it does not exist!
Section headers are not available!
Sections:
Shared library: [%s]Skipping unexpected relocation type %s
Standalone AppSucking in info from %s section in %sSupported architectures:Supported targets:Syntax error in def file %s:%dThe line info appears to be corrupt - the section is too small
The section %s contains:
The section %s contains:

There are %d section headers, starting at offset 0x%lx:
There is a hole [0x%lx - 0x%lx] in .debug_loc section.
There is a hole [0x%lx - 0x%lx] in .debug_ranges section.
There is an overlap [0x%lx - 0x%lx] in .debug_loc section.
There is an overlap [0x%lx - 0x%lx] in .debug_ranges section.
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.  This program has absolutely no warranty.
Too many N_RBRACs
Tried `%s'
Tried file: %sType file number %d out of range
Type index number %d out of range
UNKNOWN: length %d
Unable to change endianness of input file(s)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 locate .debug_abbrev section!
Unable to locate entry %lu in the abbreviation table
Unable to open base-file: %sUnable to open object file: %sUnable to open temporary assembler file: %sUnable to read in 0x%x bytes of %s
Unable to read in dynamic data
Unable to recognise the format of the input file %sUnable to seek to 0x%x for %s
Unable to seek to end of file
Unable to seek to end of file!Unable to seek to start of dynamic informationUndefined N_EXCLUnexpected demangled varargs
Unexpected type in v3 arglist demangling
Unhandled data length: %d
Unknown AT value: %lxUnknown FORM value: %lxUnknown TAG value: %lxUnknown note type: (0x%08x)Unrecognized XCOFF type %d
Unrecognized debug option '%s'
Unrecognized debug section: %s
Unrecognized demangle component %d
Unrecognized demangled builtin type
Unrecognized form: %d
Usage %s <option(s)> <object-file(s)>
Usage: %s <option(s)> <file(s)>
Usage: %s <option(s)> in-file(s)
Usage: %s [emulation options] [-]{dmpqrstx}[abcfilNoPsSuvV] [member-name] [count] archive-file file...
Usage: %s [option(s)] [addr(s)]
Usage: %s [option(s)] [file(s)]
Usage: %s [option(s)] [in-file [out-file]]
Usage: %s [option(s)] [input-file] [output-file]
Usage: %s [option(s)] in-file
Usage: %s [option(s)] in-file [out-file]
Usage: %s [options] archive
Usage: readelf <option(s)> elf-file(s)
Using `%s'
Using file: %sUsing popen to read preprocessor output
Using temporary file `%s' to read preprocessor output
Using the --size-sort and --undefined-only options togetherValue for `N' must be positive.Virtual address 0x%lx not located in any PT_LOAD segment.
Warning, ignoring duplicate EXPORT %s %d,%dWarning: %s: %s
Warning: '%s' is not an ordinary fileWarning: Output file cannot represent architecture %sWarning: changing type size from %d to %d
Warning: could not locate '%s'.  reason: %sWarning: input target 'binary' required for binary architecture parameter.Warning: truncating gap-fill from 0x%s to 0x%x[<unknown>: 0x%x]`N' is only meaningful with the `x' and `d' options.`u' is only meaningful with the `r' option.acceleratoralignmentalternate machine code index must be positivearchitecture %s unknownarchitecture: %s, assuming that the pointer size is %d, from the last comp unit in .debug_info

bad ATN65 recordbad C++ field bit pos or sizebad dynamic symbolbad format for %sbad mangled name `%s'
bad misc recordbad type for C++ method functionbadly formed extended line op encountered!
bfd_coff_get_auxent failed: %sbfd_coff_get_syment failed: %sbfd_open failed open stub file: %sblocks left on stack at endbyte number must be less than interleavebyte number must be non-negativecan not determine type of file `%s'; use the -J optioncan't create section `%s': %scan'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 read resource sectioncan't redirect stdout: `%s': %scan't set BFD default target to `%s': %scannot delete %s: %scannot mkdir %s for archive copying (error: %s)cannot open '%s': %scannot open input file %scannot open: %s: %sconflictconflict list found without a dynamic symbol tableconst/volatile indicator missingcontrol data requires DIALOGEXcopy from %s(%s) to %s(%s)
corrupt note found at offset %x into core notes
could not determine the type of symbol number %ld
couldn't open symbol redefinition file %s (error: %s)creating %scursorcursor file `%s' does not contain cursor datacustom sectiondata entrydata size %lddebug section datadebug_abbrev section datadebug_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_loc section datadebug_make_undefined_type: unsupported kinddebug_name_type: no current filedebug_range section datadebug_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_str section datadebug_tag_type: extra tag attempteddebug_tag_type: no current filedebug_write_type: illegal type encountereddialog controldialog control datadialog control enddialog font point sizedialog headerdialogex controldialogex font informationdirectorydirectory entry namedynamic sectiondynamic string tabledynamic stringsexpression stack mismatchexpression stack overflowexpression stack underflowextracting information from .debug_info sectionfailed to open temporary head file: %sfailed to open temporary tail file: %sfilename required for COFF inputfilename required for COFF outputfixed version infoflagsflags 0x%08x:
fontdirfontdir device namefontdir face namefontdir headergroup cursorgroup cursor headergroup icongroup icon headerhas childrenhelp ID requires DIALOGEXhelp sectionicon file `%s' does not contain icon dataillegal option -- %cillegal type indexillegal variable indexinput and output files must be differentinput file named both on command line and with INPUTinterleave must be positiveinternal error -- this option not implementedinternal stat error on %sinvalid argument to --format: %sinvalid integer argument %sinvalid numberinvalid number %sinvalid option -f
invalid string lengthliblistliblist string tablemake .bss sectionmake .nlmsections sectionmake sectionmakingmenu headermenuex headermenuex offsetmenuitemmenuitem headermessage sectionmissing index typemissing required ASNmissing required ATN65module sectionmore than one dynamic segment
named directory entrynamed resourcenamed subdirectoryno .dynamic section in the dynamic segmentno argument types in mangled string
no childrenno entry %s in archive
no entry %s in archive %s!no export definition file provided.
Creating one, but that may not be what you wantno information for symbol number %ld
no input fileno input file specifiedno name for output fileno operation specifiedno resourcesno symbols
no type information for C++ method functionnonenotesnull terminated unicode stringnumeric overflowoptionsout of memory parsing relocsoverflow when adjusting relocation against %sparse_coff_type: Bad type code 0x%xprivate dataprivate header dataprogram headersreference parameter is not a pointerrelocsresource IDresource dataresource data sizeresource type unknownrpc sectionsection 0 in group section [%5u]
section [%5u] already in group section [%5u]
section datasection headersset .bss vmaset .data sizeset .nlmsection contentsset .nlmsections flagsset .nlmsections sizeset Address to 0x%lx
set section alignmentset section flagsset section sizeset start addressshared sectionsizeskipping unexpected symbol type %s in relocation in section .rela.%s
stab_int_type: bad size %ustack overflowstack underflowstat failed on bitmap file `%s': %sstat failed on file `%s': %sstat failed on font file `%s': %sstat returns negative size for %sstring tablestring_hash_lookup failed: %sstringtable stringstringtable string lengthstub section sizessubprocess got fatal signal %dsupport not compiled in for %ssupported flags: %ssymbol informationsymbolssymtab shndxthe .dynamic section is not contained within the dynamic segmentthe .dynamic section is not the first section in the dynamic segment.there are no sections to be copied!two different operation options specifiedunable to copy file '%s' reason: %sunable to open output file %sunable to rename '%s' reason: %sundefined C++ objectundefined C++ vtableundefined variable in ATNundefined variable in TYunexpected DIALOGEX version %dunexpected end of debugging informationunexpected fixed version info version %luunexpected fixed version information length %dunexpected fixed version signature %luunexpected group cursor type %dunexpected group icon type %dunexpected numberunexpected record typeunexpected string in C++ miscunexpected stringfileinfo value length %dunexpected varfileinfo value length %dunexpected version stringunexpected version string length %d != %d + %dunexpected version string length %d < %dunexpected version stringtable value length %dunexpected version type %dunexpected version value length %dunknown ATN typeunknown BB typeunknown C++ encoded nameunknown C++ visibilityunknown TY codeunknown alternate machine code, ignoredunknown builtin typeunknown demangling style `%s'unknown format type `%s'unknown sectionunknown virtual character for baseclassunknown visibility character for baseclassunknown visibility character for fieldunnamed $vb typeunrecognized --endian type `%s'unrecognized -E optionunrecognized C++ abbreviationunrecognized C++ default typeunrecognized C++ misc recordunrecognized C++ object overhead specunrecognized C++ object specunrecognized C++ reference typeunrecognized cross reference typeunrecognized section flag `%s'unrecognized: %-7lxunresolved PC relative reloc against %sunsupported ATN11unsupported ATN12unsupported C++ object typeunsupported IEEE expression operatorunsupported menu version %dunsupported or unknown DW_CFA_%d
unsupported qualifierunwind infounwind tableversion dataversion defversion def auxversion definition sectionversion length %d does not match resource length %luversion needversion need aux (2)version need aux (3)version need sectionversion string tableversion symbol dataversion var infoversion varfileinfovmawait: %swarning: CHECK procedure %s not definedwarning: EXIT procedure %s not definedwarning: FULLMAP is not supported; try ld -Mwarning: No version number givenwarning: START procedure %s not definedwarning: could not locate '%s'.  System error message: %swarning: input and output formats are not compatiblewarning: symbol %s imported but not in import listwill produce no output, since undefined symbols have no size.writing stubProject-Id-Version: binutils 2.15.96
Report-Msgid-Bugs-To: 
POT-Creation-Date: 2005-03-03 21:03+1030
PO-Revision-Date: 2005-03-13 09:19+0200
Last-Translator: Deniz Akkus Kanca <deniz@arayan.com>
Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>
X-Bugs: Report translation errors to the Language-Team address.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: KBabel 1.9.1


%s'de semboller:



%s[%s]'de semboller:



%s'de tanımlanmamış semboller:



%s[%s]'de tanımlanmamış semboller:


      [Yazılım yorumlayıcısı isteniyor: %s]
    Adres  Uzunluk

    Basamak	Ä°sim

  Yazılım başlıkları başlangıcı:          
 Satır Numarası Deyimleri:

 Opkodlar:

 Bölümden parçaya eşleşme:

 Dizin Tablosu boş.

 Dizin Tablosu:

 Dosya Adı Tablosu boş.

 Dosya Adı Tablosu:

 Aşağıdaki seçenekler isteğe bağlı:

%s:     %s dosya biçemi

Göreli konum 0x%2$lx'da bulunan `%1$s' yer değiştirme bölümü %3$ld bayt içeriyor:

<%s>


Arşiv endeksi:

%s bölümünün üretici dökümü

Geri alma bilgi bölümü bulunamadı 
%s bölümünün hata ayıklama içeriği dökümü:


Göreli konum 0x%lx'de yer alan dinamik bilgi parçası %d girdi içeriyor:

Göreli konum 0x%lx'deki dinamik alt bölüm %u girdi içeriyor:

Dinamik sembolleri göstermek için dinamik sembol bilgisi mevcut değil.

Elf dosya tipi: %s

Dosya: %s

'%s' bölümünün onaltılık dökümü:

Küme liste boyu (toplam %lu küme) geçmiş grafiği:

Kitaplık liste bölümü '%s', %lu girdi içeriyor:

Bu dosyada sürüm bilgisi yok.

0x%08lx göreli konumunda, 0x%08lx uzunluğunda notlar:

Yazılım Başlıkları:

Yer değiştirme bölümü 
'%s' bölümü %d girdi içeriyor:

'%s' bölümünde dökülecek veri yok.

'%s' bölümünde hata ayıklama bilgisi yok.

'.conflict' alt bölümü %lu girdi içeriyor:

Bölüm Başlığı:

Bölüm Başlıkları:

'%s' sembol tablosu %lu girdi içeriyor:

İmaj için sembol tablosu:

.debug_loc bölümü boş.

.debug_ranges alt bölümü boş.

.debug_str bölümü boş.

%d adet yazılım başlığı var, göreli konumdan başlanıyor
Bu dosyada dinamik yer değiştirmeler yok.

Bu dosyada yazılım başlığı yok.

Bu dosyada yer değiştirmeler yok.

Bu dosyada alt bölüm grupları yok.

Bu dosyada bölüm yok.

Bu dosyada geri alma bölümü yok.

Bu dosyada dinamik alt bölüm yok.

Geri alma bölümü 
Sürüm tanımı bölümü '%s' %ld girdi içeriyor:

Sürüm gereksinimleri bölümü '%s' %ld girdi içeriyor:

Sürüm sembolleri bölümü '%s' %d girdi içeriyor:

başlangıç adresi 0x                 DosyaBoyu          BellekBoyu          Seç    Hiza
        tanımlı <makine>: arm[_interwork], i386, mcore[-elf]{-le|-be}, ppc, thumb
       %s -M [<mri-betiği]
       Boy               EntBoy           Seç    Bağ   Bilgi Hiza
      --exclude-symbols <liste>  <liste>'yi ihraç etmez
      --export-all-symbols   Bütün sembolleri .def'e ihraç eder
      --no-default-excludes  Öntanımlı ihraç edilmeyecek sembol listesini boşaltır
      --no-export-all-symbols  Yalnızca listelenmiş sembolleri ihraç eder
      --yydebug                 Tarayıcıda hata ayıklamayı etkinleştirir
    %-18s %s
    %8.8lx <Liste sonu>
    Görece             Bilgi           Tür                Sembol Değeri    Sembol Adı
    Görece             Bilgi           Tür                Sembol Değeri    Sembol Adı + Sonek
    Görece   Başlan.  Son
    Görece   Başlan.  Son      İfade
   %d	   %ld      %s    [%s]
   --add-indirect         Dll yönlendirmelerini ihraç dosyasına ekler.
   --add-stdcall-alias    Rumuzları @<n> olmaksızın ekler
   --as <isim>            Üretici olarak <isim>'i kullanır
   --base-file <temel_dosya> Bağlayıcı tarafından oluşturulan temel dosyayı okur
   --def <tanım_dosyası>        Girdi .def dosyası adı
   --dllname <isim>       Çıktı kitaplığına konulacak girdi dll adı.
   --dlltool-name <dll_aracı>  "dlltool"a öntanımlı
   --driver-flags <seçenekler>  Öntanımlı ld seçeneklerinin yerine geçer
   --driver-name <sürücü>  "gcc"ye öntanımlı
   --dry-run              Çalıştırılması gerekenleri gösterir
   --entry <giriş>        Alternatif DLL giriş noktası belirtir
   --exclude-symbols <liste> <liste>deki sembolleri .def'e ihraç etmez
   --export-all-symbols     Bütün sembolleri .def'e ihraç eder
   --image-base <temel>    Ä°maj temel adresini belirtir
   --implib <çıktı_adı>     --output-lib ile eşanlamlı
   --machine <makine>
   --mno-cygwin           Mingw DLL oluşturur
   --no-default-excludes    Dışlanacak sembol öntanımlarını boşaltır
   --no-export-all-symbols  Yalnızca .drectve sembollerini ihraç eder
   --no-idata4           idata$4 bölümünü oluşturmaz
   --no-idata5           idata$5 bölümünü oluşturmaz
   --nodelete             Geçici dosyaları tutar.
   --output-def <tanım_dosyası> Çıktı .def dosyasının adı
   --output-exp <çıktı_adı> İhraç dosyası oluşturur.
   --output-lib <çıktı_adı> Girdi kitaplığı oluşturur.
   --quiet, -q            Sessiz çalışır
   --target <makine>      hedef makine, i386-cygwin32 veya i386-mingw32
   --verbose, -v          Açıklamalı
   --version              dllwrap sürümünü yazdırır
   -A --add-stdcall-alias    Rumuzları @<n> içermeksizin ekler.
   -C --compat-implib        Geçmişe uyumlu ithal kitaplığı oluşturur.
   -D --dllname <isim>       Arayüz kitaplığına eklenecek girdi dll adı.
   -F --linker-flags <seçenekler>  <seçenekler>i bağlayıcıya geçirir.
   -L --linker <isim>        Bağlayıcı olarak <isim> kullanır.
   -M --mcore-elf <çıktı_adı>  mcore-elf nesne dosyalarını <çıktı_adı>'na işler.
   -S --as <isim>            Üretici olarak <isim> kullanır.
   -U                     .lib'e alt-tire ekler
   -U --add-underscore       Arayüz kitaplığındaki sembollere alt-tire ekler.
   -V --version              Sürüm bilgilerini gösterir.
   -a --add-indirect         İhraç dosyasına dll yönlendirmelerini ekler.
   -b --base-file <temel_dosyası> Bağlayıcının oluşturduğu temel dosyayı okur.
   -c --no-idata5            idata$5 bölümü oluşturmaz.
   -d --input-def <tanım_dosyası>  Okunacak .def dosyasının adı.
   -e --output-exp <çıktıadı> İhraç dosyası oluşturur.
   -f --as-flags <seçenekler>     Üreticiye <seçenekler>i geçirir.
   -h --help                 Bu yardımı gösterir.
   -k                     @<n>'i ihraç edilmiş isimlerden çıkartır
   -k --kill-at              İhraç edilmiş isimlerden @<n>'da öldürür.
   -l --output-lib <çıktıadı> Arayüz kitaplığı oluşturur.
   -m --machine <makine>    <makine> için DLL olarak oluştur.  [öntanımlı: %s]
   -n --no-delete            Geçici dosyaları tutar (daha da koruyucu olması için tekrarlanabilir).
   -p --ext-prefix-alias <önek>   Rumuzları <önek> öneki ile ekler.
   -t --temp-prefix <önek>   <önek> kullanılarak geçici dosya ismi oluşturur.
   -v --verbose              Açıklama verir.
   -x --no-idata4            idata$4 bölümü oluşturmaz.
   -z --output-def <tanım_dosyası> Oluşturulacak .def dosyasının adı.
   0 (*yerel*)       1 (*evrensel*)      Kısaltma Basamağı: %ld
   Uzunluk:        %ld
   Num:    Değer          Boy  Tip     Bağ    Gör      Ndx İsim
   Num:    Değer  Boy  Tip     Bağ    Gör      Ndx İsim
   Ä°mleyici Boyu:  %d
   Sürüm:       %d
   [Ä°ndeks]   Ä°sim
  %#06x:   İsim endeksi: %lx  %#06x:   İsim: %s  %#06x: Üst %d, isim endeksi: %ld
  %#06x: Üst %d: %s
  %#06x: Sür: %d  Seçenek: %s  %#06x: Sürüm: %d  %d	  %s
  (Ä°mleyici boyu:              %u)
  (Bilinmeyen inline öznitelik değeri: %lx)  -I --histogram         Küme listesi uzunluklarının geçmiş grafiğini gösterir
  -W --wide              Çıktı genişliğinin 80 karakteri geçmesine izin verir
  -H --help              Bu bilgiyi gösterir
  -v --version           readelf'in sürüm no'sunu gösterir
  -I --input-target <bfd_adı>      Girdi dosyasının <bfd_adı> biçeminde
                                   olduğunu varsayar
  -O --output-target <bfd_adı>     Çıktı dosyasını <bfd_adı> biçeminde
                                   oluşturur
  -B --binary-architecture <plat>  Girdi ikilik biçeminde olduğu zaman çıktı
                                   dosyasının platformunu belirler.
  -F --target <bfd_adı>            Hem girdi, hem de çıktı biçemini <bfd_adı>
                                   olarak atar
     --debugging                   Mümkün olduğu kadar hata ayıklama
                                   bilgisini dönüştürür
  -p --preserve-dates              Çıktıya değişim/erişim zaman damgalarını
                                   kopyalar
  -j --only-section <isim>         Çıktıya yalnızca <isim> bölümünü kopyalar
     --add-gnu-debuglink=<dosya>....gnu_debuglink bölümünü <dosya>'ya ekler
  -R --remove-section <isim>       Çıktıdan <isim> bölümünü çıkarır
  -S --strip-all                   Bütün sembol ve yer değiştirme bilgisini
                                   siler
  -g --strip-debug                 Bütün hata ayıklama sembollerini siler
     --strip-unneeded              Yer değiştirmeler için gerekmeyen bütün
                                   sembolleri siler
  -N --strip-symbol <isim>         <isim> sembolünü kopyalamaz
     --strip-unneeded-symbol <isim>
                                   <isim> sembolünü, yer değiştirme için
                                   gerekmiyorsa kopyalamaz
     --only-keep-debug             Hata ayıklama bilgisi dışında bütün
                                   bilgileri siler
  -K --keep-symbol <isim>          Yalnızca <isim> sembolünü kopyalar
  -L --localize-symbol <isim>      <isim> sembolünün yerel olarak
                                   tanımlanmasını sağlar
  -G --keep-global-symbol <isim>   <isim> haricindeki bütün sembolleri
                                   yerelleştirir.
  -W --weaken-symbol <isim>        <isim> sembolünün zayıf olarak
                                   tanımlanmasını sağlar
     --weaken                      Bütün evrensel sembollerin zayıf olarak
                                   tanımlanmasını sağlar
  -w --wildcard                    Sembol karşılaştırmada şablon kullanımına
                                   izin verir
  -x --discard-all                 Evrensel olmayan bütün sembolleri siler
  -X --discard-locals              Derleyici tarafından oluşturulan bütün
                                   sembolleri siler
  -i --interleave <sayı>           Her <sayı> bayttan yalnız birini kopyalar
  -b --byte <sayı>                 Her serpiştirilmiş bloktan <sayı> numaralı
                                   baytı seçer
     --gap-fill <değer>            Bölümler arası boşlukları <değer> ile
                                   doldurur
     --pad-to <adres>              Son bölümü <adres>e kadar boşlukla doldurur
     --set-start <adres>           Başlangıç adresini <adres> olarak belirtir
    {--change-start|--adjust-start} <basamak>
                                   Başlangıç adresine <basamak> ekler
    {--change-addresses|--adjust-vma} <basamak>
                                   LMA, VMA ve başlangıç adreslerine <basamak>
                                   ekler
    {--change-section-address|--adjust-section-vma} <isim>{=|+|-}<değer>
                                   <isim> bölümünün LMA ve VMA'sını <değer>
                                   kadar değiştirir
     --change-section-lma <isim>{=|+|-}<değer>
                                   <isim> bölümünün LMA'sını <değer> kadar
                                   değiştirir
     --change-section-vma <isim>{=|+|-}<değer>
                                   <isim> bölümünün VMA'sını <değer> kadar
                                   değiştirir
    {--[no-]change-warnings|--[no-]adjust-warnings}
                                   Eğer isimli bir bölüm yok ise uyarı verir
     --set-section-flags <isim>=<seçenekler>
                                   <isim> bölümünün özniteliklerini
                                   <seçenekler>e ayarlar
     --add-section <isim>=<dosya>  <dosya> içinde bulunan <isim> bölümünü
                                   çıktıya ekler
     --rename-section <eski>=<yeni>[,<bayrak>] <eski> bölümünü <yeni> olarak
                                   yeniden adlandırır
     --change-leading-char         Çıktı biçeminin başlangıç karakter tipini
                                   değiştirir
     --remove-leading-char         Evrensel sembollerden başlangıç
                                   karakterini çıkarır
     --redefine-sym <eski>=<yeni>  <eski> isimli sembolü <yeni> isimli olarak
                                   yeniden tanımlar
     --redefine-syms <dosya>       <dosya> içinde tanımlı bütün sembol
                                   çiftleri için --redefine-sym uygular
     --srec-len <sayı>             Oluşturulan S kayıtlarının boyutunu
                                   kısıtlar
     --srec-forceS3                Oluşturulan S kayıtları tipini S3 olarak
                                   kısıtlar
     --strip-symbols <dosya>       <dosya>daki bütün semboller için -N uygular
     --strip-unneeded-symbols <dosya>
                                   <dosya>daki bütün semboller için
                                   --strip-unneeded-symbol uygular
     --keep-symbols <dosya>        <dosya>daki bütün semboller için -K uygular
     --localize-symbols <dosya>    <dosya>daki bütün semboller için -L uygular
     --keep-global-symbols <dosya> <dosya>daki bütün semboller için -G uygular
     --weaken-symbols <dosya>      <dosya>daki bütün semboller için -W uygular
     --alt-machine-code <indeks>   Çıktı için alternatif makine kodu kullanır
     --writable-text               Çıktı metnini yazılabilir olarak imler
     --readonly-text               Çıktı metnini salt-okunur olarak imler
     --pure                        Çıktı metnini istek üzerine sayfalanan
                                   olarak imler
     --impure                      Çıktı metnini saf değil olarak imler
     --prefix-symbols <önek>       Her sembol adına <önek> ekler
     --prefix-sections <önek>      Her bölüm adına <önek> ekler
     --prefix-alloc-sections <önek>
                                   Her ayrılabilir bölüm adına <önek> ekler
  -v --verbose                     Değiştirilen tüm nesne dosyalarını listeler
  -V --version                     Bu yazılımın sürüm bilgilerini gösterir
  -h --help                        Bu çıktıyı gösterir
     --info                        Desteklenen nesne biçemlerini ve mimarileri
                                   gösterir
  -I --input-target=<bfd_adı>      Girdi dosyasının <bfd_adı> biçeminde 
                                   olduğunu varsayar
  -O --output-target=<bfd_adı>     Çıktı dosyasını <bfd_adı> biçeminde 
                                   oluşturur
  -F --target=<bfd_adı>            Girdi ve çıktı biçemlerini <bfd_adı> olarak
                                   atar
  -p --preserve-dates              Çıktıya değişim/erişim zaman damgalarını 
                                   kopyalar
  -R --remove-section=<isim>       Çıktıdan <isim> bölümünü çıkarır
  -s --strip-all                   Bütün sembol ve yer değiştirme bilgisini
                                   siler
  -g -S -d --strip-debug           Bütün hata ayıklama sembollerini ve
                                   bölümlerini siler
     --strip-unneeded              Yer değiştirmeler için gerekmeyen bütün
                                   sembolleri siler
     --only-keep-debug             Hata ayıklama için gerekmeyen bütün
                                   sembolleri siler
  -N --strip-symbol=<isim>         <isim> sembolünü kopyalamaz
  -K --keep-symbol=<isim>          Yalnızca <isim> sembolünü kopyalar
  -w --wildcard                    Sembol karşılaştırmada şablon kullanımına
                                   izin verir
  -x --discard-all                 Evrensel olmayan bütün sembolleri siler
  -X --discard-locals              Derleyici tarafından oluşturulan bütün
                                   sembolleri siler
  -v --verbose                     Değiştirilen tüm nesne dosyalarını listeler
  -V --version                     Bu yazılımın sürüm bilgilerini gösterir
  -h --help                        Bu çıktıyı gösterir
     --info                        Desteklenen nesne biçemlerini ve
                                   mimarileri gösterir
  -o <dosya>                       Sembolleri silinmiş çıktıyı <dosya>ya 
                                   yerleştirir
  -a, --archive-headers    Arşiv başlık bilgilerini gösterir
  -f, --file-headers       Dosya başlık bilgilerini gösterir
  -p, --private-headers    Nesne biçemine özgü dosya başlık bilgilerini gösterir
  -h, --[section-]headers  Bölüm başlıklarını gösterir
  -x, --all-headers        Bütün başlıkları gösterir
  -d, --disassemble        Uygulama bölümlerinin üretici içeriğini gösterir
  -D, --disassemble-all    Bütün bölümlerin üretici içeriklerini gösterir
  -S, --source             Üretici içerikleri ile kaynak kodunu bir arada gösterir
  -s, --full-contents      İstenen bütün bölümlerin bütün içeriğini gösterir
  -g, --debugging          Nesne dosyasındaki hata ayıklama bilgilerini gösterir
  -e, --debugging-tags     Hata ayıklama bilgilerini ctags tarzında gösterir
  -G, --stabs              Dosyadaki STABS bilgisini (ham hali ile) gösterir
  -t, --syms               Sembol tablolarının içeriğini gösterir
  -T, --dynamic-syms       Dinamik sembol tablolarının içeriğini gösterir
  -r, --reloc              Dosyadaki yer değiştirme girdilerini gösterir
  -R, --dynamic-reloc      Dosyadaki dinamik yer değiştirme bilgilerini gösterir
  -v, --version            Bu yazılımın sürüm bilgilerini gösterir
  -i, --info               Desteklenen biçem ve mimarileri gösterir
  -H, --help               Bu bilgiyi gösterir
  -b, --target=BFD_ADI           Hedef nesne biçemini BFD_ADI olarak belirtir
  -m, --architecture=MAKÄ°NE      Hedef mimariyi MAKÄ°NE olarak belirtir
  -j, --section=İSİM             Yalnızca İSİM bölümü için bilgi gösterir
  -M, --disassembler-options=SEÇ Karşıt-çeviriciye metin SEÇeneklerini geçirir
  -EB --endian=big               Karşıt-çevirim esnasında big-endian biçemini
                                 varsayar
  -EL --endian=little            Karşıt-çevirim esnasında little-endian
                                 biçemini varsayar
      --file-start-context       Dosyanın başlangıcından itibaren bağlamı
                                 içerir (-S ile)
  -I, --include=DÄ°Z              Kaynak dosya arama listesine DÄ°Z'i ekler
  -l, --line-numbers             Çıktıda dosya isimleri ve satır numaraları
                                 gösterir
  -C, --demangle[=TARZ]          Karıştırılmış/işlenmiş sembol isimlerini
                                 çözümler.
                                 Tarz, eğer belirtilmişse, `auto', 'gnu',
                                 'lucid', 'arm', 'hp', 'edg', 'gnu-v3', 
                                 'java' veya 'gnat' olabilir
  -w, --wide                     Çıktıyı 80 sütundan daha geniş olarak biçemler
  -z, --disassemble-zeroes       Karşıt-çevirim esnasında sıfır bloklarını 
                                 atlamaz
      --start-address=ADRES      Yalnızca adresi >= ADRES olan verileri işler
      --stop-address=ADRES       Yalnızca adresi <= ADRES olan verileri işler
      --prefix-addresses         Tam adresi karşıt çevirim ile birlikte
                                 yazdırır
      --[no-]show-raw-insn       Onaltılık bilgi ile sembolik karşıt-çevrimi
                                 birlikte yazdırır
      --adjust-vma=BASAMAK       Bütün gösterilen bölüm adreslerine BASAMAK 
                                 ekler
      --special-syms             Sembol yığıt çıktılarına özel sembolleri de
                                 ekler

  -i --instruction-dump=<sayı>
                            <sayı> bölümünün içeriğini karşıt-çevirir
  -r                             rc ile uyumluluk için yok sayılır
  -h --help                      Bu yardımı gösterir
  -V --version                   Sürüm bilgisini gösterir
  ABI Sürümü:                       %d
  Adres: 0x  Satırı %2$d'ye kadar %1$d ilerletir
  PC'yi %2$lx'ye kadar, %1$d ilerletir
  PC'yi 0x%2$lx'e kadar %1$d ilerletir
  PC'yi 0x%2$lx'e kadar %1$d ilerletir
  Sınıf:                             %s
  Sayı: %d
  Derleme Birimi @ %lx:
  Kopyalar
  DWARF Sürümü:                %d
  Veri:                              %s
  Girdi	Dizin	Zaman	Boy	Ä°sim
  Girdi noktası adresi:                 Ek opkod %d:   Dosya: %lx  Dosya: %s  Seçenekler  Seçenekler:                             0x%lx%s
  Seçenekler: %s  Sürüm: %d
  Genel seçenekler: 
  Endeks: %d  Sayı: %d    'is_stmt' başlangıç değeri:  %d
  Uzunluk:                             %ld
  Uzunluk:                     %ld
  Uzunluk:                   %ld
  Satır Temeli:                   %d
  Satır Aralığı:                  %d
  Makine:                           %s
  Sihir:     Minimum İşlem Uzunluğu:    %d
  Öykünüme özgü seçenekler yok
  Küme Num:   Değer          Boy    Tip    Bağ  Gör      Ndx İsim
  Küme Num:   Değer  Boy    Tip    Bağ  Gör      Ndx İsim
  Num:    Endeks      Değer  İsim  Sayı TAG
  Yazılım başlık sayısı:         %ld
  Bölüm başlıkları sayısı:         %ld  OS/ABI:                            %s
  Görece          Bilgi          Tür            Sembol Değeri Sembol Adı
  Görece          Bilgi          Tür            Sembol Değeri Sembol Adı + Sonekleme
.debug_info bölümünün içine göreli konum:   %ld
  .debug_info'nun içine göreli konum:  %lx
  Basamak: %#08lx  Bölüme bağ: %ld (%s)
  Basamak: %#08lx  Bağ: %lx (%s)
  %d opkodunun %d seçeneği var
  Opkod Temeli:                 %d
  %s için seçenekler:
  DLLTOOL'a geçirilen seçenekler:
  Sahip		Veri Boyu	Açıklama
  Pg  Ä°mleyici Boyu:            %d
  Giriş Uzunluğu:              %d
  Kalanlar dil sürücüsüne değiştirilmeksizin geçirilir
  Bölüm başlığı dizge tablo endeksi: %ld  Parça Bölümleri...
  Parça Boyu:             %d
  Dosya Adını, Dosya İsim Tablosunda, %d numaralı girdi olarak atar
  ISA'yı %d olarak atar
  Temel bloğu atar
  Sütunu %d olarak atar
  Epilogue_begin'i doğru (true) olarak atar
  is_stmt'i %d olarak atar
  Prologue_end'i doğru (true) olarak atar
.debug_info bölümünde alan büyüklüğü: %ld
  Yazılım başlık boyu:           %ld (bayt)
  Bölüm başlık boyu:           %ld (bayt)
  Bu başlığın boyu:               %ld (bayt)
  Özel opkod %1$d: Adresi 0x%3$lx'e kadar %2$d ilerletir  Etiket     Tip                          İsim/Değer
  Tip            Basamak            SanalAdres         GerçekAdres
  Tür            Görece   SanalAdr           GerçAdrs          DosyaBoy  BelBoy   Seç Hiza
  Tip            Basamak  SanalAdr   GerçAdrs   DosyaBoyBelBoy  Seç Hiza
  Tip:                              %s
  Bilinmeyen %d opkodu ve işlenenleri:   Sürüm:                               %d
  Sürüm:                           %d %s
  Sürüm:                           0x%lx
  Sürüm:                  %d
  [-X32]       - 64 bitlik nesneleri yok sayar
  [-X32_64]    - 32 ve 64 bitlik nesneleri kabul eder
  [-X64]       - 32 bitlik nesneleri yok sayar
  [-g]         - 32 bitlik küçük arşiv
  [N]          - adın [sayı] numaralı geçişini kullanır
  [Nr] Ä°sim              Tip              Adres             Basamak
  [Nr] İsim              Tip             Adres    Bas    Boy    ES Seç Lk Inf Al
  [Nr] İsim              Tür             Adres           Görece  Boy    ES Seç Lk Inf Al
  [P]          - eşleştirmede tam yol adlarını kullanır
  [S]          - sembol tablosu oluşturmaz
  [V]          - sürüm numarasını gösterir
  [a]          - dosyaları [üye-adı]'ndan sonra ekler
  [b]          - dosya(ları) [üye-adı]'ndan önce ekler ([i] ile aynı)
  [c]          - eğer kitaplık oluşturulmak zorunda kalınırsa, uyarı vermez
  [f]          - eklenen dosya adlarını kırpar
  [o]          - orjinal zaman damgalarını korur
  [s]          - arşiv endeksi oluşturur (ranlib)
  [u]          - yalnızca şimdiki arşiv içeriğinden daha yeni olan dosyaları değiştirir
  [v]          - açıklama verir
  d            - arşivden dosya(lar) siler
  yeni Dosya Tablosu girdisi tanımlar
  m[ab]        - arşivde dosya(ları) taşır
  p            - arşivde bulunan dosya(ları) yazdırır
  q[f]         - dosya(ları) arşivin sonuna çabucak ekler
  r[ab][f][u]  - arşivde olan bir dosyanın yerine yenisi koyar veya arşive yeni dosya(lar) ekler
  t            - arşivin içeriğini gösterir
  x[o]         - arşivdeki dosya(ları) açar
 %lu baytlık blok:  (bayt dosya içinde)
 (bayt dosya içinde)
  Bölüm başlıkları başlangıcı:           (dolaylı dizge, görece: 0x%lx): %s (başlangıç == son) (başlangıç > son) <%d><%lx>: Kısaltma Numarası: %lu (%s)
 Adres:  Adres: 0x %s argümanı yoksayıldı En azından aşağıdaki seçeneklerin biri verilmelidir:
 adresleri satır numarası/dosya adı çiftlerine çevirir.
 Bir nesne dosyasını NetWare Yüklenebilir Modül haline getirir
 İkilik dosyayı, muhtemelen değiştirerek kopyalar
 DW_MACINFO_define - satır no : %d makro : %s
 DW_MACINFO_end_file
 DW_MACINFO_start_file - satır no: %d dosya no: %d
 DW_MACINFO_undef - satır no : %d makro : %s
 DW_MACINFO_vendor_ext - sabit : %d dizge : %s
 ELF biçem dosyalarının içeriği hakkında bilgi gösterir
Nesne <dosya>'sından bilgi gösterir.
 [dosya(lar)]daki yazdırılabilir dizgeleri gösterir (öntanımlı standart girdi)
 İkilik dosyalar içinde bölüm boylarını gösterir
 Arşiv erişimini hızlandırmak için indeks üretir
 Eğer komut satırında adres belirtilmezse, standart girdiden okunur
 Eğer girdi dosyası belirtilmezse, a.out varsayılır
 Length  Number     %% of total  Coverage
 Boy     Numara     toplam kapsamın %%
 [dosya(lar)]daki sembolleri listeler (öntanımlı a.out).
 Hiçbiri
 Num: İsim                           Bağlı       Seçenekler
 Görece     Bilgi   Tür             Sembol Değeri   Sembol Adı
 Görece     Bilgi   Tür             Sembol Değeri   Sembol Adı + Sonekleme
 Görece     Bilgi   Tür             Sembol Değeri   Sembol Adı
 Görece     Bilgi   Tür             Sembol Değeri   Sembol Adı + Sonekleme
 Seçenekler:
  -a --all               -h -l -S -s -r -d -V -A -I ile aynı
  -h --file-header       ELF dosya başlığını gösterir
  -l --program-headers   Yazılım başlıklarını gösterir
     --segments          --program-headers ile aynı
  -S --section-headers   Bölüm başlıklarını gösterir
     --sections          --section-headers ile aynı
  -g --section-groups    Bölüm gruplarını gösterir
  -e --headers           -h -l -S ile aynı
  -s --syms              Sembol tablosunu gösterir
      --symbols          --syms ile aynı
  -n --notes             Eğer varsa, 'core' açıklamalarını gösterir
  -r --relocs            Eğer varsa, yerdeğişimleri gösterir
  -u --unwind            Eğer varsa, geri dönüşümleri gösterir
  -d --dynamic           Eğer varsa, dinamik bölümleri gösterir
  -V --version-info      Eğer varsa, sürüm bölümlerini gösterir
  -A --arch-specific     Eğer varsa, platforma özgü bilgileri gösterir
  -D --use-dynamic       Sembolleri gösterirken dinamik bölümleri kullanır
  -x --hex-dump=<sayı>   <sayı> no'lu bölümün içeriğini gösterir
  -w[liaprmfFsoR] veya
  --debug-dump[=line,=info,=abbrev,=pubnames,=aranges,=macro,=frames,=str,=loc,=Ranges]
                         DWARF2 hata ayıklama bölümlerinin içeriğini gösterir
 SYSROFF nesne dosyasını insan tarafından okunabilir biçemde yazdırır
 Dosyalardan sembol ve bölümleri çıkarır
  Seçenekler:
 Seçenekler:
  -A|-B     --format={sysv|berkeley}  Çıktı tarzını belirler (%s öntanımlı)
  -o|-d|-x  --radix={8|10|16}         Rakamları sekizlik, onluk, onaltılık
                                      olarak gösterir
  -t        --totals                  Toplam boyları gösterir (yalnız
                                      Berkeley'de)
            --target=<bfdadı>         İkilik dosya biçemini belirler
  -h        --help                    Bu bilgileri gösterir
  -v        --version                 Sürüm bilgilerini gösterir

 Seçenekler:
  -I --input-target=<bfdadı >   Girdi ikilik dosya biçemini belirler
  -O --output-target=<bfdadı>   Çıktı ikilik dosya biçemini belirler
  -T --header-file=<dosya>      NLM başlık bilgilerini <dosya>dan okur
  -l --linker=<bağlayıcı>       Bağlama işlemi için <bağlayıcı>yı kullanır
  -d --debug                    Standart hatada bağlayıcı komut satırını gösterir
  -h --help                     Bu bilgiyi gösterir
  -v --version                  Program sürüm no'sunu gösterir
 Seçenekler:
  -a - --all                Yalnız veri bölümünü değil, bütün dosyayı tarar
  -f --print-file-name      Her dizgeden önce dosya adını yazdırır
  -n --bytes=[sayı]         En az [sayı] karakterde ve NUL ile sonlanmış olan
  -<sayı>                   bütün dizgeleri yazdırır (öntanımlı 4)
  -t --radix={o,d,x}        Dizgenin yerini 8'lik, 10'luk veya 16'lık düzende
                            yazdırır
  -o                        --radix=o ile aynı
  -T --target=<BFDADI>      İkilik dosya biçemini belirtir
  -e --encoding={s,S,b,l,B,L} Karakter boyu ve sonlamayı seçtirir:
                            s = 7-bit, S = 8-bit, {b,l} = 16-bit, {B,L} = 32-bit
  -h --help                 Bu bilgiyi gösterir
  -v --version              Yazılımın sürüm no'sunu gösterir
 Seçenekler:
  -a, --debug-syms       Yalnızca hata ayıklamaya dair sembolleri gösterir
  -A, --print-file-name  Her sembolden önce girdi dosyasının adını yazdırır
  -B                     --format=bsd ile aynı
  -C, --demangle[=TARZ]  Alt düzey sembol adlarını kullanıcı seviyesinde adlara çevirir
                         TARZ, eğer belirtilirse, 'auto' (öntanımlı),
                         `gnu', 'lucid', 'arm', 'hp', 'edg' 'gnu-v3',
                         'java' veya 'gnat' olabilir
      --no-demangle      Alt düzey sembol adlarını çevirmez
  -D, --dynamic          Normal semboller yerine dinamik sembolleri gösterir
      --defined-only     Yalnızca tanımlanmış sembolleri gösterir
  -e                     (yoksayılır)
  -f, --format=BİÇEM     Çıktı biçemi için BİÇEM'i kullanır.
                         BİÇEM, 'bsd' (öntanımlı), `sysv' veya
                         `posix' olabilir
  -g, --extern-only      Yalnızca harici sembolleri gösterir
  -l, --line-numbers     Hata ayıklama bilgisini kullanarak her sembol için bir
                         satır numarası ve dosya adı bulur.
  -n, --numeric-sort     Sembolleri adres numarasına göre sıralar
  -o                     -A ile aynı
  -p, --no-sort          Sembolleri sıralamaz
  -P, --portability      --format=posix ile aynı
  -r, --reverse-sort     Ters sıralar
  -S, --print-size       Tanımlı sembollerin boyunu gösterir
  -s, --print-armap      Arşiv üyelerinden gelen semboller için endeks içerir
      --size-sort        Sembolleri büyüklüğe göre sıralar
      --special-syms     Çıktıda özel sembolleri de gösterir
      --synthetic        Sentetik sembolleri de gösterir
  -t, --radix=RADIX      Sembol değerlerini yazdırmak için RADIX kullanır
      --target=BFD_ADI   Hedef nesne biçemini BFD_ADI olarak belirler
  -u, --undefined-only   Yalnızca tanımlanmamış sembolleri gösterir
  -X 32_64               (yok sayılır)
  -h, --help             Bu bilgiyi gösterir
  -V, --version          Sürüm bilgilerini gösterir

 Seçenekler:
  -b --target=<bfdadı>   İkilik dosya biçemini belirtir
  -e --exe=<çalıştırılabilir dosya>  Girdi adını belirtir (öntanımlı: a.out)
  -s --basenames         Dizin adlarını soyar
  -f --functions         İşlev adlarını gösterir
  -C --demangle[=tarz]   İşlev adlarını düzeltir
  -h --help              Bu bilgiyi gösterir
  -v --version           Program sürüm no'sunu gösterir

 Seçenekler:
  -h --help                      Bu yardımı gösterir
  -V --version                   Sürüm bilgisini gösterir
 Seçenekler:
  -h --help              Bu bilgiyi gösterir
  -v --version           Program sürüm no'sunu gösterir

 Seçenekler:
  -h --help        Bu bilgiyi gösterir
  -v --version     Yazılımın sürüm no'sunu gösterir
Seçenekler:
  -i --input=<DOSYA>           Girdi dosyası ismi
  -o --output=<DOSYA>          Çıktı dosyası ismi
  -J --input-format=<BİÇEM>    Girdi biçemini belirtir
  -O --output-format=<BİÇEM>   Çıktı biçemini belirtir
  -F --target=<HEDEF>          COFF hedefini belirtir
     --preprocessor=<YAZILIM>  rc dosyasını önişlemek için kullanılacak yazılım
  -I --include-dir=<DİZİN>     rc dosyası önişlenirken dizini dahil et
  -D --define SYM[=DEĞER]      rc dosyası önişlenirken SYM'i tanımlar
  -v --verbose                 Açıklamalı - ne yapıldığını anlatır
  -l --language=<DEĞER>        rc dosyası okunurken dili belirtir
     --use-temp-file           Önişlemci çıktısını okumak için popen yerine
                               geçici dosya kullanır
     --no-use-temp-file        (öntanımlı) popen kullanır
 Seçenekler:
  -q --quick       (Eski - yoksayılır)
  -n --noprescan   common'ları def'lere çevirmek için taramaz
  -d --debug       Ne yapıldığı hakkında bilgi verir
  -h --help        Bu bilgiyi gösterir
  -v --version     Sürüm numarasını gösterir
 [DW_AT_frame_base yok] ve Satır'ı %2$d'ye kadar %1$d
göreli konum 0x%lx %lu girdi içeriyor:
 komuta özgü değiştiriciler:
 komutlar:
  öykünüm seçenekleri: 
 genel değiştiriciler:
 yazılım yorumlayıcısı tür: %x, isimboyu: %08lx, tanımboyu: %08lx
#satırlar %d %ld: öncesinde işlev olmadan .bf%ld: beklenmeyen .ef
%lu	%s
%s

%s %s%c0x%s hiç kullanılmadı%s %s: %s%s hem kopyalandı hem silindi%s %d durumu ile çıktı%s geçerli bir arşiv değil%s alt bölümü,.debug_info alt bölümünden daha fazla comp birimi içeriyor
%s alt bölümü içi doldurulmuş .debug_info alt bölümünü gerektirir
%s: %s: adres sınırların dışında%s: Girdi arşivi %s açılamadı
%s: Çıktı arşivi %s açılamadı
%s: Hata: %s: Dosya başlığı okunamadı
%s: Eşleşen biçemler:%s: "%s" sembolü tekrar tanımlanmış%s: İmaj ismi '%s' içinden yol dizgeleri çıkarıldı.%s: "%s" sembolü birden fazla yeniden tanımlamanın hedefi%s: Uyarı: %s: hatalı arşiv dosya adı
%s: hatalı sayı: %s%s: arşivden adresler alınamadı%s: hata ayıklama bölümü oluşturulamadı: %s%s: modül dosyası %s bulunamadı
%s: %s dosyası açılamadı
%s: hata ayıklama bölüm içeriği atanamadı: %s%s: zaman atanamadı: %s%s: %s için hata ayıklama bilgisinin nasıl yazılacağı bilinmiyor%s: özel BFD verisi kopyalanırken hata: %s%s: %s içinde hata: %s%s: %s'in çalıştırılması başarısız oldu: %s: arşiv başlığı okunamadı
%s: dizge tablosu okunamadı
%s: sonraki arşiv başlığına geçilemedi
%s: arşiv sembol tablosu atlanamadı
%s: %s dosyası bir arşiv değil
%s: fread başarısız%s: %lu'ya fseek başarısız: %s%s: geçersiz arşiv dizge tablo görecesi %lu
%s: geçersiz çıktı biçemi%s: geçersiz radix%s: güncellenecek arşiv eşlemesi yok%s: açık arşiv yok
%s: açık çıktı arşivi yok
%s: henüz bir çıktı arşivi belirtilmedi
%s: tanınan hata ayıklama bilgisi yok%s: kaynak bölümü yok%s: sembol yok%s: dinamik nesne değil%s: yeterli ikilik veri yok%s: hata ayıklama bilgisinin yazdırılması başarısız%s: %lu'nun okunması %lu döndürdü%s: okundu: %s%s: bölüm `%s': %s'da hata: %s%s: beklenmeyen sembol türü %s, yerdeğişim esnasında atlanıyor .rela%s
%s: desteklenen platformlar:%s: desteklenen biçemler:%s: desteklenen hedefler:%s: beklenmeyen dosya sonu%s: uyarı: %s: uyarı: paylaşımlı kitaplıklar öndeğer atanmamış veri kapsayamaz%s: uyarı: Yapı içinde `%s' alanı için bilinmeyen boy%s:%d: %s
%s:%d: Bu satırda bulunan bozukluk yoksayıldı%s:%d: satırın sonu bozuk%s:%d: yeni sembol adı eksik%s:%d: erken sonlanmış dosya'%s''%s' normal bir dosya değil
'%s': Böyle bir dosya yok'%s': Böyle bir dosya yok
(Bilinmeyen yer yönergesi)(Kullanıcı tanımlı yer yönergesi)(inline olarak tanımlandı ve inline'landı)(inline olarak tanımlandı ama yoksayıldı)(inline'landı)(yer listesi)(inline'lanamadı)2's complement, big endian2's complement, little endian: çift değer
: dizin beklendi
: yaprak beklendi
<İS'e özel>: %d<bozuk dizge tablo endeksi: %3ld><.debug_str bölümü yok><görece fazla büyük><işlemciye özel>: %d<dizge tablo endeksi: %3ld><bilinmeyen: %x><bilinmeyen>: %d<bilinmeyen>: %lx<bilinmeyen>: %xÇıktı dosyasına ihraçlar eklendiÇıktı dosyasına ihraçlar ekleniyorDenetim kitaplığıYardımcı kitaplıkBCD gerçel tipi desteklenmiyorBFD başlık dosyası sürümü %s
Grup alt bölümü `%s' içinde hatalı sh_info
Grup alt bölümü `%s' içinde hatalı sh_link
Kötü stab: %s
C++ temel sınıfı tanımlanmamışC++ temel sınıfı taşıyıcı içinde bulunamadıC++ veri üyesi taşıyıcı içinde bulunamadıC++ öntanımlı değerleri işlev içerisinde değilC++ nesnesinde hiç alan yokC++ referansı imleyici değilC++ referansı bulunamadıC++ statik sanal yöntemCORE (Core dosyası)%s'ye dolgu eklenemedi: %s%s mimarisi için karşıt çevirim yapılamadı
%s'den sonraki boşluk doldurulamadı: %sKİTAPLIK ve İSİM beraber olamaz.lib dosyası açılamadı: %sTanım dosyası açılamadı: %s%s dosyası açılamadı
Verilen makine %s kullanılamadıYazılım başlıkları olmadan sanal adresler yorumlanamaz. 
Arşiv dosyasından mcore-elf dll oluşturulamadı: %sAyar dosyası%s bölümünün içeriği:

%s bölümünün içeriği:
%s bölümünün içeriği:

.debug_loc bölümünün içeriği:

.debug_ranges alt bölümünün içeriği:

.debug_str bölümünün içeriği:

Bir COFF nesne dosyasını SYSROFF nesne dosyasına çevirir
Telif Hakkı (c) 2005 Free Software Foundation, Inc.
'%s' bulunamadı. Sistem hata iletisi: %s
Düzeltilmiş oluşumiçi tür alınamadı
Lib dosyası oluşturulduKitaplık dosyası açılamadı: %sKoçan dosyası oluşturuluyor: %sŞimdiki açık arşiv %s
DLLTOOL adı    : %s
DLLTOOL seçenekleri : %s
SÜRÜCÜ adı     : %s
SÜRÜCÜ seçenekleri  : %s
DW_FORM_data8, sizeof (unsigned long) != 8 durumunda desteklenmez
DİN (Paylaşımlı nesne dosyası)Geçici temel dosya %s silindiGeçici tanım dosyası %s silindiGeçici ihraç dosyası %s silindiDüzeltilmiş isim bir işlev değil
Bağımlılık denetim kitaplığı%s bölümünün karşıt çevrimi:
%s bölümünün hata ayıklama içerik bilgilerini göstermek henüz desteklenmiyor.
Bu makine mimarisi üzerinde yer değiştirmeler konusunda bilgi yok
%s okunduELF Başlığı:
UYGU (Uygulama dosyası)Dizi Sonu

Giriş noktası Hata, orjinal hali ile EXPORT tekrarı: %sSembol dışlandı: %s%s'in çalıştırılması başarısız olduBİÇEM rc, res, veya coff değerlerinden biri olup, eğer belirtilmezse dosya ismi sonekinden bulunur. Tek bir dosya ismi bir girdi dosyası kabul edilir
Girdi dosya ismi verilmezse standart girdi, öntanımlı rc okunur. 
Çıktı dosya ismi verilmezse standart çıktı, öntanımlı rc okunur.
Düzeltilmiş şablon yazdırılamadı
Küme sayısı okunamadı
Zincir sayısı okunamadı
Dosyada birden fazla dinamik dizge tablosu var
Dosyada birden fazla dinamik sembol tablosu var
Dosyada birden fazla symtab shndx tablosu var
Filtre kitaplığıSeçenekler:İhraç dosyası oluşturulduİhraç dosyası oluşturuluyor: %sID dizin girdisiID kaynağıID altdiziniIEEE sayısal taşma: 0xIEEE dizge uzunluk taşması: %u
IEEE desteklenmeyen karmaşık tip boyu %u
IEEE desteklenmeyen gerçel tip boyu %u
IEEE desteklenmeyen tamsayı tip boyu %u
Idx Adı           Boy       VMA               LMA               Dosya of  HizaIdx Adı           Boy       VMA       LMA       Dosya of  Hiza%s arşivi içinde:
Girdi dosyası '%s' okunamaz.
İç hata: DWARF sürümü 2 veya 3 değil.
İç hata: Bilinmeyen makine tipi: %dGeçersiz seçenek '-%c'
Geçersiz radix: %s
Geçici temel dosya %s tutulduGeçici tanım dosyası %s tutulduGeçici ihraç dosyası %s tutulduSeçenekler:
  W (yazdırır), A (ayırır), X (uygular), M (birleştirir), S (dizgeler)
  I (bilgi), L (bağ sırası), G (grup), x (bilinmeyen)
  O (daha fazla OS işlemesi gerekli) o (OS'e özgü), p (işlemciye özgü)
KİTAPLIK: %s temel: %xHata öncesi son stabs girdileri:
Kitaplık r_yolu: [%s]Kitaplık çalışım yolu: [%s]Kitaplık so_adı: [%s].debug_info alt bölümündeki yer listeleri artan sırada değil!
.debug_loc alt bölümünde yer listeleri başlangıç konumu 0x%lx
'%s' makinesi desteklenmiyor%s bölümünde birden fazla yeniden isimleme-o veya --dllname (dll adı) seçeneklerinin en azından bir tanesi belirtilmelidirİSİM: %s temel: %xHİÇBİRİ (Hiçbiri)NT_ARCH (mimari)NT_AUXV (yardımcı vektör)NT_FPREGS (kayan nokta yazmaçları)NT_FPREGSET (kayan nokta yazmaçları)NT_LWPSINFO (lwpsinfo_t yapısı)NT_LWPSTATUS (lwpstatus_t yapısı)NT_PRPSINFO (prpsinfo yapısı)NT_PRSTATUS (prstatus yapısı)NT_PRXFPREG (user_xfpregs yapısı)NT_PSINFO (psinfo yapısı)NT_PSTATUS (pstatus yapısı)NT_TASKSTRUCT (görev yapısı)NT_VERSION (sürüm)NT_WIN32PSTATUS (win32_pstatus yapısı)N_LBRAC işlev içerisinde değil
İsim                  Değer           Sınıf        Tip          Boy              Satır Bölüm

İsim                  Değer   Sınıf        Tip          Boy    Satır Bölüm

Ä°sim Endeksi: %ld
Ä°sim: %s
NetBSD procinfo yapısı%s bölümü yok

.debug_info alt bölümünde comp birimi yok mu?Arşiv içinde %s girdisi yok.
-fo seçeneğinden sonra dosya adı verilmemiş.
.debug_info alt bölümünde yer listesi yok!
"%s" için karıştırma yok
`%s' adında bir üye yok
Core dosyasında not parçaları yok.
.debug_info alt bölümünde aralık listesi yok!
HiçbiriELF dosyası değil - başlangıçta yanlış sihirli baytlar var
%u girdilik bir hata ayıklama bilgi dizgisi için yeterli bellek yokGereksiz nesne: [%s]
Yapılacak bir şey yok.
İşletim Sistemine Özel: (%x)Yalnız -X 32_64 destekleniyorŞimdilik yalnızca DWARF 2 ve 3 a-aralıkları destekleniyor.
Şimdilik yalnız DWARF 2 ve 3 genel isimleri destekleniyor
Şimdilik yalnızca DWARF sürüm 2 ve 3 satır bilgisi destekleniyor.
Şimdilik yalnızca DWARF Sürüm 2 ve 3 hata ayıklama bilgisi destekleniyor.
Geçici dosya açıldı: %sİşletim Sistemine Özel: %lxGirdi biçemini belirlemek için -I seçeneği artık kullanılmıyor, -J kullanın.
Bellek yetersizBellek tükendi
%2$s için 0x%1$x bayt ayrılırken bellek tükendi
Döküm istek tablosu ayrılırken bellek tükendi.PT_FIRSTMACH+%dPT_GETFPREGS (kayan nokta yazmaç yapısı)PT_GETREGS (yazmaç yapısı)Pascal dosya adı desteklenmiyorDll ismi '%s' içinden yol dizgeleri çıkarıldı.SYSROFF nesne dosyasını insan tarafından okunabilir biçemde yazdırır
Tanım dosyası işlendiTanımlar işlendiTanım dosyası işleniyor: %sTanımlar işleniyorİşlemciye Özel: %lxİşlemciye Özel: (%x)YER (Yer değiştirebilen dosya).debug_info alt bölümündeki aralık listeleri artan sıralı değil!
.debug_ranges alt bölümünde aralık listeleri 0x%lx konumunda başlıyor
%2$s'nin %1$s bölümünün okunması başarısız: %3$sYazılım hatalarını %s adresine, 
çeviri hatalarını <gnu-tr@belgeler.org> adresine gönderin
Hataları %s adresine, 
çeviri hatalarını <gnu-tr@belgeler.org> adresine bildiriniz.
Nesne dosyası %s taranıyor%d alt bölümü dökülmedi çünkü mevcut değil!
Alt bölüm başlıkları yok!
Bölümler:
Paylaşımlı kitaplık: [%s]beklenmeyen yerdeğişim türü %s atlanıyor
Tekbaşına Uygulama%2$s'in %1$s bölümünden bilgi emiliyorDesteklenen platformlar:Desteklenen hedefler:Tanım dosyası %s'nda sözdizim hatası:%dSatır bilgisi bozuk - bölüm çok küçük
%s bölümü içeriyor:
%s bölümü içeriyor:

%d adet bölüm başlığı mevcut, göreli konum 0x%lx'dan başlanıyor:
.debug_loc alt bölümünde [0x%lx - 0x%lx] deliği mevcut.
.debug_ranges alt bölümünde [0x%lx - 0x%lx] deliği mevcut.
.debug_loc alt bölümünde [0x%lx - 0x%lx] örtüşmesi var.
.debug_ranges alt bölümünde [0x%lx - 0x%lx] örtüşmesi var.
Bu readelf, 64 bitlik veri türü desteği olmaksızın derlenmiştir ve
64 bitlik ELF dosyalarını okuyamaz.
Bu, bir serbest yazılımdır; GNU Genel Kamu Lisansı koşulları altında değişiklik 
yapabilir ve/veya yeniden dağıtabilirsiniz. 
Bu yazılımın herhangi bir garantisi yoktur.
Fazla sayıda N_RBRAC
`%s' denendi
Dosya denendi: %sTip dosya numarası %d aralık dışı
Tip endeks numarası %d aralık dışı
TANIMSIZ: uzunluk %d
Girdi dosyanın küçük/büyük sonluluğu değiştirilemediDinamik dizge tablosunun uzunluğu belirlenemedi
Yüklenecek sembol sayısı belirlenemedi
Yazılım yorumlayıcısı adı bulunamadı
.debug_abbrev bölümü bulunamadı!
Kısaltma tablosunda %lu girdisi bulunamadı
Temel-dosyası açılamadı: %sNesne dosyası açılamadı: %sGeçiçi üretici dosyası açılamadı: %s%2$s'in 0x%1$x baytı okunamadı
Dinamik veri okunamadı
%s girdi dosyasının biçemi tanınmadı%2$s için 0x%1$x'e kadar arama yapılamadı
Dosyanın sonuna kadar aranamadı
Dosya sonuna kadar aranamıyor!Dinamik bilginin başlangıcına kadar aranamadıN_EXCL tanımsızBeklenmeyen düzeltilmiş değişken argümanlar
v3 argüman listesi düzeltme işleminde beklenmeyen tür
Desteklenmeyen veri uzunluğu: %d
Bilinmeyen AT değeri: %lxBilinmeyen FORM değeri: %lxBilinmeyen TAG değeri: %lxBilinmeyen not tipi: (0x%08x)Bilinmeyen XCOFF tipi %d
Tanınmayan hata ayıklama seçeneği '%s'
Tanınmayan hata ayıklama bölümü: %s
Tanınmayan düzeltme bileşeni %d
Bilinmeyen düzeltilmiş çevrimiçi tür
Bilinmeyen form: %d
Kullanım %s <seçenekler> <nesne-dosyaları>
Kullanım: %s <seçenekler> <girdi-dosya(ları)>
Kullanım: %s <seçenekler> girdi-dosya(ları)
Kullanım: %s [öykünüm seçenekleri] [-]{dmpqrstx}[abcfilNoPsSuvV] [üye-adı] [sayı] arşiv-dosyası dosya...
Kullanım: %s [seçenekler] [adresler]
Kullanım: %s [seçenekler] [dosya(lar)]
Kullanım: %s [seçenekler] [girdi-dosyası [çıktı-dosyası]]
Kullanım: %s [seçenekler] [girdi-dosyası] [çıktı-dosyası]
Kullanım: %s [seçenek(ler)] girdi-dosyası
Kullanım: %s [seçenekler] girdi-dosyası [çıktı-dosyası]
Kullanım: %s [seçenekler] arşiv
Kullanım: readelf <seçenekler> elf-dosya(ları)
`%s' kullanılıyor
Dosya kullanılıyor: %sÖnişlemci çıktısı popen ile okunuyor
`%s' geçici dosyası önişlemci çıktısını okumak için kullanılıyor
--size-sort ve --undefined-only seçenekleri beraber kullanılıyor`N' değeri pozitif olmalı.0x%lx sanal adresi hiç bir PT_LOAD bölümünde bulunamadı.
Uyarı, EXPORT tekrarı %s %d,%d yoksayıldıUyarı: %s: %s
Uyarı: '%s' normal bir dosya değilUyarı: Çıktı dosyası %s mimarisini temsil edemezUyarı: tip boyutu %d'den %d'ye değiştirildi
Uyarı: '%s' bulunamadı.  Sebep: %sUyarı: ikilik platform parametresi için ikilik (`binary') girdi hedefi gerekli.Uyarı: dolgu, 0x%s'dan 0x%x'ya kırpıldı<bilinmeyen>: 0x%x`N' yalnızca `x' ve `d' seçenekleri ile anlamlıdır.`u' yalnızca `r' seçeneği ile anlamlıdır.hızlandırıcıhizalamaalternatif makine kodu indeksi pozitif olmalı%s platformu bilinmiyormimari: %s,.debug_info içindeki son comp biriminden, imleyici boyunun %d olduğu çıkarıldı

hatalı ATN65 kaydıhatalı C++ alan biti konum veya boyuhatalı dinamik sembol%s için hatalı biçemkötü karıştırılmış isim '%s'
hatalı misc kaydıC++ yöntem işlevi için hatalı tiphatalı oluşturulmuş uzun satır işlevi bulundu!
bfd_coff_get_auxent başarısız: %sbfd_coff_get_syment başarısız: %skoçan dosyası bfd_open ile açılamadı: %syığıt üzerinde bloklar kaldıbayt numarası serpiştirmeden daha küçük olmalıbayt numarası negatif olmamalı`%s' dosyasının türü belirlenemedi; -J seçeneğini kullanın`%s' bölümü oluşturulamadı: %s`%s' çalıştırılamıyor: %sBFD_RELOC_RVA yer değiştirme tipi alınamıyor%s `%s' açılamadı: %s'%s' çıktı için açılamadı: %s`%s' geçici dosyası açılamıyor: %s`%s' popen yapılamıyor: %skaynak bölümü okunamıyorstandart çıktı yönlendirilemiyor: `%s': %sBFD öntanımlı hedef `%s' olarak atanamadı: %s%s silinemedi: %sarşiv kopyalaması için mkdir %s başarılı olamadı (hata: %s)'%s' açılamadı: %s%s girdi dosyası açılamadıaçılamadı: %s: %sçakışmadinamik sembol tablosu olmayan çelişki listesi bulundusabit/değişken belirteci eksikkontrol verisi için DIALOGEX gerekli%s(%s)'dan %s(%s)'a kopyalar
'core' notlarının içinde, %x görecesinde bozuk not bulundu
%ld numaralı sembolün türü belirlenemedi
sembol yeniden tanımlama dosyası %s açılamadı (hata: %s)%s oluşturuluyorgöstergegösterge dosyası '%s' gösterge verisi içermiyorözel bölümveri girdisiveri büyüklüğü %ldhata ayıklama bölüm verisidebug_abbrev bölüm verisihata_ayıkla_mevcut_isim_uzayına_ekle: mevcut dosya yokhata_ayıkla_son_blok: tepe seviye bloğu kapama denemesihata_ayıkla_son_blok: mevcut blok yokhata_ayıkla_ortak_blok_son: henüz tamamlanmamışhata_ayıkla_son_işlev: mevcut işlev yokhata_ayıkla_son_işlev: bazı bloklar kapatılmamışhata_ayıkla_isimli_tipi_bul: mevcut derleme birimi yokhata_ayıkla_gerçek_tipi_al: %s için çevrimsel hata ayıklama bilgisi
hata ayıklama bölüm verisihata_ayıkla_tanımlanmamış_tip: desteklenmeyen tiphata_ayıkla_isim_tipi: mevcut dosya yokdebug_range alt bölüm verisihata_ayıkla_kayıt_işlevi: hata_ayıkla_dosya_adı_ata çağrılmadıhata_ayıkla_kayıt_etiket: henüz tamamlanmamışhata_ayıkla_kayıt_satır: mevcut birim yokhata_ayıkla_kayıt_parametresi: mevcut işlev yokhata_ayıkla_kayıt_değişken: mevcut dosya yokhata_ayıkla_başla_blok: mevcut blok yokhata_ayıkla_ortak_blok_başla: henüz tamamlanmamışhata_ayıkla_kaynak: hata_ayıkla_dosya_adı_ata çağrılmadıdebug_str bölüm verisihata_ayıkla_etiket_tipi: fazla etiketleme denendihata_ayıkla_etiket_tipi: mevcut dosya yokhata_ayıkla_yaz_tipi: geçersiz tip bulundudiyalog kontrolüdiyalog kontrol verisidiyalog kontrol sonudiyalog yazıtipi büyüklüğüdiyalog başlığıdialogex kontrolüdialogex yazıtipi bilgisidizindizin girdi ismidinamik alt bölümdinamik dizge tablosudinamik dizgelerifade yığıtı uyumsuzluğuifade yığıtında taşmaifade yığıt taşması.debug_info alt bölümünden bilgi alınıyorgeçici başlık dosyası açılamadı: %sgeçici kuyruk dosyası açılamadı: %sCOFF girdisi için dosya adı gerekliCOFF çıktı için dosya adı gereklisabit sürüm bilgisiseçeneklerseçenekler 0x%08x:
yazıtipi diziniyazıtipi aygıt adıyazıtipi dizini aile ismiyazıtipi dizin başlığıgrup göstergesigrup gösterge başlığıgrup ikonugrup ikon başlığıastları varyardım ID için DIALOGEX gerekliyardım bölümüikon dosyası '%s' ikon verisi içermiyorgeçersiz seçenek -- %cgeçersiz tip endeksigeçersiz değişken endeksigirdi ve çıktı dosyaları farklı olmalıgirdi dosyası ismi hem komut satırında hem INPUT olarak verilmişserpiştirme pozitif olmalıiç hata -- bu seçenek henüz yazılmadı%s üzerinde iç durumlama hatası--format'a geçersiz seçenek: %sgeçersiz tamsayı argümanı %sgeçersiz sayıgeçersiz sayı %sGeçersiz seçenek -f
geçersiz dizge uzunluğuliblistliblist dizge tablosu.bss bölümü oluştur.nlmsections bölümü oluşturbölüm oluşturoluşturuluyormenü başlığımenuex başlığımenuex basamağımenü üyesimenü üyesi başlığıileti bölümüeksik endeks tipiGerekli ASN yokGerekli ATN65 yokmodül bölümübir dinamik parçadan fazla
isimli dizin girdisiisimli kaynakisimli altdizindinamik bölüm içinde dinamik alt bölüm yokkarıştırılmış dizgede argüman tipi yok
astları yokarşivde %s girdisi yok
arşiv %2$s içerisinde %1$s girdisi yok!ihraç tanım dosyası verilmemiş.
Bir tane oluşturuluyor fakat istediğiniz bu olmayabilir%ld numaralı sembol için bilgi yok
girdi dosyası yokgirdi dosyası belirtilmediçıktı dosyası için isim yokişlev belirtilmemişkaynak yoksembol yok
C++ yöntem işlevi için tip bilgisi yokyoknotlarboş değerle sonlanmış unicode dizgesisayısal taşmaseçenekleryer değiştirmeleri tararken bellek tükendi%s'e göreli yer değiştirme ayarlanırken taşma oluştuparse_coff_type: Kötü tip kodu 0x%xözel veriözel başlık verisiYazılım Başlıklarıreferans parametresi imleyici değilyerdeğişimlerkaynak IDkaynak verisikaynak veri boyukaynak tipi bilinmiyorrpc bölümüalt bölüm 0 alt bölüm grubu [%5u] içinde
alt bölüm [%5u] zaten alt bölüm grubu [%5u] içinde
bölüm verisiBölüm Başlıkları.bss vma atar.data boyu atar.nlmsection içeriğini atar.nlmsections seçenekleri atar.nlmsections boyunu atarAdresi 0x%lx olarak atar
bölüm hizalanması atarbölüm seçeneklerini atarbölüm boyu belirtirbaşlangıç adresini atarpaylaşımlı bölümboyutbeklenmeyen sembol türü %s, yerdeğişim esnasında atlanıyor .rela.%s
stab_int_type: hatalı boy %uyığıt taşmasıyığıt alt taşması`%s' bitmap dosyası durumlanamadı: %s`%s' dosyası durumlanamadı: %s`%s' yazıtipi dosyası durumlanamadı: %sstat komutu, %s için negatif büyüklük gösteriyordizge tablosustring_hash_lookup başarısız: %sdizgetablosu dizgesidizgetablosu dizge uzunluğukoçan bölüm boylarıAst-işlem %d ölümcül sinyalini aldı%s için destek derlenmemişdesteklenen seçenekler: %ssembol bilgisisembollersymtab shndxdinamik alt bölüm, dinamik bölüm içinde değildinamik alt bölüm, dinamik bölüm içindeki ilk alt bölüm değil.kopyalanacak bölüm yok!iki farklı işlev seçeneği belirtilmiş'%s' dosyası kopyalanamadı sebep: %sçıktı dosyası %s açılamadı'%s' yeniden adlandırılamadı sebep: %stanımlanmamış C++ nesnesitanımlanmamış C++ vtablosuATN'de tanımsız değişkenTY'de tanımsız değişkenbeklenmeyen DIALOGEX sürümü %dhata ayıklama bilgilerinde beklenmeyen sonbeklenmeyen sabit sürüm bilgisi sürümü %lubeklenmeyen sabit sürüm bilgi uzunluğu %dbeklenmeyen sabit sürüm imzası %lubeklenmeyen grup gösterge tipi %dbeklenmeyen grup ikon tipi %dbeklenmeyen sayıbeklenmeyen kayıt tipiC++ misc içinde beklenmeyen dizgebeklenmeyen dizge dosya bilgi değer uzunluğu %dbeklenmeyen değişken dosya bilgi değer uzunluğu %ddizgenin beklenmeyen sürümübeklenmeyen sürüm dizge uzunluğu %d != %d + %dbeklenmeyen sürüm dizge uzunluğu %d < %dbeklenmeyen sürüm dizge tablo değer uzunluğu %dbeklenmeyen sürüm tipi %dbeklenmeyen sürüm değer uzunluğu %dbilinmeyen ATN tipibilinmeyen BB tipiBilinmeyen C++ şifreli ismibilinmeyen C++ görünürlüğübilinmeyen TY kodubilinmeyen alternatif makine kodu, yoksayıldıbilinmeyen oluşumiçi tipbilinmeyen düzeltme tarzı '%s'bilinmeyen biçem tipi `%s'bilinmeyen bölümtemel sınıf için bilinmeyen sanal karaktertemel sınıf için bilinmeyen görünebilirlik karakterialan için bilinmeyen görünürlük karakteriisimlenmemiş $vb tipitanınmayan --endian tipi `%s'tanınmayan -E seçeneğitanınmayan C++ kısaltmasıbilinmeyen öntanımlı C++ tipibilinmeyen C++ misc kaydıbilinmeyen C++ nesne masraf tanımıbilinmeyen C++ nesne tanımıbilinmeyen C++ referans tipitanınmayan çapraz başvuru tipibilinmeyen bölüm seçeneği `%s'bilinmeyen: %-7lx%s'e göreli PC yer değiştirme çözümlenemedidesteklenmeyen ATN11desteklenmeyen ATN12desteklenmeyen C++ nesne tipidesteklenmeyen IEEE ifade işlemimidesteklenmeyen menü sürümü %ddesteklenmeyen veya bilinmeyen DW_CFA_%d
desteklenmeyen niteleyicigeri alma bilgisigeri alma tablosusürüm verisisürüm tanımıSürüm yardımcı tanımısürüm tanımı bölümüsürüm uzunluğu %d, kaynak uzunluğu %lu ile eşleşmiyorSürüm GereksinimSürüm Gereksinim Yardımcı (2)Sürüm Gereksinim Yardımcı (3)Sürüm Gereksinim BölümSürüm Dizge TabloSürüm Sembol Verisürüm değişken bilgisideğişken dosya bilgi sürümüvmabekle: %swarning: CHECK altyordamı %s tanımsızuyarı: EXIT altyordamı %s tanımsızuyarı: FULLMAP desteklenmiyor; ld -M komutunu deneyinuyarı: Sürüm numarası verilmemişuyarı: START altyordamı %s tanımsızuyarı: '%s' bulunamadı. Sistem hata iletisi: %suyarı: girdi ve çıktı biçemleri uyumlu değiluyarı: %s sembolü ithal edildi ama ithal listesinde değiltanımsız sembollerin boyları olmadığından çıktı üretilmeyecek.koçan yazılıyor