forked from ~ljy/RK356X_SDK_RELEASE

hc
2023-08-29 185649640333407ac269f396d6adcc4b25bfb474
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
Þ•!$)Ù,Rm‘mªmÉmàm$óm3nLn%ln’nA¢n&än o$o=oVofo …o¦oÆoßoöo    p*!p9Lp6†p;½pùpF q6Rq:‰q5ÄqJúq)ErGorL·r)sL.s{s‘sD¨sís tt2tJt3itt0´tåtõtu+u+Ku+wu#£uÇußu èuôuv)v@v`v}v–v±vÑvêvww3w,Gwtw„wwµwÌwÛwñw x1"xTx exrx‰x¤x#¼x+àx& y53yiyy›y±yËyäyûy$z6zOzoz‡z$œzÁzÕzêz<{@{O{ ^{l{€{ ˜{¹{Ô{ä{| |@|Y|r| …|*‘|¼|Î|&à|}0}L}"`}    ƒ}}# }Ä}Ý}î}~" ~C~"W~#z~#ž~Â~#×~#û~ .,[ain
‹–›!¡ Ãäéî€.€3€G€ L€m€t€z€€„€Š€Ž€“€¯€Ȁ̀퀁!AFKRX]ovЁ‘ª¾ρàñ‚‚    "‚ ,‚ :‚
^‚i‚
~‚‰‚$‚
µ‚#À‚%ä‚
 
ƒƒ(ƒ$@ƒeƒƒƒ!ƒ¿ƒԃ
ãƒ îƒ    üƒ„
„"„)„A„[„j„„œ„«„Ąӄڄê„þ„(…/@…p…‰…›…°…+¿…ë…A†I†c†}†—†8¬†å†ý†‡&,‡S‡r‡†‡2¡‡ԇ?î‡&.ˆUˆtˆ(‡ˆ°ˆ"Ĉçˆ*‰62‰{i‰rå‰xXŠъDçŠ*,‹7W‹$‹'´‹*܋!Œ=)ŒAgŒE©ŒïŒ%D4.y,¨*Ս%Ž4&Ž[Ž>zŽG¹ŽJ
5U8‹(ď,íPEkF±Fø3?‘<s‘%°‘A֑n’K‡’7Ӓ* “86“.o“<ž“9ۓ@”HV”BŸ”Jâ”B-•Tp•TŕT–To–‰Ä–<N—m‹—[ù—PU˜<¦˜Dã˜^(™D‡™€Ì™1MšJšIʚ>›mS›6Á›mø›!fœ#ˆœ8¬œ)åœ.0>>o>®/í/žFMž>”ž-Ӟ(Ÿ*Ÿ7HŸ1€Ÿ0²Ÿ/ãŸ) /= ;m <© <æ /#¡-S¡&¡3¨¡3Ü¡O¢W`¢O¸¢o£+x£5¤£#Ú£7þ£E6¤>|¤2»¤:î¤2)¥(\¥+…¥<±¥?î¥Q.¦3€¦'´¦=ܦ<§MW§K¥§Dñ§!6¨:X¨7“¨˨.騩18©'j©%’© ¸©EÙ©4ªHTª?ª<ݪG«-b«7«1È«8ú«23¬+f¬/’¬7¬ú¬+­LF­$“­+¸­ä­®®;®+V®5‚®@¸®@ù®I:¯I„¯9ί$°,-°'Z°=‚°QÀ°D±1W±5‰±¿±2ܱ.²?>²A~²EÀ²$³9+³5e³&›³4³1÷³$)´$N´/s´%£´<É´*µ'1µ3Yµ&µ´µ4е¶4$¶Y¶.p¶(Ÿ¶*ȶ6ó¶2*·5]·8“·WÌ·Z$¸B¸5¸=ø¸<6¹(s¹-œ¹0ʹû¹Pº fº@‡ºkȺ44»;i»$¥»'Ê»ò»2¼OB¼K’¼GÞ¼`&½A‡½YɽS#¾<w¾g´¾a¿l~¿Fë¿-2À2`À(“À3¼À1ðÀ-"ÁDPÁB•Á6ØÁ*Â2:Â.mÂ*œÂ(ÇÂðÂ4 ÃD@ÃC…ÃCÉÃE Ä^SÄ]²Ä)Å+:Å$fÅ)‹Å8µÅ:îÅ&)Æ&PÆ2wÆ+ªÆ=ÖÆ,ÇAÇ+_Ç‹Ç-¡Ç+ÏÇûÇ*È2EÈ"xÈ#›È"¿È-âÈ,ÉG=ÉG…ÉGÍÉ(Ê@>ÊDÊ2ÄÊ7÷Ê5/Ë/eË*•Ë1ÀË;òËW.Ì-†Ì-´ÌâÌ)Í%*Í2PÍ2ƒÍ=¶Í;ôÍB0ÎAsÎ:µÎ2ðÎ?#ÏcϛƒÏ6Ð6VÐAÐGÏÐ6Ñ=NÑ:ŒÑ:ÇÑDÒ8GÒ9€ÒCºÒ:þÒ79Ó8qÓ9ªÓ,äÓ6ÔHÔ;dÔ: Ô.ÛÔ
Õ1*Õ$\Õ5Õ9·ÕOñÕ#AÖ1eÖC—Ö6ÛÖ(×&;×:b×#×'Á×pé×'ZØ1‚Ø;´Ø£ðØ7”Ù(ÌÙ5õÙ8+Ú>dÚ £ÚÄÚ!âÚ Û%%ÛbKÛ'®Û)ÖÛ=ÜG>Ü%†Ü*¬Ü0×Ü&Ý&/Ý7VÝ8ŽÝ9ÇÝ6Þ/8ÞChÞQ¬ÞþÞß-ßBß2Xß&‹ß²ßMÁßTà2dà|—à(á[=á+™á/Åá(õáRâFqâF¸â:ÿâ6:ãDqã7¶ã*îã-ä0GäAxäHºä>å+BåInå;¸åôå;æ;Pæ.Œæ.»æ=êæI(ç.rç/¡ç@Ñç*è)=è;gè£è>ÁèBélCé@°é?ñéG1êFyêJÀêH ëKTëG ëBèëX+ì4„ì/¹ìNéì08í(ií/’íÂíÕíéí0ûí=,îDjî0¯î5àî)ï7@ïxï’ï'±ï&Ùï[ðG\ðO¤ð9ôð.ñ>Nñ2ñ5ÀñPöñ=Gò/…òoµò%ó 9ó Gó Sóaó%ró\˜ó;õó1ôCôYô\ô yô†ô    Ÿô©ô »ô,Èôõô    õ/õOõ;_õ›õ°õÀõÉõÝõòõöö    ;ö"Eö+hö#”ö,¸ö:åö ÷2÷.N÷4}÷?²÷=ò÷    0ø":ø]øtø}øø”ø¦ø¸ø'Êøòø ù#0ùTùnù$€ù$¥ù$Êù'ïù%ú'=úeúƒú£ú"Ãúæúöú û û7û)Mûwû#û#±û-Õû8ü1<üAnü.°üYßü_9ý;™ý)Õý!ÿý$!þFþH[þ%¤þÊþ5çþÿ
2ÿ"=ÿ`ÿrÿ‹ÿ¦ÿ »ÿÈÿ×ÿ õÿ/+E8qªÀß'ñ+.I-xG¦3î""AId%®Ôçù":L$eЧ5¹ï#9Kk…–¥·    ¾ÈÑ
è"ó% <HWnŠ ²Òë 1I-g•§¹Îè)/Gw‰›¢!©.Ë,ú':C%~%¤Ê=ãC!    =e    "£    [Æ    ?"
b

)ž
È
Ñ
*ì
 &) P p ‚ ‰ ( ¹ 'Ë ó  ( H #` $„ ,© .Ö , .2 a "~ ,¡ .Î !ý 10Q2‚,µ.â#5U(i/’!Âä(#*+Nz,“ Àáú.N#m-‘"¿âô 7Pew2’$Å&ê    1!;]DwD¼/1/C?s³ÄäûJ7bš*´ß÷%6L#i%³ÆãJJ]J¨Ió:=;x:´Eï659l7¦9ÞQ/jBš@Ý.=M&‹.²/á-i?D©dî,SF€fÇC.r#‘@µ8ö7/g    ‡‘­¿Ñ<æ2# .V …  ¤ ¼ dÔ 9!6L!@ƒ!=Ä!d"gg"bÏ"=2#Ep#1¶#(è#$$6$4L$'$$©$7Î$%%/%F%W%o%‡%™%«%½%Ï%é%&&'&?&^&2}&°&-É&+÷&+#'*O'    z'    „'
Ž'™'®'½'Ò'á'1æ'(7('V("~(¡(¿(Ô(Ý(]û(=Y)(—)ZÀ)Z*Ev*A¼*Gþ*WF+Wž+9ö+90,4j,9Ÿ,4Ù,2-7A-5y-7¯-.ç-2. I.[j.@Æ.:/#B/=f/<¤/Ná/-00O^0 ®0>Ï091
H11S1&…1&¬1!Ó1õ1,27A2 y2‡2š2®2Á27Ô2 3$,3"Q3At3¶3,Ô32444¾D4»5¿5Ú5õ5B6DX6*6LÈ67*7y97³70»7ì78888298Ol8¼8*Û8 9'9KE9 ‘9ž9 ¸9Ù9í9::,:B:Y:v:‡:›:N£:ò:#ö:6;Q; q;8’;Ë;Ý;í;õ;
<<2<F<Y<Ll< ¹<DÚ<=1=D=3_=!“=µ="¼=ß=ï=þ=%>'7>$_>)„>*®>Ù>0õ>,&?S?q?‹?“? «?%¹?ß?'÷?@9@P@b@y@7@È@á@ó@AA.ADA-cA)‘A>»AgúAxbB-ÛB!    C7+CcC!|C;žC0ÚC5 D<AD<~D2»D/îD.E=ME/‹E6»E,òEªF!ÊG(ìGH5H+MHCyH+½H!éH IUI+pIœIºIÖIðI"J!#J$EJjJˆJ¡J¶J>ÖJBK?XK>˜K×KZðKDKLILCÚLSM1rMQ¤MUöM1LNV~NÕNðNS O!aOƒO˜O¬O ÆO5çOP=2PpPPP,ªP,×P,Q"1QTQlQ uQQ¡QºQÑQñQR'R,BRoRˆR¨RÀRÜR3ðR$S4SNSjS‡S™S¯SÉS5àST )T6TQTlT$†T+«T'×T5ÿT#5UYUxUU¯UÈUßU)õUV8VXVpV(…V®VÂV×V<ðV-W<W KWYWmW"‰W¬WÇW&×WþWX9XRXpX „X-X¾XÑX)äXY2#YVY+jY
–Y¡Y#´YØY÷Y
Z$Z#>ZbZ%vZ#œZ#ÀZäZ#õZ#[=[.L[{[[‰[Ž[
«[¶[»[)Á[3ë[\$\#)\#M\q\v\“\4˜\Í\Ô\Ú\ß\ä\ê\î\"ó\#]:]#?]c]#z]#ž]Â]Ç]Ì]Ó]Û]à]ö]ý]^^7^N^_^p^^’^£^    ²^ ¼^ Ê^
Ø^
ã^
î^ù^
__4_
T_[__P»_
``2`7Q`"‰`¬`,Ë`ø` a a*a    ;aEa [aiapaŠa§aÅa'âa
b b :bHbOb^bsb1b:¿búbc*c?c:Pc‹cG¦c îcd*dEd;Zd–d¯dÅd6àd,eDeYe7xe°eHÊe5f+Ifuf*Šfµf#Éf-íf*g7Fg~gwþg{vhòh] i;jiC¦i0êi,j2Hj){jF¥jJìjD7k|k5—kVÍk8$l.]l#Œl'°l2Øl% m@1mYrmÌmXÕm8.n@gn0¨n4ÙnOoN^oK­oKùoCEp_‰p,épGqŠ^qaéq>Kr3ŠrA¾r;sF<sCƒsLÇsMtNbtU±tMulUuoÂuj2vov“ wF¡wˆèwpqxXâxH;yR„y‚×yYZz¦´z+[{T‡{YÜ{E6|Œ||=    }vG}#¾}$â}L~0T~6…~5¼~Iò~O<KŒ3Ø^ €@k€?¬€6ì€'#LKA˜9ځ4‚6I‚4€‚Cµ‚Wù‚WQƒ@©ƒ=êƒ7(„U`„P¶„i…oq…ká…šM†.è†H‡,`‡A‡SχM#ˆAqˆ?³ˆDóˆ.8‰>g‰R¦‰bù‰m\Š;ʊ4‹H;‹E„‹XʋQ#ŒFuŒ ¼ŒL݌F*'q7™$э<ö(3Ž-\Ž&ŠŽ[±Ž= UKQ¡NóXB4›SАJ$‘Uo‘HőR’4a’?–’-֒C“hH“5±“6ç“0”O”-m” ›”9¼”Cö”r:•r­•a –a‚–Iä–,.—9[—8•—cΗe2˜V˜˜<ï˜<,™'i™=‘™@ϙ\šUmš\Ú$ ›GE›?›-͛;û›>7œ/vœ/¦œ7֜5CD6ˆ)¿?é0)žZžEyž$¿žBäž'ŸCAŸ:…Ÿ@ÀŸO FQ j˜ L¡jP¡q»¡R-¢k€¢Iì¢M6£B„£DÇ£= ¤J¤eg¤,ͤPú¤K¥;Í¥D    ¦%N¦2t¦-§¦FÕ¦a§Y~§Vا„/¨P´¨p©mv©S䩈8ªŠÁªL«dÚ«=?¬7}¬-µ¬Dã¬C(­9l­W¦­Vþ­VU®;¬®Gè®10¯6b¯%™¯¿¯;Ù¯F°E\°E¢°Gè°`0±_‘±9ñ±@+²/l²5œ²FÒ²I³-c³1‘³9ó0ý³O.´<~´»´.Ù´µ:µ6Yµ#µ4´µ:éµ)$¶*N¶)y¶9£¶8ݶb·Sy·]Í·4+¸R`¸H³¸@ü¸F=¹F„¹B˹JºKYºU¥ºQûº?M»/»+½»5é»<¼<\¼E™¼]ß¼b=½l ½c ¾Xq¾AʾV ¿c¿ă¿DHÀDÀVÒÀ\)Á=†ÁAÄÁ=Â>DÂHƒÂ;ÌÂ=ÃGFÃ=ŽÃ;ÌÃ;ÄXDÄLÄMêÄ$8ÅN]ÅN¬ÅBûÅ(>Æ?gÆ2§Æ@ÚÆFÇWbÇ+ºÇ;æÇ\"ÈMÈ3ÍÈ7É]9É+—É/ÃɇóÉ/{ÊK«ÊD÷ÊÅ<ËHÌ:KÌ<†Ì=ÃÌEÍ$GÍ"lÍ<Í:ÌÍ.΄6Î8»ÎFôÎD;ÏN€Ï2ÏÏJÐ:MÐ%ˆÐB®ÐAñÐP3ÑL„ÑJÑÑFÒPcÒe´Ò*Ó EÓSÓ#iÓ:Ó6ÈÓÿÓcÔkrÔ3ÞÔŽÕ.¡ÕbÐÕ>3ÖBrÖ3µÖeéÖVO×Z¦×OØ^QØF°ØC÷Ø3;Ù<oÙ?¬ÙIìÙP6ÚM‡Ú5ÕÚ] ÛOiÛ*¹ÛEäÛE*Ü;pÜ;¬Ü?èÜS(Ý=|Ý;ºÝKöÝ(BÞCkÞI¯Þ"ùÞJßJgßp²ßG#àFkàN²àMáQOáJ¡á[ìá]HâO¦âköâPbã7³ã\ëã9Hä4‚ä6·äîäååC,åEpåL¶å8æA<æ3~æ=²æðæ# ç,1ç-^çnŒçSûçSOèO£è)óèJé9héO¢é]òéBPêB“ê~ÖêUënë}ë Žëœë$¬ëiÑë>;ìzì&‘ì¸ì »ìÜìòì     íí (í75ímíƒí6íÔíAèí*îCîWî`îtî‰îîµî    Ôî,Þî> ï.Jï6yïM°ïþï!ð/2ð7bðTšðMïð=ñ,Mñ&zñ    ¡ñ«ñ¯ñÈñÚñìñ0þñ/ò)Nò+xò¤òÀò0×ò%ó%.ó(Tó&}ó(¤óÍó ìó  ô#.ôRôhôƒô%¡ôÇô6Ýôõ*/õ,Zõ5‡õ;½õ<ùõF6ö9}ön·öp&÷J—÷1â÷"ø&7ø#^øL‚ø8Ïø#ùB,ùoùŒù4œùÑùãùüùú9úKú\ú zúˆú?šú4ÚúDûTû2qû¤û$¶ûÛû$íû@ü1SüQ…ü<×ü/ý4DýOyý0Éýúý þ$!þ-Fþtþ†þ$¤þ*ÉþôþHÿOÿaÿsÿ…ÿÿ±ÿÐÿîÿ$+ 4A _(m2–ÉØé!ÿ!8Lk‡¦ÀÕ!ð9L`u%­Ó1òC$hzŒ“*š3Å1ù+=I-‡,µ#âRXYA²:ôs/V£úC8    |!†7¨à0ò*#N`g8n§3¹í
   "    A    "X    #{    3Ÿ    /Ó    3
/7
g
#†
3ª
/Þ
% 54 =j 9¨ 3â / $F  k Œ +¢ 1Î ! " )A $k 3 Ä 7Þ !8!Rt#ˆ$¬(Ñ3ú&.Ug|™#°Ôó#2,/_6+Æò2ø+VHVŸ?ö62Nhê(ü%>ZOc>³ò5Ea{“®#Î"ò4J'f#޲\ÄY!U{XÑI*ItF¾T?ZAš?ÜA‡^bæZIt¤NUh8¾A÷79/qx¡]~x8÷h0o™P    /Z1ŠK¼? WH 1      Ò 'Ü !!(!@@!2!=´!ò!ú!"!2"uT"Ê"BÝ"E #<f#w£#t$o$B%RC%2–%)É%'ó%&S4&Gˆ&@Ð&R'd'v'“'®'"À'ã'((&(9(L(k(Š(("¯(6Ò(7    )6A)x)>•)<Ô)<*4N*    ƒ*    *
—*¢*¹*È*Ý*ì*4ñ*"&+I+8f+/Ÿ+*Ï+$ú+,#2,uV,KÌ,)-gB-hª-K.F_.I¦.zð.zk/Qæ/N80G‡0LÏ0G1Qd1n¶1L%2nr22á253+J3nv3Så3J94%„4\ª4J5WR50ª5bÛ5$>6Cc6>§6 æ6>ò63174e7,š7&Ç70î7D8d8s88£8¶8@É8!
9&,9S9Ro9Â95â9::S:ëc:ßO;"/< R</s<I£<Jí<98=_r=Ò= é=·ö=    ®>9¸>(ò>? *?6?<?EW?m?* @;6@@r@F³@bú@ ]AiA:‰AÄAÚAðABB6BOBnB€B—BY BúB/þBI.C&xC-ŸCCÍCD)D @DLDdDwD‹DŸD²DÅD#GESkE¿EÒEêEF
F=QFF+—FÃFÓFâF5öF<,G4iG;žG=ÚG"H6;H8rH%«H$ÑHöHþHI:(IcI2I´IÐIïI$ J2JAMJ#J³JÅJØJìJKK26K:iKM¤K‹òK~L6M/SM@ƒMÄM(ßMINBRNI•NIßNI)OAsO1µO8çOJ PEkPJ±P-üPê:Š;–Îý#ë¾>ÏÅÏÊýˆ>ñ†)Œô-ÌšúüeÆFR KÔú>N<Ù •º;9/½ÞZ~24ÊlŠbuƒ÷P’‚»O,æ´è-ÆM³4    ‰.¥±Rÿ¡—«ì”@€°^Ð ã÷ª=×äW@©D ÇÝL_ð¡ºàßÍœS5¦óà’Ê¿}ti›û(cÁs^8]ñPž]®*º™qûZ7˄¹PŸqÀóÛŽïa6Àç¨/TõË{Ev®‚xQ͸Ã/œ7ô€ëž›Å¤Ò©cyM!A†¦
ÿÖÏþî—*ZïuàXˆ! Èõ&$x.˜„
.cÿ“%^îeÉý‰é00¹¥#o¿2?“íßHx$úd':a­‚YJ‹íÜUso©˜"öF¯AÐLaT³ì’»t~Ì}ÕØP¸·w`´øÙ¸õ£ïÂÅ¢EúIðƒ>$=N&'j]h[ð¸.jòÓÿÄþFúò{åãkö°q‚ÝXpkÈNŠòå5ˆ ï§*…çÖÏÑÑ#ÁŸ';ÄšÞØÂjŽ„®¥a–rÃU¿~¾Û7”'ùФÚ_%­âévÑÁ­Mhj`ˆC¤né§Sül(•     ã^|ÁoÇžäCÖ‹ùŠVX)†u=lRF¨nøRzÕYĬb5fšÛN
—<œðì½T^€|¤v¼½pW    —ûþçÐÅÞWã¬f\’T9×pzæþ…b„8[¡1è”K%)ÕCñMtG(,wdå ðwmñÒ:þ»ÿ7EѮѸž¾‘$HiêuÔcDŒæ<Æ á3I¨›f9 6N@Ø"\#Ÿ·!]åªÏV(ÂܚǍr§p¨ãY; ¼ä)ÛB°D BÝ]ŸïÜ
ñ²Õáô* ³4»gÀ©Ü͇Þ9kíîO…w¦¶Õ¿ý8Y|Ò²åõ÷eÚâë{  ¢ÓÍsRl¤ &× B6÷Œä!n3 ±#_ªâ¼¯e¯bÉülz䁋£ë<h_ÈíM†Æ­‰ù.¬3ý«­·?œÎôÒK®|( ™ËHiDÉèmmàvîßJT°ó1æ[Úƒ›„¦Æö0Dùˆ ìSüg£\eøµèÌv,é¡4È© ðµÇ A
x{+Ë+†¶yªrd[5±ÂJ>‰XŸ"â¢æZ\¡? ÓALÉ¢G%‘õ+Èrc·µ2\͊•«£Q›‡”¥™0<˺âs¼gÖ¯–ø@OoCsçJÔóy€nÔ5¶Ugë}ݐݕ;Q" Pi²I1”ôÎØO}‡B=…`|øof™b6Q̪qpLÄÙ`÷¢K •,“tkyÎÉ
Ó7òWízÔàF0Ž‘Ùi¹¦¹4OùyG–&Å«£µ±¶2ó×-~}ÚG²Ò‹?gu/J¨E,!/V¹S3`    dŒnèÖ    ÁéQÜ=€X¾³E˜·fêÊç‘hß+Y-B$Lî:?q¬±'_áÀ“À´9œa%ÊÄò ̳t…§Œ‡áÚ!Þ“ê-½ÓÑCÇmG8¼‡~ßHá¥{UÃZ«˜ m28ê1´ìØ¿Vƒ13ŽxÛ¶[’wj—ž‚–6¯kA :‹‰rÐz&§UW× "ü    »IÙ*¬IHV@d+ûû™ö)´˜KŽh½²κSµöš¾    Export Address Table             Export Address Table         %08lx
   Name Pointer Table             Ordinal Table                 [Name Pointer/Ordinal] Table    %08lx
   code-base %08lx toc (loadable/actual) %08lx/%08lx
   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
 
Dynamic Section:
 
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 .pdata section contents)
 
The Import Tables (interpreted %s section contents)
 
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, but the section containing it could not be found
 
There is an import table in %s at 0x%lx
 
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
 
[Ordinal/Name Pointer] Table
 
ppcboot header:
        pc: 0x%08x
    *unhandled* cmd %u
    address: 0x%08x, size: %u
    flags: %u, address: 0x%08x, pd-address: 0x%08x
    global name: %.*s
    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    %s%s %s
   (type: %3u, size: 4+%3u):    *unhandled* cmd %u
   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):
  %s: 0x%v
  %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
  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
 #: Segment name     Section name     Address
 %08x 0x%08x 64B <EABI version unrecognised> BPAGE: %u COM COMM Change Protection (%u entries):
 Code Address Reference Fixups:
 DEF EXE First address : 0x%08x 0x%08x
 Fourth address: 0x%08x 0x%08x
 GBL Glue code sequence LIB Linkage Pairs Referece Fixups:
 NOMOD NORM OVR PIC QVAL RD REL Register restore millicode Register save millicode SHR Second address: 0x%08x 0x%08x
 Shareable images:
 Shared image  : 0x%08x 0x%08x
 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] [abi unknown] [abi=64] [abi=EABI32] [abi=EABI64] [abi=N32] [abi=O32] [abi=O64] [absolute position] [d-float] [dsp] [dynamic symbols use segment index] [fix dep] [floats passed in float registers] [floats passed in integer registers] [g-float] [has entry point] [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] [software FP] [sorted symbol table] [symbols have a _ prefix] [unknown ISA] [unsorted symbol table] [v10 and v32] [v32] corrupted GST
 cpusubtype: %08lx
 cputype   : %08lx (%s)
 debug module table : vbn: %u, size: %u
 debug symbol table : vbn: %u, size: %u (0x%x)
 filetype  : %08lx (%s)
 fixup info rva:  flags     : %08lx ( 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:
 magic     : %08lx
 majorid: %u, minorid: %u
 module offset: 0x%08x, size: 0x%08x, (%u psects)
 ncmds     : %08lx (%lu)
 offsets: isd: %u, activ: %u, symdbg: %u, imgid: %u, patch: %u
 quad-word .address reference fixups:
 quad-word relocation fixups:
 reserved  : %08x
 section: base: 0x%08x%08x size: 0x%08x
 sizeofcmds: %08lx
 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>%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 (0x%x) 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 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(%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): unsafe PID relocation %s at 0x%08lx (against %s in %s)%B(%A): warning: unaligned access to symbol '%s' in the small data area%B(%A+0x%B(%A+0x%lx): %s fixup for insn 0x%x is not supported in a non-shared link%B(%A+0x%lx): %s relocation against SEC_MERGE section%B(%A+0x%lx): %s relocation against external symbol "%s"%B(%A+0x%lx): %s used with TLS symbol %s%B(%A+0x%lx): %s used with non-TLS symbol %s%B(%A+0x%lx): Only ADD or SUB instructions are allowed for ALU group relocations%B(%A+0x%lx): Overflow whilst splitting 0x%lx for group relocation %s%B(%A+0x%lx): R_68K_TLS_LE32 relocation not permitted in shared object%B(%A+0x%lx): R_ARM_TLS_LE32 relocation not permitted in shared object%B(%A+0x%lx): Stabs entry has invalid string index.%B(%A+0x%lx): cannot emit fixup to `%s' in read-only section%B(%A+0x%lx): cannot handle %s for %s%B(%A+0x%lx): cannot reach %s, recompile with -ffunction-sections%B(%A+0x%lx): could not decode instruction for XTENSA_ASM_SIMPLIFY relocation; possible configuration mismatch%B(%A+0x%lx): could not decode instruction; possible configuration mismatch%B(%A+0x%lx): invalid instruction for TLS relocation %s%B(%A+0x%lx): reloc against `%s': error %d%B(%A+0x%lx): relocation offset out of range (size=0x%x)%B(%A+0x%lx): unexpected fix for %s relocation%B(%A+0x%lx): unresolvable %s relocation against symbol `%s'%B(%A+0x%lx): unresolvable relocation against symbol `%s'%B(%A+0x%lx):unexpected ARM instruction '0x%x' in TLS trampoline%B(%A+0x%lx):unexpected ARM instruction '0x%x' referenced by TLS_GOTDESC%B(%A+0x%lx):unexpected Thumb instruction '0x%x' in TLS trampoline%B(%A+0x%lx):unexpected Thumb instruction '0x%x' referenced by TLS_GOTDESC%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%B(%s): warning: interworking not enabled.
  first occurrence: %B: thumb call to arm
  consider relinking with --support-old-code enabled%B(%s+0x%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 %s 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 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 %d against local symbol%B, section %A: relocation %s with non-zero addend %d 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: %A+0x%lx: Direct jumps between ISA modes are not allowed; consider recompiling with interlinking enabled.%B: %s: invalid needed version %d%B: %s: invalid version %u (max %d)%B: '%s' accessed both as normal and thread local symbol%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: 0x%lx: fatal: R_SH_PSHA relocation %d not in range -32..32%B: 0x%lx: fatal: R_SH_PSHL relocation %d not in range -32..32%B: 0x%lx: fatal: reloc overflow while relaxing%B: 0x%lx: fatal: unaligned %s relocation 0x%lx%B: 0x%lx: fatal: unaligned branch target for relax-support relocation%B: 0x%lx: warning: R_SH_USES points to unrecognized insn 0x%x%B: 0x%lx: warning: bad R_SH_USES load offset%B: 0x%lx: warning: bad R_SH_USES offset%B: 0x%lx: warning: bad count%B: 0x%lx: warning: could not find expected COUNT reloc%B: 0x%lx: warning: could not find expected reloc%B: 0x%lx: warning: symbol in unexpected section%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 mismatch: linking %s module with previous %s modules%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: CALL15 reloc at 0x%lx not against global symbol%B: CALL16 reloc at 0x%lx not against global symbol%B: Can't find matching LO16 reloc against `%s' for %s at 0x%lx in section `%A'%B: Can't relax br (%s) to `%s' at 0x%lx in section `%A' with size 0x%lx (> 0x1000000).%B: Can't relax br at 0x%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: Corrupt size field in group section header: 0x%lx%B: Failed to add renamed symbol %s%B: Function descriptor relocation with non-zero addend%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 0x%lx not expected in executables%B: IMPORT AS directive for %s conceals previous IMPORT AS%B: Instruction set mismatch with previous modules%B: Invalid relocation type imported: %d%B: Malformed reloc detected for section %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: Relocations in generic ELF (EM: %d)%B: SB-relative relocation but __c6xabi_DSBT_BASE not defined%B: TLS local exec code cannot be linked into shared objects%B: TLS transition from %s to %s against `%s' at 0x%lx in section `%A' failed%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 mandatory EABI object attribute %d%B: Unknown relocation type %d
%B: Unknown section type in a.out.adobe file: %x
%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: 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: XMC_TC0 symbol `%s' is class %d scnlen %d%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' has line numbers but no enclosing section%B: `%s' in loader reloc but not loader sym%B: `ld -r' not supported with PE MIPS objects
%B: bad XTY_ER symbol `%s': class %d scnum %d scnlen %d%B: bad pair/reflo after refhi
%B: bad reloc address 0x%lx in section `%A'%B: bad reloc symbol index (0x%lx >= 0x%lx) for offset 0x%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: cannot create stub entry %s%B: change in gp: BRSGP %s%B: class %d symbol `%s' has no aux entries%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 -mrelocatable and linked with modules compiled normally%B: could not find output section %A for input section %A%B: could not find output section %s%B: could not read contents of section `%A'
%B: csect `%s' not in enclosing section%B: don't know how to handle OS specific section `%s' [0x%8x]%B: don't know how to handle allocated, application specific section `%s' [0x%8x]%B: don't know how to handle processor specific section `%s' [0x%8x]%B: don't know how to handle section `%s' [0x%8x]%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: endianness incompatible with that of the selected emulation%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: VFP11 veneer out of range%B: error: unaligned relocation type %d at %08x reloc %p
%B: error: unknown mandatory EABI object attribute %d%B: file class %s incompatible with %s%B: gp-relative relocation against dynamic symbol %s%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 0x%lx%B: illegal symbol index in reloc: %d%B: incompatible machine type. Output is 0x%x. Input is 0x%x%B: indirect symbol `%s' to `%s' is a loop%B: internal error in ihex_read_section%B: internal symbol `%s' in %B is referenced by DSO%B: internal symbol `%s' isn't defined%B: invalid SHT_GROUP entry%B: invalid link %lu for reloc section %s (index %u)%B: invalid relocation type %d%B: invalid string offset %u >= %lu for section `%s'%B: jump too far away
%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 0x%lx in section `%A'.%B: no group info for section %A%B: non-pic code with imm relocation against dynamic symbol `%s'%B: non-zero symbol index (0x%lx) for offset 0x%lx in section `%A' when the object file has no symbol table%B: pc-relative relocation against dynamic symbol %s%B: pc-relative relocation against undefined weak symbol %s%B: probably compiled without -fPIC?%B: protected symbol `%s' isn't defined%B: reloc %s:%d not in csect%B: reloc against a non-existant symbol index: %ld%B: relocation %s against %s `%s' can not be used when making a shared object%s%B: relocation %s against STT_GNU_IFUNC symbol `%s' has non-zero addend: %d%B: relocation %s against STT_GNU_IFUNC symbol `%s' isn't handled by %s%B: relocation %s against `%s' can not be used when making a shared object; recompile with -fPIC%B: relocation %s against symbol `%s' isn't supported in x32 mode%B: relocation %s against undefined %s `%s' can not be used when making a shared object%s%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 function `%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 function `%s' can not be used when making a shared object%B: relocation at `%A+0x%x' 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 %s: string table overflow at offset %ld%B: section `%A' can't be allocated in segment %d%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: size field is zero in Import Library Format header%B: speculation fixup to dynamic symbol %s%B: string not null terminated in ILF object file.%B: symbol `%s' has unrecognized csect type %d%B: symbol `%s' has unrecognized smclas %d%B: symbol `%s' required but not present%B: too many sections (%d)%B: tp-relative relocation against dynamic symbol %s%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 THUMB glue '%s' for `%s'%B: unable to find VFP11 veneer `%s'%B: unable to get decompressed section %A%B: unable to initialize commpress status for section %s%B: unable to initialize decommpress status for section %s%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 %d 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 [%d] section `%s' in group [%s]%B: unknown relocation type %d%B: unknown/unsupported relocation type %d%B: unrecognized relocation (0x%x) in section `%A'%B: unsupported relocation type %i%B: unsupported relocation type %i
%B: unsupported relocation type %s%B: unsupported relocation: ALPHA_R_GPRELHIGH%B: unsupported relocation: ALPHA_R_GPRELLOW%B: uses _-prefixed symbols, but writing file with non-prefixed symbols%B: uses different e_flags (0x%lx) fields than previous modules (0x%lx)%B: uses non-prefixed symbols, but writing file with _-prefixed symbols%B: version node not found for symbol %s%B: warning: COMDAT symbol '%s' does not match section name '%s'%B: warning: Empty loadable segment detected, is this intentional ?
%B: warning: allocated section `%s' not in segment%B: warning: duplicate line number information for `%s'%B: warning: illegal symbol index %ld in line numbers%B: warning: illegal symbol index %ld in relocs%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: selected VFP11 erratum workaround is not necessary for target architecture%B: warning: sh_link not set for section `%A'%B: warning: unknown EABI object attribute %d%B:%A%s exceeds overlay size
%B:%A: Warning: deprecated Red Hat reloc %B:%d: Bad checksum in S-record file
%B:%d: Unexpected character `%s' in S-record file
%B:%d: unexpected character `%s' in Intel Hex file%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%P: already_linked_table: %E
%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
%H __tls_get_addr lost arg, TLS optimization disabled
%H arg lost __tls_get_addr, TLS optimization disabled
%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: cannot emit dynamic relocations in read-only section
%H: cannot emit fixups in read-only section
%H: reloc against `%s' references a different segment
%H: reloc against `%s': %s
%H: relocation references symbol not defined in the module
%H: relocation to `%s+%v' may have caused the error above
%P%F: --relax and -r may not be used together
%P%X: can not read symbols: %E
%P%X: read-only segment has dynamic relocations.
%P: %B: cannot create stub entry %s
%P: %B: relocation %s is not supported for symbol %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 symbol %s
%P: %B: warning: relocation against `%s' in readonly section `%A'.
%P: %B: warning: relocation in readonly section `%A'.
%P: %H: %s reloc against `%s': error %d
%P: %H: %s reloc against local symbol
%P: %H: %s relocation references optimized away TOC entry
%P: %H: %s used with TLS symbol %s
%P: %H: %s used with non-TLS symbol %s
%P: %H: automatic multiple TOCs not supported using your crt files; recompile with -mminimal-toc or upgrade gcc
%P: %H: error: %s not a multiple of %u
%P: %H: non-zero addend on %s reloc against `%s'
%P: %H: relocation %s for indirect function %s unsupported
%P: %H: sibling call optimization to `%s' does not allow automatic multiple TOCs; recompile with -mminimal-toc or -fno-optimize-sibling-calls, or make `%s' extern
%P: %H: unresolvable %s relocation against symbol `%s'
%P: %s not defined in linker created %s
%P: %s offset too large for .eh_frame sdata4 encoding%P: DW_EH_PE_datarel unspecified for this architecture.
%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 %s
%P: copy reloc against `%s' requires lazy plt linking; avoid setting LD_BIND_NOW=1 or upgrade gcc
%P: dynamic variable `%s' is zero size
%P: dynreloc miscount for %B, section %A
%P: error in %B(%A); no .eh_frame_hdr table will be created.
%P: fde encoding in %B(%A) prevents .eh_frame_hdr table being created.
%P: linkage table error against `%s'
%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: warning: creating a DT_TEXTREL in a shared object.
%X%C: relocation to "%s" references a different segment
%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`%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 in overlay section%s(%s): relocation %d has invalid symbol index %ld%s: %s: reloc overflow: 0x%lx > 0xffff%s: 0x%v 0x%v
%s: Bad symbol definition: `Main' set to %s rather than the start address %s
%s: Error: multiple definition of `%s'; start of %s is set in a earlier linked file
%s: GAS error: unexpected PTB insn with R_SH_PT_16%s: Internal inconsistency error for value for
 linker-allocated global register: linked: 0x%lx%08lx != relaxed: 0x%lx%08lx
%s: Invalid relocation type exported: %d%s: LOCAL directive: Register $%ld is not a local register.  First global register is $%ld.%s: Malformed reloc detected for section %s%s: No core to allocate a symbol %d bytes long
%s: No core to allocate section name %s
%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: TOC reloc at 0x%x to symbol `%s' with no TOC entry%s: The target (%s) of an %s relocation is in the wrong section (%s)%s: XCOFF shared object when not producing XCOFF output%s: __gp does not cover short data segment%s: access beyond end of merged section (%ld)%s: address 0x%s out of range for Intel Hex file%s: base-plus-offset relocation against register symbol: %s in %s%s: base-plus-offset relocation against register symbol: (unknown) in %s%s: can not represent section `%s' in a.out object file format%s: can not represent section `%s' in oasys%s: can not represent section for symbol `%s' in a.out object file format%s: cannot allocate file name for file number %d, %d bytes
%s: cannot create stub entry %s%s: cannot link fdpic object file into non-fdpic executable%s: cannot link non-fdpic object file into fdpic executable%s: compiled as 32-bit object and %s is 64-bit%s: compiled as 64-bit object and %s is 32-bit%s: compiled with %s and linked with modules compiled with %s%s: compiled with %s and linked with modules that use non-pic relocations%s: could not write out added .cranges entries%s: could not write out sorted .cranges entries%s: directive LOCAL valid only with a register or absolute value%s: dynamic object with no .loader section%s: encountered datalabel symbol in input%s: error: unaligned relocation type %d at %08x reloc %08x
%s: illegal section name `%s'%s: internal error, internal register section %s had contents
%s: internal error, symbol table changed size from %d to %d words
%s: invalid mmo file: YZ of lop_end (%ld) not equal to the number of tetras to the preceding lop_stab (%ld)
%s: invalid mmo file: expected YZ = 1 got YZ = %d for lop_quote
%s: invalid mmo file: expected y = 0, got y = %d for lop_fixrx
%s: invalid mmo file: expected z = 1 or z = 2, got z = %d for lop_fixo
%s: invalid mmo file: expected z = 1 or z = 2, got z = %d for lop_loc
%s: invalid mmo file: expected z = 16 or z = 24, got z = %d for lop_fixrx
%s: invalid mmo file: fields y and z of lop_stab non-zero, y: %d, z: %d
%s: invalid mmo file: file name for number %d was not specified before use
%s: invalid mmo file: file number %d `%s', was already entered as `%s'
%s: invalid mmo file: initialization value for $255 is not `Main'
%s: invalid mmo file: leading byte of operand word must be 0 or 1, got %d for lop_fixrx
%s: invalid mmo file: lop_end not last item in file
%s: invalid mmo file: unsupported lopcode `%d'
%s: invalid start address for initialized registers of length %ld: 0x%lx%08lx
%s: invalid symbol table: duplicate symbol `%s'
%s: line number overflow: 0x%lx > 0xffff%s: no initialized registers; section length 0
%s: no such symbol%s: not implemented%s: not supported%s: object size does not match that of target %s%s: register relocation against non-register symbol: %s in %s%s: register relocation against non-register symbol: (unknown) in %s%s: relocatable link from %s to %s not supported%s: short data segment overflowed (0x%lx >= 0x400000)%s: string too long (%d chars, max 65535)%s: too many initialized registers; section length %ld
%s: undefined version: %s%s: unknown relocation type %d%s: unrecognized symbol `%s' flags 0x%x%s: unsupported relocation type 0x%02x%s: unsupported wide character sequence 0x%02X 0x%02X after symbol name starting with `%s'
%s: uses different e_flags (0x%lx) fields than previous modules (0x%lx)%s: uses different unknown e_flags (0x%lx) fields than previous modules (0x%lx)%s: version count (%ld) does not match symbol count (%ld)%s: warning core file truncated%s: warning: %s relocation against symbol `%s' from %s section%s: warning: %s relocation to 0x%x from %s section%s: warning: %s: line number overflow: 0x%lx > 0xffff%s: warning: GOT addend of %ld to `%s' does not match previous GOT addend of %ld%s: warning: PLT addend of %d to `%s' from %s section ignored%s: warning: illegal symbol index %ld in relocs%s: warning: symbol table too large for mmo, larger than 65535 32-bit words: %d.  Only `Main' will be emitted.
(at bit offset %u)
(descriptor)
(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*        , alias: %u
, ext fixup offset: %u, no_opt psect off: %u, subtype: %u (%s)
, symbol vector rva: .got section not immediately after .plt section32-bit double, 32bits gp relative relocation occurs for an external symbol64 bits *unhandled*
64-bit double, : %u.%u
: m32r instructions: m32r2 instructions: m32rx instructions; recompile with -fPIC<Unrecognised flag bits set><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 line %d
BFD %s internal error, aborting at %s line %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:
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)
Copyright Header
DIV usage mismatch between %B and %BDST__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: Bad abbrev number: %u.Dwarf Error: Can't find %s section.Dwarf Error: Could not find abbrev number %u.Dwarf Error: Invalid maximum operations per instruction.Dwarf Error: Invalid or unhandled FORM value: %u.Dwarf Error: Offset (%lu) greater than or equal to %s size (%lu).Dwarf Error: Unhandled .debug_line version %d.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 and 4 information.Dwarf Error: mangled line number section (bad file number).Dwarf Error: mangled line number section.EIHD: (size: %u, nbr blocks: %u)
Entry offset        = 0x%.8lx (%ld)
Error reading %s: %sError: %B has both the current and legacy Tag_MPextension_use attributesErrors encountered processing file %sException Directory [.pdata]Export Directory [.edata (or where ever we found it)]Export Flags             %lx
Export RVAFAILED to find previous HI16 relocFILES_VOLUMES    File format is ambiguousFile format not recognizedFile in wrong formatFile too bigFile truncatedFlag field          = 0x%.2x
Forwarder RVAGALAXY           GP relative relocation used when GP not definedGP relative relocation when _gp not definedGPDISP relocation did not find ldah and lda instructionsGlobal symbol table:
IDC - Ident Consistency check
IMAGE_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 inconsistency: remaining %u != max %u.
  Please report this bug.Invalid TARGET2 relocation type '%s'.Invalid bfd targetInvalid operationInvalid section index in ETIRJALX to a non-word-aligned addressLOGICAL_NAMES    Language Processor Name
Length              = 0x%.8lx (%ld)
Load Configuration DirectoryMEMORY_MANAGEMENTMIPS16 and microMIPS functions cannot call each otherMISC             MULTI_PROCESSING Mach-O header:
Major/Minor             %d/%d
Malformed archiveMaximum stack required is 0x%v
MeP: howto %d has type %dMemory exhaustedModule header
NETWORKS         NORMALName                 No errorNo more archived filesNo symbolsNonrepresentable 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 (substract)
OPR_USH (unsigned shift)
Object module NOT error-free !
Ordinal Base             %ld
Output file requires shared library `%s'
Output file requires shared library `%s.so.%s'
POSIX            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.
R_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 '%s' in file '%B'ReservedResource Directory [.rsrc]SDA relocation when _SDA_BASE_ not definedSECURITY         SEC_RELOC with no relocs in section %sSH Error: unknown reloc type %dSHELL            SHRFXDSHRPICSPSC - 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 DirectorySegments and Sections:
Size error in section %sSource 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_popStrides:
Symbol %s not defined for fixups
Symbol %s replaced by %s
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 existSystem call errorTLS relocation invalid without dynamic sectionsTOC overflow: 0x%lx > 0x10000; try -mminimal-toc when compilingTable Addresses
Thread Storage Directory [.tls]Time/Date stamp         %lx
Title Text Header
USRSTACKUnable to find equivalent output section for symbol '%s' from section '%s'Unexpected STO_SH5_ISA32 on local symbol is not handledUnexpected machine numberUnhandled OSF/1 core file section type %d
Unhandled relocation %sUnknown EGSD subtype %dUnknown basic type %dUnknown reloc %sUnknown reloc %s + %sUnknown symbol in command %sUnrecognized INPUT_SECTION_FLAG %s
Unrecognized TI COFF target id '0x%x'Unrecognized relocUnrecognized reloc type 0x%xUnsupported .stab relocationVOLATILE         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 regionsWarning, .pdata section size (%ld) is not a multiple of %d
Warning: %B does not support interworking, whereas %B doesWarning: %B is truncated: expected core file size >= %lu, found: %lu.Warning: %B supports interworking, whereas %B does notWarning: %B uses -mdouble-float, %B uses -mips32r2 -mfp64Warning: %B uses -msingle-float, %B uses -mdouble-floatWarning: %B uses -msingle-float, %B uses -mips32r2 -mfp64Warning: %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 soft float, %B uses single-precision hard floatWarning: %B uses unknown floating point ABI %dWarning: %B uses unknown small structure return convention %dWarning: %B uses unknown vector ABI %dWarning: %B uses vector ABI "%s", %B uses "%s"Warning: %B: Conflicting platform configurationWarning: %B: Unknown EABI object attribute %dWarning: 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: RX_SYM reloc with an unknown symbolWarning: Writing section `%s' to huge (ie negative) file offset 0x%lx.Warning: 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: type of symbol `%s' changed from %d to %d in %BWarning: writing archive was slow: rewriting timestamp
Writing updated armap timestamp[%u]: %u
[%u]: Lower: %u, upper: %u
[abi=16-bit int, [abi=32-bit int, [whose name is lost]\%B: Warning: Arm BLX instruction targets Arm function '%s'._bfd_vms_output_counted called with too many bytes_bfd_vms_output_counted called with zero bytesaddressaddress not word alignarsize: %u, a0: 0x%08x
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_dysymtab_symbol: unable to read %lu bytes at %lubfd_mach_o_read_symtab_symbol: name out of range (%lu >= %lu)bfd_mach_o_read_symtab_symbol: symbol "%s" is unsupported 'indirect' reference: setting to undefinedbfd_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 %lubfd_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 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 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]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'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: %B contains a reloc (0x%s) 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 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 FPA instructions, whereas %B does noterror: %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: 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: size of section %A is not multiple of address sizeerror: %B: unable to merge virtualization attributes with %Berror: 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 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 when _gp not definedhidden symbolignoring reloc %s
incr_linum(b): +%u
incr_linum_l: +%u
incr_linum_w: +%u
internal error: addend should be zero for R_LM32_16_GOTinternal error: dangerous errorinternal error: dangerous relocationinternal 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 symbolinvalid 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 0x%08lx (dest = 0x%08lx).ip2k linker: redundant page instruction at 0x%08lx (dest = 0x%08lx).ip2k relaxer: switch table header corrupt.ip2k relaxer: switch table without complete matching relocation information.line num  (len: %u)
linkable imagelinker stubs in %u group%s
  branch       %lu
  toc adjust   %lu
  long branch  %lu
  long toc adj %lu
  plt call     %luliteralliteral relocation occurs for an external symbolmep: no reloc for code %dmodbeg
modend
nativenon-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 relocnot enough GOT space for local GOT entriesnot mapping: data=%lx mapped=%d
not mapping: env var not set
note: '%s' is defined in DSO %B so try adding it to the linker command lineout of rangeoverflow after relaxationoverlay stub relocation overflowprivate flags = %lxprivate flags = %lx:private flags = %lx: private flags = %x:private flags = 0x%lxprivate flags = 0x%lx:prolog: bkpt address 0x%08x
protected symbolrecbeg: name: %.*s
recend
reference to a banked address [%lx:%04lx] in the normal address space at %04lxregrelocation `%s' not yet implementedrelocation 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
septyp, name: %.*s
set_abs_pc: 0x%08x
set_line_num(w) %u
set_line_num_b %u
set_line_num_l %u
small-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
source (len: %u)
standard data: %s
static procedure (no name)stub entry for %s cannot load .plt, dp offset = %ldstubs don't match calculated sizesymbolsystem version array information:
term(b): 0x%02xterm_w: 0x%04xtypspec (len: %u)
unable to find ARM glue '%s' for '%s'unable to find THUMB glue '%s' for '%s'unable to read in %s section from %Bunable to read unknown load command 0x%lxunable to write unknown load command 0x%lxunaligned bit-string of %s
uncertain calling convention for non-COFF symbolundefined %s reference in complex symbol: %sunhandled egsd entry type %u
unhandled emh subtype %u
unknownunknown ETIR command %dunknown errorunknown header byte-order value 0x%lxunknown line command %dunknown operator '%c' in complex symbolunknown source command %dunsupported STA cmd %sunsupported relocunsupported reloc typeunsupported relocationunsupported relocation between data/insn address spacesusing multiple gp valuesv850 architecturev850e architecturev850e1 architecturev850e2 architecturev850e2v3 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 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: local symbol `%s' has no sectionwarning: %s exceeds section size
warning: %s has a corrupt string table index - ignoringwarning: %s overlaps %s
warning: %s section has zero sizewarning: .pdata section size (%ld) is not a multiple of %d
warning: attempt to export undefined symbol `%s'warning: call to non-function symbol %s defined in %Bwarning: 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 %syou are not allowed to define %s in a scriptProject-Id-Version: bfd-2.22.90
Report-Msgid-Bugs-To: bug-binutils@gnu.org
POT-Creation-Date: 2011-10-25 11:58+0100
PO-Revision-Date: 2012-07-28 10:47+0200
Last-Translator: Frédéric Marchal <fmarchal@perso.be>
Language-Team: French <traduc@traduc.org>
Language: fr
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms:  nplurals=2; plural=(n > 1);
X-Generator: Lokalize 1.4
   Table d'adresse d'exportation             Table d'adresses d'exportation         %08lx
   Table des noms de pointeurs             Table des ordinals                 Table [Nom pointeur/Nombre ordinal]    %08lx
   code-base %08lx tab. des entrées (chargeable/actuel) %08lx/%08lx
   relocalisation %4d décalage %4x [%4lx] %s    vma:  Hint/Ord Membre      Lien
 
   Nom DLL: %s
 
 
Fichier de base des réadressages PE (contenus interprétés de la section .reloc)
 
      Dernier+1 symbole: %-7ld   Type:  %s
      Dernier+1 symbole: %ld
      Premier symbole: %ld
      Symbole local: %ld
      Type: %s
      enum; Dernier+1 symbol: %ld
      struct; Symbole Fin+1: %ld
      union; Dernier+1 symbole: %ld
 offset tableau version: %u
 
Caractéristiques 0x%x
 
Section dynamique:
 
En-tête auxiliaire de l'exec
 
Table d'adresses d'exportation -- base de nombre ordinal %ld
 
Descripteur de fonction localisé Ã  l'adresse de départ: %04lx
 
Pas de section reldata! Descripteur de fonction pas décodé.
 
Début de partition[%d] = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }
 
En-tête de programme:
 
Taille de la pile pour les fonctions.  Annotations: Â«*» pile max, Â«t» appel de queue
 
Les tables d'exportation (contenus interprété de la section %s)
 
 
La table de fonctions (interprétation du contenu de la section .pdata)
 
Les tables d'importation (contenus interprété de la section %s)
 
Il y a un premier Â«thunk», mais la section le contenant ne peut Ãªtre repérée
 
Il y a une table d'exportation dans %s Ã  0x%lx
 
Il y a une table d'exportation dans %s, mais elle ne rentre pas dans la section
 
Il y a une table d'exportation, mais la section la contenant n'a pu Ãªtre repérée
 
Il y a une table d'importation dans %s Ã  0x%lx
 
Il y a une table d'importation, mais la section la contenant ne peut Ãªtre repérée
 
Références de version:
 
Définitions des versions:
 
Adresse virtuelle: %08lx taille des morceaux %ld (0x%lx) nombre de correctifs %ld
 
Table [Ordinal/Nom de pointeur]
 
En-têtes ppcboot:
        pc: 0x%08x
    cmd %u *non gérée*
    adresse: 0x%08x, taille: %u
    fanions: %u, adresse: 0x%08x, pd-adresse: 0x%08x
   nom global: %.*s
   index de liaison: %u, instruction de remplacement: 0x%08x
    nom: %.*s
    pc: 0x%08x
    pc: 0x%08x ligne: %5u
   index psect 1: %u, offset 1: 0x%08x %08x
   index psect 2: %u, offset 2: 0x%08x %08x
   index psect 3: %u, offset 3: 0x%08x %08x
   psect: %u, offset: 0x%08x %08x
    nom routine : %.*s
   %02u    %s%s %s
   (type: %3u, taille: 4+%3u):    cmd %u *non gérée*
   alignement : 2**%u
   alloc (long)  : %u (0x%08x)
  alloc (long): %u (0x%08x)
   ident ascii   : %.*s
   ident binaire : 0x%08x
   carte des bits: 0x%08x (occurrence: %u):
   adresse code: 0x%08x
   date de compilation : %.17s
   compilateur  : %.*s
   code de complétion: %u
   copyright: %.*s
   declfile: long: %u, fanions: %u, id fichier: %u
   deflines %u
   nom d'entité  : %.*s
   point d'entrée: 0x%08x
   sévérité d'erreur: %x
   fichier: %.*s
   nom fichier: %.*s
   fanions       : 0x%08x   fanions    : 0x%04x   fanions: %d, language: %u, majeur: %u, mineur: %u
   fanions: 0x%04x   formfeed
   correspondance id : %x
   offset d'image: 0x%08x
   nom du language: %.*s
   index liaison: %u, globale: %.*s
   index liaison: %u, nom procédure: %.*s
   index liaison: %u, procédure: %.*s
   index liaison: %u, psect: %u, offset: 0x%08x %08x
   taille max d'enregistrement: %u
   nom du module       : %.*s
   nom du module: %.*s
   version du module   : %.*s
   nom           : %.*s
   nom         : %.*s
   nom        : %.*s
   nombre de paires de liaisons cond: %u
   nom d'objet   : %.*s
   offset: 0x%08x, val: 0x%08x
   descr proc : 0x%08x
   index psect : %u
   index psect pour point d'entrée: %u
   index psect: %u
   offset psect: %u
   offset psect: 0x%08x
   rms: cdt: 0x%08x %08x, ebk: 0x%08x, ffb: 0x%04x, rfo: %u
   setfile %u
   setlnum %u
   setrec %u
   signature: %.*s
   niveau de structure: %u
   offset vecteur symbole: 0x%08x
   offset symvec : 0x%08x
   titre: %.*s
   fanions de transfert d'adr: 0x%02x
   psect transert adr: %u
   adresse de transert: 0x%08x
   vecteur     : 0x%08x
   masque de version: 0x%08x
  %s (long=%u+%u):
  %s: 0x%v
  %u: taille: %u, fanions: 0x%02x, nom: %.*s
  EEOM (long=%u):
  EGSD (long=%u):
  entrée EGSD %2u (type: %u, long: %u):   EMH %u (long=%u):   base: 0x%08x %08x, taille: 0x%08x, prot: 0x%08x   base_va : 0x%08x
  décompte des bits: %u, adr base: 0x%08x
  appels:
  chgprtoff : %5u
  codeadroff: %5u, lpfixoff  : %5u
  lien correctif: 0x%08x %08x
  fanions: 0x%08x
  lien iaf : 0x%08x %08x
  image %u (%u entrées)
  image %u (%u entrées), offsets:
  lppsbfixoff: %5u
  début psect: 0x%08x, longueur: %u
  qdotadroff: %5u, ldotadroff: %5u
  qrelfixoff: %5u, lrelfixoff: %5u
 requis par %s:
  shlextra  : %5u, permctx   : %5u
  shlstoff  : %5u, shrimgcnt : %5u
  taille : %u
 #: Nom segment      Nom section      Adresse
 %08x 0x%08x 64B <Version EABI non reconnue> BPAGE: %u COM COMM Changement de protection (%u entrées):
 Correctifs des références des adresses de code:
 DEF EXE Première adresse : 0x%08x 0x%08x
 Quatrième adresse: 0x%08x 0x%08x
 GBL Séquence du code de liants LIB Correctifs des références des paires de liaison:
 NOMOD NORM OVR PIC QVAL RD REL Registre a restauré le millicode Registre a préservé le millicode SHR Deuxième adresse : 0x%08x 0x%08x
 Images partageables:
 Image partagée   : 0x%08x 0x%08x
 Troisième adresse: 0x%08x 0x%08x
 UNI VEC VECEP FAIBLE WRT [doubles de 64 bits] [BE8] [format flottant FPA] [LE8] [format flottant Maverick] [format flottant VFP] [Version1 EABI] [Version2 EABI] [Version3 EABI] [Version4 EABI] [Version5 EABI] [abi inconnu] [abi=64] [abi=EABI32] [abi=EABI64] [abi=N32] [abi=O32] [abi=O64] [position absolue] [d-float] [dsp] [symboles dynamiques utilisent un index de segment] [fix dep] [valeurs en virgule flottante passées dans des registres de valeurs en virgule flottante] [valeurs en virgule flottante passées dans des registres de valeurs entières] [g-float] [a des points d'entrées] [inter-réseautage autorisé] [fanion d'inter-réseautage n'a pas Ã©té initialisé] [inter-réseautage non supporté] [inter-réseautage supporté] [mapping de symboles précèdes les autres] [memory=bank-model] [memory=flat] [nouvel ABI] [aucun jeu abi] [nonpic] [aucun mode 32 bits] [ancien ABI] [pic] [position indépendante] [exécutables relocalisés] [virgule flottante logiciel] [table des symboles triés] [symboles sont préfixés par Â« _ Â»] [ISA inconnu] [table des symboles non triés] [v10 et v32] [v32] GST corrompu
 soustypecpu: %08lx
 typecpu    : %08lx (%s)
 table des modules de debug: vbn: %u, taille: %u
 table des symboles de debug : vbn: %u, taille: %u (0x%x)
 typefichier: %08lx (%s)
 correctif info rva:  fanions   : %08lx ( fanions: 0x%04x table des symboles globale: vbn: %u, enregistrements: %u
 ident: 0x%08x, nom: %.*s
 ident: 0x%08x, ver sys: 0x%08x, apparier ctrl: %u, taille vectsym: %u
 ident construction image: %.*s
 ident image       : %.*s
 nom de l'image    : %.*s
 type image: %u (%s) décompte E/S img: %u, nbr canaux: %u, priv req: %08x%08x
 heure de liaison  : %s
 fanions lieur: %08x: ident lieur       : %.*s
 correctifs des références mots longs Â«.address»:
 correctifs du réadressage des mots longs:
 magique    : %08lx
 id majeur: %u, id mineur: %u
 offset du module: 0x%08x, taille: 0x%08x, (%u psects)
 ncmds     : %08lx (%lu)
 offsets: isd: %u, actif: %u, debug symbol: %u, id image: %u, patch: %u
 correctifs des références quad-mots Â«.address»:
 correctifs du réadressage des quad-mots:
 réservé   : %08x
 section: base: 0x%08x%08x taille: 0x%08x
 taillecmds: %08lx
 type: %3u, long: %3u (à 0x%08x):  type d'enregistrement EOBJ %u non supporté
 vbn: %u, pfc: %u, matchctl: %u type: %u ( vma:            Début Adresse    Fin Adresse      Unwind Info
 vma:        Début    Fin      EH       EH       FinProlog  Exception
             Adresse  Adresse  Handler  Données  Adresse    Masque
 vma:        Début    Long.    Long.    Fanions  Gestion.  EH
             Adresse  Prolog.  Fonction 32b exc  Exception Données
 vma:            Hint    Temps     Avant    DLL       Premier
                 Table   Estampil. Chaîne   Nom       Thunk
#<Code d'erreur invalide>%A a, Ã  la fois, des sections ordonnées [«%A» dans %B] et désordonnées [«%A» dans %B]%A a, Ã  la fois, des sections ordonnées et désordonnées%A:0x%v le lrlive .brinfo (%u) diffère de celui de l'analyse (%u)
%A:%0x%v pas trouvé dans la table de fonctions
%B (%s): Fanion de section %s (0x%x) ignoré%B et %B sont pour des configurations différentes%B et %B sont pour des noyaux différents%B contient du code CRIS v32 incompatible avec les objets précédents%B contient du code non CRIS v32 incompatible avec les objets précédents%B utilise les deux attributs Tag_MPextension_use actuel et hérité%B ne peut pas définir %s%B section %A dépasse la taille du groupe d'ébauche%B le symbole numéro %lu fait référence Ã  une section SHT_SYMTAB_SHNDX inexistante%B(%A): erreur: appel Ã  la fonction non définie Â«%s»%B(%A): erreur interne: réadressage dangereux%B(%A): erreur interne: hors limite%B(%A): erreur interne: erreur inconnue%B(%A): erreur interne: réadressage non supporté%B(%A): table de propriété invalide%B(%A): réadressage PID %s non sûr Ã  0x%08lx (sur %s dans %s)%B(%A): attention: accès non aligné au symbole Â«%s» dans la zone des petites données%B(%A+0x%B(%A+0x%lx): correction %s pour insn 0x%x n'est pas supporté dans un lien non partagé%B(%A+0x%lx): %s réadressage vers une section SEC_MERGE%B(%A+0x%lx): %s réadressage vers le symbole externe Â«Â %s »%B(%A+0x%lx): %s utilisé avec le symbole TLS %s%B(%A+0x%lx): %s utilisé avec le symbole non-TLS %s%B(%A+0x%lx): Seuls ADD ou SUB sont permis dans les réadressages du groupe ALU%B(%A+0x%lx): Débordement en scindant 0x%lx pour le réadressage du groupe %s%B(%A+0x%lx): réadressage R_68K_TLS_LE32 pas permis dans un objet partagé%B(%A+0x%lx): réadressage R_ARM_TLS_LE32 pas permis dans un objet partagé%B(%A+0x%lx): Entrée des Ã©bauches a un indexe de chaîne invalide%B(%A+0x%lx): impossible d'apporter des corrections Ã  Â«%s» dans une section en lecture seule%B(%A+0x%lx): ne sait pas traiter %s pour %s%B(%A+0x%lx): ne peut atteindre %s, recompilez avec -ffunction-sections%B(%A+0x%lx): l'instruction ne peut pas Ãªtre décodée pour un réadressage XTENSA_ASM_SIMPLIFY; la configuration est peut-être erronée%B(%A+0x%lx): l'instruction ne peut pas Ãªtre décodée; la configuration est peut-être erronée%B(%A+0x%lx): instruction invalide pour le réadressage TLS %s%B(%A+0x%lx): relocalisation vers Â«%s»: erreur %d%B(%A+0x%lx): décalage de réadressage hors limite (taille=0x%x)%B(%A+0x%lx): correction inattendue pour le réadressage %s%B(%A+0x%lx): réadressage %s sans solution vers le symbole Â«Â %s »%B(%A+0x%lx): réadressage sans solution vers le symbole Â«Â %s »%B(%A+0x%lx): instruction ARM Â«Â 0x%x » inattendue dans le trampoline TLS%B(%A+0x%lx): instruction ARM '0x%x' inattendue référencée par TLS_GOTDESC%B(%A+0x%lx): instruction Thumb Â«Â 0x%x » inattendue dans le trampoline TLS%B(%A+0x%lx): instruction Thumb Â«Â 0x%x » inattendue référencée par TLS_GOTDESC%B(%A+0x%v): appel Ã  la section non exécutable %B(%A), analyse incomplète
%B(%s): attention: l'inter-réseautage n'est pas activé.
  première occurrence: %B: appel ARM vers repère%B(%s): attention: l'inter-réseautage n'est pas activé.
  première occurrence: %B: appel de repère vers ARM%B(%s): attention: l'inter-réseautage n'est pas activé.
  première occurrence: %B: appel arm au repère%B(%s): attention: l'inter-réseautage n'est pas activé.
  première occurrence: %B: appel de repère vers arm%B(%s): attention: l'inter-réseautage n'est pas activé.
  première occurrence: %B: appel arm au repère
  reliez avec --support-old-code activé%B(%A+0x%lx): réadressage %s sans solution vers le symbole Â«Â %s »%B, section %A:
  réadressage de %s pas valable dans un objet partagé; typiquement un mélange dans les options. Recompilez avec -fPIC%B, section %A:
  réadressage de %s ne devrait pas Ãªtre utilisé dans un objet partagé; recompilez avec -fPIC%B, section %A:
  l'objet compatible v10/v32 %s ne peut pas contenir de réadressage PIC%B, section %A: Pas de PLT pour réadresser %s sur le symbole Â«Â %s »%B, section %a: Pas de PLT ni de GOT pour réadresser %s sur le symbole Â«Â %s »%B, section %A: réadressage de %s a une référence non définie vers Â«Â %s », peut-être un mélange dans les déclarations ?%B, section %A: le réadressage de %s n'est pas permis pour le symbole global: Â«Â %s »%B, section %A: réadressage de %s n'est pas permis pour le symbole Â«Â %s » qui est défini en dehors du programme, peut-être un mélange dans les déclarations ?%B, section %A: réadressage de %s sans GOT%B, section %A: réadressage de %s avec un opérande non nul %d sur le symbole local%B, section %A: réadressage de %s avec un opérande non nul %d sur le symbole Â«Â %s »%B, section %A: réadressage %s non résolu sur le symbole Â«Â %s »%B, section Â«%A», vers le symbole Â«%s»:
  réadressage de %s ne devrait pas Ãªtre utilisé dans un objet partagé; recompilez avec -fPIC%B: relocalisation !samegp vers le symbole sans .prologue: %s%B: %A+0x%lx: Les sauts directs entre modes ISA ne sont pas permis; envisagez de recompiler avec l'interliage activé.%B: %s: version requise invalide %d%B: %s: version invalide %u (max %d)%B: symbole Â«%s» accédé Ã  la fois comme normal et comme local au thread%B: le sous-segment .got excède 64K (taille %d)%B: .opd n'est pas un tableau régulier d'entrées opd%B: section .preinit_array n'est pas permise dans DSO%B: 0x%lx: fatal: réadressage R_SH_PSHA %d pas dans l'intervalle -32..32%B: 0x%lx: fatal: réadressage R_SH_PSHL %d n'est pas dans l'intervalle -32..32%B: 0x%lx: erreur fatale: débordement de relocalisation lors des relâches%B: 0x%lx: fatal: réadressage %s non aligné 0x%lx%B: 0x%lx: fatal: cible de branchement non alignée pour un réadressage de type relax-support%B: 0x%lx: attention: R_SH_USES pointe vers un insn inconnu 0x%x%B: 0x%lx: attention: mauvais décalage de chargement R_SH_USES%B: 0x%lx: attention: mauvais décalage pour R_SH_USES%B: 0x%lx: attention: mauvais décompte%B: 0x%lx: attention: ne peut repérer le compteur de relocalisation attendu%B: 0x%lx: attention: ne peut repérer la relocalisation attendue%B: 0x%lx: attention: symbole dans une section inattendue%B: réadressage @gprel vers le symbole dynamique %s%B: branchement @internal vers le symbole dynamique %s%B: réadressage @pcrel vers le symbole dynamique %s%B: ABI est incompatible avec celui sélectionné pour l'émulation%B: ABI ne concorde pas: Ã©dition de lien du module %s avec les modules précédents %s%B: ASE ne concorde pas: Ã©dition de lien du module %s avec les modules précédents %s%B: L'architecture ne concorde pas avec les modules précédents%B: les images BE8 ne sont valables qu'en mode gros boutiste.%B: Mauvais enregistrement de réadressage importé: %d%B: appel CALL15 de relocalisation Ã  0x%lx n'est pas appliqué sur un symbole global%B: appel CALL16 de relocalisation Ã  0x%lx qui n'est pas pour un symbole global%B: Ne trouve pas de relocalisation LO16 correspondante vers Â«%s» pour %s Ã  0x%lx de la section Â«%A»%B:Ne peut pas relâcher br (%s) sur Â«%s» Ã  0x%lx dans la section Â«%A» avec la taille 0x%lx (> 0x1000000).%B: Ne peut relâcher br Ã  0x%lx dans la section Â«%A». Veuillez utiliser brl ou un branchement indirect.%B: Les binaires compressés pour Alpha ne sont pas supportés.
   Utilisez les options du compilateur ou objZ pour produire des binaires non compressés.%B: Ne peut lier ensemble les objets %s et %s.%B: Champ de taille corrompu dans l'en-tête du groupe de section: 0x%lx%B: Ã‰chec de l'ajout du symbole renommé %s%B: Descripteur de fonction réadressé avec un opérande non nul%B: débordement GOT: Nombre de réadressages avec des offsets de 8 ou 16 bits > %d%B: débordement GOT: Nombre de réadressages avec des offsets de 8 bits > %d%B: relocalisation GOT Ã  0x%lx pas attendue dans les executables%B: la directive IMPORT AS de %s masque l'IMPORT AS précédent%B: jeu d'instructions ne concorde par avec les modules précédents%B: Type de réadressage importé invalide: %d%B: relocalisation mal composée détectée dans la section %s%B: Pas suffisamment d'espace pour les en-têtes du programme, essayer l'option -N%B: Seuls les registres %%g[2367] peuvent Ãªtre déclarés en utilisant les registres STT_REGISTER%B: type de machine reconnue mais non traitée (0x%x) dans l'archive da la librairie de formats d'importation%B: Réadressage %s (%d) n'est pas actuellement supporté.
%B: Réadressages en format ELF générique (EM: %d)%B: réadressage relatif Ã  SB mais __c6xabi_DSBT_BASE n'est pas défini%B: code exécutable local TLS ne peut Ãªtre lié en objets partagés%B: Ã‰chec de la transition TLS de %s vers %s sur Â«%s» Ã  0x%lx dans la section Â«%A»%B: La première section dans le segment PT_DYNAMIC n'est pas la section .dynamic%B: la cible (%s) du réadressage %s est dans la mauvaise section (%A)%B: Trop de sections: %d (>= %d)%B: Impossible de trier les relocalisations - plusieurs tailles rencontrées%B: Impossible de trier les relocalisations - leur taille est inconnue%B: type d'importation non traitée; %x%B: L'attribut d'objet EABI obligatoire %d est manquant%B: Type de réadressage %d inconnu
%B: Type de section inconnu dans le fichier a.out.adobe: %x
%B: Commande .directive non reconnue: %s%B: type de nom d'importation non reconnu: %x%B: type d'importation non reconnu; %x%B: type de machine non reconnu (0x%x) dans l'archive de librairie de formats d'importation%B: Classe de stockage %d non reconnue pour %s symbole Â«%s»%B: Attention: Ignore le fanion de section IMAGE_SCN_MEM_NOT_PAGED dans la section %s%B: Attention: instruction de repérage BLX vise la fonction de repérage Â«%s».%B: Attention: mauvaise Â«%s» taille d'option %u plus petite que son en-tête%B: Attention: ne peut pas déterminer la fonction cible de la section d'ébauche Â«%s»%B: XMC_TC0 symbol Â«%s» est la classe %d scnlen %d%B: Â«%s» accédé Ã  la fois comme symbole FDPIC et comme symbole local au thread%B: Â«%s» accédé Ã  la fois comme symbole normal et comme symbole FDPIC%B: Â«%s» accédé Ã  la fois comme symbole normal et comme symbole locale au thread%B: Â«%s» contient des numéros de lignes mais de section d'encadrement%B: Â«%s» est dans le chargeur de relocalisation mais pas dans celui des symboles%B: Â«ld -r» non supporté avec les objets PE MIPS
%B: symbole XTY_ER Â«%s» erroné: classe %d scnum %d scnlen %d%B: pairage erronée pair/reflo après refhi
%B: mauvaise adresse de relocalisation 0x%lx dans la section Â«%A»%B: mauvais index de relocalisation du symbole (0x%lx >= 0x%lx) pour l'offset 0x%lx de la section Â«%A»%B: nom de section de réadressage erroné Â«Â %s »%B: longuer erronée de section dans ihex_read_section%B: mauvaise taille de la table des chaînes %lu%B: symbole index erroné: %d%B: ne peut créer l'entrée de l'ébauche %s%B: changé dans le GP: BRSGP %s%B: classe %d symbole Â«%s» n'a pas d'entrée auxiliaire%B: compilé pour un système Ã  64 bits et la cible est de 32 bits%B: compilé pour un système Ã  octets de poids fort alors que la cible
est un système Ã  octets de poids faible%B: compilé pour un système Ã  octets de poids faible alors que la cible
est un système Ã  octets de poids fort%B: compilé normalement et fait l'édition de lien avec les modules compilés avec -mrelocatable%B: compilé avec -mrelocatable et fait l'édition de lien avec les modules compilés normalement%B: ne peut repérer la section de sortie %A pour la section d'entrée %A%B: ne peut repérer la section de sortie %s%B: ne peut pas lire le contenu de la section Â«Â %A »
%B: csect Â«%s» n'est pas dans un section d'encadrement%B: je ne sais pas comment traiter la section Â«%s» [0x%8x] spécifique au système d'exploitation%B: je ne sais pas comment traiter la section Â«%s» [0x%8x] allouée et spécifique Ã  l'application%B: je ne sais pas comment traiter la section Â«%s» [0x%8x] spécifique au processeur%B: je ne sais pas comment traiter la section Â«%s» [0x%8x]%B: réadressage relatif au dtp vers le symbole dynamique %s%B: Ã©bauche d'exportation en double %s%B: section dupliquée Â«Â %A » a des contenus différents
%B: section dupliquée Â«Â %A » avec des tailles différentes
%B: système de poids fort ou faible incompatible avec celui sélectionné pour l'émulation%B: erreur: L'ébauche d'erratum du Cortex A8 est allouée Ã  un emplacement peu sûr%B: erreur: L'ébauche d'erratum du Cortex A8 est hors limite (fichier d'entrée trop grand)%B: erreur: vernis VFP11 hors limite%B: erreur: type de réadressage %d non aligné Ã  %08x réadressé %p
%B: erreur: l'attribut d'objet EABI obligatoire %d est manquant%B: classe de fichier %s incompatible avec %s%B: réadressage relatif au gp vers le symbole dynamique %s%B: symbole caché Â«Â %s » dans %B est référencé par DSO%B: symbole caché Â«Â %s » n'est pas défini%B: ignore les sections dupliquées Â«Â %A »
%B: type de réadressage %d illégal Ã  l'adresse 0x%lx%B: symbole index illégal dans la relocalisation: %d%B: type de machine incompatible. Sortie est 0x%x. Entrée est 0x%x%B: symbole indirect Â«%s» vers Â«%s» est une boucle%B: erreur interne dans ihex_read_section%B: symbole interne Â«Â %s » dans %B est référencé par DSO%B: symbole interne Â«Â %s » n'est pas défini%B: entrée SHT_GROUP invalide%B: lien invalide %lu pour la section de relocalisation %s (index %u)%B: type de réadressage %d invalide%B: chaîne de décalage invalide %u >= %lu pour la section Â«%s»%B: le saut va trop loin
%B: Ã©dition de liens du module %s avec les modules précédents %s%B: Ã©dition de liens de code 32 bits avec du code 64 bits%B: Ã©dition de liens entre fichiers 64 bits et fichiers 32 bits%B: Ã©dition de liens spécifiques pour UltraSPARC avec du code spécifique HAL%B: Ã©dition de liens entre fichiers auto-pic et fichiers non-auto-pic%B: Ã©dition de liens entre des fichiers Ã  octets de poids fort et des fichiers Ã  octets de poids faible%B: Ã©dition de liens entre fichiers constant-gp et fichiers non-constant-gp%B: fichiers liés compilés pour des entiers de 16 bits (-mshort) et d'autres pour des entiers de 32 bits%B: fichiers liés compilés pour des doubles de 32 bits (-fshort-double) et d'autres pour des doubles de 64 bits%B: certains fichiers liés compilés pour HCS12 avec d'autres compilés pour HC12%B: Ã©dition de liens pour des fichiers Ã  octets de poids faible avec des fichiers Ã  octets de poids fort%B: liaison de code non-pic dans un exécutable Ã  position indépendante%B: Ã©dition de liens trap-on-NULL-dereference avec des fichiers non-trapping%B: chargeur de relocalisation dans la section %A en lecture seule%B: chargeur de relocalisation dans une section non reconnnue Â«%s»%B: symbole local Â«Â %s » dans %B est référencé par DSO%B: XTY_LD Â«%s» mal placé%B: setion TLS manquante pour le réadressage %s vers Â«Â %s » Ã  0x%lx dans la section Â«Â %A ».%B: aucune info de groupe pour la section %A%B: code non pic avec des réadressages imm vers le symbole dynamique Â«Â %s »%B: index de symbole non nul (0x%lx) pour l'offset 0x%lx de la section Â«%A» quand le fichier objet n'a pas de table de symboles%B: réadressage relatif au PC vers le symbole dynamique %s%B: réadressage relatif au PC vers le symbole faible non défini %s%B: probablement compilé sans -fPIC?%B: symbole protégé Â«Â %s » n'est pas défini%B: relocalisation %s:%d n'est pas dans csect%B: relocalisation par rapport Ã  un indexe de symbole inexistant: %ld%B: réadressage %s vers %s Â«Â %s » ne peut pas Ãªtre utilisé en créant un objet partagé %s%B: le réadressage %s vers le symbole STT_GNU_IFUNC Â«Â %s » a l'opérande non nul: %d%B: le réadressage %s sur le symbole STT_GNU_IFUNC Â«Â %s » n'est pas géré par %s%B: réadressage de %s en vertu de Â«Â %s » ne peut Ãªtre utilisé lors de la création d'un objet partagé; recompilez avec -fPIC%B: le réadressage %s sur le symbole Â«Â %s » n'est pas supporté en mode x32%B: réadressage %s vers le %s non défini Â«Â %s » ne peut pas Ãªtre utilisé en créant un objet partagé %s%B: réadressage de %s ne peut Ãªtre utilisé lors de la création d'un objet partagé; recompilez avec -fPIC%B: réadressage %s ne peut Ãªtre utilisé lors de la création d'un objet partagé%B: réadressage R_386_GOTOFF vers la fonction protégée Â«Â %s » ne peut pas Ãªtre utilisé lors de la création d'un objet partagé%B: réadressage R_386_GOTOFF sur le symbole %s Â«Â %s » non défini ne peut pas Ãªtre utilisé lors de la création d'un objet partagé%B: réadressage R_X86_64_GOTOFF64 vers la fonction protégée Â«Â %s » ne peut pas Ãªtre utilisé lors de la création d'un objet partagé%B: réadressage Ã  Â«Â %A+0x%x » fait référence au symbole Â«Â %s » avec un opérande non nul%B: taille du réadressage ne concorde pas dans %B section %A%B: relocalisations dans la section Â«%A» qui est vide%B: section %A avec lma %#lx ajustée Ã  %#lx%B: section %s: débordement de la table de chaînes Ã  l'offset %ld%B: la section Â«%A» ne peut pas Ãªtre allouée dans le segment %d%B: sh_link [%d] n'est pas correct dans la section Â«%A»%B: le sh_link de la section Â«%A» pointe vers la section abandonnée Â«%A» de Â«%B»%B: le sh_link de la section Â«%A» pointe vers la section supprimée Â«%A» de Â«%B»%B: taille du champ est zéro dans l'en-tête de la librairie de formats d'importation%B: spéculation d'ajustements vers le symbole dynamique %s%B: chaîne n'est pas terminée par un zéro dans le fichier objet ILF.%B: symbole Â«%s» a un type csect %d non reconnu%B: symbole Â«%s» a une classe smclas %d non reconnue%B: symbole Â«%s» requis mais absent%B: trop de sections (%d)%B: réadressage relatif au tp vers le symbole dynamique %s%B: impossible de remplir DataDictionary[12] car .idata$5 est manquant%B: impossible de remplir DataDictionary[1] car .idata$2 est manquant%B: impossible de remplir DataDictionary[1] car .idata$4 est manquant%B: impossible de remplir DataDictionary[9] car __tls_used est manquant%B: impossible de remplir DataDictionary[PE_IMPORT_ADDRESS_TABLE (12)] car .idata$6 est manquant%B: impossible de remplir DataDictionary[PE_IMPORT_ADDRESS_TABLE(12)] car .idata$6 est manquant%B: incapable de repérer le liant ARM Â«%s» pour Â«%s»%B: incapable de repérer le REPÈRE de liant Â«%s» pour Â«%s»%B: incapable de trouver le vernis VFP11 Â«%s»%B: impossible d'obtenir la section décompressée %A%B: impossible d'initialiser le statut de compression de la section %s%B: impossible d'initialiser le statut de décompression de la section %s%B: référence au symbole non défini Â«%s»%B: symbole Â«%s» indéfini dans la section .opd%B: symbole indéfini sur le réadressage R_PPC64_TOCSAVE%B: type ATN %d inattendu dans la partie externe%B: attention: redéfinition inattendue du symbole indirect avec version Â«%s»%B: type de relocalisation %u inattendu dans la section .opd%B: type inattendu après ATN%B: réadressage dynamique non traité vers %s%B: non implanté %s
%B: enregistrement ATI non implanté %u pour le symbole %u%B: [%d] inconnu dans la section Â«%s» du groupe [%s]%B: type de réadressage %d inconnu%B: type de réadressage %d inconnu ou non supporté%B: réadressage inconnu (0x%x) dans la section Â«Â %A »%B: type de réadressage %i non supporté%B: type de réadressage %i non supporté
%B: type de réadressage %s non supporté%B: type de réadressage non supporté: ALPHA_R_GPRELHIGH%B: type de réadressage non supporté: ALPHA_R_GPRELLOW%B: utilise des symboles préfixés par _ mais Ã©crits les symboles sans préfixes dans le fichier%B: utilise des champs e_flags (0x%lx) différents des modules précédents (0x%lx)%B: utilise des symboles sans préfixe mais ajoute le préfixe _ aux symboles dans le fichier%B: version du nœud pas trouvée pour le symbole %s%B: attention: symbole COMDAT Â«%s» ne concorde par avec le nom de section Â«%s»%B: attention: segment chargeable vide détecté, est-ce intentionnel ?
%B: attention: section allouée Â«%s» n'est pas dans le segment%B: attention: information de numéro de ligne dédoublée pour Â«%s»%B: attention: symbole d'index illégal %ld dans les numéros de ligne%B: attention: symbole index illégal %ld dans les relocalisations%B: attention: erreur lors de la lecture de la table des numéros de ligne%B: attention: Ã©dition de liens des fichiers PIC avec des fichiers non PIC%B: attention: Ã©dition de liens des fichiers abicalls avec des fichiers non abicalls%B: attention: le palliatif VFP11 n'est pas nécessaire avec l'architecture cible%B: attention: sh_link n'a pas de valeur pour la section Â«%A»%B: attention: attribut d'objet EABI %d inconnu%B:%A%s dépasse la taille de recouvrement
%B:%A: Attention: relocalisation Red Hat réprouvée %B:%d: Mauvaise somme de contrôle dans le fichier S-record
%B:%d: caractère inattendu Â«%s» dans le fichier S-record
%B:%d: caractère inattendu Â«%s» dans le fichier Intel hexadécimal%B:%u: somme de contrôle erronée dans le fichier Intel hexadécimal (attendu %u, obtenu %u)%B:%u: longueur erronée de l'enregistrement d'adresse Ã©tendue dans le fichier Intel hexadécimal%B:%u: longueur erronée de l'enregistrement d'adresse Ã©tendue linéaire dans le fichier Intel hexadécimal%B:%u: longueur erronée d'adresse Ã©tendue linéraire de début dans le fichier Intel hexadécimal%B:%u: longueur erronée d'adresse Ã©tendue de début dans le fichier Intel hexadécimal%B:%u: type ihex %u non reconnu dans le fichier Intel hexadécima%C: attention: réadressage vers Â«Â %s » fait référence Ã  un segment différent
%F%P: already_linked_table: %E
%P%P: symbole dynamique STT_GNU_IFUNC Â«%s» avec une Ã©galité de pointeur dans Â«%B» ne peut pas Ãªtre utilisé lors de la création d'un exécutable. Recompilez avec -fPIE et reliez avec -pie
%H __tls_get_addr a perdu l'argument, optimisation TLS désactivée
%H l'argument a perdu __tls_get_addr, optimisation TLS désactivée
%H: R_FRV_FUNCDESC fait référence Ã  un symbole dynamique avec un opérande non nul
%H: R_FRV_FUNCDESC_VALUE fait référence Ã  un symbole dynamique avec un opérande non nul
%H: R_FRV_GETTLSOFF pas appliqué Ã  une instruction d'appel
%H: R_FRV_GETTLSOFF_RELAX pas appliqué Ã  une instruction calll
%H: R_FRV_GOTTLSDESC12 pas appliqué Ã  une instruction lddi
%H: R_FRV_GOTTLSDESCHI pas appliqué Ã  une instruction sethi
%H: R_FRV_GOTTLSDESCLO pas appliqué Ã  une instruction setlo ou setlos
%H: R_FRV_GOTTLSOFF12 pas appliqué Ã  une instruction ldi
%H: R_FRV_GOTTLSOFFHI pas appliqué Ã  une instruction sethi
%H: R_FRV_GOTTLSOFFLO pas appliqué Ã  une instruction setlo ou setlos
%H: R_FRV_TLSDESC_RELAX pas appliqué Ã  une instruction ldd
%H: R_FRV_TLSMOFFHI pas appliqué Ã  une instruction sethi
%H: R_FRV_TLSOFF_RELAX pas appliqué Ã  une instruction ld
%H: impossible d'éditer les réadressages dynamiques dans une section en lecture seule
%H: impossible d'apporter des corrections dans une section en lecture seule
%H: le réadressage sur Â«Â %s » fait référence Ã  un segment différent
%H: réadressage sur Â«Â %s »: %s
%H: le réadressage fait référence Ã  un symbole non défini dans le module
%H: le réadressage en Â«Â %s+%v » peut avoir causé le problème ci-dessus
%P%F: --relax et -r ne peuvent pas Ãªtre utilisés en même temps
%P%X: ne peut pas lire les symboles: %E
%P%X: segment en lecture seule a des réadressages dynamiques.
%P: %B: ne peut créer l'entrée de l'ébauche %s
%P: %B: réadressage %s n'est pas supportée pour le symbole %s
%P: %B: réadressage %s n'est pas encore supporté pour le symbole %s
%P: %B: la cible (%s) d'un réadressage %s est dans la mauvaise section de sortie (%s)
%P: %B: type de réadressage non supporté
%P: %B: type de réadressage %d inconnu pour le symbole %s
%P: %B: attention: réadressage sur Â«Â %s » dans la section en lecture seule Â«Â %A ».
%P: %B: attention: réadressage dans la section Â«Â %A » en lecture seule.
%P: %H: réadressage %s vers Â«Â %s »: erreur %d
%P: %H: %s réadressé par rapport Ã  un symbole local
%P: %H: le réadressage %s fait référence Ã  une entrée TOC supprimée par l'optimisation
%P: %H: %s utilisé avec le symbole TLS %s
%P: %H: %s utilisé avec le symbole non-TLS %s
%P: %H: TOC multiples et automatiques non supportées utilisant votre fichier crt; recompilez avec -mminimal-toc ou mettez Ã  jour gcc
%P: %H: erreur: %s n'est pas un multiple de %u
%P: %H: opérande non nul sur le réadressage %s par rapport Ã  Â«Â %s »
%P: %H: réadressage %s non supporté pour la fonction indirecte %s
%P: %H: l'optimisation sœurs des appels vers Â«Â %s » n'autorise pas de TOC multiples et automatiques; recompilez avec -mminimal-toc ou -fno-optimize-sibling-calls, ou rendez Â«Â %s » externe
%P: %H: réadressage %s sans solution par rapport au symbole Â«Â %s »
%P: %s pas défini dans %s créé par l'éditeur de liens
%P: décalage %s trop grand pour l'encodage .eh_frame sdata4%P: DW_EH_PE_datarel non spécifié pour cette architecture.
%P: code machine ELF alternatif trouvé (%d) dans %B, %d est attendu
%P: bss-plt forcé par le profilage
%P: bss-plt forcé Ã  cause de %B
%P: ne peut construire l'ébauche de branchement Â«Â %s »
%P: ne peut repérer l'ébauche de branchement Â«Â %s »
%P: l'entrée toc de opd non trouvée pour %s
%P: la copie du réadressage sur Â«Â %s » nécessite un lien plt paresseux; Ã©vitez de mettre LD_BIND_NOW=1 ou mettez Ã  jour gcc
%P: la variable dynamique Â«Â %s » a une taille nulle
%P: erreur de décompte de réadressage dynamique pour %B, section %A
%P: erreur dans %B(%A); aucune table .eh_frame_hdr ne sera créée.
%P: encodage fde dans %B(%A) empêche la création de la table .eh_frame_hdr.
%P: erreur de la table de liaison vers Â«Â %s »
%P: débordement de l'offset du branchement long de l'ébauche Â«Â %s »
%P: points d'entrée multiples: dans les modules %B et %B
%P: lien relocalisable pas supporté
%P: taille des Ã©bauches ne concorde pas avec la taille calculée
%P: attention: création d'un DT_TEXTREL dans un objet partagé.
%X%C: le réadressage vers Â«Â %s » fait référence Ã  un segment différent
%X%P: recouvrement de la section %A ne démarre pas sur une ligne de cache.
%X%P: recouvrement de la section %A est plus grand que la ligne de cache.
%X%P: recouvrement de la section %A n'est pas dans une zone de cache.
%X%P: recouvrement des sections %A et %A ne commencent pas Ã  la même adresse.
%X«%s» référencé dans la section Â«%A» de %B: défini dans la section abandonnée Â«%A» de %B
%s défini dans une entrée toc supprimée%s dupliqué
%s dupliqué dans %s
%s dans une section de recouvrement%s(%s): réadressage %d a un index de symbole %ld invalide%s: %s: débordement de relocalisation: 0x%lx > 0xffff%s: 0x%v 0x%v
%s: Définition de symbole erronée: Â«Main» initialisé Ã  %s au lieu de l'adresse de départ %s
%s: erreur: multiple définitions de Â«%s»; début de %s est initialisé dans un précédent fichier lié
%s: Erreur GAS: insn PTB inattendue avec R_SH_PT_16%s: erreur d'incohérence interne pour la valeur du registre global
 alloué Ã  l'édition de lien: lié: 0x%lx%08lx != relâché: 0x%lx%08lx
%s: Type de réadressage exporté invalide: %d%s: directive LOCAL: registre $%ld n'est pas un registre local.  Premier registre global est $%ld.%s: relocalisation mal composée détectée dans la section %s%s: pas de corps pour allouer un symbole de %d octets de longueur
%s: pas de corps pour allouer un nom de section %s
%s: définition TLS dans %B section %A ne correspond pas Ã  la définition non TLS dans %B section %A%s: définition TLS dans %B section %A ne correspond pas Ã  la référence TLS dans %B%s: référence TLS dans %B ne correspond pas Ã  la définition non TLS dans %B section %A%s: référence TLS dans %B ne correspond pas Ã  la référence non TLS dans %B%s: table des matières des relocalisations Ã  0x%x pour le symbole Â«%s» sans aucune entrée%s: la cible (%s) du réadressage %s est dans la mauvaise section (%s)%s: objet XCOFF partagé alors qu'on ne produit pas de sortie XCOFF%s: __gp ne couvre pas le segment de données court%s: accès au-delà de la fin de la section fusionnée (%ld)%s: adresse 0x%s hors limite pour le fichier Intel hexadécimal%s: réadressage base plus décalage vers le symbole registre: %s dans %s%s: réadressage base plus décalage vers le symbole registre: (inconnu) dans %s%s: ne peut représenter la section Â«%s» dans le fichier format objet a.out%s: ne peut représenter la section Â«%s» dans oasys%s: ne peut représenter la section pour le symbole Â«%s» dans le fichier format objet a.out%s: ne paut pas allouer un nom de ficheir pour le no. de fichier %d, %d octets
%s: ne peut créer l'entrée d'ébauche %s%s: ne peut lier un fichier objet fdpic dans un exécutable non fdpic%s: ne peut lier un fichier objet non fdpic dans un exécutable fdpic%s: compilé comme un objet de 32 bits et %s est de 64 bits%s: compilé comme un objet de 64 bits et %s est de 32 bits%s: compilé avec %s et lié avec les modules compilés avec %s%s: compilé avec %s et lié avec les modules qui utilisent le réadressage non PIC%s: ne peut Ã©crire en sortie des entrées .cranges ajoutées%s: ne peut Ã©crire en sortie des entrées .cranges triées%s: directive LOCAL valide seulement avec un registre ou une valeur absolue%s: objet dynamique sans section .loader%s: rencontre du symbole d'une Ã©tiquette de donnée dans l'entrée%s: erreur: type de réadressage %d non aligné Ã  %08x réadressé`%08x
%s: nom illégal de section Â«%s»%s: erreur interne, registre interne de section %s contient quelque chose
%s: erreur interne, table de symbole a changé de taille de %d Ã  %d mots
%s: fichier mmo invalide: YZ de lop_end (%ld) n'est pas Ã©gal au nombre de tetras du lop_stab précédent (%ld)
%s: fichier mmo invalide: attendu YZ = 1 obtenu YZ = %d pour lop_quote
%s: fichier mmo invalide: attendu y = 0, obtenu y = %d pour lop_fixrx
%s: fichier mmo invalide: attendu z = 1 ou z = 2, obtenu z = %d pour lop_fixo
%s: fichier mmo invalide: attendu z = 1 ou z = 2, obtenu z = %d pour lop_loc
%s: fichier mmo invalide: attendu z = 16 ou z = 24, obtenu z = %d pour lop_fixrx
%s: fichier mmo invalide: champs y et z de lop_stab non nul, y: %d, z: %d
%s: fichier mmo invalide: nom de fichier %d n'a pas Ã©té spécifié avant son utilisation
%s: fichier mmo invalide: no. de fichier %d Â«%s», a déjà Ã©té entré en tant que Â«%s»
%s: fichier mmo invalide: valeur d'initialisation pour $255 n'est pas Â«Main»
%s: fichier mmo invalide: octet de tête du mot de l'opérande doit Ãªtre 0 ou 1, obtenu %d pour lop_fixrx
%s: fichier mmo invalide: lop_end n'est pas le dernier Ã©lement dans le fichier
%s: fichier mmo invalide: lopcode Â«%d» non supporté
%s: adresse de départ invalide pour des registres initialisés de longueur %ld: 0x%lx%08lx
%s: table de symboles invalide: symbole Â«%s» dupliqué
%s: débordement du nombre de lignes: 0x%lx > 0xffff%s: pas de registre initialisé; section de longeur 0
%s: pas de tel symbole%s: non implémenté%s: pas supporté%s: taille de l'objet ne concorde pas avec la taille de la cible %s%s: réadressage de registre vers le symbole non-registre: %s dans %s%s: réadressage de registre vers le symbole non-registre: (inconnu) dans %s%s: lien relocalisable de %s vers %s n'est pas supporté%s: débordement du segment de données court (0x%lx >= 0x400000)%s: chaîne trop longue (%d caractères, max 65535)%s: trop de resigstres initialisés; longueur de section %ld
%s: version non définie: %s%s: type de réadressage %d inconnu%s: symbole non reconnue Â«%s» fanions 0x%x%s: type de réadressage non supporté 0x%02x%s: séquence de caractères large 0x%02X 0x%02X non supportée après le nom de symbole débutant par Â«%s»
%s: utilise des champs e_flags (0x%lx) différents des modules précédents (0x%lx)%s: utilise différents champs e_flags (0x%lx) que les modules précédents (0x%lx)%s: compteur de version (%ld) ne concorde pas avec le symbole du compteur (%ld)%s: fichier core d'avertissement tronqué%s: attention: réadressage %s vers le symbole Â«Â %s » de la section %s%s: attention: réadressage %s vers 0x%x de la section %s%s: attention: %s: débordement du compteur de numéro de ligne: 0x%lx > 0xffff%s: attention: ajout GOT de %ld Ã  Â«%s» ne concorde par avec l'ajout GOT précédent de %ld%s: attention: ignore l'ajout PLT de %d Ã  Â«%s» de la section %s%s: attention: symbole index illégal %ld dans les relocalisations%s: attention: table de symboles trop grande pour mmo, plus grande que 65535 mots de 32 bits: %d. Seul Â«Main» sera produit.
(à l'offset de bit %u)
(descripteur)
(pas de valeur)
(pas active)
(pas allouée)
(reg: %u, aff: %u, indir: %u, type: (donnée locale au thread trop grande pour -fpic or -msmall-tls: recompilez avec -fPIC ou -mno-small-tls)(trop de variables globales pour -fpic: recompilez avec -fPIC)(valeur postérieure)
(spécificités de la valeur suivent)
)
*** vérifiez ce réadressage %s*non pris en charge*
type dst %u *non géré*
*inconnu**inconnu*        , alias: %u
, offset correctif Ã©tendu: %u, offset no_opt psect: %u, sous-type: %u (%s)
, vecteur de symbol rva: section .got pas immédiatement après la section .pltdouble de 32 bits, réadressage relatif gp 32bits rencontré pour un symbole externe64 bits *non supporté*
double de 64 bits, : %u.%u
: instructions m32r: instructions m32r2: instruction m32rx; recompilé avec -fPIC<Bits de fanions non reconnus><inconnu>relocalisation @pltoff vers un symbole localL'archive n'a pas d'index; exécuter ranlib pour en ajouter unFichier objet d'archive dans un mauvais formatÉchec de la tentative de convertir L32R/CALLX en CALLTentative de relocalisation d'un lien avec %s Ã  l'entrée et %s Ã  la sortieBASE_IMAGE       BFD assertion %s a Ã©choué %s:%dBFD erreur interne %s, abandon Ã  %s, ligne %d
BFD erreur interne %s, abandon Ã  %s, ligne %d dans %s
Erreur de liaison BFD: branchement (PC rel16) Ã  la section (%s) n'est pas supportéErreur de liaison BFD: saut (PC rel26) Ã  la section (%s) n'est pas supportéMauvaise valeurRépertoire de base du réadressage [.reloc]Répertoire des importations limitéesLimites:
CLIEn-tête exécutable CLRCLUSTERS_LOCKMGR COUNTERS         CPU              CTL_AUGRB (augmente la base du réadressage) %u
CTL_DFLOC (définir position)
CTL_SETRB (fixe la base du réadressage)
CTL_STKDL (position définie dans la pile)
CTL_STLOC (fixer position)
En-tête du copyright
incohérence d'utilisation de DIV entre %B et %BDST__K_BEG_STMT_MODE pas implémentéDST__K_END_STMT_MODE pas implémentéDST__K_RESET_LINUM_INCR pas implémentéDST__K_SET_LINUM_INCR pas implémentéDST__K_SET_LINUM_INCR_W pas implémentéDST__K_SET_PC pas implémentéDST__K_SET_PC_L pas implémentéDST__K_SET_PC_W pas implémentéDST__K_SET_STMTNUM pas implémentéRépertoire de débugTable de debug du module:
Table des symboles de debug:
Répertoire des délais d'importation%s appel déprécié
%s déprécié appelé Ã  %s dans la ligne %d dans %s
Répertoire de descriptionErreur DWARF: mauvais numéro abrégé: %uErreur DWARF: ne peut repérer la section %sErreur DWARF: ne peut repérer le numéro abrégé %uErreur DWARF: Opérations maximum par instruction invalide.Erreur DWARF: valeur de FORME invalide ou non supportée: %uErreur DWARF: décalage de ligne (%lu) est >= Ã  la taille de %s (%lu)Erreur DWARF: Version .debug_line %d non prise en charge.Erreur DWARF: taille d'adresse obtenue Â«%u», ce lecteur ne peut traiter des tailles plus grandes que Â«%u».Erreur DWARF: version DWARF trouvée Â«%u», ce lecteur ne supporte que les informations des versions 2, 3 et 4.Erreur DWARF: numéro de ligne de section mutilé (mauvais no. de fichier)Erreur DWARF: numéro de ligne de section mutiléEIHD: (taille: %u, nbr blocs: %u)
Décalage de l'entrée= 0x%.8lx (%ld)
Erreur lors de la lecture de %s: %sErreur: %B utilise les deux attributs Tag_MPextension_use actuel et héritéErreurs rencontrées pendant le traitement du fichier %sRépertoire des exceptions [.pdata]Répertoire d'exportation [.edata (ou là où il a Ã©té trouvé)]Fanion d'exportation             %lx
Exportation RVAÉCHEC de repérage du réadressage HI16 précédentFILES_VOLUMES    Format de fichier ambiguFormat de fichier non reconnuFichier dans un mauvais formatFichier trop grosFichier tronquéChamp de fanion     = 0x%.2x
Adresseur RVAGALAXY           Réadressage relatif GP utilisé alors que GP n'est pas définiréadressage relatif GP sans que _gp ne soit définile réadressage GPDISP n'a pas repéré les instructions ldah et ldaTable des symboles globaux:
IDC - Vérification de la consistance d'identité
IMAGE_ACTIVATOR  INPUT_SECTION_FLAGS pas supportés.
IO               Activation de l'image:  (taille=%u)
Correction de l'activateur de l'image: (majeur: %u, mineur: %u)
Identification d'image: (majeur: %u, mineur: %u)
Descripteur de section d'image: (majeur: %u, mineur: %u, taille: %u, offset: %u)
Image des symboles et table debug: (majeur: %u, mineur: %u)
Répertoire de la table d'adresse d'importationRépertoire d'importation [faisant partie de .idata]Inconsistence interne: reste %u != max %u.
  Merci de rapporter cette anomalie.Type de réadressage TARGET2 Â«Â %s » invalideCible bfd invalideOpération invalideIndex de section incorrect dans ETIRJALX vers une adresse non alignée sur un motLOGICAL_NAMES    Nom du Processeur de Langage
Longueur            = 0x%.8lx (%ld)
Répertoire de chargement de configurationMEMORY_MANAGEMENTDes fonctions MIPS16 et microMIPS ne peuvent pas s'appeler l'une l'autreMISC             MULTI_PROCESSING En-tête Mach-O:
Majeur/Mineur             %d/%d
Archive mal forméePile maximum requise est 0x%v
MeP: le howto %d a le type %dMémoire Ã©puiséeEn-tête module
NETWORKS         NORMALNom                 Pas d'erreurAucun autre fichier d'archiveAucun symboleSection non-représentable sur la sortiePas assez de mémoire pour trier les réadressagesNuméro dans:
OPR_ADD (ajout)
OPR_AND (et logique)
OPR_ASH (décalage arithmetique)
OPR_COM (complément)
OPR_DIV (division)
OPR_EOR (ou exclusif logique)
OPR_INSV (insertion champ)
OPR_IOR (ou inclusif logique)
OPR_MUL (multiplication)
OPR_NEG (négation)
OPR_NOP (pas d'operation)
OPR_REDEF (définir un litéral)
OPR_REDEF (redéfini le symbole Ã  la position actuelle)
OPR_ROT (rotation)
OPR_SEL (selection)
OPR_SUB (soustraction)
OPR_USH (décalage non signé)
Module objet N'EST PAS sans erreur !
base de nombre ordinal             %ld
La sortie requiert la librairie partagée Â«%s»
Le fichier de sortie requiert une librairie partagée Â«%s.so.%s»
POSIX            PROCESS_SCHED    PRVFXDPRVPICPSC - Définition de section du programme
Non concordance PTA: adresse SHcompact (bit 0 == 0)Non concordance PTB: adresse SHmedia (bit 0 == 1)Nom de partition    = Â«%s»
Fin de la partition[%d] = { 0x%.2x, 0x%.2x, 0x%.2x, 0x%.2x }
Longueur de la partition[%d] = 0x%.8lx (%ld)
Secteur de la partition[%d] = 0x%.8lx (%ld)
Merci de rapporter cette anomalie.
R_BFIN_FUNCDESC fait référence Ã  un symbole dynamique avec un opérande non nulR_BFIN_FUNCDESC_VALUE fait référence Ã  un symbole dynamique avec un opérande non nulR_FRV_TLSMOFFLO pas appliqué Ã  une instruction setlo ou setlos
Lecture du cachet date-heure modifié du fichier d'archiveRéférence Ã  un symbole far Â«Â %s » utilisant le mauvais réadressage peut provoquer une exécution incorrecteRegistre %%g%d utilisé de manière incompatible: %s dans %B précédemment %s dans %BRegistre de section contient
Réadressage pour psect non-RELSuppression de la section inutilisée Â«%s» dans le fichier Â«%B»RéservéRépertoire des resources [.rsrc]réadressage SDA alors que _SDA_BASE_ n'est pas définiSECURITY         SEC_RELOC sans relocalisation dans la section %sErreur SH: type de réadressage %d inconnuSHELL            SHRFXDSHRPICSPSC - Def de section de l'image partagée du programme
STABLE           STA_CKARG (compare les arguments de la procédure)
STA_GBL (pile globals) %.*s
STA_LI (pile literale)
STA_LW (pile mot long) 0x%08x
STA_MOD (pile module)
STA_PQ (base pile psect + offset)
STA_QW (pile quad mot) 0x%08x %08x
STC_BOH_GBL (stocke BOH cond Ã  l'adresse globale)
STC_BOH_PS (stocke BOH cond Ã  psect + offset)
STC_BSR_GBL (stocke BSR cond Ã  l'adresse globale)
STC_BSR_PS (stocke BSR cond Ã  psect + offset)
STC_GBL (stocke cond globale)
STC_GCA (stocke adresse code cond)
STC_LDA_GBL (stocke LDA cond Ã  l'adresse globale)
STC_LDA_PS (stocke LDA cond Ã  psect + offset)
STC_LP (stocke pair de liaison cond)
STC_LP_PSB (stocke pair de liaison cond + signature)
STC_NBH_GBL (stocke cond ou suggestion Ã  l'adresse globale)
STC_NBH_PS (stocke cond or suggestion Ã  psect + offset)
STC_NOP_GBL (stocke NOP cond Ã  l'adresse globale)
STC_NOP_PS (stocke NOP cond Ã  psect + offset)
STC_PS (stocke psect cond + offset)
STO_AB (stocke branche absolue)
STO_B (stocke octet)
STO_BR_GBL (stocke branche globale) *todo*
STO_BR_PS (stocke branche psect + offset) *todo*
STO_CA (stock adresse code) %.*s
STO_GBL (stocke globale) %.*s
STO_GBL_LW (stocke mot long global) %.*s
STO_IMM (stocke immediat) %u octets
STO_IMMR (stock répétition immédiate) %u octets
STO_LW (stocke mot long)
STO_OFF (stocke LP avec la signature de la procédure)
STO_OFF (stocke offset de psect)
STO_QW (stocke quad mot)
STO_RB (stocke branche relative)
STO_W (stocke mot)
SYM - Définition du symbol global
SYM - Référence du symbol globaux
SYMG - Définition de symbole universel
SYMM - Définition de symbole globale avec version
SYMV - Définition symbole vectorisé
SYSGEN           Section sans contenuRépertoire de la sécuritéSegments et Sections:
Erreur de taille dans la section %sEn-tête des fichiers sources
Répertoire spécialRelocalisation ALPHA_R_BSR parasiteL'analyse de la pile ignorera l'appel de %s Ã  %s
Débordement de la pile (%d) dans _bfd_vms_pushTaille de la pile des nœuds racine du graph d'appel.
Sous dépilage de la pile dans _bfd_vms_popPas:
Symbole %s n'est pas défini pour les corrections
Symbole %s remplacé par %s
Symbole Â«%s» a des types qui diffèrent: %s dans %B, précédemment REGISTRE dans %BSymbole Â«%s» a des types qui diffèrent: REGISTRE dans %B, précédemment %s dans %BSymboles ont besoin de la section de débug qui est inexistenteErreur d'appel systèmeréadressage TLS incorrecte sans section dynamiqueDébordement de la table des entrées: 0x%lx > 0x10000; essayez l'option -mminimal-toc Ã  la compilationTable d'adresses
Répertoire des files de stockage [.tls]Tampon Heure/Date         %lx
En-tête du texte du titre
USRSTACKIncapable de trouver un Ã©quivalent pour le symbole Â«%s» de la section Â«%s»STO_SH5_ISA32 inattendu sur le symbole local n'est pas traitéNuméro de machine inattenduType de section de fichier core OSF/1 %d non traité
Réadressage %s non traitéSous type EGSD %d inconnuType de base %d inconnuRelocalisation %s inconnueRelocalisation %s + %s inconnueSymbole inconnu dans la commande %sINPUT_SECTION_FLAG %s non reconnu
Identificateur de cible TI COFF non reconnu Â«0x%x»Relocalisation non reconnueType de relocalisation non reconnu 0x%xRéadressage du .stab non supportéVOLATILE         Variable Â«%s» peut seulement Ãªtre dans une région de données petite, zéro ou minusculeVariable Â«%s» ne peut Ãªtre dans une région de données petite et minuscule Ã  la foisVariable Â«%s» ne peut Ãªtre dans une région de données petite et zéro Ã  la foisVariable Â«%s» ne peut Ãªtre dans une région de données zéro et minuscule Ã  la foisVariable Â«%s» ne peut occuper de multiples petites régions de donnéesAttention, taille de la section .pdata (%ld) n'est pas un multiple de %d
Attention: %B ne supporte pas l'inter-réseautage, contrairement Ã  %BAttention: %B est tronqué: taille attendue du cœur du fichier >= %lu, obtenu: %lu.Attention: %B supporte l'inter-réseautage, contrairement Ã  %BAttention: %B utilise -mdouble-float, %B utilise -mips32r2 -mfp64Attention: %B utilise -msingle-float, %B utilise -mdouble-floatAttention: %B utilise -msingle-float, %B utilise -mips32r2 -mfp64Attention: %B utilise la virgule flottante double précision matérielle, %B utilise la virgule flottante simple précision matérielleAttention: %B utilise la virgule flottante matérielle, %B utilise la virgule flottante logicielleAttention: %B utilise r3/r4 pour les retours de petites structures, %B utilise la mémoireAttention: %B utilise la virgule flottante logicielle, %B utilise la virgule flottante simple précision matérielleAttention: %B utilise l'ABI inconnu %d pour la gestion des virgules flottantesAttention: %B utilise la convention inconnue %d pour le retour des petites structuresAttention: %B utilise l'ABI inconnu %d pour les vecteursAttention: %B utilise l'ABI de vecteurs Â«%s», %B utilise Â«%s»Attention: %B: Configuration de platforme conflictuelleAttention: %B: Attribut d'objet EABI %d inconnuAttention: mise Ã  zéro du fanion d'inter-réseautage %B en raison du code sans inter-réseautage dans %B lié avec luiAttention: Mise Ã  zéro du fanion d'inter-réseautage de %B en raison d'une requête externeAttention: Pas d'initialisation du fanion d'inter-réseautage de %B puisqu'il a déjà Ã©té spécifié sans inter-réseautageAttention: Relocalistaion RX_SYM avec un symbole inconnuAttention: Ã‰criture de la section Â«%s» vers un Ã©norme décalage (ie négatif) dans le fichier 0x%lx.Attention: alignement %u du symbole commun Â«%s» dans %B est plus grand que l'alignement (%u) de sa section %AAttention: alignement %u du symbole Â«%s» dans %B est plus petit que %u dans %BAttention: nombre de corrections en désaccord
Attention: l'option de la section gc est ignoréeAttention: taille du symbole Â«%s» a changé de %lu dans %B Ã  %lu dans %BAttention: type de symbole Â«%s» a changé de %d Ã  %d dans %BAttention: l'écriture de l'archive Ã©tait lente: réécriture du cachet de date-heure
Écriture du cachet date-heure armap mise Ã  jour[%u]: %u
[%u]: Inférieure: %u, supérieure: %u
[abi=16-bit int, [abi=32-bit int, [dont le nom est perdu]\%B: Attention: instruction Arm BLX vise la fonction Arm Â«%s»._bfd_vms_output_counted appelé avec trop d'octets_bfd_vms_output_counted appelé avec un compte de zéro octetadresseadresse pas alignée sur un motarsize: %u, a0: 0x%08x
index de section erronée dans %sbanque d'adresses [%lx:%04lx] (%lx) n'es pas dans la même banque que la banque courante d'adresses [%lx:%04lx] (%lx)base: %u, pos: %u
bfd_mach_o_canonicalize_symtab: impossible de charger les symbolesbfd_mach_o_read_dysymtab_symbol: impossible de lire %lu octets Ã  %lubfd_mach_o_read_symtab_symbol: nom hors limites (%lu >= %lu)bfd_mach_o_read_symtab_symbol: symbole Â«Â %s » a la référence non supportée Â«Â indirect »: laissé non définibfd_mach_o_read_symtab_symbol: le symbole Â«Â %s » spécifie la section %d invalide (max %lu): laissé non définibfd_mach_o_read_symtab_symbol: symbole Â«Â %s » spécifie le champ de type 0x%x invalide: laissé non définibfd_mach_o_read_symtab_symbol: impossible de lire %d octets Ã  %lubfd_mach_o_read_symtab_symbols: impossible d'allouer la mémoire pour les symbolesbfd_mach_o_scan: architecture 0x%lx/0x%lx inconnuebfd_pef_scan: architecture 0x%lx inconnuedébut blk: adresse: 0x%08x, nom: %.*s
fin blk: taille: 0x%08x
impossible d'éditer les réadressages dynamiques dans une section en lecture seuleimpossible d'apporter des corrections dans une section en lecture seuleimpossible de trouver le EMH dans le premier enregistrement GST
ne peut traiter la relocalisation R_MEM_INDIRECT lorsque %s est utilisé en sortiene peut lire DMT
ne peut lire l'en-tête DMT
ne peut lire le psect DMT
ne peut lire DST
impossible de lire l'en-tête DST
ne peut lire le symbole DST
ne peut lire EIHA
ne peut lire EIHD
ne peut lire EIHI
ne peut lire EIHS
ne peut lire l'en-tête EIHVN
ne peut lire la version EIHVN
ne peut lire EISD
ne peut lire GST
ne peut lire l'enregistrement GST
impossible de lire l'en-tête de l'enregistrement GST
impossible de lire la longueur de l'enregistrement GST
classe: %u, dtype: %u, longueur: %u, pointeur: 0x%08x
section %s corrompue dans %Bne peut repérer le symbole spécial d'édition de lien __ctbpne peut repérer le symbole spécial d'édition de lien __epne peut repérer le symbole spécial d'édition de lien __gpn'a pas su ouvrir l'image partagée Â«%s» de Â«%s»cpu=HC11]cpu=HC12]cpu=HCS12]réadressage dangereuxdelta pc +%-4ddelta_pc_l: +0x%08x
delta_pc_w %u
descdimct: %u, aflags: 0x%02x, digits: %u, Ã©chelle: %u
section de sortie rejetée: Â«%A»plage discontinue (nbr: %u)
réadressage dynamique dans une section en lecture seulela variable dynamique Â«%s» a une taille nulledébut Ã©numération, long: %u, nom: %.*s
énumération Ã©léments, nom: %.*s
fin Ã©numération
épilogue: fanions: %u, nombre: %u
erreur: %B contient une relocalisation (0x%s) pour la section %A qui fait référence Ã  un symbole global inexistanterreur: %B n'utilise pas les instructions Maverick alors que %B les utiliseerreur: %B est déjà au format final BE8erreur: %B compilé avec du code Ã  position absolu alors que la cible %B est Ã  position indépendanteerreur: %B compilé avec du code Ã  position indépendante alors que la cible %B est Ã  position absolueerreur: %B compilé pour APCS-%d alors que %B a Ã©té compilé pour APCS-%derreur: %B compilé pour APCS-%d alors que la cible %B utilise APCS-%derreur: %B compilé pour EP9312 alors que %B a Ã©té compilé pour XScaleerreur: %B passage de valeurs en virgule flottante dans les registres FP alors que %B les passe dans les registres entierserreur: %B passage de valeurs en virgule flottante dans les registres entiers alors que %B les passe dans les registres FPerreur: %B nécessite un plus grand alignement de tableau que ce que %B préserveerreur: %B nécessite un plus grand alignement de pile que ce que %B préserveerreur: %B utilise les instructions FPA alors que %B ne les utilise paserreur: %B utilise les instructions Maverick alors que %B ne les utilise paserreur: %B utilise les instructions VFP alors que %B ne les utilise paserreur: %B passe les paramètres dans un registre VFP alors que %B ne le fait paserreur: %B utilise le matériel pour virgule flottante alors que %B utilise le logiciel pour virgule flottanteerreur: %B passe les paramètres dans le registre iWMMXt contrairement Ã  %Berreur: %B utilise le logiciel pour virgule flottante alors que %B utilise le matériel pour virgule flottanteerreur: %B: Architectures CPU conflictuelles %d/%derreur: %B: Profils d'architecture conflictuels %c/%cerreur: %B: Utilisation conflictuelle de R9erreur: %B: L'objet a un contenu spécific Ã  un vendeur qui doit Ãªtre traité par la chaîne d'outils Â«%s»erreur: %B: Ã‰tiquette d'objet Â«%d, %s» incompatible avec l'étiquette Â«%d, %s»erreur: %B: Adressage relatif SB entre en conflit avec l'utilisation de R9erreur: %B: Architecture CPU inconnueerreur: %B: le réadressage de la section %A n'est pas un multiple de la taille des adresseserreur: %B: impossible de fusionner les attributs de visualisation avec %Berreur: L'objet source %B a l'EABI version %d alors que la cible %B a l'EABI version %derreur: désaccord de format fp16 entre %B et %Berreur: type de réadressage inapproprié pour une librairie partagée (avez-vous oublié -fpic ?)erreur: symbole __rtinit non définierreur: valeur Tag_ABI_array_object_align_expected inconnue dans %Berreur: valeur Tag_ABI_array_object_alignment inconnue dans %Bexécutableéchec d'allocation d'espace pour une nouvelle section APUinfoéchec d'évaluation de la nouvelle section APUinfoéchec d'installation de la nouvelle section APUinfoerreur fatale lors de la création de .fixupliaison générique ne peut traiter %sadresse relative du pointeur global hors limitesréadressage relatif au pointeur global sans que _gp ne soit définisymbole cachérelocalisation %s ignorée
incr_linum(b): +%u
incr_linum_l: +%u
incr_linum_w: +%u
erreur interne: opérande devrait Ãªtre zéro pour R_LM32_16_GOTerreur interne: erreur dangereuseerreur interne: réadressage dangereuxerreur interne: hors limiteerreur interne: type de réadressage douteux utilisé dans une librairie partagéeerreur interne: erreur inconnueerreur interne: erreur de réadressage non supportéeincohérence interne dans la taille de la section .got.locsymbole interneréadressage d'entrée invalide en produisant un format de sortie non ELF et non mmo.
 Veuillez utiliser le programme objcopy pour convertir de ELF ou mmo,
 ou assembler en utilisant Â«Â -no-expand » (pour gcc, Â«Â -Wa,-no-expand »réadressage d'entrée invalide en produisant un format de sortie non ELF et non mmo.
 Veuillez utiliser le programme objcopy pour convertir de ELF ou mmo,
 ou compiler en utilisant l'option gcc Â«Â -mno-base-addresses ».adresse de réadressage incorrectetype de réadressage %d invalideutilisation incorrecte de %s avec des contextesliaison ip2k: instruction de page manquante Ã  0x%08lx (cible = 0x%08lx).liaison ip2k: instruction de page redondante Ã  0x%08lx (cible = 0x%08lx).relâche ip2k: en-tête de table de commutation corrompuerelâche ip2k: table de commutation sans concordance complète des informations de réadressagenum ligne  (long: %u)
image liableéditeur de liens des Ã©bauches dans %u groupe%s
  branchements         %lu
  ajustements toc      %lu
  long branchements    %lu
  long ajustements toc %lu
  appels plt           %lulitéraleréadressage littéral rencontré pour un symbole externemep: pas de réadressage pour le code %ddébut module
fin module
natiftable de %s non contiguë
réadressages non dynamiques font référence au symbole dynamique %sla taille de non recouvrement de 0x%v plus la taille maximum de recouvrement de 0x%v dépasse l'espace local
ajout non nul dans la relocalisation @fptrpas suffisamment d'espace GOT pour les entrées locales GOTpas de table de projection: données=%lx adresse de la table=%d
pas de table de projection: variable d'environnement pas initialisée
note: Â«%s» est défini dans le DSO %B donc essayez de l'ajouter Ã  la ligne de commande du lieurhors limitedébordement après la relâchedébordement du réadressage de l'ébauche de recouvrementfanions privés = %lxfanions privés = %lxfanions privés = %lx: fanions privés = %x:fanions privés = 0x%lxfanions privés = 0x%lx:prologue: adresse bkpt 0x%08x
symbole protégédébut rec: nom: %.*s
fin rec
référence Ã  une banque d'adresses [%lx:%04lx] dans l'espace normal d'adresses Ã  %04lxregréadressage Â«Â %s » pas encore implémentéle réadressage fait référence Ã  un symbole non défini dans le modulele réadressage exige un opérande nulle réadressage devrait Ãªtre un nombre paireles réadressages entre segments différents ne sont pas supportésréouverture de %B: %s
commande %d réservéedébut rtn
fin rtn: taille 0x%08x
septyp, nom: %.*s
set_abs_pc: 0x%08x
set_line_num(w) %u
set_line_num_b %u
set_line_num_l %u
la taille des petites données de la section dépasse 64KB; abaissez la limite de taille des petites données (voyez l'option -G)som_sizeof_headers non implémentédésolé, pas de support des fichiers objet dupliqués dans un script auto-overlay
source (long: %u)
données standards: %s
procédure statique (sans name)entrée de l'ébauche pour %s ne peut charger .plt, décalage dp = %ldtaille des Ã©bauches ne concorde pas avec la taille calculéesymboleinformation sur table de version système:
term(b): 0x%02xterm_w: 0x%04xtypspec (long: %u)
incapable de repérer le liant ARM Â«%s» pour Â«%s»incapable de repérer le REPÈRE de liant Â«%s» pour Â«%s»incapable de lire dans la section %s Ã  partir de %Bimpossible de lire la commande de chargement inconnue 0x%lximpossible d'écrire la commande de chargement inconnue 0x%lxchaine de bits de %s désalignée
convention d'appel incertaine pour un symbole non COFFréférence %s non définie dans le symbole complexe: %stype d'entrée egsd %u non supporté
sous-type emh %u non pris en charge
inconnucommande ETIR %d inconnueerreur inconnuevaleur d'ordre des octets de l'en-tête 0x%lx est inconnuecommande de ligne %d inconnueopérateur Â«%c» inconnu dans le symbole complexecommande source %d inconnuecommande STA %s non supportéerelocalisation non supportéetype de relocalisation non supportéréadressage non supportéréadressage non supporté entre les espaces d'adresses data/insnutilisation de valeurs gp multiplesarchitecture v850architecture v850earchitecture v850e1architecture v850e2architecture v850e2v3vflags: 0x%02x, valeur: 0x%08x  vma:            Adresse Début     Adresse Fin      Unwind Info
attention: %B et %B on des tailles de wchar_t différentesattention: %B et %B ne sont pas d'accord sur la compilation du code pour DSBTattantion: %B utilise des enums %s alors que la sortie doit utiliser des enums %s. L'utilisation des valeurs enum entre objets peu Ã©chouerattention: %B utilise des wchar_t de %u octets alors que la sortie doit utiliser des wchar_t de %u octets. L'utilisation de wchar_t entre objets peu Ã©chouerattention: %B: symbole local Â«%s» n'a pas de sectionattention: %s dépasse la taille de la section
attention: %s a un index de table de chaînes corrompu - ignoréattention: %s recouvre %s
attention: section %s a une taille nulleattention, taille de la section .pdata (%ld) n'est pas un multiple de %d
attention: tentative d'exportation d'un symbole non défini Â«%s»attention: appel au symbole %s défini dans %B qui n'est pas une fonctionattention: production d'une librairie partagée contenant du code non-PICattention: production d'une librairie partagée contenant du code non-PIDattention: réadressage fait référence Ã  un segment différentattention: section Â«Â %s » changé en une noteattention: type de la section Â«%A» changé en PROGBITSattention: type et taille du symbole dynamique Â«%s» ne sont pas définisattention: incapable d'initialiser la taille de la section %s dans %Battention: incapable de mettre Ã  jour le contenu de la section %s dans %svous ne pouvez pas définir %s dans un script