Training courses

Kernel and Embedded Linux

Bootlin training courses

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

Bootlin logo

Elixir Cross Referencer

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
Þ•ì|7C	Ünè“é“ö“
”#”AB”?„”:Ĕÿ”•)•$H•3m•¡•®•%Εô•A–&H–o–ˆ–¡–º–ʖ é–
—*—C—Z—g—Pz—˗*ã—9˜6H˜;˜»˜F͘6™6K™:‚™5½™,ó™D šNešJ´š)ÿšG)›:q›B¬›Lï›)<œBfœL©œöœD#Gh°ϝáõ
ž"ž3AžužŒž0žžϞߞïž+	Ÿ+5Ÿ+aŸ#Ÿ±ŸɟҟðŸ( ?0 >p %¯ &Õ (ü )%¡GO¡7—¡Ï¡æ¡¢#¢<¢W¢w¢¢«¢Á¢Ù¢,í¢£*£C£[£r££—£±£1È£ú£¤¤/¤J¤#b¤+†¤&²¤5Ù¤¥'¥A¥W¥q¥Š¥¡¥$·¥Ü¥õ¥¦-¦$B¦g¦{¦¦<©¦æ¦õ¦
§§&§ >§_§z§Š§ª§Ƨæ§ÿ§¨*+¨V¨h¨&z¨¡¨0µ¨æ¨"ú¨„©	¢©¬©#¿©ã©ü©
ª&ª"?ªbª"vª#™ª#½ªáª#öª#«>«K«i«‡««•«š«
·««Ç«!Í« 﫬¬¬2¬R¬r¬w¬‹¬!¬²¬¹¬¿¬ĬɬϬÓ¬جô¬"
­0­5­U­i­&‰­B°­ó­®®®$®*®/®A®H®\®c®|®®¡®²®îÔ®å®ý®	¯
¯
$¯
2¯
=¯
H¯
S¯^¯
s¯$~¯
£¯#®¯%Ò¯
ø¯°°$-°R°p°!Š°¬°Á°
а
Û°	é°ó°
±±±.±H±Z±i±€±›±ª±ñÒ±Ù±ù±(	²/2²b²t²+ƒ²¯²A˲
³'³A³[³8p³©³Á³Ö³&ð³´6´2Q´?„´&Ä´ë´(
µ3µ"Fµiµ*‰µ6´µ{ëµrg¶xÚ¶S·:i·¤·D¶·*û·7&¸$^¸'ƒ¸*«¸!Ö¸=ø¸A6¹Ax¹º¹%Ù¹Dÿ¹Dºsbº.Öº,»*2»%]»4ƒ»¸»-×»2¼L8¼;…¼©Á¼Gk½8³½Hì½45¾7j¾9¢¾'ܾ+¿U0¿Z†¿Oá¿C1À;uÀ$±ÀÖÀ@óÀm4ÁJ¢Á6íÁ6$Â)[Â7…Â@½ÂHþÂBGÃJŠÃ-ÕÃ;Ä8?Ä2xÄ¿«ÄVkÅ\ÂÅ:Æ:ZÆB•ÆTØÆT-ÇT‚lj×Ç;aÈmÈ[ÉMgÉ<µÉDòÉ^7Ê|–ÊDˀXË1ÙËKÌJWÌ>¢ÌmáÌ6OÍ>†Í>ÅÍ.Î-3ÎEaÎ<§Î=äÎB"Ï?eÏ?¥ÏDåÏB*Ð?mÐ?­Ð,íÐ'ÑBÑ6_Ñ0–Ñ/ÇÑ!÷ÑÒ&-Ò(TÒ;}Ò@¹Ò$úÒÓ73Ó!kÓ#Ó&±Ó8ØÓCÔ UÔ vÔ)—Ô.ÁÔ0ðÔ?!Õ.aÕ.Õ/¿Õ)ïÕ/Ö;IÖh…Ö<îÖA+×<m×/ª×-Ú×&ØM/Ø2}Ø2°ØNãØU2ÙNˆÙo×Ù+GÚAsÚ7µÚ9íÚT'Û5|Û#²Û.ÖÛ.Ü%4Ü7ZÜ2’Ü7ÅÜEýÜ>CÝ1‚Ý:´ÝUïÝ2EÞoxÞ(èÞ(ß3:ß[nßZÊß+%à+Qà}à/—à(Çà7ðà<(á?eáQ¥á3÷á5+â'aâ=‰â:ÇâGã<Jã"‡ãLªã6÷ãK.äDzä!¿ä:áä7åTårå.Žå.½åìå1æ>æ'[æ%ƒæ ©æEÊæ4ç(Eç;nçHªç?óç<3èGpè@¸è7ùè.1é*`é<‹é7Èé1ê82ê:kê2¦ê+Ùêtë/zë ªë-Ëë]ùë0WìJˆì>ÓìAí.Tí+ƒí8¯íèí*îI3î$}î+¢îÎîìîAïHGï>ï+ÏïIûï9Eð;ð»ð;Ûð;ñSñ+nñGšñ.âñ.ò5@ò@vò@·òIøò=BóI€óIÊó4ôIô9hô,¢ô.Ïô/þô'.õkVõuÂõ@8ö5yö¯ö2Ìö.ÿö*.÷>Y÷1˜÷)Ê÷?ô÷!4ø#Vø.zø8©ø*âø 
ùA.ùEpùB¶ùBùù:<ú3wú$«ú2ÐúIû:Mû<ˆû3Åû5ùû&/ü%Vü4|ü&±ü4Øü&
ý14ý$fý$‹ý.°ýßý&ýý&$þ<Kþ#ˆþ*¬þ'×þ>ÿþB>ÿ3ÿ&µÿ Üÿ"ýÿ! !B!d%†!¬ Î!ï#!5!W!y$›$À å"!)#K$o”"´"×!ú!>^!z#œ"À#ã!')3Ql…@ò?3GsF»JHMK–GâB*Xm4Æ/û+4J ! GÂ4
	0?	p	(‡	.°	(ß	*
63
2j
5
8Ó
WZdB¿5=8<v(³-Ü0

;
OU
"¥
/È
&ø
!@Ai‚Eì021c*•!À4â;&S$z'Ÿ=ÇDJ2h0›CÌLG]C¥Jé`4r•AJSÌ< a]a¿f!fˆFï-62d(—3À1ô,&-SDBÆ4	6>*u# 2Ä*÷-".P*(ª]ÓJ16|³Î4è'DECŠCÎE^X]·)(?+h$”)¹)ã7
9E&&¦&Í2ô,' =T ,’ ¿ +Ý 	!-!M!j!,‰!#¶!1Ú!*"'7"&_"%†"&¬"'Ó")û",%#%R#*x#$£#%È#%î#1$'F$*n$"™$#¼$"à$&%-*%,X%[…%Cá%G%&Cm&K±&Wý&GU'9'(×'*(+(3K(4(>´(2ó(5&)@\)P)3î)P"*2s*A¦*Kè*@4+Ku+-Á+`ï+>P,J,2Ú,<
-;J-7†-3¾-/ò-?".7b.Aš.*Ü.1/;9/2u/W¨/O0&P03w0[«0W1-_1o1+ý1])2-‡2+µ2á22ÿ2)23V\3<³3(ð334#M4%q42—4Ê42ê4$53B5=v5;´5Bð5A36:u62°6?ã6#7<B7879¸7ò78&08W8›p8D9'Q9,y91¦9'Ø9$:/%:-U:0ƒ:&´:8Û:6;6K;‚;.¡;+Ð;$ü;"!<7D<!|<%ž<AÄ<G=6N==…=:Ã=:þ=D9>8~>9·>Cñ>:5?7p?8¨?Pá?D2@9w@,±@0Þ@#A3A-NA6|A³A7ÏA;B:CB:~B!¹B3ÛB%C.5CdCL„C1ÑC*D%.D$TD9yDO³D#E,'E1TEC†E6ÊE(F5*F"`F.ƒF8²FGëFU3G>‰G ÈGéG!H )H'JHbrH3ÕH)	I=3I%qI*—I0ÂI&óI&J7AJfyJ7àJ]K8vK¯KOÎK,L+KLYwL)ÑL;ûL07M/hM?˜M9ØM6N/INCyN&½NWäNQ<OŽO®O½O!ÒOôOR
PF]PF¤P:ëP&Q9QMQ_QyQ
Q'›QÃQ
ÏQÝQ%îQ\R;qR­R¿RÕRØRõRS	S%S7SHS,US‚S–S¬S"ÆS/éS/T2IT9|T#¶T'ÚT2U35UiU;yUµU¼UÄUÙUéUðUøUV!V6VHV[VrVV¡V¿V	ÞVèV	W"W+3W#_W,ƒW:°WëWýW)X/CX?sX=³X	ñX"ûXY5Y+>YjYvYzYYŸY±Y'ÃYëY Z#)ZMZ>gZ<¦ZãZ õZ'[7>[0v[D§[,ì['\A\a\s\$‘\$¶\'Û\%]')]Q]o]]"¯]Ò]â]÷]^#^)9^c^2y^#¬^-Ð^Iþ^:H_/ƒ_8³_2ì_[`1{`<­`Bê`,-a-Za)ˆa.²a-áab6/bYfbbÀb;#c)_c!‰cG«c1óc$%dJdH_d5¨d%Þde5!eWe
le"weše¬e´e0¼eíef!f6fCfRf
pf~fBf/Óf+g8/ghg$~g!£g1Åg÷gh+5hah
uh€h9ŸhÙh'ëhi%i.Ci-riG i3èij";j)^j*ˆjK³j ÿj k%=kckvk•k.§kÖk2ôk,'l)Tl"~l¡l³l$Ìl*ñl+mHm em†m5˜mÎm	àmêmümn$nDn^non~nn	—n4¡nÖnßn
öno"o%)oOo[ojooo³oÅoåoþop2pDp\p-zp¨pºpÌpàpúpDq¥_qr)r/Dr'trœr«r½rÏrÖr!Ýr.ÿr,.s:ws%²s%Øsþs?t9WtC‘t=ÕtCu=Wu"•u[¸u?vTvsv)vºvÃvvÞv*Uw€w&’w¹wÙwëwòw
ùw(x-x'?xgx„xœx¼x#Ôx$øx,y.Jy,yy.¦yÕy"òy,z.Bz!qz1“z0Åz2öz,){.V{#…{©{É{(Ý{/|!6|X|(u|#ž|+Â|î|,} 4}U}n}Ž}¢}Â}#á}-~"3~V~h~€~“~¬~¸~Í~ß~2ú~$-&Ry6™	Ð!ÚDüDA€/†€?¶€ö€/>8wJˆMӁ8!‚Z‚z‚‘‚;¤‚à‚7ý‚-5ƒcƒJlƒ‰·ƒ(A„7j„¢„*¼„ç„ÿ„……5…F…\…y…"……#¨…%̅ò…†',†T†Jf†J±†Jü†IG‡:‘‡Ȧ;ˆ:Jˆ6…ˆ+¼ˆ;èˆF$‰@k‰;¬‰:è‰Q#Š/uŠB¥Š;èŠK$‹Fp‹a·‹/Œ<IŒ-†Œ-´Œ/âŒ7BJ!i¯DŽd^Ž.Î,òŽfC†ʏ#é@
4N8ƒH¼7‘=‘˜]‘ö‘’$’6’2K’.~’$­’Ғߒì’ü’““.“G“_“w“d“ô“6”M>”MŒ”<ڔg•b•<â•E–1e–(—–$À–å–û–4—'L—$t—7™—їâ—ú—˜"˜:˜R˜d˜v˜ˆ˜š˜´˜Ϙá˜ò˜
™)™2H™{™”™-®™+ܙ+š*4š	_š	iš
sš
~š‰šžš­ššњ1֚›-'›U›'t›"œ›¿›ݛò›û›,œ]Fœ=¤œ(âœZZfEÁAžGIžC‘žW՞W-Ÿ9…Ÿ9¿Ÿ-ùŸ8' 4` 3• 9É 4¡28¡7k¡5£¡7Ù¡B¢ET¢Bš¢CÝ¢A!£'c£.‹£,º£+ç£*¤.>¤2m¤  ¤[Á¤@¥:^¥#™¥6½¥<ô¥&1¦2X¦=‹¦;ɦ8§<>§%{§¡§¾§NÔ§-#¨OQ¨ ¡¨>¨9©
;©*F©1q©&£©&Ê©!ñ©ª,2ªJ_ª7ªª
âªðªÿª«&«9«L«7i«6¡«6Ø«¬$/¬_T¬"´¬A׬­,7­2d­—­§­¾¸­»w®3¯N¯i¯;‰¯=ů*°L.°{°Ž°£°¸°4Ç°ü°0±95±o±‰±‘±™±µ±H¼±²²2$²OW²§²Ʋ*˲ ö²³5³=³J³ d³…³Ž³¢³·³ͳá³÷³´+´<´N´b´Nj´¹´½´#Õ´ù´6µHµ hµ8‰µµÔµäµìµ4¶6¶J¶^¶r¶…¶
˜¶L¦¶ ó¶D·PY·ª·¼·Ï·3ê·!¸@¸G¸"O¸r¸‚¸M‘¸߸÷¸¹#¹,6¹%c¹'‰¹)±¹$Û¹(º)º0Eº
vº,º®º̺æºîº
»#»8»'P»x»’»¬»"¸»Û»ú»¼#¼:¼7Q¼‰¼¢¼·¼ɼܼð¼½½0½-O½)}½>§½7æ½E¾gd¾x̾7E¿E}¿4ÿ%ø¿-À;LÀ!ˆÀªÀ!ÃÀ0åÀ5Á&LÁ<sÁ<°Á2íÁ/ Â.PÂ=Â/½Â6íÂ?$ÃdÃãÃ,§ÃÔÃæÅóÅÆ"%ÆWHÆS ÆGôÆ<ÇUÇiÇ&‰Ç6°Ç
çÇõÇ%È;ÈTMÈ(¢ÈËÈæÈÉÉ /É"PÉ!sɕɲÉÊÉÚÉVðÉGÊ._Ê>ŽÊAÍÊ@ËPËPjËE»Ë>ÌB@ÌDƒÌ.ÈÌJ÷ÌVBÍO™Í/éÍEÎE_ÎL¥ÎXòÎ/KÏL{ÏXÈÏ!Ð<ÐQWÐE©Ð ïÐÑ&Ñ:ÑTÑ#kÑ7ÑÇÑÞÑ=ðÑ.Ò>ÒNÒ,hÒ,•Ò,ÂÒ#ïÒÓ-Ó6ÓTÓ'mÓ=•Ó<ÓÓ"Ô%3Ô%YÔ(ÔK¨Ô9ôÔ.ÕGÕgՄ՝չÕÙÕóÕÖ&ÖDÖ,XÖ…Ö•Ö®ÖËÖæÖùÖ×*×6A×x××š×³×Î×*ç×8Ø.KØ<zØ·ØÑØìØÙ Ù9ÙPÙ1f٘ٱÙ'ÑÙùÙ)Ú:ÚPÚeÚ<~Ú»ÚÊÚ
ÙÚçÚüÚ(ÛAÛ\ÛnÛŽÛ ¬ÛÍÛæÛÜ*ÜDÜVÜ,hÜ•Ü0©ÜÚÜ'îÜ’Ý©Ý¶Ý#ÉÝíÝÞÞ4Þ$OÞtÞ%ˆÞ#®Þ#ÒÞöÞ#
ß#.ßRßaßßžß¤ß¬ß ±ß
ÒßÝßâß$èß0
à>àCàHàaà€àŸà¤àÁà-Æàôàûàáááááá6á$Oátáyá˜á"±á+ÔáDâEâdâiânâuâ{â€â’â™â²â¹â×âðâãã#ã4ãEãYã	mã
wã
…ã
“ã
žã
©ã
´ã¿ã
Õã0àã
ä-ä+Jä
vää“ä*ªäÕäôä*å9åPåaåmå	å‹å
å«å²åÌåêåüåæ*æIæ!]ææŒæ"“æ¶æ8ÇæAçBçTç2gçšçA¶çøçè-èGè6`è—è±èÆè1àè)é<é9Wé?‘é1Ñé)ê,-êZê"pê%“ê*¹ê6äê…ëz¡ëyì–ì>³ìòìRí8Yí4’í.Çí0öí,'î"TîEwîJ½î=ï&Fï3mïN¡ï!ðï…ð3˜ð.Ìð,ûð'(ñ9Pñ'Šñ3²ñAæñW(òA€ò®ÂòOqó@ÁóRô9Uô<ôDÌô)õ.;õbjõgÍõ[5öH‘öGÚö)"÷#L÷Fp÷}·÷T5ø4Šø>¿ø'þøG&ù?nùK®ùAúùM<ú3ŠúA¾ú<û;=ûÅyû_?üaŸü@ý@BýIƒýXÍýX&þXþŽØþ?gÿ§ÿd'WŒEäL*lw”äPyˆÊ2SR†QÙC+xo3èHHe,®4ÛK@\AFßC&CjH®F÷C>C‚.Æ%õ	29	5l	0¢	/Ó	
2
&Q
=x
B¶
)ù
#B8({&¤+ËC÷L;$ˆ$­-Ò2
43
Ih
2²
3å
7-Q76·nî:]G˜:à15M6ƒXº44H`}bÞ]A~Ÿ'NF<•AÒf4{,°AÝ>1^A0Ò=LAEŽ3Ô;[D? yà3Z3Ž:Â^ýe\/Â0ò#5?0uH¦@ïC0Xt8Í=.DFs@ºVûFR"™M¼8
JCGŽ$Ö8û=4(r ›9¼@ö,7 >d £ + 5î -$!MR!E !)æ!>"PO"B "Dã"N(#Cw#6»#1ò#.$$<S$B$<Ó$C%BT%:—%0Ò%&0‘&#Â&/æ&l'<ƒ'SÀ'G(F\(5£(3Ù(;
)I)-i)U—)0í)0*(O*x*I˜*Vâ*O9+2‰+\¼+A,N[,*ª,EÕ,E-a-1-H³-0ü-0-.7^.B–.BÙ.L/<i/M¦/Lô/FA0%ˆ0O®0/þ06.14e10š1rË1|>2F»2=3*@34k32 3*Ó3Jþ3>I4,ˆ4=µ4)ó4)5.G5Bv5,¹5(æ5N6Y^6W¸6W7Ch77¬7'ä7<8OI8E™8Eß85%9?[92›9-Î98ü9.5:<d:-¡:6Ï:,;&3;7Z; ’;,³;,à;C
<(Q<1z<%¬<AÒ<N=7c=%›=&Á=(è='>(9>(b>+‹>'·>&ß>'?).?'X?'€?'¨?$Ð?*õ?& @(G@!p@)’@*¼@%ç@(
A(6A'_A'‡A%¯AÕA'õA)B2GB)zB'¤B3ÌB>Cq?CK±CIýCQGDP™DTêDM?E`ETîENCFi’FGüF8DG(}GG¦G%îG%HP:H;‹H:ÇHI."I/QI-I1¯I>áI9 J<ZJ@—JcØJf<KK£K<ïKF,L@sL.´L2ãL5MLMWiM0ÁM6òM0)N#ZNK~N~ÊNQIO5›O2ÑO)P*.P<YPC–P+ÚP&Q/-QE]QQ£QõQ8R9MRH‡RSÐRO$SHtSU½SiTv}TIôT>U^ÎUF-VltVmáVqOWsÁWP5X8†X3¿X+óX?Y6_Y<–Y2ÓYIZGPZ=˜Z@ÖZ5[4M[6‚[5¹[/ï[4\0T\-…\g³\Q]>m]¬]Ê]<ç]*$^KO^J›^Jæ^L1_e~_dä_1I`0{`3¬`,à`2
a/@a>paA¯a0ña*"b-Mb:{b,¶bCãb0'cXc3vcªc5Äc%úc+ dBLd*d7ºd:òd/-e.]e-Œe.ºe/ée.f4Hf-}f2«f,Þf7g-Cg;qg1­g0ßg-h.>h-mh1›h5Íh4ik8iL¤iZñiELjS’jRæjZ9kC”k3Øk*l$7l;\l8˜lAÑl6m=JmIˆmNÒm2!nPTn/¥n<ÕnFo;YoG•o6Ýoep<zpH·p7qD8q3}q?±q<ñq3.rMbr2°rMãr21s7dsAœs7ÞsbtXyt)Òt:üth7ud u5vv;v.²vgáv3Iw;}w+¹w9åw%xZEx; x/Üx:y*Gy)ry6œy&Óy6úy,1z8^zB—zJÚzQ%{Nw{GÆ{:|FI| |D±|@ö|A7}y}&™}=À}þ}¨~JÃ~&150g&˜#¿.ã,€3?€%s€4™€<΀BN3k)Ÿ"Ɂ#ì?‚#P‚(t‚F‚Lä‚91ƒ@kƒ<¬ƒ=éƒG'„:o„<ª„Fç„<.…:k…:¦…aá…TC†N˜†9ç†2!‡%T‡z‡-˜‡7Ƈþ‡AˆA[ˆBˆ?àˆ ‰7?‰#w‰5›‰'щYù‰?SŠ-“Š'ÁŠ/éŠD‹V^‹+µ‹:á‹AŒK^Œ?ªŒ)êŒ>)S+}?©LéY6ŽHŽ!َ!ûŽ11O4j¶6!3XDŒ,ѐ9þ78‘,p‘6‘>ԑi’:}’r¸’A+“ m“^Ž“0í“*”[I”,¥”BҔ9•5O•H…•FΕE–D[–L –(í–j—W—#ٗ
ý—˜)˜ I˜_j˜SʘS™Gr™º™ϙå™ø™š*š+7šcšpšš%šbµš;›T›e›|›%›¥›´›ϛޛð›
œ,œ<œQœiœ"„œ4§œ8ܜ4>J&‰*°6۝>žQžB`ž£žªž²žʞٞàžèžüžŸ&Ÿ8ŸKŸ.aŸŸ"«Ÿ"Ο
ñŸ!üŸ #- 5Q -‡ 2µ Fè /¡ A¡(b¡.‹¡Hº¡I¢	M¢&W¢~¢ž¢4ª¢ߢë¢ï¢££0£0B£"s£,–£-ã"ñ£P¤Qe¤·¤%Ф1ö¤7(¥2`¥G“¥2Û¥-¦ <¦]¦!p¦&’¦&¹¦)à¦'
§)2§\§!|§!ž§$À§å§"ú§$¨B¨b¨)w¨¡¨<¶¨0ó¨4$©IY©A£©3å©=ª5WªdªAòªV4«<‹«&È«)ï«:¬7T¬:Œ¬"Ǭ?ê¬b*­f­Jô­4?®$t®H™®>â®$!¯F¯CZ¯1ž¯,Яý¯7°!S°u°%†°¬°¾°Æ°?ΰ±$+±P±k±±“±±±ıQÖ±1(²1Z²=Œ²ʲ+æ²-³8@³$y³&ž³1ų÷³
´&´AE´‡´*™´Ä´!Ö´9ø´62µUiµG¿µ-¶(5¶/^¶3Ž¶O¶&·"9·/\·Œ·"Ÿ··5×·%
¸43¸3h¸5œ¸.Ò¸¹!¹$5¹8Z¹3“¹'ǹ ﹺ:"º]º	oºyº‹º¥º ¹ºÚºôº»»/»	6»<@»}»†»
¤»²»&¹»5à»¼#¼8¼M¼m¼…¼˜¼¸¼Ò¼ò¼	½½4½9T½Ž½Ÿ½¶½!ʽ%ì½O¾¦b¾	¿9¿?X¿,˜¿Å¿Õ¿ç¿ù¿À&À+.À)ZÀ„À>¢À*áÀ)Á6ÁHUÁFžÁCåÁB)ÂHlÂ@µÂ+öÂk"ÃCŽÃ"ÒÃ#õÃ3Ä	MÄWÄ{qÄ0íÄÅ#0Å(TÅ}ŏŖÅ
Å4¨ÅÝÅ/ïÅÆ<ÆTÆtÆ#Æ$±Æ<ÖÆ9Ç<MÇ9ŠÇ'ÄÇ5ìÇ<"È9_È0™ÈAÊÈ@É=MÉ<‹É9ÈÉ.Ê!1ÊSÊ(kÊ/”Ê-ÄÊ òÊ,Ë&@Ë3gË›Ë4¸Ë&íËÌ!1ÌSÌ%kÌ%‘Ì·Ì2ÕÌ(Í1ÍCÍZÍn͍͞ͽÍ$ÌÍ1ñÍ)#Î2MÎ'€Î<¨ÎåÎ&îÎHÏH^Ï;§ÏDãÏ(Ð6CÐ?zкÐaÐÐb2Ñ>•Ñ'ÔÑüÑÒ72Ò!jÒBŒÒ-ÏÒýÒXÓŠ_Ó*êÓ9ÔOÔ:nÔ©ÔÈÔÕÔóÔÕ&Õ#AÕeÕ*vÕ'¡Õ*ÉÕ#ôÕ$Ö2=ÖpÖS‚ÖXÖÖR/×U‚×EØ×HØ@gØ4¨Ø0ÝØ-ÙB<ÙQÙ<ÑÙ7Ú6FÚ_}Ú5ÝÚKÛB_ÛW¢ÛQúÛuLÜ3ÂÜ?öÜ36Ý3jÝ4žÝ<ÓÝIÞ&ZÞgÞCéÞc-ß/‘ß-ÁßdïßBTà —à#¸àAÜà?á9^á`˜á8ùá$2â¢Wâ!úâã.ã@ã4Zã.ã*¾ãéãøãä	ä 'äHä^äxääªägÈä0å>CåN‚åNÑåA ætbæp×æ=HçJ†ç6Ñç-è&6è]è&vèIè4çè2é=Oéé¢éÂéÝéòéê0êFê\êrê!ˆêªêÉêßêôê*ë'<ë5dëšë#µë5Ùë3ì3Cì0wì	¨ì	²ì
¼ì
ÇìÒìëìúìíí4#í#Xí7|í ´í4Õí)
î4îRîgî#pî-”îbÂî8%ï'^ïm†ïmôïObðE²ðMøðTFñ[›ñ[÷ñ=Sò<‘ò*Îò5ùò//ó/_ó4ó/Äó/ôó8$ô2]ô8ôJÉôDõFYõF õHçõ)0ö6Zö*‘ö8¼ö*õö- ÷2N÷÷[¡÷Mý÷AKø'øIµø<ÿø$<ù/aùJ‘ù9Üù:ú>Qú1ú"ÂúåúMÿú)Mû]wû"ÕûBøû=;üyü/…ü3µü(éü(ý;ý#Vý7zýV²ýA	þKþ[þlþ€þ”þ§þºþ6Ùþ5ÿ;Fÿ‚ÿ&žÿhÅÿ$.MS¡1Á7ó+<ÑNÎ &ï$!;B]D 7å[y¤ºDÊ79O‰¨°¸Ô\Û8=CZož.15#g$‹
°¾Ð9è	",E_z“® Êëþ	&	W.	†	Š	,¢	!Ï	Bñ	"4
&W
@~
¿
Ñ
æ
î
AH\p„—ª\½$Y?Z™ô
!
B;
1~
°
	¹
.Ã
ò
N` ~Ÿ²2Å-ø/&4V$‹6°#ç6
B2M$€¥ÂÏì/þ ./O¼*Í'ø >SpEÕò,@Tj€-Ÿ)ÍA÷C9V}tÔ…I9ÏE	=O)0·=è'&N#k59Å(ÿB(Bk9®4è5FS7š<ÒGWv–.šnâ(_€9¥{Õñ”Á«Âq|äät‚µH*îkÔ©8¸ä\V	Ûò»ºÊ3¨2wõˆˆ‡ù±æ/|d‚dˆ‹oÈ´ß@+Ï+hòp¹’1έ5MâJŒK+ ãÍW·ÂÅÁ§Ÿ÷Õ5{qª!-ÒË@iÖøÓ&œ™	+É$4ô'¶ÂTÌØ›k~¶|€0F£Œy¶6Æ\Ó©R´þ‰;)tEBì—¥ø—ZSAOÑÓ	ú¯óû‡ hçìÛv–îàä‘[/T„4jX)Šº$ÂáèÆÿYk]ö²BB”pWW«è?šPF¼u†üGè'•e#Çö¡§"ñHÄØÑïÚå~ªÝ¤$W[”SÖ°ÌFs>6·˜O—’±~0;2å'É?CU”ŁÁÀŸG<îÆp6—/rHg¡ÌPSèasb«¹ÇQ£H׃‹8´ßL°ü¿u´4UË0ôAÚi·•;®o§™&ë4@Ù›!…},šl“ƒˆ#/…Zóé.ÇUþÏ—‰xÅëvÖ˜ŒŠí%_ECíÜÖ¦=Ì!¿ƒ.`áh¢Ÿ››_úÚzTŸõÊ<·Ý¦tðØ]ÂØÎåF Íeí*‚)7ou Ю„G¤#„œ<…±xҐ' ýÒ,(ƒöFÓá=½1Ù¤?°"¾V~>%±¨+ª“g€U8³ü®‰ù/ëmkšx¬ð@Nz;¤©bõÜþ‘XM70“e,Uâ3øz6ƒlòJ–ÝÀ}ºt²áLU?ĸ
ÓÀJ%™Ô	Ç,=K@Gèºf¯ÑLyEq9>Xg»Œc"C­éª‰*ÖÆP"	Äz9‚Í£¯%uXNüiû–{§nm&‡öÈå’4J4°ñ¡Ãæ¸2RÆ°[-<åmyú¥[ž-ÚJ\§Ð«úÔvùÑ0±)8a.Œ²ý¹*Á‹£Ðfõ%6®p5„>[I’;T²!¤SX¦¿
Åe¹çq˜A™PLa(ž«"Vchw¢o‡p•ºRÆ\ÃÒ]+»)¹<í2Ь¾*ж»d<æØ¿í¼0ÜÝÖôvàNu

ñ¡î¬ž´ÔëËT‘µíéWhÕ˜’|¼-ÈÑÜ{ŒðQ5˜hlC(ª§Ö¬Qýà3¿á
˜×ÇWÀ³d2ï÷÷Çb;ìøó³½Éˆ¢æ‡RuÉ2oqà
Y¯·ÞœÁ`¬jæYMe”rÙ¦Ö…GäHِxæ[Ø…cóµ¢1ç™$QFE¬ýÕRKr‘£mÊXž+QM…àHrs TÓbú¨á½pÊòF£«¢êÕA&â¿ÎÏCúàÔãìYÞÿùI¿Z¾|­¾‘G„ÂËâ'	?©mWéœû›r=0;Êi“éœZg”]Ì3Ю,VßÜ:fðŒVÑô2}7ïÕSî >½ˆΕ#'µZvD°¥ÑPõÝ°^„9-Üà:®ÝÉ¡:È-âûĉ¢ßLC»ýOû×evóêÏqì}­A§ÞƒƒšB†Ú
m{ånc¨ˆ¼óä»Â]‰|ßñô‰»øý¸³Ž4Z9p%¾}‚QL©Š,w]¶·*":DÅ9Z×wÅ–ÚNTBŸI\½Ò{@Mÿf•}ëÀDþáö›la jioŠ^xd8k€|CïD†1 ™O¢×3V^bÈb3sIµyÿP²c¥¨ŽÞ‡a̹ê«$œù
ï–·ÛKêéq_‹Ž†nÏE³ã3ö—?þ÷­#V!w,Å´¯=ŠsëËzÍ8ò
Ô{Û„`Jš±äsènÀŽAËo‚t âRjçf?(=ê¸dÍŠ#Bw\ŸÜ7ÞëÀì¥&M_m÷”&X¨:9Êñ $ÌN/d5´æ³c'À•^š¼Ø$r:½ÞBôÕ•HyfÁñõ.çj¤¦ðž;²L—Çègt&~×Ô¨füc­¡êÝ56žÓÏ)!‡GUOͽº!éêQ…ïl:@ šçJ7w£8j
%‹7‹Éð5M}ò€O~yPŽ¯Ixœ`Sªs®¾ADÄü¹>ìÎDÀ†¯
b1YÒ.çþgy=ÎãÙ1\ß‚-™aãK¶g×Ð^Ž`"O¥I/r©Û㟓‹^ª~û¼E	K¦’_YÙÒt‘ã]È“#“Ä_<h>u­`(Ilȸx۞)Ra¤¬.
ߎ¡1ºŠ†ÿi
^ËåÎDµ¦Ev¸¶jizN[kù `lÿ(k²¼É’†ÊóÛzÚY6 îÞÙ7øÁϵ©SÄ.*Kn÷–eÆ
›‘n˜N	    TLS: %A	<corrupt: 0x%04lx>	Export Address Table 			Export Address Table 		%08lx
	Invalid Export Address Table rva (0x%lx) or entry count (0x%lx)
	Invalid Name Pointer Table rva (0x%lx) or entry count (0x%lx)
	Invalid Ordinal Table rva (0x%lx) or entry count (0x%lx)
	Name Pointer Table 			Ordinal Table 				[%4ld] <corrupt offset: %lx>
	[Name Pointer/Ordinal] Table	%08lx
	code-base %08lx toc (loadable/actual) %08lx/%08lx
	non-TLS: %A	reloc %4d offset %4x [%4lx] %s	vma:  Hint/Ord Member-Name Bound-To

	DLL Name: %.*s


PE File Base Relocations (interpreted .reloc section contents)

      End+1 symbol: %-7ld   Type:  %s
      End+1 symbol: %ld
      First symbol: %ld
      Local symbol: %ld
      Type: %s
      enum; End+1 symbol: %ld
      struct; End+1 symbol: %ld
      union; End+1 symbol: %ld
 version array off: %u

Characteristics 0x%x

Dump of %s

Dynamic Section:

Error: section %s contains the debug data starting address but it is too small

Exec Auxiliary Header

Export Address Table -- Ordinal Base %ld

Function descriptor located at the start address: %04lx

No reldata section! Function descriptor not decoded.

Partition[%d] start  = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }

Program Header:

Stack size for functions.  Annotations: '*' max stack, 't' tail call

The Export Tables (interpreted %s section contents)


The Function Table (interpreted %s section contents)

The Function Table (interpreted .pdata section contents)

The Import Tables (interpreted %s section contents)

There is a debug directory in %s at 0x%lx


There is a debug directory in %s, but that section has no contents

There is a debug directory, but the section containing it could not be found

There is a first thunk, but the section containing it could not be found

There is an export table in %s at 0x%lx

There is an export table in %s, but it does not fit into that section

There is an export table in %s, but it is too small (%d)

There is an export table in %s, but that section has no contents

There is an export table, but the section containing it could not be found

There is an import table in %s at 0x%lx

There is an import table in %s, but that section has no contents

There is an import table, but the section containing it could not be found

Version References:

Version definitions:

Virtual Address: %08lx Chunk size %ld (0x%lx) Number of fixups %ld

WARNING: Extra data in .rsrc section - it will be ignored by Windows:

[Ordinal/Name Pointer] Table

ppcboot header:
        pc: 0x%08x
    *unhandled* cmd %u
    address: 0x%08x
    address: 0x%08x, size: %u
    flags: %u, address: 0x%08x, pd-address: 0x%08x
    global name: %.*s
    len: %u bits
    linkage index: %u, replacement insn: 0x%08x
    name: %.*s
    pc: 0x%08x
    pc: 0x%08x line: %5u
    psect idx 1: %u, offset 1: 0x%08x %08x
    psect idx 2: %u, offset 2: 0x%08x %08x
    psect idx 3: %u, offset 3: 0x%08x %08x
    psect: %u, offset: 0x%08x %08x
    routine name: %.*s
   %02u    (type: %3u, size: 4+%3u):    *unhandled* cmd %u
   Error: The compile date is truncated
   Error: The length is less than the length of an EEOM record
   Error: The length is less than the length of an EMH record
   Error: The module name is missing
   Error: The module name is too long
   Error: The module version is missing
   Error: The module version is too long
   Error: The record length is less than the size of an EMH_MHD record
   Error: length larger than remaining space in record
   alignment  : 2**%u
   alloc (len)   : %u (0x%08x)
   alloc (len): %u (0x%08x)
   ascii ident   : %.*s
   binary ident  : 0x%08x
   bitmap: 0x%08x (count: %u):
   code address: 0x%08x
   compile date   : %.17s
   compiler   : %.*s
   completion code: %u
   copyright: %.*s
   declfile: len: %u, flags: %u, fileid: %u
   deflines %u
   entity name   : %.*s
   entry point: 0x%08x
   error severity: %x
   file: %.*s
   filename   : %.*s
   flags         : 0x%08x   flags      : 0x%04x   flags: %d, language: %u, major: %u, minor: %u
   flags: 0x%04x   formfeed
   id match      : %x
   image offset  : 0x%08x
   language name: %.*s
   linkage index: %u, global: %.*s
   linkage index: %u, procedure name: %.*s
   linkage index: %u, procedure: %.*s
   linkage index: %u, psect: %u, offset: 0x%08x %08x
   max record size: %u
   module name    : %.*s
   module name: %.*s
   module version : %.*s
   name          : %.*s
   name        : %.*s
   name       : %.*s
   number of cond linkage pairs: %u
   object name   : %.*s
   offset: 0x%08x, val: 0x%08x
   proc descr : 0x%08x
   psect index : %u
   psect index for entry point : %u
   psect index: %u
   psect offset: %u
   psect offset: 0x%08x
   rms: cdt: 0x%08x %08x, ebk: 0x%08x, ffb: 0x%04x, rfo: %u
   setfile %u
   setlnum %u
   setrec %u
   signature: %.*s
   structure level: %u
   symbol vector offset: 0x%08x
   symvec offset : 0x%08x
   title: %.*s
   transfer addr flags: 0x%02x
   transfer addr psect: %u
   transfer address   : 0x%08x
   vector      : 0x%08x
   version mask: 0x%08x
  %s (len=%u+%u):
  %u: size: %u, flags: 0x%02x, name: %.*s
  EEOM (len=%u):
  EGSD (len=%u):
  EGSD entry %2u (type: %u, len: %u):   EMH %u (len=%u):   base: 0x%08x %08x, size: 0x%08x, prot: 0x%08x   base_va : 0x%08x
  bitcount: %u, base addr: 0x%08x
  branch       %lu
  toc adjust   %lu
  long branch  %lu
  long toc adj %lu
  plt call     %lu
  plt call toc %lu
  global entry %lu  calls:
  chgprtoff : %5u
  codeadroff: %5u, lpfixoff  : %5u
  fixuplnk: 0x%08x %08x
  flags: 0x%08x
  iaflink : 0x%08x %08x
  image %u (%u entries)
  image %u (%u entries), offsets:
  lppsbfixoff: %5u
  psect start: 0x%08x, length: %u
  qdotadroff: %5u, ldotadroff: %5u
  qrelfixoff: %5u, lrelfixoff: %5u
  required from %s:
  shlextra  : %5u, permctx   : %5u
  shlstoff  : %5u, shrimgcnt : %5u
  size : %u
  the input  file's flags: %s  the output file's flags: %s %08x 0x%08x 64B <EABI version unrecognised> BPAGE: %u COM COMM Change Protection (%u entries):
 Code Address Reference Fixups:
 DEF EXE FPU support required:  First address : 0x%08x 0x%08x
 Fourth address: 0x%08x 0x%08x
 GBL Glue code sequence LIB Linkage Pairs Reference Fixups:
 NOMOD NORM OVR PIC QVAL RD REL Register restore millicode Register save millicode Resources start at offset: %#03x
 SHR Second address: 0x%08x 0x%08x
 Shareable images:
 Shared image  : 0x%08x 0x%08x
 String table starts at offset: %#03x
 Table: Char: %d, Time: %08lx, Ver: %d/%d, Num Names: %d, IDs: %d
 Third address : 0x%08x 0x%08x
 UNI VEC VECEP WEAK WRT [64-bit doubles] [BE8] [FPA float format] [LE8] [Maverick float format] [VFP float format] [Version1 EABI] [Version2 EABI] [Version3 EABI] [Version4 EABI] [Version5 EABI] [XGATE RAM offsetting] [abi unknown] [abi=64] [abi=EABI32] [abi=EABI64] [abi=N32] [abi=O32] [abi=O64] [abiv%ld] [absolute position] [d-float] [dynamic symbols use segment index] [fix dep] [floats passed in float registers] [floats passed in integer registers] [g-float] [hard-float ABI] [interworking enabled] [interworking flag not initialised] [interworking not supported] [interworking supported] [mapping symbols precede others] [memory=bank-model] [memory=flat] [new ABI] [no abi set] [nonpic] [not 32bitmode] [old ABI] [pic] [position independent] [relocatable executable] [soft-float ABI] [software FP] [sorted symbol table] [symbols have a _ prefix] [unknown ISA] [unsorted symbol table] [v10 and v32] [v32] alignment of 8-byte entities:  corrupted GST
 debug module table : vbn: %u, size: %u
 debug symbol table : vbn: %u, size: %u (0x%x)
 fixup info rva:  flags: 0x%04x global symbol table: vbn: %u, records: %u
 ident: 0x%08x, name: %.*s
 ident: 0x%08x, sysver: 0x%08x, match ctrl: %u, symvect_size: %u
 image build ident: %.*s
 image ident      : %.*s
 image name       : %.*s
 image type: %u (%s) img I/O count: %u, nbr channels: %u, req pri: %08x%08x
 link time        : %s
 linker flags: %08x: linker ident     : %.*s
 long-word .address reference fixups:
 long-word relocation fixups:
 majorid: %u, minorid: %u
 module offset: 0x%08x, size: 0x%08x, (%u psects)
 offsets: isd: %u, activ: %u, symdbg: %u, imgid: %u, patch: %u
 quad-word .address reference fixups:
 quad-word relocation fixups:
 section: base: 0x%08x%08x size: 0x%08x
 size of doubles:  type: %3u, len: %3u (at 0x%08x):  unhandled EOBJ record type %u
 vbn: %u, pfc: %u, matchctl: %u type: %u ( vma:			Begin Address    End Address      Unwind Info
 vma:		Begin    End      EH       EH       PrologEnd  Exception
     		Address  Address  Handler  Data     Address    Mask
 vma:		Begin    Prolog   Function Flags    Exception EH
     		Address  Length   Length   32b exc  Handler   Data
 vma:            Hint    Time      Forward  DLL       First
                 Table   Stamp     Chain    Name      Thunk
#<Invalid error code>%03x %*.s  Leaf: Addr: %#08lx, Size: %#08lx, Codepage: %d
%03x %*.s Entry: %A has both ordered [`%A' in %B] and unordered [`%A' in %B] sections%A has both ordered and unordered sections%A:0x%v lrlive .brinfo (%u) differs from analysis (%u)
%A:0x%v not found in function table
%B (%s): Section flag %s (%#lx) ignored%B and %B are for different configurations%B and %B are for different cores%B contains CRIS v32 code, incompatible with previous objects%B contains non-CRIS-v32 code, incompatible with previous objects%B has both the current and legacy Tag_MPextension_use attributes%B is not allowed to define %s%B section %A exceeds stub group size%B symbol number %lu references nonexistent SHT_SYMTAB_SHNDX section%B uses unknown e_flags 0x%lx%B(%#Lx): error: Cannot create STM32L4XX veneer. Jump out of range by %Ld bytes. Cannot encode branch instruction. %B(%A): error: call to undefined function '%s'%B(%A): internal error: dangerous relocation%B(%A): internal error: out of range error%B(%A): internal error: unknown error%B(%A): internal error: unsupported relocation error%B(%A): invalid property table%B(%A): multiple TLS models are not supported%B(%A): relocation %d has invalid symbol index %ld%B(%A): shared library symbol %s encountered whilst performing a static link%B(%A): unsafe PID relocation %s at %#Lx (against %s in %s)%B(%A): warning: long branch veneers used in section with SHF_ARM_PURECODE section attribute is only supported for M-profile targets that implement the movw instruction.%B(%A): warning: unaligned access to symbol '%s' in the small data area%B(%A): warning: unaligned small data access of type %d.%B(%A+%#Lx): %s fixup for insn %#x is not supported in a non-shared link%B(%A+%#Lx): %s relocation against SEC_MERGE section%B(%A+%#Lx): %s relocation against external symbol "%s"%B(%A+%#Lx): %s relocation not permitted in shared object%B(%A+%#Lx): %s used with TLS symbol %s%B(%A+%#Lx): %s used with non-TLS symbol %s%B(%A+%#Lx): CMEM relocation to `%s' is invalid, 16 MSB should be %#x (value is %#Lx)%B(%A+%#Lx): CMEM relocation to `%s+%#Lx' is invalid, 16 MSB should be %#x (value is %#Lx)%B(%A+%#Lx): Only ADD or SUB instructions are allowed for ALU group relocations%B(%A+%#Lx): Overflow whilst splitting %#Lx for group relocation %s%B(%A+%#Lx): cannot emit fixup to `%s' in read-only section%B(%A+%#Lx): cannot handle %s for %s%B(%A+%#Lx): cannot reach %s%B(%A+%#Lx): cannot reach %s, recompile with -ffunction-sections%B(%A+%#Lx): could not decode instruction for XTENSA_ASM_SIMPLIFY relocation; possible configuration mismatch%B(%A+%#Lx): could not decode instruction; possible configuration mismatch%B(%A+%#Lx): error: %s with unexpected instruction %#x%B(%A+%#Lx): invalid instruction for TLS relocation %s%B(%A+%#Lx): reloc against `%s': error %d%B(%A+%#Lx): relocation offset out of range (size=%#Lx)%B(%A+%#Lx): unexpected ARM instruction '%#lx' in TLS trampoline%B(%A+%#Lx): unexpected ARM instruction '%#lx' referenced by TLS_GOTDESC%B(%A+%#Lx): unexpected Thumb instruction '%#lx' in TLS trampoline%B(%A+%#Lx): unexpected Thumb instruction '%#lx' referenced by TLS_GOTDESC%B(%A+%#Lx): unexpected fix for %s relocation%B(%A+%#Lx): unresolvable %s relocation against symbol `%s'%B(%A+%#Lx): unresolvable relocation against symbol `%s'%B(%A+%#lx): Stabs entry has invalid string index.%B(%A+%#x): error: multiple load detected in non-last IT block instruction : STM32L4XX veneer cannot be generated.
Use gcc option -mrestrict-it to generate only one instruction per IT block.
%B(%A+0x%lx): %d bytes required for alignment to %d-byte boundary, but only %d present%B(%A+0x%lx): Unable to clear RISCV_PCREL_HI20 relocfor cooresponding RISCV_PCREL_LO12 reloc%B(%A+0x%lx): expected 16A style relocation on 0x%08x insn%B(%A+0x%lx): expected 16D style relocation on 0x%08x insn%B(%A+0x%v): call to non-code section %B(%A), analysis incomplete
%B(%s): warning: interworking not enabled.
  first occurrence: %B: ARM call to Thumb%B(%s): warning: interworking not enabled.
  first occurrence: %B: Thumb call to ARM%B(%s): warning: interworking not enabled.
  first occurrence: %B: arm call to thumb%B(%s): warning: interworking not enabled.
  first occurrence: %B: thumb call to arm
  consider relinking with --support-old-code enabled%B(%s+%#Lx): unresolvable %s relocation against symbol `%s'%B, section %A:
  relocation %s not valid in a shared object; typically an option mixup, recompile with -fPIC%B, section %A:
  relocation %s should not be used in a shared object; recompile with -fPIC%B, section %A:
  v10/v32 compatible object must not contain a PIC relocation%B, section %A: No PLT for relocation %s against symbol `%s'%B, section %A: No PLT nor GOT for relocation %s against symbol `%s'%B, section %A: relocation %s has an undefined reference to `%s', perhaps a declaration mixup?%B, section %A: relocation %s is not allowed for `%s', a global symbol with default visibility, perhaps a declaration mixup?%B, section %A: relocation %s is not allowed for global symbol: `%s'%B, section %A: relocation %s is not allowed for symbol: `%s' which is defined outside the program, perhaps a declaration mixup?%B, section %A: relocation %s with no GOT created%B, section %A: relocation %s with non-zero addend %Ld against local symbol%B, section %A: relocation %s with non-zero addend %Ld against symbol `%s'%B, section %A: unresolvable relocation %s against symbol `%s'%B, section `%A', to symbol `%s':
  relocation %s should not be used in a shared object; recompile with -fPIC%B: !samegp reloc against symbol without .prologue: %s%B: %#Lx: fatal: R_SH_PSHA relocation %Ld not in range -32..32%B: %#Lx: fatal: R_SH_PSHL relocation %Ld not in range -32..32%B: %#Lx: fatal: reloc overflow while relaxing%B: %#Lx: fatal: unaligned %s relocation %#Lx%B: %#Lx: fatal: unaligned branch target for relax-support relocation%B: %#Lx: warning: R_SH_USES points to unrecognized insn %#x%B: %#Lx: warning: R_SH_USES points to unrecognized insn 0x%x%B: %#Lx: warning: R_V850_LONGCALL points to unrecognized insn %#x%B: %#Lx: warning: R_V850_LONGCALL points to unrecognized insns%B: %#Lx: warning: R_V850_LONGCALL points to unrecognized reloc%B: %#Lx: warning: R_V850_LONGCALL points to unrecognized reloc %#Lx%B: %#Lx: warning: R_V850_LONGJUMP points to unrecognized insn %#x%B: %#Lx: warning: R_V850_LONGJUMP points to unrecognized insns%B: %#Lx: warning: R_V850_LONGJUMP points to unrecognized reloc%B: %#Lx: warning: bad R_SH_USES load offset%B: %#Lx: warning: bad R_SH_USES offset%B: %#Lx: warning: bad count%B: %#Lx: warning: could not find expected COUNT reloc%B: %#Lx: warning: could not find expected reloc%B: %#Lx: warning: symbol in unexpected section%B: %A invalid input section size%B: %A not in order%B: %A points past end of text section%B: %A+%#Lx: No symbol found for INHERIT%B: %A+%#Lx: warning: %s relocation against unexpected insn%B: %A+%#Lx: warning: LITERAL relocation against unexpected insn%B: %A: reloc overflow: %#x > 0xffff%B: %s not absolute%B: %s' accessed both as normal and thread local symbol%B: %s: invalid needed version %d%B: %s: invalid version %u (max %d)%B: %s: reloc overflow: 0x%lx > 0xffff%B: '%s' accessed both as normal and thread local symbol%B: --in-implib only supported for Secure Gateway import libraries.%B: .gnu.version_d invalid entry%B: .gnu.version_r invalid entry%B: .got subsegment exceeds 64K (size %d)%B: .opd is not a regular array of opd entries%B: .preinit_array section is not allowed in DSO%B: .reginfo section size should be %d bytes, actual size is %d%B: .rsrc merge failure: corrupt .rsrc section%B: .rsrc merge failure: unexpected .rsrc size%B: @gprel relocation against dynamic symbol %s%B: @internal branch to dynamic symbol %s%B: @pcrel relocation against dynamic symbol %s%B: ABI is incompatible with that of the selected emulation%B: ABI is incompatible with that of the selected emulation:
  target emulation `%s' does not match `%s'%B: ABI mismatch: linking %s module with previous %s modules%B: ABI version %ld is not compatible with ABI version %ld output%B: ASE mismatch: linking %s module with previous %s modules%B: Architecture mismatch with previous modules%B: BE8 images only valid in big-endian mode.%B: Bad relocation record imported: %d%B: Bad symbol definition: `Main' set to %s rather than the start address %s
%B: CALL15 reloc at %#Lx not against global symbol%B: CALL16 reloc at %#Lx not against global symbol%B: Can't find matching LO16 reloc against `%s' for %s at %#Lx in section `%A'%B: Can't relax br (%s) to `%s' at %#Lx in section `%A' with size %#Lx (> 0x1000000).%B: Can't relax br at %#Lx in section `%A'. Please use brl or indirect branch.%B: Cannot handle compressed Alpha binaries.
   Use compiler flags, or objZ, to generate uncompressed binaries.%B: Cannot link together %s and %s objects.%B: Data Directory size (%lx) exceeds space left in section (%Lx)%B: EF_OR1K_NODELAY flag mismatch with previous modules%B: Error: Debug Data ends beyond end of debug directory.%B: Error: multiple definition of `%s'; start of %s is set in a earlier linked file
%B: Error: search_nds32_elf_blank reports wrong node
%B: Failed to add renamed symbol %s%B: Failed to find info section for section %d%B: Failed to find link section for section %d%B: Failed to read debug data section%B: Function descriptor relocation with non-zero addend%B: GAS error: unexpected PTB insn with R_SH_PT_16%B: GNU_MBIN section `%A' has invalid sh_info field: %d%B: GOT overflow: Number of relocations with 8- or 16-bit offset > %d%B: GOT overflow: Number of relocations with 8-bit offset > %d%B: GOT reloc at %#Lx not expected in executables%B: IMPORT AS directive for %s conceals previous IMPORT AS%B: ISR vector size mismatch with previous modules, previous %u-byte, current %u-byte%B: Instruction set mismatch with previous modules%B: Internal inconsistency error for value for
 linker-allocated global register: linked: %#Lx != relaxed: %#Lx%B: Invalid relocation type exported: %d%B: Invalid relocation type imported: %d%B: Invalid sh_link field (%d) in section number %d%B: LOCAL directive: Register $%Ld is not a local register.  First global register is $%Ld.%B: Local symbol descriptor table be NULL when applying relocation %s against local symbol%B: Malformed reloc detected for section %A%B: Malformed reloc detected for section %s%B: Nested OMIT_FP in %A.%B: No core to allocate a symbol %d bytes long
%B: No core to allocate section name %s
%B: No symbol version section for versioned symbol `%s'%B: Not enough room for program headers, try linking with -N%B: Only registers %%g[2367] can be declared using STT_REGISTER%B: Recognised but unhandled machine type (0x%x) in Import Library Format archive%B: Relocation %s (%d) is not currently supported.
%B: Relocation %s is not yet supported for symbol %s.%B: Relocations in generic ELF (EM: %d)%B: SB-relative relocation but __c6xabi_DSBT_BASE not defined%B: SHT_GROUP section [index %d] has no SHF_GROUP sections%B: Special symbol `%s' only allowed for ARMv8-M architecture or later.%B: TLS local exec code cannot be linked into shared objects%B: TLS sections are not adjacent:%B: TLS transition from %s to %s against `%s' at %#Lx in section `%A' failed%B: TOC reloc at %#Lx to symbol `%s' with no TOC entry%B: The first section in the PT_DYNAMIC segment is not the .dynamic section%B: The target (%s) of an %s relocation is in the wrong section (%A)%B: Too many sections: %d (>= %d)%B: Unable to sort relocs - they are in more than one size%B: Unable to sort relocs - they are of an unknown size%B: Unhandled import type; %x%B: Unknown architecture %s%B: Unknown mandatory ARC object attribute %d.%B: Unknown mandatory EABI object attribute %d%B: Unknown relocation type %d
%B: Unknown section type in a.out.adobe file: %x
%B: Unmatched OMIT_FP in %A.%B: Unrecognised .directive command: %s%B: Unrecognised import name type; %x%B: Unrecognised import type; %x%B: Unrecognised machine type (0x%x) in Import Library Format archive%B: Unrecognized storage class %d for %s symbol `%s'%B: Unsupported transition from %s to %s%B: Warning: Arm BLX instruction targets Arm function '%s'.%B: Warning: Ignoring section flag IMAGE_SCN_MEM_NOT_PAGED in section %s%B: Warning: Thumb BLX instruction targets thumb function '%s'.%B: Warning: bad `%s' option size %u smaller than its header%B: Warning: cannot determine the target function for stub section `%s'%B: Warning: thumb-1 mode PLT generation not currently supported%B: XCOFF shared object when not producing XCOFF output%B: XMC_TC0 symbol `%s' is class %d scnlen %Ld%B: __gp does not cover short data segment%B: `%A' offset of %Ld from `%A' beyond the range of ADDIUPC%B: `%s' accessed both as FDPIC and thread local symbol%B: `%s' accessed both as normal and FDPIC symbol%B: `%s' accessed both as normal and thread local symbol%B: `%s' and its special symbol are in different sections.%B: `%s' has line numbers but no enclosing section%B: `%s' in loader reloc but not loader sym%B: `%s' non-PLT reloc for symbol defined in shared library and accessed from executable (rebuild file with -fPIC ?)%B: `ld -r' not supported with PE MIPS objects
%B: absent standard symbol `%s'.%B: access beyond end of merged section (%Ld)%B: addend %s%#x in relocation %s against symbol `%s' at %#Lx in section `%A' is out of range%B: address %#Lx out of range for Intel Hex file%B: aout header specifies an invalid number of data-directory entries: %ld%B: attempt to emit contents at non-multiple-of-4 address %#Lx%B: attempt to load strings from a non-string section (number %d)%B: attempt to mix FDPIC and non-FDPIC objects%B: attempt to write out unknown reloc type%B: bad XTY_ER symbol `%s': class %d scnum %d scnlen %Ld%B: bad pair/reflo after refhi
%B: bad reloc address %#Lx in section `%A'%B: bad reloc symbol index (%#Lx >= %#lx) for offset %#Lx in section `%A'%B: bad relocation section name `%s'%B: bad section length in ihex_read_section%B: bad string table size %Lu%B: bad symbol index: %d%B: base-plus-offset relocation against register symbol: %s in %A%B: base-plus-offset relocation against register symbol: (unknown) in %A%B: can not represent section `%A' in a.out object file format%B: can not represent section `%A' in oasys%B: can not represent section for symbol `%s' in a.out object file format%B: can't link hard-float modules with soft-float modules%B: cannot allocate file name for file number %d, %d bytes
%B: cannot create stub entry %s%B: cannot link fdpic object file into non-fdpic executable%B: cannot link non-fdpic object file into fdpic executable%B: change in gp: BRSGP %s%B: class %d symbol `%s' has no aux entries%B: compiled %s -mtune=%s and linked with modules compiled %s -mtune=%s%B: compiled as 32-bit object and %B is 64-bit%B: compiled as 64-bit object and %B is 32-bit%B: compiled for a 64 bit system and target is 32 bit%B: compiled for a big endian system and target is little endian%B: compiled for a little endian system and target is big endian%B: compiled normally and linked with modules compiled with -mrelocatable%B: compiled with %s and linked with modules compiled with %s%B: compiled with %s and linked with modules that use non-pic relocations%B: compiled with -mrelocatable and linked with modules compiled normally%B: corrupt size field in group section header: %#Lx%B: corrupt symbol count: %#Lx%B: could not find output section %A for input section %A%B: could not read contents of section `%A'
%B: could not write out added .cranges entries%B: could not write out sorted .cranges entries%B: csect `%s' not in enclosing section%B: direct GOT relocation %s against `%s' without base register can not be used when making a shared object%B: direct GOT relocation R_386_GOT32X against `%s' without base register can not be used when making a shared object%B: directive LOCAL valid only with a register or absolute value%B: dtp-relative relocation against dynamic symbol %s%B: duplicate export stub %s%B: duplicate section `%A' has different contents
%B: duplicate section `%A' has different size
%B: dynamic object with no .loader section%B: dynamic relocation against `%T' in read-only section `%A'
%B: dynamic relocation in read-only section `%A'
%B: encountered datalabel symbol in input%B: endianness incompatible with that of the selected emulation%B: entry function `%s' is empty.%B: entry function `%s' not output.%B: error: ABI mismatch with previous modules.%B: error: Alignment power %d of section `%A' is too big%B: error: Cannot create STM32L4XX veneer.%B: error: Cannot set _ITB_BASE_%B: error: Cortex-A8 erratum stub is allocated in unsafe location%B: error: Cortex-A8 erratum stub out of range (input file too large)%B: error: Erratum 835769 stub out of range (input file too large)%B: error: Erratum 843419 stub out of range (input file too large)%B: error: Instruction set mismatch with previous modules.%B: error: PHDR segment not covered by LOAD segment%B: error: VFP11 veneer out of range%B: error: attribute section length too small: %ld%B: error: non-load segment %d includes file header and/or program header%B: error: unaligned relocation type %d at %#Lx reloc %#Lx%B: error: unaligned relocation type %d at %08Lx reloc %08Lx%B: error: unexpected symbol '%s' in COMDAT section%B: error: unknown mandatory EABI object attribute %d%B: error: unknown relocation type %d.%B: failed to generate import library%B: fatal: generic symbols retrieved before relaxing%B: file class %s incompatible with %s%B: gp-relative relocation against dynamic symbol %s%B: group section '%A' has no contents%B: hidden symbol `%s' in %B is referenced by DSO%B: hidden symbol `%s' isn't defined%B: ignoring duplicate section `%A'
%B: illegal relocation type %d at address %#Lx%B: illegal section name `%A'%B: illegal symbol index %ld in relocs%B: illegal symbol index in reloc: %ld%B: incompatible machine type. Output is 0x%x. Input is 0x%x%B: incorrect size for symbol `%s'.%B: indirect symbol `%s' to `%s' is a loop%B: internal error in ihex_read_section%B: internal error, internal register section %A had contents
%B: internal error, symbol table changed size from %d to %d words
%B: internal symbol `%s' in %B is referenced by DSO%B: internal symbol `%s' isn't defined%B: invalid AVR reloc number: %d%B: invalid CR16C reloc number: %d%B: invalid CRIS reloc number: %d%B: invalid D10V reloc number: %d%B: invalid D30V reloc number: %d%B: invalid Epiphany reloc number: %d%B: invalid FR30 reloc number: %d%B: invalid FRV reloc number: %d%B: invalid IP2K reloc number: %d%B: invalid IQ2000 reloc number: %d%B: invalid LM32 reloc number: %d%B: invalid M32C reloc number: %d%B: invalid M32R reloc number: %d%B: invalid M68HC11 reloc number: %d%B: invalid M68HC12 reloc number: %d%B: invalid MEP reloc number: %d%B: invalid METAG reloc number: %d%B: invalid MMIX reloc number: %d%B: invalid MSP430 reloc number: %d%B: invalid MSP430X reloc number: %d%B: invalid MT reloc number: %d%B: invalid Moxie reloc number: %d%B: invalid NDS32 reloc number: %d%B: invalid OR1K reloc number: %d%B: invalid RL78 reloc number: %d%B: invalid RX reloc number: %d%B: invalid SHT_GROUP entry%B: invalid V850 reloc number: %d%B: invalid Visium reloc number: %d%B: invalid XGate reloc number: %d%B: invalid XTENSA reloc number: %d%B: invalid i960 reloc number: %d%B: invalid import library entry: `%s'.%B: invalid link %u for reloc section %s (index %u)%B: invalid mmo file: YZ of lop_end (%ld) not equal to the number of tetras to the preceding lop_stab (%ld)
%B: invalid mmo file: expected YZ = 1 got YZ = %d for lop_quote
%B: invalid mmo file: expected y = 0, got y = %d for lop_fixrx
%B: invalid mmo file: expected z = 1 or z = 2, got z = %d for lop_fixo
%B: invalid mmo file: expected z = 1 or z = 2, got z = %d for lop_loc
%B: invalid mmo file: expected z = 16 or z = 24, got z = %d for lop_fixrx
%B: invalid mmo file: fields y and z of lop_stab non-zero, y: %d, z: %d
%B: invalid mmo file: file name for number %d was not specified before use
%B: invalid mmo file: file number %d `%s', was already entered as `%s'
%B: invalid mmo file: initialization value for $255 is not `Main'
%B: invalid mmo file: leading byte of operand word must be 0 or 1, got %d for lop_fixrx
%B: invalid mmo file: lop_end not last item in file
%B: invalid mmo file: unsupported lopcode `%d'
%B: invalid relocation type %d%B: invalid size field in group section header: %#Lx%B: invalid special symbol `%s'.%B: invalid standard symbol `%s'.%B: invalid start address for initialized registers of length %Ld: %#Lx%B: invalid string offset %u >= %Lu for section `%s'%B: invalid symbol table: duplicate symbol `%s'
%B: jump too far away
%B: line number overflow: 0x%lx > 0xffff%B: linking %s module with previous %s modules%B: linking 32-bit code with 64-bit code%B: linking 64-bit files with 32-bit files%B: linking UltraSPARC specific with HAL specific code%B: linking auto-pic files with non-auto-pic files%B: linking big-endian files with little-endian files%B: linking constant-gp files with non-constant-gp files%B: linking files compiled for 16-bit integers (-mshort) and others for 32-bit integers%B: linking files compiled for 32-bit double (-fshort-double) and others for 64-bit double%B: linking files compiled for HCS12 with others compiled for HC12%B: linking little endian files with big endian files%B: linking non-pic code in a position independent executable%B: linking trap-on-NULL-dereference with non-trapping files%B: loader reloc in read-only section %A%B: loader reloc in unrecognized section `%s'%B: local symbol `%s' in %B is referenced by DSO%B: misplaced XTY_LD `%s'%B: missing TLS section for relocation %s against `%s' at %#Lx in section `%A'.%B: no group info for section '%A'%B: no initialized registers; section length 0
%B: no symbol found for import library%B: no valid group sections found%B: non-pic code with imm relocation against dynamic symbol `%s'%B: non-zero symbol index (%#Lx) for offset %#Lx in section `%A' when the object file has no symbol table%B: not enough memory to allocate space for %#Lx symbols of size %#Lx%B: object size does not match that of target %B%B: out of memory creating name for empty section%B: out of memory in _bfd_elf_get_property%B: page size is too large (0x%x)%B: pc-relative relocation against dynamic symbol %s%B: pc-relative relocation against undefined weak symbol %s%B: plugin needed to handle lto object%B: probably compiled without -fPIC?%B: protected symbol `%s' isn't defined%B: register relocation against non-register symbol: %s in %A%B: register relocation against non-register symbol: (unknown) in %A%B: reloc %s:%Ld not in csect%B: reloc against a non-existent symbol index: %ld%B: relocatable link from %s to %s not supported%B: relocation %s against %s%s`%s' can not be used when making %s%s%B: relocation %s against STT_GNU_IFUNC symbol `%s' has non-zero addend: %Ld%B: relocation %s against STT_GNU_IFUNC symbol `%s' isn't handled by %s%B: relocation %s against STT_GNU_IFUNC symbol `%s' isn't supported%B: relocation %s against `%s' can not be used when making a shared object%B: relocation %s against `%s' can not be used when making a shared object; recompile with -fPIC%B: relocation %s against external or undefined symbol `%s' can not be used when making a %s; recompile with -fPIC%B: relocation %s against symbol `%s' isn't supported in x32 mode%B: relocation %s against symbol `%s' which may bind externally can not be used when making a shared object; recompile with -fPIC%B: relocation %s can not be used when making a shared object; recompile with -fPIC%B: relocation %s cannot be used when making a shared object%B: relocation R_386_GOTOFF against protected %s `%s' can not be used when making a shared object%B: relocation R_386_GOTOFF against undefined %s `%s' can not be used when making a shared object%B: relocation R_X86_64_GOTOFF64 against protected %s `%s' can not be used when making a shared object%B: relocation R_X86_64_GOTOFF64 against undefined %s `%s' can not be used when making a shared object%B: relocation at `%A+%#Lx' references symbol `%s' with nonzero addend%B: relocation size mismatch in %B section %A%B: relocs in section `%A', but it has no contents%B: section %A lma %#Lx adjusted to %#Lx%B: section %A: string table overflow at offset %ld%B: section `%A' can't be allocated in segment %d%B: section group entry number %u is corrupt%B: sh_link [%d] in section `%A' is incorrect%B: sh_link of section `%A' points to discarded section `%A' of `%B'%B: sh_link of section `%A' points to removed section `%A' of `%B'%B: short data segment overflowed (%#Lx >= 0x400000)%B: size field is zero in Import Library Format header%B: speculation fixup to dynamic symbol %s%B: stack size specified and %s set%B: string not null terminated in ILF object file.%B: string too long (%ld chars, max 65535)%B: support for local dynamic not implemented%B: symbol `%s' has unrecognized csect type %d%B: symbol `%s' has unrecognized smclas %d%B: symbol `%s' required but not present%B: taking the address of protected function '%s' cannot be done when making a shared library%B: the target (%s) of a %s relocation is in the wrong output section (%s)%B: too many initialized registers; section length %Ld%B: too many sections (%d)%B: too many sections: %u%B: tp-relative relocation against dynamic symbol %s%B: unable to create fake empty section%B: unable to fill in DataDictionary[12] because .idata$5 is missing%B: unable to fill in DataDictionary[1] because .idata$2 is missing%B: unable to fill in DataDictionary[1] because .idata$4 is missing%B: unable to fill in DataDictionary[9] because __tls_used is missing%B: unable to fill in DataDictionary[PE_IMPORT_ADDRESS_TABLE (12)] because .idata$6 is missing%B: unable to fill in DataDictionary[PE_IMPORT_ADDRESS_TABLE(12)] because .idata$6 is missing%B: unable to find ARM glue '%s' for `%s'%B: unable to find STM32L4XX veneer `%s'%B: unable to find THUMB glue '%s' for `%s'%B: unable to find VFP11 veneer `%s'%B: unable to find name for empty section%B: unable to get decompressed section %A%B: unable to initialize compress status for section %s%B: unable to initialize decompress status for section %s%B: unable to load COMDAT section name%B: undefined reference to symbol '%s'%B: undefined sym `%s' in .opd section%B: undefined symbol on R_PPC64_TOCSAVE relocation%B: unexpected ATN type %Ld in external part%B: unexpected redefinition of indirect versioned symbol `%s'%B: unexpected reloc type %u in .opd section%B: unexpected type after ATN%B: unhandled dynamic relocation against %s%B: unimplemented %s
%B: unimplemented ATI record %u for symbol %u%B: unknown load command %#x%B: unknown relocation type %d%B: unknown relocation type %d for symbol %s%B: unknown type [%#x] section `%s'%B: unknown type [%#x] section `%s' in group [%A]%B: unknown/unsupported relocation type %d%B: unrecognised Alpha reloc number: %d%B: unrecognised CR16 reloc number: %d%B: unrecognised CRX reloc number: %d%B: unrecognised I370 reloc number: %d%B: unrecognised MCore reloc number: %d%B: unrecognised MN10300 reloc number: %d%B: unrecognised MicroBlaze reloc number: %d%B: unrecognised PPC reloc number: %d%B: unrecognised PicoJava reloc number: %d%B: unrecognised SH reloc number: %d%B: unrecognised SPU reloc number: %d%B: unrecognised VAX reloc number: %d%B: unrecognized relocation (%#x) in section `%A'%B: unrecognized symbol `%s' flags 0x%x%B: unsupported non-PIC call to IFUNC `%s'%B: unsupported relocation type %d%B: unsupported relocation type %i
%B: unsupported relocation type %s%B: unsupported relocation type 0x%02x%B: unsupported relocation: ALPHA_R_GPRELHIGH%B: unsupported relocation: ALPHA_R_GPRELLOW%B: unsupported wide character sequence 0x%02X 0x%02X after symbol name starting with `%s'
%B: uses %s instructions while previous modules use %s instructions%B: uses _-prefixed symbols, but writing file with non-prefixed symbols%B: uses different e_flags (%#x) fields than previous modules (%#x)%B: uses different unknown e_flags (%#x) fields than previous modules (%#x)%B: uses instructions which are incompatible with instructions used in previous modules%B: uses non-prefixed symbols, but writing file with _-prefixed symbols%B: version count (%Ld) does not match symbol count (%ld)%B: version node not found for symbol %s%B: visibility of symbol `%s' has changed.%B: warning core file truncated%B: warning: %A: line number overflow: %#x > 0xffff%B: warning: %s points to unrecognized reloc at %#Lx%B: warning: %s relocation against symbol `%s' from %A section%B: warning: %s relocation to %#Lx from %A section%B: warning: %s: line number overflow: 0x%lx > 0xffff%B: warning: COMDAT symbol '%s' does not match section name '%s'%B: warning: Empty loadable segment detected at vaddr=%#Lx, is this intentional?%B: warning: Endian mismatch with previous modules.%B: warning: GOT addend of %Ld to `%s' does not match previous GOT addend of %Ld%B: warning: Incompatible elf-versions %s and  %s.%B: warning: Inconsistent ASEs between e_flags and .MIPS.abiflags%B: warning: Inconsistent FP ABI between .gnu.attributes and .MIPS.abiflags%B: warning: Inconsistent ISA between e_flags and .MIPS.abiflags%B: warning: Inconsistent ISA extensions between e_flags and .MIPS.abiflags%B: warning: No symbol for section '%s' found%B: warning: Older version of object file encountered, Please recompile with current tool chain.%B: warning: PLT addend of %Ld to `%s' from %A section ignored%B: warning: Unexpected flag in the flags2 field of .MIPS.abiflags (0x%lx)%B: warning: allocated section `%s' not in segment%B: warning: cannot deal R_NDS32_25_ABS_RELA in shared mode.%B: warning: claims to have 0xffff relocs, without overflow%B: warning: duplicate line number information for `%s'%B: warning: illegal symbol in line number entry %d%B: warning: illegal symbol index %ld in relocs%B: warning: illegal symbol index 0x%lx in line number entry %d%B: warning: isymMax (%ld) is greater than ifdMax (%ld)%B: warning: line number count (%#lx) exceeds section size (%#lx)%B: warning: line number table read failed%B: warning: linking PIC files with non-PIC files%B: warning: linking abicalls files with non-abicalls files%B: warning: loop in section dependencies detected%B: warning: multiple dynamic symbol tables detected - ignoring the table in section %u%B: warning: multiple symbol tables detected - ignoring the table in section %u%B: warning: relocate SDA_BASE failed.%B: warning: segment alignment of %#Lx is too large%B: warning: selected STM32L4XX erratum workaround is not necessary for target architecture%B: warning: selected VFP11 erratum workaround is not necessary for target architecture%B: warning: sh_link not set for section `%A'%B: warning: symbol table too large for mmo, larger than 65535 32-bit words: %d.  Only `Main' will be emitted.
%B: warning: unaligned access to GOT entry.%B: warning: unaligned small data access for entry: {%Ld, %Ld, %Ld}, addr = %#Lx, align = %#x%B: warning: unknown EABI object attribute %d%B: will not resolve runtime TLS relocation%B:%A%s exceeds overlay size
%B:%A: %s and %s must be in the same input section%B:%A: Warning: deprecated Red Hat reloc %B:%A: error: relocation references symbol %s which was removed by garbage collection.%B:%A: error: try relinking with --gc-keep-exported enabled.%B:%A: table %s missing corresponding %s%B:%A: table entry %s not word-aligned within table%B:%A: table entry %s outside table%B:%d: Bad checksum in S-record file
%B:%d: Unexpected character `%s' in S-record file
%B:%d: byte count %d too small
%B:%d: unexpected character `%s' in Intel Hex file%B:%s has both normal and TLS relocs%B:%s section %s: alignment 2**%u not representable%B:%u: bad checksum in Intel Hex file (expected %u, found %u)%B:%u: bad extended address record length in Intel Hex file%B:%u: bad extended linear address record length in Intel Hex file%B:%u: bad extended linear start address length in Intel Hex file%B:%u: bad extended start address length in Intel Hex file%B:%u: unrecognized ihex type %u in Intel Hex file%C: warning: relocation to "%s" references a different segment
%F%A: failed to align section
%F%B: PC-relative offset overflow in GOT PLT entry for `%s'
%F%B: PC-relative offset overflow in PLT entry for `%s'
%F%B: branch displacement overflow in PLT entry for `%s'
%F%P: already_linked_table: %E
%F%P: auto overlay error: %E
%F%P: can not build overlay stubs: %E
%F%P: corrupt input: %B
%F%P: dynamic STT_GNU_IFUNC symbol `%s' with pointer equality in `%B' can not be used when making an executable; recompile with -fPIE and relink with -pie
%F%P: failed to convert GOTPCREL relocation; relink with --no-relax
%F%P: failed to create BND PLT section
%F%P: failed to create GNU property section
%F%P: failed to create GOT PLT .eh_frame section
%F%P: failed to create GOT PLT section
%F%P: failed to create GOT sections
%F%P: failed to create IBT-enabled PLT section
%F%P: failed to create PLT .eh_frame section
%F%P: failed to create VxWorks dynamic sections
%F%P: failed to create ifunc sections
%F%P: failed to create the second PLT .eh_frame section
%H __tls_get_addr lost arg, TLS optimization disabled
%H arg lost __tls_get_addr, TLS optimization disabled
%H: %s against `%T': error %d
%H: %s for indirect function `%T' unsupported
%H: %s references optimized away TOC entry
%H: %s reloc against `%s': error %d
%H: %s reloc against local symbol
%H: %s reloc unsupported in shared libraries and PIEs.
%H: %s used with TLS symbol `%T'
%H: %s used with non-TLS symbol `%T'
%H: R_FRV_FUNCDESC references dynamic symbol with nonzero addend
%H: R_FRV_FUNCDESC_VALUE references dynamic symbol with nonzero addend
%H: R_FRV_GETTLSOFF not applied to a call instruction
%H: R_FRV_GETTLSOFF_RELAX not applied to a calll instruction
%H: R_FRV_GOTTLSDESC12 not applied to an lddi instruction
%H: R_FRV_GOTTLSDESCHI not applied to a sethi instruction
%H: R_FRV_GOTTLSDESCLO not applied to a setlo or setlos instruction
%H: R_FRV_GOTTLSOFF12 not applied to an ldi instruction
%H: R_FRV_GOTTLSOFFHI not applied to a sethi instruction
%H: R_FRV_GOTTLSOFFLO not applied to a setlo or setlos instruction
%H: R_FRV_TLSDESC_RELAX not applied to an ldd instruction
%H: R_FRV_TLSMOFFHI not applied to a sethi instruction
%H: R_FRV_TLSOFF_RELAX not applied to an ld instruction
%H: call to `%T' lacks nop, can't restore toc; (-mcmodel=small toc adjust stub)
%H: call to `%T' lacks nop, can't restore toc; recompile with -fPIC
%H: cannot emit dynamic relocations in read-only section
%H: cannot emit fixups in read-only section
%H: error: %s against `%s' not a multiple of %u
%H: error: %s not a multiple of %u
%H: fixup branch overflow
%H: non-zero addend on %s reloc against `%s'
%H: reloc against `%s' references a different segment
%H: reloc against `%s': %s
%H: relocation %s for indirect function %s unsupported
%H: relocation references symbol not defined in the module
%H: relocation to `%s+%v' may have caused the error above
%H: toc optimization is not supported for %s instruction.
%H: unresolvable %s against `%T'
%H: unresolvable %s relocation against symbol `%s'
%H: warning: %s unexpected insn %#x.
%P%F: --relax and -r may not be used together
%P%X: can not read symbols: %E
%P%X: read-only segment has dynamic IFUNC relocations; recompile with -fPIC
%P%X: read-only segment has dynamic relocations.
%P: %B .opd not allowed in ABI version %d
%P: %B: %s is not supported for `%T'
%P: %B: cannot create stub entry %s
%P: %B: relocation %s is not yet supported for symbol %s
%P: %B: the target (%s) of a %s relocation is in the wrong output section (%s)
%P: %B: unexpected relocation type
%P: %B: unknown relocation type %d for `%T'
%P: %B: unknown relocation type %d for symbol %s
%P: %B: warning: relocation against `%s' in read-only section `%A'
%P: %B: warning: relocation in read-only section `%A'
%P: %s not defined in linker created %s
%P: %s offset too large for .eh_frame sdata4 encoding%P: .eh_frame_hdr entry overflow.
%P: .eh_frame_hdr refers to overlapping FDEs.
%P: DW_EH_PE_datarel unspecified for this architecture.
%P: FDE encoding in %B(%A) prevents .eh_frame_hdr table being created.
%P: Further warnings about FDE encoding preventing .eh_frame_hdr generation dropped.
%P: alternate ELF machine code found (%d) in %B, expecting %d
%P: bss-plt forced by profiling
%P: bss-plt forced due to %B
%P: can't build branch stub `%s'
%P: can't find branch stub `%s'
%P: cannot find opd entry toc for `%T'
%P: copy reloc against `%T' requires lazy plt linking; avoid setting LD_BIND_NOW=1 or upgrade gcc
%P: copy reloc against protected `%T' is dangerous
%P: dynreloc miscount for %B, section %A
%P: error in %B(%A); no .eh_frame_hdr table will be created.
%P: linkage table error against `%T'
%P: long branch stub `%s' offset overflow
%P: multiple entry points: in modules %B and %B
%P: relocatable link is not supported
%P: stubs don't match calculated size
%P: symbol '%s' has invalid st_other for ABI version 1
%P: warning: --plt-localentry is especially dangerous without ld.so support to detect ABI violations.
%P: warning: creating a DT_TEXTREL in a shared object.
%P: warning: text relocations and GNU indirect functions may result in a segfault at runtime
%X%C: relocation to "%s" references a different segment
%X%H: @local call to ifunc %s
%X%H: Cannot convert branch between ISA modes to JALX: relocation out of range
%X%H: Unsupported JALX to the same ISA mode
%X%H: Unsupported branch between ISA modes
%X%H: Unsupported jump between ISA modes; consider recompiling with interlinking enabled
%X%H: unsupported bss-plt -fPIC ifunc %s
%X%P: %B(%A): error: relocation for offset %V has no value
%X%P: %B(%A): relocation "%R" goes out of range
%X%P: %B(%A): relocation "%R" is not supported
%X%P: %B(%A): relocation "%R" returns an unrecognized value %x
%X%P: overlay section %A does not start on a cache line.
%X%P: overlay section %A is larger than a cache line.
%X%P: overlay section %A is not in cache area.
%X%P: overlay sections %A and %A do not start at the same address.
%X%P: stack/lrlive analysis error: %E
%X%P: text relocations and GNU indirect functions will result in a segfault at runtime
%X`%s' referenced in section `%A' of %B: defined in discarded section `%A' of %B
%s defined on removed toc entry%s duplicated
%s duplicated in %s
%s has both normal and TLS relocs%s in overlay section%s: TLS definition in %B section %A mismatches non-TLS definition in %B section %A%s: TLS definition in %B section %A mismatches non-TLS reference in %B%s: TLS reference in %B mismatches non-TLS definition in %B section %A%s: TLS reference in %B mismatches non-TLS reference in %B%s: no such symbol%s: not implemented%s: not supported%s: undefined version: %s(at bit offset %u)
(descriptor)
(format %c%c%c%c signature %s age %ld)
(no value)
(not active)
(not allocated)
(reg: %u, disp: %u, indir: %u, kind: (thread-local data too big for -fpic or -msmall-tls: recompile with -fPIC or -mno-small-tls)(too many global variables for -fpic: recompile with -fPIC)(trailing value)
(value spec follows)
)
*** check this relocation %s*unhandled*
*unhandled* dst type %u
*unknown**unknown*        , Value: %#08lx
, alias: %u
, ext fixup offset: %u, no_opt psect off: %u, subtype: %u (%s)
, symbol vector rva: - %B is 64-bit, %B is not-mips32r2 -mfp64 (12 callee-saved).got section not immediately after .plt section.rsrc merge failure: a directory matches a leaf.rsrc merge failure: differing directory versions
.rsrc merge failure: dirs with differing characteristics
.rsrc merge failure: duplicate leaf.rsrc merge failure: duplicate leaf: %s.rsrc merge failure: duplicate string resource: %d.rsrc merge failure: multiple non-default manifests32-bit double, 32bits gp relative relocation occurs for an external symbol4-byte4-bytes64 bits *unhandled*
64-bit double, 8-byte8-bytes: m32r instructions: m32r2 instructions: m32rx instructions: n1 instructions: n1h instructions; recompile with -fPIC<Unrecognised flag bits set><corrupt info> %s<corrupt string length: %#x>
<corrupt string offset: %#lx>
<corrupt><unknown directory type: %d>
<unknown>@pltoff reloc against local symbolArchive has no index; run ranlib to add oneArchive object file in wrong formatAttempt to convert L32R/CALLX to CALL failedAttempt to do relocatable link with %s input and %s outputBASE_IMAGE       BFD %s assertion fail %s:%dBFD %s internal error, aborting at %s:%d
BFD %s internal error, aborting at %s:%d in %s
BFD Link Error: branch (PC rel16) to section (%s) not supportedBFD Link Error: jump (PC rel26) to section (%s) not supportedBad valueBase Relocation Directory [.reloc]Bound Import DirectoryBounds:
Branch to a non-instruction-aligned addressCACHE use: CLICLR Runtime HeaderCLUSTERS_LOCKMGR COUNTERS         CPU              CTL_AUGRB (augment relocation base) %u
CTL_DFLOC (define location)
CTL_SETRB (set relocation base)
CTL_STKDL (stack defined location)
CTL_STLOC (set location)
Cannot convert a branch to JALX for a non-word-aligned addressCannot convert a jump to JALX for a non-word-aligned addressCopyright Header
Corrupt .rsrc section detected!
Corrupt EEOM record - size is too smallCorrupt EGSD record: its psindx field is too big (%#lx)Corrupt EGSD record: its size (%#x) is too smallCorrupt EGSD record: size (%#x) is larger than remaining space (%#x)Corrupt EGSD record: size (%#x) is too smallCorrupt EIHD record - size is too smallCorrupt ETIR record encounteredCorrupt vms valueDSO missing from command lineDST__K_BEG_STMT_MODE not implementedDST__K_END_STMT_MODE not implementedDST__K_RESET_LINUM_INCR not implementedDST__K_SET_LINUM_INCR not implementedDST__K_SET_LINUM_INCR_W not implementedDST__K_SET_PC not implementedDST__K_SET_PC_L not implementedDST__K_SET_PC_W not implementedDST__K_SET_STMTNUM not implementedDebug DirectoryDebug module table:
Debug symbol table:
Delay Import DirectoryDeprecated %s called
Deprecated %s called at %s line %d in %s
Description DirectoryDwarf Error: Abstract instance recursion detected.Dwarf Error: Can't find %s section.Dwarf Error: Could not find abbrev number %u.Dwarf Error: DW_AT_comp_dir attribute encountered with a non-string form.Dwarf Error: Info pointer extends beyond end of attributesDwarf Error: Invalid abstract instance DIE ref.Dwarf Error: Invalid maximum operations per instruction.Dwarf Error: Invalid or unhandled FORM value: %#x.Dwarf Error: Line info data is bigger (%#Lx) than the space remaining in the section (%#lx)Dwarf Error: Line info section is too small (%Ld)Dwarf Error: Line info unsupported segment selector size %u.Dwarf Error: Offset (%llu) greater than or equal to %s size (%Lu).Dwarf Error: Ran out of room reading opcodesDwarf Error: Ran out of room reading prologueDwarf Error: Unable to read alt ref %llu.Dwarf Error: Unhandled .debug_line version %d.Dwarf Error: Unknown format content type %Lu.Dwarf Error: Zero format count.Dwarf Error: data count (%Lx) larger than buffer size.Dwarf Error: found address size '%u', this reader can not handle sizes greater than '%u'.Dwarf Error: found dwarf version '%u', this reader only handles version 2, 3, 4 and 5 information.Dwarf Error: mangled line number section (bad file number).Dwarf Error: mangled line number section.EIHD: (size: %u, nbr blocks: %u)
ERROR: Attempting to link %B with a binary %B of different architectureEntry function `%s' disappeared from secure code.Entry offset        = 0x%.8lx (%ld)
Error reading %s: %sError: %B has both the current and legacy Tag_MPextension_use attributesError: The ARC4 architecture is no longer supported.
Errors encountered processing file %BException Directory [.pdata]Export Directory [.edata (or where ever we found it)]Export Flags 			%lx
Export RVAFAILED to find previous HI16 relocFILES_VOLUMES    FPU-2.0FPU-3.0Failed to update file offsets in debug directoryFile format is ambiguousFile format not recognizedFile in wrong formatFile too bigFile truncatedFlag field          = 0x%.2x
Forwarder RVAGALAXY           GOT and PLT relocations cannot be fixed with a non dynamic linker.GP relative relocation used when GP not definedGP relative relocation when _gp not definedGPDISP relocation did not find ldah and lda instructionsGlobal symbol table:
Hard float (32-bit CPU, 64-bit FPU)
Hard float (32-bit CPU, Any FPU)
Hard float (MIPS32r2 64-bit FPU 12 callee-saved)
Hard float (double precision)
Hard float (single precision)
Hard float compat (32-bit CPU, 64-bit FPU)
Hard or soft float
ID: %#08lxIDC - Ident Consistency check
IEEE parser: string length: %#lx longer than buffer: %#lxIMAGE_ACTIVATOR  INPUT_SECTION_FLAGS are not supported.
IO               Image activation:  (size=%u)
Image activator fixup: (major: %u, minor: %u)
Image identification: (major: %u, minor: %u)
Image section descriptor: (major: %u, minor: %u, size: %u, offset: %u)
Image symbol & debug table: (major: %u, minor: %u)
Import Address Table DirectoryImport Directory [parts of .idata]Internal Error: RL78 reloc stack overflowInternal Error: RL78 reloc stack underflowInternal inconsistency: remaining %lu != max %lu.
  Please report this bug.Invalid AArch64 reloc number: %dInvalid DLX reloc number: %dInvalid TARGET2 relocation type '%s'.Invalid bfd targetInvalid contents in %A sectionInvalid operationInvalid output section for .eh_frame_entry: %AInvalid section index in ETIRIs this version of the linker - %s - out of date ?It must be a global or weak function symbol.Jump to a non-instruction-aligned addressJump to a non-word-aligned addressLOGICAL_NAMES    Language Processor Name
Length              = 0x%.8lx (%ld)
Linker: cannot init ex9 hash table error 
Linker: error cannot fixed ex9 relocation 
Load Configuration DirectoryLocal IFUNC function `%s' in %B
MEMORY_MANAGEMENTMIPS16 and microMIPS functions cannot call each otherMISC             MMU use: MULTI_PROCESSING Major/Minor 			%d/%d
Malformed archiveMaximum stack required is 0x%v
MeP: howto %d has type %dMemory exhaustedModule header
NETWORKS         NORMALName 				No address assigned to the veneers output section %sNo errorNo more archived filesNo symbolsNoneNonrepresentable section on outputNot enough memory to sort relocationsNumber in:
OPR_ADD (add)
OPR_AND (logical and)
OPR_ASH (arithmetic shift)
OPR_COM (complement)
OPR_DIV (divide)
OPR_EOR (logical exclusive or)
OPR_INSV (insert field)
OPR_IOR (logical inclusive or)
OPR_MUL (multiply)
OPR_NEG (negate)
OPR_NOP (no-operation)
OPR_REDEF (define a literal)
OPR_REDEF (redefine symbol to curr location)
OPR_ROT (rotate)
OPR_SEL (select)
OPR_SUB (subtract)
OPR_USH (unsigned shift)
Object module NOT error-free !
Offset of veneer for entry function `%s' not a multiple of its size.One possible cause of this error is that the symbol is being referenced in the indicated code as if it had a larger alignment than was declared where it was defined.Ordinal Base 			%ld
Output file requires shared library `%s'
Output file requires shared library `%s.so.%s'
PC-relative load from unaligned addressPIE executablePOSIX            PROCESS_SCHED    PRVFXDPRVPICPSC - Program section definition
PTA mismatch: a SHcompact address (bit 0 == 0)PTB mismatch: a SHmedia address (bit 0 == 1)Partition name      = "%s"
Partition[%d] end    = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }
Partition[%d] length = 0x%.8lx (%ld)
Partition[%d] sector = 0x%.8lx (%ld)
Please report this bug.
RL78 ABI conflict: G10 file %B cannot be linked with %s file %BRL78 ABI conflict: cannot link %s file %B with %s file %BRL78 merge conflict: cannot link 32-bit and 64-bit objects togetherR_BFIN_FUNCDESC references dynamic symbol with nonzero addendR_BFIN_FUNCDESC_VALUE references dynamic symbol with nonzero addendR_FRV_TLSMOFFLO not applied to a setlo or setlos instruction
Reading archive file mod timestampReference to the far symbol `%s' using a wrong relocation may result in incorrect executionRegister %%g%d used incompatibly: %s in %B, previously %s in %BRegister section has contents
Relocation for non-REL psectRemoving unused section '%A' in file '%B'ReservedResource Directory [.rsrc]S12 address (%lx) is not within shared RAM(0x2000-0x4000), therefore you must manually offset the address in your codeSDA relocation when _SDA_BASE_ not definedSECURITY         SEC_RELOC with no relocs in section %ASH Error: unknown reloc type %dSHELL            SHRFXDSHRPICSIMD use: SPSC - Shared Image Program section def
STABLE           STA_CKARG (compare procedure argument)
STA_GBL (stack global) %.*s
STA_LI (stack literal)
STA_LW (stack longword) 0x%08x
STA_MOD (stack module)
STA_PQ (stack psect base + offset)
STA_QW (stack quadword) 0x%08x %08x
STC_BOH_GBL (store cond BOH at global addr)
STC_BOH_PS (store cond BOH at psect + offset)
STC_BSR_GBL (store cond BSR at global addr)
STC_BSR_PS (store cond BSR at psect + offset)
STC_GBL (store cond global)
STC_GCA (store cond code address)
STC_LDA_GBL (store cond LDA at global addr)
STC_LDA_PS (store cond LDA at psect + offset)
STC_LP (store cond linkage pair)
STC_LP_PSB (store cond linkage pair + signature)
STC_NBH_GBL (store cond or hint at global addr)
STC_NBH_PS (store cond or hint at psect + offset)
STC_NOP_GBL (store cond NOP at global addr)
STC_NOP_PS (store cond NOP at psect + offset)
STC_PS (store cond psect + offset)
STO_AB (store absolute branch)
STO_B (store byte)
STO_BR_GBL (store branch global) *todo*
STO_BR_PS (store branch psect + offset) *todo*
STO_CA (store code address) %.*s
STO_GBL (store global) %.*s
STO_GBL_LW (store global longword) %.*s
STO_IMM (store immediate) %u bytes
STO_IMMR (store immediate repeat) %u bytes
STO_LW (store longword)
STO_OFF (store LP with procedure signature)
STO_OFF (store offset to psect)
STO_QW (store quadword)
STO_RB (store relative branch)
STO_W (store word)
SYM - Global symbol definition
SYM - Global symbol reference
SYMG - Universal symbol definition
SYMM - Global symbol definition with version
SYMV - Vectored symbol definition
SYSGEN           Section has no contentsSecurity DirectorySize error in section %ASoft float
Source Files Header
Special DirectorySpurious ALPHA_R_BSR relocStack analysis will ignore the call from %s to %s
Stack overflow (%d) in _bfd_vms_pushStack size for call graph root nodes.
Stack underflow in _bfd_vms_popStart address of `%s' is different from previous link.Strides:
Symbol %s not defined for fixups
Symbol `%s' has differing types: %s in %B, previously REGISTER in %BSymbol `%s' has differing types: REGISTER in %B, previously %s in %BSymbol needs debug section which does not existSymbol should be absolute, global and refer to Thumb functions.System call errorTLS relocation invalid without dynamic sectionsTOC overflow: %#Lx > 0x10000; try -mminimal-toc when compilingTable Addresses
The debug data size field in the data directory is too big for the sectionThe debug directory size is not a multiple of the debug directory entry size
There is a conflict merging the ELF header flags from %BThread Storage Directory [.tls]Time/Date stamp 		%lx
Title Text Header
Too many GOT entries for -fpic, please recompile with -fPICToo many unwind codes (%ld)
Try enabling relaxation to avoid relocation truncationsType                Size     Rva      Offset
USRSTACKUnable to find equivalent output section for symbol '%s' from section '%s'Unable to reach %s (at 0x%08x) from the global pointer (at 0x%08x) because the offset (%d) is out of the allowed range, -32678 to 32767.
Unable to read EIHS record at offset %#xUnexpected STO_SH5_ISA32 on local symbol is not handledUnexpected machine numberUnhandled OSF/1 core file section type %d
Unhandled relocation %sUnknownUnknown EGSD subtype %dUnknown basic type %dUnknown reloc %sUnknown reloc %s + %sUnknown symbol in command %sUnknown: %xUnrecognised MIPS reloc number: %dUnrecognized INPUT_SECTION_FLAG %s
Unrecognized TI COFF target id '0x%x'Unrecognized reloc type 0x%xUnsupported .stab relocationUnsupported CR16 relocation type: 0x%x
VOLATILE         Variable `%s' can only be in one of the small, zero, and tiny data regionsVariable `%s' cannot be in both small and tiny data regions simultaneouslyVariable `%s' cannot be in both small and zero data regions simultaneouslyVariable `%s' cannot be in both zero and tiny data regions simultaneouslyVariable `%s' cannot occupy in multiple small data regionsVirtual size of .pdata section (%ld) larger than real size (%ld)
Warning, .pdata section size (%ld) is not a multiple of %d
Warning: %B does not support interworking, whereas %B doesWarning: %B supports interworking, whereas %B does notWarning: %B uses %s (set by %B), %B uses %sWarning: %B uses %s (set by %B), %B uses unknown MSA ABI %dWarning: %B uses %s (set by %B), %B uses unknown floating point ABI %dWarning: %B uses 64-bit long double, %B uses 128-bit long doubleWarning: %B uses AltiVec vector ABI, %B uses SPE vector ABIWarning: %B uses IBM long double, %B uses IEEE long doubleWarning: %B uses double-precision hard float, %B uses single-precision hard floatWarning: %B uses hard float, %B uses soft floatWarning: %B uses r3/r4 for small structure returns, %B uses memoryWarning: %B uses unknown MSA ABI %d (set by %B), %B uses %sWarning: %B uses unknown MSA ABI %d (set by %B), %B uses unknown MSA ABI %dWarning: %B uses unknown floating point ABI %d (set by %B), %B uses %sWarning: %B uses unknown floating point ABI %d (set by %B), %B uses unknown floating point ABI %dWarning: %B: Conflicting platform configurationWarning: %B: Conflicting platform configuration %s with %s.
Warning: %B: Unknown ARC object attribute %d.Warning: %B: Unknown EABI object attribute %dWarning: %B: Unknown MSPABI object attribute %dWarning: %s section size (%ld) is not a multiple of %d
Warning: %s section size (%ld) is smaller than virtual size (%ld)
Warning: %s section size is zero
Warning: Clearing the interworking flag of %B because non-interworking code in %B has been linked with itWarning: Clearing the interworking flag of %B due to outside requestWarning: Not setting interworking flag of %B since it has already been specified as non-interworkingWarning: RL78_SYM reloc with an unknown symbolWarning: RX_SYM reloc with an unknown symbolWarning: alignment %u of common symbol `%s' in %B is greater than the alignment (%u) of its section %AWarning: alignment %u of symbol `%s' in %B is smaller than %u in %BWarning: fixup count mismatch
Warning: gc-sections option ignoredWarning: size of symbol `%s' changed from %Lu in %B to %Lu in %BWarning: symbol `%s' is both section and non-sectionWarning: type of symbol `%s' changed from %d to %d in %BWarning: unset or old architecture flags. 
	       Use default machine.
Warning: writing archive was slow: rewriting timestamp
Writing updated armap timestampXGATE address (%lx) is not within shared RAM(0xE000-0xFFFF), therefore you must manually offset the address, and possibly manage the page, in your code.[%u]: Lower: %u, upper: %u
[abi=16-bit int, [abi=32-bit int, [whose name is lost]_bfd_vms_output_counted called with too many bytes_bfd_vms_output_counted called with zero bytes`%s' refers to a non entry function.a PDE objecta PIE objecta shared objectaddressaddress not word alignarray descriptor:
array, dim: %u, bitmap: arsize: %u, a0: 0x%08x
atomic, type=0x%02x %s
bad section index in %sbanked address [%lx:%04lx] (%lx) is not in the same bank as current banked address [%lx:%04lx] (%lx)base: %u, pos: %u
bfd_mach_o_canonicalize_symtab: unable to load symbolsbfd_mach_o_read_section_32: overlarge alignment value: %#lx, using 32 insteadbfd_mach_o_read_section_64: overlarge alignment value: %#lx, using 32 insteadbfd_mach_o_read_symtab_symbol: name out of range (%lu >= %u)bfd_mach_o_read_symtab_symbol: symbol "%s" specified invalid section %d (max %lu): setting to undefinedbfd_mach_o_read_symtab_symbol: symbol "%s" specified invalid type field 0x%x: setting to undefinedbfd_mach_o_read_symtab_symbol: unable to read %d bytes at %ubfd_mach_o_read_symtab_symbols: unable to allocate memory for symbolsbfd_mach_o_scan: unknown architecture 0x%lx/0x%lxbfd_pef_scan: unknown architecture 0x%lxblkbeg: address: 0x%08x, name: %.*s
blkend: size: 0x%08x
cannot create stub entry %scannot emit dynamic relocations in read-only sectioncannot emit fixups in read-only sectioncannot find EMH in first GST record
cannot handle R_MEM_INDIRECT reloc when using %s outputcannot read DMT
cannot read DMT header
cannot read DMT psect
cannot read DST
cannot read DST header
cannot read DST symbol
cannot read EIHA
cannot read EIHD
cannot read EIHI
cannot read EIHS
cannot read EIHVN header
cannot read EIHVN version
cannot read EISD
cannot read GST
cannot read GST record
cannot read GST record header
cannot read GST record length
class: %u, dtype: %u, length: %u, pointer: 0x%08x
corrupt %s section in %Bcould not find section %scould not locate special linker symbol __ctbpcould not locate special linker symbol __epcould not locate special linker symbol __gpcould not open shared image '%s' from '%s'cpu=HC11]cpu=HC12]cpu=HCS12]cpu=XGATE]dangerous relocationdelta pc +%-4ddelta_pc_l: +0x%08x
delta_pc_w %u
descdimct: %u, aflags: 0x%02x, digits: %u, scale: %u
discarded output section: `%A'discarding zero address range FDE in %B(%A).
discontiguous range (nbr: %u)
dynamic relocation in read-only sectiondynamic variable `%s' is zero sizeenumbeg, len: %u, name: %.*s
enumelt, name: %.*s
enumend
epilog: flags: %u, count: %u
error reading cpu type from elf private dataerror: %B contains a reloc (%#Lx) for section %A that references a non-existent global symbolerror: %B does not use Maverick instructions, whereas %B doeserror: %B is already in final BE8 formaterror: %B is compiled as absolute position code, whereas target %B is position independenterror: %B is compiled as position independent code, whereas target %B is absolute positionerror: %B is compiled for APCS-%d, whereas %B is compiled for APCS-%derror: %B is compiled for APCS-%d, whereas target %B uses APCS-%derror: %B is compiled for the EP9312, whereas %B is compiled for XScaleerror: %B needs 8-byte alignment but %B is set for 4-byte alignmenterror: %B passes floats in float registers, whereas %B passes them in integer registerserror: %B passes floats in integer registers, whereas %B passes them in float registerserror: %B requires more array alignment than %B preserveserror: %B requires more stack alignment than %B preserveserror: %B uses %s instructions but %B uses %serror: %B uses 64-bit doubles but %B uses 32-bit doubleserror: %B uses FPA instructions, whereas %B does noterror: %B uses FPU-3.0 but %B only supports FPU-2.0error: %B uses Maverick instructions, whereas %B does noterror: %B uses VFP instructions, whereas %B does noterror: %B uses VFP register arguments, %B does noterror: %B uses hardware FP, whereas %B uses software FPerror: %B uses iWMMXt register arguments, %B does noterror: %B uses software FP, whereas %B uses hardware FPerror: %B uses the %s code model whereas %B uses the %s code modelerror: %B uses the %s data model but %B only uses MSP430 instructionserror: %B uses the %s data model whereas %B uses the %s data modelerror: %B uses the large code model but %B uses MSP430 instructionserror: %B uses the small code model but %B uses the %s data modelerror: %B(%A) is too large (%#Lx bytes)error: %B: <corrupt x86 ISA needed size: 0x%x>error: %B: <corrupt x86 ISA used size: 0x%x>error: %B: <corrupt x86 feature size: 0x%x>error: %B: Big-endian R2 is not supported.error: %B: Conflicting CPU architectures %d/%derror: %B: Conflicting architecture profiles %c/%cerror: %B: Conflicting use of R9error: %B: Object has vendor-specific contents that must be processed by the '%s' toolchainerror: %B: Object tag '%d, %s' is incompatible with tag '%d, %s'error: %B: SB relative addressing conflicts with use of R9error: %B: Unknown CPU architectureerror: %B: cannot mix rf16 with full register set %B.
error: %B: conflicting ISA extension attributes %s with %s.
error: %B: conflicting attributes %s.
error: %B: conflicting attributes %s: %s with %s.
error: %B: size of section %A is not multiple of address sizeerror: %B: unable to merge CPU base attributes %s with %s.
error: %B: unable to merge ISA extension attributes %s.
error: %B: unable to merge virtualization attributes with %Berror: Can't find symbol: _SDA_BASE_.error: IFC relocation error.error: Jump IFC Fail.error: Source object %B has EABI version %d, but target %B has EABI version %derror: fp16 format mismatch between %B and %Berror: inappropriate relocation type for shared library (did you forget -fpic?)error: undefined symbol __rtiniterror: unknown Tag_ABI_array_object_align_expected value in %Berror: unknown Tag_ABI_array_object_alignment value in %Bexecutablefailed creating ex9.it %s hash table entryfailed to allocate space for new APUinfo section.failed to compute new APUinfo section.failed to install new APUinfo section.fatal error while creating .fixupgeneric linker can't handle %sglobal pointer relative address out of rangeglobal pointer relative relocation at address 0x%08x when _gp not defined
global pointer relative relocation when _gp not definedhidden symbolhidden symbol ignoring reloc %s
incr_linum(b): +%u
incr_linum_l: +%u
incr_linum_w: +%u
indirect, defined at 0x%08x
internal error: addend should be zero for R_LM32_16_GOTinternal error: addend should be zero for R_OR1K_GOT16internal error: branch/jump to an odd address detectedinternal error: dangerous errorinternal error: dangerous relocationinternal error: merge of architecture '%s' with architecture '%s' produced unknown architectureinternal error: out of range errorinternal error: suspicious relocation type used in shared libraryinternal error: unknown errorinternal error: unsupported relocation errorinternal inconsistency in size of .got.loc sectioninternal symbolinternal symbol invalid input relocation when producing non-ELF, non-mmo format output.
 Please use the objcopy program to convert from ELF or mmo,
 or assemble using "-no-expand" (for gcc, "-Wa,-no-expand"invalid input relocation when producing non-ELF, non-mmo format output.
 Please use the objcopy program to convert from ELF or mmo,
 or compile using the gcc-option "-mno-base-addresses".invalid relocation addressinvalid relocation type %dinvalid use of %s with contextsip2k linker: missing page instruction at %#Lx (dest = %#Lx)ip2k linker: redundant page instruction at %#Lx (dest = %#Lx)ip2k relaxer: switch table header corrupt.ip2k relaxer: switch table without complete matching relocation information.label, name: %.*s
len: %2u, kind: %2u line num  (len: %u)
linkable imagelinker stubs in %u group
linker stubs in %u groups
literalliteral relocation occurs for an external symbolmach-o: there are too many sections (%u) maximum is 255,
mep: no reloc for code %dmodbeg
modend
name: [val: %08lx len %d]: nativenew entry function(s) introduced but no output import library specified:nonon-contiguous array of %s
non-dynamic relocations refer to dynamic symbol %snon-overlay size of 0x%v plus maximum overlay size of 0x%v exceeds local store
non-zero addend in @fptr relocnonenot enough GOT space for local GOT entriesnot mapping: data=%lx mapped=%d
not mapping: env var not set
not setout of rangeoverflow after relaxationoverlay stub relocation overflowpointer
private flags = %lxprivate flags = %lx:private flags = %lx: private flags = %x:private flags = 0x%lxprivate flags = 0x%lx:prolog: bkpt address 0x%08x
protected symbolprotected symbol recbeg: name: %.*s
recend
reference to a banked address [%lx:%04lx] in the normal address space at %04lxregreloc (%d) is *UNKNOWN*relocation `%s' not yet implementedrelocation out of rangerelocation references symbol not defined in the modulerelocation requires zero addendrelocation should be even numberrelocations between different segments are not supportedreopening %B: %s
reserved cmd %drtnbeg
rtnend: size 0x%08x
section address (%#Lx) below start of segment (%#Lx)septyp, name: %.*s
set_abs_pc: 0x%08x
set_line_num(w) %u
set_line_num_b %u
set_line_num_l %u
shared objectsmall-data section exceeds 64KB; lower small-data size limit (see option -G)som_sizeof_headers unimplementedsorry, no support for duplicate object files in auto-overlay script
sorry: modtab, toc and extrefsyms are not yet implemented for dysymtab commands.source (len: %u)
standard data: %s
static procedure (no name)stub entry for %s cannot load .plt, dp offset = %Ldstubs don't match calculated sizesymbolsymbol system version array information:
term(b): 0x%02xterm_w: 0x%04xthe bfin target does not currently support the generation of copy relocationstype spec for element:
type spec for subscript %u:
typed pointer
typspec (len: %u)
unable to allocate data for load command %#xunable to find ARM glue '%s' for '%s'unable to find THUMB glue '%s' for '%s'unable to layout unknown load command %#xunable to read in %s section from %Bunable to write unknown load command %#xunaligned bit-string of %s
uncertain calling convention for non-COFF symbolundefined undefined %s reference in complex symbol: %sunhandled egsd entry type %u
unhandled emh subtype %u
unknownunknown ETIR command %dunknown errorunknown header byte-order value %#xunknown line command %dunknown operator '%c' in complex symbolunknown source command %dunknown v850 architectureunknown: %xunrecognised MIPS reloc number: %dunrecognized relocation (0x%x)unsupported STA cmd %sunsupported relocunsupported reloc typeunsupported relocationunsupported relocation between data/insn address spacesusing multiple gp valuesv850 E3 architecturev850 architecturev850e architecturev850e1 architecturev850e2 architecturev850e2v3 architecturev850e3v5 architecturevflags: 0x%02x, value: 0x%08x vma:			BeginAddress	 EndAddress	  UnwindData
warning: %B and %B differ in wchar_t sizewarning: %B and %B differ in whether code is compiled for DSBTwarning: %B has a corrupt string table index - ignoringwarning: %B is truncated: expected core file size >= %Lu, found: %lluwarning: %B uses %s enums yet the output is to use %s enums; use of enum values across objects may failwarning: %B uses %u-byte wchar_t yet the output is to use %u-byte wchar_t; use of wchar_t values across objects may failwarning: %B: corrupt GNU_PROPERTY_TYPE (%ld) size: %#lxwarning: %B: corrupt GNU_PROPERTY_TYPE (%ld) type (0x%x) datasz: 0x%xwarning: %B: corrupt no copy on protected size: 0x%xwarning: %B: corrupt stack size: 0x%xwarning: %B: local symbol `%s' has no sectionwarning: %B: unsupported GNU_PROPERTY_TYPE (%ld) type: 0x%xwarning: %s exceeds section size
warning: %s overlaps %s
warning: %s section has zero sizewarning: attempt to export undefined symbol `%s'warning: call to non-function symbol %s defined in %Bwarning: discarding dynamic section %swarning: generating a shared library containing non-PIC codewarning: generating a shared library containing non-PID codewarning: relocation references a different segmentwarning: section '%s' is being made into a notewarning: section `%A' type changed to PROGBITSwarning: type and size of dynamic symbol `%s' are not definedwarning: unable to set size of %s section in %Bwarning: unable to update contents of %s section in %Bwarning: writing section `%A' at huge (ie negative) file offsetwarning: xdata section corruptwarning: xdata section corrupt
yesyou are not allowed to define %s in a scriptProject-Id-Version: bfd-2.30.0
Report-Msgid-Bugs-To: bug-binutils@gnu.org
POT-Creation-Date: 2018-01-13 13:44+0000
PO-Revision-Date: 2018-05-11 10:07+0100
Last-Translator: Pedro Albuquerque <palbuquerque73@gmail.com>
Language-Team: Portuguese <translation-team-pt@lists.sourceforge.net>
Language: pt
X-Bugs: Report translation errors to the Language-Team address.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);
X-Generator: Gtranslator 2.91.6
	    TLS: %A	<corrupto: 0x%04lx>	Tabela end. exportação 			Tabela end. exportação 		%08lx
	rva de tabela de end. de exportação (0x%lx) ou total de entradas (0x%lx) inválidos
	rva de tabela de ponteiro de nome (0x%lx) ou total de entradas (0x%lx) inválidos
	rva de tabela ordinal (0x%lx) ou total de entradas (0x%lx) inválidos
	Tabela Nome Ponteiro 			Tabela ordinal 				[%4ld] <desvio corrupto: %lx>
	[Nome Ponteiro/Ordinal] Tabela	%08lx
	code-base %08lx toc (carregável/actual) %08lx/%08lx
	não-TLS: %A	reloc %4d desvio %4x [%4lx] %s	vma:  Dica/Ord Nome-membro ligado a

	Nome DLL: %.*s


Relocalizações base de ficheiros PE (interpretado conteúdo de secção .reloc)

      Símbolo End+1: %-7ld   Tipo:  %s
      Símbolo End+1: %ld
      Primeiro símbolo: %ld
      Símbolo local: %ld
      Tipo: %s
      enum; símbolo End+1: %ld
      struct; símbolo End+1: %ld
      union; símbolo End+1: %ld
 matriz de versão off: %u

Características 0x%x

Despejo de %s

Secção dinâmica:

Erro: secção %s contém o endereço dos dados de depuração, mas é muito pequena

Exec Auxiliary Header

Tabela end. exportação -- Base ordinal %ld

Descritor de função localizado no endereço inicial: %04lx

Sem secção reldata! Descritor de função não descodificado.

Início da partição[%d] = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }

Cabeçalho do programa:

Tamanho de stack para funções. Anotações: "*" stack máx, "t" chamada tail

As tabelas de exportação (interpretado %s conteúdo de secção)


A tabela de função (interpretado %s conteúdo de secção)

A tabela de função (interpretado conteúdo de secção .pdata)

As tabelas de importação (interpretado %s conteúdo de secção)

Há uma pasta de depuração em %s em 0x%lx


Há uma pasta de depuração em %s, mas essa secção não tem conteúdo

Há uma pasta de depuração, mas a secção que a contém não pôde ser encontrada

Há um primeiro thunk, mas a secção que o contém não pôde ser encontrada

Há uma tabela de exportação em %s em 0x%lx

Há uma tabela de exportação em %s, mas não serve nessa secção

Há uma tabela de exportação em %s, mas é demasiado pequena (%d)

Há uma tabela de exportação em %s, mas essa secção não tem conteúdo

Há uma tabela de exportação, mas a secção que a contém não pôde ser encontrada

Há uma tabela de importação em %s em 0x%lx

Há uma tabela de importação em %s, mas essa secção não tem conteúdo

Há uma tabela de importação, mas a secção que a contém não pôde ser encontrada

Referências da versão:

Definições da versão:

Endereço virtual: %08lx, tamanho do pedaço %ld (0x%lx), número de fixups %ld

AVISO: dados extra em secção .rsrc - será ignorada pelo Windows:

Tabela [Ordinal/Nome Ponteiro]

cabeçalho ppcboot:
        pc: 0x%08x
    cmd *não gerido* %u
    endereço: 0x%08x
    endereço: 0x%08x, tamanho: %u
    bands: %u, endereço: 0x%08x, endereço pd: 0x%08x
    nome global: %.*s
    tam: %u bits
    índice de ligação: %u, insn de substituição: 0x%08x
    nome: %.*s
    pc: 0x%08x
    pc: 0x%08x line: %5u
    índ psect 1: %u, desvio 1: 0x%08x %08x
    índ psect 2: %u, desvio 2: 0x%08x %08x
    índ psect 3: %u, desvio 3: 0x%08x %08x
    psect: %u, desvio: 0x%08x %08x
    nome da rotina: %.*s
   %02u    (tipo: %3u, tam.: 4+%3u):    cmd *não gerido* %u
   Erro: data de compilação truncada
   Erro: o tamanho é menor que o tamanho de um registo EEOM
   Erro: o tamanho é menor que o tamanho de um registo EMH
   Erro: nome de módulo em falta
   Erro: nome de módulo muito longo
   Erro: versão de módulo em falta
   Erro: versão de módulo muito longa
   Erro: o tamanho do registo é menor que o tamanho de um registo EMH_MHD
   Erro: tamanho maior que o espaço restante no registo
   alinhamento  : 2**%u
   aloc. (tam)   : %u (0x%08x)
   aloc. (tam): %u (0x%08x)
   ident. ascii  : %.*s
   ident. binária: 0x%08x
   bitmap: 0x%08x (total: %u):
   end. de cód.: 0x%08x
   data compilação: %.17s
   compilador : %.*s
   código de conclusão: %u
   copyright: %.*s
   declfile: tam: %u, bands: %u, idfich: %u
   deflines %u
   nome entidade : %.*s
   ponto de entrada: 0x%08x
   severidade do erro: %x
   ficheiro: %.*s
   nomeficheiro: %.*s
   bandeiras     : 0x%08x   bandeiras  : 0x%04x   bands: %d, linguagem: %u, principal: %u, menor: %u
   bandeiras: 0x%04x   formfeed
   comparação id : %x
   desvio imagem : 0x%08x
   nome linguagem: %.*s
   índice de ligação: %u, global: %.*s
   índice de ligação: %u, nome do procedimento: %.*s
   índice de ligaão: %u, procedimento: %.*s
   índice de ligação: %u, psect: %u, desvio: 0x%08x %08x
   tam. máx registo: %u
   nome de módulo : %.*s
   nome módulo: %.*s
   versão de módulo: %.*s
   nome          : %.*s
   nome        : %.*s
   nome       : %.*s
   número de pares de ligação condicional: %u
   nome objecto  : %.*s
   desvio: 0x%08x, val: 0x%08x
   descrição de procedimento: 0x%08x
   índice psect : %u
   índice psect do ponto de entrada: %u
   índice psect: %u
   desvio psect: %u
   desvio psect: 0x%08x
   rms: cdt: 0x%08x %08x, ebk: 0x%08x, ffb: 0x%04x, rfo: %u
   setfile %u
   setlnum %u
   setrec %u
   assinatura: %.*s
   nível de estrutura: %u
   desvio do vector de símbolo: 0x%08x
   desvio symvec : 0x%08x
   título: %.*s
   transferir band end: 0x%02x
   transferir psect end.: %u
   transferir endereço: 0x%08x
   vector      : 0x%08x
   máscara de versão: 0x%08x
  %s (tam=%u+%u):
  %u: tam.: %u, bands: 0x%02x, nome: %.*s
  EEOM (tam=%u):
  EGSD (tam=%u):
  entrada EGSD %2u (tipo: %u, tamanho: %u):   EMH %u (tam=%u):   base: 0x%08x %08x, tam.: 0x%08x, prot: 0x%08x   base_va : 0x%08x
  bitcount: %u, endereço base: 0x%08x
  ramo           %lu
  ajuste toc     %lu
  ramo longo     %lu
  aj. toc longo  %lu
  chamada plt    %lu
  toc cham. plt  %lu
  entrada global %lu  chamadas:
  chgprtoff : %5u
  codeadroff: %5u, lpfixoff  : %5u
  fixuplnk: 0x%08x %08x
  bandeiras: 0x%08x
  iaflink : 0x%08x %08x
  imagem %u (%u entradas)
  imagem %u (%u entradas), desvios:
  lppsbfixoff: %5u
  início psect: 0x%08x, tamanho: %u
  qdotadroff: %5u, ldotadroff: %5u
  qrelfixoff: %5u, lrelfixoff: %5u
  requerido de %s:
  shlextra  : %5u, permctx   : %5u
  shlstoff  : %5u, shrimgcnt : %5u
  tamanho: %u
  bandeiras fich. entrada: %s  bandeiras fich. saída:   %s %08x 0x%08x 64B <versão EABI não reconhecida> BPAGE: %u COM COMM Alterar protecção (%u entradas):
 Fixups de referência de endereço de código:
 DEF EXE requerido suporte FPU:  1º endereço: 0x%08x 0x%08x
 4º endereço: 0x%08x 0x%08x
 GBL Colar sequência de código LIBFixups de referência de pares de ligação:
 NOMOD NORM OVR PIC QVAL RD REL Register restore millicode Register save millicode Recursos começam no desvio: %#03x
 SHR 2º endereço: 0x%08x 0x%08x
 Imagens partilháveis:
 Imagem partilhada: 0x%08x 0x%08x
 Tabela de cadeia começa no desvio: %#03x
 Tabela: Car.: %d, Hora: %08lx, Ver: %d/%d, Nomes Núm: %d, IDs: %d
 3º endereço: 0x%08x 0x%08x
 UNI VEC VECEP WEAK WRT [64-bit doubles] [BE8] [formato flutuante FPA] [LE8] [formato flutuante Maverick] [formato flutuante VFP] [Version1 EABI] [Version2 EABI] [Version3 EABI] [Version4 EABI] [Version5 EABI] [desvio XGATE RAM] [abi desconhecida] [abi=64] [abi=EABI32] [abi=EABI64] [abi=N32] [abi=O32] [abi=O64] [abiv%ld] [posição absoluta] [d-float] [símbolos dinâmicos usam índice de segmento] [fix dep] [flutuantes passados em registos flutuantes] [flutuantes passados em registos inteiros] [g-float] [hard-float ABI] [interworking activo] [bandeira interworking não inicializada] [interworking não suportado] [interworking suportado] [símbolos de mapeamento precedem outros] [memória=bank-model] [memória=flat] [novo ABI] [sem abi definida] [nonpic] [não 32bitmode] [ABI antigo] [pic] [posição independente] [executável relocalizável] [soft-float ABI] [software FP] [tabela de símbolo ordenada] [símbolos têm um prefixo _] [ISA desconhecida] [tabela de símbolo desordenada] [v10 e v32] [v32] alinhamento de entidades 8-byte:  GST corrompido
 tabela de módulo de depuração: vbn: %u, tamanho: %u
 tabela de símbolo de depuração : vbn: %u, tamanho: %u (0x%x)
 fixup info rva:  bandeiras: 0x%04x tabela de símbolo global: vbn: %u, registos: %u
 ident: 0x%08x, nome: %.*s
 ident: 0x%08x, sysver: 0x%08x, match ctrl: %u, symvect_size: %u
 ident build imagem: %.*s
 ident imagem     : %.*s
 nome da imagem   : %.*s
 tipo de imagem: %u (%s) total img I/O: %u, nº canais: %u, req pri: %08x%08x
 hora de ligação  : %s
 bands linker: %08x: ident linker     : %.*s
 fixups de referência de .address de long-word:
 fixups de relocalização de long-word:
 majorid: %u, minorid: %u
 desvio do módulo: 0x%08x, tamanho: 0x%08x, (%u psects)
 desvios: isd: %u, activ: %u, symdbg: %u, imgid: %u, patch: %u
 fixups de referência de .address de quad-word:
 fixups de relocalização de quad-word:
 secção: base: 0x%08x%08x tamanho: 0x%08x
 tamanho de doubles:  tipo: %3u, tam: %3u (em 0x%08x):  tipo de registo EOBJ %u não gerido
 vbn: %u, pfc: %u, matchctl: %u tipo: %u ( vma:			End. inicial     End. final       Info Unwind
 vma:		Início   Fim      EH       EH       PrólogFim  Excepção
     		Endereço Endereço Gestor   Dados    Endereço   Máscara
 vma:		Início   Prólogo  Função   Bands    Excepção  EH
     		Endereço Tam.     Tam.     32b exc  Gestor    Dados
 vma:            Dica    Hora      Avanço   DLL       Prim.
                 Tabela  Selo      Cadeia   Nome      Thunk
#<Código de erro inválido>%03x %*.s  Folha: End.: %#08lx, Tamanho: %#08lx, Codepage: %d
%03x %*.s Entrada: %A tem secções ordenadas ["%A" em %B] e desordenadas ["%A" em %B] em simultâneo%A tem secções ordenadas e desordenadas em simultâneo%A:0x%v lrlive .brinfo (%u) difere da análise (%u)
%A:0x%v não encontrado na tabela de função
%B (%s): bandeira de secção %s (%#lx) ignorada%B e %B são para configurações diferentes%B e %B são para cores diferentes%B contém código CRIS v32, incompatível com os objectos anteriores%B contém código não-CRIS-v32, incompatível com os objectos anteriores%B tem ambos os atributos Tag_MPextension_use actual e legado%B não tem permissão para definir %s%B secção %A excede tamanho de grupo de fictício%B número de símbolo %lu referencia secção SHT_SYMTAB_SHNDX não existente%B usa e_flags 0x%lx desconhecido%B(%#Lx): erro: impossível criar folha STM32L4XX. Sai fora do intervalo por %Ld bytes. Impossível codificar a instrução do ramo. %B(%A): erro: chamada a função não definida "%s"%B(%A): erro interno: relocalização perigosa%B(%A): erro interno: erro fora do intervalo%B(%A): erro interno: erro desconhecido%B(%A): erro interno: erro relocalização não suportada%B(%A): tabela de propriedade inválida%B(%A): múltiplos modelos TLS não são suportados%B(%A): relocalização %d tem índice de símbolos inválido %ld%B(%A): encontrado símbolo de biblioteca partilhada %s ao realizar ligação estática%B(%A): relocalização PID insegura %s em %#Lx (contra %s em %s)%B(%A): aviso: o uso de folhas de ramos longos na secção com atributo de secção SHF_ARM_PURECODE só é suportado para alvos M-profile que implementem a instrução movw.%B(%A): aviso: acesso não alinhado ao símbolo "%s" na área de dados pequenos%B(%A): aviso: acesso não alinhado a dados pequenos de tipo %d.%B(%A+%#Lx): %s fixup para insn %#x não é suportado em ligação não partilhada%B(%A+%#Lx): relocalização %s contra secção SEC_MERGE%B(%A+%#Lx): relocalização %s contra símbolo externo "%s"%B(%A+%#Lx): relocalização %s não permitida em objecto partilhado%B(%A+%#Lx): %s usado com símbolo TLS %s%B(%A+%#Lx): %s usado com símbolo não-TLS %s%B(%A+%#Lx): relocalização CMEM para "%s" é inválida, 16 MSB deveria ser %#x (o valor é %#Lx)%B(%A+%#Lx): relocalização CMEM para "%s+%#Lx" é inválida, 16 MSB deveria ser %#x (o valor é %#Lx)%B(%A+%#Lx): só são permitidas instruções ADD ou SUB para relocalizações de grupo ALU%B(%A+%#Lx): transporte ao dividir %#Lx para relocalização de grupo %s%B(%A+%#Lx): impossível emitir fixup a "%s" em secção só de leitura%B(%A+%#Lx): impossível gerir %s para %s%B(%A+%#Lx): impossível atingir %s%B(%A+%#Lx): impossível atingir %s, recompile com -ffunction-sections%B(%A+%#Lx): impossível descodificar instrução para relocalização XTENSA_ASM_SIMPLIFY; possível troca de configuração%B(%A+%#Lx): impossível descodificar instrução; possível troca de configuração%B(%A+%#Lx): erro: %s com instrução inesperada %#x%B(%A+%#Lx): instrução inválida para relocalização TLS %s%B(%A+%#Lx): reloc contra "%s": erro %d%B(%A+%#Lx): desvio de relocalização fora do intervalo (tamanho=%#Lx)%B(%A+%#Lx): instrução ARM "%#lx" inesperada em trampolim TLS%B(%A+%#Lx): instrução ARM "%#lx" inesperada referenciada por TLS_GOTDESC%B(%A+%#Lx): instrução Thumb "%#lx" inesperada em trampolim TLS%B(%A+%#Lx): instrução Thumb "%#lx" inesperada referenciada por TLS_GOTDESC%B(%A+%#Lx): fix inesperado para relocalização %s%B(%A+%#Lx): relocalização %s insolúvel contra o símbolo "%s"%B(%A+%#Lx): relocalização insolúvel contra símbolo "%s"%B(%A+%#lx): entrada Stabs tem índice de cadeia inválido.%B(%A+%#x): erro: detectada múltipla carga em bloco de instrução IT não-último: impossível gerar folha STM32L4XX.
Use a opção gcc -mrestrict-it para gerar só uma instrução por bloco IT.
%B(%A+0x%lx): %d bytes requeridos para alinhamento com limite %d-byte, mas só há %d presentes%B(%A+0x%lx): impossível limpar RISCV_PCREL_HI20 relocfor corespondente a reloc RISCV_PCREL_LO12%B(%A+0x%lx): esperada relocalização estilo 16A em 0x%08x insn%B(%A+0x%lx): esperada relocalização estilo 16D em 0x%08x insn%B(%A+0x%v): chamada a secção não-código %B(%A), análise incompleta
%B(%s): aviso: interworking não activo.
  primeira ocorrência: %B: chamada ARM a Thumb%B(%s): aviso: interworking não activo.
  primeira ocorrência: %B: chamada Thumb a ARM%B(%s): aviso: interworking não activo.
  primeira ocorrência: %B: chamada arm a thumb%B(%s): aviso: interworking não activo.
  primeira ocorrência: %B: chamada thumb a arm
  considere religação com --support-old-code activo%B(%s+%#Lx): relocalização %s insolúvel comtra símbolo "%s"%B, secção %A:
  relocalização %s inválida em objecto partilhado; tipicamente uma mistura de opções, recompile com -fPIC%B, secção %A:
  relocalização %s não deve ser usada em objecto partilhado; recompile com -fPIC%B, secção %A:
  objecto compatível v10/v32 não deve conter uma relocalização PIC%B, secção %A: sem PLT para relocalização %s contra símbolo "%s"%B, secção %A: sem PLT ou GOT para relocalização %s contra símbolo "%s"%B, secção %A: relocalização %s tem referência não definida a "%s", talvez uma declaração misturada?%B, secção %A: relocalização %s não é permitida para "%s", um símbolo global com visibilidade predefinida, talvez uma declaração misturada?%B, secção %A: relocalização %s não é permitida para símbolo global: "%s"%B, secção %A: relocalização %s não é permitida para "%s", que está definido fora do programa, talvez uma declaração misturada?%B, secção %A: relocalização %s sem GOT criado%B, secção %A: relocalização %s com adenda não-zero %Ld contra símbolo local%B, secção %A: relocalização %s com adenda não-zero %Ld contra símbolo "%s"%B, secção %A: relocalização insolúvel %s contra símbolo "%s"%B, secção %A, para símbolo "%s":
  relocalização %s não deve ser usada em objecto partilhado; recompile com -fPIC%B: reloc !samegp contra símbolo sem .prologue: %s%B: %#Lx: fatal: R_SH_PSHA relocalização %Ld fora do intervalo -32..32%B: %#Lx: fatal: R_SH_PSHL relocalização %Ld fora do intervalo -32..32%B: %#Lx: fatal: transporte reloc ao relaxar%B: %#Lx: fatal: relocalização %s desalinhada %#Lx%B: %#Lx: fatal: ramo alvo não alinhado para relocalização relax-support%B: %#Lx: aviso: R_SH_USES aponta para insn %#x não reconhecido%B: %#Lx: aviso: R_SH_USES aponta para insn 0x%x não reconhecido%B: %#Lx: aviso: R_V850_LONGCALL aponta para insn %#x não reconhecido%B: %#Lx: aviso: R_V850_LONGCALL aponta para insns não reconhecido%B: %#Lx: aviso: R_V850_LONGCALL aponta para reloc não reconhecida%B: %#Lx: aviso: R_V850_LONGCALL aponta para reloc %#Lx não reconhecida%B: %#Lx: aviso: R_V850_LONGJUMP aponta para insn %#x não reconhecido%B: %#Lx: aviso: R_V850_LONGJUMP aponta para insns não reconhecido%B: %#Lx: aviso: R_V850_LONGJUMP aponta para reloc não reconhecida%B: %#Lx: aviso: mau desvio de carga R_SH_USES%B: %#Lx: aviso: mau desvio R_SH_USES%B: %#Lx: aviso: má contagem%B: %#Lx: aviso: impossível encontrar reloc COUNT%B: %#Lx: aviso: impossível encontrar reloc esperado%B: %#Lx: aviso: símbolo em secção inesperada%B: %A tamanho inválido de secção de entrada%B: %A não está em ordem%B: %A aponta para lá do fim da secção de texto%B: %A+%#Lx: sem símbolo para INHERIT%B: %A+%#Lx: aviso: relocalização %s contra insn inesperado%B: %A+%#Lx: aviso: relocalização LITERAL contra insn inesperado%B: %A: transporte de reloc: %#x > 0xffff%B: %s não absoluto%B: %s acedido como símbolo local normal e de fio, em simultâneo%B: %s: versão necessária %d inválida%B: %s: versão %u inválida (máx %d)%B: %s: transporte de reloc: 0x%lx > 0xffff%B: "%s" acedido como símbolo local normal e thread em simultâneo%B: --in-implib só é suportado para bibliotecas importadas Secure Gateway.%B: entrada .gnu.version_d inválida%B: entrada .gnu.version_r inválida%B: sub-segmento .got excede 64K (tamanho %d)%B: .opd não é uma matriz normal de entradas opd%B: secção .preinit_array não é permitida em DSO%B: tamanho da secção .reginfo devia ser %d bytes, tamanho actual é %d%B: falha de união .rsrc: secção .rsrc corrupta%B: falha de união .rsrc: tamanho .rsrc inesperado%B: relocalização @gprel contra símbolo dinâmico %s%B: ramo @internal para símbolo dinâmico %s%B: relocalização @pcrel contra símbolo dinâmico %s%B: ABI incompatível com a da emulação seleccionada%B: ABI é incompatível com aquele da emulação seleccionada:
  emulação alvo "%s" não corresponde a "%s"%B: troca ABI: a ligar módulo %s com módulos prévios %s%B: versão ABI %ld não é compatível com a saída da versão ABI %ld%B: troca ASE: a ligar módulo %s com módulos prévios %s%B: troca de arquitectura com módulos anteriores%B: imagens BE8 só são válidas em modo big-endian.%B: registo de relocalização importado inválido: %d%B: má definição de símbolo: "Main" definido como %s em vez do endereço inicial %s
%B: reloc CALL15 em %#Lx não contra símbolo global%B: reloc CALL16 em %#Lx não contra símbolo global%B: impossível encontrar reloc LO16 correspondente contra "%s" para %s em %#Lx na secção "%A"%B: impossível relaxar br (%s) para "%s" em %#Lx na secção "%A" com tamanho %#Lx (> 0x1000000).%B: impossível relaxar br em %#Lx na secção "%A". Por favor, use brl ou um ramo indirecto.%B: impossível gerir binários Alpha comprimidos.
   Use bandeiras do compilador ou objZ para gerar binários descomprimidos.%B: impossível ligar objectos %s e %s.%B: tamanho da pasta de dados (%lx) excede o espaço deixado na secção (%Lx)%B: bandeira EF_OR1K_NODELAY trocada com módulos anteriores%B: erro: Debug Data termina após o fim da pasta de depuração.%B: Erro: definição múltipla de "%s"; início de %s está definido num ficheiro previamente ligado
%B: erro: search_nds32_elf_blank reporta nó errado
%B: falha ao adicionar símbolo %s renomeado%B: falha ao procurar secção de informação para a secção %d%B: falha ao procurar secção de ligação para a secção %d%B: falha ao ler secção de dados de depuração%B: relocalização de descritor de função com adenda não-zero%B: erro GAS: PTB insn inesperado com R_SH_PT_16%B: secção "%A" de GNU_MBIN tem campo sh_info inválido: %d%B: transporte GOT: número de relocalizações com desvio 8- ou 16-bit > %d%B: transporte GOT: número de relocalizações com desvio 8-bit > %d%B: reloc GOT em %#Lx não esperada em executáveis%B: directiva IMPORT AS para %s oculta a IMPORT AS anterior%B: tamanho do vector ISR trocado com módulos anteriores, anterior %u-byte, actual %u-byte%B: conjunto de instruções trocado com os módulos anteriores%B: erro interno de inconsistência no valor para o
 registo global alocado para o linker: ligado: %#Lx != relaxado: %#Lx%B: tipo de relocalização exportado inválido: %d%B: tipo de relocalização importado inválido: %d%B: sh_link field (%d) inválido no número da secção %d%B: directiva LOCAL: registo $%Ld não é um registo local. O primeiro registo global é $%Ld.%B: tabela de descritor de símbolo local é NULL ao aplicar relocalização %s contra símbolo local%B: reloc malformada detectada para secção %A%B: reloc mal formada detectada para secção %s%B: OMIT_FP aninhado em %A.%B: sem núcleo para alocar um símbolo com %d bytes
%B: sem núcleo para alocar nome de secção %s
%B: sem secção de versão de símbolo para o símbolo com versão "%s"%B: sem espaço para cabeçalhos do programa, tente ligar com -N%B: só registos %%g[2367] podem ser declarados usando STT_REGISTER%B: tipo de máquina reconhecido mas não gerido (0x%x) em arquivo Import Library Format%B: Relocalização %s (%d) actualmente não suportada.
%B: Relocalização %s ainda não suportada para símbolo %s.%B: relocalizações em ELF (EM: %d) genérico%B: relocalização relativa a SB mas __c6xabi_DSBT_BASE não definido%B: secção SHT_GROUP [índice %d] não tem secções SHF_GROUP%B: símbolo especial "%s" só é permitido para arquitecturas ARMv8-M ou posteriores.%B: código exec TLS local não pode ser ligado a objectos partilhados%B: secções TLS não adjacentes:%B: transição TLS de %s para %s contra "%s" em %#Lx na secção "%A" falhou%B: reloc TOC em %#Lx para símbolo "%s" sem entrada TOC%B: a primeira secção no segmento PT_DYNAMIC não é a secção .dynamic%B: o alvo (%s) de uma relocalização %s está na secção errada (%A)%B: demasiadas secções: %d (>= %d)%B: impossível ordenar relocs - têm mais de um tamanho%B: impossível ordenar relocs - têm um tamanho desconhecido%B: tipo de importação não gerido; %x%B: arquitectura desconhecida %s%B: atributo de objecto ARC %d obrigatório desconhecido.Aviso: %B: atributo de objecto EABI %d obrigatório desconhecido%B: tipo de relocalização %d desconhecido
%B: tipo de secção desconhecido em ficheiro a.out.adobe: %x
%B: OMIT_FP desirmanado em %A.%B: comando .directive não reconhecido: %s%B: tipo de nome de importação não reconhecido; %x%B: tipo de importação não reconhecido; %x%B: tipo de máquina não reconhecido (0x%x) em arquivo Import Library Format%B: classe de armazenamento %d não reconhecida para %s símbolo "%s"%B: transição %s para %s não suportada%B: aviso: instrução Arm BLX destina-se a função Arm "%s".%B: aviso: a ignorar bandeira de secção IMAGE_SCN_MEM_NOT_PAGED na secção %s%B: aviso: instrução Thumb BLX destina-se a função thumb "%s".%B: aviso: mau tamanho de opção "%s" %u menor que o seu cabeçalho%B: aviso: impossível determinar a função alvo para secção fictícia "%s"%B: aviso: geração PLT modo thumb-1 não é actualmente suportada%B: objecto partilhado XCOFF sem produzir saída XCOFF%B: XMC_TC0 símbolo "%s" é classe %d scnlen %Ld%B: __gp não cobre o segmento de dados curtos%B: desvio "%A" de %Ld de "%A" além do intervalo de ADDIUPC%B: "%s" acedido como símbolo local FDPIC e thread em simultâneo%B: "%s" acedido como símbolo normal e FDPIC em simultâneo%B: "%s" acedido como símbolo local normal e thread em simultâneo%B: "%s" e o seu símbolo especial estão em secções diferentes.%B: "%s" tem números de linha mas sem secção envolvente%B: "%s" em reloc loader mas sem símbolo loader%B: "%s" reloc não-PLT para símbolo definido em biblioteca partilhada e acedido a partir de executável (reconstrua o ficheiro com -fPIC ?)%B: "ld -r" não suportado com objectos PE MIPS
%B: símbolo standard "%s" ausente.%B: acesso além do fim da secção unida (%Ld)%B: adenda %s%#x em relocalização %s contra símbolo "%s" em %#Lx na secção "%A" está fora do intervalo%B: endereço %#Lx fora do intervalo para ficheiro Intel Hex%B: cabeçalho aout especifica um número inválido de entradas data-directory: %ld%B: tentativa de emitir conteúdo em endereço não múltiplo de 4 %#Lx%B: tentativa de carregar cadeias de secção não-cadeia (número %d)%B: tentativa de misturar objectos FDPIC e não-FDPIC%B tentativa de escrever tipo de reloc desconhecido%B: mau símbolo XTY_ER "%s": classe %d scnum %d scnlen %Ld%B: mau pair/reflo após refhi
%B: mau endereço reloc %#Lx na secção "%A"%B: mau índice de símbolo de reloc (%#Lx >= %#lx) para desvio %#Lx na secção "%A"%B: mau nome de secção de relocalização "%s"%B: mau tamanho de secção em ihex_read_section%B: mau tamanho de tabela de cadeias %Lu%B: mau índice de símbolo: %d%B: relocalização base-plus-offset contra símbolo de registo: %s em %A%B: relocalização base-plus-offset  contra símbolo de registo: (desconhecido) em %A%B: impossível representar secção "%A" num formato de ficheiro objecto a.out%B: impossível representar secção "%A" em oasys%B: impossível representar secção para símbolo"%s" num formato de ficheiro objecto a.out%B: impossível ligar módulos hard-float com módulos soft-float%B: impossível alocar nome de ficheiro para número de ficheiro %d, %d bytes
%B: impossível criar entrada fictícia %s%B: impossível ligar ficheiro objecto fdpic a executável não-fdpic%B: impossível ligar ficheiro objecto não-fdpic a executável fdpic%B: alteração em gp: BRSGP %s%B: classe %d símbolo "%s" não tem entradas aux%B: compilado %s -mtune=%s e ligado com módulos compilados %s -mtune=%s%B: compilado como objecto 32-bit e %B é 64-bit%B: compilado como objecto 64-bit e %B é 32-bit%B: compilado para um sistema 64 bit e o alvo é 32 bit%B: compilado para um sistema big endian e o alvo é little endian%B: compilado para um sistema little endian e o alvo é big endian%B: compilado normalmente e ligado com módulos compilados com -mrelocatable%B: compilado com %s e ligado com módulos compilados com %s%B: compilado com %s e ligado com módulos que usam relocalizações não-pic%B: compilado com -mrelocatable e ligado com módulos compilados normalmente%B: campo de tamanho corrupto no cabeçalho da secção de grupo: %#Lx%B: total de símbolos corrupto: %#Lx%B: impossível encontrar a secção de saída %A para a secção de entrada %A%B: impossível ler conteúdo da secção "%A"
%B: impossível escrever entradas .cranges adicionadas%B: impossível escrever entradas .cranges ordenadas%B: csect "%s" não está em secção envolvente%B: relocalização GOT directa %s contra "%s" sem registo-base não pode ser usada ao fazer um objecto partilhado%B: relocalização GOT directa R_386_GOT32X contra "%s" sem registo-base não pode ser usada ao fazer um objecto partilhado%B: directiva LOCAL só é válida com um registo ou um valor absoluto%B: relocalização dtp-relative contra símbolo dinâmico %s%B: fictício de exportação duplicado %s%B: secção "%A" duplicada tem conteúdo diferente
%B: secção "%A" duplicada tem tamanho diferente
%B: objecto dinâmico sem secção .loader%B: relocalização dinâmica contra "%T" em secção só de leitura "%A"
%B: relocalização dinâmica em secção "%A" só de leitura
%B: encontrado símbolo datalabel na entrada%B: endianness incompatível com a da emulação seleccionada%B: função de entrada "%s" está vazia.%B: função de entrada "%s" não saída.%B: erro: ABI trocado com módulos anteriores.%B: erro: poder de alinhamento %d da secção "%A" é muito grande%B: erro: impossível criar folha STM32L4XX.%B: erro: impossível definir _ITB_BASE_%B: erro: errata Cortex-A8 fictícia está alocada a localização não-segura%B: erro: errata Cortex-A8 fictícia fora do intervalo (ficheiro de entrada muito grande)%B: erro: Erratum 835769 fictício fora do intervalo (ficheiro de entrada muito grande)%B: erro: Erratum 843419 fictício fora do intervalo (ficheiro de entrada muito grande)%B: erro: conjunto de instruções trocado com módulos anteriores.%B: erro: segmento PHDR não coberto pelo segmento LOAD%B: erro: folha VFP11 fora do intervalo%B: erro: tamanho da secção de atributo muito pequeno: %ld%B: erro: segmento %d não carga inclui cabeçalho de ficheiro e/ou de programa%B: erro: tipo de relocalização %d não alinhado em %#Lx reloc %#Lx%B: erro: tipo de relocalização %d desalinhado em %08Lx reloc %08Lx%B: erro: símbolo "%s" inesperado em secção COMDAT%B: erro: atributo de objecto EABI obrigatório desconhecido %d%B: erro: tipo de relocalização %d desconhecido.%B: falha ao gerar biblioteca de importação%B: fatal: obtidos símbolos genéricos antes de relaxar%B: classe de ficheiro %s incompatível com %s%B: relocalização gp-relative contra símbolo dinâmico %s%B: secção de grupo "%A" não tem conteúdo%B: símbolo "%s" oculto em %B é referenciado por DSO%B: símbolo "%s" oculto não está definido%B: a ignorar secção "%A" duplicada
%B: tipo de relocalização %d ilegal no endereço %#Lx%B: nome de secção ilegal "%A"%B: índice de símbolo %ld ilegal em relocs%B: índice de símbolo ilegal na reloc: %ld%B: tipo de máquina incompatível. Saída é 0x%x. Entrada é 0x%x%B: tamanho incorrecto do símbolo "%s".%B: símbolo indirecto "%s" para "%s" é um ciclo%B: erro interno em ihex_read_section%B: erro interno, secção de registo interna %A tinha conteúdo
%B: erro interno, tabela de símbolo alterou o tamanho de %d para %d palavras
%B: símbolo "%s" interno em %B é referenciado por DSO%B: símbolo "%s" não está definido%B: número de reloc AVR inválido: %d%B: número de reloc CR16C inválido: %d%B: número de reloc CRIS inválido: %d%B: número de reloc D10V inválido : %d%B: número de reloc D30V inválido : %d%B: número de reloc Epiphany inválido: %d%B: número de reloc FR30 inválido: %d%B: número de reloc FRV inválido: %d%B: número de reloc IP2K inválido: %d%B: número de reloc IQ2000 inválido: %d%B: número de reloc LM32 inválido: %d%B: número de reloc M32C inválido: %d%B: número de reloc M32R inválido: %d%B: invalid M68HC11 reloc number: %d%B: número de reloc M68HC12 inválido: %d%B: número de reloc MEP inválido: %d%B: número de reloc METAG inválido: %d%B: invalid MMIX reloc number: %d%B: número de reloc MSP430 inválido: %d%B: número de reloc MSP430X inválido: %d%B: número de reloc MT inválido: %d%B: número de reloc Moxie inválido: %d%B: número de reloc NDS32 inválido: %d%B: número de reloc OR1K inválido: %d%B: número de reloc RL78 inválido: %d%B: número de reloc RX inválido: %d%B: entrada SHT_GROUP inválida%B: número de reloc V850 inválido: %d%B: número de reloc Visium inválido: %d%B: número de relocalização XGate inválido: %d%B: número de reloc XTENSA inválido: %d%B: número de reloc i960 inválido: %d%B: entrada de biblioteca importada "%s" inválida.%B: ligação inválida %u para secção reloc %s (índice %u)%B: ficheiro mmo inválido: YZ de lop_end (%ld) não igual ao número de tetras para o lop_stab (%ld) precedente
%B: ficheiro mmo inválido: esperado YZ = 1, obtido YZ = %d para lop_quote
%B: ficheiro mmo inválido: esperado y = 0, obtido y = %d para lop_fixrx
%B: ficheiro mmo inválido: esperado z = 1 ou z = 2, obtido z = %d para lop_fixo
%B: ficheiro mmo inválido: esperado z = 1 ou z = 2, obtido z = %d para lop_loc
%B: ficheiro mmo inválido: esperado z = 16 ou z = 24, obtido z = %d para lop_fixrx
%B: ficheiro mmo inválido: campos y e z de lop_stab não-zero, y: %d, z: %d
%B: ficheiro mmo inválido: nome de ficheiro para número %d não foi especificado antes do uso
%B: ficheiro mmo inválido: número de ficheiro %d "%s", já foi inserido como "%s"
%B: ficheiro mmo inválido: valor de initialização para $255 não é "Main"
%B: ficheiro mmo inválido: byte inicial da palavra operando tem de ser 0 ou 1, obtido %d para lop_fixrx
%B: ficheiro mmo inválido: lop_end não é o último item no ficheiro
%B: ficheiro mmo inválido: lopcode "%d" não suportado
%B: tipo de relocalização %d inválido%B: campo de tamanho inválido no cabeçalho da secção de grupo: %#Lx%B: símbolo especial "%s" inválido.%B: símbolo standard "%s" inválido.%B: endereço inicial inválido para registos inicializados de tamanho %Ld: %#Lx%B: desvio de cadeia inválido %u >= %Lu para secção "%s"%B: tabela de símbolo inválida: símbolo duplicado "%s"
%B: salto para demasiado longe
%B: transporte de nº de linha: 0x%lx > 0xffff%B: a ligar módulo %s com módulos prévios %s%B: a ligar código 32-bit com código 64-bit%B: a ligar ficheiros 64-bit com ficheiros 32-bit%B: a ligar específico UltraSPARC com código específico HAL%B: a ligar ficheiros auto-pic com ficheiro não auto-pic%B: a ligar ficheiros big-endian com ficheiros little-endian%B: a ligar ficheiros constant-gp com ficheiros não constant-gp%B: a ligar ficheiros compilados para inteiros de 16-bit (-mshort) e outros para inteiros de 32-bit%B: a ligar ficheiros compilados para duplos de 32-bit (-fshort-double) e outros para duplos de 64-bit%B: a ligar ficheiros compilados para HCS12 com outros compilados para HC12%B: a ligar ficheiros little endian com ficheiros big endian%B: a ligar código não-pic num executável de posição independente%B: a ligar trap-on-NULL-dereference com ficheiros não-trapping%B: reloc loader em secção só de leitura %A%B: reloc loader em secção "%s" não reconhecida%B: símbolo "%s" local em %B é referenciado por DSO%B: XTY_LD "%s" mal colocado%B: secção TLS em falta para relocalização %s contra "%s" em %#Lx na secção "%A".%B: sem informação de grupo para secção "%A"%B: sem registos inicializados; tamanho de secção 0
%B: sem símbolo para biblioteca de importação%B: sem secções de grupo válidas%B: código não-pic com relocalização imm contra símbolo dinâmico "%s"%B: índice de símbolo não-zero (%#Lx) para desvio %#Lx na secção "%A" onde o ficheiro objecto não tem tabela de símbolo%B: memória insuficiente para alocar espaço para %#Lx símbolos de tamanho %#Lx%B: tamanho do objecto não corresponde ao do alvo %B%B: sem memória ao criar nome para secção vazia%B: sem memória em _bfd_elf_get_property%B: tamanho de página muito grande (0x%x)%B: relocalização pc-relative contra símbolo dinâmico %s%B: relocalização pc-relative contra símbolo fraco %s indefinido%B: extensão precisou de gerir objecto lto%B: provavelmente compilado com -fPIC?%B: símbolo "%s" protegido não está definido%B: relocalização de registo contra símbolo não-registo: %s em %A%B: relocalização de registo contra símbolo não-registo: (desconhecido) em %A%B: reloc %s:%Ld fora de csect%B: reloc contra índice de símbolo não existente: %ld%B: ligação relocalizável de %s para %s não suportado%B: relocalização %s contra %s%s"%s" não pode ser usada ao fazer %s%s%B: relocalização %s contra STT_GNU_IFUNC símbolo "%s" tem adenda não-zero: %Ld%B: relocalização %s contra símbolo STT_GNU_IFUNC "%s" não é gerido por %s%B: relocalização %s contra STT_GNU_IFUNC símbolo "%s" não suportada%B: relocalização %s contra "%s" não pode ser usada ao fazer um objecto partilhado%B: relocalização %s contra "%s" não pode ser usada a fazer um objecto partilhado; recompile com -fPIC%B: relocalização %s contra símbolo "%s" externo ou indefinido não pode ser usada ao fazer %s; recompile com -fPIC%B: relocalização %s contra símbolo "%s" não é suportada em modo x32%B: relocalização %s contra símbolo "%s" que pode ligar externamente não pode ser usada ao fazer um objecto partilhado; recompile com -fPIC%B: relocalização %s não pode ser usada ao fazer um objecto partilhado; recompile com -fPIC%B: relocalização %s não pode ser usada ao fazer objecto partilhado%B: relocalização R_386_GOTOFF contra %s "%s" protegido não pode ser usada ao fazer um objecto partilhado%B: relocalização R_386_GOTOFF contra %s "%s" indefinido não pode ser usada ao fazer um objecto partilhado%B: relocalização R_X86_64_GOTOFF64 contra %s "%s" protegido não pode ser usado ao fazer um objecto partilhado%B: relocalização R_X86_64_GOTOFF64 contra  %s "%s" indefinido não pode ser usado ao fazer um objecto partilhado%B: relocalização em "%A+%#Lx" referencia o símbolo "%s" com adenda não-zero%B: tamanho de relocalização trocado na secção %B %A%B: relocs na secção "%A", mas não tem conteúdo%B: secção %A lma %#Lx ajustada para %#Lx%B: secção %A: transporte na tabela de símbolo no desvio %ld%B: secção "%A" não pode ser alocada no segmento %d%B: entrada do grupo de secção número %u está corrompida%B: sh_link [%d] na secção "%A" está incorrecto%B: sh_link da secção "%A" aponta para secção descartada "%A" de "%B"%B: sh_link da secção "%A" aponta para secção removida "%A" de "%B"%B: transporte no segmento de dados curtos (%#Lx >= 0x400000)%B: tamanho de campo é zero em cabeçalho Import Library Format%B: fixup de especulação para símbolo dinâmico %s%B: tamanho de stack especificado e definido como %s%B: cadeia nã-null terminada em ficheiro objecto ILF.%B: cadeia muito grande (%ld caracteres, máx. 65535)%B: suporte a dinâmica local não implementado%B: símbolo "%s" tem tipo csect %d não reconhecido%B: símbolo "%s" tem smclas %d não reconhecido%B: símbolo "%s" requerido mas não presente%B: tirar o endereço da função protegida "%s" não pode ser feito ao fazer uma biblioteca partilhada%B: o alvo (%s) de uma relocalização %s está na secção de saída errada (%s)%B: demasiados registos inicializados; tamanho de secção %Ld%B: demasiadas secções (%d)%B: demasiadas secções: %u%B: relocalização tp-relative contra símbolo dinâmico %s%B: impossível criar secção vazia falsa%B: impossível preencher DataDictionary[12] porque .idata$5 está em falta%B: impossível preencher DataDictionary[1] porque .idata$2 está em falta%B: impossível preencher DataDictionary[1] porque .idata$4 está em falta%B: impossível preencher DataDictionary[9] porque __tls_used está em falta%B: impossível preencher DataDictionary[PE_IMPORT_ADDRESS_TABLE (12)] porque .idata$6 está em falta%B: impossível preencher DataDictionary[PE_IMPORT_ADDRESS_TABLE(12)] porque .idata$6 está em falta%B: impossível encontrar cola ARM "%s" para "%s"%B: impossível encontrar a folha STM32L4XX "%s"%B: impossível encontrar cola THUMB "%s" para "%s"%B: impossível encontrar a folha VFP11 "%s"%B: impossível encontrar nome para secção vazia%B: impossível obter secção %A descomprimida%B: impossível inicializar estado comprimido para secção %s%B: impossível inicializar estado descomprimido para secção %s%B: impossível carregar nome de secção COMDAT%B: referência indefinida a símbolo "%s"%B: símbolo indefinido "%s" em secção .opd%B: símbolo indefinido em relocalização R_PPC64_TOCSAVE%B: tipo ATN inesperado %Ld em parte externa%B: redefinição de símbolo com versão indirecto "%s" inesperada%B: tipo de reloc inesperado %u em secção .opd%B: tipo inesperado após ATN%B: relocalização dinâmica contra %s não gerida%B: %s não implementado
%B: registo ATI %u não implementado para símbolo %u%B: comando de carga %#x desconhecido%B: tipo de relocalização desconhecido %d%B: tipo de relocalização %d  não desconhecido para símbolo %s%B: tipo desconhecido [%#x], secção "%s"%B: secção tipo [%#x] "%s" desconhecida no grupo [%A]%B: tipo de relocalização %d desconhecido/não suportado%B: número de reloc Alpha não reconhecido: %d%B: número de reloc CR16 não reconhecido: %d%B: número de reloc CRX não reconhecido: %d%B: número de reloc I370 não reconhecido: %d%B: número de reloc MCore não reconhecido: %d%B: número reloc MN10300 não reconhecido: %d%B: número de reloc MicroBlaze não reconhecido: %d%B: número de reloc PPC não reconhecido: %d%B: número de reloc PicoJava não reconhecido: %d%B: número de reloc SH não reconhecido: %d%B: número de relocalização SPU não reconhecido: %d%B: número de reloc VAX não reconhecido: %d%B: relocalização não reconhecida (%#x) na secção "%A"%B: símbolo "%s" não reconhecido bandeiras 0x%x%B: chamada não-PIC a IFUNC "%s" não suportada%B: tipo de relocalização não suportado %d%B: tipo de relocalização não suportado %i
%B: tipo de relocalização %s não suportado%B: tipo de relocalização 0x%02x não suportado%B: relocalização não suportada: ALPHA_R_GPRELHIGH%B: relocalização não suportada: ALPHA_R_GPRELLOW%B: sequência de caracteres largos 0x%02X 0x%02X não suportada após nome de símbolo começado por "%s"
%B: usa instruções %s enquanto os módulos anteriores usam instruções %s%B: usa símbolos prefixados com _, mas o ficheiro será escrito com símbolos sem prefixo%B: usa campos e_flags diferentes (%#x) dos módulos anteriores (%#x)%B: usa campos e_flags (%#x) desconhecidos diferentes dos módulos anteriores (%#x)%B: usa instruções incompatíveis com instruções usadas em módulos anteriores%B: usa símbolos sem prefixo, mas o ficheiro será escrito com símbolos prefixados com _%B: nº de versão (%Ld) não corresponde ao nº de símbolos (%ld)%B: nó de versão não encontrado para símbolo %s%B: a visibilidade do símbolo "%s" mudou.%B: aviso: ficheiro núcleo truncado%B: aviso: %A: transporte de número de linha: %#x > 0xffff%B: aviso: %s aponta para reloc não reconhecida em %#Lx%B: aviso: relocalização %s contra símbolo "%s" da secção %A%B: aviso: relocalização %s para %#Lx da secção %A%B: aviso: %s: transporte de número de linha: 0x%lx > 0xffff%B: aviso: símbolo "%s" COMDAT não corresponde ao nome de secção "%s"%B: aviso: detectado segmento carregável vazio em vaddr=%#Lx, é intencional?%B: aviso: Endian trocado com módulos anteriores.%B: aviso: adenda GOT de %Ld a "%s" não corresponde a adenda GOT de %Ld prévia%B: aviso: versões elf %s e %s incompatíveis.%B: aviso: ASEs inconsistente entre e_flags e .MIPS.abiflags%B: aviso: FP ABI inconsistente entre .gnu.attributes e .MIPS.abiflags%B: aviso: ISA inconsistente entre e_flags e .MIPS.abiflags%B: aviso: extensões ISA inconsistentes entre e_flags e .MIPS.abiflags%B: aviso: símbolo para secção "%s" não encontrado%B: aviso: encontradas versões anteriores do ficheiro objecto, recompile com as ferramentas actuais.%B: aviso: adenda PLT de %Ld a c"%s" da secção %A ignorada%B: aviso: bandeira inesperada no campo flags2 de .MIPS.abiflags (0x%lx)%B: aviso: secção alocada "%s" não está no segmento%B: aviso: impossível gerir R_NDS32_25_ABS_RELA em modo partilhado.%B: aviso: afirma ter 0xffff relocs, sem transporte%B: aviso: informação de número de linha duplicada para "%s"%B: aviso: símbolo ilegal em entrada de número de linha %d%B: aviso: índice de símbolo %ld ilegal em relocs%B: aviso: índice de símbolo 0x%lx ilegal em entrada de número de linha %d%B: aviso: isymMax (%ld) é maior que ifdMax (%ld)%B: aviso: total de número de linha (%#lx) excede tamanho de secção (%#lx)%B: aviso: falha ao ler tabela de número de linha%B: aviso: a ligar ficheiros PIC com ficheiros não-PIC%B: aviso: a ligar ficheiros abicalls com ficheiros não-abicalls%B: aviso: detectado ciclo em dependências da secção%B: aviso: detectadas múltiplas tabelas de símbolo dinâmico - a ignorar a tabela na secção %u%B: aviso: detectadas múltiplas tabelas de símbolo - a ignorar a tabela na secção %u%B: aviso: falha ao relocalizar SDA_BASE.%B: aviso: alinhamento do segmento de %#Lx é muito grande%B: aviso: a solução de errata STM32L4XX seleccionada não é necessária para arquitectura de destino%B: aviso: a solução de errata VFP11 seleccionada não é necessária para arquitectura de destino%B: aviso: sh_link não definido para a secção "%A"%B: aviso: tabela de simbolo muito grande para mmo, maior que palavras de 65535 32-bit: %d. Só "Main" será emitido.
%B: aviso: acesso não alinhado a entrada GOT.%B: aviso: acesso não alinhado a dados pequenos para entrada: {%Ld, %Ld, %Ld}, end = %#Lx, alinh = %#x%B: aviso: atributo de objecto EABI desconhecido %d%B: não resolve relocalização TLS em tempo de execução%B:%A%s excede o tamanho de sobreposição
%B:%A: %s e %s têm de estar na mesma secção de entrada%B:%A: aviso: reloc Red Hat obsoleta %B:%A: erro: relocalização referencia símbolo %s que foi removido pela recolha de lixo.%B:%A: erro: tente religar com --gc-keep-exported activado.%B:%A: tabela %s com correspondente %s em falta%B:%A: entrada de tabela %s não alinhado dentro da tabela%B:%A: entrada de tabela %s fora da tabela%B:%d: mau checksum em ficheiro S-record
%B:%d: carácter "%s" inesperado em ficheiro S-record
%B:%d: total de byte %d muito pequeno
%B:%d: carácter "%s" inesperado em ficheiro Intel Hex%B:%s tem relocs normal e TLS em simultâneo%B:%s secção %s: alinhamento 2**%u não representável%B:%u: mau checksum em ficheiro Intel Hex (esperado %u, obtido %u)%B:%u: mau tamanho de registo de endereço estendido em ficheiro Intel Hex%B:%u: mau tamanho de registo em endereço linear estendido em ficheiro Intel Hex%B:%u: mau tamanho de endereço linear inicial estendido em ficheiro Intel Hex%B:%u: mau tamanho de endereço inicial estendido em ficheiro Intel Hex%B:%u: tipo ihex não reconhecido %u em ficheiro Intel Hex%C: aviso: relocalização para "%s" referencia um segmento diferente
%F%A: falha ao alinhar secção
%F%B: transporte de desvio PC-relative em entrada GOT PLT para "%s"
%F%B: transporte de desvio PC-relative em entrada PLT para "%s"
%F%B: transporte em deslocamento do ramo em entrada PLT para "%s
%F%P: already_linked_table: %E
%F%P: erro de auto-sobreposição: %E
%F%P: impossível construir fictícios de sobreposição: %E
%F%P: entrada corrupta: %B
%F%P: símbolo "%s" STT_GNU_IFUNC dinâmico com igualdade de ponteiro em "%B" não pode ser usado ao fazer um executável; recompile com -fPIE e volte a ligar com -pie
%F%P: falha ao converter relocalização GOTPCREL; religue com --no-relax
%F%P: falha ao criar secção BND PLT
%F%P: falha ao criar secção de propriedade GNU
%F%P: falha ao criar secção GOT PLT .eh_frame
%F%P: falha ao criar secção GOT PLT
%F%P: falha ao criar secções GOT
%F%P: falha ao criar secção IBT-enabled PLT
%F%P: falha ao criar secção PLT .eh_frame
%F%P: falha ao criar secções dinâmicas VxWorks 
%F%P: falha ao criar secções ifunc
%F%P: falha ao criar segunda secção PLT .eh_frame
%H __tls_get_addr perdeu arg, optimização TLS desactivada
argumento %H perdeu __tls_get_addr, optimização TLS desactivada
%H: %s contra "%T": erro %d
%H: %s para função indirecta "%T" não suportado
%H: %s referencia entrada TOC optimizada
%H: %s reloc contra "%s": erro %d
%H: reloc %s contra símbolo local
%H: %s reloc não suportada em bibliotecas partilhadas e PIEs.
%H: %s usado com símbolo TLS "%T"
%H: %s usado com símbolo não-TLS "%T"
%H: R_FRV_FUNCDESC referencia símbolo dinâmico com adenda não zero
%H: R_FRV_FUNCDESC_VALUE referencia símbolo dinâmico com adenda não-zero
%H: R_FRV_GETTLSOFF não aplicado a uma instrução call
%H: R_FRV_GETTLSOFF_RELAX não aplicado a uma instrução calll
%H: R_FRV_GOTTLSDESC12 não aplicado a uma instrução lddi
%H: R_FRV_GOTTLSDESCHI não aplicado a uma instrução sethi
%H: R_FRV_GOTTLSDESCLO não aplicado a uma instrução setlo ou setlos
%H: R_FRV_GOTTLSOFF12 não aplicado a uma instrução ldi
%H: R_FRV_GOTTLSOFFHI não aplicado a uma instrução sethi
%H: R_FRV_GOTTLSOFFLO não aplicado a uma instrução setlo ou setlos
%H: R_FRV_TLSDESC_RELAX não aplicado a uma instrução ldd
%H: R_FRV_TLSMOFFHI não aplicado a uma instrução sethi
%H: R_FRV_TLSOFF_RELAX não aplicado a uma instrução ld
%H: chamada a "%T" com nop em falta, impossível restaurar toc; (-mcmodel=small toc adjust stub)
%H: chamada a "%T" com nop em falta, impossível restaurar toc; recompile com -fPIC
%H: impossível emitir relocalizações dinâmicas em secção só de leitura
%H: impossível emitir fixups em secção só de leitura
%H: erro: %s contra "%s" não é  múltiplo de %u
%H: erro: %s não é múltiplo de %u
%H: transporte em ramo fixup
%H: adenda não-zero em reloc %s contra "%s"
%H: reloc contra "%s" referencia um segmento diferente
%H: reloc contra "%s": %s
%H: relocalização %s para função indirecta %s não suportada
%H: relocalização referencia símbolo não definido no módulo
%H: relocalização para "%s+%v" poderá ter causado o erro acima
%H: optimização toc não é suportada para instreuções %s.
%H: %s insolúvel contra "%T"
%H: relocalização %s insolúvel contra símbolo "%s"
%H: aviso: %s insn %#x inesperado.
%P%F: --relax e -r não podem ser usadas em conjunto
%P%X: impossível ler os símbolos: %E
%P%X: segmento só de leitura tem relocalizações dinâmicas IFUNC; recompile com -fPIC
%P%X: segmento só de leitura tem relocalizações dinâmicas.
%P: %B .opd não permitida na versão ABI %d
%P: %B: %s não é suportado para "%T"
%P: %B: impossível criar entrada fictícia %s
%P: %B: relocalização %s ainda não é suportada para símbolo %s
%P: %B: o alvo (%s) de uma relocalização %s está na secção de saída errada (%s)
%P: %B: tipo de relocalização inesperado
%P: %B: tipo de relocalização %d desconhecido para "%T"
%P: %B: tipo de relocalização %d desconhecido para símbolo %s
%P: %B: aviso: relocalização contra "%s" em secção só de leitura "%A"
%P: %B: aviso: relocalização em secção só de leitura "%A"
%P: %s não definido em linker criado %s
%P: desvio %s muito grande para codificação .eh_frame sdata4%P: transporte na entrada .eh_frame_hdr.
%P: .eh_frame_hdr refere FDEs sobrepostos.
%P: DW_EH_PE_datarel não especificado para esta arquitectura.
%P: codificação FDE em %B(%A) impede a criação de tabela .eh_frame_hdr.
%P: largados mais avisos sobre a codificação FDE impedir a geração de .eh_frame_hdr.
%P: encontrado código máquina ELF alternativo (%d) em %B, esperado %d
%P: bss-plt forçado pelo perfil
%P: bss-plt forçado devido a %B
%P: impossível construir fictício de ramo "%s"
%P: impossível encontrar fictício de ramo "%s"
%P: impossível encontrar entrada opd toc para "%T"
%P: cópia da reloc contra "%T" requer ligação lazy plt; evite definir LD_BIND_NOW=1 ou actualize o gcc
%P: cópia de reloc contra "%T" protegido é perigosa
%P: erro de contagem dynreloc para %B, secção %A
%P: erro em %B(%A); não será criada nenhuma tabela .eh_frame_hdr.
%P: erro na tabela de ligação contra "%T"
%P: transporte em desvio "%s" em fictício de ramo longo
%P: múltiplos pontos de entrada: nos módulos %B e %B
%P: ligação relocalizável não suportada
%P: fictícios não correspondem ao tamanho calculado
%P: símbolo "%s" tem st_other inválido para a versão ABI 1
%P: aviso: --plt-localentry é particularmente perigosa sem suporte ld.so para detectar violações ABI.
%P: aviso: a criar uma DT_TEXTREL num objecto partilhado.
%P: aviso: relocalizações de texto e funções indirectas GNU podem resultar em segfault em tempo de execução
%X%C: relocalização para "%s" referencia um segmento diferente
%X%H: chamada @local a ifunc %s
%X%H: impossível converter ramo entre modos ISA para JALX: relocalização fora do intervalo
%X%H: JALX não suportado para o mesmo modo ISA
%X%H: ramo não suportado entre modos ISA
%X%H: salto não suportado entre modos ISA; considere recompilar com interlinking activado
%X%H: bss-plt -fPIC ifunc %s não suportada
%X%P: %B(%A): erro: relocalização para desvio %V não tem valor
%X%P: %B(%A): relocalização "%R" sai fora do intervalo
%X%P: %B(%A): relocalização "%R" não é suportada
%X%P: %B(%A): relocalização "%R" devolve um valor não reconhecido %x
%X%P: secção de sobreposição %A não começa numa linha de cache.
%X%P: secção de sobreposição %A é maior que uma linha de cache.
%X%P: secção de sobreposição %A não está numa área de cache.
%X%P: secções de sobreposição %A e %A não começam no mesmo endereço.
%X%P: erro de análise stack/lrlive: %E
%X%P: relocalizações de texto e funções indirectas GNU resultarão em segfault em tempo de execução
%X"%s" referenciado na secção "%A" de %B: definido em secção descartada "%A" de %B
%s defenido em entrada toc removida%s duplicado
%s duplicado em %s
%s tem relocs normal e TLS em simultâneo%s em secção de sobreposição%s: definição TLS em secção %B %A não corresponde a definição não-TLS em secção %B %A%s: definição TLS em secção %B %A não corresponde a referência não-TLS em %B%s: referência TLS em %B não corresponde a definição não-TLS em secção %B %A%s: referência TLS em %B não corresponde a referência não-TLS em %B%s: sem tal símbolo%s: não implementado%s: não suportado%s: versão indefinida: %s(no desvio de bit %u)
(descritor)
(formato %c%c%c%c assinatura %s idade %ld)
(sem valor)
(não activo)
(não alocada)
(reg: %u, disp: %u, indir: %u, tipo: (dados thread-local muito grandes para -fpic ou -msmall-tls: recompile com -fPIC ou -mno-small-tls(muitas variáveis globais para -fpic: recompile com -fPIC)(valor inicial)
(spec de valor segue)
)
*** verificar esta relocalização %s*não gerido*
tipo DST *não gerido* %u
*desconhecido**desconhecido*   , Valor: %#08lx
, aliás: %u
, desvio ext fixup: %u, no_opt psect off: %u, sub-tipo: %u (%s)
, vector símbolo rva: - %B é 64-bit, %B não é-mips32r2 -mfp64 (12 callee-saved)secção .got não imediatamente após secção .pltfalha de união .rsrc: uma pasta corresponde a uma folhafalha de união .rsrc: versões de pasta diferentes
falha de união .rsrc: pastas com características diferentes
falha de união .rsrc: folha duplicadafalha de união .rsrc: folha duplicada: %sfalha de união .rsrc: recurso de cadeia duplicado: %dfalha de união .rsrc: múltiplos manifestos não-predefinidos32-bit duplo, relocalização relativa 32bits gp ocorre para um símbolo externo4-byte4-bytes64 bits *não geridos*
64-bit duplo, 8-byte8-bytes: instruções m32r: instruções m32r2: instruções m32rx: instruções n1: instruções n1h; recompile com -fPIC<bits de bandeira definidos não reconhecidos><informação corrupta> %s<tamanho de cadeia corrupto: %#x>
<desvio de cadeia corrupto: %#lx>
<corrupto><tipo de pasta desconhecido: %d>
<desconhecido>reloc @pltoff contra símbolo localArquivo sem índice; execute ranlib para adicionar umFicheiro objecto de arquivo em formato erradoTentativa de converter L32R/CALLX para CALL falhouTentativa de fazer ligação relocalizável com entrada %s e saída %sBASE_IMAGE       BFD falha de asserção %s %s:%dBFD erro interno %s, a abortar em %s:%d
BFD erro interno %s, a abortar em %s:%d em %s
Erro de ligação BFD: ramo (PC rel16) para secção (%s) não suportadoErro de ligação BFD: salto (PC rel26) para secção (%s) não suportadoMau valorPasta de relocalização base [.reloc]Pasta de importação vinculadaVínculos:
Ramo para um endereço não alinhado por instruçãouso CACHE: CLICabeçalho de execução CLRCLUSTERS_LOCKMGR COUNTERS         CPU              CTL_AUGRB (aumentar base de relocalização) %u
CTL_DFLOC (definir localização)
CTL_SETRB (definir base de relocalização)
CTL_STKDL (localização definida por stack)
CTL_STLOC (definir localização)
Impossível converter um ramo para JALX para um endereço não alinhado por wordImpossível converter um salto para JALX para um endereço não alinhado por wordCabeçalho de copyright
Secção .rsrc corrompida detectada!
Registo EEOM corrupto - tamanho demasiado pequenoRegisto EGSD corrupto: campo psindx muito grande (%#lx)Registo EGSD corrupto: tamanho (%#x) muito pequenoRegisto EGSD corrupto: tamanho (%#x) maior que o espaço restante (%#x)Registo EGSD corrupto: tamanho (%#x) muito pequenoRegisto EIHD corrupto - tamanho muito pequenoEncontrado registo ETIR corruptoValor vms corruptoDSO em falta da linha de comandosDST__K_BEG_STMT_MODE não implementadoDST__K_END_STMT_MODE não implementadoDST__K_RESET_LINUM_INCR não implementadoDST__K_SET_LINUM_INCR não implementadoDST__K_SET_LINUM_INCR_W não implementadoDST__K_SET_PC não implementadoDST__K_SET_PC_L não implementadoDST__K_SET_PC_W não implementadoDST__K_SET_STMTNUM não implementadoPasta de depuraçãoTabela de módulo de depuração:
Tabela de símbolos de depuração:
Pasta de atraso de importação%s obsoleto chamado
%s obsoleto chamado em %s linha %d em %s
Pasta de descriçãoErro Dwarf: detectada recursividade em instância abstracta.Erro Dwarf: impossível encontrar a secção %s.Erro Dwarf: impossível encontrar número abbrev %u.Erro Dwarf: encontrado atributo DW_AT_comp_dir com uma forma não-cadeia.Erro Dwarf: ponteiro de informação excede o final dos atributosErro Dwarf: instância DIE ref abstracta inválida.Erro Dwarf: máximo de operações por instrução inválido.Erro Dwarf: valor FORM inválido ou não gerido: %#x.Erro Dwarf: secção de informação da linha maior (%#Lx) que o espaço restante na secção (%#lx)Erro Dwarf: secção de informação da linha muito pequena (%Ld)Erro Dwarf: tamanho %u do selector de segmento de informação de linha não suportadoErro Dwarf: desvio (%llu) maior ou igual a tamanho %s (%Lu).Erro Dwarf: sem espaço ao ler opcodesErro Dwarf: sem espaço ao ler o prólogoErro Dwarf:  impossível ler referência alternativa %llu.Erro Dwarf: versão %d .debug_line version não gerida.Erro Dwarf: tipo de formato de conteúdo %Lu desconhecido.Erro Dwarf: total de formato zero.Erro Dwarf: total de dados (%Lx) maior que o tamanho do buffer.Erro Dwarf: encontrado tamanho de endereço "%u", este leitor não gere tamanhos maiores que "%u".Erro Dwarf: encontrada versão dwarf "%u", este leitor só gere informação das versões 2, 3, 4 e 5.Erro Dwarf: secção de número de linha modificada (mau nº de ficheiro).Erro Dwarf: secção de número de linha modificada.EIHD: (tamanho: %u, nº blocos: %u)
ERRO: tentativa de ligar %B com um binário %B de diferente arquitecturaFunção de entrada "%s" desapareceu do código de segurança.Desvio da entrada   = 0x%.8lx (%ld)
Erro  ao ler %s: %sErro: %B tem ambos os atributos Tag_MPextension_use actual e legadoErro: a arquitectura ARC4 já não é suportada.
Encontrados erros ao processar o ficheiro %BPasta de excepções [.pdata]Pasta de exportação [.edata (ou onde o encontrámos)]Bandeiras de exportação 			%lx
Exportação RVAFalha ao procurar reloc HI16 anteriorFILES_VOLUMES    FPU-2.0FPU-3.0Falha ao actualizar desvios de ficheiro na pasta de depuraçãoFormato de ficheiro ambíguoFormato de ficheiro não reconhecidoFicheiro em formato erradoFicheiro muito grandeFicheiro truncadoCampo de bandeira   = 0x%.2x
Reencaminhador RVAGALAXY           Relocalizações GOT e PLT não podem ser reparadas com um linker não dinâmico.Usada relocalização relativa GP sem GP definidoRelocalização relativa GP com _gp não definidorelocalização GPDISP não encontrou instruções ldah e ldaTabela de símbolo global:
Flutuante rígido (32-bit CPU, 64-bit FPU)
Flutuante rígido (32-bit CPU, qualquer FPU)
Flutuante rígido (MIPS32r2 64-bit FPU 12 callee-saved)
Flutuante rígido (precisão dupla)
Flutuante rígido (precisão simples)
Comp. flutuante rígido (32-bit CPU, 64-bit FPU)
Flutuante rígido ou suave
ID: %#08lxIDC - verificação Ident Consistency
Analisador IEEE: tamanho da cadeia: %#lx maior que o buffer: %#lxIMAGE_ACTIVATOR  INPUT_SECTION_FLAGS não são suportadas.
IO               Activação da imagem:  (tam=%u)
Fixup do activador de imagem: (principal: %u, menor: %u)
Identificação da imagem: (principal: %u, menor: %u)
Descritor de secção de imagem: (principal: %u, menor: %u, tamanho: %u, desvio: %u)
Tabela de símbolo de imagem e depuração: (principal: %u, menor: %u)
Pasta de tabela de endereços de importaçãoPasta de importação [partes de .idata]Erro interno: transporte de stack em reloc RL78Erro interno: sub-transporte de stack em reloc RL78Inconsistência interna: resta %lu != máx %lu.
  Por favor, reporte este erro.Número de reloc AArch64 inválido: %dNúmero de reloc DLX inválido: %dTipo de relocalização "%s" TARGET2 inválido.Alvo bfd inválidoConteúdo inválido na secção %AOperação inválidaSecção de saída inválida para .eh_frame_entry: %AÍndice de secção inválido em ETIREstará esta versão do linker - %s - fora do prazo?Tem de ser um símbolo de função global ou fraco.Salto para um endereço não alinhado por instruçãoSalto para um endereço não alinhado por wordLOGICAL_NAMES    Nome do processador de linguagem
Tamanho             = 0x%.8lx (%ld)
Linker: impossível iniciar erro da tabela de hash ex9 
Linker: erro impossível relocalização fixa ex9 
Pasta de configuração de carregamentoFunção IFUNC local "%s" em %B
MEMORY_MANAGEMENTfunções MIPS16 e microMIPS não se podem chamar entre siMISC             uso MMU: MULTI_PROCESSING Principal/Menor 			%d/%d
Arquivo mal formadoStack máximo requerido é 0x%v
MeP: howto %d tem tipo %dMemória esgotadaCabeçalho de módulo
NETWORKS         NORMALNome 				Sem endereço atribuído à secção de saída das folhas %sSem erroSem mais ficheiros de arquivoSem símbolosNenhumSecção não representável na saídaSem memória suficiente para ordenar relocalizaçõesNúmero em:
OPR_ADD (adicionar)
OPR_AND (e lógico)
OPR_ASH (mudança aritmética)
OPR_COM (complementar)
OPR_DIV (dividir)
OPR_EOR (ou exclusivo lógico)
OPR_INSV (inserir campo)
OPR_IOR (ou inclusivo lógico)
OPR_MUL (multiplicar)
OPR_NEG (negar)
OPR_NOP (sem-operação)
OPR_REDEF (definir um literal)
OPR_REDEF (redefinir símbolo para localização actual)
OPR_ROT (rodar)
OPR_SEL (seleccionar)
OPR_SUB (subtrair)
OPR_USH (mudança não assinada)
Módulo objecto NÃO livre de erros!
Desvio "%s" da folha para função de entrada não é múltiplo do seu tamanho.Uma causa possível deste erro é o símbolo ser referenciado no código indicado como se tivesse um alinhamento maior do que aquele que foi declarado na definição.Base ordinal 			%ld
O ficheiro de saída requer a biblioteca partilhada "%s"
O ficheiro de saída requer a biblioteca partilhada "%s.so.%s"
Carga PC-relative de endereço não alinhadoExecutável PIEPOSIX            PROCESS_SCHED    PRVFXDPRVPICPSC - definição da secção Program
troca PTA: endereço SHcompact (bit 0 == 0)troca PTB: endereço SHmedia (bit 0 == 1)Nome da partição    = "%s"
Fim da partição[%d]    = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }
Tamanho da partição[%d] = 0x%.8lx (%ld)
Sector da partição[%d] = 0x%.8lx (%ld)
Por favor, reporte este erro.
conflito RL78 ABI: ficheiro G10 %B não pode ser ligado a ficheiro %s %Bconflito RL78 ABI: impossível ligar ficheiro %s %B com ficheiro %s %Bconflito de união RL78: impossível ligar objectos 32-bit e 64-bitR_BFIN_FUNCDESC referencia símbolo dinâmico com adenda não-zeroR_BFIN_FUNCDESC_VALUE referencia símbolo dinâmico com adenda não-zeroR_FRV_TLSMOFFLO não aplicado a uma instrução setlo ou setlos
A ler carimbo de mod de ficheiro de arquivoReferência ao símbolo distante "%s" com uma relocalização errada pode resultar em execução incorrectaRegisto %%g%d usa incompatibilidade: %s em %B, previamente %s em %BSecção de registo tem conteúdo
Relocalização para psect não-RELA remover secção "%A" não usada no ficheiro "%B"ReservadoPasta de recursos [.rsrc]endereço S12 (%lx) não está dentro de RAM(0x2000-0x4000) partilhado, deve desviar manualmente o endereço no seu códigorelocalização SDA com _SDA_BASE_ não definidoSECURITY         SEC_RELOC sem relocs na secção %AErro SH: tipo de reloc %d não suportadoSHELL            SHRFXDSHRPICuso SIMD: SPSC - definição de secção Shared Image Program
STABLE           STA_CKARG (comparar argumento de procedimento)
STA_GBL (stack global) %.*s
STA_LI (stack literal)
STA_LW (stack longword) 0x%08x
STA_MOD (stack módulo)
STA_PQ (stack psect base + desvio)
STA_QW (stack quadword) 0x%08x %08x
STC_BOH_GBL (armazenar BOH condicional em endereço global)
STC_BOH_PS (armazenar BOH condicional em psect + desvio)
STC_BSR_GBL (armazenar BSR condicional em endereço global)
STC_BSR_PS (armazenar BSR condicional em psect + desvio)
STC_GBL (armazenar global condicional)
STC_GCA (armazenar endereço de código condicional)
STC_LDA_GBL (armazenar LDA condicional em endereço global)
STC_LDA_PS (armazenar LDA condicional em psect + desvio)
STC_LP (armazenar par de ligação condicional)
STC_LP_PSB (armazenar par de ligação condicional + assinatura)
STC_NBH_GBL (armazenar condicional ou dica em endereço global)
STC_NBH_PS (armazenar condicional ou dica em psect + desvio)
STC_NOP_GBL (armazenar NOP condicional em endereço global)
STC_NOP_PS (armazenar NOP condicional em psect + desvio)
STC_PS (armazenar psect condicional + desvio)
STO_AB (armazenar ramo absoluto)
STO_B (armazenar byte)
STO_BR_GBL ( global ramo global) *todo*
STO_BR_PS ( global ramo psect + desvio) *todo*
STO_CA (armazenar endereço de código) %.*s
STO_GBL (armazenar global) %.*s
STO_GBL_LW (armazenar longword global) %.*s
STO_IMM (armazenar imediato) %u bytes
STO_IMMR (armazenar repetição imediata) %u bytes
STO_LW (armazenar longword)
STO_OFF ( global LP com assinatura de procedimento)
STO_OFF (armazenar desvio para psect)
STO_QW (armazenar quadword)
STO_RB (armazenar ramo relativo)
STO_W (armazenar word)
SYM - definição de símbolo Global
SYM - referência de símbolo Global
SYMG - definição Universal
SYMM - definição de símbolo Global com versão
SYMV - definição de símbolo Vectored
SYSGEN           Secção sem conteúdoPasta de segurançaErro de tamanho na secção %AFlutuante suave
Cabeçalho de ficheiros fonte
Pasta especialRelocalização ALPHA_R_BSR espúriaAnálise de stack ignorará a chamada de %s a %s
Transporte de stack (%d) em _bfd_vms_pushTamanho de stack para chamar nós raiz gráficos.
Sub-transporte de stack em _bfd_vms_popEndereço inicial de "%s" é diferente da ligação prévia.Passos:
Símbolo %s não definido para fixups
Símbolo "%s" tem tipos diferentes: %s em %B, previamente REGISTER em %BSímbolo "%s" tem tipos diferentes: REGISTER em %B, previamente %s em %BSímbolo precisa de secção de depuração que não existeO símbolo deve ser absoluto, global e referir-se a funções Thumb.Erro de chamada do sistemarelocalização TLS inválida sem secções dinâmicasTransporte TOC: %#Lx > 0x10000; tente -mminimal-toc ao compilarEndereços da tabela
O campo de tamanho dos dados de depuração na pasta de dados é demasiado grande para a secçãoO tamanho da pasta de depuração não é múltiplo do tamanho da entrada da pasta de depuração
Há um conflito na união das bandeira do cabeçalho ELF de %BPasta de armazenamento de Thread [.tls]Selo Hora/Data 		%lx
Cabeçalho do texto de título
Demasiadas entradas GOT para -fpic, recompile com -fPICDemasiados códigos unwind (%ld)
Tente activar relaxe para evitar truncamentos nas relocalizaçõesTipo                Tam.     Rva      Desvio
USRSTACKImpossível encontrar secção de saída equivalente para símbolo "%s" da secção "%s"Impossível atingir %s (at 0x%08x) do ponteiro global (em 0x%08x) porque o desvio (%d) está fora do intervalo permitido, -32678 a 32767.
Impossível ler registo EIHS no desvio %#xSTO_SH5_ISA32 inesperado em símbolo local não é geridoNúmero de máquina inesperadoTipo de secção %d de ficheiro núcleo OSF/1 não gerida
Relocalização %s não geridaDesconhecidoSub-tipo EGSD %d desconhecidoTipo básico %d desconhecidoReloc %s desconhecidaReloc %s + %s desconhecidaSímbolo desconhecido em comando %sDesconhecido: %xNúmero de reloc MIPS não reconhecido: %dINPUT_SECTION_FLAG %s não reconhecida
TI COFF id de alvo "0x%x" não reconhecidatipo de reloc 0x%x não reconhecidoRelocalização .stab não suportadaTipo de relocalização CR16 não suportado: 0x%x
VOLATILE         Variável "%s" só pode estar numa das regiões de dados pequena, zero e minúsculaVariável "%s" não pode estar nas regiões de dados pequena e minúscula em simultâneoVariável "%s" não pode estar nas regiões de dados pequena e zero em simultâneoVariável "%s" não pode estar nas regiões de dados zero e minúscula em simultâneoVariável "%s" não pode ocupar múltiplas pequenas regiões de dadosTamanho virtual da secção .pdata (%ld) maior que o tamanho real (%ld)
Aviso, .tamanho da secção pdata (%ld) não é múltiplo de %d
Aviso: %B não suporta interworking, enquanto %B simAviso: %B suporta interworking, enquanto %B nãoAviso: %B usa %s (definida por %B), %B usa %sAviso: %B usa %s (definida por %B), %B usa MSA ABI %d desconhecidaAbiso: %B usa %s (definida por %B), %B usa vírgula flutuante ABI %d desconhecidaAviso: %B usa 64-bit long double, %B usa 128-bit long doubleAviso: %B usa AltiVec vector ABI, %B usa SPE vector ABIAviso: %B usa IBM long double, %B usa IEEE long doubleAviso: %B usa vírgula rígida de precisão dupla, %B usa vírgula rígida de precisão simplesAviso: %B usa vírgula rígida, %B usa vírgula suaveAviso: %B usa r3/r4 para devoluções de estrutura pequena, %B usa memóriaAviso: %B usa MSA ABI %d desconhecida (definida por %B), %B usa %sAviso: %B usa MSA ABI %d desconhecida (definida por %B), %B usa MSA ABI %d desconhecidaAviso: %B usa vírgula flutuante ABI %d desconhecida (definida por %B), %B usa %sAviso: %B usa vírgula flutuante ABI %d desconhecida (definida por %B), %B usa vírgula flutuante ABI %d desconhecidaAviso: %B: configuração de plataforma em conflitoAviso: %B: conflito na configuração de plataforma %s com %s.
Aviso: %B: atributo de objecto ARC %d desconhecido.Aviso: %B: atributo de objecto EABI %d desconhecidoAviso: %B: atributo de objecto MSABI %d desconhecidoAviso: tamanho de secção %s (%ld) não é múltiplo de %d
Aviso: tamanho de secção %s (%ld) é menor que o tamanho virtual (%ld)
Aviso: tamanho de secção %s é zero
Aviso: a limpar bandeira %B de interworking devido a código não interworking em %B que lhe foi ligadoAviso: a limpar bandeira %B de interworking devido a pedido externoAviso: bandeira %B de interworking não definida porque já foi especificada como não-interworkingAviso: reloc RL78_SYM com símbolo desconhecidoAviso: reloc RX_SYM com símbolo desconhecidoAviso: alihamento %u de símbolo comum "%s" em %B é maior que o alinhamento (%u) da sua secção %AAviso: alinhamento %u do símbolo "%s" em %B é menor que %u em %BAviso: troca de total de fixups
Aviso: opção gc-sections ignoradaAviso: tamanho do símbolo "%s" mudou de %Lu em %B para %Lu em %BAviso: símbolo "%s" é secção e não-secção em simultâneoAviso: tipo de símbolo "%s" alterado de %d para %d em %BAviso: bandeiras não definidas ou de arquitectura antiga. 
	       Use a máquina predefinida.
Aviso: escrita do arquivo lenta: a reescrever o carimbo
A escrever carimbo armap actualizadoO endereço XGATE (%lx) não está dentro de RAM(0xE000-0xFFFF) partilhado, deve desviar manualmente o endereço e, possivelmente gerir a página, no seu código.[%u]: inferior: %u, superior: %u
[abi=16-bit int, [abi=32-bit int, 8cujo nome está perdido]_bfd_vms_output_counted chamado com demasiados bytes_bfd_vms_output_counted chamado com zero bytes"%s" refere-se a função não de entrada.um objecto PDEum objecto PIEum objecto partilhadoendereçoendereço não alinhado por worddescritor de matriz:
matriz, dim: %u, bitmap: arsize: %u, a0: 0x%08x
atómico, tipo=0x%02x %s
mau índice de secção em %sendereço de banco [%lx:%04lx] (%lx) não está no mesmo banco que o endereço actual [%lx:%04lx] (%lx)base: %u, pos: %u
bfd_mach_o_canonicalize_symtab: impossível carregar símbolosbfd_mach_o_read_section_32: valor de alinhamento muito grande: %#lx, a usar 32bfd_mach_o_read_section_64: valor de alinhamento muito grande: %#lx, a usar 32bfd_mach_o_read_symtab_symbol: nome fora do intervalo (%lu >= %u)bfd_mach_o_read_symtab_symbol: símbolo "%s" especificou secção inválida %d (máx %lu): a definir como indefinidabfd_mach_o_read_symtab_symbol: símbolo "%s" especificou campo de tipo inválido 0x%x: a definir como indefinidabfd_mach_o_read_symtab_symbol: impossível ler %d bytes em %ubfd_mach_o_read_symtab_symbols: impossível alocar memória para símbolosbfd_mach_o_scan: arquitectura desconhecida 0x%lx/0x%lxbfd_pef_scan: arquitectura desconhecida 0x%lxblkbeg: endereço: 0x%08x, nome: %.*s
blkend: tamanho: 0x%08x
impossível criar entrada fictícia %simpossível emitir relocalizações dinâmicas em secção só de leituraimpossível emitir fixups em secção só de leituraimpossível encontrar EMH no primeiro registo GST
impossível gerir reloc R_MEM_INDIRECT enquanto usa saída %simpossível ler DMT
impossível ler cabeçalho DMT
impossível ler psect DMT
impossível ler DST
impossível ler cabeçalho DST
impossível ler símbolo DST
impossível ler EIHA
impossível ler EIHD
impossível ler EIHI
impossível ler EIHS
impossível ler cabeçalho EIHVN
impossível ler versão EIHVN
impossível ler EISD
impossível ler GST
impossível ler registo GST
impossível ler cabeçalho de registo GST
impossível ler tamanho do registo GST
classe: %u, dtype: %u, tamanho: %u, ponteiro: 0x%08x
secção %s corrupta em %Bimpossível encontrar a secção %simpossível localizar símbolo linker especial __ctbpimpossível localizar símbolo linker especial __epimpossível localizar símbolo linker especial __gpimpossível abrir imagem partilhada "%s" de "%s"cpu=HC11]cpu=HC12]cpu=HCS12]cpu=XGATE]relocalização perigosadelta pc +%-4ddelta_pc_l: +0x%08x
delta_pc_w %u
descdimct: %u, aflags: 0x%02x, dígitos: %u, escala: %u
secção de saída descartada: "%A"a descartar intervalo FDE de endereço zero em %B(%A).
intervalo descontínuo (nr: %u)
relocalização dinâmica em secção só de leituravariável dinâmica "%s" tem tamanho zeroenumbeg, tam: %u, nome: %.*s
enumelt, nome: %.*s
enumend
epílogo: bandeiras: %u, total: %u
erro ao ler tipo de cpu de dados privados elferro: %B contém uma reloc (%#Lx) para a secção %A que referencia um símbolo global inexistenteerro: %B não usa instruções Maverick, enquanto %B simerro: %B já está no formato final BE8erro: %B está compilado como código de posição absoluta, enquanto destino %B é de posição independenteerro: %B está compilado como código independente da posição, enquanto destino %B é de posição absolutaerro: %B está compilado para APCS-%d, enquanto %B está compilado para APCS-%derro: %B está compilado para APCS-%d, enquanto o alvo %B usa APCS-%derro: %B está compilado para EP9312, enquanto %B está compilado para XScaleerro: %B precisa de alinhamento 8-byte mas %B está definido para alinhamento 4-byteerro: %B passa flutuantes em registos flutuantes, enquanto %B os passa em registos inteiroserro: %B passa flutuantes em registos inteiros, enquanto %B os passa em registos flutuanteserro: %B requer mais alinhamento de matriz do que %B preservaerro: %B requer mais alinhamento de stack do que %B preservaerro: %B usa instruções %s mas %B usa %serro: %B usa doubles 64-bit mas %B usa doubles 32-biterro: %B usa instruções FPA, enquanto %B nãoerro: %B usa FPU-3.0 mas %B só suporta FPU-2.0erro: %B usa instruções Maverick, enquanto %B nãoerro: %B usa instruções VFP, enquanto %B nãoerro: %B usa argumentos de registo VFP, %B nãoerro: %B usa equipamento FP, enquanto %B usa programa FPerro: %B usa argumentos de registo iWMMXt, %B nãoerro: %B usa programa FP, enquanto %B usa equipamento FPerro: %B usa o modelo de código %s enquanto %B usa o modelo de código %serro: %B usa o modelo de dados %s mas %B só usa instruções MSP430erro: %B usa o modelo de dados %s enquanto %B usa o modelo de dados %serro: %B usa o modelo de código grande mas %B usa instruções MSP430erro: %B usa o modelo de código pequeno mas %B usa o modelo de dados %serro: %B(%A) é muito grande (%#Lx bytes)erro: %B: <tamanho necessário x86 ISA corrupto: 0x%x>erro: %B: <tamanho ISA x86 corrupto: 0x%x>erro: %B: <tamanho de funcionalidade x86 corrupto: 0x%x>erro: %B: Big-endian R2 não é suportado.erro: %B: arquitecturas CPU %d/%d em conflitoerro: %B: perfis de arquitectura %c/%c em conflitoerro: %B: uso de R9 em conflitoerro: %B: objecto tem conteúdo especifico do fabricante que tem de ser processado por "%s"erro: %B: etiqueta do objecto "%d, %s" é incompatível com etiqueta "%d, %s"erro: %B: conflitos de endereçamento relativo SB com o uso de R9erro: %B: arquitectura CPU desconhecidaerro: %B: impossível misturar rf16 com conjunto de registo completo %B.
erro: %B: conflito de atributos de extensão ISA %s com %s.
erro: %B: conflito de atributos %s.
erro: %B: conflito de atributos %s: %s com %s.
erro: %B: tamanho da secção %A não é múltiplo do tamanho do endereçoerro: %B: impossível unir atributos base CPU %s com %s.
erro: %B: impossível unir atributos de extensão ISA %s.
erro: %B: impossível unir atributos de virtualização com %Berro: impossível encontrar símbolo: _SDA_BASE_.erro: erro de relocalização IFC.erro: falha em salto IFC.erro: objecto fonte %B tem versão EABI %d, mas o alvo %B tem versão EABI %derro: formato fp16 enganado entre %B e %Berro: tipo de relocalização inapropriado para biblioteca partilhada (esqueceu-se de -fpic?)erro: símbolo __rtinit indefinidoerro: valor Tag_ABI_array_object_align_expected desconhecido em %Berro: valor Tag_ABI_array_object_alignment desconhecido em %Bexecutávelfalha ao criar entrada de tabela hash ex9.it %sfalha ao alocar espaço para nova secção APUinfo.falha ao computar nova secção APUinfo.falha ao instalar nova secção APUinfo.erro fatal ao criar .fixuplinker genérico não pode gerir %sendereço relativo de ponteiro global fora do intervalorelocalização relativa de ponteiro global no endereço 0x%08x com _gp não definido
relocalização relativa de ponteiro global com _gp não definidosímbolo ocultosímbolo oculto a ignorar reloc %s
incr_linum(b): +%u
incr_linum_l: +%u
incr_linum_w: +%u
indirecto, definido em 0x%08x
erro interno: adenda devia ser zero para R_LM32_16_GOTerro interno: adenda devia ser zero para R_OR1K_GOT16erro interno: detectado ramo/salto para um endereço ímparerro interno: erro perigosoerro interno: relocalização perigosaerro interno: união da arquitectura "%s" com a arquitectura "%s" produziu uma arquitectura desconhecidaerro interno: erro fora do intervaloerro interno: tipo de relocalização suspeito usado em biblioteca partilhadaerro interno: erro desconhecidoerro interno: erro relocalização não suportadainconsistência interna no tamanho da secção .got.locsímbolo internosímbolo interno Relocalização de entrada inválida ao produzir saída de formato não-ELF, não-mmo.
 Por favor, use o programa objcopy para converter de ELF ou mmo,
 ou monte usando "-no-expand" (para gcc, "-Wa,-no-expand"Relocalização de entrada inválida ao produzir saída de formato não-ELF, não-mmo.
 Por favor, use o programa objcopy para converter de ELF ou mmo,
ou compile usando a opção gcc "-mno-base-addresses".Endereço de relocalização inválidotipo de relocalização %d inválidouso inválido de %s com contextosip2k linker: página de instrução em falta em %#Lx (dest = %#Lx)ip2k linker: página de instrução redundante em %#Lx (dest = %#Lx)ip2k relaxer: cabeçalho da tabela de troca corrompido.ip2k relaxer: tabela de troca sem informação completa de comparação de relocalização.etiqueta, nome: %.*s
tam: %2u, tipo: %2u nº linha  (tam: %u)
imagem ligávelfictícios de linker em grupo %u
fictícios de linker em grupos %u
literalrelocalização literal ocorre para um símbolo externomach-o: há demasiadas secções (%u), o máximo é 255,
mep: sem reloc para código %dmodbeg
modend
nome: [val: %08lx tam %d]: nativointroduzidas novas funções de entrada mas não especificou biblioteca importada de saída:nãomatriz não contínua de %s
relocalizações não-dinâmicas referem-se a símbolo dinâmico %stamanho não-sobreposição de 0x%v mais o tamanho máximo de sobreposição de 0x%v excede a capacidade local
adenda não-zero em reloc @fptrnenhumespaço GOT insuficiente para entradas GOT locaisnão mapeado: dados=%lx mapeado=%d
não mapeado: env var não definida
não definidofora do intervalotransporte após relaxetransporte de relocalização fictícia de sobreposiçãoponteiro
bandeiras privadas = %lxbandeiras provadas = %lx:bandeiras privadas = %lx: bandeiras privadas = %x:bandeiras privadas = 0x%lxbandeiras privadas = 0x%lx:prólogo: bkpt endereço 0x%08x
símbolo protegidosímbolo protegido recbeg: nome: %.*s
recend
referência a um endereço de banco [%lx:%04lx] no espaço de endereço normal em %04lxregreloc (%d) é *UNKNOWN*relocalização "%s" ainda não implementadarelocalização fora do intervalorelocalização referencia símbolo ainda não definido no módulorelocalização requer adenda zeroa relocalização deve ser número parrelocalizações entre diferentes segmentos não são suportadasa reabrir %B: %s
comando reservado %drtnbeg
rtnend: tamanho 0x%08x
endereço de secção (%#Lx) abaixo do início do segmento (%#Lx)septyp, nome: %.*s
set_abs_pc: 0x%08x
set_line_num(w) %u
set_line_num_b %u
set_line_num_l %u
objecto partilhadosecção small-data excede 64KB; baixe o limite de tamanho de small-data (veja a opção -G)som_sizeof_headers não implementadodesculpe, sem suporte para ficheiros objecto duplicados no script de auto-sobreposição
desculpe: modtab, toc e extrefsyms ainda não estão implementados para comandos dysymtab.fonte (tam: %u)
dados standard: %s
procedimento estático (sem nome)entrada fictícia para %s não pode carregar .plt, desvio dp = %Ldfictícios não correspondem ao tamanho calculadosímbolosímbolo informação da matriz de versão do sistema:
term(b): 0x%02xterm_w: 0x%04xo alvo bfin actualmente não suporta a geração de relocalizações de cópiatipo de  spec para elemento:
tipo de spec para subscrito %u:
ponteiro com tipo
typspec (tam: %u)
impossível alocar dados para comando de carga %#ximpossível encontrar cola ARM "%s" para "%s"impossível encontrar cola THUMB "%s" para "%s"impossível dispor comando de carga %#x desconhecidoimpossível ler na secção %s de %Bimpossível escrever comando de carga %#x desconhecidocadeia de bits não alinhada de %s
convenção de chamada incerta para símbolo não-COFFindefinidoreferência %s indefinida em símbolo complexo: %stipo de entrada egsd %u não gerida
sub-tipo emh %u não gerido
desconhecidocomando ETIR %d desconhecidoerro desconhecidovalor de cabeçalho byte-order %#x desconhecidocomando de linha %d desconhecidooperador "%c" desconhecido em símbolo complexoComando fonte %d desconhecidoarquitectura V850 desconhecidadesconhecido: %xnúmero de reloc MIPS não reconhecido: %drelocalização não reconhecida (0x%x)comando STA %s não suportadoreloc não suportadotipo de reloc não suportadorelocalização não suportadarelocalização não suportada entre dados/espaços de endereço insna usar múltiplos valores gparquitectura v850 E3arquitectura v850arquitectura v850earquitectura v850e1arquitectura v850e2arquitectura v850e2v3arquitectura v850e3v5vflags: 0x%02x, valor: 0x%08x vma:			EndInicial  	 EndFinal  	 DadosUnwind
aviso: %B e %B diferem em tamanho wchar_taviso: %B e %B diferem sobre se o código foi compilado para DSBTaviso: %B tem um índice de tabela de cadeia corrompido - a ignoraraviso: %B está truncado: esperado tamanho do ficheiro de núcleo >= %Lu, obtido: %lluaviso: %B usa %s enums mas a saída deve usar %s enums; uso de valores enum através de vários objectos pode falharaviso: %B usa %u-byte wchar_t mas a saída deve usar %u-byte wchar_t; uso de valores wchar_t através de vários objectos pode falharaviso: %B: tamanho GNU_PROPERTY_TYPE (%ld) corrupto: %#lxaviso: %B: GNU_PROPERTY_TYPE (%ld) corrupto ,tipo (0x%x) datasz: 0x%xaviso: %B: tamanho corrupto de não copiar se protegido: 0x%xaviso: %B:tamanho de stack corrupto: 0x%xaviso: %B: símbolo local "%s" não tem secçãoaviso: %B: GNU_PROPERTY_TYPE (%ld) não suportada, tipo: 0x%xaviso: %s excede o tamanho da secção
aviso: %s sobrepõe-se a %s
aviso: secção %s tem tamanho zeroaviso: tentativa de exportar símbolo "%s" indefinidoaviso: chamada a símbolo não-função %s definida em %Baviso: a descartar secção dinâmica %saviso: a gerar uma biblioteca partilhada contendo código não PICaviso: a gerar uma biblioteca partilhada contendo código não PIDaviso: a relocalização referencia um segmento diferenteaviso: a secção "%s" está a ser tornada numa notaaviso: tipo da secção "%A" alterou-se para PROGBITSaviso: tipo e tamanho do símbolo dinâmico "%s" não estão definidosaviso: impossível definir tamanho da secção %s em %Baviso: impossível actualizar conteúdo da secção %s em %Baviso: secção de escrita "%A" em enorme (negativo) desvio de ficheiroaviso: secção xdata corruptaaviso: secção xdata corrupta
simnão tem permissão para definir %s num script