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
Þ•T¼\5XGYG!_GG‡GG“G¨GÁG"àGH#H;H MH&nH'•H½HÖH&çHI,+IXIEkI*±IÜIîIJJ.JTGJœJ¸JXÓJ3,K8`KS™KNíK;<L:xLR³L3MN:M8‰M(ÂM(ëM(N(=NfNyN—N®N½NÖN
ïN:ýN8O
SO<aO3žO3ÒO/PD6P2{P4®P,ãP4Q<EQ5‚Q7¸Q5ðQ3&R8ZR“R+«R8×R9S8JS8ƒS:¼S+÷S0#T0TT2…T'¸T8àT"U0<U7mUH¥UJîU99VRsV7ÆVLþV7KW2ƒWR¶W:	X?DX>„X=ÃX>Y6@Y<wY7´Y8ìY<%Z<bZIŸZNéZ=8[Hv[)¿[=é[A'\>i\7¨\3à\],]I]_]z]’]ª]À]Õ]"ë]&^¯5^qå^9W`+‘`A½`Šÿ`Ša³b)ÌbÕöcðÌeF½hupqzséìs¹Ötu¡u*¶uáu"óuv'vCv
OvZv-bvv¤v±v+Âv#îv w3w Dwew'„w'¬wÔwôw"x%6x"\xx%xµxÈxæx4y;y0[y0Œy0½y
îyüyz/z*Kz*vz"¡zÄzäz{${(5{/^{(Ž{&·{7Þ{A|.X|9‡|3Á|-õ|%#}5I}?},¿}1ì}@~>_~.ž~)Í~6÷~Q.€1Ï-ê€4-€5b€I˜€â€14Oh2²ȁ8܁‚$‚5‚E‚U‚d‚u‚‡‚
 ‚7«‚5ã‚?ƒ,Yƒ†ƒ0œƒ+̓ùƒ	„*„/E„8u„®„"„&å„.…?;…){….¥…7ԅ,†;9†4u†/ª†Qچ5,‡/b‡´’‡=G)…¯EŠ’t“—ܘNå›J47®· f¡ z¡›¡·¡M¼¡
¢(¢4¢J¢_¢t¢ƒ¢¢
¢¢­¢¹¢É¢Û¢(ô¢£*:£%e£	‹£•£¯£Æ£ߣó£ 
¤!.¤P¤\¤!{¤$¤(¤*뤥3,¥!`¥%‚¥&¨¥#Ï¥+ó¥,¦)L¦
v¦„¦Ÿ¦²¦Ѧé¦%§"*§!M§%o§+•§*Á§(짨%4¨Z¨t¨†¨¤¨¸¨Õ¨ê¨$©+©:©)S©}©‘©®©Å©,Ü©	ª`)ªŠª
ª2«ªÞªüª«#«(6«_«
~«Œ«¬« ¼« Ý«þ«
¬	&¬0¬8¬
=¬K¬Z¬b¬
q¬¬‹¬£¬²¬ǬÛ¬ê¬ÿ¬­
#­.­B­Q­b­	e­	o­y­…­‘­
š­¨­
º­
È­
Ö­#ä­*®I3®}®”®œ®¥®¼®Ä®Í®Ý®ö®	¯'¯	@¯&J¯q¯€¯‡¯™¯®¯¾¯Ó¯
â¯	ð¯
ú¯(°.°"H°k°„°¡°¹°Õ°#õ°/±*I±t±}±Š±‘±±±±ʱÞ±÷±²
²
(²
6²D²U²
d²r²‚²Š²§²ŲÒ²?î²D.³s³’³®³˳ã³2÷³*´;´U´.m´6œ´2Ó´µµ8µ1Pµ$‚µ§µ¸µÒµéµ¶¶1¶G¶2]¶)¶(º¶%㶠	·.*·9Y·V“·Tê·?¸_¸~¸!¸¿¸ϸ)ḹ ¹)¹#2¹V¹v¹¹©¹U¹º/º.Jºyº‰º  ºÁº(׺0»$1»&V»}»“»!¦»È»ç»¼#¼-8¼f¼v¼‹¼:›¼Ö¼ñ¼4½;½M½R½`^½P¿½¾(¾&A¾*h¾“¾'©¾ѾÖ¾Vܾ53¿#i¿¿¨¿¿Má¿
/À=À)LÀ:vÀ&±À-ØÀ6Á.=Á)lÁ9–Á,ÐÁ3ýÁ?1Âq„š²ÂÉÂ7áÂ)Ã%CÃiÂÕéÃÁÃJÖÃ2!ÄTÄ/iÄ0™Ä$ÊÄ"ïÄ)Å
<ÅGÅ6_ŖťŵÅ%ÄÅêÅÆÆ4Æ.SÆC‚Æ:ÆÆoÇgqÇ/ÙÇ7	È3AÈ;uÈñÈuÉ„É“É™É	žÉ>¨ÉçÉRÊWÊuÊ’Ê"®Ê+ÑÊ!ýÊ+ËKËkË|Ë)šËÄËÌËÕËëËÌÌ-Ì'EÌṁÌ%™Ì!¿Ì'áÌ	Í'Í(=ÍfÍ‚Í#¢Í$ÆÍëÍÎ!Î">ÎaÎ{Î&›Î ÂÎ!ãÎ!Ï}'Ïk¥Ï Ð 2Ð#SÐ1wЩÐ)ÈÐòÐ'Ñ7ÑLÑ;[їѦÑÆÑ:ÓÑÒ+Ò9BÒ|Ò9ÒÇÒ%äÒ*
Ó+5ÓaÓgÓ4tÓ*©Ó+ÔÓ$Ô%Ô	8Ô
BÔPÔ&gÔ(ŽÔ
·ÔÂÔ6ÉÔ&Õ&'Õ NÕoÕ(†Õ¯ÕÍÕâÕüÕÖ/Ö KÖlÖ6qÖ2¨Ö(ÛÖ ×%×/1×1a×!“×'µ×'Ý×/Ø25Ø7hØ+ Ø ÌØ1íØ#Ù"CÙ+fÙ&’Ù#¹Ù)ÝÙ.Ú#6ÚZÚ*zÚ¥Ú!­ÚÏÚÖÚéÚùÚ9Û9BÛ'|Û&¤Û*ËÛ&öÛ*Ü3HÜ|܋ܐܙÜ¬Ü(¹Ü'âÜ!
Ý-,ÝZÝ tÝ•Ý²Ý ÎÝïÝÞ
ÞÞ$Þ7Þ:Þ$VÞ{Þ‡ÞŸÞSºÞß%ß<ßTßkßx߄߉ߒߣß.¯ßÞßäß
à
àà#/à
Sà
aà8làF¥àìà
á!á=á	Rá\á	eáoá;xá´áÏáíáââ6â
Uâ)`âŠâ$â´âÒâðâøâã/ã>ãWãjã{ã›ã²ã!Ðãòãääää-ä6ä>ä$Gälä=‹äÉäÍäâÒäµæA»æýæ
ççç7ç.Sç4‚ç,·ç$äç	è+#èNOè8žè'×è%ÿèY%é0é=°é&îémêDƒê%Èê'îêë6ëTëatë!Öë$øëšìK¸ìSíxXítÑíuFî\¼îyïS“ïqçï[Yð(µð(Þð(ñ(0ñYñ&uñœñ³ñ"Çñ%êñòJ!ò+lò˜òƒ¬òQ0óV‚óEÙó€ôC ôqäô>VõI•õWßõO7öR‡öVÚöA1÷Os÷Ã÷<à÷føU„øMÚøM(ùRvùWÉùG!úZiúfÄú:+ûBfû+©ûGÕûUüƒsüs÷ückýsÏýSCþz—þZÿOmÿ½ÿa[l½c*RŽfá]Hh¦P^`b¿h"y‹•f›’8•RÎc!T…YÚU4!Š#¬!Ð,ò	 =	^	{	“	6¯	Cæ	*
AWß
P7gˆGðG8
€Ï‹â[f>*¥yÐ&™J,aä,,F.s/,’/L¿/!0(.0W0)m0—0§0¶04Å0)ú0$1 412U1*ˆ1'³1Û1Eï1$52:Z2<•2-Ò2.3-/30]36Ž3)Å3/ï34264.i4g˜4+5J,5Jw5GÂ5
6-"6#P6-t60¢60Ó6(7%-7%S7y70†7E·7Bý7E@83†8‘º8±L9Fþ9aE:k§:O;Ic;˜­;¸F<Aÿ<SA=m•=x>Y|>OÖ>X&?¤?+$@JP@!›@L½@
AY&AU€AuÖA1LBO~B ÎBïBCJ+C*vC¡Ca¾C D/:DjD…D¡D¼DÍD,èDE]-Eh‹EtôE3iFF8³F2ìFG/G1@G6rG@©GêG0þG4/H6dHG›H0ãH5I?JIPŠIÛIb[Je¾J$K`ÂKi#L&Ls´WG(X"pXY“Xpí[«^d
e;$kt`mÕmÖr'ís5tKtftmt-ýt+u*=uhu&„u«uÁuÕuðuvv6v*QvC|v&ÀvGçv;/wkw)zw&¤w.Ëwúw#xF>xH…xÎxFáxJ(yLsygÀy_(z&ˆzh¯zA{9Z{;”{7Ð{F|HO|7˜|Ð|7æ|#}DB}5‡}8½}Iö}R@~N“~Oâ~]2ehö'_€Q‡€,ـ!)(RUp'Ɓ8î7'‚_‚)}‚c§‚ƒ0)ƒ(Zƒ"ƒƒA¦ƒ.胓„3«„"߄v…)y…"£…#ƅ(ê…>†4R†‡†<ž†ۆ>ø†K7‡6ƒ‡
º‡ȇهè‡ï‡ˆˆ-ˆHˆbˆ){ˆ¥ˆ-ň%óˆ‰13‰%e‰‹‰¤‰#¶‰ډ÷‰ŠŠ*ŠAŠZŠsŠ„Š#ŠOÁŠ'‹M9‹D‡‹=̋‰
Œ3”Œ
Ȍ
֌3äŒ

&48M$†)«ՍóW
ŽbŽ
€Ž‹Ž¨Ž%Ǝ1ìŽ$CZmT0֏?!G&i!$²(א,‘J-‘Ex‘¾‘ԑ
ê‘õ‘0’(?’.h’—’™’³’ϒê’“ “>“V“q“Ž“Fž“Kå“1”.G”•v”•<ª•Rç•::–5u–3«–Jߖ/*—,Z—*‡—D²—W÷—ZO˜ ª˜.˘Bú˜N=™_Œ™7ì™;$š)`š1Šš¼š՚ðš	›X$›I}›HǛEœ@Vœ2—œÊœ£L›ðCŒž8О8	Ÿ;BŸ'~Ÿ0¦Ÿ7ן - 6 _? FŸ 7æ 8¡HW¡x ¡6¢=P¢MŽ¢Ü¢%ï¢*£!@£Kb£[®£Q
¤G\¤&¤¤"ˤ*î¤C¥8]¥8–¥;Ï¥M¦ Y¦$z¦Ÿ¦~¼¦,;§&h§]§4í§"¨+¨w;¨g³¨©5:©5p©W¦©!þ©F ªgª	pª´zªf/«I–«'à«,¬F5¬”|¬ ­!2­TT­z©­W$®{|®qø®`j¯]˯k)°[•°bñ°XT±­±4ͱ(²6+²'b²^Š²Né²J8³&ƒ³<ª³=ç³4%´Z´‹x´kµ*pµ^›µsúµKn¶Nº¶\	·f·w·l–·¸%¸/=¸Em¸,³¸à¸)ÿ¸9)¹Ac¹t¥¹Sº™nº·»AÀ»I¼OL¼Wœ¼Hô¼!=¾_¾
~¾Œ¾“¾v¦¾5¿®S¿6À@9À4zÀF¯ÀXöÀ?OÁbÁ<òÁ/Â;OÂi‹ÂõÂ
Ã/ Ã2PÃ.ƒÃ²Ã2ÒÃOÄ-UăÄ3 Ä2ÔÄ>Å#FÅ!jÅ@ŒÅ'ÍÅGõÅO=ÆIÆ)×Æ#Ç3%ÇXYÇ9²ÇFìÇA3È3uÈB©È;ìȵ(É¡ÞÉ=€Ê3¾Ê>òÊI1Ë9{ËGµË1ýË:/Ì:jÌ"¥Ì`ÈÌ)ÍJ=͈Í|šÍÎ^$΂ƒÎ%Ït,Ï:¡ÏFÜÏ_#Ð[ƒÐßÐèÐ>õÐ,4Ñ7aÑd™ÑþÑÒ.Ò2CÒ>vÒ>µÒ ôÒÓp$ÓI•ÓHßÓD(Ô0mÔ_žÔMþÔ+LÕ=xÕ1¶ÕOèÕO8ÖaˆÖêÖmñÖP_×`°×]ØoØ@ŠØSËØ1Ù.QÙ<€ÙS½ÙFÚ]XÚ<¶Ú1óÚN%Û*tÛ5ŸÛ@ÕÛ7Ü3NÜ0‚ÜK³Ü@ÿÜ0@ÝEqÝ·Ý+ÐÝüÝ7Þ*;Þ(fÞ[Þ_ëÞ_KßM«ßQùßMKàQ™à_ëàKácárááŸá[«á?âVGâWžâ_öâ1VãFˆã;ÏãAäMämä ä¢ä%®äÔä4ÙäGåVå8få7Ÿå¼×å”æ6¬æ-ãæ)ç;çYçnçwç#“ç·çMÐç
èW)èè#™è½è?Òèé+é[=éx™é)ê&<ê?cê$£êÈêÕêæê÷ê{	ë3…ë$¹ë.Þë-
ìP;ìMŒìÚìLòì?íBFíE‰íGÏíî,î<Jî!‡î&©î,ÐîýîCï&[ï1‚ïH´ïýïð5ðOð.ið˜ð­ðÀðUÑðD'ñvlñãñèñZ9á@'ë Ý÷¿P°CE0îà/ªE¬Û-“QF'þIÖåµ
Ý9ý‚Ô|?¯­•ß(: *:[+—72‘ﳃa ѹҮ5*,<I5ŠÕtq§Þ=
[/öŽ½H¥Ó"#R
‹(NµgQ8„ÛQôÛé—!lPõd’»ÍÒ<	–7düÎ!Kkçó
uû`èrpY€”š.¡wÈJKQ]&\ýgý”€ƒ&HÒnWØè°j$…Úƒ×-,ñ86"`ïÔ3­V/P†N!}Š¢ö^+¶¾ùB	ÁÅñ#©Að,z£¤ GÊxˆ³
•oç)ӏvšœKOìXžó†¨)¸kÝÐz"BoíÉëþ8›;Ô¼ø\‚ÿ3sc	§q;>ê@.(ºç&æ?ä·…:_ˆx”~Mok}hӐhR°v®É‰¾ä*qðlÃب‡½â—'cGb†n2CAÈ[6ihL¦¦œyD5¨Hä³¼2Ð7Í·St0|Ÿm™Æm’IùT˜Ì1õT‡·Ve%$]%(›ª!MϪã¹FBÚÜDb
v‘ÌÇ4¥9ŽDøã´ÞÊÀ¿4׀¤û 6>öÊ1áµR¥B=Ü«‹IšË®àuÄ@)?«ZêÇ]ÆŒº˜¡‰JLJàÖúØ‚Ñ<¬åüS-éH4Äž)t™Áí{Z5º
}:=ù|Ÿ©‰+MæTÏ1¹êðbGSaì	Å0œ=XÚgÃO–ÿèò_M¦3ìXyP±æÞÙëpcEe™-̞LJTÑÙ˛óuáÕ2¤ßÀ¬üFA%rL´6Á¶Oþ«SúU΢Ä͸Ééõfni£UCŸer4±D'N…,
a>&w"íds+Fm’Ù¯‘W÷£¿<^‡²ø.0â¯.÷3¼A„xßEÏYå¡N´%_ Œûט­ôK¸*yÅ#â1“> »\;–8ÎzVñ©Ws˶wÇjÆÕÀÿ$¾‹/Œ§~½Ýî»Ü;lCï{UÂi•È„fò#úO“Y$7ôŠ@`ã?9RpjÖŽ±ò{fG²²~^¢Ð	%d:		(Unknown format content type %s)	Name	Size	Time

Symbols from %s:



Symbols from %s[%s]:



Undefined symbols from %s:



Undefined symbols from %s[%s]:


    Address            Length

    Address    Length

    Offset	Name

    Offset  Kind          Name

  Start of program headers:          
 The following switches are optional:

%s:     file format %s

Archive index:

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

Disassembly of section %s:

Options supported for -P/--private switch:

Program Headers:

Section '%s' contains %d entry:

Section '%s' contains %d entries:

Section '%s' has an invalid size: %#llx.

Section Header:

Section Headers:

The %s section is empty.

start address 0x            Flags: %08x         possible <machine>: arm[_interwork], i386, mcore[-elf]{-le|-be}, ppc, thumb
       %s -M [<mri-script]
       [<unknown>: 0x%x],       --add-stdcall-underscore Add underscores to stdcall symbols in interface library.
      --exclude-symbols <list> Don't export <list>
      --export-all-symbols   Export all symbols to .def
      --identify-strict      Causes --identify to report error when multiple DLLs.
      --leading-underscore   All symbols should be prefixed by an underscore.
      --no-default-excludes  Clear default exclude symbols
      --no-export-all-symbols  Only export listed symbols
      --no-leading-underscore All symbols shouldn't be prefixed by an underscore.
      --plugin NAME      Load the specified plugin
      --use-nul-prefixed-import-tables Use zero prefixed idata$4 and idata$5.
     --yydebug                 Turn on parser debugging
    .debug_abbrev.dwo:       0x%s  0x%s
    .debug_line.dwo:         0x%s  0x%s
    .debug_loc.dwo:          0x%s  0x%s
    .debug_str_offsets.dwo:  0x%s  0x%s
    Arguments: %s
    DW_MACRO_%02x arguments:     Description data:     Location:     Module name    : %s
    Module version : %s
    Name: %s
    Offset   Begin            End              Expression
    Offset   Begin    End
    Version:    --add-indirect         Add dll indirects to export file.
   --add-stdcall-alias    Add aliases without @<n>
   --as <name>            Use <name> for assembler
   --def <deffile>        Name input .def file
   --dllname <name>       Name of input dll to put into output lib.
   --dlltool-name <dlltool> Defaults to "dlltool"
   --driver-flags <flags> Override default ld flags
   --driver-name <driver> Defaults to "gcc"
   --dry-run              Show what needs to be run
   --entry <entry>        Specify alternate DLL entry point
   --exclude-symbols <list> Exclude <list> from .def
   --export-all-symbols     Export all symbols to .def
   --image-base <base>    Specify image base address
   --implib <outname>     Synonym for --output-lib
   --leading-underscore     Entrypoint with underscore.
   --machine <machine>
   --mno-cygwin           Create Mingw DLL
   --no-default-excludes    Zap default exclude symbols
   --no-export-all-symbols  Only export .drectve symbols
   --no-idata4           Don't generate idata$4 section
   --no-idata5           Don't generate idata$5 section
   --no-leading-underscore  Entrypoint without underscore
   --nodelete             Keep temp files.
   --output-def <deffile> Name output .def file
   --output-exp <outname> Generate export file.
   --output-lib <outname> Generate input library.
   --quiet, -q            Work quietly
   --target <machine>     i386-cygwin32 or i386-mingw32
   --verbose, -v          Verbose
   --version              Print dllwrap version
   -A --add-stdcall-alias    Add aliases without @<n>.
   -C --compat-implib        Create backward compatible import library.
   -D --dllname <name>       Name of input dll to put into interface lib.
   -F --linker-flags <flags> Pass <flags> to the linker.
   -I --identify <implib>    Report the name of the DLL associated with <implib>.
   -L --linker <name>        Use <name> as the linker.
   -M --mcore-elf <outname>  Process mcore-elf object files into <outname>.
   -S --as <name>            Use <name> for assembler.
   -U                     Add underscores to .lib
   -U --add-underscore       Add underscores to all symbols in interface library.
   -V --version              Display the program version.
   -a --add-indirect         Add dll indirects to export file.
   -b --base-file <basefile> Read linker generated base file.
   -c --no-idata5            Don't generate idata$5 section.
   -d --input-def <deffile>  Name of .def file to be read in.
   -e --output-exp <outname> Generate an export file.
   -f --as-flags <flags>     Pass <flags> to the assembler.
   -h --help                 Display this information.
   -k                     Kill @<n> from exported names
   -k --kill-at              Kill @<n> from exported names.
   -l --output-lib <outname> Generate an interface library.
   -m --machine <machine>    Create as DLL for <machine>.  [default: %s]
   -n --no-delete            Keep temp files (repeat for extra preservation).
   -p --ext-prefix-alias <prefix> Add aliases with <prefix>.
   -t --temp-prefix <prefix> Use <prefix> to construct temp file names.
   -v --verbose              Be verbose.
   -x --no-idata4            Don't generate idata$4 section.
   -y --output-delaylib <outname> Create a delay-import library.
   -z --output-def <deffile> Name of .def file to be created.
   @<file>                   Read options from <file>.
   @<file>                Read options from <file>
   Abbrev Offset: 0x%s
   Length:        0x%s (%s)
   Pointer Size:  %d
   Section contributions:
   Signature:     0x%s
   Type Offset:   0x%s
   Version:       %d
  %#06lx:   Name: %s  %#06lx: Version: %d  (Starting at file offset: 0x%lx)  (Unknown inline attribute value: %s)  --dwarf-depth=N        Do not display DIEs at depth N or greater
  --dwarf-start=N        Display DIEs starting with N, at the same depth
                         or deeper
  --input-mach <machine>      Set input machine type to <machine>
  --output-mach <machine>     Set output machine type to <machine>
  --input-type <type>         Set input file type to <type>
  --output-type <type>        Set output file type to <type>
  --input-osabi <osabi>       Set input OSABI to <osabi>
  --output-osabi <osabi>      Set output OSABI to <osabi>
  --plugin <name>              Load the specified plugin
  --plugin <p> - load the specified plugin
  --target=BFDNAME - specify the target object format as BFDNAME
  -D                           Use zero for symbol map timestamp
  -U                           Use actual symbol map timestamp (default)
  -D                           Use zero for symbol map timestamp (default)
  -U                           Use an actual symbol map timestamp
  -H --help                    Print this help message
  -v --verbose                 Verbose - tells you what it's doing
  -V --version                 Print version information
  -I --histogram         Display histogram of bucket list lengths
  -W --wide              Allow output width to exceed 80 characters
  @<file>                Read options from <file>
  -H --help              Display this information
  -v --version           Display the version number of readelf
  -I --input-target <bfdname>      Assume input file is in format <bfdname>
  -O --output-target <bfdname>     Create an output file in format <bfdname>
  -B --binary-architecture <arch>  Set output arch, when input is arch-less
  -F --target <bfdname>            Set both input and output format to <bfdname>
     --debugging                   Convert debugging information, if possible
  -p --preserve-dates              Copy modified/access timestamps to the output
  -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
      --with-symbol-versions  Display version strings after symbol names
  -X 32_64               (ignored)
  @FILE                  Read options from FILE
  -h, --help             Display this information
  -V, --version          Display this program's version number

  -a, --archive-headers    Display archive header information
  -f, --file-headers       Display the contents of the overall file header
  -p, --private-headers    Display object format specific file header contents
  -P, --private=OPT,OPT... Display object format specific contents
  -h, --[section-]headers  Display the contents of the section headers
  -x, --all-headers        Display the contents of all headers
  -d, --disassemble        Display assembler contents of executable sections
  -D, --disassemble-all    Display assembler contents of all sections
      --disassemble=<sym>  Display assembler contents from <sym>
  -S, --source             Intermix source code with disassembly
  -s, --full-contents      Display the full contents of all sections requested
  -g, --debugging          Display debug information in object file
  -e, --debugging-tags     Display debug information using ctags style
  -G, --stabs              Display (in raw form) any STABS info in the file
  -W[lLiaprmfFsoRtUuTgAckK] or
  --dwarf[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,
          =frames-interp,=str,=loc,=Ranges,=pubtypes,
          =gdb_index,=trace_info,=trace_abbrev,=trace_aranges,
          =addr,=cu_index,=links,=follow-links]
                           Display DWARF info in the file
  -t, --syms               Display the contents of the symbol table(s)
  -T, --dynamic-syms       Display the contents of the dynamic symbol table
  -r, --reloc              Display the relocation entries in the file
  -R, --dynamic-reloc      Display the dynamic relocation entries in the file
  @<file>                  Read options from <file>
  -v, --version            Display this program's version number
  -i, --info               List object formats and architectures supported
  -H, --help               Display this information
  -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
  -w --include-all-whitespace Include all whitespace as valid string characters
  -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
  -s --output-separator=<string> String used to separate strings in output.
  @<file>                   Read options from <file>
  -h --help                 Display this information
  -v -V --version           Print the program's version number
  -i --instruction-dump=<number|name>
                         Disassemble the contents of section <number|name>
  -r                           Ignored for compatibility with rc
  @<file>                      Read options from <file>
  -h --help                    Print this help message
  -V --version                 Print version information
  -t                           Update the archive's symbol map timestamp
  -h --help                    Print this help message
  -v --version                 Print version information
  <corrupt name>  <unknown tag %d>:   @<file>      - read options from <file>
  CRC value: %#x
  DWARF Version:               %d
  Directory: %s
  Entry	Dir	Time	Size	Name
  File: %lx  File: %s  Flags  Flags:                             0x%lx%s
  Generic options:
  ID:         ID: <unknown>
  Length:                              %ld
  Length:                      %ld
  Length:                   %ld
  Name:      %s
  No emulation specific options
  Number of columns:       %d
  Number of program headers:         %u  Number of section headers:         %u  Number of slots:         %d

  Number of used entries:  %d
  Offset into .debug_info:  0x%lx
  Offset into .debug_line:     0x%lx
  Offset size:                 %d
  Offset table
  Offset:                      0x%lx
  Options for %s:
  Options passed to DLLTOOL:
  Pointer Size:             %d
  Rest are passed unmodified to the language driver
  Segment Size:             %d
  Size of program headers:           %u (bytes)
  Size of section headers:           %u (bytes)
  Size of this header:               %u (bytes)
  Size table
  Unknown GNU attribute: %s
  Unknown attribute:
  Unsupported version (%d)
  Version:                             %d
  Version:                           %d%s
  Version:                     %d
  Version:                  %d
  Version:                 %d
  [%3d] 0x%s  [%3d] Signature:  0x%s  Sections:   [-X32]       - ignores 64 bit objects
  [-X32_64]    - accepts 32 and 64 bit objects
  [-X64]       - ignores 32 bit objects
  [-g]         - 32 bit small archive
  [D]          - use zero for timestamps and uids/gids
  [D]          - use zero for timestamps and uids/gids (default)
  [N]          - use instance [count] of name
  [O]          - display offsets of files in the archive
  [P]          - use full path names when matching
  [S]          - do not build a symbol table
  [T]          - make a thin archive
  [U]          - use actual timestamps and uids/gids
  [U]          - use actual timestamps and uids/gids (default)
  [V]          - display the version number
  [a]          - put file(s) after [member-name]
  [b]          - put file(s) before [member-name] (same as [i])
  [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
  flags:             %08x
  m[ab]        - move file(s) in the archive
  nbr symbols:   %d
  p            - print file(s) found in the archive
  q[f]         - quick append file(s) to the archive
  r[ab][f][u]  - replace existing or insert new file(s) into the archive
  s            - act as ranlib
  t[O][v]      - display contents of the archive
  version:           %08x
  version:           %u
  version:    0x%08x    x[o]         - extract file(s) from the archive
 (File Offset: 0x%lx) (bytes into file)
 (bytes into file)
  Start of section headers:           (inlined by)  (location list) (no strings):
 (start == end) (start > end) <%d><%lx>: ...
 <corrupt: %14ld> <corrupt: out of range> <unknown> At least one of the following switches must be given:
 Convert addresses into line number/file name pairs.
 Copies a binary file, possibly transforming it in the process
 DW_MACINFO_define - lineno : %d macro : %s
 DW_MACINFO_end_file
 DW_MACINFO_start_file - lineno: %d filenum: %d
 DW_MACINFO_undef - lineno : %d macro : %s
 DW_MACRO_%02x
 DW_MACRO_%02x - DW_MACRO_define - lineno : %d macro : %s
 DW_MACRO_define_strp - lineno : %d macro : %s
 DW_MACRO_define_sup - lineno : %d macro offset : 0x%lx
 DW_MACRO_end_file
 DW_MACRO_import - offset : 0x%lx
 DW_MACRO_import_sup - offset : 0x%lx
 DW_MACRO_start_file - lineno: %d filenum: %d
 DW_MACRO_start_file - lineno: %d filenum: %d filename: %s%s%s
 DW_MACRO_undef - lineno : %d macro : %s
 DW_MACRO_undef_strp - lineno : %d macro : %s
 DW_MACRO_undef_sup - lineno : %d macro offset : 0x%lx
 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
 List symbols in [file(s)] (a.out by default).
 Options are:
  -a --all               Equivalent to: -h -l -S -s -r -d -V -A -I
  -h --file-header       Display the ELF file header
  -l --program-headers   Display the program headers
     --segments          An alias for --program-headers
  -S --section-headers   Display the sections' header
     --sections          An alias for --section-headers
  -g --section-groups    Display the section groups
  -t --section-details   Display the section details
  -e --headers           Equivalent to: -h -l -S
  -s --syms              Display the symbol table
     --symbols           An alias for --syms
  --dyn-syms             Display the dynamic symbol table
  -n --notes             Display the core notes (if present)
  -r --relocs            Display the relocations (if present)
  -u --unwind            Display the unwind info (if present)
  -d --dynamic           Display the dynamic section (if present)
  -V --version-info      Display the version sections (if present)
  -A --arch-specific     Display architecture specific information (if any)
  -c --archive-index     Display the symbol/file index in an archive
  -D --use-dynamic       Use the dynamic section info when displaying symbols
  -x --hex-dump=<number|name>
                         Dump the contents of section <number|name> as bytes
  -p --string-dump=<number|name>
                         Dump the contents of section <number|name> as strings
  -R --relocated-dump=<number|name>
                         Dump the contents of section <number|name> as relocated bytes
  -z --decompress        Decompress section before dumping it
  -w[lLiaprmfFsoRtUuTgAckK] or
  --debug-dump[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,
               =frames-interp,=str,=loc,=Ranges,=pubtypes,
               =gdb_index,=trace_info,=trace_abbrev,=trace_aranges,
               =addr,=cu_index,=links,=follow-links]
                         Display the contents of DWARF debug sections
 Print a human readable interpretation of a COFF 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)
            --common                  Display total size for *COM* syms
            --target=<bfdname>        Set the binary file format
            @<file>                   Read options from <file>
  -h        --help                    Display this information
  -v        --version                 Display the program's version

 The options are:
  -a, --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
      --recurse-limit    Enable a demangling recursion limit.  This is the default.
      --no-recurse-limit Disable a demangling recursion limit.
  -D, --dynamic          Display dynamic symbols instead of normal symbols
      --defined-only     Display only defined symbols
  -e                     (ignored)
  -f, --format=FORMAT    Use the output format FORMAT.  FORMAT can be `bsd',
                           `sysv' or `posix'.  The default is `bsd'
  -g, --extern-only      Display only external symbols
  -l, --line-numbers     Use debugging information to find a filename and
                           line number for each symbol
  -n, --numeric-sort     Sort symbols numerically by address
  -o                     Same as -A
  -p, --no-sort          Do not sort the symbols
  -P, --portability      Same as --format=posix
  -r, --reverse-sort     Reverse the sense of the sort
 The options are:
  -h --help        Display this information
  -v --version     Print the program's version number
 The options are:
  -i --input=<file>            Name input file
  -o --output=<file>           Name output file
  -J --input-format=<format>   Specify input format
  -O --output-format=<format>  Specify output format
  -F --target=<target>         Specify COFF target
     --preprocessor=<program>  Program to use to preprocess rc file
     --preprocessor-arg=<arg>  Additional preprocessor argument
  -I --include-dir=<dir>       Include directory when preprocessing rc file
  -D --define <sym>[=<val>]    Define SYM when preprocessing rc file
  -U --undefine <sym>          Undefine SYM when preprocessing rc file
  -v --verbose                 Verbose - tells you what it's doing
  -c --codepage=<codepage>     Specify default codepage
  -l --language=<val>          Set language when reading rc file
     --use-temp-file           Use a temporary file instead of popen to read
                               the preprocessor output
     --no-use-temp-file        Use popen (default)
 The options are:
  -q --quick       (Obsolete - ignored)
  -n --noprescan   Do not perform a scan to convert commons into defs
  -d --debug       Display information about what is being done
  @<file>          Read options from <file>
  -h --help        Display this information
  -v --version     Print the program's version number
 The options are:
  @<file>                      Read options from <file>
 The options are:
  @<file>                Read options from <file>
  -a --addresses         Show addresses
  -b --target=<bfdname>  Set the binary file format
  -e --exe=<executable>  Set the input file name (default is a.out)
  -i --inlines           Unwind inlined functions
  -j --section=<name>    Read section-relative offsets instead of addresses
  -p --pretty-print      Make the output easier to read for humans
  -s --basenames         Strip directory names
  -f --functions         Show function names
  -C --demangle[=style]  Demangle function names
  -R --recurse-limit     Enable a limit on recursion whilst demangling.  [Default]
  -r --no-recurse-limit  Disable a limit on recursion whilst demangling
  -h --help              Display this information
  -v --version           Display the program's version

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

 Unhandled version
 Unknown macro opcode %02x seen
 [without DW_AT_frame_base] at  at offset 0x%lx contains %lu entry:
 at offset 0x%lx contains %lu entries:
 command specific modifiers:
 commands:
 emulation options: 
 flags     : %08lx ( generic modifiers:
 length: %08x
 optional:
 reserved  : %08x
#lines %d #sources %d%08x: <unknown>%c%s byte block: %c(addr_index: 0x%s): %s%c(alt indirect string, offset: 0x%s) %s%c(indexed string: 0x%s): %s%c(indirect line string, offset: 0x%s): %s%c(indirect string, offset: 0x%s): %s%d-bytes
%s
 (header %s, data %s)
%s %s%c0x%s never used%s exited with status %d%s is not a library%s is not a valid archive%s: Can't open input archive %s
%s: Can't open output archive %s
%s: Error: %s: Failed to read ELF header
%s: Failed to seek to ELF header
%s: Failed to update ELF header: %s
%s: Found separate debug info file: %s

%s: Found separate debug object file: %s

%s: Matching formats:%s: Path components stripped from image name, '%s'.%s: Reading section %s failed: %s%s: Unmatched EI_OSABI: %d is not %d
%s: Unmatched e_machine: %d is not %d
%s: Unmatched e_type: %d is not %d
%s: Unmatched input EI_CLASS: %d is not %d
%s: Unmatched output EI_CLASS: %d is not %d
%s: Unsupported EI_VERSION: %d is not %d
%s: Warning: %s: bad archive file name
%s: bad number: %s%s: can't find module file %s
%s: can't open file %s
%s: cannot find section %s%s: cannot get addresses from archive%s: failed to read archive header
%s: failed to read archive index
%s: failed to seek to archive member
%s: failed to seek to first archive header
%s: failed to seek to next archive header
%s: failed to skip archive symbol table
%s: file %s is not an archive
%s: invalid archive header size: %ld
%s: invalid output format%s: invalid radix%s: is not a COFF format file%s: mmap () failed
%s: no archive map to update%s: no open archive
%s: no open output archive
%s: no output archive specified yet
%s: no symbols%s: not a dynamic object%s: printing debugging information failed%s: stat () failed
%s: supported architectures:%s: supported formats:%s: supported targets:%s: the archive has an index but no symbols
%s: the archive index is empty
%s: the archive index is supposed to have 0x%lx entries of %d bytes, but the size is only 0x%lx
%s: unexpected EOF%s: warning: %s: warning: unknown size for field `%s' in struct'%s' is not an ordinary file
'%s': No such file'%s': No such file
(%s in frame info)(DW_OP_GNU_variable_value in frame info)(DW_OP_call_ref in frame info)(Unknown: %s)(base address selection entry)
(base address)
(declared as inline and inlined)(declared as inline but ignored)(implementation defined: %s)(in class)(inlined)(label)(no)(not inlined)(out of class)(range)(start == end)(start > end)(undefined)(unknown accessibility)(unknown case)(unknown convention)(unknown endianity)(unknown type)(unknown virtuality)(unknown visibility)(unrecognised)(unsigned)(user defined type)(user defined)(user specified))
*corrupt**invalid**undefined*, <unknown>, Base: , relocatable, relocatable-lib, unknown ABI, unknown CPU, unknown ISA, unknown v850 architecture variant.debug_abbrev section not zero terminated
.debug_info offset of 0x%lx in %s section does not point to a CU header.
32-bit relocation data4-byte
4-bytes
64-bit relocation data8-byte
8-bytes
:
  No symbols
: architecture variant: : duplicate value
: expected to be a directory
: expected to be a leaf
: unknown: unknown extra flag bits also present<End of list>
<None><OS specific>: %d<corrupt GNU_HWCAP>
<corrupt index><corrupt string tag><corrupt tag>
<corrupt: %s><corrupt><corrupt>
<could not load separate string section><index offset is too big><indirect index offset is too big><no .debug_addr section><no .debug_line_str section><no .debug_str section><no .debug_str.dwo section><no .debug_str_offsets section><no .debug_str_offsets.dwo section><no NUL byte at end of .debug_line_str section><no NUL byte at end of .debug_str section><no sym><no-strings><none><not-found><offset is too big><processor specific>: %d<time data corrupt><unknown MeP copro type><unknown name type><unknown: %d>
<unknown: %x><unknown:_%d><unknown>: %d<unknown>: %d/%d<unknown>: %lx<unknown>: %x<unknown>: 0x%xAbsent
Added exports to output fileAdding exports to output fileApplication
BFD header file version %s
CU at offset %s contains corrupt or unsupported unit type: %d.
CU at offset %s contains corrupt or unsupported version number: %d.
Can't create .lib file: %s: %sCan't have LIBRARY and NAMECan't open .lib file: %s: %sCan't open def file: %sCan't open file %s
Cannot produce mcore-elf dll from archive file: %sChecksum failureContents of %s section:

Contents of section %s:Contents of the %s section (loaded from %s):

Convert a COFF object file into a SYSROFF object file
Copyright (C) 2019 Free Software Foundation, Inc.
Corrupt attribute
Corrupt debuglink section: %s
Corrupt directory list
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_GNU_str_index indirect offset too big: %s
DW_FORM_GNU_str_index offset too big: %s
DW_FORM_GNU_strp_alt offset too big: %s
DW_FORM_line_strp offset too big: %s
DW_FORM_strp offset too big: %s
DW_OP_GNU_push_tls_address or DW_OP_HP_unknownDebug info is corrupted, %s header at %#lx has length %s
Debug info is corrupted, abbrev offset (%lx) is larger than abbrev section size (%lx)
Debug info is corrupted, abbrev size (%lx) is larger than abbrev section size (%lx)
Deleting temporary base file %sDeleting temporary def file %sDeleting temporary exp file %sDemangled name is not a function
Done reading %sEnd of Sequence

Error, duplicate EXPORT with ordinals: %sExcluding symbol: %sFPU-2.0
FPU-3.0
Failed to print demangled template
Failed to read CIE information
Failed to write CS structFailed to write TR blockFailed to write checksumFile name                            Line number    Starting address    View    Stmt
Generated exports fileGenerating export file: %sImport library `%s' specifies two or more dllsIn archive %s:
In nested archive %s:
Input file '%s' is not readable
Interface Version: %sInternal error: Unknown machine type: %dInternal error: out of space in the shndx pool.
Invalid location list entry type %d
Invalid number of dynamic entries: %s
Invalid option '-%c'
Invalid radix: %s
Invalid range list entry type %d
Keeping temporary base file %sKeeping temporary def file %sKeeping temporary exp file %sLIBRARY: %s base: %xLine length %s extends beyond end of section
List of blocks List of source filesList of symbolsLocation list starting at offset 0x%lx is not terminated.
Machine '%s' not supportedMemory section %s+%xMust provide at least one of -o or --dllname optionsNAME: %s base: %xNONENONE (None)Name                  Value           Class        Type         Size             Line  Section

Name                  Value   Class        Type         Size     Line  Section

No %s section present

No entry %s in archive.
No filename following the -fo option.
No location lists in .debug_info section!
No member named `%s'
No range lists in .debug_info section.
NoneNone
Offset %s used as value for DW_AT_import attribute of DIE at offset 0x%lx is too big.
Offset 0x%lx is bigger than .debug_loc section size.
Offset into section %s too big: %s
Only -X 32_64 is supportedOpened 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 %s bytes for %s
Out of memory allocating %u columns in dwarf frame arrays
Out of memory allocating dwo filename
Out of memory allocating file data structure
Out of memory allocating space for %s dynamic entries
Out of memory allocating space for inote name
Out of memory reading %s dynamic entries
Out of memory whilst trying to read archive symbol index
Path components stripped from dllname, '%s'.Pointer size + Segment size is not a power of two.
Print a human readable interpretation of a SYSROFF object file
Processed def fileProcessed definitionsProcessing def file: %sProcessing definitionsProcessor Specific: %lxRange list starting at offset 0x%lx is not terminated.
Range lists in %s section start at 0x%lx
Reading section %s failed because: %sRelocations for %s (%u)
Report bugs to %s
Report bugs to %s.
Scanning object file %sSection %s is empty
Section %s is too small for %d slot
Section %s is too small for %d slots
Section %s is too small to contain a CU/TU header
Section %s not foundSection %s too small for %d hash table entries
Section %s too small for offset and size tables
Section %s too small for shndx pool
Section '%s' has no data to dump.
Section definition needs a section lengthSections:
Segments and Sections:
Signature (%p) extends beyond end of space in section
Source file %sStack offset %xStandalone AppSucking in info from %s section in %sSupported architectures:Supported targets:Symbol  %s, tag %d, number %dSyntax error in def file %s:%dThe %s section contains a link to a dwo file:
The %s section contains corrupt or unsupported version number: %d.
There are %#lx extraneous bytes at the end of the section
There is %d section header, starting at offset 0x%lx:
There are %d section headers, starting at offset 0x%lx:
There is %ld unused byte at the end of section %s
There are %ld unused bytes at the end of section %s
There is a hole [0x%lx - 0x%lx] in %s section.
There is a hole [0x%lx - 0x%lx] in .debug_loc section.
There is an overlap [0x%lx - 0x%lx] in %s section.
There is an overlap [0x%lx - 0x%lx] in .debug_loc section.
This program is free software; you may redistribute it under the terms of
the GNU General Public License version 3 or (at your option) any later version.
This program has absolutely no warranty.
Time Stamp: %sTried file: %sTrue
TypeUNKNOWN: Unable to determine dll name for `%s' (not an import library?)Unable to load dwo file: %s
Unable to load/parse the .debug_info section, so cannot interpret the %s section.
Unable to locate %s section!
Unable to open base-file: %sUnable to open def-file: %sUnable to open object file: %s: %sUnable to open temporary assembler file: %sUnable to read in %s bytes of %s
Unable to read in %s bytes of dynamic data
Unable to seek to 0x%lx for %s
Undefined symbolUnexpected demangled varargs
Unexpected type in v3 arglist demangling
UnknownUnknown
Unknown AT value: %lxUnknown FORM value: %lxUnknown IDX value: %lxUnknown OSABI: %s
Unknown TAG value: %#lxUnknown location list entry type 0x%x.
Unknown machine type: %s
Unknown type: %s
Unrecognised coff symbol location: %dUnrecognised coff symbol type: %dUnrecognised coff symbol visibility: %dUnrecognised symbol class: %dUnrecognised type: %dUnrecognized H8300 sub-architecture: %ldUnrecognized XCOFF type %d
Unrecognized debug option '%s'
Unrecognized demangle component %d
Unrecognized demangled builtin type
Unrecognized form: %lu
Unrecognized symbol class: %dUnsupported architecture: %dUnsupported integer write size: %dUnsupported read size: %dUnused bytes at end of section
Usage %s <option(s)> <object-file(s)>
Usage: %s <option(s)> <file(s)>
Usage: %s <option(s)> elffile(s)
Usage: %s <option(s)> in-file(s)
Usage: %s [emulation options] [-]{dmpqrstx}[abcDfilMNoOPsSTuvV] [--plugin <name>] [member-name] [count] archive-file file...
Usage: %s [emulation options] [-]{dmpqrstx}[abcDfilMNoOPsSTuvV] [member-name] [count] archive-file file...
Usage: %s [option(s)] [addr(s)]
Usage: %s [option(s)] [file(s)]
Usage: %s [option(s)] [input-file]
Usage: %s [option(s)] [input-file] [output-file]
Usage: %s [option(s)] in-file
Usage: %s [option(s)] in-file [out-file]
Usage: %s [options] archive
Usage: readelf <option(s)> elf-file(s)
User TAG value: %#lxUsing file: %sUsing the --size-sort and --undefined-only options togetherVERSION %d.%d
Value for `N' must be positive.Version %ld
View Offset 0x%lx is bigger than .debug_loc section size.
VisibleWarning, ignoring duplicate EXPORT %s %d,%dWarning, machine type (%d) not supported for delayimport.Warning: %s: %s
Warning: '%s' has negative size, probably it is too largeWarning: '%s' is a directoryWarning: '%s' is not an ordinary fileWarning: changing type size from %d to %d
Warning: could not locate '%s'.  reason: %sWhere[%3u] 0x%lx
`N' is only meaningful with the `x' and `d' options.`u' is not meaningful with the `D' option.`u' is only meaningful with the `r' option.`x' cannot be used on thin archives.architecture: %s, argumentsarray [%d] ofbad mangled name `%s'
bfd_open failed open stub file: %s: %sbfd_open failed reopen stub file: %s: %sbig endianblockscan not determine type of file `%s'; use the -J optioncan't create %s file `%s' for output.
can't disassemble for architecture %s
can't dump section - it is emptycan't open %s `%s': %scan't set BFD default target to `%s': %scan't use supplied machine %scannot delete %s: %scannot open input file %scannot read relocationscannot read section headercannot read section headerscannot read strings table lengthcodecould not create temporary file whilst writing archivecould not determine the type of symbol number %ld
could not find separate debug file '%s'
could not open section dump filecreating %sdebug_add_to_current_namespace: no current filedebug_end_block: attempt to close top level blockdebug_end_block: no current blockdebug_end_common_block: not implementeddebug_end_function: no current functiondebug_end_function: some blocks were not closeddebug_find_named_type: no current compilation unitdebug_get_real_type: circular debug information for %s
debug_make_undefined_type: unsupported kinddebug_name_type: no current filedebug_record_function: no debug_set_filename calldebug_record_label: not implementeddebug_record_line: no current unitdebug_record_parameter: no current functiondebug_record_variable: no current filedebug_start_block: no current blockdebug_start_common_block: not implementeddebug_start_source: no debug_set_filename calldebug_tag_type: extra tag attempteddebug_tag_type: no current filedebug_write_type: illegal type encountereddefaultdisassemble_fn returned length %ddwo_idendianness unknownenum definitionenum ref to %serror: the start address should be before the end addresserror: the stop address should be after the start addressfailed to open separate debug file: %s
failed to open temporary head file: %sfailed to open temporary head file: %s: %sfailed to open temporary tail file: %sfailed to open temporary tail file: %s: %sfailed to read the number of entries from base fileflags 0x%08x:
funcfunctionfunction returninghas childreninput and output files must be differentinput file does not seems to be UFT16.
interleave width must be positiveinternal error -- this option not implementedinternal stat error on %sinvalid argument to --format: %sinvalid codepage specified.
invalid integer argument %sinvalid minimum string length %dinvalid option -f
length %d [little endianmemory
missing index typenono .loader section in file
no argument types in mangled string
no childrenno entry %s in archive
no entry %s in archive %s!no export definition file provided.
Creating one, but that may not be what you wantno infono information for symbol number %ld
no input file specifiedno operation specifiedno resourcesno symbols
nonenot set
numeric overflowoffset: %s option -P/--private not supported by this fileotherout of memory parsing relocs
pointer toprogram headerspwait returns: %sreading %s section of %s failed: %sresource namerun: %s %ssection %s %d %d address %x size %x number %d nrelocs %usection '%s' mentioned in a -j option, but not found in any input filesection .loader is too short
section contentssection definition at %x size %x
set Address to 0x%s
signaturesize %d size: %s smallestsorry - this program has been built without plugin support
stab_int_type: bad size %ustring_hash_lookup failed: %sstructure definitionstructure ref to %sstructure ref to UNKNOWN structsubprocess got fatal signal %dtried: %s
two different operation options specifiedtypeunable to open file `%s' for input.
unable to open output file %sunable to read contents of %sunknownunknown C++ encoded nameunknown demangling style `%s'unknown formatunknown format type `%s'unknown value: %x
unnamed $vb typeunrecognized --endian type `%s'unrecognized -E optionunrecognized C++ abbreviationunrecognized cross reference typeunrecognized: %-7lxunused5unused6unused7user defined: variablevars %dwait: %swarning: could not load note sectionwarning: note section is emptywill produce no output, since undefined symbols have no size.yesyes
Project-Id-Version: binutils 2.31.90
Report-Msgid-Bugs-To: bug-binutils@gnu.org
POT-Creation-Date: 2019-01-19 16:32+0000
PO-Revision-Date: 2019-01-23 22:21+0200
Last-Translator: Румен Петров <transl@roumenpetrov.info>
Language-Team: Bulgarian <dict@ludost.net>
Language: bg
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Bugs: Report translation errors to the Language-Team address.
Plural-Forms: nplurals=2; plural=(n != 1);
	%d:		(неизвестен формат за съдържание %s)	Име	Размер	Време

Имена от %s:



Имена от %s[%s]:



Неопределени имена в %s:



Неопределени имена от %s[%s]:


    Адрес              Дължина

    Адрес      Дължина

    Отмест	Име

    Отмест  Вид           Име

  Начало на заглавието на програмата:          
 Следните ключове са по избор:

%s:     формат на файл %s

Показалец за архив:

Не можа да се извлече съдържанието на раздел '%s'.

Разглобяване на раздел %s:

Възможностите за -P/--private ключ са:

Програмни заглавия:

Разделът '%s' съдържа %d запис:

Разделът '%s' съдържа %d записа:

Неправилен размер при раздел '%s': %#llx.

Заглавие на раздел:

Заглавия на раздели:

Празен раздел %s.

начален адрес 0x          Флагове: %08x         възможна <машина>: arm[_interwork], i386, mcore[-elf]{-le|-be}, ppc, thumb
       %s -M [<mri-скрипт]
       [<неизвест.>: 0x%x],       --add-stdcall-underscore Добавяне на подчертавка към stdcall имена в интерфейсната библиотека.
      --exclude-symbols <опис> Без изнасяне на <опис>
      --export-all-symbols   Изнасяне на всички имена в .def
      --identify-strict      Причинява --identify да рапортува грешка при много DLLs.
      --leading-underscore   Всички имена да са с подчертавка за представка.
      --no-default-excludes  Изчиства подразбиращите се имена за изключване
      --no-export-all-symbols  Изнасяне само на описаните имена
      --no-leading-underscore Всички имена да са без подчертавка за представка.
      --plugin ИМЕ       Зарежда зададената приставка
      --use-nul-prefixed-import-tables Използване на idata$4 и idata$5 без представка.
     --yydebug                 Включва проследяване на разбора
    .debug_abbrev.dwo:       0x%s  0x%s
    .debug_line.dwo:         0x%s  0x%s
    .debug_loc.dwo:          0x%s  0x%s
    .debug_str_offsets.dwo:  0x%s  0x%s
    Аргументи: %s
    DW_MACRO_%02x аргументи:     Описание:        Място:        Име на модул: %s
   Версия на модул : %s
     Име: %s
    Отмест.  Начало           Край             Израз
    Отмест   Начало   Край
     Версия:    --add-indirect         Добавяне на непреките извиквания към файла с "изнасяния".
   --add-stdcall-alias    Добавяне на псевдоними без @<n>
   --as <име>             Използване на <име> за асемблер
   --def <defфайл>        Име на входящ .def файл
   --dllname <име>       Име на входящ dll, за поставяне в изходящата библиотека.
   --dlltool-name <име> По подразбиране "dlltool"
   --driver-flags <флагове> Припокрива подразбиращите се флагове на ld
   --driver-name <име> По подразбиране "gcc"
   --dry-run              Показва какво ще се пусне
   --entry <вход>         Задава друга входна точка на DLL
   --exclude-symbols <спис> Изключване на <спис> от .def
   --export-all-symbols     Изнасяне на всички имена в .def
   --image-base <осн>     Задава основен адрес на образа
   --implib <изх_име>     Синоним за --output-lib
   --leading-underscore     Входни точки с подчертавка.
   --machine <машина>
   --mno-cygwin           Създаване на Mingw DLL
   --no-default-excludes    Без имена за изключване по подразбиране
   --no-export-all-symbols  Изнасяне на имена само от .drectve 
   --no-idata4           Без създаване на раздел idata$4
   --no-idata5           Без създаване на раздел idata$5
   --no-leading-underscore  Входни точки без подчертавка
   --nodelete             Запазване на временните файлове.
   --output-def <defфайл> Име на изходящ .def файл
   --output-exp <изх_име> Създаване на файл с "изнасяния".
   --output-lib <изх_име> Създаване на библиотека с "изнасяния".
   --quiet, -q            Безмълвна работа
   --target <машина>      i386-cygwin32 или i386-mingw32
   --verbose, -v          Подробно
   --version              Извежда версията на dllwrap
   -A --add-stdcall-alias    Добавяне на псевдоними без @<n>.
   -C --compat-implib        Създаване на обратно съвместима библиотека за внасяне.
   -D --dllname <име>        Име на входящо dll в интерфейсната библиотека.
   -F --linker-flags <флагове> Подава <флагове> към свързването.
   -I --identify <внас_библ> Рапортува името на DLL свързан с <внас_библ>.
   -L --linker <име>         Използва <име> за свързване.
   -M --mcore-elf <из_име>   Обработване на mcore-elf обектни файлове в <изх_име>.
   -S --as <име>             Използване на <име> за асемблер.
   -U                     Добавяне на подчертавки в .lib
   -U --add-underscore       Добавяне на подчертавка към всички имена в интерфейсната библиотека.
   -V --version              Показване на версията на програмата.
   -a --add-indirect         Добавяне на dll indirects към файла с "изнасяния".
   -b --base-file <оснфайл> Добавя основен файл при свързване.
   -c --no-idata5            Без създаване на раздел idata$5.
   -d --input-def <defфайл>  Име на .def файл за прочитане като вход.
   -e --output-exp <изх_име> Създаване на файл с "изнасяния".
   -f --as-flags <флагове>   Продаване на <флагове> към асемблера.
   -h --help                 Показване на това сведение.
   -k                     Премахване на @<n> от изнесените имена
   -k --kill-at              Премахване на @<n> от изнесените имена.
   -l --output-lib <изх_име> Създаване на интерфейсна библиотека.
   -m --machine <машина>     Създаване на DLL за <машина>.  [по подразбиране: %s]
   -n --no-delete            Запазване на временни файлове (при повтаряне запазване в повече).
   -p --ext-prefix-alias <предст> Добавяне на псевдоними с <предст>.
   -t --temp-prefix <предст> Използване на <предст> при създаване на име за временен файл.
   -v --verbose              С подробности.
   -x --no-idata4            Без създаване на раздел idata$4.
   -y --output-delaylib <изх_име> Създаване на delay-import библиотека.
   -z --output-def <defфайл> Име на .def файл за създаване.
   @<файл>                   Прочитане на команди от <файл>.
   @<файл>                Прочитане на команди от <файл>
      Отместване: 0x%s
   Дължина:       0x%s (%s)
Размер на указ.:  %d
    Дял със спомогателни:
      Подпис:     0x%s
   Вид Отмест.:   0x%s
    Версия:        %d
  %#06lx:    Име: %s  %#06lx:  Версия: %d  (Започва се с отместване: 0x%lx)  (Непозната стойност за вграждане: %s)  --dwarf-depth=Ч        Да не се показва DIEs с дълбочина Ч или по-голяма
  --dwarf-start=Ч        Показва DIEs започвайки от Ч, със същата дълбочина
                         или по-дълбоки
  --input-mach <машина>       Задава входящ тип за машина <машина>
  --output-mach <машина>      Задава изходящ тип за машината<машина>
  --input-type <тип>          Задава входящ тип за файл на <тип>
  --output-type <тип>         Задава изходящ тип за файл на <тип>
  --input-osabi <ОС-съвм>     Задава входяща двоична съвместимост за ОС на <ОС-съвм>
  --output-osabi <ОС-съвм>    Задава изходящ двоична съвместимост за ОС на <ОС-съвм>
  --plugin <име>               Зарежда указаната приставка
  --plugin <п> - зареждане на указаната приставка
  --target=BFD–ИМЕ - задава BFD–ИМЕ за формата на целевия обект
  -D                           Използване на нула като времева отметка за изобразените имена
  -U                           Използване на настоящата времева отметка за изобразените имена (по подразбиране)
  -D                           Използване на нула като времева отметка за изобразените имена (по подразбиране)
  -U                           Използване на настоящата времева отметка за изобразените имена
  -H --help                    Извежда това помощно съобщение
  -v --verbose                 Подробно - показва какво се прави
  -V --version                 Извежда сведение за версията
  -I --histogram         Показва схема на разпределението на дължините на кошниците
  -W --wide              Разрешава ширината на изхода да надвишава 80 знака
  @<файл>                Прочита опциите от <файл>
  -H --help              Показва това сведение
  -v --version           Показва версията на readelf
  -I --input-target <bfdиме>       Приема, че входния файл е във формат <bfdиме>
  -O --output-target <bfdиме>      Създава изходящ файл във формат <bfdиме>
  -B --binary-architecture <арх>   Задава изходяща архитектура, ако входа е без
  -F --target <bfdиме>             Задава входния и изходния формат на <bfdиме>
     --debugging                   Преобразува сведенията за проследяване, ако е възможно
  -p --preserve-dates              Запазва времевите отметки за промяна и достъп във изхода
  -S, --print-size       Извежда размера на определените имена
  -s, --print-armap      Включва указател за имената от членове на архива
      --size-sort        Подрежда имената по размер
      --special-syms     Включва "специални" имена към изхода
      --synthetic        Показва също "синтетични" имена
  -t, --radix=ОСНОВА     Използва ОСНОВА при извеждане на стойности
      --target=BFDИМЕ    Задава целевия обектен формат като BFDИМЕ
  -u, --undefined-only   Показва само неопределените имена
      --with-symbol-versions  Показва версията след имената
  -X 32_64               (пренебрегната)
  @ФАЙЛ                  Прочита опциите от ФАЙЛ
  -h, --help             Показва това сведение
  -V, --version          Показва версията на програмата
  -a, --archive-headers    Извеждане за сведение за заглавието на архива
  -f, --file-headers       Извеждане съдържанието на общото заглавие на файла
  -p, --private-headers    Извеждане на съдържанието на частните заглавия
  -P, --private=OPT,OPT... Извеждане на частните съдържания
  -h, --[section-]headers  Извеждане съдържанието на заглавията на разделите
  -x, --all-headers        Извеждане съдържанието на всички заглавия
  -d, --disassemble        Извеждане съдържание на изпълнимите раздели на 'assembler'
  -D, --disassemble-all    Извеждане съдържание на всички раздели на 'assembler'
      --disassemble=<име>  Извеждане съдържание на раздел <име> на 'assembler'
  -S, --source             Смесване на програмен код с разасемблиран
  -s, --full-contents      Извеждане на пълното съдържания за всички поискани раздели
  -g, --debugging          Извеждане на сведения за проследяване от обектния файл
  -e, --debugging-tags     Извеждане на сведения за проследяване по ctags начин
  -G, --stabs              Display (in raw form) any STABS info in the file
  -W[lLiaprmfFsoRtUuTgAckK] или
  --dwarf[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,
          =frames-interp,=str,=loc,=Ranges,=pubtypes,
          =gdb_index,=trace_info,=trace_abbrev,=trace_aranges,
          =addr,=cu_index,=links,=follow-links]
                           Извеждане на DWARF сведения от файл
  -t, --syms               Извеждане на съдържанието на таблицата/-ите с имената
  -T, --dynamic-syms       Извеждане на съдържанието на таблицата/-ите с динамичните имена
  -r, --reloc              Извеждане на преместваемите записи от файла
  -R, --dynamic-reloc      Извеждане на динамичните преместваеми записи от файла
  @<файл>                  Прочитане на опциите от <файл>
  -v, --version            Извеждане на версията на програмата
  -i, --info               Изброяване на поддържаните обектни формати и архитектури
  -H, --help               Извеждане на това сведение
 Командите са:
  -f --print-file-name      Преди всеки низ извежда името на файла
  -n --bytes=[число]        Намира и извежда всяка завършваща на NUL последователност от
  -<число>                    най-малко [число] знака (по подразбиране 4).
  -t --radix={o,d,x}        Извежда мястото на низа при основа 8, 10 или 16
  -w --include-all-whitespace Включване на всички знаци за празно като правилни
  -o                        Синоним за --radix=o
  -T --target=<BFD_ИМЕ>     Задава формата на двоичния файл
  -e --encoding={s,S,b,l,B,L} Избира размер на знака и подредба на байтовете:
                            s = 7-битов, S = 8-битов, {b,l} = 16-битов, {B,L} = 32-битов (b или B за старши, l или L за младши)
  -s --output-separator=<низ> Низ използван за разделител в изхода.
  @<файл>                   Прочитане на команди от <файл>
  -h --help                 Показва това сведение
  -v -V --version           Извежда номер на версия на програмата
  -i --instruction-dump=<число|име>
                         Разглобява съдържанието на раздел <число|име>
  -r                           Пренебрегнат (съвместимост с rc)
  @<файл>                      Прочитане на команди от <файл>
  -h --help                    Извежда това помощно съобщение
  -V --version                 Извежда сведение за версията
  -t                           Обновява дата и час на изобразените имена на архива
  -h --help                    Извежда това помощно съобщение
  -v --version                 Извежда сведение за версията
   <повредено име>  <неизвестна отметка %d>:   @<файл>      - прочитане на команди от <файл>
контролна сума: %#x
  DWARF версия:                %d
      Папка: %s
  Вход	Дир	Час	Разм	Име
  Файл: %lx  Файл: %sФлаговеФлагове:                             0x%lx%s
  Основни възможности:
 Ном:        Ном: <неизвестен>
  Дължина:                             %ld
  Дължина:                     %ld
  Дължина:                  %ld
   Име:      %s
  Без опции характерни за подражаване
             Колони:       %d
     Брой на прогр.заглавия:         %u   Брой заглавия на раздели:         %u  Запазени записи:         %d

       Използвани записи:  %d
  Отместване в .debug_info: 0x%lx
  Отместване в .debug_line:    0x%lx
  Размер на отместването:      %d
Таблица с отмествания
  Отместване:                  0x%lx
  Опции за %s:
  Флагове подадени към DLLTOOL:
  Размер на указател:      %d
  Остатъка се подава, непроменен, към езиковата програма
  Размер на част:           %d
Размер на прогр. заглавие:           %u (байта)
Размер на загл.на раздели:           %u (байта)
 Размер на заглавието:               %u (байта)
Размер табл.
  Непознат ГНУ признак: %s
  Непознат признак:
  Неподдържана версия (%d)
  Версия:                              %d
  Версия:                            %d%s
  Версия:                      %d
  Версия:                   %d
   Версия:                  %d
  [%3d] 0x%s  [%3d]    Подпис:  0x%s  Раздели:   [-X32]       - пренебрегва 64-битови обекти
  [-X32_64]    - приема 32- и 64-битови обекти
  [-X64]       - пренебрегва 32-битови обекти
  [-g]         - 32-бита малък архив
  [D]          - използване на нула за времева отметка и номер на потребител или група
  [D]          - използване на нула за времева отметка и номер на потребител или група (по подразбиране)
  [N]          - използване на [брой] от имена
  [O]          - показва отместването на файловете в архива
  [P]          - използване на пълни имена за пътища ако съвпадат
  [S]          - без създаване на таблица за имена
  [T]          - създаване на архив "посредник"
  [D]          - използване на настоящата времева отметка и номер на потребител или група
  [D]          - използване на настоящата времева отметка и номер на потребител или група (по подразбиране)
  [V]          - показване номер на версия
  [a]          - поставяне на файлове след [член-име]
  [b]          - поставяне на файлове преди [член-име] (също като [i])
  [c]          - без предупреждение, ако трябва да се създаде библиотека
  [f]          - отрязване на вмъкнати имена на файлове
  [o]          - запазване на първоначалните дати
  [s]          - създаване на индекс на архива (виж ranlib)
  [u]          - да се заместят само файловете, които са по-нови от текущото съдържание на архива
  [v]          - с подробности
  d            - изтриване на файлове от архива
флагове:             %08x
  m[ab]        - преместване на файлове в архива
  бр. имена  :   %d
  p            - извеждане на файлове намерени в архива
  q[f]         - бързо добавяне на файлове към архива
  r[ab][f][u]  - замества съществуващ или вмъква нови файлове в архива
  s            - държи се като ranlib
  t[O][v]      - показване съдържанието на архива
   версия:           %08x
   версия:           %u
   версия:    0x%08x    x[o]         - изваждане на файлове от архива
 (Отместване в файл: 0x%lx) (байта в файла)
 (байта в файла)
  Начало на заглавието на раздел:           (вградено от)  (списък с местоположения) (няма низове):
 (начало == край) (начало > край) <%d><%lx>: ...
 <повреден: %14ld> <повреден: извън обхват> <неизвестен> Трябва да се зададе поне един от следните ключове:
 Преобразува адрес към двойката номер на ред/име на файл.
 Копира двоичен файл, възможно е преобразуване при обработката
 DW_MACINFO_define - ред : %d макрос : %s
 DW_MACINFO_end_file
 DW_MACINFO_start_file - ред: %d ном.файл: %d
 DW_MACINFO_undef - ред : %d макрос : %s
 DW_MACRO_%02x
 DW_MACRO_%02x - DW_MACRO_define - ред : %d макрос : %s
 DW_MACRO_define_strp - ред : %d макрос : %s
 DW_MACRO_define_sup - ред : %d отместване : 0x%lx
 DW_MACRO_end_file
 DW_MACRO_import - отместване : 0x%lx
 DW_MACRO_import_sup - отместване : 0x%lx
 DW_MACRO_start_file - ред: %d ном.файл: %d
 DW_MACRO_start_file - ред: %d ном.файл: %d файл: %s%s%s
 DW_MACRO_undef - ред : %d макрос : %s
 DW_MACRO_undef_strp - ред : %d макрос : %s
 DW_MACRO_undef_sup - ред : %d отместване : 0x%lx
 Показване на сведенията от обект <файлове>.
 Показва печатаемите низове в [файлове] (станд. изход по подразбиране)
 Показва размерите на разделите на двоичните файлове
 Създаване на индекс за ускоряване достъпа до архивите
 Ако на командния ред не са зададени адреси, те ще бъдат прочетени от стандартния вход
Ако не се зададени входящи файлове се подразбира a.out
 Изброяване на имената от [файл/-ове] (a.out по подразбиране).
 Опциите са:
  -a --all               Съответства на : -h -l -S -s -r -d -V -A -I
  -h --file-header       Показва заглавието на ELF файл
  -l --program-headers   Показва заглавието на програмата
     --segments          Синоним за --program-headers
  -S --section-headers   Показва заглавията на разделите
     --sections          Синоним за --section-headers
  -g --section-groups    Показва групови раздели
  -t --section-details   Показва подробности за раздела
  -e --headers           Съответства на: -h -l -S
  -s --syms              Показва таблица с имената
     --symbols           Синоним за --syms
  --dyn-syms             Показва таблицата с динамичните имена
  -n --notes             Показва бележки за ядро (ако присъства)
  -r --relocs            Показва преместваемите (ако присъства)
  -u --unwind            Показва сведение за възстановяване (ако присъства)
  -d --dynamic           Показва динамичен раздел (ако присъства)
  -V --version-info      Показва раздел за версията (ако присъства)
  -A --arch-specific     Показва сведения особени за архитектурата (ако има)
  -c --archive-index     Показва списъка от имена и файлове на архива
  -D --use-dynamic       Използване на динамичния раздел при показване на имената
  -x --hex-dump=<число|име>
                         Разтоварва съдържанието на раздел <число|име> като байтове
  -p --string-dump=<число|име>
                         Разтоварва съдържанието на раздел <число|име> като низова
  -R --relocated-dump=<число|име>
                         Разтоварва съдържанието на раздел <число|име> като преместваеми байтове
  -w[lLiaprmfFsoRtUuTgAckK] или
  -z --decompress        Разгъва раздела преди разтоварването му
  --debug-dump[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,
               =frames-interp,=str,=loc,=Ranges,=pubtypes,
               =gdb_index,=trace_info,=trace_abbrev,=trace_aranges,
               =addr,=cu_index,=links,=follow-links]
                         Показва съдържанието на раздели за проследяване DWARF2
 Извеждане на разбираемо от човек обяснение за COFF обектен файл
 премахва имена и раздели от файловете
 Възможностите са:
 Опциите са:
  -A|-B     --format={sysv|berkeley}  Избира начин за извеждане (по подразбиране %s)
  -o|-d|-x  --radix={8|10|16}         Показва числата осмично, десетично или шестнадесетично
  -t        --totals                  Показва сумарен размер (само за Berkeley)
            --common                  Показва сумарен размер за *COM* имена
            --target=<bfdиме>         Задава формата на двоичния файл
            @<файл>                   Прочита опциите от <файл>
  -h        --help                    Показва това сведение
  -v        --version                 Показва версията на програмата

 Възможните са :
  -a, --debug-syms       Показване само на имената за проследяване
  -A, --print-file-name  Преди всяко име изведи името на входящия файл
  -B                     Също като --format=bsd
  -C, --demangle[=ИЗГЛ]  Разкодиране на имената в имена за потребителско ниво
                          ИЗГЛ, ако е зададен, може да бъде 'auto' (по подразбиране),
                          'gnu', 'lucid', 'arm', 'hp', 'edg', 'gnu-v3', 'java'
                          или 'gnat'
      --no-demangle      Да не се разкодират имената
      --recurse-limit    Разрешава ограничение в/у рекурсиите при разкодиране. По подразбиране
      --no-recurse-limit Забранява ограничение в/у рекурсиите при разкодиране
  -D, --dynamic          Показване на динамичните имена вместо нормалните
      --defined-only     Показване само на определените имена
  -e                     (пренебрегнат)
  -f, --format=ФОРМАТ    Използване на ФОРМАТ за извеждане.  ФОРМАТ може да бъде
                          'bsd', 'sysv' или 'posix'.  По подразбиране е 'bsd'
  -g, --extern-only      Показване само на външните имена
  -l, --line-numbers     Използване на сведенията за проследяване за намиране на
                          файл и номер на ред за всяко име
  -n, --numeric-sort     Подрежда имената по адрес в цифров вид
  -o                     Също като -A
  -p, --no-sort          Да не се подреждат имената
  -P, --portability      Също като --format=posix
  -r, --reverse-sort     Обръща реда на подреждане
 Опциите са:
  -h --help        Показва това сведение
  -v --version     Извежда номер на версия на програмата
 Опциите за:
  -i --input=<файл>            Име на входящ файл
  -o --output=<файл>           Име на изходящ файл
  -J --input-format=<формат>   Задава входящ формат
  -O --output-format=<формат>  Задава изходящ формат
  -F --target=<цел>            Задава COFF резултат
     --preprocessor=<прог>     Да се използва прог за преработка на rc-файл
     --preprocessor-arg=<арг>  Допълнителен аргумент за преработка
  -I --include-dir=<дир>       Включване на директория при преработка на на rc-файл
  -D --define <име>[=<стой>]   Определя ИМЕ при преработка на rc-файл
  -U --undefine <име>          Не определя ИМЕ при преработка на rc-файл
  -v --verbose                 Подробно - уведомява за извършваните действия
  -c --codepage=<codepage>     Задава кодова страница по подразбиране
  -l --language=<стой>         Задава езика при четене на rc-файл
     --use-temp-file           Използва се временен файл, вместо popen, за прочитане
                               на резултата от преработката
     --no-use-temp-file        Използва се popen (по подразбиране)
 The options are:
  -q --quick       (Остаряло - пренебрегва се)
  -n --noprescan   Да не се извършва претърсване за преобразуване на общи променливи в определения
  -d --debug       Показва сведения за проследяване на случващото се
  @<файл>          Прочита опциите от <файл>
  -h --help        Показва това сведение
  -v --version     Извежда версията на програмата
 Командите са:
  @<файл>                      Прочитане на команди от <файл>
 Командите са:
  @<файл>                Прочитане на команди от <файл>
  -a --addresses         Показва адреси
  -b --target=<bfd_име>  Установява формата на двоичния файл
  -e --exe=<изпълним>    Установява името на входящия файл (по подразбиране е a.out)
  -i --inlines           Развиване на вградени функции
  -j --section=<име>     Прочита относителни към раздела отмествания вместо адреси
  -s --basenames         Премахва имена на директории
  -f --functions         Показва имена на функции
  -C --demangle[=начин]  Разкодиране на имена на функции
  -R --recurse-limit     Разрешава ограничение в/у рекурсиите при разкодиране.  [По подразбиране]
  -r --no-recurse-limit  Забранява ограничение в/у рекурсиите при разкодиране
  -h --help              Показва това сведение
  -v --version           Показва версия на програмата

 Командите са:
  @<файл>                Прочитане на команди от <файл>
  -h --help              Показване на това сведение
  -v --version           Показване на версията на програмата

 Неподдържана версия
 Неизвестен код на макрос: %02x
 [без DW_AT_frame_base] на  на отместване 0x%lx се съдържа %lu запис:
 на отместване 0x%lx се съдържат %lu записа:
 уточнители към команда:
 команди:
 опции за подражаване: 
 флагове   : %08lx ( основни уточнители:
дължина: %08x
 възможни:
 запазено  : %08x
#редове %d #източници %d%08x: <неизвестен>%c%s байта блок: %c(адрес от списък: 0x%s): %s%c(друг непряк низ на отместване: 0x%s) %s%c(низ от списък: 0x%s): %s%c(непряк низ за ред на отместване: 0x%s): %s%c(непряк низ на отместване: 0x%s): %s%d-байта
%s
 (заглавие %s, данни %s)
%s %s%c0x%s не е използван%s завърши с код за изход %d%s не е библиотека%s е невалиден архив%s: Не може да се отвори "входен" архив %s
%s: Не може да се отвори "изходен" архив %s
%s: Грешка: %s: Пропадна прочитането на ELF заглавие
%s: Пропадна преместването на ELF заглавие
%s: Пропадна обновяването на ELF заглавие: %s
%s: Открит е отделен файл със сведения за проследяване: %s

%s: Открит е отделен файл с обекти за проследяване: %s

%s: Съвпадащи формати:%s: от името на образа са премахнати съставките за път - '%s'.%s: Не успя прочитането на раздел %s: %s%s: Несъответстващ EI_OSABI: %d не е %d
%s: Несъответстващa e_machine: %d не е %d
%s: Несъответстващ e_type: %d не е %d
%s: Несъответстващ входящ EI_CLASS: %d не е %d
%s: Несъответстващ изходящ EI_CLASS: %d не е %d
%s: Неподдържана EI_VERSION: %d не е %d
%s: Предупр.: %s: негодно име на файлов архив
%s: погрешно число: %s%s: не може да се намери файлов модул %s
%s: не може да се отвори файл %s
%s: не може да се намери раздел %s%s: не може да се получат адреси от архива%s: не можа да се прочете заглавието на архива
%s: не можа да се прочете индекса на архивът
%s: не успя преместването към член на архива
%s: не можа да се достигне първото заглавие в архива
%s: не можа да се постигне следващото заглавие на архива
%s: неуспех при пропускането на архивната таблица с имена
%s: файлът %s не е архив
%s: неправилен размер на заглавие на архив: %ld
%s: сгрешен входящ формат%s: сгрешена основа%s: не е файл в COFF формат%s: mmap () пропадна
%s: липсва "изображение на архива" за обновяване%s: няма отворен архив
%s: няма отворен "изходен" архив
%s: не е зададен "изходен" архив
%s: липсват имена%s: не е динамичен обект%s: пропадна отпечатването на сведения за проследяване%s: stat () пропадна
%s: поддържани архитектури:%s: поддържани формати:%s: поддържани цели:%s: архивът е с индекс, но е без имена
%s: празен индекс на архив
%s: очаква се индексът на архива да е с 0x%lx записа от %d байта, но размерът е само 0x%lx
%s: неочакван край на файл (EOF)%s: предупреждение: %s: предупреждение: неизвестен размер за полето '%s' на структурата'%s' не е обикновен файл
'%s': Няма такъв файл'%s': Няма такъв файл
(%s в сведение за рамка)(DW_OP_GNU_variable_value в сведение за рамка)(DW_OP_call_ref в сведение за рамка)(Непознат: %s)(основен адрес на запис за избор)
(основен адрес)
(определен като вграден и вграден)(определен като вграден, но пренебрегнат)(определен от внедряването: %s)(в клас)(вграден)(надпис)(не)(не е вграден)(извън клас)(обхват)(начало == край)(начало > край)(неопределен)(непозната достъпност)(непознат случай)(непознато споразумение)(непозната подредба)(непознат тип)(непозната действителност)(непозната видимост)(неразпознат)(без знак)(потребителски тип)(потребителски)(потребителски))
*повреден**неправилен**неопределен*, <неизвестен>, Основа: , преместваем, преместваема-библ, неизвестно двоично програмно описание (ABI), неизвестен процесор, неизвестна архитектура за инструкции (ISA), неизвестна версия на v850 архитектурараздел .debug_abbrev не завършва с нула
.debug_info отместването от 0x%lx в раздел %s не сочи към заглавие на съставна част.
32-битови преместваеми данни4-байта
4-байта
64-битови преместваеми данни8-байта
8-байта
:
  няма имена
: разновидност на архитектура: : повторна стойност
: очаква се директория
: очаква се лист
: неизвестен: присъства неизвестен бит за допълнителен флаг<Край на списък>
<нищо><особен за ОС>: %d<повреден GNU_HWCAP>
<повреден показалец> <повредена низова отметка><повредена отметка>
<повреден: %s><повреден><повреден>
<не може да се зареди отделен раздел за низове><твърде голямо отместване><твърде голямо непряко отместване><без раздел .debug_addr><без раздел .debug_line_str ><без раздел .debug_str ><без раздел .debug_str.dwo><без раздел .debug_str_offsets><без раздел .debug_str_offsets.dwo><без нулев байт в края на раздел .debug_line_str><без нулев байт в края на раздел .debug_str><няма имена><без низове><нищо><не е намерен><твърде голямо отместване><особен за процесор>: %d<повредени времеви данни>(<непознат тип><неизвестен: %d>
<неизвестен: %x><неизвестен:_%d><неизвестен>: %d<неизвестен>: %d/%d<непознат>: %lx<неизвестен>: %x<неизвестен>: 0x%xЛипсващ
Добавени "изнасяния" към изходния файлДобавяне на "изнасяния" към изходния файлПриложение
BFD заглавен файл версия %s
Съставната част при отместване %s съдържа повреден или неподдържан тип за част: %d.
Съставната част при отместване %s съдържа повреден или неподдържан номер на версия: %d.
Не може да се създаде .lib файл: %s: %sЗаедно не може LIBRARY(библиотека) и NAME(програма)Не може да се отвори .lib файл: %s: %sНе може да се отвори def-файл: %sне може да се отвори файл '%s'
Не може да се създаде mcore-elf dll от архива: %sГрешка при контролна сумаСъдържание на раздел %s:

Съдържание на раздел %s:Съдържание на раздел %s, зареден от %s:

Преобразува COFF обектен файл в SYSROFF обектен файл
Авторско право: 2019, Фондация за свободен софтуер.
Повреден признак
Повреден раздел (debuglink): %s
Повредено съдържание на директория
Не можа да се открие '%s'.  Системна грешка: %s
Не можа да се определи вградения тип за разкодиране
Библиотечният файл е създаденСъздаване на библиотечен файл: %sСъздаване на stub файл: %sТекущият отворен архив е %s
DLLTOOL име     : %s
DLLTOOL опции   : %s
DRIVER име      : %s
DRIVER опции    : %s
DW_FORM_GNU_str_index твърде голямо непряко отместване: %s
DW_FORM_GNU_str_index твърде голямо отместване: %s
DW_FORM_GNU_strp_alt твърде голямо отместване: %s
DW_FORM_line_strp твърде голямо отместване: %s
DW_FORM_strp твърде голямо отместване: %s
DW_OP_GNU_push_tls_address или DW_OP_HP_unknownПовредено сведение за проследяване - заглавието %s, на %#lx, има дължина %s
Повредено сведение за проследяване, отместването (%lx) е по-голямо от размера на раздел (%lx)
Повредено сведение за проследяване, размерът (%lx) е по-голям от размера на раздела (%lx)
Изтриване на временен основен файл %sИзтриване на временен def файл %sИзтриване на временен exp файл %sВъзстановеното име не е функция
Завърши четенето на %sКрай на последователност

Грешка, повторен EXPORT с номер: %sИзключване на: %sFPU-2.0
FPU-3.0
Пропадна извеждането на възстановено име на шаблон
%s: Пропадна прочитането на CIE сведение
Пропадна записа на CS-струkтураПропадна записването на TR-блокПропадна записването на контролна сумаИме                                  Номер ред      Начален адрес       Изглед  Израз
Създаден на файл с "изнасяния"Създаване на файл с "изнасяния" : %sImport библиотека '%s' задава две или повече dllsВ архив %s:
Във вграден архив %s:
Нечетим входящ файл '%s'
Описание версия: %sВътрешна грешка: Неизвестен тип машина: %dВътрешна грешка: недостатъчно място в сборния shndx
Неправилен тип на запис за местоположение %d
Неправилен брой на динамични записи: %s
Неправилна опция '-%c'
Сгрешена основа: %s
Неизвестен тип запис %d
Запазване на временен основен файл %sЗапазване на временен def файл %sЗапазване на временен exp файл %sLIBRARY(библиотека): %s базов адрес: %xДължината на реда %s е след края на раздела
Списък от блоковеСписък от източнициСписък от именаСписъкът с местоположения, започнал от отместване 0x%lx, не е завършен.
Не се поддържа машина '%s'Раздел от паметта %s+%xТрябва да се зададе поне една от опциите -o или --dllnameNAME(програма): %s базов адрес: %xНИЩОNONE (Нищо)Име                   Стойн.          Клас         Тип          Размер           Ред   Дял

Име                   Стойн.  Клас         Тип          Размер   Ред   Дял

Липсва раздел %s

В архива няма входна точка %s.
Няма име на файл след -fo флаг.
В раздел .debug_info липсва списък с местоположения!
Няма част с име '%s'
В раздел .debug_info липсва списък с обхват
НищоНищо
Отместването %s, използвано като стойност за признак DW_AT_import на DIE на отместване 0x%lx е твърде голямо.
Отместването 0x%lx е по-голямо от размера на раздел .debug_loc.
Отместване в раздел %s е твърде голямо: %s
Само -X 32_64 се поддържаОтворен временен файл: %sОсобеност за операционната система: %lxОпцията -I е забранена за задаване на формат за входящия файл. Моля използвайте -J.
Недостиг на паметНедостиг на памет
Недостиг на памет при заделяне на %s байта за %s
Недостиг на памет при заделянето на %u колони за рамка на dwarf масиви
Недостиг на памет при заделяне за име на DWO-файл
Недостиг на памет при заделяне на място за данни за строежа на файл
Недостиг на памет при заделяне на място за %s динамични записи
Недостиг на памет при заделяне на място за име на inote
Недостиг на памет при четене на %s динамични записи
Недостиг на памет при четене на имена от индекса на архива
От името на dll са премахнати съставките за път - '%s'.Размер на указател + размер на част не е степен на две.
Извежда четимо представяне на SYSROFF обектен файл
Обработен def-файлОпределенията са обработениОбработка на def-файл: %sОбработване на определениятаОсобен за процесор: %lxСписъкът, започнат на отместване 0x%lx, не е завършен.
В раздел %s списъкът с обхват започва от 0x%lx
Прочитането на раздел %s не успя поради: %sПремествания за %s (%u)
Подавайте доклади за грешки на %s
Подавайте доклади за грешки на %s.
Сканиране на обектния файл %sПразен раздел %s
Разделът, %s, е твърде малък за %d запис
Разделът, %s, е твърде малък за %d записа
Разделът, %s, е твърде малък за съдържанието на CU/TU заглавие
Разделът %s не е намеренРазделът, %s, е твърде малък за %d записа на таблицата
Разделът, %s, е твърде малък за таблиците с отмествания и размер
Разделът, %s, е твърде малък за сборния shndx
В раздел '%s' липсват данни за разтоварване.
Определението за раздел изисква размер на разделаРаздели:
Части и раздели:
Подписът (%p) се простира след края на отделеното за раздела
Източник %sОтместване в стека %xСамостоятелно приложениеНагазване в сведенията от раздел %s в %sПоддържани архитектури:Поддържани цели:Име %s, отметка %d, брой %dСинтактична грешка в def-файл %s:%dРаздел %s съдържа връзка към DWO-файл:
Разделът %s съдържа повреден или неподдържан номер на версия: %d.
Намерени са %#lx излишни байта в края на раздел
Има %d заглавие на раздел започващо от 0x%lx
Има %d заглавия на раздели започващи от 0x%lx
Намерен е %ld неизползван байт в края на раздел %s
Намерени са %ld неизползвани байта в края на раздел %s
Открита е дупка [0x%lx - 0x%lx] в раздел %s.
Открита е дупка [0x%lx - 0x%lx] в раздел .debug_loc.
Открито е припокриване [0x%lx - 0x%lx] в раздел %s.
Открито е припокриване [0x%lx - 0x%lx] в раздел .debug_loc.
Тази програма е свободен софтуер: можете да я разпространявате под условията
на Всеобщ Публичен Лиценз ГНУ версия 3 или по ваш избор, следваща версия.
Тази програма е без гаранции.
Времева отметка: %sПробва се файл: %sИстина
ТипНЕПОЗНАТ: Не може да се определи име на dll за '%s' (не е библиотека за внасяне?)Не можа дa се зареди def-файл: %s
Не може да се зареди/направи разбор на раздел .debug_info, така че не може да се разтълкува раздела %s.
Не можа да се намери раздел %s!
Не можа де се отвори основен файл: %sНе можа дa се отвори def-файл: %sНе можа да се отвори обектния файл: %s: %sНе може да се отвори временен файл на асемблер: %sНе можа да се прочетат %s байта от %s
Не можаха да се прочетат %s байта от динамичните данни
Не може да се премести до 0x%lx за %s
Неопределено имеНеочаквано разкодиране за "varargs"
Неочакван тип при 3-та вер. на arglist за разкодиране на имена
НеизвестенНеизвестен
Неизвестна АТ стойност: %lxНепозната стойност за FORM: %lxНеизвестен IDX стойност: %lxНеизвестен OSABI: %s
Непозната стойност за TAG: %#lxНеизвестен тип запис за местоположение 0x%x.
Неизвестен тип машина: %s
Непознат тип: %s
Неразпозната място COFF-име: %dНеразпознат тип за COFF-име: %dНеразпозната видимост за COFF-име: %dНеразпознат клас: %dНеразпознат тип: %dНеразпозната H8300 подархитектура: %ldНеразпознат XCOFF тип %d
Неразпозната опция за проследяване '%s'
Неразпозната част при разкодиране на име %d
Неразпознат вграден тип за разкодиране
Неразпозната форма: %lu
Неразпознат клас: %dНеподдържана архитектура: %dНеподдържан размер за записване на цяло число: %dНеподдържан размер за четене: %dНеизползвани байтове в края на раздел
Употреба %s <опции> <обектни файлове>
Употреба: %s <опции> <файлове>
Употреба: %s <опции> <обектни файлове>
Употреба: %s <опци-я/-и> вх-файлове
Употреба: %s [опции за подражаване] [-]{dmpqrstx}[abcDfilMNoOPsSTuvV] [--plugin <име>] [член-име] [брой] архивен-файл файл...
Употреба: %s [опции за подражаване] [-]{dmpqrstx}[abcDfilMNoOPsSTuvV] [член-име] [брой] архивен-файл файл...
Употреба: %s [команда(-и)] [адрес(-и)]
Употреба: %s [опции] [файлове]
Употреба: %s [опция/-и] [входящ-файл]
Употреба: %s [опци-я/-и] [вх-файл] [изх-файл]
Употреба: %s [команда(-и)] вх-файл
Употреба: %s [опци-я/-и] вх-файл [изх-файл]
Употреба: %s [команди] архив
Употреба: readelf <опции> elf-файлове
Потребителска стойност за TAG: %#lxИзползва се файл: %sПри използването на опциите --size-sort и --undefined-only заедноВЕРСИЯ %d.%d
Стойността на 'N' трябва да е положителна.Версия %ld
Отместването, на изгледа, 0x%lx е по-голямо от размера на раздел .debug_loc.
ВидимоПредупреждение, пренебрегване на повторен EXPORT %s %d,%dПредупреждение: типа (%d) за машина не се поддържа при отложени внасяния.Предупреждение: %s: %s
Предупреждение: '%s' е с отрицателен размер. Може би е много голямПредупреждение: '%s' е директорияПредупреждение: '%s' не е обикновен файлПредупреждение: промяна на размера на типа от %d на %d
Предупреждение: не може да се намери '%s', причина: %sКъде[%3u] 0x%lx
'N' има смисъл само с команди 'x' и 'd'.'u' няма смисъл с опция 'D'.'u' има смисъл само с команда 'r'.'x' не може да се използва в архиви "посредници" (thin archives).архитектура: %s, аргументимасив [%d] отнеправилно кодирано име '%s'
bfd_open не успя да отвори stub файл: %s: %sbfd_open не успя да отвори stub файл: %s: %sводещ старши байтблоковене може да се определи типът на файла '%s'; да се използва -J флагне можа да се създаде %s файл '%s' за изход.
не можа да се разглоби за архитектура %s
празен раздел не може да се разтоварине може да се отвори %s '%s': %sподразбираща се BFD цел не може да се установи на '%s': %sне можа де се използва зададената машина %sне може да се изтрие %s: %sне можа да се отвори входящ файл %sпреместванията не се четатне можа да се прочете заглавието на разделане може да се прочетат заглавията на часттане можа да се прочете дължината на таблицата с низовекодне можа да се създаде временен файл, при записване на архиване може да се определи типа на име с номер %ld
не можа да се намери отделен файл за разтоварване '%s'
не може да се отвори файл за разтоварване на разделсъздаване на %sdebug_add_to_current_namespace: липсва текущ файлdebug_end_block: опит за затваряне на най-горния блокdebug_end_block: липсва текущ блокdebug_end_common_block: не е внедренdebug_end_function: липсва текуща функцияdebug_end_function: не са затворени някой от блоковетеdebug_find_named_type: няма текуща съставна частdebug_get_real_type: циклично сведение за проследяване на %s
debug_make_undefined_type: неподдържан начинdebug_name_type: липсва текущ файлdebug_record_function: липсва извикване на debug_set_filenamedebug_record_label: не е внедренdebug_record_line: липсва текуща частdebug_record_parameter: липсва текуща функцияdebug_record_variable: липсва текущ файлdebug_start_block: липсва текущ блокdebug_start_common_block: не е внедренdebug_start_source: липсва извикване на debug_set_filenamedebug_tag_type: опитана е отметка в повечеdebug_tag_type: липсва текущ файлdebug_write_type: сблъскване с неправилен типподразбиранеdisassemble_fn върна дължина %ddwo_idнепозната подредба на байтовеопределение на изброимизброим, указващ към %sгрешка: началният адрес не може да е преди крайниягрешка: адресът за спиране трябва да е след началнияне успя да се отвори отделен файл за проследяване: %s
не успя да се отвори водещ временен файл: %sне успя да се отвори водещ временен файл: %s: %sне успя да се отвори краен временен файл: %sне успя да се отвори краен временен файл: %s: %sпропадна прочитането на броя записи от базовия файлфлагове 0x%08x:
функцияфункцияфункция връщащас децавходящият и изходящият файл трябва да са различниизглежда входящият файл не е в UFT16.
Ширината за прескачане трябва да е положителнавътрешна грешка -- тази команда не е осъщественавътрешна грешка при определяне признаците на файл %sсгрешен аргумент за --format: %sуказана е неправилна кодова-страница.
сгрешен аргумент за цяло число %sсгрешена минимална дължина на низ %dсгрешена опция -f
дължина %d [водещ младши байтпамет
липсва тип на индексневъв файла липсва раздел .loader
липсва тип на аргумент в кодирания низ
без децав архива липсва входна точка %s
няма входна точка %s в архива %s!не е предвиден файл с определения за изнасяне.
Ще се създаде един, но може би не такъв, какъвто се очаквабез сведениебез сведение за име с номер %ld
не е зададен входящ файл не е зададена операциялипсват ресурсиняма имена
нищоне е установен
числено препълванеотместване: %sопцията -P/--private не се поддържа за този файлдругонедостиг на памет при анализ на преместванията
указател къмпрограмно заглавияpwait върна: %sне успя четенето на раздел %s от %s: %sиме на ресурспуска: %s %sраздел %s %d %d адрес %x размер %x брой %d премествания %uразделът '%s, зададен от -j опция, не е намерен във входящите файловетвърде къс раздел .loader
съдържание на разделопределение на раздел в %x размер %x
задава адреса на 0x%s
подписразмер %d размер: %sнай-малъкза съжаление, тази програма е създадена без поддръжка на приставки
stab_int_type: неправилен размер %ustring_hash_lookup не успя: %sопределение на структураструктура указваща към %sструктура указваща към НЕПОЗНАТА структураподпроцесът получи сигнал за прекъсване %dизпробван: %s
указани са две различни опции за операциятипне можа да се отвори файл '%s' за вход.
не можа де се отвори изходящият файл %sне можа да се прочете съдържанието на %sнеизвестеннепознато C++ именепознат начин за разкодиране '%s'неизвестен форматнеизвестен формат '%s'неизвестена стойност: %x
безимен $vb типнеразпознат тип за подредба (--endian) '%s'неразпозната -E опциянеразпознато C++ съкращениенеразпознат тип за кръстосана отпратканеразпознат: %-7lxнеизползвано5неизползвано6неизползвано7определен от потребител: променливапроменл. %dчакане: %sПредупреждение: не може да се зареди раздел .noteПредупреждение: разделът .note е празенняма да има извеждане, защото неопределените имена нямат размер.дада