forked from ~ljy/RK356X_SDK_RELEASE

hc
2023-03-21 4b55d97acc464242bcd6a8ae77b8ff37c22dec58
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
Þ•+t¡óÌB˜®™®-›®1É®û® ¯Û1¯+ °09°Kj° ¶° ðϰ<ã°B ±Rc±>¶±@õ±96²Cp²F´²5û²I1³{³’³!§³$ɳî³#õ³´´'>´f´F„´QË´7µ8Uµ8޵5ǵ5ýµ]3¶<‘¶wζIF·A·:Ò·K ¸NY¸9¨¸Bâ¸O%¹Lu¹R¹;º8Qº>ŠºIɺI»B]»4 »~Õ»?T¼D”¼EÙ¼@½E`½C¦½=ê½P(¾{y¾Bõ¾?8¿‰x¿9À/<ÀPlÀC½ÀFÁEHÁEŽÁCÔÁQÂNj¹ÂGJÃŒ’ÃOÄRoÄCÂÄQÅFXÅ9ŸÅ=ÙÅ=Æ4UÆPŠÆMÛÆB)ÇGlÇI´Ç@þÇH?ÈBˆÈ7ËÈÊE Ê
fÊ'qÊ.™Ê.ÈÊ÷Ê)    Ë03ËdËZmËlÈË+5Ì0aÌ ’Ì ³ÌÔÌéÌüÌÍ$7Í$\Í*Í*¬Í×ÍòÍ  Î.Î HÎTÎ#eΉÎ! Î+ÂÎ"îÎ;ÏEMÏ“Ï5²Ï%èÏ1Ð.@ÐoÐ0ÐL¾Ð ÑÑ0Ñ7CÑG{ÑÃÑâÑúÑ Ò&2ÒJYÒ8¤ÒUÝÒ3ÓGÓ-[ÓK‰Ó"ÕÓøÓÔ#Ô#BÔ(fԏÔ"£ÔÆÔ"ÙÔ#üÔ# Õ"DÕ%gÕJÕ2ØÕ& Ö,2Ö?_ÖFŸÖæÖ-×1/×>a×Z ×Dû×?@Ø/€ØH°Ø?ùØ:9Ù;tÙD°Ù>õÙJ4Ú=ÚV½ÚUÛNjÛ@¹ÛAúÛ9<ÜvÜ(–Ü*¿Ü:êÜ %Ý!FÝ hÝ&‰Ý4°ÝåÝ#þÝ"Þ.>Þ mÞŽÞ.§Þ!ÖÞøÞ
ß(ß&=ß5dß*šßpÅß.6à;eà]¡à7ÿàZ7á!’á5´á@êáK+â>wâE¶â!üâ!ã'@ãjhã(Óã*üã'ä->älä"ƒä¦äÅä$ää2    å<åSå0rå+£åAÏå2æ2Dæ1wæ0©æ9Úæ1ç2Fç1yç+«ç-×ç3è.9èDhè3­è$áè+é2éIé'féŽé©é2Áé1ôé"&ê1Iê${ê$ ê9Åê8ÿê18ë1jë/œë1ÌëEþë2Dì+wì+£ì-Ïì>ýì<í[ízí<’í<Ïí; î6Hî8î%¸î3Þî*ï9=ï2wï8ªï3ãï ð)8ðbð-ð"¯ð8Òð3 ñ&?ñ/fñ –ñ(·ñ#àñ+ò%0ò(Vò)ò$©ò.Îòýò1ó'Oó"wó&šóÁó1ßóô%*ô1Pô9‚ô¼ô,Üô*    õ!4õ$Võ){õ$¥õ$Êõ&ïõ&ö(=ö5fö%œö?Âö÷÷0÷K÷4f÷›÷ª÷(Ç÷'ð÷=ø:Vø+‘ø6½ø:ôø3/ù8cùœù%¶ù6Üù*ú!>ú8`úW™ú:ñú(,û,Uû'‚ûªûÊû)êû!ü+6ü:bü!ü9¿ü-ùü''ý(Oý/xý%¨ý#Îý<òý$/þ*Tþ$þ8¤þÝþùþ,ÿ*?ÿ,jÿ—ÿ*³ÿÞÿñÿ
("Kk}Ž©Çäÿ/Ljˆ"œ¿"Ö!ù4)Oy’¬Á:Ü%=!\~$š¿#Ü 3!T v,—#Ä'è"&3Z#z'ž"Æ&é--[0mž/·'ç,D4WŒ$«Ð#î': YzŒ¢%Áç)    1    P    k    %†    ¬    È    3æ    
0
O
a
+w
*£
#Î
/ò
#" F ,e ’ ² Æ å + *, !W !y › "² #Õ ù 
 4 O n Ž ¤ "³ "Ö 2ù  ,Mk"Š(­Öï    =-\&Š,±"Þ'')'Q(y)¢ Ì/í':b{)• ¿àû ;#_ ›¼Ò+ä*#;,_&Œ³Êá0Ke$w&œÃ.ß-Ff)~¨Ã'Ú ##G]x—²Éá8å.7M3…@¹;ú;66r9©;ã:4Z64Æ<û68:o8ª.ã&.Ul%ˆ)®Øö 6*L w#˜$¼á+1-/_"¯"Òõ$#>3b$–»Ø÷*-H+v*¢Í,æ# 7 Q m   š a¨ 
!d!€!ƒ!‡!—!ž!2¥!2Ø! " ""("9"B"R"["t"Ž"#§"5Ë"5#$7#+\#ˆ#¦#2½#*ð#.$)J$&t$'›$&Ã$&ê$%%#7%'[%%ƒ%(©% Ò%$ó% &"9&,\&2‰&¼&Ü&*û&,&')S'}''´')Î'ø'(0(/L(|(—(³(7º(ò().)#B)f)†)š)²)¸)È)Û)ï)*#*:5*)p*Jš*Cå*)+A+H+,O+
|+‡+$£+ È+#é+ ,,,I,(b,‹,(¨,Ñ,ñ,-)-/I-!y- ›-'¼- ä-0.6. Q. _.€.—.­.Æ.à.ï.- /";/^/!x/)š/ Ä/Yå/?0A0J0S0$\030µ0%Ñ0÷01    111!$1F1 b1o1 x1…1Ž1—1# 1Ä1Í1é1ò1ö1 2262R25o2 ¥2€³2430:3+k3"—3Hº324;64(r4+›4.Ç4+ö4-"5P5|g5nä53S6A‡67É67.75D7#z7&ž7$Å7.ê78758m8.‡8,¶8,ã8*9%;9-a9`9Gð9J8:+ƒ:$¯:+Ô:;;4;)M;.w;$¦;'Ë;/ó;#<7?<$w<œ<)³<Ý<Fô<";=!^=G€=SÈ=7>>T><“>?Ð>/?0@?Qq?BÃ?E@[L@ ¨@‚µ@L8A6…AJ¼A#B$+BZPBD«B?ðB=0CBnCL±CKþC;JD?†DEÆDb EJoE9ºE1ôE,&F-SFLFNÎF9G6WGZŽG9éG@#H2dH;—H'ÓHûHIU)I0I4°IAåI'J(CJ*lJX—JRðJACK0…K"¶KMÙKP'LExL4¾LIóLF=M/„M:´M%ïMRN6hNdŸN)O6.OeO'xO* OCËO/PA?PLPEÎP+Q7@Q?xQ=¸Q:öQA1RCsRG·R2ÿR(2S.[SŠS7¨S;àSMT6jT4¡T,ÖT,U(0U,YU(†U"¯U/ÒU4V@7V.xV+§V+ÓV/ÿV6/WHfW9¯W'éWIX+[X,‡X/´X,äX,YM>Y+ŒY'¸Y'àY7Z!@Z%bZˆZ+žZ/ÊZ:úZA5[*w[*¢[,Í[(ú[#\?\]\6z\(±\=Ú\]6]!P]>r]±]>Ê]/    ^9^1Y^O‹^DÛ^  _A_5\_5’_%È_&î_?`OU` ¥`.Æ`'õ`'a'Ea'ma'•a4½a&òab)3bH]b&¦b[Íb/)c8Yc(’cB»c-þc",dOd'nd'–d'¾d(æd(e;8e6te4«e"àe)fQ-f-f2­f1àf(g#;g$_g%„g,ªg3×g- h9h)Uh,h:¬h.çhi3iRi8ni0§i?Øi-j2Fj;yjµj%Ójùj-k6Dk${k. kAÏkl3.lbl(l'ªl#Òlöl&m<m,Xm;…m<Ám#þm-"n+Pn+|n¨n,¼n#én o o%o>oWo fo!ro
”oŸo®o ÂoÏoæoùop    
pp$p 3p ?pKpfpp ”p ¡p®p¾pÐpåp    øpqq"q    5q
?q%Jq.pq!Ÿq[Áq7rOUr2¥r2Ør3 s?sXsus‰s s°sÇsásþs)t1Et'wtPŸtVðtWGu)Ÿu:Éuvv6vSvhv}v’v§vÅv$×vüv+w#Hw%lw’w°w(Êw%ów)xHCx)Œx*¶x*áxB y$Oy3ty2¨y*Ûy4z>;z#zz1žz'Ðz5øz1.{V`{#·{!Û{Jý{>H|.‡|¶|+Ô|0}$1}4V}‹}$§}FÌ}%~99~Fs~/º~#ê~XGgG¯6÷8.€Cg€1«€*݀)52h†›¯Ɂ ä'‚-‚&K‚%r‚$˜‚)½‚%ç‚ ƒ&)ƒ1Pƒ%‚ƒ%¨ƒ$΃1óƒ2%„&X„$„"¤„DŽ ã„.…13…te…[څ*6†)a†#‹†(¯†W؆0‡C‡ T‡:b‡&‡1ć1ö‡6(ˆ>_ˆ,žˆ4ˈB‰HC‰:Œ‰)ljñ‰
Š#Š BŠPŠ&hŠŠ¥ŠµŠƊՊæŠ ïŠüŠ‹[<‹A˜‹_ڋc:ŒDžŒMãŒG1_y3ٍ Ž)Ž;ŽMŽB^ŽA¡ŽEãŽ9)cy‘ªʏ+ꏐ1L8^/—5ǐý'‘>‘]‘z‘!Ž‘°‘!Αð‘    ’’&’(D’m’Š’¦’%µ’!ے ý’ “%+“4Q“3†“0º“*ë“)”>@”`”6à”V•$n•#“•%·•*ݕ–!–";–!^–!€–:¢–_ݖ=—Z— w—˜—·—(̗õ— ˜"˜9˜ Y˜!z˜!œ˜#¾˜#â˜-™*4™4_™”™¨™¼™*љ!ü™6š7Uš#šB±šOôš7D›#|›7 ›#؛9ü›%6œ9\œ%–œT¼œi){<¥)â' ž4ž*Qž'|ž'¤ž,̞"ùžŸ'8Ÿ-`Ÿ ŽŸ¯Ÿ?Ο6 !E #g ‹ )ª  Ô Jõ #@¡d¡)|¡¦¡¿¡#Û¡ÿ¡¢-¢(?¢&h¢¢U¥¢$û¢3 £T£"e£"ˆ£ «£ Ì£$í£$¤"7¤"Z¤)}¤'§¤*Ϥ)ú¤,$¥&Q¥)x¥'¢¥Ê¥#è¥$ ¦#1¦!U¦@w¦:¸¦ó¦"§ '§H§d§{§)§*¹§“ä§ x¨4™¨3Ψ$©7'©_©©™©‰°©":ª]ª,xª¥ª9¾ª:øª*3« ^«!«!¡«6ëDú«4?¬,t¬¡¬Á¬3ܬ.­$?­-d­,’­+¿­<ë­H(®Xq®.Ê®ù®$¯;¯ Y¯z¯F¯4Ô¯4    °>°#V°z°)’°.¼°&ë°"±&5±+\±(ˆ±"±±(Ô±(ý±)&²)P²*z²*¥²*в*û²*&³*Q³*|³*§³*Ò³*ý³*(´*S´(~´(§´(д(ù´("µ(Kµ)tµ(žµ(ǵ(ðµ(¶*B¶*m¶*˜¶*ö(î¶(·(@·(i·(’·(»·(ä·( ¸(6¸(_¸)ˆ¸)²¸'ܸ(¹(-¹)V¹)€¹(ª¹(Ó¹(ü¹(%º+Nº'zº'¢º(ʺ'óº3»4O»4„»3¹»"í»%¼ 6¼/W¼F‡¼{μ'J½r½#޽²½.ͽ%ü½"¾+¾ H¾i¾#‚¾2¦¾"Ù¾*ü¾'¿)C¿m¿ƒ¿ ¿ª¿»¿Ë¿ á¿0ï¿0 À6QÀˆÀ:¥À*àÀ) Á15Á-gÁ/•Á(ÅÁ4îÁd#ÂBˆÂ*ËÂöÂ0Ã7GÃ0Ã6°ÃçÃ"ùÃ$ÄAÄSÄ(eÄ$ŽÄ³ÄÓÄëÄ%Å.*Å-YÅ-‡ÅµÅÍÅ ÝÅ*þÅ)ÆEÆ(aÆ"ŠÆ­Æ!ÌÆ)îÆ/ÇHÇ'hǐÇ(®Ç:×ÇÈ/È!IÈ%kȑȬÈ2ÆÈùÈ&É:É/OÉ'É7§ÉßÉúÉ)Ê)CÊmÊ)Ê%·Ê!ÝÊÿÊË6ËQË iËu˒˰ËÊË2èË8Ì1T̆Ì)œÌÆÌæÌ1Í 6ÍWÍ2mÍ  Í7ÁÍùÍÎv1Î<¨Î åÎ'Ï(.ÏFWÏ.žÏ!ÍÏ0ïÏ" ÐCÐ!^Ð!€Ð"¢ÐÅÐ&ÜÐ>Ñ BÑ(cÑŒÑ¦Ñ»ÑØÑôÑúÑ%Ò9ÒRÒqÒ‘Ò!—Ò¹ÒÌÒßÒôÒÓ('ÓPÓfÓ/|Ó$¬ÓÑÓèÓ#Ô+'Ô3SÔ‡Ô§ÔÄÔãÔþÔÕ :Õ[Õ"wÕšÕ³ÕÄÕÜÕ öÕÖÖ4ÖDÖdÖ$Ö1¦Ö;ØÖ1×F×Y×-vפ×Ä×Ú×Fõ× <Ø$HØmØ3…Ø?¹Ø%ùØ0Ù9PÙ;ŠÙ2ÆÙ3ùÙ!-Ú/OÚ-Ú­Ú,ÍÚ/úÚ *Û8Û@NÛ0ÛÀÛ:ÏÛ
Ü(Ü&BÜi܇Ü)ÜÇÜáÜ&ýÜ$ÝBÝXÝ&tÝ=›Ý@ÙÝÞ3Þ!LÞ&nÞ•Þ¬Þ¿Þ×ÞëÞßß*ß?ß6Tß-‹ß!¹ßÛßîßàà2àEàYàuàˆà¨à¿àßàöàá-áJá^áwá'á:¸á8óá/,â#\â€âšâ´â#Ïâ$óâ4ã&Mã0tã1¥ã'×ã2ÿã$2ä$Wä%|ä0¢äÓä&íäå*.å0Yå0Šå,»åèå!æ)æIædæ~æ˜æ²æÌæìæç"ç=ç8Xç‘ç8¬çåçèè6è!QèsèŒè¨èÃèßèûè-é4Eé;zé¶é#ÓéA÷é'9êaê!ê!£ê;Åê0ë 2ë"Së!vë!˜ë$ºë$ßë9ì6>ì=uì/³ì-ãì:íILí,–í>Ãí4î47îlî'Šî#²î(Öî0ÿî00ï+aï/ï/½ï/íï,ð$Jð]oðÍð@ëð>,ñAkñ7­ñ:åñ2 ò5Sò'‰ò2±òäòóó*:ó-eó'“ó»ó'×óÿóô-5ô(cô,Œô,¹ô,æô)õ=õ,Xõ'…õ­õ1Ìõþõ ö-?ömö&ˆö/¯ö!ßö÷N÷ji÷Ô÷ó÷
ø!ø(1ø=Zø(˜ø-Áø(ïø'ù@ù!^ù<€ùF½ùú#ú!Aú2cú5–ú>Ìú> û,Jû6wû,®û!Ûûýû3ü$Pü%uü)›üÅü#åü%    ý%/ý&Uý+|ý;¨ý&äý þ&(þ&Oþ/vþ2¦þ%Ùþ)ÿþ%)ÿ%Oÿ&uÿ+œÿÈÿ2åÿa3Œ•j"'µÕÞý(:J]t’*¬-×.4<T8‘.Ê#ù6YTZ®9    QCO•Må!3+U++­+Ù,,2-_--»-é--E-s-¡-Ï-ý-+    -Y    +‡    +³    +ß    +
+7
+c
,
+¼
+è
+ +@ -l -š -È -ö +$ +P +| +¨ +Ô + +, +X +„ +° ,Ü ,    *6+a+,¹,æ++?+k+—.Ã*ò*+HAt¶Ç+ß 3*>^7*Õ$$%#J$n$“#¸8Ü$(Mg+‡)³&Ý ?],u¢4¶,ë0=I0‡:¸1ó9%1_3‘5Å1û2-@`1¡?ÓJ6^4•4Ê<ÿ=<3zB®7ñ6)E`A¦)è6#I%m“#¥É'è(9N5g-°&Þ &'E*m%˜*¾$é6%E k'y-¡&ÏöQh*{1¦)Ø- ,0 ,] &Š /± =á &!%F!l!€!!«! Ê!ë!:"?B"‚"$"-Â"ð": #!G#!i#&‹#<²#Rï#;B$>~$8½$aö$JX%;£%jß%KJ&U–&[ì&OH'8˜'aÑ'83(=l(?ª(Yê(D)])?t)^´)=*dQ*C¶*3ú*0.+._+Ž+(¢+Ë+ æ+,4,-K,y,,>¨,ç,'þ,&- =-*K-v- -    -§-º-Ï-!ä-!.(.C.b.3t."¨.Ë.$à.//&=/)d/8Ž/%Ç/)í/0)0&;07b0.š0=É0916A1:x13³1<ç1%$2;J2†2!2#¿28ã23    <3F3[3p3‰3*¦3$Ñ3 ö34 4)4#D4#h4'Œ4#´4Ø4í45"5"B5)e5.5¾5"Ö5;ù5056#f6/Š64º6%ï637&I7%p7J–7á7é7þ7 848)L8+v8(¢86Ë89O95n9$¤91É9<û9"8:)[:0…:,¶:0ã:5;$J;8o;\¨;<$<C<1_<$‘<¶<#Ò<$ö<=":=;]=%™=&¿=@æ=8'>P`>H±>.ú>")?L?c?"~?¡?Á?ß?4ü?1@A@[@6j@>¡@Nà@/A.IADxA"½A4àA7B*MB,xB"¥BÈB3âB)C @C#NC%rC˜C´C ÅCæC-õC #D1DLD+aD D ›D ©DÊDçD,ûDE(EnEˆE›EµEÔErçE‡ZF/âF!G94GnG‚G-›G-ÉG-÷G%H:H8KH*„H¯HÈHßH!úH,III=cI4¡I1ÖI3J3<J3pJg¤J> K KKlK…K K*ºK%åK$ L"0LãSLN7MD†MWËM)#N$MNbrN1ÕNOO65OlO*|O§O ÅO&æO) P27PjP1ŠP)¼P?æP[&Q@‚Q^ÃQ9"R\R)zR¤R0¼R(íR#S,:S<gS>¤S3ãST/T$OT5tT<ªTçT3U:7U=rU°U†ËUŠRVeÝVCW$]W0‚W ³WÔW"ôW3X)KX3uX4©X ÞXÿX6Y4PY4…Y8ºY(óY3Z4PZ;…ZÁZAáZG#[Nk[Nº[V    \^`\c¿\i#]h]ö]v^ö^v_ö_x`ø`zarúambCŠb6Îbc3"cVc;uc5±cçc3d?7d3wd$«d3Ðd&e+eHe(fe5eHÅe2f-Af-of.fAÌf/g>g6^g/•gÅg)ÞghEhGah'©hÑh.íh-iJihii “i'´iÜiði$j3jIjdjƒj žj9ªjGäj<,k0ik.šk*Ék(ôk8l4Vl)‹l7µl+íl+m-EmLsm5ÀmOöm4Fn={nA¹n7ûn53o-io;—o0ÓoNpTSpG¨pBðp53qSiq8½qBöq-9r2grNšrVérZ@sy›sDtZZtNµtCuYHu?¢u?âu<"vJ_vJªv0õv2&w4Yw_ŽwDîwA3xiux/ßxIyIYyY£y\ýy:Zz7•zKÍzŽ{’¨{;|P|k||1—|/É|4ù|O.}q~}1ð}."~˜Q~˜ê~ ƒ&¤MË/€;I€…€—€?²€?ò€72;j%¦<́'    ‚1‚P‚p‚Ž‚/¨‚.؂!ƒ,)ƒ2Vƒ<‰ƒ6ƃ"ýƒ „2>„q„Š„/¤„1Ԅ/…6…T…t… “…´…-Åñ…†/†#H†&l†&“†º† Ï† ð†+‡5=‡s‡&Œ‡!³‡Շ#õ‡"ˆ/<ˆ/lˆœˆ'¹ˆ&áˆ5‰2>‰:q‰¬‰ʉã‰ó‰ŠŠ$%ŠJŠ$hŠŠ(§Š(Њ ùŠ ‹‹%‹$5‹Z‹x‹‹ª‹‹ދø‹DŒ*SŒ    ~Œ-ˆŒ¶Œ$Ɍ0!;G])¥ύꍎ Ž;Ž"VŽIyŽIÎ- ;;!w8™1ҏ075&m,”&Áè‘8 ‘Y‘u‘ ‘œ‘5¼‘ò‘1
’<’-T’9‚’¼’ڒ2ó’1&“X“Cs“·“=֓”"-”#P”(t”&”-Ĕ:ò”1-•;_•H›•ä•0–'1–Y–y–•–/§–ז÷–—4—L—'i—‘—®—ɗ/ڗ4
˜)?˜4i˜ž˜»˜!̘"î˜2™!D™+f™,’™¿™4ޙš''š#Ošsš!‘š³š˚'çš?›O›c› ƒ›¤›ě+ã›%œ5œ.Nœ!}œ!Ÿœ+Áœ1휠3@#t˜±ϝ:å" ž&Cžjž4ž(¶žߞüž0 Ÿ9=Ÿ!wŸ5™Ÿ,ϟ0üŸ- M m ‹ ž ?± ñ  ¡-¡I¡?g¡*§¡Ò¡:í¡(¢->¢%l¢9’¢"̢£2£H£a£'z£(¢£Ë£$è£! ¤/¤)M¤(w¤ ¤2º¤*í¤E¥D^¥/£¥Ó¥3î¥#"¦<F¦Gƒ¦V˦V"§Ry§Ļ1¨6K¨6‚¨&¹¨4à¨W©5m©)£©3Í©*ª.,ª1[ª=ª)˪Eõª;;«8w«F°«C÷«C;¬1¬0±¬1â¬%­X:­'“­E»­:®/<®9l®!¦®*È®Nó®0B¯=s¯3±¯@å¯>&°1e°0—°Ȱ%ç°4 ±#B±9f±. ±-ϱ5ý±83²=l²2ª²Rݲ00³<a³7ž³7Ö³(´a7´A™´;Û´2µ2Jµ'}µ/¥µ3Õµ+    ¶-5¶/c¶8“¶Z̶Q'·+y·"¥·*È·7ó·-+¸.Y¸ ˆ¸&©¸"и6ó¸*¹@D¹<…¹!¹Cä¹9(º3bº–º¶º,Õº4»H7»O€»;л, ¼%9¼,_¼7Œ¼GļE ½7R½(нB³½Vö½YM¾;§¾(ã¾+ ¿28¿.k¿'š¿3¿Gö¿E>À%„À ªÀ4ËÀEÁAFÁ2ˆÁ5»ÁñÁ%ÂO5Â.…Â3´ÂBèÂ%+Ã0QÃ3‚Ã1¶ÃèÃ=Ä)FÄ2pÄ£Ä9ÀÄ3úÄ0.ÅP_Å>°Å3ïÅ3#ÆWÆ7wÆ(¯Æ0ØÆ+    Ç/5Ç>eÇ0¤ÇJÕÇ% ÈKFÈN’È>áÈ( ÉVIÉ% É*ÆÉñÉTùÉTNÊ£Ê*ÃÊ#îÊ!Ë$4ËBYË'œË.ÄËóË"Ì!6Ì!XÌ"zÌ"Ì3ÀÌ"ôÌÍ7Í)VÍ<€Í½Í ÝÍëÍ    üÍ
Î    Î+ÎGÎ5dÎ<šÎ8×Î=Ï@NϏÏ>¢Ï"áÏEÐJÐ-LÐ7zÐ%²Ð#ØÐ"üÐ$Ñ6DÑ){Ñ¥Ñ(ÄÑíÑ%Ò%)ÒOÒjÒ&ˆÒ¯Ò;ÍÒ    Ó& Ó4ÓIÓ]ÓuÓ4Ó3ÂÓ3öÓ *Ô 6Ô$DÔ#iÔ+Ô%¹Ô/ßÔÕ/.Õ?^Õ8žÕ×Õ+ñÕ)ÖGÖ'`Ö8ˆÖ;ÁÖýÖ×+3×+_×+‹×+·×+ã×%Ø"5ØXØqØ<‘Ø&ÎØ(õØ*Ù,IÙvÙŽÙ ªÙ¸Ù/ÉÙ@ùÙ.:Ú$iÚ5ŽÚ4ÄÚ4ùÚ:.Û-iÛ<—Û ÔÛáÛüÛÜ%0Ü%VÜ!|Ü'žÜÆÜàÜçÜ.Ý
2Ý=Ý"XÝ${Ý Ý-·ÝåÝûÝÞ0(Þ&YÞ€Þ –Þ*¤ÞÏÞåÞ"÷Þ ß&ßCß `ß%ß§ß½ßÎßàßòß à&à%7à/]à%à,³à,àà. á,<á,iá,–á,Ãá*ðá&â/Bârâ‡â â"œâ¿âÞâ ýâ7
ãBãRãfãoã'Žã¶ã+Õã'ä")ä%Lä#rä)–äÀäàäå! å#Bå!fåˆå å¹å5Íå'æ +æLæaæsæ|æ˜æ²æ0Òæ>ç!Bçdç „ç¥çÀç)×ç èè)è)Aè"kè*Žè*¹èäèþèé)é'Aéié ˆé©éÄé#âéê&êEêXêkê#„ê(¨ê3Ñêëë/ë$Iënë…ë¢ë´ëÎëèë*ì ,ì 9ìFìdìvì‰ì™ì®ì+Ììøì,í>í Xí#yííºí%Ùí ÿí î$9î^î}îŽî î±î"Îîñîï%ï>ïMï`ï!qï3“ï'Çïïïð" ð.Cð'rð7šð.Òð-ñ/ñMñ*hñ&“ñ&ºñ0áñò*0ò[ò@tò$µò0Úò  ó,ó Kó'ló”ó+³ó$ßó&ô+ôAôZôrôô"¯ô    ÒôÜôûô( õ5õ'Nõvõ‹õ õ¹õÍõéõ6    ö>@ö)ö©ö Æöçö÷÷.6÷/e÷•÷&®÷Õ÷í÷ø !øBøaø,|ø©ø(¼ø2åø4ù2Mù€ù" ù&Ãùêù,ú(1úZújú$ú¤úÄú&áúû#û ;û*\û%‡û­ûÍû&æû ü +üLü)lü–ü²üÍü#âü-ý 4ý$Uý4zý*¯ý1Úý1 þ0>þoþ"…þ¨þÄþáþ'øþ ÿ1ÿ"7ÿZÿ'bÿŠÿ&žÿÅÿ!Ùÿ/ûÿ(+)T#~#¢"Æ é
**(U$~ £±Çß.ù!(BJ ¡ÂÝ$ø3Oc1xª'Ã#ë.Jd}”¦,·ä*þ)C+Y…™° Ç Õ ãñ*1&Ho °ÄÚ!ó5Toƒ¹Ùù  7X j!‹­Êà/ù3)    +]    ‰    $     ,Å    4ò    &'
6N
6…
¼
Â
"×
!ú
 !2 "T w ’ $® %Ó ù  $2 W i  ‰ '¨ 'Ð $ø ) %G %m $“ %¸ Þ ú )3] }ž­ËÚOéU9Xè÷!1Kc{š©ºÉãü8O_%n&”%»+á %#Dhw:†ÁÐâý#2.Ap!‡"©ÌÝð"1&Xj•©½Øï&2Yo‚–ªÅÙï':M\tƒ¢(± ÚJç2Ngƒ™ª¾Ñå!ú*<g{˜­ÁÓê"AUr¬ÁÒ&î*0@qަÁÙø 1Mc!€¢µÍå0Ne}¨À+×'+G ^'j$’·×ç<\3v ª ¸"Æ é
-L fr«Éèþ  + L  h ‰ (§ "Р/ó &#!J!#d!"ˆ!%«!5Ñ!&"?." n" {"‰"‘"¨"#Æ"ê"!ñ"#/#/>#$n#$“#/¸#!è# 
$)+$)U$)$-©$×$ó$%1%0Q%+‚%!®%#Ð%/ô%$&-@&n&!Š&9¬&%æ&) '(6' _'/€'2°'$ã'-(06(Rg($º(5ß(),)+J)'v)ž)¼)!Ø)*ú)%*C*c*#}*1¡*Ó*
æ*'ñ*"+!<+!^+ €+!¡+"Ã+"æ+    ,7(,/`,,¯,$Ë,&ð,--'E-m-#Š-#®-Ò-ï-.$).+N.!z.!œ.(¾.0ç.)/B/X/*p/#›/#¿/7ã/50Q0 e0#†0 ª0Ë0"â0$1.*1Y1j1†1¢1¾1Ú1$ó1)2B2Q2a2x2‹2Ÿ2º2 Ô2!õ2 3!83 Z3!{33½3Ý3ý3 4(4@B4(ƒ4¬4#Ì4(ð45.85g5‚5'œ5Ä5Û5ë56. 6!O6q6‡6 £6"Ä6)ç6;7M7/k70›72Ì7#ÿ7#8@8!`8a‚8/ä8"9*79@b9£9#¿9)ã9" :&0:W:p::0š:Ë:ä:;'";J;&b;*‰;'´;Ü;ö;"< 6<W<i<€<“<¨<¸<Ì<à<ô<==,=>=P=a=s=‡==±=Â=Ô=æ=÷= >>1>C>W>i>{>>¡>³>Å>×>ë>ÿ>?%?7?K?]?q?ƒ?—?¨?¼?Î?à?ò?@@*@<@P@b@v@Œ@¢@´@Æ@Ø@/ê@A*ACA]ApA†A›A®AÈAæABB!-B!OBqBB¨BÈBÚB óB&C';CcCCœC/­C)ÝC"D.*D0YDŠD#ªD"ÎD!ñD E"4EWE!uE—E(ªEÓEçEF1"FTF+rF>žF ÝF&þF%G':GbGGŸG¼GÐGëG H#H:HXH iH#vH(šH*ÃH+îHI*IBI\I wI ˜I ¹I ÚI ûI J =J ^J J  J!ÁJ ãJK""KEKeKK˜K)¶K)àK)
L4LTLpLŒL¨L¿LÛLòLM.MJMfM‚MžM/ºM$êM%N5N LN+mN™N¯NÊN ãNOO*OGOaOOœOµO)ÔOþO)P>P#TPxPŒP$ªP ÏP*ðP+Q"GQjQ„Q¤Q%ÄQêQRR47R2lR,ŸRÌRèRûRS($SMS(mS(–S&¿SæS5úS0TOTjT TŒTžT¾TÑTãT#ýT!!UCU)aU ‹U¬UÌUìU+ V(8VaV"V ¤VÅVåVW# W0WPWpWJ‡WCÒW*X$AXfX"X¤X¿X ÎX"ïXY!0YRYoYŒY Y¾Y ÎYïY!Z,1Z^ZmZ'…Z­ZÄZ&âZ    [$$[$I[n[‹[¢[+À[ì[! \".\Q\%m\“\$®\Ó\$î\&]$:]/_]7]6Ç]'þ]%&^L^j^!}^Ÿ^¼^ Ö^"÷^G_3b_'–_$¾_ã_`2`&R`)y`£`@Â`$a(a=a=Pa.Ža*½a*èa,b,@bmb„bI”bÞbþbc!5cWc#kcc­cÌc(ßcdd7dRd!od‘d§d¶dÉdÙd ðd0eBe Se!te"–e"¹eÜeûe"f;fWfofD‡fÌfåfúf g$0gKUg$¡g#Æg"êg h,hEhYh wh„h £h#Ähèhii.i/=i mi#{i#Ÿi"Ãi"æi    j)j'Gjoj2†j¹jÖjñjk%%kKk4[k&k·k+Çkókl*+lVl$kll¯lËlÝlâl élöl, m19m&km1’mLÄmHnZn"qn”n©n&Çn$în(o$<o$ao(†o¯oÂoÕoôop:+p9fp9 p&Úpqq*;q/fq%–q)¼q"æq    rr$-rRr;crŸr!¼rÞr=ör4sNsHes®sÈsèsüst8tWtvt%“t"¹tÜt%øt!u!@ubuu!žuÀuÛu#òuv    v    (v 2v>v3Rv†v—vªv(Èv)ñvw(0w-Yw4‡w¼w"Úw'ýw'%x    MxWxrx.x¾x"Ûx*þx)y>yXyryy ©y1Êy1üy .zOzjz%‡z­z&Éz3ðz${*@{%k{‘{ª{$Ç{#ì{|)|A|_|t|'Š|&²| Ù| ú|}(})E}(o}˜}³}É}Û}+ì}~H4~}~%œ~,Â~ï~ #,6cƒ+£Ïì€A€\€z€—€¬€Á€)ր0<8m¦=Ɓ(‚(-‚V‚3o‚£‚Á‚؂ ƒ<ƒPƒ%dƒ!Šƒ'¬ƒԃóƒ„!2„;T„$„#µ„ل ô„2…H…!X…#z…ž…"½…à…þ…$†$=†%b†ˆ†5¨†'ކN‡8U‡0އ$¿‡ä‡'ˆ*ˆ"Hˆkˆ}ˆ
•ˆ  ˆÁˆ$ވ    ‰% ‰3‰%L‰r‰‰®‰͉4牊$7Š \Š!}Š"ŸŠ"ŠåŠ‹/‹K‹`‹&w‹ž‹ ¶‹׋"ó‹Œ5ŒTŒsŒ’Œ>£Œ6âŒ!;5J4€)µ)ߍ-    Ž7Ž$MŽrޒޝŽ&ǎ-îŽ(E^v'’!ºN܏2+^uސ£¸̐â/þ4.‘.c‘.’‘4Á‘.ö‘.%’,T’9’9»’9õ’:/“9j“:¤“9ߓ9”WS”W«”.•2•$G•!l•Ž•ª• ½•0ޕ#–3–$N–s–!“– µ–֖!ò–$—.9—(h—.‘—-À—î—'þ—"&˜+I˜3u˜©˜+ɘõ˜™.™%G™@m™2®™$ᙚ š;š*RšD}š$š0çš›,›A›U›k››’›§›»›Лä›ù›œ#œ9œSœgœzœ‹œ¥œºœМæœùœ 9$C^(¢(˝%ô(ž>CžB‚žUŞUŸUqŸVǟV Vu UÌ U"¡Ux¡VΡV%¢V|¢UÓ¢U)£U£VÕ£V,¤Vƒ¤-Ú¤+¥04¥0e¥1–¥%È¥+î¥+¦+F¦,r¦+Ÿ¦+˦,÷¦,$§*Q§,|§Z©§Z¨[_¨[»¨Z©[r©'Ω)ö©) ª)Jª-tª.¢ª>Ѫ4«>E«!„«¦«Æ«<Ø«2¬ H¬i¬†¬+¤¬Ь1î¬) ­'J­r­%‹­±­"Ï­!ò­)® >®_®~®–®´® É®ê®ý®2¯/N¯/~¯(®¯ׯ&ñ¯°#7°"[°~°*™°!İ æ°,±4±3T±ˆ±¦±»±-б'þ±=&²8d²;²Ù²ï²% ³$1³6V³³£³³Ö³é³0´#1´ U´"v´#™´$½´'â´
µ!(µ*Jµuµ•µ#¬µ Ðµñµ! ¶.-¶\¶r¶&’¶¹¶7Ͷ2·48·0m·#ž·!·ä·¸¸5¸O¸c¸'x¸) ¸!ʸì¸þ¸"¹4¹K¹g¹z¹¹ª¹ĹÞ¹"õ¹º,.º[ºqº ºœº®ºȺáºôº* »)7»a»»ž»¹»Ò»ì»¼  ¼,¼L¼b¼¼›¼¸¼ Ó¼ ô¼"½"#½F½[½#p½.”½4ý(ø½.!¾2P¾$ƒ¾&¨¾Ͼí¾
¿+)¿U¿t¿ˆ¿¤¿"À¿ã¿ø¿)À9ÀTÀiÀ~À’À§ÀP¾ÀÁ&(Á)OÁ+yÁW¥ÁýÁ&Â1;Âm‰Ÿ¸Â(ÇÂ)ðÂ4ÃOÃbÃzÏéÃÈÃ×Ã0òÃ$#Ä!HÄjÄ#‰Ä­Ä!ËÄíÄ Å+ÅAKÅ,Å$ºÅ#ßÅÆ!!Æ(CÆ lƍƥƿÆÕÆ7íÆB%Ç,hÇ'•Ç6½Ç+ôÇ6 È,WÈ/„È0´È5åÈÉ0ÉIÉ[É!nɐɦÉ"¹ÉÜÉAîÉ 0Ê<Ê    KÊAUÊ.—Ê ÆÊçÊ>Ë5DËzË™Ë
žË©Ë&ºËáËõËÌA/Ì6qÌ2¨Ì2ÛÌ<Í2KÍ5~Í>´ÍóÍ Î%(Î"NΠqΠ’Î"³Î!ÖÎ%øÎÏ .ÏOÏ`Ï~ϛϳÏÐÏäÏ øÏ    ÐìÐûÑGýÑGEҍÒ,£Ò ÐÒ*ÝÓ=Ô^FÔ ¥Ô ²Ô¾ÔGÓÔBÕ[^ÕDºÕLÿÕ:LÖF‡ÖJÎÖ>×bX×#»×ß×*ú×-%ØSØ'ZØ‚Ø'ˆØ2°Ø+ãØoÙ Ù] Úf~ÚaåÚ:GÛI‚ÛKÌÛOݐhÝcùÝ^]ÞU¼ÞußbˆßSëßQ?à€‘à–áš©á[DâP âTñâUFãWœãXôã@M䊎äJåVdåZ»åNæIeæT¯æNçlSçkÀçS,èG€è¹ÈèG‚é?ÊéŒ
êa—ê`ùêCZëLžëeëëcQìcµì©íeÃí·)îsáî™UïSïï`Cðh¤ðF ñCTñH˜ñNáñn0ò`ŸòNódOóh´óIôcgô^Ëôˆ*õ³öhÈö1÷/@÷8p÷;©÷å÷&÷÷:ø Yø9føB øAãø9%ù%_ù)…ù¯ùÃù2Õù#ú5,ú5búA˜ú:Úú'û6=û)tû žû ¿ûÌû%åû" ü-.ü6\ü(“üS¼üVý"gýFŠý)ÑýKûýFGþ!Žþ4°þNåþ4ÿEÿWÿsiÿSÝÿ'1Yv+•1ÁVóGJ…’-GBSŠ.Þ &:6:q+¬Ø4ñ&4:3o0£.Ô1T5AŠ6Ì6I:S„Ø9ó>-XlkÅR1N„6ÓV
   Ya    ;»    <÷    C4
Xx
dÑ
W6 wŽ Z ^a ZÀ [ :w /² 6â /PI/š3Ê#þ9"@\))Çñ0 #=%a0‡-¸æ ÿ 05?fF¦qí1_G‘_ÙF9p€"ñ9RNL¡Lî`;!œ*¾4éw%–*¼çEL/k!›!½0ßB'S${5 6Ö3 FA:ˆ6Ã5úB06s?ª6êE!?g8§9à6>Q>/Ï,ÿ,/K{™?²Bò,5?b4¢.×C>JM‰7×8 @H c‰ Ií 67!6n!2¥!RØ! +" L"m"P‡"DØ"D#3b#5–#&Ì#=ó#.1$C`$5¤$YÚ$A4%(v%/Ÿ%-Ï%5ý%+3&O_&B¯&#ò&C'+Z'*†'"±'+Ô'((4)(-^('Œ(:´()ï(;)CU)>™)1Ø))
*B4*#w*5›*KÑ*G+)e+7+1Ç+ù+',*>,'i,'‘,)¹,)ã,0 -G>--†-Q´-.!.7.U.Bs.¶.Å.-å.&/::/7u//­/3Ý/[0Gm0_µ0%15;1Kq1:½1,ø1Q%2uw2Qí2D?3-„3*²3+Ý3"    4<,4=i4.§4KÖ42"5PU5/¦51Ö5+6;46"p6*“6P¾6.75>7$t7=™7-×78 8&<8c89€8)º8!ä8.9598O9!ˆ9ª9À9)Ò9&ü9/#:S:/s:B£:+æ:;"/;0R;"ƒ;*¦;&Ñ;%ø;&<5E<&{<"¢<!Å<ç<Q=/W=&‡='®=<Ö=+>)?>3i>%>"Ã>/æ>.?*E?;p?5¬?7â?2@3M@9@5»@7ñ@2)A2\A+A[»A B18B0jB5›B9ÑB C!)CKC/cC"“C(¶C'ßC'D'/DWD2vD©D¾D+×D/E/3E5cE&™E,ÀE,íE-F#HF(lFR•FèF&G"-G"PG>sG<²G5ïGA%H5gH"HBÀH&I*I#@I&dI5‹I:ÁI,üI-)JWJ+rJ)žJÈJ!åJK&'K;NK;ŠK%ÆKìK*ûK1&LAXL%šL"ÀL4ãL1M:JM…M£M¾M'ÞM1N08N5iNJŸN4êN0O;PO@ŒO-ÍO2ûO&.PHUPžP*ºP#åP    Q8&Q+_Q.‹QºQÏQSèQ+<R#hR*ŒR!·R"ÙR=üR<:S5wSB­S%ðST6T.PTT!œT%¾T$äT     U7*U<bU.ŸUAÎU"V!3V/UV"…V9¨V,âV%W?5W-uW9£WÝW(ûW*$XOXoXˆX¢XC¦X;êXD&YDkYP°YKZJMZ?˜ZRØZG+[Ds[F¸[Eÿ[EE\E‹\GÑ\J]Kd]A°]+ò]<^$[^/€^*°^*Û^#_*_'G_o_9_ É_4ê_7`"W`?z`Lº`7a)?aia*‰a´aÍa-áa5b>Eb/„b#´b%Øb&þb0%c3VcQŠcRÜc//d_d4}d2²d/åd!e7eTe red€eåegöe^fafefyf€f>‡f5Æfüf ggg *g7g Og#[g#g#£g7ÇgFÿgFFh0h:¾h2ùh,i8Di+}i/©i*Ùi'j(,j'Uj'}j&¥j$Ìj(ñj&k)Ak!kk%k!³k#Õk-ùk3'l [l|l/œl1Ìl8þl17mim(ˆm4±m#æm&
n$1nGVn&žnÅnÞnHçn&0o#Wo{o/’o2Âoõo"p3p 9pFp[pspp¯pGÆp1qG@q]ˆq$æq rrMr
gr rr-“r1Ár5ór )s Js#ks1s3Ás0õs$&t*Ktvt<‘t5Ît+u-0u9^u$˜uM½u) v5v:Fvv"žv7Áv.ùv(w18w=jwC¨wìw7
xDBx-‡xkµx!y %y 2y ?yBLySy4ãyBz [z hz uz ‚z z4œz8Ñz
{ %{2{ M{ Z{ g{'t{ œ{8©{ â{ï{ò{ |"|7| Q|Zr|Í|ÊÜ|§}L­}Jú};E~k~Xí~?F2†5¹8ï5(€7^€*–€’Á€TTâ_7‚R—‚$ê‚DƒRTƒ(§ƒ;ЃD „3Q„2…„M¸„&…=-…;k…;§…9ã…4†<R†e†Tõ†\J‡K§‡6ó‡=*ˆ2hˆ›ˆ¶ˆ;̈>‰-G‰:u‰1°‰)â‰A Š-NŠ |Š6Š ÔŠYõŠ,O‹+|‹J¨‹ió‹4]Œ@’ŒEӌV:p;«\çBDŽY‡ŽáŽ o…|PCSO—)ç$‘]6‘k”‘N’FO’e–’]ü’bZ“^½“c”P€”oєaA•=£•2á•N–Oc–C³–g÷–I_—O©—pù—Kj˜Q¶˜D™TM™+¢™ Î™ ï™lš;}šC¹šQýšO›2l›4Ÿ›Tԛ[)œ>…œ=Ĝ,`/[SìI@žMŠžN؞/'ŸEWŸ.Ÿc̟A0 nr *á A ¡N¡8h¡5¡¡Wס:/¢`j¢nË¢S:£;Ž£<Ê£M¤mU¤Xäa¥b~¥bá¥DD¦6‰¦3À¦ô¦1§5D§iz§*ä§8¨1H¨0z¨-«¨0Ù¨-
©8©5X©>Ž©LÍ©@ª)[ª2…ª=¸ªXöªSO«„£«4(¬W]¬/µ¬,å¬I­?\­:œ­[×­73®.k®.š®\É®$&¯7K¯ƒ¯4ž¯BÓ¯L°Wc°2»°2î°4!±0V±‡±' ±ȱ3â±%²F<²,ƒ²'°²2زH ³T³Fm³=´³ò³5´ƒH´]Ì´*µHµ8gµ5 µ*Öµ5¶J7¶\‚¶ß¶-ü¶,*·,W·,„·,±·6Þ·E¸9[¸•¸5±¸[ç¸+C¹”o¹4ºJ9º3„ºI¸º*»-»M»$i»$Ž»$³»%Ø»%þ»G$¼;l¼@¨¼+é¼-½_C½.£½3Ò½7¾0>¾0o¾) ¾$ʾ5ï¾<%¿6b¿)™¿2ÿQö¿NHÀ3—ÀEËÀ!Á&3Á[ZÁ>¶ÁFõÁ6<ÂEsÂ:¹Â!ôÂ"Ã*9Ã2dÃf—Ã,þÃ-+ÄSYÄ>­ÄHìÄ5Å%QÅ7wÅ3¯Å<ãÅ: Æ[Æ)tÆDžÆ9ãÆ3ÇOQÇ6¡Ç;ØÇÈ>,È$kÈ È œÈ¨ÈÅÈÙÈ éÈ8öÈ /É;ÉJÉ \ÉjɇɝɥɮɽÉÖÉïÉ ÊÊ)ÊAÊVÊ eÊrÊŽÊ©ÊÃÊ ÝÊêÊËË 2Ë@Ë-^ËBŒË-ÏËœýË<šÌo×Ì3GÍ3{Í:¯ÍêÍ8Î?Î_Ît΍ΩÎ"ÈÎ!ëÎB ÏJPÏ:›ÏjÖÏqAÐg³Ð'Ñ9CÑ,}ÑªÑÆÑæÑÿÑÒ1Ò#KÒ#oÒB“Ò,ÖÒ0Ó04Ó5eÓ›Ó!¶Ó6ØÓCÔ@SÔt”Ô`    ÕdjÕjÏÕg:Ö:¢ÖZÝÖU8×2Ž×5Á×R÷×=JØFˆØ%ÏØ/õØ5%Ùx[Ù'ÔÙ%üÙi"ÚYŒÚ3æÚÛ@7Û<xÛ2µÛRèÛ+;ÜAgÜ}©Ü.'ÝKVÝb¢ÝHÞ<NÞx‹ÞTßTYßI®ßJøß_Càc£à?á*GáBrá"µá:Øáâ.â'Mâ5uâB«â)îâ'ã*@ã4kã. ã3Ïã ä6$äT[ä%°ä9Öä8åHIå>’å4Ñå)æ)0æ+Zæ/†æ:¶æ:ñæ¤,çoÑç2Aè-tè#¢è(Æè”ïè„é¢é¾étÐéHEêKŽêCÚêLëLkë;¸ëbôëFWìcžì`í*cíŽí£í0¸íéíúí6 îBî]îrîŠîŸî®î·î2Æî#ùîŒïzªïŸ%ð¤Åðtjñ}ßñZ]ò™¸ò/Ró+‚ó®óÆóßóG÷óF?ôJ†ôEÑôõ"2õ#Uõ*yõ,¤õ>Ñõ!ö2öRö6gö5žö`Ôö15÷<g÷4¤÷2Ù÷ ø&,ø(Sø0|ø ­øÎøâø-÷ø1%ù'Wù'ù§ù*¾ù+éù4úJú:iúB¤úBçú<*û8gûP ûXñûqJüG¼üqý#vý2šý5Íý=þ!AþcþC~þ>Âþ.ÿL0ÿv}ÿ)ôÿ)%H#n ’³Ñè$%<&b&‰(°(ÙCGFDŽ"Óö2 .SE‚EÈ(P7^ˆEç(-EV*œGÇ*G:*‚f­‚4—GÌ42I|?›NÛN*    ay    3Û    .
J>
V‰
*à
( U4 =Š 5È 0þ ./ (^ 2‡ hº 1# U Dm ² $Ñ /ö &!<^8y6²,éi@€QÁ!;5;q9­9ç=!=_;;ÙB=X@–?×B<Z?—?×I a!‚ ¤ÅoäIT*ž.É0ø:)"d$‡B¬:ïÊ*@õm66¤4ÛIBZ»”Ô(i,’?¿ÿSNq(À+é##9D]c¢A*H9s0­;ÞO5j8 AÙ-]I\§t Jy 5Ä Lú %G!(m!4–!nË!G:"I‚">Ì"> #>J#P‰#XÚ#,3$(`$5‰$7¿$4÷$4,%4a%4–%5Ë%5&67&6n&6¥&6Ü&6'6J'6'6¸'6ï'6&(6](6”(4Ë(4)45)4j)4Ÿ)4Ô)5    *4?*4t*4©*4Þ*6+6J+6+6¸+4ï+4$,4Y,4Ž,4Ã,4ø,4--4b-4—-4Ì-5.57.3m.4¡.4Ö.5 /5A/4w/4¬/4á/407K03ƒ03·04ë0E 1Jf1J±1@ü1F=2<„2CÁ2D3LJ3z—3»4=Î4/ 5%<5'b56Š52Á5ô5  6,6K6%d6HŠ6&Ó6;ú6(679_7™7´7Ñ7á7 õ788C*8Cn8R²8)9Z/90Š9-»9eé9@O:=:2Î:C;‡E;OÍ;1<O<Hk<Q´<?=BF=‰=%§=+Í=ù=
>B>$^>7ƒ>'»>ã>)?8*?7c?7›? Ó?ô? @9$@^@ |@.@)Ì@'ö@.A5MA9ƒA/½A3íA/!B8QBXŠB.ãB-C@C%`C†C&žCFÅC* D"7DZDHyD6ÂDfùD!`E4‚E·EÒE0íE:F2YF/ŒF+¼F/èF'G"@G    cG/mG3G&ÑGøG]H7oHS§H"ûH?I1^I&IF·I)þI#(JILJ+–J9ÂJ2üJ#/K‹SKgßK$GL#lL$L]µL+M/?MAoM*±M"ÜM%ÿM7%N+]N‰N2¨NSÛN7/O/gO5—O$ÍO%òO$P=P,CP+pPœP+¹P.åP Q$ QEQXQkQ!€Q¢Q3·QëQR/R-GRuR#“R,·R4äR>SXS%xS žS¿S%ÚS(T))T ST)tT&žTÅT&äT* U6U MU,nU›U µUÖU#ñU0VOFV0–VÇVÙV7÷V3/WcW-~WS¬WX!X8X\RX?¯X6ïX@&YNgYB¶YGùYIAZ.‹ZFºZ4[!6[4X[:[È[Ø[Tö[AK\\W¥\ý\]+4]`]}]7’]Ê]ä]+^,^I^^^6z^4±^1æ^_._&F_&m_”_ª_¼_Ó_æ_ú_ `"`6`6J`*`¬`Ë`Ý`!ï`a$a6a Iaja$|a¡a$·aÜa$òab!-bObbbzb)’b5¼baòb<Tc"‘c´c*Ôcÿc8dERdY˜dDòd=7e:ueG°e8øe.1f.`f!f2±fäf:g>g+]g5‰g5¿g5õg%+h5Qh#‡h«hÉhæhii#<i`i~iœiºiCØijC:j~jœjºjØj$öjk7kVktk’k°k4ÎkVl7Zl’l+±lOÝl&-mTmomŒm\©m;n,Bnon.Œn.»n1ên1o[NoPªo`ûo/\p-ŒpAºpgüpFdqM«qLùqFFrr-­r>Ûr9s6Ts6‹s1Âs5ôs5*t5`t2–t4Étþt.€uW¯u]vkevUÑvc'wH‹wVÔw3+x7_x—x²x-Òx$y9%y>_y,žy&Ëyòy. z.<z)kz-•z-Ãz-ñz*{3J{,~{.«{"Ú{/ý{/-|B]|6 |×|%ò|W}3p}¤}|¾}•;~?Ñ~-I-\>Š*ÉEô8:€)s€€6¹€Gð€U8ށ2«6ށ9‚GO‚O—‚?ç‚-'ƒ>Uƒ7”ƒ̃ìƒ7 „9D„5~„9´„5î„9$…&^…&……'¬…,ԅ8†':†b†)€†(ª†:ӆ8‡5G‡9}‡&·‡&އ'ˆ,-ˆZˆ8xˆ±ˆ{ш‹M‰–Ù‰OpŠ-ÀŠîŠ-ýŠ+‹@‹_‹t‹ ƒ‹‘‹ ¬‹͋>ê‹H)ŒOrŒ)ŒEìŒW2BŠK͍]ŽŠwކc‰níc\\À3‘5Q‘5‡‘5½‘5ó‘6)’6`’7—’7ϒ7“7?“7w“7¯“7ç“7”7W”7”7ǔ7ÿ”57•5m•5£•5ٕ5–5E–6{–5²–5è–5—5T—7Š—7—7ú—72˜5j˜5 ˜5֘5 ™5B™5x™5®™5ä™5š5Pš6†š6½š4ôš5)›5_›6•›6̛5œ59œ5oœ5¥œ8ۜ44I5~p´%ž 8ž?Yž™ž8¹žIòžK<Ÿ6ˆŸ2¿Ÿ2òŸ1% 2W 2Š 1½ Nï >¡.X¡/‡¡3·¡0ë¡6¢1S¢(…¢2®¢/á¢$£;6£r£B£:Ò£7 ¤CE¤7‰¤@Á¤?¥FB¥?‰¥AÉ¥C ¦?O¦?¦HϦ?§EX§\ž§<û§;8¨Bt¨J·¨U©<X©^•©8ô©E-ªfsª\Úª27«Bj«A­«Fï«6¬$N¬'s¬H›¬Iä¬.­*N­Py­Ê­3å­.®(H®&q®/˜®2È®-û®9)¯/c¯P“¯=ä¯"°:5°Dp°9µ°$ï°{±±*¢±Uͱ:#²F^²J¥²Fð²;7³Es³G¹³/´/1´a´}´-´1½´4ï´0$µVUµI¬µ!öµ?¶LX¶@¥¶gæ¶6N·8…·C¾·N¸}Q¸\ϸV,¹]ƒ¹šá¹l|ºN麝8»\Ö»V3¼Š¼c ½Tp½ˆÅ½JN¾`™¾Sú¾yN¿È¿#æ¿z
À™…À^Áˆ~ÁiÂ9qÂN«ÂCúÂ>Ã.\Ã%‹Ã-±ÃßÃ?òÃ02ÄcÄ$~ÄF£ÄêÄ<Å"?ÅbÅ:qŬÅÇÅÚÅ óÅÆ&1Æ+XÆ4„Æ+¹Æ6åÆÇT0Ç;…ÇÁÇ7ÓÇ È%%È(KÈ(tÈWÈ1õÈ5'É]ÉxÉ:“ÉXÎÉF'Ê^nÊNÍÊOËPlËN½ËK Ì8XÌS‘Ì!åÌ3Í$;Í]`Í1¾Í ðÍ-þÍ,Î$JÎ!oÎ;‘Î4ÍÎÏÏ3ÏBÏ_ÏÏ2ŸÏ%ÒÏøÏ!Ð"8Ð.[Ð.ŠÐ5¹Ð:ïÐ2*ÑV]ÑA´ÑEöÑ><ÒA{ÒM½Ò( Ó]4Ó0’Ó9ÃÓYýÓWÔhÔ~Ô-“Ô!ÁÔ<ãÔ9 Õ:ZÕf•Õ'üÕx$ÖWÖ%õÖ9×WU×+­×VÙ×I0ØMzØGÈØKÙ3\Ù8ÙtÉÙ>Ú9\Ú–ÚE´Ú0úÚ0+Û3\Û,Û4½Û*òÛPÜ4nÜ6£ÜZÚÜJ5Ýl€Ý\íÝ5JÞ)€Þ&ªÞ8ÑÞ/
ß,:ß%gß&ßH´ßýß#à9àHMàV–à_íà%MáNsáhÂá0+âH\âI¥â;ïâX+ã.„ã!³ãFÕãAä^ä6pä5§ä%Ýäå.å
Få5Qå ‡å!“åµå=Ïå æ!æ%5æ$[æ€æ8æ½Öæ”ç³çÆçßçüç è²³è?fé-¦éNÔé#ê$7êC\êC êCäê(ë%GëTmë=Âë$ì-%ì3Sì7‡ì0¿ìðìb
íWmíVÅíKîKhîK´î{ïY|ï(Öïÿïð-8ð=fð2¤ðM×ðH%ñJnñe¹òVóUvó*Ìó,÷óp$ôU•ôëô+õh2õ›õ;®õ8êõI#ö1mö9ŸöKÙö*%÷+P÷=|÷Vº÷øh“ø‚üøFù-Æù,ôù!ú=>ú'|ú¤ú'Ãú<ëúS(ûB|û¿ûÓû4ñûM&üKtü6Àü@÷üK8ýI„ý1ÎýÆþÍÇþ‚•ÿ.0<_,œ.É)øK"0nKŸLë#8\NzLÉLPc+´KàM,Sz&ÎYõ_Of¯fn}vì{cß€a—â—z    —
—ª
™B —Ü ™t — n¦ [/N‹ ÚKû"GSjM¾ K,WxKÐ&KC)¹!Ù+ûQ'Sy@Í;;J<†RÃ;0Rgƒ=ë$)(NwjŽkù!e,‡D´4ù-.\"|2Ÿ(Òû/4G|+™/Åõ K lPì<=Hz@ÃEGJI’;ÜjHƒMÌHuc+Ù–nœh vt>ëW* F‚ AÉ N !hZ![Ã!R"Fr"@¹"[ú"NV#_¥#H$PN$qŸ$†%”˜%Ÿ-&KÍ&k'h…'Pî'a?(E¡(Dç(P,)‹})Y    *>c*D¢*[ç*}C+[Á+^,’|,G-qW-KÉ-œ.s².i&/B/dÓ/¯80¶è0Ÿ15·1+í1+2-E23s2;§2bã2˜F3:ß374öR4ýI59G636bµ6B7P[7¬79Ê7N8NS8R¢8`õ80V9G‡9?Ï9(:,8:)e::B¬:Iï:89;\r;FÏ;b<Qy</Ë<<û<28=&k='’=?º=7ú=:2>$m>&’>%¹>'ß>+?N3?5‚?9¸?+ò?2@5Q@5‡@½@(Ø@.AL0AT}A#ÒA=öA/4B*dB7B7ÇBIÿB=IC,‡C>´C2óCf&DWDgåD@MEŽE ®E(ÏE øEF21F#dF;ˆF-ÄF-òF6 GWGlG(GªG2ÂG#õGH-8HfH+…H ±H'ÒH–úH=‘IÏI9áI$J6@JowJ.çJDKN[K/ªK!ÚKüK L'5L!]L6LO¶LPM>WMJ–M-áM`NTpN;ÅNMO.OO9~O.¸O/çOPP5P"†P+©P,ÕP(Q<+Q%hQjŽQ%ùQ?RV_R$¶R,ÛRjS@sS.´SsãS2WTZŠT4åTDUI_UO©U@ùU::VduV?ÚVRW]mW!ËWUíW?CX3ƒX:·X+òX9Y0XY(‰Y'²Y(ÚY4Z78Z&pZK—Z6ãZ:[MU[;£[Fß[6&\6]\G”\HÜ\J%]@p]P±]U^-X^F†^&Í^Pô^0E_.v_(¥_,Î_(û_+$`NP`Ÿ`3¾`4ò`+'a.SaD‚a<Ça.b93b'mb(•b/¾bEîb.4cKcc2¯c(âc8 d$DdsidGÝdN%e6teD«e>ðe5/f-efL“fNàf//g=_g7g3Õg%    h7/h*gh’h©h]Àh!i-@ini'Œip´i<%j6bjU™jïjKk4[kqk,l1/lal~l*™lÄläl<m0?m$pm,•m)Âm%ìm1n0Dn!unB—n<Ún‡o‡Ÿo='p+ep\‘p,îpBqZ^qd¹qdr_ƒrrãr[VsF²sBùs4<teqt_×t^7u5–uBÌuHvDXvJvJèv63wZjwBÅwKxRTx^§x^y]eyGÃy8 z)Dzdnz.ÓzH{FK{?’{EÒ{|-6|sd|:Ø|l}T€}_Õ}T5~DŠ~6Ï~!#(?L;Œ\È6%€0\€P€WހZ6J‘]܁@:‚\{‚?؂Kƒ<dƒo¡ƒk„C}„EÁ„H…/P…A€…N…7†9I†Oƒ†Rӆl&‡{“‡:ˆ1JˆC|ˆFÀˆT‰I\‰.¦‰0Չ4Š?;Š%{ŠP¡ŠJòŠ0=‹Zn‹/ɋ;ù‹=5Œ<sŒ:°ŒXëŒgD„¬[1Ž,Ž0ºŽ\ëŽIHx’g Ms;Ákýdi‘ΑiN’E¸’Nþ’9M“<‡“:ēAÿ“hA”`ª”D •4P•P…•^֕^5–K”–_à–1@—0r—d£—2˜5;˜‚q˜4ô˜<)™Qf™<¸™+õ™a!š;ƒšK¿š, ›@8›@y›Lº›sœe{œHáœS*-~T¬Ež;Gž;ƒžE¿žIŸEOŸW•Ÿ4íŸf" Z‰ Vä A;¡T}¡6Ò¡A    ¢ K¢vW¢g΢;6£'r£7š£+Ò£:þ£i9¤3£¤1פ-    ¥07¥/h¥/˜¥0È¥0ù¥P*¦-{¦©¦!Ŧ;ç¦H#§>l§«§ħܧ ì§ ù§C¨J¨Rf¨I¹¨E©SI©V©ô©T ª4`ªQ•ªçª2ëªP«3o«'£«'Ë«)ó«G¬0e¬*–¬AÁ¬­6"­,Y­†­0¦­=×­<®KR®ž®)²®Ü®ü®+¯'C¯Ik¯Mµ¯M° Q°^°(q°+š°7ư6þ°95±)o±3™±EͱB² V²7w²4¯²"ä²(³E0³Fv³*½³ è³7    ´7A´7y´7±´7é´-!µ3Oµƒµ$ µLŵ1¶6D¶<{¶>¸¶÷¶#·7·M·R^·m±·P¸Ep¸\¶¸N¹Kb¹9®¹+è¹Lºaº(tº'º'ź(íº*»0A»5r»0¨»Ù»â»B¼    C¼M¼"a¼ „¼¥¼?¹¼ù¼½,½4E½'z½¢½½1Õ½¾%¾-A¾o¾+€¾6¬¾1ã¾8¿&N¿u¿Š¿¡¿¸¿*Ï¿ú¿;ÀATÀ;–À>ÒÀ>Á@PÁ>‘Á>ÐÁ>Â>NÂ>Â2ÌÂ;ÿÂ;Ã[ÃkÃ.|Ã*«Ã*Öà ÄBÄRÄdÄwÄ$†Ä%«ÄÑÄ)îÄ%Å'>Å/fÅ!–Å'¸ÅàÅ$þÅ$#Æ(HÆ!qÆ'“Æ»ÆØÆöÆHÇDXÇ(ÇÆÇÜÇðÇ    È%È?È8_ÈN˜È?çÈA'É2iÉ)œÉÆÉ&æÉ Ê1,Ê!^Ê?€Ê-ÀÊ0îÊ0ËPËfË€Ë(žË5ÇË*ýË<(Ì*eÌ-Ì.¾ÌíÌ
Í'Í:ÍOÍ5oÍ5¥ÍFÛÍ"Î4ÎMÎ%jΐÎ9§ÎáÎ+úÎ&&Ï%MÏXsÏ ÌÏ ÚÏèÏøÏ Ð!Ð1Ð)FÐBpгÐAÏÐ+Ñ4=Ñ2rÑ)¥Ñ,ÏÑ6üÑ/3Ò$cÒ(ˆÒ2±ÒäÒÓÓ,9Ó9fÓ Ó/½Ó)íÓÔ,ÔEÔ1cÔX•Ô?îÔ.Õ+IÕ+uÕ@¡Õ1âÕzÖ@Ö:ÐÖ> ×)J×5t×=ª×Nè×X7Ø(ØD¹Ø+þØW*ÙB‚ÙFÅÙ* Ú7Ú&TÚ5{Ú)±Ú6ÛÚ/Û*BÛmÛ!‡Û©Û$ÄÛ)éÛ1Ü    EÜ%OÜuÜB‰ÜÌÜ2éÜÝ6Ý)TÝ%~Ý/¤Ý3ÔÝPÞdYÞ,¾ÞëÞ
ß'ßCß#Yß@}ßA¾ß.à-/à#]à#à¥à Áà&âà    á-%áSá)iá<“áFÐáGâ<_â+œâ1Èâ%úâ3 ã@Tã•ã¨ã=»ã=ùã#7ä4[ä)ä%ºä,àä9 å4Gå-|åªå,Çå,ôå(!æ*Jæ7uæ/­æ0Ýæç.+ç;Zç$–ç/»çCëçA/èGqèG¹èJéLé$iéŽé éºé;Ìéê
$ê!/ê Qê9^ê˜ê0­êÞê-óêE!ë8gë@ ë-áë8ì.Hì,wì(¤ìCÍì8í3Jí~í›í'¹íáí4üí$1îMVî¤î.Àî!ïî%ïD7ï|ï'ï¸ï Ïï@ðï#1ð@Uð*–ðÁðáðþðñ2ñRñ
gñDrñ$·ñ5Üñ.òAò)Zò„òšò³ò
Ìò×ò
çòòò5 óCó/Wó ‡ó¨óÅóÖóõó0 ô;<ô-xô'¦ôÎô+ìôõ7õWõwõ —õ ¸õÙõ<òõC/ö=sö&±ö,ØöM÷MS÷@¡÷-â÷-ø7>ø?vø.¶øFåøG,ùtùzù=Žù;Ìùú&&úDMú:’ú;ÍúK    ûLUû@¢û@ãû,$ü Qü_üuü }ü/žü.Îü6ýü?4ý<tý;±ý5íý8#þ"\þ.þ"®þ*Ñþ"üþ#ÿ Cÿ Oÿ pÿ |ÿRˆÿVÛÿ[2 Žš ³Ôï! A M [g‚œ9´ î û$*,1W/‰¹Ò&ò  %81 jv…® ½ É-Õ6 Vdt$„2©Üëý!2H \j y#š¾Ñáò,?O `n~ Žš ³¿ Ý+é    E$eŠ!¥Ç Üèù    *!J-lš$¯Ôì
           1    &E    l    %    ¥    %¾    ä    ü    
,7
2d
2—
Ê
ä
ù
 & B T e u “ ¦ À ß ó  ) G _ q Ž ¢  à õ 
8 9U " ² Ë IÝ <'/d”0´!å.36,jI—á ù+43 hH‰)Òü98L:…;À$ü.!P2f+™0Å*ö6!1XMŠ<Ø0?F?†3Æ\úFWDž ã ðþ&:a6p§Å6Ú&&8,_(Œ"µ,Ø,,29_&™"À"ã'9.<hA¥:çJ" m3ŽÂ)àA
3L7€6¸.ï02O%‚>¨-çe@{X¼*@@-,¯Üñ44C!x,šÇ+äK \ 
t + (« &Ô 'û &#!'J!(r!(›!'Ä!Bì!:/"j"Š"'¨"'Ð";ø",4#a#%€#%¦#Ì# ë# $%)$6O$&†$&­$,Ô$A%=C%%œ%8·%-ð%-&KL&6˜&Ï&)í&;'/S'ƒ'& '2Ç'<ú'7(/V(/†(/¶(/æ()6)-V)"„)§),½)ê)*%*"@*"c*#†*"ª*#Í*"ñ*#+!8+!Z+!|++ž+Ê+Ü+Yü+9V,6,7Ç,<ÿ,5<-3r--¦-"Ô-;÷-3.I._.u.3.*Á."ì.7/0G/(x/0¡/OÒ/)"0BL0K0=Û011)K1,u1.¢1ŽÑ1W`2.¸2Rç2E:3€3,3=Ê3$44-4)b4Œ4$Ÿ43Ä4ø4.5&D5+k5—50µ54æ596U6:u6.°6$ß67747Q7 g7s7ˆ77²7Å7Ú7í78!858H8"]8€8 •8¡8´8 Ç8Ó8è8û89#989K9^9y9Œ9Ÿ9²9Å9Ú9ï9::*:?:R:g:z: :›:°:Ã:Ö:é:;;*;=;R;e;z;“;ª;½;Ð; ã;?ð;0<$N<*s<ž<"­<Ð<!â<'=2,=1_=‘=*¢=5Í=5>19>%k>7‘>"É>ì>,
?57?Hm?-¶?ä?@D@>`@-Ÿ@?Í@G A(UA$~A5£A$ÙA5þA;4BpB,ŠB ·B?ØB&C&?C'fCKŽC5ÚCADHRD+›D.ÇD)öD- E NE-oE#EÁE+×E,F 0F,<F%iF"F²F-ÁFIïF<9G=vG´G+ÓGÿG6H5TH5ŠH5ÀH5öH5,I5bI5˜I5ÎI5J5:J8pJ5©J(ßJ<K*EK(pK*™K5ÄK8úK83L8lL)¥L*ÏL%úL* M!KM%mM!“M)µM%ßM*N*0N%[N%N*§NPÒN<#O<`O!O¿O6ÙOP("P+KP2wPªP"ÃP)æP(Q)9QcQ*yQ)¤Q;ÎQ&
R?1RqR2RÂR)àR:
S,ES9rS:¬S8çS* T7KT'ƒT<«TèT'U /UFPU?—U8×U$V5V!QVsV;ŽV+ÊV<öV<3W:pW«W5ÂW"øW2X$NXsXˆX$˜X½XÜXóX(Y&;Y"bY.…Y%´Y$ÚY$ÿY$$Z6IZ-€Z$®Z+ÓZ/ÿZ(/[%X[~[B„[>Ç[5\+<\Nh\@·\;ø\/4]#d]6ˆ]%¿]å]8^5;^!q^8“^'Ì^'ô^_./_^_:{_9¶_;ð_@,`m`$~`5£`Ù`4ø`(-aVa7va4®aãaþab29b&lb(“b(¼b$åb+
c6c*Rc}c*™c-Äc*òc6d>Td@“d1Ôd/e6eUe're še4»e$ðe,fTBf<—f/Ôf4gG9gIgEËg?h7Qh7‰hTÁh5i0Li}iA™i2Ûi,j,;jAhjAªj ìj kGk*ek"k³k2Ðkl*lCl _l€l-—lÅl)Ùlm"mAmam mŒmŸm¹m&Ùm4n5n*Jn6un6¬n;ãn7o1Wo$‰o®oÎoíoPpQpqp‡p/ p6ÐpYq4aq3–q'Êq/òq+"rNr%lr’r-®r)Ür-s14sfs)~s ¨sPÉst-,t*Zt+…t+±t*Ýt8u4Au$vu_›u ûu*vGv'ev,vºvPÏvK wlwB„w8ÇwxBxax%zx- xÎxíxy
yy*yKByHŽy%×y@ýy]>zYœz1öz-({V{"i{:Œ{JÇ{N|Ja|J¬|N÷|F}^}#q}#•}"¹}dÜ}UA~U—~?í~2-(`7‰1Á+óP€5p€¦€¾€&׀þ€#74[%m¶.$‚S‚hl‚)Ղ7ÿ‚7ƒKƒ gƒˆƒ¤ƒ&ă1ëƒ.„+L„4x„%­„-ӄ#…2%…%X…~…›…/º…ê…    ò…    ü… ††U*†€†–†1«†5݆6‡J‡8b‡@›‡J܇#'ˆCKˆ<ˆ9̈‰,‰E‰9a‰$›‰6À‰*÷‰"Š5ŠSŠ!qŠ“Š'°Š>؊>‹!V‹!x‹#š‹-¾‹"ì‹-ŒI=Œ"‡Œ=ªŒ.èŒ!$92^)‘!»&ݍ#Ž*(ŽSŽ6qŽ6¨ŽQߎ1-F+t: :ۏ 7Pm;‰!ŐSç%;‘0a‘0’‘"Ñ3æ‘.’0I’z’ š’3»’!ï’“',“wT“(̓'õ“”=”]”?}”+½”'é”:•HL•)••B¿•8–=;–y–D“–ؖ"ö–0—$J—o—/—½—ܗ#ü—! ˜%B˜2h˜:›˜+֘5™N8™+‡™+³™'ߙ7š@?š€š9žš6ؚ"›92›'l› ”›Pµ›Hœ/Oœ&œU¦œ9üœF6O}G͝,ž"Bž'ež5ž0Þôž2ŸEŸ<UŸ(’Ÿ$»ŸàŸ'øŸ%  -F t “  ² Ó Eî  4¡AU¡B—¡%Ú¡<¢!=¢ _¢ €¢3¡¢Õ¢ ô¢<£*R£6}£&´£+Û£(¤/0¤/`¤/¤!À¤^â¤VA¥>˜¥×¥Bò¥A5¦7w¦1¯¦Bá¦$§*;§$f§ ‹§'¬§)Ô§>þ§B=¨"€¨£¨ À¨:á¨*©YG©G¡©!é©# ª/ªOª(oª#˜ª.¼ªGëªJ3«D~«DëJ¬DS¬D˜¬Bݬi ­iŠ­hô­g]®fÅ®g,¯f”¯fû¯¤b°¡±#©±ͱ*ì±=²!U²w²?•²JÕ²8 ³Y³)y³D£³'è³'´$8´%]´,ƒ´/°´5à´:µ:QµŒµ1ŸµCѵE¶Q[¶?­¶7í¶.%·T·r·-Š·F¸·9ÿ·29¸l¸'€¸¨¸6ȸGÿ¸!G¹!i¹‹¹Ÿ¹´¹ȹÞ¹ò¹ºº.ºCºWºlº‚º–º)¬ºÖºêºýº)»B»W»m»ƒ»–»©»TÄ»W¼Hq¼Hº¼5½+9½Ee½Y«½_¾_e¾_ž`%¿`†¿`ç¿_HÀ_¨À_Á`hÁ`ÉÁ`*Â_‹Â_ëÂ_KÃ`«Ã` Ä`mÄ@ÎÄ5ÅDEÅDŠÅDÏÅ>Æ=SÆ=‘Æ=ÏÆ> Ç=LÇ=ŠÇ=ÈÇ=È2DÈ,wÈr¤ÈrÉsŠÉsþÉrrÊsåÊ/YË.‰Ë.¸Ë.çË>Ì@UÌ7–Ì-ÎÌ7üÌ%4Í*ZÍ…Í>—Í4ÖÍ! Î9-Î"gÎ0ŠÎ"»Î7ÞÎ-Ï-DÏrÏ(Ï¸Ï"ÖÏ!ùÏ/Ð-KÐ&yР Ð#ÁÐåÐ%Ñ)Ñ+BÑ;nÑ8ªÑ8ãÑ1Ò NÒ,oÒ!œÒ&¾Ò%åÒ, Ó38Ó1lÓ4žÓ8ÓÓ* ÔS7Ô&‹Ô"²ÔÕÔHôÔ1=Õ?oÕC¯Õ=óÕ1Ö*LÖ*wÖ6¢ÖDÙÖ×!4×!V×xא×<¬×5é×.Ø4NØ/ƒØ5³Ø7éØ'!Ù/IÙ>yÙ-¸ÙæÙ-Ú*3Ú#^ÚI‚ÚGÌÚÛ-1Û@_Û ÛF¼ÛAÜCEÜ;‰Ü-ÅÜ8óÜ,,Ý0YÝ(ŠÝ³ÝÏÝæÝIúÝLDÞ-‘Þ¿Þ"ÓÞ;öÞ2ß
Lß'Wß"ß"¢ß$Åß#êßà+*àVà<và ³à!Ôàöàá)&á"Pásá’á5°á7æá(â4Gâ(|â(¥â Îâ'ïâ"ã:ã*Mãxã'–ã,¾ã-ëã'ä$Aäfä8ƒä/¼äìäå2#å;VåA’å5Ôå;
æ?Fæ1†æ.¸æ*çæ)ç#<ç;`ç-œç(Êç-óç)!è;Kè!‡è%©è8Ïè8éAé \é}é%éÃéWßé7ê4Uê;Šê;Æêcëfë3|ë<°ëíëì&ìFì6[ì7’ìJÊìí+.í!Zí!|í*žíÉí5àíAî,Xî)…î¯î7Êî<ï6?ï2vï0©ï0Úï@ ðLLð-™ð+Çð"óð%ñ5<ñ&rñ™ñ´ñÓñîñ: òUFò/œò-Ìò5úò%0ó5Vó0Œó4½ó:òó8-ôfô€ôžôµô:Íôõõ)0õZõyvõðõö ö_#ö9ƒö,½öêöR    ÷J\÷(§÷Ð÷ Ö÷â÷"ù÷ø%:ø0`ø;‘ø;Íø7    ù,Aù=nù3¬ù<àùHúfú;„ú6Àú3÷ú#+û#OûAsûBµû-øû&ü96üpü/ü,¿ü2ìü6ý+Vý$‚ý §ý ´ýœÄùs¢Î þ;€¡oâ3M~ ç    Öfˆ,õ¯k  l`Lw¯|œ
^    `[‹     4K ý)¹˜jÆbD•
+BE‡hÆ ì(¡    ±„ CÒ‡ · ? ¯ÂpCŸ_ Áê    EL    1X ½T    Á‰Ço     
Ƨ߽íL6
Ïþò¨ ’* « Q sR àVV Y    f # è 'FkŠ˜Ï0 A
Sð ߁×Ãöŧ ¢    c"¿]    ”e é : ªES e'    p `‰¼Þ Öú …ðsÜ [ 0ë÷V    ˆ±ÙµTî À–È®"ŽH•v» F‡    |™
     (Ú
J€    À    «A ²JO    o    â„YU{ /t¤ã€ _>É©0øº
N >œ 4 H Ü ð!@ ² ϟ6ÊHmƒöÂ…@    ¡˜˜,    À//þU ÇŽ·
ìv͸ç–m êË>u¸ÿJ
H£    LW 4x Ö í /Ƭî+48 ΍c
a  ÉRÆñ< çWˆH o Ú È © ‰ë¥    ½Fü    ê±ÀÜ    j þl"gŸ”²
9—
„¢•aò– º jh“Š
pLZ    ømd
¹§†3
ãvTÚ9ù:á›<_ž Š¿ Ǽ :α B¯3<ûCÖƒÅó Ì„åƒ
   x ‚ ñ
»
Rã¤.žà $õþ·    €J^[*Zy& ù;qÏ
_D    Tdc¯Á … IÅâž…
~c Á
w
ïó¥½V3¼x    lÒ “.àŒP é â    É
²   šÔ™[
JÔ ¹ÄŠê
= P    ¹’ C ×õ]¨šÉ iŒ    ô
S    È    % qÎR raµ0œÊ    E6fë^ÏÎêÖÙÓ–Ô xs äR    ÍÌ= v%‡@“–‚ Íà =¼Ëü£G& ½hÕð™ ÜÑ©M ò ½ñ ¼?í{8¼
Ý • à¦Ó y_¬|í þ íß×âÎ
Ä    4 —ßZ³î j=ž…Ì8TŠGÌ _ˆ 6 0
C    RëE–r(Š     ^ØS ,tÑ %
µ's
À 5¶ê É`
½Å    ¥•°    í
ª ¨~; ³F¶É&
z 2‹    ]un¨¥
š”    žô ¼CÒ
 
… ƒÌ 04Ê61ËýM .ü'. ©2u ÝeÁ¶:
Þð    ùË …    F    #0ï¿    ô¦P £dO“«Zlõ U
¦òÓ § ƒ¤ÉÓ ÉSBv¾^ õ¢
àøNró
l2Âu É . ¢å– ª—»bö 3 QL ÍHÂ‚´é*\>έ̊ç    Ä ¬ 5_éå ¤‰aŽÚqÅ <Ü' îIå› |    v ±    éNé 
 
ø˜)ß¾@kâ (
rÉ    ßI h¥ åüi WLæn™ ´
O¬^ȸCB“¤Õ¤'è "j £
»-}Èß    …«    7·­    ƒ ý
9“ ï0Ç1 ÐœÖ ß wÈо    ú¼Ù     
l k
'Ôs^Œt ÷×›¸ …ùü›+ÜËwá    §!×éÑ€Z  cWžcö êÁ.[¥ ÷Ð    8    ¢ Ë?m`ÛÉÏúê
hý/    KƝP¡ $ñi
 
o W+Î    Û ³ ö ‚Iٛ +{ý XÌÈ!” ð
š    ô5#Úpœ‘v (cÃl  i5[—- Šžv
+F„: u
/
Þx ñ–ÿ    K,Z×f*    ¨ [*¶ù
– ì    Þ õÜœq ¯   œÁÎX 4 Q®­óE€ÐzÂ
»
±}
| HDƽ    ™Ù‡j+W&Ÿ¡    ä7yƒRᦠ[ 7"²XÏwú
yHÚÆíé–    •’ü ¶t
z錊bMÏõX°I ^˃Q†Ý<±‰‡V4› ’
6Lû‚Mêe€p
áuH«ÊÚÛ!eâX    e˜ !Æ™œ:n‡f ýÜ5º­qû
å    Çz Þ07ùšZ-;øYGUÞgÚ #ú‰°)e    `ßò
Ÿì ÿJ* f†/ Å
¤
í.Dm ^v× ± E    @
ˆ]ü5
þ9”5b ï))Å÷ °p ï
h
µü\]\–ï@N“,*t RD
ê+7 Oy$­ ù; q 68HÛ
e
2lDÌ Ãe˜ r
b    $ôZc ½B=ñ-    ÜÝgBp†ÆÊ:·¿ xàIùN    ¹ 1    Rˆ    kb< Û    è    Pžb¤|‘û v
ú,ž    5 0\g—zÔ S
{ *    =…¸Y~ Ó    Á€1… -g|
ëi ·9V™    7©ÇŽ    ²³ˆ; UÓÑKd    E‹VYö«/ 3Ñ— Ö
hj üÁ0( ® ¨®_\#[p>    ˜ áîÊ" ªÊ
ây ³    ¤æ `ÿKnfÀÞäÅ2 )     jôÎþV
ÝžÁ ³ö“PÇ’ ”
˜
¢ Ä‘Mïªë‹X$( ¸
È¯É 0'âè­:    ®ñ"
œ“W÷8
ö %oJ…BÑ„å Uö¤b De
«öM¶dJUï C{ ¾     d‘ |     ¶< Š î„} ‚    Z” g7= Æ;Ø º Sl´][³
 ÷ Ö°
´ Ôcâ6    ×s(†
äp˜Þ    ©p ¾îü 
­
·Ü J îÔ4š † ø ,1ûˆ
•7=¿ CÜqšÝM~ÏI‡ %/›
g¸2 
üâà        ù"9 Ÿ^ÆO— > §)¶¶    éí«\    y¸j½ .‰³1j
H    :Ð J    % %ù$oá]™¤    vN¥Ûû&k©&    æ5d És    üÂÜ
?µPsŒ¡“
@®w˜÷Pßè
Ï ¼ &Æ    À   mg ,¯ ÒOÕ(÷Õ ®    =²dB`À" †"Ëq‘@ Õ ) ¶zæ C‘ Otð›È ‡Vt íáI
25    ?oNd*ì%Ç >} ê·Ãƒ¨
«
Ó    ÷åڂ’¨øe Õ jš
&ì õ’b·†h
c~•    MÚ8}kÏ    ÕJՕ …):œ    
¡-Ghå
t¤    `ù µ§˜S¡ð*    N—ìkKB
Ò ÜéÙ ¸°+Z ­¯D:ïµSŸOã    ¬|# môh´¬ÿÐø å
£ ˜ë{_œ5 ±ô›£ …쉐{Ô    u:c $A©ÛÃÆ¯èÝ^ƒ5\!m    é{    äÑ@v MjzA­VËì
}  ÒMÛ(Õ    ´ i'µ )ÀšÍ
†    E
Ùma]    ò È1)H¡to3¦@¶D ŸÒk_¥úðߺF Ѩw(YÀ”MumÕói]
Âr        @–
{ž2    Ðy aÍ 7ºüI    7<    ˜    õŸ
²r!w‘n9Eæê¢ 7
ßAz ûÒ    D¹ K
# ì9Ã Ëø¨ö
ã
ô2
}    þC
à~
NPé–zŠñÿ•Ø»ó    ã• ê†zóš£
hYÞ    æ` À    3‘,æ—E o
-Ú†
M
 ‘wuþ£2Ùú IÕ
%¿r ¹¼% Æ éÍ #n ¨¯ ò    ¶ >t3æÛFNf y    ±ŒÇ> 4K8[ƒõfÒ%,Öl
4Jc† ÆrÛ â .Ää /)N 7ŝ    þ „$  O 645Ç•™ ò§€ gFÚ    ÿ쥩”({    ö y›
fË
-ºeX|¡{è ¦    •Âh !æ µµ%    Ô’‘'NED×¥Qª    ö    oPòK¾Y ;9ㆿ
Ýp_'Y#:¾ÇÂÄɬ    6  à
Ø/z.ˆ7kŸû<݈åb“f
¾Wœ 8¡Îï    àg    ºÛØ
òÿ ò ç  ¾<è ã>ÉDoGG
©'Æ -VkB»ùlªæu g Èo¹ êý[    jmzwv… ’â  b
\YF ˆœ p    e    -9" Ø Õ{7VÄ®d ç©6 ð ² ´¡ñÒ¤¥BŒá
U¥ŽÅoôauÁz    #    ?' nh    aëô¹ß Î뺐® Z
ʇ
    Â cÑa+ Ã˺f̾L r%J Õ{b 1¼ HÌ\
¬ ¨Ë yÜ›=    ý º ú © ø
…÷ U™;’Ðq÷œ Å?Bë G    öYS÷G ÈóÁ }Uø\”ç›ZSB    XÇ    J3 °ÝÙ/@xé ) µ‚
ú b9    ô «ëÇ*d(Ö{
ؾ/è    ðFü Õ
ÕúX]¨÷x]„þFbþþ-
ú ^ ¾ô    ‹PTôJyº¹Ê K    C®‰Ä ½
HÀŒ áÄ ³ À
'xé÷Ø]âHÕ8"      _    4y¼¿
ttù ²S  ¿3sï ¯ èŽà*
Í    ¥Ö%® w U— »û    Õ Û‹AŠ£©Tÿ ûÛ    œq½‡W~AÛͰ Í ÷oß
r¬L—2
^‰°šŽ© ï¶
1 ÓoðF ŒÀ "<K¯ ð;  ý/á ñ êñy
u?þ (…Œµ6Þ ×× ” >
¨ 3ªì  ’ܳ    ø    Š    ÛðÖ    ž @ý‚#[}O Åv´_¿Î®Q V û»Œh ý û ÓÇF
[l    ^¤çìX
*KÝ ÊA­ m ý
   ™¬ Èâ
6ì!½ õ_ ·Úx Ä (B n—[Lm a mk    ¬
a‚ع
dÔÙV!Z°£+ce Dê>w      Ý?
.U Ë|ÞÓ
LAT쾊
؃        ¬´ª Ï–U W
à® ‘Ìï‹ Ï€²í ë
Ð
B53qÀç   Ð, # Fy¢èÅä‰
.j ‰ 5n Iä
”_ù€çk A    àMµ 㠓È Jˆ¹ÚŽÁ‰q    ã¬% ž†¹=çû3
”5Á8D 0œ÷    »º~$;
&¯‹
€- ‡ ¦äàF‡L
'~Û ¹á‹\~    i ×e C¬^쟍    m âSå ÑQ    ä    Ñí    7    ü~$Áÿ`Ž
ÉÅxˆ ££Ä
Qª
`f    t ‚xi¡ÔÇIP›>& XÓP‹|Ö b Å îÍÔДj­G¾ÊkX °£”Þ¡    ^
.    G/ ¢®wíXƒ»RÒk Ã
4    Á ÁQò™ûiC¯$—«ð·øª ì2äÍJå Ë ç&Â)> GtWó„
x
z´    ~p¢=    û %)
ó  ÓUÃÔrî  Ý     ÊKê Ÿ $é
    0    ,ç‡7Ô]K)Rr ¢k„šb&“Ї|—“>Vü
I¼|    ¼ N— zÐf˵±•a    3&Øn…dò@¬ å œ \Œ óâR
 8( îž ~Tr¥ ³ à    
\ T
!P,
T«î
Ë}
rx;    äƒžD ` H
ÌG 2ø À7 Åë        ‹G8 Ž
Ks    Ì²Ÿ
õ O ×\m —    Á‡¾ œ¬"mR €„¡ u ù© „Ë| _s¶àÆž ÿ6h °º@Ù§} W ¡×T
–›¶    gÙì§Ñ    KÚ LØ
l£&À¾
ªæR
˜Ì0Ï
¥    Î †&ã~;&«i…É¡
Ñ%pó4
‚µ     þ     ¸Ä,o
ÜÚ¿Jÿ G• ‘}»·W    Y Ì Ó  
´, ȃ ‘
b!
èë, ååp Ò  º± ¬6£ÌJæ    ”Íw Þ Õß     G ‡¸    q˜q ?T´~šÈNM    ¹f    y¿ë Åy xiZ ë ‹ f
Þñtò¢Ž ê4! 9 i< §¬‚-!    ?UB1›„    ?    %:#µ}cíLà U†Ô«À‚Œíáހ øßï %
Žþuê ¥–q‚n
ñ Ž |a2».€Ç n    ŒIó<’vgð ‘ ‹AS È
ª$
n㠌6Œ;s ± ½'š˜{Ì Þ„ÏZ ³÷¨¥FÎZxŽ8 )”¤ Äi XνME ¢­í  ¨Å¥†W    ÏG
‘ÆO %    Ì
ý¦-ÿ¤û³ U    ïõ'>Mnrø‰P ö¸zÏ  _‡ûI    Ì:QØ
/n‚òK Rà ?±Ft¦
€ü>Þ
2d–«§ÿ$ c «?7ÜVßt    ö³a±Q¦ º    ‚]ý    ‰    ÓBQ £A° 8 8]©
¼(Œøeq0Þ‹®
±Ôé    Xf ºbï‡{ïK Ê ¿ƒ ¼¦a S; Ù/{½ žæZ±
    ? U QŽ´+ Q3Adåcx®9æ*ðâ ªû”aT Ç u`ÍÄ@I i -½ B 6+³O‹=C’Þ²`PRz
A«áU´ó ô§C º#? nóiFˆ r    º<ŸN9
åÓY
Æ do ˆ    ˆN

jØ Ð “î    á ö¢î
ž‚9Ã<‹Ê3
n=²u¾ Ö¼©Ôä
þ
»ÐP 1Èô Qr ‹Ç
°&Ú= A  ›hMᐠü 1؍
Š+    ¯
Zæs[    .³(m
s ͽ7    g
õÿ’ݳ“¸ <
•Xõ sr½ý9^{P
+±–FÒŽæ‰ ,A ·éX  §?L ~eœ    . 1ª‘    x´ÜÊ Ç v¢úÐss¼Êó$+    „ 1¢»#- .›Ù ’ lý,–
́TV d ôS6lÍ
ã \Nlñ† 0 %¬Õë}ØxŠ#
ú    eT…© jù$! *iõ
!ƒ LGí.Ö£l Kb:²¹8Œ Yvv©     Ž `§ NÄí H ݦää[ îï Ë    Ih+ÿ gw u    Ù
Ÿ=Ló
èŸ    †_¡5ûý4Ž xˆpzÏ™Ý}Ñ Û9 G\ Öô´ ¸2¥Ü7ª
` *­<á ¿öø I Úe€è§
Qãõ q
™<R¦HZà Êû”W´­í#1øI}¿úÉ„
“    Ù§Ô¹;×$    ¿#¢k¢càã?6&Ÿ u  ®*ªYý ª™€ß
*@¸Äy.2³
°Œ
ÓË(—L˜üc    µKw º WÇâ GÓ3õ    ¯W ¤ Ýù;ë) 3 Ði    eR’˜“ g;( ihƒ»æ
OEÊé/ªý
äÐ ñ¢ sjXŸŸ½Ù    ÉëÞ
k¶[Ú°Ê¯`    YÖ—Û    Ògèg ë¿    mÃÐí·¬QRç ¦W ÒÂÒ
èW ®!E €
Ó`à÷„Cñ    "ÙI] Ê
zD  T QX´ßraîù    Ø+‰ =™¦6¾ÿ
O;L© × ­¤ØCÁ    jô1•ÅÒÁðE²    Ö»S EPOqóSV(    9HT    »    „ ¾ ˆp    5 ì׈^ ² .
¸no­    ’    'µ Îu–¹þ0 !Aâ ·Q
-|‡#ã Ý ’Ûñ ç‹ðDÑñÿ C Òµ
hp? Ÿ @ A ‘y‘×A‚ ãæþ9» É;h Ý
È­  ù  lv    €* Ù¥a|k¦Öl•ötòS        GúîE  4#­M ·`$ç‚ŽäšØ¡Y´ò²ˆb a
]DÜt¿Ec· ¦PkO ~ 4' T‹Ï å™ d
'ÚD£p“ :ÓÖ—¡°· Z] 㘠4 æ³ß͝q_ ž ­ì Æ
5 „ÑñŒ¯    ›ç
|
# t     }•Ä\ ò ·!ÕõÎ ô Ô=åÒ J ¸¦\ wsT  É2ö| ~ wY« õ£U+
! {÷B °: -™§ o¤ [ÑÍ
¹f¸ "š@´®igN a \*nè§çú!3    ?èý° Ñ áŠ ÝãÛ    E*—"¯ê 
ñ  $_
¤ú1 ÷
±‰q>¹    0Óú¨î H » [n 1
¸$ È"    {] \±wö:š^‹š     ]®u/R“W
¿¾·C +Î Àö)Ñ
ø¼5æ=OŠ ã«ÏÔ
á°ðó£ " ÃÄÐÿ    V ¦ ×
™ÀÙ š &m‘ ¿è² &Ž ²
A•"”,=
2 ò¼    2 ÿ×    <Ì    j    8) ¨    p§    ¶ ï }çқŠB8
+ ò'
-ÑÛ è ž
ó^fä1>ŠÐ³µ    D ™&9v‘:$wÍ Âf áØ    ~Ĩਠä Y dú }’ ÎSN­ ,-/l ’    ƒYO8V<Qª¶šy>)çÂz}dM@"î ¸ ág O
äü0
 
For bug reporting instructions, please see:
 
For bug reporting instructions, please see:
%s.
 
Go ahead? (y or n) 
Linker options
==============
 
 
Options starting with -g, -f, -m, -O, -W, or --param are automatically
 passed on to the various sub-processes invoked by %s.  In order to pass
 other options on to these processes the -W<letter> options must be used.
 
ldd output with constructors/destructors.
 
write_c_file - output name is %s, prefix is %s
                           Display specific types of command line options.
          %s        %qD        <anonymous>    -F, --fullname                      Print full filename
    -f, --function                      Print function level info
    -h, --hotonly                       Only print info for hot objects/functions
    -n, --normalize <long long>         Normalize the profile
    -o, --object                        Print object level info
    -o, --output <dir>                  Output directory
    -s, --scale <float or simple-frac>  Scale the profile counters
    -t <float>, --hot_threshold <float> Set the threshold for hotness
    -v, --verbose                       Verbose mode
    -w, --weight <w1,w2>                Set weights (float point values)
    Included at %s:%d:    inlined from %qs    inlined from %qs at %r%s:%d%R    inlined from %qs at %r%s:%d:%d%R  %q#D  %q+T has a non-trivial destructor  %qE  %qE is not equivalent to %qE  %qT is an ambiguous base class of %qT  %qT is not derived from %qT  (Use '-v --help' to display command line options of sub-processes).
  -###                     Like -v but options quoted and commands not executed.
  --bootclasspath PATH    Override built-in class path
  --classpath PATH        Set path to find .class files
  --extdirs PATH          Set extensions directory path
  --help                   Display this information.
  --help                  Print this help, then exit
  --help={common|optimizers|params|target|warnings|[^]{joined|separate|undocumented}}[,...].
  --javap                 Generate output in 'javap' format
  --sysroot=<directory>    Use <directory> as the root directory for headers
                           and libraries.
  --target-help            Display target specific command line options.
  --version                Display compiler version information.
  --version               Print version number, then exit
  -B <directory>           Add <directory> to the compiler's search paths.
  -E                       Preprocess only; do not compile, assemble or link.
  -IDIR                   Append directory to class path
  -S                       Compile only; do not assemble or link.
  -Wa,<options>            Pass comma-separated <options> on to the assembler.
  -Wl,<options>            Pass comma-separated <options> on to the linker.
  -Wp,<options>            Pass comma-separated <options> on to the preprocessor.
  -Xassembler <arg>        Pass <arg> on to the assembler.
  -Xlinker <arg>           Pass <arg> on to the linker.
  -Xpreprocessor <arg>     Pass <arg> on to the preprocessor.
  -a, --all-blocks                Show information for every basic block
  -b, --branch-probabilities      Include branch probabilities in output
  -c                       Compile and assemble, but do not link.
  -c                      Disassemble method bodies
  -c, --branch-counts             Output counts of branches taken
                                    rather than percentages
  -d, --display-progress          Display progress information
  -dumpmachine             Display the compiler's target processor.
  -dumpspecs               Display all of the built in spec strings.
  -dumpversion             Display the version of the compiler.
  -f, --function-summaries        Output summaries for each function
  -h, --help                            Print this help, then exit
  -h, --help                      Print this help, then exit
  -i, --intermediate-format       Output .gcov file in intermediate text format
  -l, --long-file-names           Use long output file names for included
                                    source files
  -m, --demangled-names           Output demangled function names
  -n, --no-output                 Do not create an output file
  -no-canonical-prefixes   Do not canonicalize paths when building relative
                           prefixes to other gcc components.
  -o <file>                Place the output into <file>.
  -o FILE                 Set output file name
  -o, --object-directory DIR|FILE Search for object files in DIR or called FILE
  -p, --preserve-paths            Preserve all pathname components
  -pass-exit-codes         Exit with highest error code from a phase.
  -pie                     Create a position independent executable.
  -pipe                    Use pipes rather than intermediate files.
  -print-file-name=<lib>   Display the full path to library <lib>.
  -print-libgcc-file-name  Display the name of the compiler's companion library.
  -print-multi-directory   Display the root directory for versions of libgcc.
  -print-multi-lib         Display the mapping between command line options and
                           multiple library search directories.
  -print-multi-os-directory Display the relative path to OS libraries.
  -print-multiarch         Display the target's normalized GNU triplet, used as
                           a component in the library path.
  -print-prog-name=<prog>  Display the full path to compiler component <prog>.
  -print-search-dirs       Display the directories in the compiler's search path.
  -print-sysroot           Display the target libraries directory.
  -print-sysroot-headers-suffix Display the sysroot suffix used to find headers.
  -r, --relative-only             Only show data for relative sources
  -s, --source-prefix DIR         Source prefix to elide
  -save-temps              Do not delete intermediate files.
  -save-temps=<arg>        Do not delete intermediate files.
  -shared                  Create a shared library.
  -specs=<file>            Override built-in specs with the contents of <file>.
  -std=<standard>          Assume that the input sources are for <standard>.
  -time                    Time the execution of each subprocess.
  -u, --unconditional-branches    Show unconditional branch counts too
  -v                       Display the programs invoked by the compiler.
  -v, --verbose           Print extra information while running
  -v, --version                         Print version number, then exit
  -v, --version                   Print version number, then exit
  -x <language>            Specify the language of the following input files.
                           Permissible languages include: c c++ assembler none
                           'none' means revert to the default behavior of
                           guessing the language based on the file's extension.
  a qualified-id is required  as it is a non-system directory that duplicates a system directory
  base %qT  base class %qT of %q+T is non-literal  because of local member %q+#D with same name  because of local method %q+#D with same name  but %d required  but does not override %<%T(const %T&)%>  but does not override %<operator=(const %T&)%>  by %qD  candidate expects %d argument, %d provided  candidate expects %d arguments, %d provided  candidate expects at least %d argument, %d provided  candidate expects at least %d arguments, %d provided  cannot convert %qE (type %qT) to type %qT  conversion of argument %d would be ill-formed:  crosses initialization of %q#D  enters OpenMP structured block  enters catch block  enters try block  exits OpenMP structured block  expected %qD but got %qD  expected a class template, got %qE  expected a class template, got %qT  expected a constant of type %qT, got %qT  expected a template of type %qD, got %qT  expected a type, got %qE  expected a type, got %qT  for conversion from %qT to %qT  from definition of %q#D  from here  in call to %qD  in evaluation of %<%Q(%#T, %#T)%>  in thrown expression  initializing argument %P of %qD  matches this %qD under ISO standard rules  matches this %qD under old rules  member function type %qT is not a valid template argument  merge [options] <dir1> <dir2>         Merge coverage file contents
  mismatched types %qT and %qT  no known conversion for argument %d from %qT to %qT  no known conversion from %qT to %qT  non-static data member %qD has non-literal type  non-static data member %qD has volatile type  or %<operator=(const %T&)%>  or a %<transaction_may_cancel_outer%> function  overlap [options] <dir1> <dir2>       Compute the overlap of two profiles
  overriding %q#D  overriding %q+#D  overriding %q+#F  profiling support are only provided in archive format  rewrite [options] <dir>               Rewrite coverage file contents
  skips initialization of %q#D  when initialized here (operand type is %qT) (operand types are %qT and %qT) (operand types are %qT, %qT, and %qT) All options with the desired characteristics have already been displayed
 No options with the desired characteristics were found
 None found.  Use --help=%s to show *all* the options supported by the %s front-end.
 candidate 1: %q+#F candidate 2: %q+#F conflicting code gen style switches are used!$OMP ATOMIC assignment intrinsic must be MIN, MAX, IAND, IOR or IEOR at %L"#pragma disinterrupt %s" not used"USE :: module" at %C# %s %.2f %.2f
#include "..." search starts here:
#include <...> search starts here:
#pragma io_volatile takes only on or off#pragma message: %s#pragma vtable no longer supported$ descriptor at %L%+D causes a section type conflict%+D declared alias after being used%+D declared ifunc after being used%+D declared weak after being used%+D declared weakref after being used%<#pragma GCC optimize (string [,string]...)%> does not have a final %<)%>%<#pragma GCC optimize%> is not a string or number%<#pragma GCC option%> is not a string%<#pragma GCC pch_preprocess%> must be first%<#pragma STDC FLOAT_CONST_DECIMAL64%> is not supported for C++%<#pragma STDC FLOAT_CONST_DECIMAL64%> is not supported on this target%<#pragma acc routine%> %s%<#pragma acc routine%> already applied to %D%<#pragma acc routine%> must be applied before %s%<#pragma acc update%> may only be used in compound statements%<#pragma acc update%> must contain at least one %<device%> or %<host%> or %<self%> clause%<#pragma align%> must appear before the declaration of %D, ignoring%<#pragma grainsize%> ignored because -fcilkplus is not enabled%<#pragma grainsize%> must be inside a function%<#pragma omp atomic capture%> uses two different expressions for memory%<#pragma omp barrier%> may only be used in compound statements%<#pragma omp cancel for%> inside %<nowait%> for construct%<#pragma omp cancel for%> inside %<ordered%> for construct%<#pragma omp cancel sections%> inside %<nowait%> sections construct%<#pragma omp cancel%> may only be used in compound statements%<#pragma omp cancellation point%> may only be used in compound statements%<#pragma omp flush%> may only be used in compound statements%<#pragma omp ordered%> with %<depend%> clause may only be used in compound statements%<#pragma omp ordered%> with %<depend> clause may only be used in compound statements%<#pragma omp section%> may only be used in %<#pragma omp sections%> construct%<#pragma omp taskwait%> may only be used in compound statements%<#pragma omp taskyield%> may only be used in compound statements%<#pragma weak%> declaration of %q+D not allowed, ignored%<#pragma%> is not allowed here%<%%%> constraint used with last operand%<%%%c%> yields only last 2 digits of year%<%%%c%> yields only last 2 digits of year in some locales%<%D::%D%> is not a class member%<%D::%D%> is not a member of %qT%<%E::%E%> has not been declared%<%E::%E%> is not a class or namespace%<%E::%E%> is not a class, namespace, or enumeration%<%E::%E%> is not a type%<%T::%D%> names constructor in %qT%<%T::%D%> names destructor%<%T::%D%> names the constructor, not the type%<%T::%E%> has not been declared%<%T::%E%> is not a type%<%T::%E%> names the constructor, not the type%<%c%E%> not found in protocol(s)%<%s%> is unknown%<%s%> value must be positive%<)%> expected at %C%<-Wabi=1%> is not supported, using =2%<-fabi-compat-version=1%> is not supported, using =2%<-fabi-version=1%> is no longer supported%<-femit-struct-debug-detailed=dir:...%> must allow at least as much as %<-femit-struct-debug-detailed=ind:...%>%<-fobjc-gc%> is ignored for %<-fgnu-runtime%>%<-fobjc-sjlj-exceptions%> is ignored for %<-fgnu-runtime%>%<-fobjc-sjlj-exceptions%> is ignored for %<-fnext-runtime%> when %<-fobjc-abi-version%> >= 2%<-fsplit-stack%> currently only supported on GNU/Linux%<-fsplit-stack%> currently only supported on PowerPC64 GNU/Linux with glibc-2.18 or later%<-gnat%> misspelled as %<-gant%>%<-march=%s%> is not compatible with the selected ABI%<-mcpu=%> is deprecated; use %<-mtune=%> or %<-march=%> instead%<-mdynamic-no-pic%> overrides %<-fpic%>, %<-fPIC%>, %<-fpie%> or %<-fPIE%>%<-mfused-madd%> is deprecated; use %<-ffp-contract=%> instead%<-mgp32%> and %<-mfp64%> can only be combined when using the o32 ABI%<-mgp32%> used with a 64-bit ABI%<-mgp64%> used with a 32-bit ABI%<-mgp64%> used with a 32-bit processor%<-mintel-syntax%> and %<-mno-intel-syntax%> are deprecated; use %<-masm=intel%> and %<-masm=att%> instead%<-mips3d%> requires %<-mpaired-single%>%<-mno-gpopt%> needs %<-mexplicit-relocs%>%<-msse5%> was removed%<-x %s%> after last input file has no effect%<...%> as arguments.)%<...%> has invalid operand number%<::%D%> has not been declared%<::%E%> has not been declared%<::%E%> is not a class or namespace%<::%E%> is not a class, namespace, or enumeration%<::%E%> is not a type%<::main%> must return %<int%>%<@dynamic%> is not available in Objective-C 1.0%<@dynamic%> not in @implementation context%<@dynamic%> requires the @interface of the class to be available%<@end%> must appear in an @implementation context%<@optional%> is allowed in @protocol context only%<@optional%> is not available in Objective-C 1.0%<@package%> is not available in Objective-C 1.0%<@package%> presently has the same effect as %<@public%>%<@property%> is not available in Objective-C 1.0%<@required%> is allowed in @protocol context only%<@required%> is not available in Objective-C 1.0%<@synchronized%> argument is not an object%<@synthesize%> can not be used in categories%<@synthesize%> is not available in Objective-C 1.0%<@synthesize%> not in @implementation context%<@synthesize%> requires the @interface of the class to be available%<@throw%> (rethrow) used outside of a @catch block%<@throw%> argument is not an object%<@try%> without %<@catch%> or %<@finally%>%<G0%> in format at %L%<[*]%> not in a declaration%<_Atomic%> applied to a qualified type%<_Atomic%> in Objective-C%<_Atomic%> with OpenMP%<_Cilk_spawn%> may only be used inside a function%<_Cilk_spawn%> must be followed by an expression%<_Noreturn%> in empty declaration%<_Sat%> is used without %<_Fract%> or %<_Accum%>%<__alignof%> applied to a bit-field%<__auto_type%> in empty declaration%<__auto_type%> may only be used with a single declarator%<__auto_type%> requires an initialized data declaration%<__auto_type%> used with a bit-field initializer%<__builtin_complex%> operands of different types%<__builtin_longjmp%> second argument must be 1%<__builtin_next_arg%> called without an argument%<__gcc_host_wide_int__%> is not defined as %<long%> or %<long long%>%<__gcc_host_wide_int__%> is not defined as a type%<__int%d%> is not supported by this target%<__int%d%> is not supported on this target%<__label__%> not at the beginning of a block%<__restrict%> can only be specified for objects and functions%<__thread%> before %<extern%>%<__thread%> before %<static%>%<__thread%> before %qD%<__thread%> can only be specified for objects and functions%<__transaction_cancel%> not within %<__transaction_atomic%>%<__transaction_cancel%> within a %<__transaction_relaxed%>%<assign%> attribute conflicts with %<copy%> attribute%<assign%> attribute conflicts with %<retain%> attribute%<async%> expression must be integral%<auto%> changes meaning in C++11; please remove it%<concept%> only available with -fconcepts%<const%> can only be specified for objects and functions%<constexpr%> cannot be used for type declarations%<copy%> attribute is only valid for Objective-C objects%<custom-%s=%> is not recognised as FPU instruction%<custom-%s=%> requires argument%<delete[]%> is not a constant-expression%<device%> id must be integral%<dynamic_cast%> not permitted with -fno-rtti%<else%> without a previous %<if%>%<enum %E%> declared in %<for%> loop initial declaration%<explicit%> can only be specified for constructors%<explicit%> outside class declaration%<friend%> can only be specified inside a class%<friend%> used outside of class%<gang%> num expression must be integral%<gang%> num value must be positive%<gang%> static expression must be integral%<gang%> static value must bepositive%<gnu_inline%> attribute present on %q+D%<grainsize%> expression must be integral%<grainsize%> value must be positive%<inline%> can only be specified for functions%<inline%> in empty declaration%<inline%> specified for friend class declaration%<location_t%> is not defined as a type%<locus%> is not defined as a type%<long long long%> is too long for GCC%<long long%> invalid for %qs%<long%> and %<short%> specified together for %qs%<long%> invalid for %qs%<long%> or %<short%> invalid for %qs%<long%> or %<short%> specified with char for %qs%<long%>, %<int%>, %<short%>, or %<char%> invalid for %qs%<main%> declared %<_Noreturn%>%<namespace%> definition is not allowed here%<no-custom-%s%> does not accept arguments%<noreturn%> function does return%<num_gangs%> value must be positive%<num_tasks%> expression must be integral%<num_tasks%> value must be positive%<num_teams%> value must be positive%<num_threads%> value must be positive%<num_workers%> value must be positive%<operator delete%> must return type %qT%<operator delete%> takes type %qT as first parameter%<operator new%> must return type %qT%<operator new%> takes type %<size_t%> (%qT) as first parameter%<operator%s%>%<operator%s%> in %<%E %s %E%>%<operator%s%> in %<%E%s%>%<operator%s%> in %<%s%E%>%<operator=%> should return a reference to %<*this%>%<operator[]%>%<operator[]%> in %<%E[%E]%>%<priority%> expression must be integral%<priority%> value must be non-negative%<readonly%> attribute conflicts with %<readwrite%> attribute%<readonly%> attribute conflicts with %<setter%> attribute%<requires%> only available with -fconcepts%<retain%> attribute conflicts with %<copy%> attribute%<retain%> attribute is only valid for Objective-C objects%<return%> with a value, in function returning void%<return%> with no value, in function returning non-void%<short%> invalid for %qs%<short%> or %<long%> invalid for %qs%<signed%> and %<unsigned%> specified together for %qs%<signed%> or %<unsigned%> invalid for %qs%<sizeof%> applied to a bit-field%<sizeof...%> argument must be surrounded by parentheses%<static%> may not be used when defining (as opposed to declaring) a static data member%<struct %E%> declared in %<for%> loop initial declaration%<this%> may not be used in this context%<thread_limit%> expression must be integral%<thread_limit%> value must be positive%<tile%> value must be integral%<tile%> value must be positive%<tree%> is not defined as a pointer type%<tree%> is not defined as a type%<typedef%> was ignored in this declaration%<typeid%> operator cannot appear in a constant-expression%<typeof%> applied to a bit-field%<union %E%> declared in %<for%> loop initial declaration%<vector%> length expression must be integral%<vector%> length value must bepositive%<vector_length%> value must be positive%<virtual%> can only be specified for functions%<virtual%> outside class declaration%<void%> must be the only parameter%<volatile%> can only be specified for objects and functions%<wait%> expression must be integral%<worker%> num expression must be integral%<worker%> num value must bepositive%<~auto%> only available with -std=c++14 or -std=gnu++14%E qualifier ignored on asm%E requires %<-fgnu-tm%>%d constructor found
%d constructors found
%d destructor found
%d destructors found
%d frame table found
%d frame tables found
%i-bit mode not compiled in%q#D conflicts with a previous declaration%q#D declared here%q#D has incomplete type%q#D inherited from %qT%q#D is inaccessible within this context%q#D is not a function template%q#D is not const%q#D is volatile%q#D not declared in class%q#D previously declared here%q#D previously defined here%q#D should be initialized%q#T has no member named %qE%q#T has no member named %qE; did you mean %qE?%q#T has pointer data members%q#T has virtual base classes%q#T is not a class%q#T is not a class or a namespace%q#T is not a template%q#T used where a %qT was expected%q#T was previously declared here%q+#D cannot be declared%q+#D cannot be overloaded%q+#D is not a static data member of %q#T%q+D aliased declaration%q+D declared as a friend%q+D invalid in %q#T%q+D is usually a function%q+D static data member inside of declare target directive%q+D takes only zero or two arguments%q+D used prior to declaration%q+E is not a constant expression%q+F used but never defined%q+T has a previous declaration here%q+T is not literal because:%qD called in a constant expression%qD can be marked override%qD cannot be defaulted%qD cannot be used as a function%qD cannot have default arguments%qD changed semantics in GCC 4.4%qD declared %<constexpr%> outside its class%qD declared as a %<virtual%> field%qD declared as a %<virtual%> parameter%qD declared as a %<virtual%> type%qD declared as a %<virtual%> variable%qD declared as a non-parameter%qD declared as an %<inline%> field%qD declared as an %<inline%> parameter%qD declared as an %<inline%> type%qD declared as an %<inline%> variable%qD declared as array of %qT%qD declared as reference but not initialized%qD declared here%qD declared here, later in the translation unit%qD defined but not used%qD does not have a mappable type in %qs clause%qD does not name an enumeration in %qT%qD has already been defined%qD has incomplete type%qD is a namespace%qD is a usual (non-placement) deallocation function%qD is already a friend of %qT%qD is already a friend of class %qT%qD is already defined in %qT%qD is already defined in class %qT%qD is already defined in the class %qT%qD is an enumeration template%qD is defined with tls model %s%qD is deprecated%qD is deprecated: %s%qD is initialized with itself%qD is normally a non-static function%qD is not a class or namespace%qD is not a function returning a pointer%qD is not a function template%qD is not a member of %qD%qD is not a member of %qT%qD is not a member template function%qD is not a namespace-name%qD is not a pointer variable%qD is not a static data member of a class template%qD is not a template%qD is not a template function%qD is not a type%qD is not a variable%qD is not a variable in %<aligned%> clause%qD is not a variable in %<depend%> clause%qD is not a variable in %qs clause%qD is not a variable in clause %<lastprivate%>%qD is not a variable in clause %qs%qD is not a variable template%qD is not an argument in %<uniform%> clause%qD is not an function argument%qD is not captured%qD is not compatible with %qD%qD is not declared in %qD%qD is threadprivate variable in %qs clause%qD is used uninitialized in this function%qD may not be declared as static%qD must be a non-member function%qD must take %<void%>%qD must take exactly one argument%qD must take exactly two arguments%qD not declared%qD not defined%qD should be initialized%qD should return by value%qD used before its definition%qD used in its own initializer%qD was declared here%qD was hidden%qD was not declared %<constexpr%>%qD was not declared in this scope%qD was not initialized with a constant expression%qD was previously declared here%qD will be initialized after%qE argument not an identifier%qE attribute address out of range%qE attribute doesn't apply to functions%qE attribute duplicated%qE attribute follows %qE%qE attribute ignored%qE attribute ignored for %qE%qE attribute ignored on types%qE attribute is only applicable on functions%qE attribute on non-volatile variable%qE attribute only affects top level objects%qE attribute only applies to SH2A%qE attribute only applies to functions%qE attribute only applies to variables%qE attribute only available for 32-bit%qE attribute requires a string argument%qE attribute requires a void return type%qE cannot be used as a function%qE does not have a mappable type in %qs clause%qE does not have class type%qE does not have pointer or array type%qE does not name a type%qE has not been declared%qE in %q#T does not name a template type%qE in %q#T does not name a type%qE is a member of a union%qE is deprecated%qE is deprecated: %s%qE is neither a variable nor a function name in clause %qs%qE is not a class or namespace%qE is not a class template%qE is not a constant expression%qE is not a template%qE is not a type%qE is not a variable in %<aligned%> clause%qE is not a variable in %<depend%> clause%qE is not a variable in %qs clause%qE is not an argument in %<uniform%> clause%qE is not at beginning of declaration%qE is not initialized%qE is not of type %qT%qE may not respond to %<%c%E%>%qE needs isa option %s%qE used with %<auto%>%qE used with %<register%>%qE used with %<typedef%>%qT declared here%qT defined with direct virtual base%qT defined with multiple direct bases%qT has no member named %qE%qT has no member named %qE; did you mean %qE?%qT is already a friend of %qT%qT is not a base of %qT%qT is not a class or namespace%qT is not a class type%qT is not a class, struct, or union type%qT is not a member of %qT%qT is not a namespace%qT is not a namespace or unscoped enum%qT is not a nested class of %qT%qT is not a pointer-to-object type%qT is not a template%qT is not a template type%qT is not an enumeration type%qT is/uses anonymous type%qT referred to as %qs%qT referred to as enum%qs%qs argument of %qs intrinsic at %L cannot be INTENT(IN)%qs argument of %qs intrinsic at %L must be %s%qs argument of %qs intrinsic at %L must be ALLOCATABLE%qs argument of %qs intrinsic at %L must be INTEGER%qs argument of %qs intrinsic at %L must be INTEGER or PROCEDURE%qs argument of %qs intrinsic at %L must be INTEGER or REAL%qs argument of %qs intrinsic at %L must be REAL or COMPLEX%qs argument of %qs intrinsic at %L must be a constant%qs argument of %qs intrinsic at %L must be a data entity%qs argument of %qs intrinsic at %L must be a logical array%qs argument of %qs intrinsic at %L must be a numeric type%qs argument of %qs intrinsic at %L must be a scalar%qs argument of %qs intrinsic at %L must be a variable%qs argument of %qs intrinsic at %L must be an array%qs argument of %qs intrinsic at %L must be double precision%qs argument of %qs intrinsic at %L must be of kind %d%qs argument of %qs intrinsic at %L must be of rank 1 or 2%qs argument of %qs intrinsic at %L must not be OPTIONAL%qs at %C is not a member of the %qs structure%qs at %C is not a variable%qs at %L already is initialized at %L%qs at %L is ambiguous%qs at %L is not a function%qs at %L is of the ABSTRACT type %qs%qs at %L must be less than BIT_SIZE(%qs)%qs at %L must be nonnegative%qs at %L should be a FUNCTION%qs at %L should be a SUBROUTINE%qs attribute ignored%qs cannot appear in a constant-expression%qs does not support MIPS16 code%qs expects 1 argument but %d given%qs expects 2 arguments but %d given%qs expects a constant argument%qs expects a fixed-point value as argument%qs expects a fixed-point value as first argument%qs expects an integer value as second argument%qs expression must be integral%qs function cannot have arguments%qs function cannot return a value%qs has overflowed%qs in %<%s %E%>%qs is an unknown -save-temps option%qs is deprecated and has no effect%qs is deprecated; use -fno-zero-initialized-in-bss%qs is deprecated; use -fstack-check%qs is incompatible with %qs%qs is incompatible with %s %s%qs is not a directory%qs is not a gcov data file%qs is not a valid class name%qs is not a valid option to the preprocessor%qs is not an option that controls warnings%qs is not available in non-VLIW functions%qs is not valid for %qs%qs is version %q.*s, expected version %q.*s%qs must be the first clause of %qs%qs must be used with %qs%qs of %qs is PRIVATE at %L%qs used with %qE%qs value must be positive%r%s:%d:%R   %r%s:%d:%R   [ skipping %d instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
%r%s:%d:%d:%R   %r%s:%d:%d:%R   [ skipping %d instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
%s%s
%s  Same as %s.%s %#D%s %#S%s %<%s%.*s%> expects a matching %<%T%s%> argument%s %<%s%.*s%> expects a matching %<%s%s%> argument%s %qs%s %s %p %d
%s %s%s
%s %s(%E) %p %d
%s '%s'
%s (program %s)%s at %L%s at %L must be INTEGER%s at %L must be a scalar%s at %L must be integer%s attribute applied to %s %s at %L%s attribute conflicts with %s attribute in %qs at %L%s attribute of %qs conflicts with %s attribute at %L%s attribute with %s attribute at %L%s attribute with %s attribute in %qs at %L%s cannot be used in asm here%s does not support %s%s does not support %s with the %<%%%c%> %s format%s does not support block_ends_with_call_p%s does not support block_ends_with_condjump_p%s does not support can_duplicate_block_p%s does not support can_merge_blocks_p%s does not support can_remove_branch_p%s does not support create_basic_block%s does not support delete_basic_block%s does not support dump_bb_for_graph%s does not support duplicate_block%s does not support flow_call_edges_add%s does not support force_nonfallthru%s does not support make_forwarder_block%s does not support merge_blocks%s does not support move_block_after%s does not support predict_edge%s does not support predicted_by_p%s does not support redirect_edge_and_branch%s does not support redirect_edge_and_branch_force%s does not support split_block%s does not support split_edge%s does not support the %<%%%c%> %s format%s does not support the %<%%%s%c%> %s format%s ignored with %s and %<%%%c%> %s format%s ignored with %s in %s format%s in CFString literal%s in format string at %L%s is not supported by this configuration%s only accepts %d arguments%s only accepts 1 argument%s only accepts 2 arguments%s out of range: Range is %i to %i, value is %i%s returned %d exit status%s statement expected at %L%s tag%s tag at %L must be a character string of default kind%s tag at %L must be of type %s%s tag at %L must be scalar%s tag with INQUIRE%s terminated with signal %d [%s]%s%s used with %<%%%c%> %s format%s"%s"%s is invalid%s"%s"%s is not allowed%s%#D%s%#D <deleted>%s%#D <near match>%s%D(%T) <built-in>%s%D(%T, %T) <built-in>%s%D(%T, %T, %T) <built-in>%s%T <conversion>%s%s%s %sversion %s (%s)
%s    compiled by GNU C version %s, %s%s%s %sversion %s (%s) compiled by CC, %s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d
%s%swarning: %s header version %s differs from library version %s.
%s-%s is an empty range%s: %m%s: %s%s: %s compiler not installed on this system%s: %s: %s%s: -fcompare-debug failure%s: -fcompare-debug failure (length)%s: Cannot open output file: %s
%s: Failed to close output file %s
%s: In instantiation of %q#D:
%s: In substitution of %qS:
%s: PCH file was invalid%s: all warnings being treated as errors%s: cannot open as COFF file%s: could not open compare-debug file %s%s: couldn%'t open PCH file: %m%s: not a COFF file%s: section %s is missing%s: some warnings being treated as errors%s:%d: confused by earlier errors, bailing out
%s:'%s' has arcs from exit block
%s:'%s' has arcs to entry block
%s:'%s' lacks entry and/or exit blocks
%s:already seen blocks for '%s'
%s:cannot open data file, assuming not executed
%s:cannot open notes file
%s:corrupted
%s:graph is unsolvable for '%s'
%s:no functions found
%s:no lines for '%s'
%s:not a gcov data file
%s:not a gcov notes file
%s:overflowed
%s:profile mismatch for '%s'
%s:source file is newer than notes file '%s'
%s:stamp mismatch with notes file
%s:unknown function '%u'
%s:version '%.4s', prefer '%.4s'
%s:version '%.4s', prefer version '%.4s'
%srtd%s is ignored in 64bit mode%stune=x86-64%s is deprecated; use %stune=k8%s or %stune=generic%s instead as appropriate'' ' flag'!' flag'#' flag'%%%c' is not a valid operand prefix'%%&' used without any local dynamic TLS references'%%l' operand isn't a label'%s': mmcu='%s'
'%s': specfile='%s'
 
''' flag'(' flag'+' flag'-' flag'0' flag'B' operand has multiple bits set'B' operand is not constant'E' modifier'I' flag'O' modifier'^' flag'_' flag'a' flag'h' applied to non-register operand'm' flag'o' operand is not constant'q' flag(C)(anonymous namespace)(anonymous)(near initialization for %qs)(static destructors for %s)(static initializers for %s)(the message is displayed only once per source file)
({anonymous})*** WARNING *** there are active plugins, do not report this as a bug unless you can reproduce it without enabling any plugins.
*this--CLASSPATH    Deprecated; use --classpath instead.--bootclasspath=<path>    Replace system path.--classpath=<path>    Set class path.--encoding=<encoding>    Choose input encoding (defaults from your locale).--extdirs=<path>    Set the extension directory path.--help argument %q.*s is ambiguous, please be more specific--param inline-unit-growth limit reached--param large-function-growth limit reached--param large-stack-frame-growth limit reached--param max-inline-insns-auto limit reached--param max-inline-insns-single limit reached--resource requires -o-A<question>=<answer>    Assert the <answer> to <question>.  Putting '-' before <question> disables the <answer> to <question>.-D<macro>[=<val>]    Define a <macro> with <val> as its value.  If just <macro> is given, <val> is taken to be 1.-E or -x required when input is from standard input-F <dir>    Add <dir> to the end of the main framework include path.-I <dir>    Add <dir> to the end of the main include path.-I- specified twice-J<directory>    Put MODULE files in 'directory'.-MF <file>    Write dependency output to the given file.-MG may only be used with -M or -MM-MQ <target>    Add a MAKE-quoted target.-MT <target>    Add an unquoted target.-O<number>    Set optimization level to <number>.-U<macro>    Undefine <macro>.-Werror=%s: -%s is not an option that controls warnings-Werror=%s: no option -%s-Wformat-contains-nul ignored without -Wformat-Wformat-extra-args ignored without -Wformat-Wformat-nonliteral ignored without -Wformat-Wformat-security ignored without -Wformat-Wformat-y2k ignored without -Wformat-Wformat-zero-length ignored without -Wformat-Wframe-larger-than=<number>    Warn if a function's stack frame requires more than <number> bytes.-Wlarger-than=<number>    Warn if an object is larger than <number> bytes.-Wnormalized=<none|id|nfc|nfkc>    Warn about non-normalised Unicode strings.-Xbind-now and -Xbind-lazy are incompatible-bundle not allowed with -dynamiclib-bundle_loader not allowed with -dynamiclib-c or -S required for Ada-c required for gnat2scil-c required for gnat2why-client_name not allowed with -dynamiclib-current_version only allowed with -dynamiclib-f%s and -msdata=%s are incompatible-f%s ignored (not supported for DJGPP)
-f%s is not supported with CONST16 instructions-f%s not supported: ignored-fPIC and -fpic are not supported in this configuration-fPIC and -mcall-%s are incompatible-fPIC is not supported-fPIC/-fpic not supported for this target-fPIE is not supported-fada-spec-parent=unit  Dump Ada specs as child units of given parent.-falign-labels=%d is not supported-falign-loops=%d is not supported-fasan-shadow-offset should only be used with -fsanitize=kernel-address-fblas-matmul-limit=<n>    Size of the smallest matrix for which matmul will use BLAS.-fcheck-pointer-bounds is not supported for this target-fcheck-pointer-bounds is not supported with Address Sanitizer-fcheck-pointer-bounds requires '%s' name for internal usage-fcheck=[...]    Specify which runtime checks are to be performed.-fcilkplus must be enabled to use %<_Cilk_for%>-fcilkplus must be enabled to use %<_Cilk_sync%>-fcoarray=<none|single|lib>    Specify which coarray parallelization should be used.-fconst-string-class=<name>    Use class <name> for constant strings.-fconstexpr-depth=<number>    Specify maximum constexpr recursion depth.-fconvert=<big-endian|little-endian|native|swap> The endianness used for unformatted files.-fdbg-cnt=%s-fdeduce-init-list    enable deduction of std::initializer_list for a template type parameter from a brace-enclosed initializer-list.-fdisable-[tree|rtl|ipa]-<pass>=range1+range2 disables an optimization pass.-femit-class-file should used along with -fsyntax-only-fenable-[tree|rtl|ipa]-<pass>=range1+range2 enables an optimization pass.-fexcess-precision=standard for C++-fexcess-precision=standard for Java-fexec-charset=<cset>    Convert all strings and character constants to character set <cset>.-ffixed-line-length-<n>    Use n as character line width in fixed mode.-ffpe-summary=[...]    Print summary of floating point exceptions.-ffpe-trap=[...]    Stop on following floating point exceptions.-ffree-line-length-<n>    Use n as character line width in free mode.-fhandle-exceptions has been renamed -fexceptions (and is now on by default)-finit-character=<n>    Initialize local character variables to ASCII value n.-finit-integer=<n>    Initialize local integer variables to n.-finit-logical=<true|false>    Initialize local logical variables.-finit-real=<zero|snan|nan|inf|-inf>    Initialize local real variables.-finline-matmul-limit=<n>    Specify the size of the largest matrix for which matmul will be inlined.-finput-charset=<cset>    Specify the default character set for source files.-fira-algorithm=[CB|priority] Set the used IRA algorithm.-fira-region=[one|all|mixed] Set regions for IRA.-fjni and -femit-class-file are incompatible-fjni and -femit-class-files are incompatible-flto-compression-level=<number>    Use zlib compression level <number> for IL.-fmax-array-constructor=<n>    Maximum number of objects in an array constructor.-fmax-errors=<number>    Maximum number of errors to report.-fmax-identifier-length=<n>    Maximum identifier length.-fmax-stack-var-size=<n>    Size in bytes of the largest array that will be put on the stack.-fmax-subrecord-length=<n>    Maximum length for subrecords.-fopt-info[-<type>=filename]    Dump compiler optimization details.-force_flat_namespace not allowed with -dynamiclib-fpic and -fPIC not supported without -mdsbt on this target-fpic and -mapcs-reent are incompatible-fpic is not supported-fpie is not supported-fplugin-arg-<name>-<key>[=<value>]    Specify argument <key>=<value> for plugin <name>.-fprefetch-loop-arrays is not supported with -Os-fprefetch-loop-arrays not supported for this target-freorder-blocks-and-partition not supported on this architecture-frepo must be used with -c-fsanitize-recover=leak is not supported-fsanitize-recover=thread is not supported-fsanitize=address and -fsanitize=kernel-address are incompatible with -fsanitize=thread-fsanitize=address and -fsanitize=kernel-address are not supported for this target-fsanitize=address is incompatible with -fsanitize=kernel-address-fsanitize=address not supported for this target-fsanitize=all option is not valid-fsso-struct=[big-endian|little-endian]    Set the default scalar storage order.-fstack-check=[no|generic|specific]    Insert stack checking code into the program.-fstack-limit- options are ignored with -mfdpic; use -mstack-check-l1-fstack-limit- options are not supported on this cpu-fstack-limit-register=<register>    Trap if the stack goes past <register>.-fstack-limit-symbol=<name>    Trap if the stack goes past symbol <name>.-fstack-protector not supported for this target-fuse-linker-plugin is not supported in this configuration-fuse-linker-plugin, but %s not found-fvisibility=[private|protected|public|package]    Set the default symbol visibility.-fvtable-verify is not supported in this configuration-fwide-exec-charset=<cset>    Convert all wide strings and character constants to character set <cset>.-fwpa and -fltrans are mutually exclusive-g is only supported when using GAS on this processor,-g option disabled-gnat<options>    Specify options to GNAT.-gz is not supported in this configuration-gz=<format>    Generate compressed debug sections in format <format>.-gz=zlib is not supported in this configuration-idirafter <dir>    Add <dir> to the end of the system include path.-iframework <dir>    Add <dir> to the end of the system framework include path.-imultiarch <dir>    Set <dir> to be the multiarch include subdirectory.-install_name only allowed with -dynamiclib-iplugindir <dir> option not passed from the gcc driver-iplugindir=<dir>    Set <dir> to be the default plugin directory.-iquote <dir>    Add <dir> to the end of the quote include path.-isysroot <dir>    Set <dir> to be the system root directory.-isystem <dir>    Add <dir> to the start of the system include path.-iwithprefix <dir>    Add <dir> to the end of the system include path.-iwithprefixbefore <dir>    Add <dir> to the end of the main include path.-keep_private_externs not allowed with -dynamiclib-m%s not supported in this configuration-m64 requires PowerPC64 architecture, enabling-m64 requires a PowerPC64 cpu-mabi=ABI    Generate code that conforms to the given ABI.-mabi=ABI    Generate code that conforms to the specified ABI.-maix64 required: 64-bit computation with 32-bit addressing not yet supported-maix64 requires PowerPC64 architecture remain enabled-malign-functions is obsolete, use -falign-functions-malign-functions=%d is not between 0 and %d-malign-jumps is obsolete, use -falign-jumps-malign-jumps=%d is not between 0 and %d-malign-loops is obsolete, use -falign-loops-malign-loops=%d is not between 0 and %d-mallow-movmisalign requires -mvsx-maltivec=le not allowed for big-endian targets-mapcs-stack-check incompatible with -mno-apcs-frame-march=ARCH    Generate code for the specified chip or CPU version.-march=ARCH    Use features of architecture ARCH.-march=ISA    Generate code for the given ISA.-mas100-syntax is incompatible with -gdwarf-masm=intel not supported in this configuration-max-stackframe=%d is not usable, not between 0 and %d-mbackchain -mpacked-stack -mhard-float are not supported in combination-mbig-endian and -mlittle-endian may not be used together-mbranch-cost=%d is not between 0 and 5-mbranch-cost=COST    Set the cost of branches to roughly COST instructions.-mc= must be -mc=tiny, -mc=near, or -mc=far-mcall-aixdesc incompatible with -mabi=elfv2-mclip currently has no effect without -mminmax-mcmodel incompatible with other toc options-mcmodel= is not supported on 32 bit systems-mcode-readable=SETTING    Specify when instructions are allowed to access code.-mcorea and -mcoreb can%'t be used together-mcorea should be used with -mmulticore-mcoreb should be used with -mmulticore-mcpu=    Use features of and schedule code for given CPU.-mcpu=%s conflicts with -march=%s-mcpu=%s has invalid silicon revision-mcpu=%s is not valid-mcpu=CPU    Compile code for ARC variant CPU.-mcpu=CPU    Use features of and optimize for CPU.-mcpu=CPU    Use features of and schedule code for given CPU.-mcpu=PROCESSOR        Use features of and schedule code for given CPU.-mcpu=m16c    Compile code for M16C variants.-mcpu=m32c    Compile code for M32C variants.-mcpu=m32cm    Compile code for M32CM variants.-mcpu=r8c    Compile code for R8C variants.-mcrypto requires -maltivec-mdebug=    Enable debug output.-mdirect-move requires -mvsx-mefficient-unaligned-vsx requires -mallow-movmisalign-mefficient-unaligned-vsx requires -mvsx-memregs=    Number of memreg bytes (default: 16, range: 0..16).-mes0 can only be used with C-mexr is used without -ms-mexr is used without -ms or -msx-mfentry isn%'t supported for 32-bit in combination with -fpic-mfloat-abi=hard and VFP-mfloat-abi=soft and -mfloat-abi=hard may not be used together-mfloat-gprs=    Select GPR floating point method.-mfloat128 requires VSX support-mfloat128-hardware requires full ISA 3.0 support-mflush-func=FUNC    Use FUNC to flush the cache before calling stack trampolines.-mfpu=    Specify FP (sp, dp, sp-lite, dp-lite) (implies -mxilinx-fpu).-mhard-dfp requires -mhard-float-mhard-float not supported-mincoming-stack-boundary=%d is not between %d and 12-mint32 is not supported for H8300 and H8300L targets-mipsN    Generate code for ISA level N.-mlong-double-64 not allowed with -m64-mlong-double-<n>    Specify size of long double (64 or 128 bits).-mmax-stackframe=SIZE    Warn when a stackframe is larger than the specified size.-mmcu=MCU    Select the target MCU.-mmul32x16 supported only for ARC600 or ARC601-mmul=g13 cannot be used with -mcpu=g10-mmul=g13 cannot be used with -mcpu=g14-mmul=g14 cannot be used with -mcpu=g10-mmul=g14 cannot be used with -mcpu=g13-mmulticore can only be used with BF561-mmultiple is not supported on little endian systems-mn is used without -mh or -ms or -msx-mno-altivec disables vsx-mno-dpfp-lrsr supported only with -mdpfp-mno-exr valid only with -ms or -msx                   - Option ignored!-mno-fentry isn%'t compatible with SEH-mno-serialize-volatile    Do not serialize volatile memory references with MEMW instructions.-mnop-mcount is not compatible with this target-mpcrel -fPIC is not currently supported on selected cpu-mpic-register= is useless without -fpic-mpointer-size=[no,32,short,64,long]    Set the default pointer size.-mpower8-fusion-sign requires -mpower8-fusion-mpower8-vector requires -maltivec-mpower8-vector requires -mvsx-mpower9-dform requires -mpower9-vector-mpower9-dform requires -mupper-regs-df-mpower9-dform requires -mupper-regs-sf-mpower9-fusion requires -mpower8-fusion-mpower9-vector requires -mpower8-vector-mpreferred-stack-boundary is not supported for this target-mpreferred-stack-boundary=%d is not between %d and %d-mquad-memory is not available in little endian mode-mquad-memory requires 64-bit mode-mquad-memory-atomic requires 64-bit mode-mr10k-cache-barrier=SETTING    Specify when r10k cache barriers should be inserted.-mrecip requires -ffinite-math or -ffast-math-mrecip requires -fno-trapping-math or -ffast-math-mrecip requires -freciprocal-math or -ffast-math-mregparm is ignored for Intel MCU psABI-mregparm is ignored in 64-bit mode-mregparm=%d is not between 0 and %d-mrelax is only supported for RTP PIC-mrelocatable and -mcall-%s are incompatible-mrelocatable and -mno-minimal-toc are incompatible-mrelocatable and -msdata=%s are incompatible-ms2600 is used without -ms-msdata=%s and -mcall-%s are incompatible-msecure-plt not supported by your assembler-mshared-library-id= specified without -mid-shared-library-mshared-library-id=%s is not between 0 and %d-msim    Use simulator runtime.-msim   Use simulator runtime.-msimple-fpu option ignored-msingle-float and -msoft-float cannot both be specified-msingle-float option equivalent to -mhard-float-mslow-flash-data only supports non-pic code on armv7-m targets-mspfp_fast not available on ARC600 or ARC601-mstring is not supported on little endian systems-mstringop-strategy=rep_8byte not supported for 32-bit code-msx is not supported in coff-mtoc-fusion requires -mpower8-fusion-mtoc-fusion requires 64-bit-mtoc-fusion requires medium/large code model-mtraceback=    Select full, part, or no traceback table.-mtune=    Schedule code for given CPU.-mtune= expects mn10300, am33, am33-2, or am34-mtune=ARCH    Tune alignment for the specified chip or CPU version.-mtune=CPU    Optimize for CPU.-mtune=PROCESSOR    Optimize the output for PROCESSOR.-mupper-regs-df requires -mvsx-mupper-regs-sf requires -mpower8-vector-mvsx and -mno-altivec are incompatible-mvsx and -mpaired are incompatible-mvsx needs indexed addressing-mvsx requires hardware floating point-mvsx-timode requires -mvsx-mxl-multiply-high requires -mno-xl-soft-mul-mxl-reorder can be used only with -mcpu=v8.30.a or greater-mxl-reorder requires -mxl-pattern-compare for -mcpu=v8.30.a-o <file>    Place output into <file>.-pg and -fomit-frame-pointer are incompatible-pie is not supported in this configuration-pipe ignored because -save-temps specified-pipe not supported-private_bundle not allowed with -dynamiclib-trigraphs    Support ISO C trigraphs.31 bit ABI.64 bit ABI.64-bit SPE not supported<During initialization>
<anonymous %s><anonymous><brace-enclosed initializer list><built-in><command-line><declaration error><enumerator><erroneous-expression><expression error><lambda<lambda><missing><return value> <return-value><statement><tag-error><template arguments error><template parameter error><throw-expression><type error><type-error><typedef-error><typeprefixerror><ubsan routine call><unknown operator><unknown><unnamed-fixed:<unnamed-float:<unnamed-unsigned:<unnamed><unparsed><unresolved overloaded function type>@catch parameter can not be protocol-qualified@interface of class %qE not foundA factor for tuning the upper bound that swing modulo scheduler uses for scheduling a loop.A synonym for -std=c89 (for C) or -std=c++98 (for C++).A threshold on the average loop count considered by the swing modulo scheduler.AAPCS does not support -mcallee-super-interworkingAAPCS does not support -mcaller-super-interworkingABSTRACT INTERFACE %qs must not be referenced at %LABSTRACT INTERFACE at %CABSTRACT type %qs used at %LABSTRACT type at %CACQUIRED_LOCK variableALLOCATE objectASSIGN statement at %CASSOCIATE construct at %CASYNCHRONOUS attribute at %CASYNCHRONOUS statement at %CAccept extensions to support legacy code.Access variables in 32-bit PPU objects (default).Access variables in 64-bit PPU objects.Actual argument contains too few elements for dummy argument %qs (%lu/%lu) at %LActual string length does not match the declared one for dummy argument '%s' (%ld/%ld)Actual string length is shorter than the declared one for dummy argument '%s' (%ld/%ld)Add explicit checks for division by zero.Add explicit checks for division overflow in INT_MIN / -1.Additional debug prints.Alias for --help=target.Alias for -femit-class-file.Alias for -mcpu=g10.Alias for -mcpu=g13.Alias for -mcpu=g14.Alias has call edgesAlias has non-alias referenceAlign all labels.Align all loops to 32 byte boundary.Align code and data to 32 bits.Align destination of the string operations.Align doubles at 64-bit boundaries.Align some doubles on dword boundary.Align the start of functions.Align the start of loops.Align to the base type of the bit-field.Align variables on a 32-bit boundary.All functions default to the far section.All intrinsics procedures are available regardless of selected standard.All variables default to the far section.All variables default to the near section.All variables default to the tiny section.Allocate local variables on the stack to allow indirect recursion.Allocation would exceed memory limitAllow arbitrary character line width in fixed mode.Allow arbitrary character line width in free mode.Allow bit-fields to cross word boundaries.Allow branches to be packed with other instructions.Allow conversions between __ea and generic pointers (default).Allow dollar signs in entity names.Allow function addresses to be held in registers.Allow gcc to generate LIW instructions.Allow gcc to generate the SETLB and Lcc instructions.Allow gcc to use the repeat/erepeat instructions.Allow hardware floating-point instructions to cover both 32-bit and 64-bit operations.Allow the use of MDMX instructions.Allow the use of MT instructions.Allow the use of hardware floating point instructions for V850E2V3 and up.Allow the use of hardware floating-point ABI and instructions.Allow two instructions to be issued per cycle.Alternate calling convention.AltiVec and SPE instructions cannot coexistAltiVec argument passed to unprototyped functionAltiVec not supported in this targetAlways check for non gcj generated classes archives.Always generate long calls.Always treat bitfields as int-sized.Always use Dynamic Realigned Argument Pointer (DRAP) to realign stack.Always use JSR, never BSR, for calls.Annotate assembler instructions with estimated addresses.Append a second underscore if the name already contains an underscore.Append underscores to externally visible names.Apply negative sign to zero values.Approximate maximum number of instructions to allow between a hint and its branch [125].Argument %qs of %qs with PASS(%s) at %L must be of the derived type %qsArgument %qs of %qs with PASS(%s) at %L must be of the derived-type %qsArgument %qs of %qs with PASS(%s) at %L must be scalarArgument %qs of elemental procedure at %L must be scalarArgument NCOPIES of REPEAT intrinsic is negative (its value is %ld)Argument NCOPIES of REPEAT intrinsic is too largeArgument of %s at %L must be of length oneArgument of %s function at %L is negativeArgument of FINAL procedure at %L must be of type %qsArithmetic IF statement at %CArithmetic NaN at %LArithmetic OK at %LArithmetic overflow at %LArithmetic underflow at %LArray element size too big at %CArray operands are incommensurate at %LArray reference out of boundsAssembler does not support -mabi=ilp32Assembler options
=================
 
Assigned label is not a target labelAssignment of scalar to unallocated arrayAssume ICPLBs are enabled at runtime.Assume a large TLS segment.Assume all symbols have 32-bit values.Assume all variable arg functions are prototyped.Assume code will be assembled by GAS.Assume code will be linked by GNU ld.Assume code will be linked by HP ld.Assume incoming stack aligned to this power of 2.Assume native functions are implemented using JNI.Assume normal C execution environment.Assume possible double misalignment.Assume pt* instructions won't trapAssume small address space.Assume symbols might be invalid.Assume target CPU is configured as big endian.Assume target CPU is configured as little endian.Assume that floating-point stores and loads are not likely to cause conflict when placed into one instruction group.Assume that run-time support has been provided, so omit -lsim from the linker command line.Assume that the source file is fixed form.Assume that the source file is free form.Assume the VxWorks RTP environment.Assume the VxWorks vThreads environment.Assume the runtime uses a hash table to map an object to its synchronization structure.Assumed type at %CAt global scope:At top level:Atomically write back software data cache lines (default).Attempt to DEALLOCATE unallocated '%s'Attempt to keep stack aligned to this power of 2.Attempting to allocate already allocated variableAttempting to allocate already allocated variable '%s'Automatically align branch targets to reduce branch penalties.Avoid all range limits on call instructions.Avoid generating pc-relative calls; use indirection.Avoid generation of indexed load/store instructions when possible.Avoid overlapping destination and address registers on LDRD instructionsAvoid speculative loads to work around a hardware anomaly.Avoid use of the DIV and MOD instructionsBB %i has incorrect edgeBB %i is missing an edgeBIND(C) applied to %s %s at %LBIND(C) at %LBIND(C) statement at %CBLANK= at %C not allowed in Fortran 95BLOCK construct at %CBYTE type at %CBad 128-bit moveBad GPR fusionBad byte codes.
Bad nameBad operatorBad type in constant expressionBoard name [and memory region].Bound on number of candidates below that all candidates are considered in iv optimizations.Bound on number of iv uses in loop optimized in iv optimizations.Bound on number of runtime checks inserted by the vectorizer's loop versioning for alias check.Bound on number of runtime checks inserted by the vectorizer's loop versioning for alignment check.Bound on size of expressions used in the scalar evolutions analyzer.Bound on the complexity of the expressions in the scalar evolutions analyzer.Bound on the cost of an expression to compute the number of iterations.Bound on the number of iterations the brute force # of iterations analysis algorithm evaluates.Branches are this expensive (1-5, arbitrary units).Branches executed:%s of %d
Build for Core A.Build for Core B.Build for SDRAM.C++11 %<constexpr%> only available with -std=c++11 or -std=gnu++11C++11 %<noexcept%> only available with -std=c++11 or -std=gnu++11C++11 %<thread_local%> only available with -std=c++11 or -std=gnu++11C++11 auto only available with -std=c++11 or -std=gnu++11CLASS statement at %CCOLLECT_GCC must be setCOLLECT_GCC must be set.COLLECT_LTO_WRAPPER must be setCOMMON %qs at %L does not existCOMPLEX quantities cannot be compared at %LCONTIGUOUS attribute at %CCONTIGUOUS statement at %CCONVERT tag at %LCPU you selected does not support x86-64 instruction setCall a library routine to do integer divisions.Call mcount for profiling before a function prologue.Calls executed:%s of %d
Can't construct ABSTRACT type %qs at %LCan't convert %qs to %qs at %LCan't convert %s to %s at %LCan't open file %qsCan't overwrite GENERIC %qs at %LCannot change directory to %sCannot get current directory nameCannot make directory %sCannot map %sCannot open %sCannot open '%s' for output.
Cannot open intermediate output file %s
Cannot open profile file %s.Cannot open source file %s
Cannot read %sCannot read function profile from %s.Cannot read string table from %s.Cannot read working set from %s.Catch typos.Cause gas to print tomcat statistics.Change of value in conversion from  %qs to %qs at %LChange of value in conversion from %qs to %qs at %LChange only the low 8 bits of the stack pointer.Change the ABI to allow double word insns.Change the amount of scheduler lookahead.Change the maximum length of conditionally-executed sequences.Change the number of temporary registers that are available to conditionally-executed sequences.Change the stack pointer without disabling interrupts.Character length of actual argument shorter than of dummy argument %qs (%lu/%lu) at %LCheck for stack overflow at runtime.Check for syntax errors, then stop.Check the return value of new in C++.Chose strategy to generate stringop using.Clear all tune features.Coarray declaration at %CCode size: small, medium or large.Comma required after P descriptorCompile code for big endian mode.Compile code for little endian mode.  This is the default.Compile code that relies on Cygwin DLL wrappers to support C++ operator new/delete replacement.Compile for 32-bit pointers.Compile for 64-bit pointers.Compile for ETRAX 100 (CRIS v8).Compile for ETRAX 4 (CRIS v3).Compile for V8+ ABI.Compile for the DSBT shared library ABI.Compile for the m32r.Compile for the m32r2.Compile for the m32rx.Compile for the v850 processor.Compile for the v850e processor.Compile for the v850e1 processor.Compile for the v850e2 processor.Compile for the v850e2v3 processor.Compile for the v850e3v5 processor.Compile for the v850es variant of the v850e1.Component %qs at %C already declared at %LComponent %qs at %C already in the parent type at %LComputed GOTO at %CConfiguration name.Configured with: %s
Conform more closely to IBM XLC semantics.Conform to nothing in particular.Conform to the ISO 1990 C standard as amended in 1994.Conform to the ISO 1990 C standard with GNU extensions.Conform to the ISO 1990 C standard.Conform to the ISO 1998 C++ standard revised by the 2003 technicalConform to the ISO 1998 C++ standard revised by the 2003 technical corrigendum.Conform to the ISO 1999 C standard with GNU extensions.Conform to the ISO 1999 C standard.Conform to the ISO 2011 C standard with GNU extensions.Conform to the ISO 2011 C standard.Conform to the ISO 2011 C++ standard with GNU extensions.Conform to the ISO 2011 C++ standard.Conform to the ISO 2014 C++ standard with GNU extensions.Conform to the ISO 2014 C++ standard.Conform to the ISO 2017(?) C++ draft standard (experimental and incomplete support).Conform to the ISO 201z(7?) C++ draft standard with GNU extensions (experimental and incomplete support).Conform to the ISO Fortran 2003 standard.Conform to the ISO Fortran 2008 standard including TS 29113.Conform to the ISO Fortran 2008 standard.Conform to the ISO Fortran 95 standard.Conform to the o32 FPXX ABI.Consider access to byte sized memory slow.Consider type 'int' to be 16 bits wide.Consider type 'int' to be 32 bits wide.Const variables default to the near section.Constant expression required at %CControl the IEEE trap mode.Control the generated fp rounding mode.Control the precision given to fp exceptions.Conversion from %qs to %qs at %LConversion from %s to %s at %LCopy array sections into a contiguous block on procedure entry.Copyright %s 2014-2016 Free Software Foundation, Inc.
Cost to assume for a branch insn.Cost to assume for a multiply insn.Cost to assume for gettr insn.Could not generate addis value for fusionCould not open output file '%s'
Count speculative dependencies while calculating priority of instructions.Cray pointer %qs in %s clause at %LCreate GUI application.Create a position independent executable.Create a shared library.Create console application.Create data files needed by "gcov".Creating '%s'
Creating array temporary at %LDEALLOCATE objectDECIMAL= at %C not allowed in Fortran 95DELIM= at %C not allowed in Fortran 95DO step value is zeroData greater than given threshold will go into .ldata section in x86-64 medium model.Data is stored in big-endian format.Data is stored in little-endian format.  (Default).Deleted feature:Deprecated in favor of -std=c++11.Deprecated in favor of -std=c++14.Deprecated in favor of -std=c11.Deprecated in favor of -std=c99.Deprecated in favor of -std=gnu++11.Deprecated in favor of -std=gnu++14.Deprecated in favor of -std=gnu11.Deprecated in favor of -std=gnu99.Deprecated in favor of -std=iso9899:1999.Deprecated option.  Use -misel instead.Deprecated option.  Use -mno-isel instead.Deprecated option.  Use -mno-spe instead.Deprecated option.  Use -mno-vrsave instead.Deprecated option.  Use -mspe instead.Deprecated option.  Use -mvrsave instead.Deprecated.  This switch has no effect.Deprecated.  Use -Os instead.Description for mxl-mode-bootstrap.Description for mxl-mode-executable.Description for mxl-mode-novectors.Description for mxl-mode-xmdstub.Determine which dependences between insns are considered costly.Different CHARACTER lengths (%ld/%ld) in array constructorDisable FP regs.Disable all optional instructions.Disable hardware floating point.Disable indexed addressing.Disable preprocessing.Disable space regs.Disable the use of RX FPU instructions.  Disallow direct calls to global functions.Disallow more than 'msched-max-memory-insns' in instruction group. Otherwise, limit is 'soft' (prefer non-memory operations when limit is reached).Display compile time statistics.Display contents of a class file in readable form.
 
Display the code tree after front end optimization.Display the code tree after parsing.Display the code tree after parsing; deprecated option.Display the compiler's version.Display this information.Division by zero at %LDivision strategy, one of: call, call2, fp, inv, inv:minlat, inv20u, inv20l, inv:call, inv:call2, inv:fp, call-div1, call-fp, call-table.Do not assume a large TLS segment.Do not disable space regs.Do not discard comments in macro expansions.Do not discard comments.Do not emit addressing modes with side-effect assignment.Do not emit complex integer constants to read-only memory.Do not emit function prologue or epilogue.Do not enforce strict alignment.Do not generate #line directives.Do not generate .size directives.Do not generate a single exit point for each function.Do not generate code that can only run in supervisor mode (default).Do not generate load/store with update instructions.Do not generate mpy instructions for ARC700.Do not inline integer division.Do not inline square root.Do not load the PIC register in function prologues.Do not look for object files in standard path.Do not mark ABI switches in e_flags.Do not place floating point constants in TOC.Do not place symbol+offset constants in TOC.Do not pretend that branches are expensive.Do not provide a default start-address 0x100 of the program.Do not support SSE4.1 and SSE4.2 built-in functions and code generation.Do not treat local variables and COMMON blocks as if they were named in SAVE statements.Do not tune code and read-only data alignment.Do not tune stack alignment.Do not tune writable data alignment.Do not use MDMX instructions.Do not use MIPS-3D instructions.Do not use VAX fp.Do not use a cache-flushing function before calling stack trampolines.Do not use addresses that allocate global registers.Do not use condition codes from normal instructions.Do not use hardware FP.Do not use hardware floating point.Do not use hardware fp.Do not use hardware quad fp instructions.Do not use inline patterns for copying memory.Do not use the AltiVec ABI extensions.Do not use the SPE ABI extensions.Do not use the bit-field instructions.Do not use the callt instruction (default).Do not use the fabsd custom instruction.Do not use the fabss custom instr.Do not use the faddd custom instruction.Do not use the fadds custom instruction.Do not use the fatand custom instruction.Do not use the fatans custom instruction.Do not use the fcmpeqd custom instruction.Do not use the fcmpeqs custom instruction.Do not use the fcmpged custom instruction.Do not use the fcmpges custom instruction.Do not use the fcmpgtd custom instruction.Do not use the fcmpgts custom instruction.Do not use the fcmpled custom instruction.Do not use the fcmples custom instruction.Do not use the fcmpltd custom instruction.Do not use the fcmplts custom instruction.Do not use the fcmpned custom instruction.Do not use the fcmpnes custom instruction.Do not use the fcosd custom instruction.Do not use the fcoss custom instruction.Do not use the fdivd custom instruction.Do not use the fdivs custom instruction.Do not use the fexpd custom instruction.Do not use the fexps custom instruction.Do not use the fextsd custom instruction.Do not use the fixdi custom instruction.Do not use the fixdu custom instruction.Do not use the fixsi custom instruction.Do not use the fixsu custom instruction.Do not use the floatid custom instruction.Do not use the floatis custom instruction.Do not use the floatud custom instruction.Do not use the floatus custom instruction.Do not use the flogd custom instruction.Do not use the flogs custom instruction.Do not use the fmaxd custom instruction.Do not use the fmaxs custom instruction.Do not use the fmind custom instruction.Do not use the fmins custom instruction.Do not use the fmuld custom instruction.Do not use the fmuls custom instruction.Do not use the fnegd custom instruction.Do not use the fnegs custom instruction.Do not use the frdxhi custom instruction.Do not use the frdxlo custom instruction.Do not use the frdy custom instruction.Do not use the fsind custom instruction.Do not use the fsins custom instruction.Do not use the fsqrtd custom instruction.Do not use the fsqrts custom instruction.Do not use the fsubd custom instruction.Do not use the fsubs custom instruction.Do not use the ftand custom instruction.Do not use the ftans custom instruction.Do not use the ftruncds custom instruction.Do not use the fwrx custom instruction.Do not use the fwry custom instruction.Do not use the round custom instruction.Do not use unaligned memory references.Do not warn about using "long long" when -pedantic.Do stack checking using bounds in L1 scratch memory.Does nothing.  Preserved for backward compatibility.Does nothing. Preserved for backward compatibility.Don't align items in code or data.Don't call any cache flush functions.Don't call any cache flush trap.Don't create a position independent executable.Don't generate checks for control speculation in selective scheduling.Don't generate privileged-mode only code; implies -mno-inline-ic_invalidate if the inline code would not work in user mode.Don't optimize block moves, use memcpy.Don't optimize block moves.Don't use P-mnemonics for branches.Don't use any of r32..r63.Don't warn about uses of Microsoft extensions.Double-precision floating point unit.Driving:Duplicate %s attribute at %LDuplicate %s specification at %CDuplicate DEFERRED at %CDuplicate construct label %qs at %CDuplicate symbol %qs in formal argument list at %CDynamically allocate cc registers.E specifier not allowed with g0 descriptorE500 and FPRs not supportedENCODING= at %C not allowed in Fortran 95ENTRY statement at %CENUM and ENUMERATOR at %CERRMSG at %LERRMSG tag at %LERRMSG variableESA/390 architecture.EXTENDS at %LEmit 16-bit relocations to the small data areas.Emit 32-bit relocations to the small data areas.Emit IEEE-conformant code, without inexact exceptions.Emit call graph information.Emit cmpeqdi_t pattern even when -mcbranchdi is in effect.Emit code for the byte/word ISA extension.Emit code for the counting ISA extension.Emit code for the fp move and sqrt ISA extension.Emit code for the motion video ISA extension.Emit code using explicit relocation directives.Emit direct branches to local functions.Emit errors when run-time relocations are generated.Emit extra code in the function prologue in order to trap if the stack size exceeds the given limit.Emit function-calls using global offset table when generating PIC.Emit indirect branches to local functions.Emit long load/store sequences.Emit rdval instead of rduniq for thread pointer.Emit stop bits before and after volatile extended asms.Emit verbose debug information in assembly code.Emit warnings when run-time relocations are generated.Empty FINAL at %CEnable 32-bit divide instructions.Enable 32-bit multiply instructions.Enable Cilk Plus.Enable DIV, DIVU.Enable DWARF line debug info via GNU as.Enable Function Descriptor PIC mode.Enable ID based shared library.Enable IVC2 scheduling.Enable MUL instructions.Enable MUL.X and UMUL.X instructions.Enable MULX instructions, assume fast shifter.Enable MeP Coprocessor with 32-bit registers.Enable MeP Coprocessor with 64-bit registers.Enable MeP Coprocessor.Enable OpenACC.Enable OpenMP's SIMD directives.Enable PIC support for building libraries.Enable SH5 cut2 workaround.Enable TPF-OS tracing code.Enable absolute difference instructions.Enable alignment of COMMON blocks.Enable all -Wunused- warnings.Enable all optional instructions.Enable asan builtin functions protection.Enable asan detection of use-after-return bugs.Enable asan globals protection.Enable asan load operations protection.Enable asan stack protection.Enable asan store operations protection.Enable assignability checks for stores into object arrays.Enable average instructions.Enable backend debugging.Enable barrel shift instructions.Enable bit manipulation instructions.Enable cbranchdi4 pattern.Enable clip instructions.Enable conditional execution other than moves/scc.Enable conditional moves.Enable constructor/destructor feature.Enable debug output.Enable decimal floating point hardware support.Enable divide and modulus instructions.Enable earlier placing stop bits for better scheduling.Enable exception handling.Enable front end optimization.Enable generation of R2 BMX instructions.Enable generation of R2 CDX instructions.Enable hardware floating point.Enable inlining of PLT in function calls.Enable label alignment optimizations.Enable leading zero instructions.Enable linker optimizations.Enable linker relaxation.Enable linker relaxations.Enable linker relaxing.Enable lra.Enable min/max instructions.Enable most warning messages.Enable multicore support.Enable multiply instructions.Enable nested conditional execution optimizations.Enable optimization of static class initialization code.Enable optimizing &&/|| in conditional execution.Enable preprocessing.Enable range checking during compilation.Enable saturation instructions.Enable separate data segment.Enable setting GPRs to the result of comparisons.Enable sign extend instructions.Enable stack probing.Enable strict 32-bit psABI struct return checking.Enable support for C++ concepts.Enable support for the RH850 ABI.  This is the default.Enable the loop nest optimizer.Enable the normal mode.Enable the use of 64-bit floating point registers in fmov instructions.  See -mdalign if 64-bit alignment is required.Enable the use of RX FPU instructions.  This is the default.Enable the use of indexed loads.Enable the use of the fsca instruction.Enable the use of the fsrra instruction.Enable the use of the indexed addressing mode for SHmedia32/SHcompact.Enable the use of the short load instructions.Enable traditional preprocessing.Enable use of GPREL for read-only data in FDPIC.Enable use of POST_INC / POST_DEC.Enable use of POST_MODIFY.Enable use of sdata/scommon/sbss.Enable user-defined instructions.Enable v850e3v5 loop instructions.Enable verbose output.Enable/disable GP-relative addressing.Enable/disable using IEEE 128-bit floating point instructions.Enabled ID based shared library.Encode SSE instructions with VEX prefix.End expression in DO loopEnd of search list.
Equivalent to -mgpopt=local.Equivalent to -mgpopt=none.ErrorError converting integerError in pointer initialization at %CError in type-spec at %LError writing modules file: %sError writing output file '%s'
EventExit on the first error occurred.Expected ")" at %CExpected "," at %CExpected %<(%> at %CExpected %<)%> or %<,%> at %CExpected %<,%> at %CExpected %<,%> or end of statement at %CExpected %<::%> at %CExpected %<=>%> at %CExpected %<END INTERFACE ASSIGNMENT (=)%> at %CExpected :: in TYPE definition at %CExpected DO loop at %CExpected P edit descriptorExpected a nameless interface at %CExpected a procedure for argument %qs at %LExpected a procedure pointer for argument %qs at %LExpected access-specifier at %CExpected argument list at %CExpected array subscript at %CExpected association at %CExpected association list at %CExpected attribute bit nameExpected binding attribute at %CExpected binding name at %CExpected component reference at %CExpected expression typeExpected integerExpected integer stringExpected left parenthesisExpected nameExpected real stringExpected right parenthesisExpected stringExpected terminating name at %CExpected variable name at %CExpecting %<END INTERFACE %s%> at %CExpecting %<END INTERFACE OPERATOR (%s)%> at %C, Expecting %<END INTERFACE OPERATOR (%s)%> at %C, but got %sExpecting %<END INTERFACE OPERATOR (.%s.)%> at %CExpecting %s at %CExpecting %s statement at %LExport functions even if they can be inlined.Expression at %L must be scalarFLUSH statement at %CFP exceptions are enabled.Factor complex constructors and destructors to favor space over speed.Fatal ErrorFine grain control of tune features.Fix min_int calculationFloating point unit does not support divide & sqrt.Follow Renesas (formerly Hitachi) / SuperH calling conventions.Follow the EABI linkage requirements.For bug reporting instructions, please see:
%s.
For intrinsics library: pass all parameters in registers.For nested functions on stack executable permission is set.Force assembly output to always use hex constants.Force functions to be aligned to a 4 byte boundary.Fortran 2008 obsolescent feature:Function %qs as initialization expression at %LFunction %qs at %L cannot have an initializerFunction %qs at %L must be PUREFunction %qs requires an argument list at %CFunction starts are aligned to this power of 2.GCSE disabledGENERIC binding at %CGMP version %s, MPFR version %s, MPC version %s, isl version %s
GNU C no longer supports -traditional without -EGNU Extension:GNU Objective C no longer supports traditional compilationGenerate 16-bit instructions.Generate 16bit i386 code.Generate 32-bit FPU-less SHmedia code.Generate 32-bit SHmedia code.Generate 32-bit code.Generate 32-bit offsets in switch tables.Generate 32bit i386 code.Generate 32bit x86-64 code.Generate 64-bit FPU-less SHmedia code.Generate 64-bit SHmedia code.Generate 64-bit code.Generate 64bit x86-64 code.Generate APCS conformant stack frames.Generate Altivec instructions using big-endian element order.Generate Altivec instructions using little-endian element order.Generate Cell microcode.Generate ELF FDPIC code.Generate FPU-less SHcompact code.Generate GFLOAT double precision code.Generate H8/300H code.Generate H8S code.Generate H8S/2600 code.Generate H8SX code.Generate ILP32 code.Generate LP64 code.Generate MIPS16 code.Generate PA1.0 code.Generate PA1.1 code.Generate PA2.0 code (requires binutils 2.10 or later).Generate PPC750CL paired-single instructions.Generate SBIT, CBIT instructions.Generate SH1 code.Generate SH2 code.Generate SH2a FPU-less code.Generate SH2e code.Generate SH3 code.Generate SH3e code.Generate SH4 FPU-less code.Generate SH4 code.Generate SH4-100 FPU-less code.Generate SH4-100 code.Generate SH4-200 FPU-less code.Generate SH4-200 code.Generate SH4-300 FPU-less code.Generate SH4-300 code.Generate SH4a FPU-less code.Generate SH4a code.Generate SH4al-dsp code.Generate SHcompact code.Generate SPE SIMD instructions on E500.Generate VRSAVE instructions when generating AltiVec code.Generate a call to abort if a noreturn function returns.Generate a single exit point for each function.Generate auto-inc/dec instructions.Generate big endian code.Generate big-endian code.Generate bit instructions.Generate branch hints for branches.Generate call insns as direct calls.Generate call insns as indirect calls, if necessary.Generate call insns as indirect calls.Generate checks for all read accesses to memory.Generate checks for all write accesses to memory.Generate checks for references to NULL.Generate cld instruction in the function prologue.Generate code for 18 bit addressing.Generate code for 32 bit addressing.Generate code for CR16C architecture.Generate code for CR16C+ architecture (Default).Generate code for GNU as.Generate code for GNU assembler (gas).Generate code for GNU ld.Generate code for GNU runtime environment.Generate code for SH4 340 series (MMU/FPU-less).Generate code for SH4 400 series (MMU/FPU-less).Generate code for SH4 500 series (FPU-less).Generate code for Thumb state.Generate code for UNIX assembler.Generate code for a 32-bit ABI.Generate code for a 5206e.Generate code for a 520X.Generate code for a 528x.Generate code for a 5307.Generate code for a 5407.Generate code for a 64-bit ABI.Generate code for a 68000.Generate code for a 68010.Generate code for a 68020.Generate code for a 68030.Generate code for a 68040, without any new instructions.Generate code for a 68040.Generate code for a 68060, without any new instructions.Generate code for a 68060.Generate code for a 68302.Generate code for a 68332.Generate code for a 68851.Generate code for a ColdFire v4e.Generate code for a DLL.Generate code for a Fido A.Generate code for a cpu32.Generate code for an 11/10.Generate code for an 11/40.Generate code for an 11/45.Generate code for built-in atomic operations.Generate code for darwin loadable kernel extensions.Generate code for functions even if they are fully inlined.Generate code for given CPU.Generate code for old exec BSS PLT.Generate code for static functions even if they are never called.Generate code for the Android platform.Generate code for the Boehm GC.Generate code for the M*Core M210Generate code for the M*Core M340Generate code for the kernel or loadable kernel extensions.Generate code for the supervisor mode (default).Generate code for the user mode.Generate code in 32 bit ARM state.Generate code in big endian mode.Generate code in big-endian mode.Generate code in little endian mode.Generate code in little-endian mode.Generate code suitable for executables (NOT shared libs).Generate code suitable for fast turn around debugging.Generate code that can be used in SVR4-style dynamic objects.Generate code that conforms to Intel MCU psABI.Generate code that conforms to the given ABI.Generate code that uses 68881 floating-point instructions.Generate code that won't be linked against any other ID shared libraries,Generate code to use a non-exec PLT and GOT.Generate code which uses hardware floating point instructions.Generate code which uses only the general registers.Generate code with library calls for floating point.Generate code without GP reg.Generate conditional move instructions.Generate cpp defines for server IO.Generate cpp defines for workstation IO.Generate default double-precision SH2a-FPU code.Generate default single-precision SH2a-FPU code.Generate default single-precision SH4 code.Generate default single-precision SH4-100 code.Generate default single-precision SH4-200 code.Generate default single-precision SH4-300 code.Generate default single-precision SH4a code.Generate discontiguous stack frames.Generate divide results with reminder having the same sign as the divisor (not the dividend).Generate fast indirect calls.Generate floating point mathematics using given instruction set.Generate inline floating point division, optimize for latency.Generate inline floating point division, optimize for throughput.Generate inline integer division, optimize for latency.Generate inline integer division, optimize for throughput.Generate inline square root, optimize for latency.Generate inline square root, optimize for throughput.Generate instances of Class at runtime.Generate instructions supported by barrel shifter.Generate isel instructions.Generate little endian code.Generate little-endian code.Generate load/store multiple instructions.Generate load/store with update instructions.Generate make dependencies and compile.Generate make dependencies.Generate mul64 and mulu64 instructions.Generate norm instruction.Generate normal-mode code.Generate only single-precision SH2a-FPU code.Generate only single-precision SH4 code.Generate only single-precision SH4-100 code.Generate only single-precision SH4-200 code.Generate only single-precision SH4-300 code.Generate only single-precision SH4a code.Generate pc-relative code.Generate performance extension instructions.Generate phony targets for all headers.Generate re-entrant, PIC code.Generate reciprocals instead of divss and sqrtss.Generate self-relocatable code.Generate sin, cos, sqrt for FPU.Generate string instructions for block moves.Generate swap instruction.Generate v3 push25/pop25 instructions.Generated should be loaded by bootstrap loader.Give branches their default cost.Hollerith constant at %CHow much can given compilation unit grow because of the inlining (in percent).How much can given compilation unit grow because of the interprocedural constant propagation (in percent).ID of shared library to build.IMPORT statement at %CIMPURE procedure at %CIOMSG tag at %LISO C does not allow %<%E (expression)%>ISO C does not support %<#pragma STDC FLOAT_CONST_DECIMAL64%>ISO C does not support %<__int%d%> typesISO C does not support decimal floating pointISO C does not support fixed-point typesISO C does not support saturating typesISO C forbids %<goto *expr;%>ISO C forbids casts to union typeISO C forbids comparison of %<void *%> with function pointerISO C forbids conditional expr between %<void *%> and function pointerISO C forbids nested functionsISO C forbids zero-size arrayISO C forbids zero-size array %qEISO C++ does not allow %<alignof%> with a non-typeISO C++ does not allow ?: with omitted middle operandISO C++ does not permit %<%T::%D%> to be defined as %<%T::%D%>ISO C++ does not permit %<alignof%> applied to a function typeISO C++ does not support %<__int%d%> for %qsISO C++ forbids calling %<::main%> from within programISO C++ forbids casting to an array type %qTISO C++ forbids compound-literalsISO C++ forbids computed gotosISO C++ forbids converting a string constant to %qTISO C++ forbids empty anonymous enumISO C++ forbids variable length arrayISO C++ forbids variable length array %qDISO C++ forbids zero-size arrayISO C++ forbids zero-size array %qDISO C90 does not support %<_Alignas%>ISO C90 does not support %<_Generic%>ISO C90 does not support %<_Noreturn%>ISO C90 does not support %<_Static_assert%>ISO C90 does not support %<__func__%> predefined identifierISO C90 does not support %<long long%>ISO C90 does not support %qEISO C90 does not support boolean typesISO C90 does not support complex typesISO C90 does not support flexible array membersISO C90 does not support the %<_Atomic%> qualifierISO C90 forbids variable length arrayISO C90 forbids variable length array %qEISO C99 does not support %<_Alignas%>ISO C99 does not support %<_Generic%>ISO C99 does not support %<_Noreturn%>ISO C99 does not support %<_Static_assert%>ISO C99 does not support %qEISO C99 does not support the %<_Atomic%> qualifierISO_C_BINDING module at %CIf -ftree-vectorize is used, the minimal loop bound of a loop to be considered for vectorization.If -fvariable-expansion-in-unroller is used, the maximum number of times that an individual variable will be expanded during loop unrolling.If number of candidates in the set is smaller, we always try to remove unused ivs during its optimization.Ignore 'D' in column one in fixed form.Ignore dllimport for functions.Ignored.Illegal preprocessor directiveIn constructor %qsIn copy constructor %qsIn destructor %qsIn function %qsIn lambda functionIn member function %qsIn static member function %qsInclude directory %qs: %sIncompatible ranks in %s (%d and %d) at %LIncompatible typespec for array element at %LInconsistent ranks for operator at %%L and %%LIncorrect function return valueIncrease the IEEE compliance for floating-point comparisons.Inhibit the use of hardware floating point instructions.Initialize local variables to zero (from g77).Inline all known string operations.Inline constants if it can be done in 2 insns or less.Inline memset/memcpy string operations, but perform inline version only for small blocks.Inline recursively only when the probability of call being executed exceeds the parameter.Input file is a file with a list of filenames to compile.Insert hbrp instructions after hinted branch targets to avoid the SPU hang issue.Insert nops when it might improve performance by allowing dual issue (default).Insert stack checking code into the program.  Same as -fstack-check=specific.Integer expression required at %CInteger id (N) of fabsd custom instruction.Integer id (N) of fabss custom instruction.Integer id (N) of faddd custom instruction.Integer id (N) of fadds custom instruction.Integer id (N) of fatand custom instruction.Integer id (N) of fatans custom instruction.Integer id (N) of fcmpeqd custom instruction.Integer id (N) of fcmpeqs custom instruction.Integer id (N) of fcmpged custom instruction.Integer id (N) of fcmpges custom instruction.Integer id (N) of fcmpgtd custom instruction.Integer id (N) of fcmpgts custom instruction.Integer id (N) of fcmpled custom instruction.Integer id (N) of fcmples custom instruction.Integer id (N) of fcmpltd custom instruction.Integer id (N) of fcmplts custom instruction.Integer id (N) of fcmpned custom instruction.Integer id (N) of fcmpnes custom instruction.Integer id (N) of fcosd custom instruction.Integer id (N) of fcoss custom instruction.Integer id (N) of fdivd custom instruction.Integer id (N) of fdivs custom instruction.Integer id (N) of fexpd custom instruction.Integer id (N) of fexps custom instruction.Integer id (N) of fextsd custom instruction.Integer id (N) of fixdi custom instruction.Integer id (N) of fixdu custom instruction.Integer id (N) of fixsi custom instruction.Integer id (N) of fixsu custom instruction.Integer id (N) of floatid custom instruction.Integer id (N) of floatis custom instruction.Integer id (N) of floatud custom instruction.Integer id (N) of floatus custom instruction.Integer id (N) of flogd custom instruction.Integer id (N) of flogs custom instruction.Integer id (N) of fmaxd custom instruction.Integer id (N) of fmaxs custom instruction.Integer id (N) of fmind custom instruction.Integer id (N) of fmins custom instruction.Integer id (N) of fmuld custom instruction.Integer id (N) of fmuls custom instruction.Integer id (N) of fnegd custom instruction.Integer id (N) of fnegs custom instruction.Integer id (N) of frdxhi custom instruction.Integer id (N) of frdxlo custom instruction.Integer id (N) of frdy custom instruction.Integer id (N) of fsind custom instruction.Integer id (N) of fsins custom instruction.Integer id (N) of fsqrtd custom instruction.Integer id (N) of fsqrts custom instruction.Integer id (N) of fsubd custom instruction.Integer id (N) of fsubs custom instruction.Integer id (N) of ftand custom instruction.Integer id (N) of ftans custom instruction.Integer id (N) of ftruncds custom instruction.Integer id (N) of fwrx custom instruction.Integer id (N) of fwry custom instruction.Integer id (N) of round custom instruction.Integer outside symmetric range implied by Standard Fortran at %LInteger overflowInteger too large at %CInteger value too large in expression at %CIntel MPX does not support x32Interface %qs at %L may not be a statement functionInternal compiler error: Error reporting routines re-entered.
Internal procedure %qs is used as actual argument at %LInterpret any INTEGER(4) as an INTEGER(8).Interpret any REAL(4) as a REAL(10).Interpret any REAL(4) as a REAL(16).Interpret any REAL(4) as a REAL(8).Interpret any REAL(8) as a REAL(10).Interpret any REAL(8) as a REAL(16).Interpret any REAL(8) as a REAL(4).Intersperse literal pools with code in the text section.Invalid NULL at %LInvalid argument to $!ACC WAIT at %LInvalid builtin argumentsInvalid character in name at %CInvalid context for NULL () intrinsic at %LInvalid context for NULL() pointer at %%LInvalid image number %d in SYNC IMAGESInvalid kind for %s at %LInvalid procedure argument at %LInvalid range %s in option %sInvalid type-spec at %CJump targets are aligned to this power of 2.Just use icc0/fcc0.Known AArch64 ABIs (for use with the -mabi= option):Known ABIs (for use with the -mabi= option):Known ARM ABIs (for use with the -mabi= option):Known ARM CPUs (for use with the -mcpu= and -mtune= options):Known ARM FPUs (for use with the -mfpu= option):Known ARM architectures (for use with the -march= option):Known C6X ISAs (for use with the -march= option):Known CPUs (for use with the -mcpu= and -mtune= options):Known FR-V CPUs (for use with the -mcpu= option):Known IQ2000 CPUs (for use with the -mcpu= option):Known Itanium CPUs (for use with the -mtune= option):Known M68K CPUs (for use with the -mcpu= option):Known M68K ISAs (for use with the -march= option):Known M68K microarchitectures (for use with the -mtune= option):Known MIPS ABIs (for use with the -mabi= option):Known MIPS CPUs (for use with the -march= and -mtune= options):Known MIPS IEEE 754 settings (for use with the -mabs= and -mnan= options):Known MIPS ISA levels (for use with the -mips option):Known TILE-Gx CPUs (for use with the -mcpu= option):Known TILEPro CPUs (for use with the -mcpu= option):Known TLS dialects (for use with the -mtls-dialect= option):Known address mode (for use with the -maddress-mode= option):Known arch types (for use with the -march= option):Known assembler dialects (for use with the -masm-dialect= option):Known cmodel types (for use with the -mcmodel= option):Known code models (for use with the -mcmodel= option):Known data alignment choices (for use with the -malign-data= option):Known floating-point ABIs (for use with the -mfloat-abi= option):LINEAR variable %qs must be INTEGER at %LLTO support has not been enabled in this configurationLabel %d at %L defined but not usedLeft parenthesis required after %<*%>Legacy Extension:Level of hsa debug stores verbosityLift restrictions on GOT size.Like -M but ignore system header files.Like -MD but ignore system header files.Line truncated at %LLines executed:%s of %d
Link to emit program in ELF format (rather than mmo).Link with HAL BSP.Link with a limited version of the C library.Link with libads.a, libc.a and crt0.o.Link with libc.a and libdebug.a.Link with libc.a and libsim.a.Link with libmvme.a, libc.a and crt0.o.Link with libsim.a, libc.a and sim-crt0.o.Link with libyk.a, libc.a and crt0.o.Link with the fast floating-point library.Link with the library-pic libraries.Logicals at %%L must be compared with %s instead of %sLoop code aligned to this power of 2.Loop variableLoop variable at %C cannot be a coarrayLoop variable at %C cannot be a sub-componentLoop variable at %C cannot be an arrayLoop variable has been modifiedLoops iterating at least selected number of iterations will get loop alignement..MIPS16 -mxgot codeMIPS16 PIC for ABIs other than o32 and o64MMIX Internal: Bad value for 'm', not a CONST_INTMMIX Internal: Cannot decode this operandMMIX Internal: Expected a CONST_INT, not thisMMIX Internal: Expected a constant, not thisMMIX Internal: Expected a register, not thisMMIX Internal: This is not a constant:MMIX Internal: This is not a recognized addressMMIX Internal: Trying to output invalidly reversed condition:MMIX Internal: What is the CC of this?MMIX Internal: What's the CC of this?MODULE prefix at %CMOLD tag at %LMaintain backchain pointer.Make "char" signed by default.Make "char" unsigned by default.Make integers 32 bits wide.Make structs a multiple of 4 bytes (warning: ABI altered).Make sure loads and stores are not moved past DMA instructions.Malloc data into P2 space.Mark MAC register as call-clobbered.Mark __tls_get_addr calls with argument info.Mark all loops as parallel.Max basic blocks number in loop for loop invariant motion.Max loops number for regional RA.Max size of conflict table in MB.Max. size of var tracking hash tables.Maximal code growth caused by tail duplication (in percent).Maximal estimated growth of function body caused by early inlining of single call.Maximal estimated outcome of branch considered predictable.Maximal growth due to inlining of large function (in percent).Maximal stack frame growth due to inlining (in percent).Maximum allowed growth of size of new parameters ipa-sra replaces a pointer to an aggregate with.Maximum length of partial antic set when performing tree pre optimization.Maximum number of conditional store pairs that can be sunk.Maximum number of fields in a structure before pointer analysis treats the structure as a single variable.Maximum number of insns in a basic block to consider for RTL if-conversion.Maximum number of instructions in basic block to be considered for SLP vectorization.Maximum number of instructions in the ready list that are considered eligible for renaming.Maximum number of namespaces to search for alternatives when name lookup fails.Maximum number of nops to insert for a hint (Default 2).Maximum number of statements allowed in a block that needs to be duplicated when threading jumps.Maximum number of times that an insn could be scheduled.Maximum size in bytes of constant values allowed as operands.Maximum size of a SCC before SCCVN stops processing a function.Maximum size of global and static variables which can be placed into the small data area.Memory allocation failedMerge subcomand usage:Min. ratio of insns to mem ops to enable prefetching in a loop.Min. ratio of insns to prefetches to enable prefetching for a loop with an unknown trip count.Minimal distance between possibly conflicting store and load.Minimum heap expansion to trigger garbage collection, as a percentage of the total size of the heap.Minimum heap size before we start collecting garbage, in kilobytes.Missing %<&%> in continued character constant at %CMissing actual argument %qs in call to %qs at %LMissing actual argument for argument %qs at %LMissing comma at %LMissing counts for called function %s/%iMissing format label at %CMissing leading left parenthesisMissing symbolNOTE_INSN_BASIC_BLOCK %d in middle of basic block %dNOTE_INSN_BASIC_BLOCK is missing for block %dNO_ARG_CHECK attributeNULL used in arithmeticName %qs at %C is already defined as a generic interface at %LName at %C is too longName of system library to link against.Name of the startfile.Name too longNamelist '%s' can not be an argument at %LNegative argument N at %LNo branches
No calls
No default crt0.o.No executable lines
No longer supported.Nonconforming tab character at %CNonexistent include directory %qsNonnegative width requiredNot a valid Java .class file.
Not expected TAG.Number of registers used to pass integer arguments.Object %qs is not a variable at %LObsolescent feature:Offline tool to handle gcda counts
 
Offset exceeds 16 bytes.Old-style initialization at %COmit frame pointer for leaf functions.Omit the frame pointer in leaf functions.Only generate absolute relocations on word sized values.Only issue one instruction per cycle.Only retained for backward compatibility.Only use 32 FPRs.Only use 32 GPRs.Operand of .not. operator at %%L is %sOperand of unary numeric operator %%<%s%%> at %%L is %sOperand of user operator %%<%s%%> at %%L is %sOperands of binary numeric operator %%<%s%%> at %%L are %s/%sOperands of comparison operator %%<%s%%> at %%L are %s/%sOperands of logical operator %%<%s%%> at %%L are %s/%sOperands of string concatenation operator at %%L are %s/%sOperands of user operator %%<%s%%> at %%L are %s/%sOptimize for debugging experience rather than speed or size.Optimize for space rather than speed.Optimize for speed disregarding exact standards compliance.Optimize frame header.Optimize lui/addiu address loads.Optimize opcode sizes at link time.Optimize tail call instructions in assembler and linker.Option %s with different valuesOptions:
Out of stack space.
Output a class file.Overlap subcomand usage:Override -mbest-lib-options.P descriptor requires leading scale factorPAD= at %C not allowed in Fortran 95PCS variantPIC register isn't set upPRE disabledPRINT_OPERAND null pointerPRINT_OPERAND, invalid insn for %%CPRINT_OPERAND, invalid insn for %%NPRINT_OPERAND: Unknown punctuation '%c'PRINT_OPERAND_ADDRESS, null pointerPROCEDURE list at %CPROTECTED attribute at %CPack VLIW instructions.Pass -EB option through to linker.Pass -EL option through to linker.Pass -marclinux option through to linker.Pass -marclinux_prof option through to linker.Pass -z text to linker.Pass FP arguments in FP registers.Pass the address of the ra save location to _mcount in $12.Perform VR4130-specific alignment optimizations.Period required in format specifierPermit nonconforming uses of the tab character.Permit scheduling of a function's prologue sequence.Permit the use of the assert keyword.Place a stop bit after every cycle when scheduling.Place floating point constants in TOC.Place symbol+offset constants in TOC.Please submit a full bug report,
with preprocessed source if appropriate.
PluginsPointers are 32-bit.Pointers are 64-bit.Positive exponent width requiredPositive width requiredPositive width required with T descriptorPrefer branches over conditional execution.Prefer word accesses over byte accesses.Prepend global symbols with ":" (for use with PREFIX).Preprocess directives only.Preprocessed source stored into %s file, please attach this to your bugreport.
Pretend a branch-around-a-move is a conditional move.Pretend that branches are expensive.Prevent the use of all floating-point operations.Prevent the use of all hardware floating-point instructions.Print code coverage information.
 
Print extra (possibly unwanted) warnings.Print the name of header files as they are used.Procedure %qs at %C is already defined at %LProcedure %qs at %L already has basic type of %sProcedure %qs called at %L is not explicitly declaredProcessing spec (%s), which is '%s'
Produce a backtrace when a runtime error is encountered.Produce a warning at runtime if a array temporary has been created for a procedure argument.Produce big endian code.Produce code relocatable at runtime.Produce little endian code.Program is entirely located in low 64k of memory.Prohibit PC relative function calls.Prohibit PC relative jumps.Protect parentheses in expressions.Provide libraries for the simulator.Put all local arrays on stack.Put everything in the regular TOC.Put uninitialized constants in ROM (needs -membedded-data).R2 architecture is little-endian onlyROUND= at %C not allowed in Fortran 95RTL check: expected code '%s' or '%s', have '%s' in %s, at %s:%dRTL check: expected code '%s', have '%s' in %s, at %s:%dRTL check: expected elt %d type '%c' or '%c', have '%c' (rtx %s) in %s, at %s:%dRTL check: expected elt %d type '%c', have '%c' (rtx %s) in %s, at %s:%dRTP PIC is incompatible with -msingle-pic-baseRTP PIC is incompatible with ThumbReading specs from %s
Realign stack in prologue.Reallocate the LHS in assignments.Recognize GNU-defined keywords.Recognize built-in functions.Recognize the "asm" keyword.Reduce the amount of reflection meta-data generated.Relax branches.Remove redundant membars.Removing '%s'
Request IEEE-conformant math library routines (OSF/1).Reserve space for outgoing arguments in the function prologue.Restrict the use of hardware floating-point instructions to 32-bit operations.Result of %s is NaN at %LReturn all structures in memory (AIX default).Return floating-point results in ac0 (fr0 in Unix assembler syntax).Return pointers in both a0 and d0.Return small structures in registers (SVR4 default).Return value %qs of function %qs declared at %L not setReturn value of function %qs at %L not setReturn values of functions in FPU registers.Reuse r30 on a per function basis.Rewrite subcommand usage:Run only the second compilation of -fcompare-debug.Running spec function '%s' with %d args
 
Runtime name.SH2a does not support little-endianSIGN= at %C not allowed in Fortran 95SIZE at %L must be positiveSOURCE tag at %LSPE not supported in this targetSSA corruptionSSA_NAME_OCCURS_IN_ABNORMAL_PHI should be setSTAT variableSTAT= argument to %s at %LSYNC statement at %CSame as %s.  Use the latter option instead.Same as -mA6.Same as -mA7.Same as: -mep -mprolog-function.Schedule code for given CPU.Schedule given CPU.Schedule the start and end of the procedure.Section to put all const variables in (tiny, near, far) (no default).See %s for instructions.
Segmentation FaultSegmentation Fault (code)Select ABI calling convention.Select code model.Select fraction of the maximal frequency of executions of basic block in function given basic block get alignment.Select fraction of the maximal frequency of executions of basic block in function given basic block needs to have to be considered hot.Select large model - 20-bit addresses/pointers.Select method for sdata handling.Select small model - 16-bit addresses/pointers (default).Select the runtime.Select what to sanitize.Set 80387 floating-point precision to 32-bit.Set 80387 floating-point precision to 64-bit.Set 80387 floating-point precision to 80-bit.Set Windows defines.Set branch cost.Set default accessibility of module entities to PRIVATE.Set name of main routine for the debugger.Set register to hold -1.Set sizeof(bool) to 1.Set start-address of data.Set start-address of the program.Set the PPC_EMB bit in the ELF flags header.Set the cost of branches.Set the default double precision kind to an 8 byte wide type.Set the default integer kind to an 8 byte wide type.Set the default real kind to an 8 byte wide type.Set the max size of data eligible for the SDA area.Set the max size of data eligible for the TDA area.Set the max size of data eligible for the ZDA area.Set the max. number of bytes which has to be left to stack size before a trap instruction is triggered.Set the maximum amount for a single stack increment operation.Set the source language version.Set the target CPU type.Set the target VM version.Setting spec %s to '%s'
 
Shorten address references during linking.Single-precision floating point unit.Size (in KB) of software data cache.Small data area: none, sdata, use.Soft limit on number of memory insns per instruction group, giving lower priority to subsequent memory insns attempting to schedule in the same insn group. Frequently useful to prevent cache bank conflicts.  Default value is 1.Specifies bit size of immediate TLS offsets.  Valid values are 12, 24, 32, 48.Specifies the number of registers to reserve for interrupt handlers.Specifies whether interrupt functions should save and restore the accumulator register.Specify CPU for code generation purposes.Specify CPU for scheduling purposes.Specify CPU for scheduling purposes.  Valid arguments are 700, 7100, 7100LC, 7200, 7300, and 8000.Specify UNIX standard for predefines and linking.Specify Xilinx FPU.Specify a plugin to load.Specify alignment of structure fields default/natural.Specify an ABI.Specify bit size of immediate TLS offsets.Specify cache flush function.Specify cache flush trap number.Specify cost of branches (Default 20).Specify how to access the thread pointer.Specify if floating point hardware should be used.Specify main object for TPF-OS.Specify name for 32 bit signed division function.Specify range of registers to make fixed.Specify scheduling priority for dispatch slot restricted insns.Specify that an external BLAS library should be used for matmul calls on large-size arrays.Specify that backslash in string introduces an escape character.Specify that no implicit typing is allowed, unless overridden by explicit IMPLICIT statements.Specify the ISA to build for: msp430, msp430x, msp430xv2.Specify the MCU to build for.Specify the __fp16 floating-point format.Specify the code model.Specify the minimum bit alignment of structures.Specify the model for atomic operations.Specify the name of the target CPU.Specify the name of the target architecture.Specify the name of the target floating point configuration.Specify the name of the target floating point hardware/format.Specify the register to be used for PIC addressing.Specify the target CPU.Specify the target RX cpu type.Specify thread local storage scheme.Specify where to find the compiled intrinsic modules.Specify which post scheduling nop insertion scheme to apply.Start expression in DO loopStatement function %qs requires argument list at %CStatement function at %L cannot appear within an INTERFACEStatically link the GNU Fortran helper library (libgfortran).Step expression in DO loopStop forward growth if the probability of best edge is less than this threshold (in percent). Used when profile feedback is available.Stop forward growth if the probability of best edge is less than this threshold (in percent). Used when profile feedback is not available.Stop reverse growth if the reverse probability of best edge is less than this threshold (in percent).Store doubles in 64 bits.Store function names in object code.Stores doubles in 32 bits.  This is the default.String length at %L is too largeSubstring at %L has length zeroSupport 3DNow! built-in functions.Support AES built-in functions and code generation.Support Athlon 3Dnow! built-in functions.Support BMI built-in functions and code generation.Support BMI2 built-in functions and code generation.Support CLFLUSHOPT instructions.Support CLWB instruction.Support CLZERO built-in functions and code generation.Support F16C built-in functions and code generation.Support FMA4 built-in functions and code generation.Support FSGSBASE built-in functions and code generation.Support FXSAVE and FXRSTOR instructions.Support LWP built-in functions and code generation.Support LZCNT built-in function and code generation.Support MMX and SSE built-in functions and code generation.Support MMX built-in functions.Support MMX, SSE and SSE2 built-in functions and code generation.Support MMX, SSE, SSE2 and SSE3 built-in functions and code generation.Support MMX, SSE, SSE2, SSE3 and SSE4A built-in functions and code generation.Support MMX, SSE, SSE2, SSE3 and SSSE3 built-in functions and code generation.Support MMX, SSE, SSE2, SSE3, SSSE3 and SSE4.1 built-in functions and code generation.Support MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1 and SSE4.2 built-in functions and code generation.Support MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2 and AVX built-in functions and code generation.Support MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX and AVX2 built-in functions and code generation.Support MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX and FMA built-in functions and code generation.Support MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2 and AVX512F and AVX512BW built-in functions and code generation.Support MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2 and AVX512F and AVX512CD built-in functions and code generation.Support MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2 and AVX512F and AVX512DQ built-in functions and code generation.Support MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2 and AVX512F and AVX512ER built-in functions and code generation.Support MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2 and AVX512F and AVX512IFMA built-in functions and code generation.Support MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2 and AVX512F and AVX512PF built-in functions and code generation.Support MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2 and AVX512F and AVX512VBMI built-in functions and code generation.Support MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2 and AVX512F and AVX512VL built-in functions and code generation.Support MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2 and AVX512F built-in functions and code generation.Support MPX code generation.Support MWAITX and MONITORX built-in functions and code generation.Support PCLMUL built-in functions and code generation.Support PCOMMIT instruction.Support PKU built-in functions and code generation.Support PREFETCHW instruction.Support PREFETCHWT1 built-in functions and code generation.Support RDRND built-in functions and code generation.Support RDSEED instruction.Support RTM built-in functions and code generation.Support SHA1 and SHA256 built-in functions and code generation.Support TBM built-in functions and code generation.Support TLS segment larger than 64K.Support XOP built-in functions and code generation.Support XSAVE and XRSTOR instructions.Support XSAVEC instructions.Support XSAVEOPT instruction.Support XSAVES and XRSTORS instructions.Support calls between Thumb and ARM instruction sets.Support code generation of Advanced Bit Manipulation (ABM) instructions.Support code generation of cmpxchg16b instruction.Support code generation of crc32 instruction.Support code generation of movbe instruction.Support code generation of popcnt instruction.Support code generation of sahf instruction in 64bit x86-64 code.Support flag-preserving add-carry instructions.Support legacy multi-threading.Support message passing with the Parallel Environment.Support more than 8192 GOT entries on ColdFire.Support multi-threading.Support multiply accumulate instructions.Suppress warnings.Switch ARM/Thumb modes on alternating functions for compiler testing.Switch on/off MIPS16 ASE on alternating functions for compiler testing.Switches off the -mstack-guard= option.Symbol %qs already declaredSymbol %qs at %C also declared as a type at %LSymbol %qs at %C is already in a COMMON blockSymbol %qs at %L is ambiguousSynonym for -Wcomment.Synonym of -gnatk8.Syntax error in expression at %CTILE requires constant expression at %LTLS dialect to use:Taken at least once:%s of %d
Target DFLOAT double precision code.Target has split I&D.Target the AM33 processor.Target the AM33/2.0 processor.Target the AM34 processor.Target: %s
The --param option recognizes the following as parametersThe bug is not reproducible, so it is likely a hardware or OS problem.
The earliest MacOS X version on which this program will run.The event variable at %L shall not be coindexed The following options are language-independentThe following options are language-relatedThe following options are not documentedThe following options are specific to just the language The following options are supported by the language The following options are target specificThe following options control compiler warning messagesThe following options control optimizationsThe following options take joined argumentsThe following options take separate argumentsThe lower bound for a buffer to be considered for stack smashing protection.The maximum amount of memory to be allocated by GCSE.The maximum conflict delay for an insn to be considered for speculative motion.The maximum depth of a loop nest we completely peel.The maximum depth of recursive inlining for inline functions.The maximum depth of recursive inlining for non-inline functions.The maximum expansion factor when copying basic blocks.The maximum instructions CSE process before flushing.The maximum length of path considered in cse.The maximum length of scheduling's pending operations list.The maximum memory locations recorded by cselib.The maximum number of RTL nodes that can be recorded as combiner's last value.The maximum number of blocks in a region to be considered for interblock scheduling.The maximum number of branches on the path through the peeled sequence.The maximum number of incoming edges to consider for crossjumping.The maximum number of insns combine tries to combine.The maximum number of insns in a region to be considered for interblock scheduling.The maximum number of insns of a completely peeled loop.The maximum number of insns of a peeled loop that rolls only once.The maximum number of insns of a peeled loop.The maximum number of insns of an unswitched loop.The maximum number of instructions in a single function eligible for inlining.The maximum number of instructions inline function can grow to via recursive inlining.The maximum number of instructions non-inline function can grow to via recursive inlining.The maximum number of instructions ready to be issued to be considered by the scheduler during the first scheduling pass.The maximum number of instructions to consider to fill a delay slot.The maximum number of instructions to consider to find accurate live register information.The maximum number of instructions to consider to unroll in a loop on average.The maximum number of instructions to consider to unroll in a loop.The maximum number of instructions to search backward when looking for equivalent reload.The maximum number of instructions when automatically inlining.The maximum number of iterations through CFG to extend regions.The maximum number of loop iterations we predict statically.The maximum number of nested indirect inlining performed by early inliner.The maximum number of peelings of a single loop that is peeled completely.The maximum number of peelings of a single loop.The maximum number of unrollings of a single loop.The maximum number of unswitchings in a single loop.The maximum ratio between array size and switch branches for a switch conversion to take place.The maximum ratio of insertions to deletions of expressions in GCSE.The maximum size of the lookahead window of selective scheduling.The minimal probability of speculation success (in percents), so that speculative insn will be scheduled.The minimum UID to be used for a nondebug insn.The minimum cost of an expensive expression in the loop invariant motion.The minimum number of matching instructions to consider for crossjumping.The minimum probability of reaching a source block for interblock speculative scheduling.The number of cycles the swing modulo scheduler considers when checking conflicts using DFA.The number of insns executed before prefetch is completed.The number of prefetches that can run at the same time.The number of registers in each class kept unused by loop invariant motion.The percentage of function, weighted by execution frequency, that must be covered by trace formation. Used when profile feedback is available.The percentage of function, weighted by execution frequency, that must be covered by trace formation. Used when profile feedback is not available.The resolution file.The size of L1 cache line.The size of L1 cache.The size of L2 cache.The size of function body to be considered large.The size of stack frame to be considered large.The size of translation unit to be considered large.The threshold ratio for performing partial redundancy elimination after reload.The threshold ratio of critical edges execution count that permit performing redundancy elimination after reload.The type for function %qs at %L is not accessibleThe upper bound for sharing integer constants.This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or 
FITNESS FOR A PARTICULAR PURPOSE.
 
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
This option lacks documentation.This switch is deprecated; do not use.This switch is deprecated; use -Werror=implicit-function-declaration instead.This switch is deprecated; use -Wextra instead.This switch is deprecated; use -fsanitize-recover= instead.Thread model: %s
Thumb-1 hard-float VFP ABIThumb: Assume function pointers may go to non-Thumb aware code.Thumb: Assume non-static functions may be called from ARM code.Thumb: Generate (leaf) stack frames even if not needed.Thumb: Generate (non-leaf) stack frames even if not needed.To enable preprocessing, use %<-cpp%>Together with -fpic and -fPIC, do not use GOTPLT references.Too many arguments in call to %qs at %LToo many arguments to %s at %LTrap on integer divide by zero.Treat all warnings as errors.Treat integers as 32-bit.Treat lines with 'D' in column one as comments.Treat missing header files as generated files.Treat specified warning as error.Try 'jcf-dump --help' for more information.
Try running '%s' in the shell to raise its limit.
Try to allow the linker to turn PIC calls into direct calls.Try to lay out derived types as compactly as possible.Tune code for the given processor.Tune expected memory latency.Tune for the specified target CPU or architecture.UNIT not specified at %LUnable to find symbol %qsUnable to generate load/store offset for fusionUnable to resolve the specific function %qs at %LUnexpected %<*%> for codimension %d of %d at %CUnexpected %s statement at %CUnexpected CASE statement at %CUnexpected END statement at %CUnexpected ENTRY statement at %CUnexpected EOFUnexpected element %qc in format string at %LUnexpected end of file in %qsUnexpected end of format stringUnexpected end of moduleUnexpected intrinsic type %qs at %LUnit number in I/O statement too largeUnit number in I/O statement too smallUnknown intrinsic opUnknown operator %%<%s%%> at %%LUnknown procedure name %qs at %CUnrecognized option to endianess value: %qsUnrecognized option to floating-point init value: %qsUnrecognized option: %qsUnsupported code '%c' for fixed-point:Unsupported operand for code '%c'Unused dummy argument %qs at %LUnused parameter %qs declared at %LUnused variable %qs declared at %LUsage: %s [OPTIONS]... CLASSNAMEmain [OUTFILE]
Usage: %s [OPTION]... SUB_COMMAND [OPTION]...
 
Usage: %s [options] file...
Usage: gcov [OPTION]... SOURCE|OBJ...
 
Usage: jcf-dump [OPTION]... CLASS...
 
Use "-Wa,OPTION" to pass "OPTION" to the assembler.
 
Use "-Wl,OPTION" to pass "OPTION" to the linker.
 
Use -G for data that is not defined by the current object.Use -G for object-local data.Use 128-bit long double.Use 16 bit int.Use 32 bit float.Use 32 bit int.Use 32-bit ABI.Use 32-bit floating-point registers.Use 32-bit general registers.Use 4 byte entries in switch tables.Use 4 media accumulators.Use 4xx half-word multiply instructions.Use 4xx string-search dlmzb instruction.Use 64 FPRs.Use 64 GPRs.Use 64 bit float.Use 64-bit ABI.Use 64-bit floating-point registers.Use 64-bit general registers.Use 64-bit long double.Use 8 media accumulators.Use 80-bit long double.Use ABI reserved registers.Use AltiVec instructions.Use Bionic C library.Use Branch Likely instructions, overriding the architecture default.Use CONST16 instruction to load constants.Use EABI.Use Enhanced Virtual Addressing instructions.Use GNU C library.Use GP relative sdata/sbss sections.Use GP-relative addressing to access small data.Use H8/300 alignment rules.Use IEEE math for fp comparisons.Use ISA 2.07 Category:Vector.AES and Category:Vector.SHA2 instructions.Use LRA instead of reload (transitional).Use LRA instead of reload.Use MCU instructions.Use MIPS-3D instructions.Use MIPS-DSP REV 2 instructions.Use MIPS-DSP instructions.Use Mingw-specific thread support.Use Neon double-word (rather than quad-word) registers for vectorization.Use Neon quad-word (rather than double-word) registers for vectorization.Use NewABI-style %reloc() assembly operators.Use P-mnemonics for branches statically predicted as taken.Use PMC-style 'mad' instructions.Use PowerPC General Purpose group optional instructions.Use PowerPC Graphics group optional instructions.Use PowerPC V2.01 single field mfcr instruction.Use PowerPC V2.02 floating point rounding instructions.Use PowerPC V2.02 popcntb instruction.Use PowerPC V2.05 compare bytes instruction.Use PowerPC V2.06 popcntd instruction.Use PowerPC-64 instruction set.Use ROM instead of RAM.Use SSE register passing conventions for SF and DF mode.Use SmartMIPS instructions.Use UNIX assembler syntax.Use VAX fp.Use VAXC structure conventions.Use Virtualization Application Specific instructions.Use a 32-bit long type.Use a 4-byte record marker for unformatted files.Use a 64-bit long type.Use addresses that allocate global registers.Use all registers, reserving none for interrupt handlers.Use alternate register names.Use an 8-bit 'int' type.Use an 8-byte record marker for unformatted files.Use arbitrary sized immediates in bit operations.Use big-endian byte order.Use branch-and-break sequences to check for integer divide by zero.Use bras for executable < 64k.Use call-clobbered registers for parameters and return value.Use control speculation.Use data speculation after reload.Use data speculation before reload.Use decimal floating point instructions.Use default method for sdata handling.Use different calling convention using 'rtd'.Use direct references against %gs when accessing tls data.Use eXtended Physical Address (XPA) instructions.Use epsilon-respecting floating point compare instructions.Use extended PowerPC V2.05 move floating point to/from GPR instructions.Use f2c calling convention.Use features of and schedule code for given CPU.Use features of and schedule given CPU.Use flat register window model.Use fp double instructions.Use fp registers.Use full-set registers for register allocation.Use gcc default bitfield layoutUse given SPARC-V9 code model.Use given TILE-Gx code model.Use given address mode.Use given assembler dialect.Use given thread-local storage dialect.Use given x86-64 code model.Use hardware FP (default).Use hardware FP.Use hardware division instructions on ColdFire.Use hardware floating point conversion instructions.Use hardware floating point instructions.Use hardware floating point square root instruction.Use hardware floating point.Use hardware fp.Use hardware prefetch instructionUse hardware quad FP instructions.Use hardware transactional execution instructions.Use in block control speculation.Use in block data speculation after reload.Use in block data speculation before reload.Use in/loc/out register names.Use indirect CALLXn instructions for large programs.Use indirect calls.Use inline patterns for copying memory.Use integer madd/msub instructions.Use little-endian byte order.Use ll, sc and sync instructions.Use media instructions.Use microMIPS instructions.Use multiply add/subtract instructions.Use multiply high instructions for high part of 32x32 multiply.Use musl C library.Use native (MS) bitfield layoutUse native (MS) bitfield layout.Use new adddi3/subdi3 patterns.Use normal calling convention.Use offset tables for virtual method calls.Use only one TOC entry per procedure.Use packed stack layout.Use paired-single floating-point instructions.Use pattern compare instructions.Use portable calling conventions.Use propolice as a stack protection method.Use push instructions to save outgoing arguments.Use red-zone in the x86-64 code.Use register stack for parameters and return value.Use registers for argument passing.Use registers r2 and r5.Use sdram version of runtime.Use shared libraries.Use simple data speculation check for control speculation.Use simple data speculation check.Use simulator runtime without vectors.Use simulator runtime.Use software emulation for floating point (default).Use software floating point comparisons.Use software floating point.Use stack bias.Use standard main function as entry for startup.Use structs on stronger alignment for double-word copies.Use stubs for function prologues.Use subroutines for function prologues and epilogues.Use synci instruction to invalidate i-cache.Use tas.b instruction for __atomic_test_and_set.Use the AltiVec ABI extensions.Use the Cray Pointer extension.Use the DEC assembler syntax.Use the ELFv1 ABI.Use the ELFv2 ABI.Use the GNU extension to the PE format for aligned common data.Use the SPE ABI extensions.Use the bit-field instructions.Use the divide instruction.Use the given data alignment.Use the most feature-enabling options allowed by other options.Use the mvcle instruction for block moves.Use the simulator runtime.Use trap instructions to check for integer divide by zero.Use uClibc C library.Use unicode startup and define UNICODE macro.Use vector/scalar (VSX) instructions.Use zero-extending memory loads, not sign-extending ones.Uses of this option are diagnosed.Using built-in specs.
VALUE attribute at %CVALUE statement at %CVOIDmode on an outputVOLATILE attribute at %CVOLATILE statement at %CVSX and SPE instructions cannot coexistValid arguments for the -msdata= option.Valid arguments to -malign-:Valid arguments to -mcode-readable=:Valid arguments to -mfloat-gprs=:Valid arguments to -mfpmath=:Valid arguments to -mr10k-cache-barrier=:Valid arguments to -mstringop-strategy=:Valid arguments to -mtp=:Variable %qs cannot appear in the expression at %LVariable %qs is not a dummy argument at %LVariables this size and smaller go in the based section. (default 0).Variables this size and smaller go in the tiny section. (default 4).Vector argument passed to unprototyped functionVector library ABI to use.Warn about "extern" declarations not at file scope.Warn about "suspicious" constructs.Warn about @selector()s without previously declared methods.Warn about C constructs that are not in the common subset of C and C++.Warn about C++ constructs whose meaning differs between ISO C++ 1998 and ISO C++ 2011.Warn about C++ constructs whose meaning differs between ISO C++ 2011 and ISO C++ 2014.Warn about C++11 inheriting constructors when the base has a variadic constructor.Warn about NULL being passed to argument slots marked as requiring non-NULL.Warn about PCH files that are found but not used.Warn about USE statements that have no ONLY qualifier.Warn about __TIME__, __DATE__ and __TIMESTAMP__ usage.Warn about alignment of COMMON blocks.Warn about an empty body in an if or else statement.Warn about boolean expression compared with an integer value different from true/false.Warn about called procedures not explicitly declared.Warn about calls with implicit interface.Warn about casting functions to incompatible types.Warn about casts which discard qualifiers.Warn about comparison of different enum types.Warn about compile-time integer division by zero.Warn about constant integer divisions with truncated results.Warn about creation of array temporaries.Warn about deleting polymorphic objects with non-virtual destructors.Warn about deprecated 'vector long ...' AltiVec type usage.Warn about duplicated conditions in an if-else-if chain.Warn about equality comparisons involving REAL or COMPLEX expressions.Warn about features not present in ISO C90, but present in ISO C99.Warn about features not present in ISO C99, but present in ISO C11.Warn about features not present in traditional C.Warn about format strings that are not literals.Warn about format strings that contain NUL bytes.Warn about function call elimination.Warn about function parameters declared without a type specifier in K&R-style functions.Warn about function pointer arithmetic.Warn about functions which might be candidates for format attributes.Warn about global functions without previous declarations.Warn about global functions without prototypes.Warn about implicit conversions from "float" to "double".Warn about implicit declarations.Warn about implicit function declarations.Warn about incompatible integer to pointer and pointer to integer conversions.Warn about invalid uses of the "offsetof" macro.Warn about macros defined in the main file that are not used.Warn about maybe uninitialized automatic variables.Warn about memory access errors found by Pointer Bounds Checker.Warn about missing ampersand in continued character constants.Warn about missing fields in struct initializers.Warn about missing sized deallocation functions.Warn about misuses of pragmas.Warn about most implicit conversions.Warn about multiple declarations of the same object.Warn about non-virtual destructors.Warn about none ISO msvcrt scanf/printf width extensions.Warn about overflow in arithmetic expressions.Warn about overloaded virtual function names.Warn about overriding initializers with side effects.Warn about overriding initializers without side effects.Warn about packed bit-fields whose offset changed in GCC 4.4.Warn about pointer casts which increase alignment.Warn about positional initialization of structs requiring designated initializers.Warn about possible aliasing of dummy arguments.Warn about possible security problems with format functions.Warn about possible violations of sequence point rules.Warn about possibly missing braces around initializers.Warn about possibly missing parentheses.Warn about possibly nested block comments, and C++ comments spanning more than one physical line.Warn about printf/scanf/strftime/strfmon format string anomalies.Warn about real-literal-constants with 'q' exponent-letter.Warn about returning structures, unions or arrays.Warn about sign differences with format functions.Warn about signed-unsigned comparisons.Warn about stray tokens after #elif and #endif.Warn about strftime formats yielding 2-digit years.Warn about subscripts whose type is "char".Warn about suspicious declarations of "main".Warn about suspicious uses of memory addresses.Warn about switches with boolean controlling expression.Warn about things that change between the current -fabi-version and the specified version.Warn about things that will change when compiling with an ABI-compliant compiler.Warn about truncated character expressions.Warn about truncated source lines.Warn about uncasted NULL used as sentinel.Warn about underflow of numerical constant expressions.Warn about uninitialized automatic variables.Warn about unprototyped function declarations.Warn about unrecognized pragmas.Warn about unsuffixed float constants.Warn about unused dummy arguments.Warn about use of multi-character character constants.Warn about useless casts.Warn about user-specified include directories that do not exist.Warn about uses of __attribute__((deprecated)) declarations.Warn about using variadic macros.Warn about variables that might be changed by "longjmp" or "vfork".Warn about variables which are initialized to themselves.Warn about violations of Effective C++ style rules.Warn about zero-length formats.Warn about zero-trip DO loops.Warn for conditionally-supported constructs.Warn for converting NULL from/to a non-pointer type.Warn for implicit type conversions between signed and unsigned integers.Warn for implicit type conversions that cause loss of floating point precision.Warn for implicit type conversions that may change a value.Warn for obsolescent usage in a declaration.Warn if .class files are out of date.Warn if a C-style cast is used in a program.Warn if a comparison always evaluates to true or false.Warn if a deprecated compiler feature, class, method, or field is used.Warn if a function uses alloca or creates an array with dynamic size.Warn if a local declaration hides an instance variable.Warn if a selector has multiple methods.Warn if a single function's framesize exceeds the given framesize.Warn if a string is longer than the maximum portable length specified by the standard.Warn if a subobject has an abi_tag attribute that the complete object type does not have.Warn if a user-procedure has the same name as an intrinsic.Warn if a variable length array is used.Warn if an array is accessed out of bounds.Warn if an old-style parameter definition is used.Warn if deprecated empty statements are found.Warn if left shifting a negative value.Warn if modifiers are specified when not necessary.Warn if passing too many arguments to a function for its format string.Warn if qualifiers on arrays which are pointer targets are discarded.Warn if shift count >= width of type.Warn if shift count is negative.Warn if testing floating point numbers for equality.Warn if the pointer in a pointer assignment might outlive its target.Warn if the type of a variable might be not interoperable with C.Warn if type qualifiers on pointers are discarded.Warn on intrinsics not part of the selected standard.Warn on namespace definition.Warn on primary template declaration.Warn when __builtin_frame_address or __builtin_return_address is used unsafely.Warn when a #warning directive is encountered.Warn when a Cell microcoded instruction is emitted.Warn when a built-in preprocessor macro is undefined or redefined.Warn when a const variable is unused.Warn when a declaration does not specify a type.Warn when a declaration is found after a statement.Warn when a function cannot be expanded to HSAIL.Warn when a function is unused.Warn when a function parameter is only set, otherwise unused.Warn when a function parameter is unused.Warn when a jump misses a variable initialization.Warn when a label is unused.Warn when a left-hand-side array variable is reallocated.Warn when a left-hand-side variable is reallocated.Warn when a literal '0' is used as null pointer.Warn when a logical operator is suspiciously always evaluating to true or false.Warn when a pointer is cast to an integer of a different size.Warn when a register variable is declared volatile.Warn when a variable is only set, otherwise unused.Warn when a variable is unused.Warn when all constructors and destructors are private.Warn when an expression value is unused.Warn when an inlined function cannot be inlined.Warn when an optimization pass is disabled.Warn when attempting to free a non-heap object.Warn when converting the type of pointers to member functions.Warn when deleting a pointer to incomplete type.Warn when non-templatized friend functions are declared within a template.Warn when the compiler reorders code.Warn when there is a cast to a pointer from an integer of a different size.Warn when there is a conversion between pointers that have incompatible types.Warn when typedefs locally defined in a function are not used.Warn whenever a trampoline is generated.Warn whenever an Objective-C assignment is being intercepted by the garbage collector.Warn whenever attributes are ignored.Warn whenever type qualifiers are ignored.WarningWhen generating -mabicalls code, allow executables to use PLTs and copy relocations.When generating -mabicalls code, make the code suitable for use in shared libraries.Whether to use canonical types.Which -fsched-pressure algorithm to apply.While setting up signal handler: %mWhile setting up signal stack: %mWork around VR4130 mflo/mfhi errata.Work around a hardware anomaly by adding a number of NOPs before aWork around an early 4300 hardware bug.Work around bug in multiplication instruction.Work around certain 24K errata.Work around certain R10000 errata.Work around certain R4000 errata.Work around certain R4400 errata.Work around certain RM7000 errata.Work around certain VR4120 errata.Work around errata for early SB-1 revision 2 cores.Work around hardware multiply bug.XXX entering pop_everything ()
XXX leaving pop_everything ()
You need a C startup file for -msys-crt0=Your target platform does not support -fcheck-pointer-boundsZero width in format descriptor[Leaving %s]
[cannot find %s][default][disabled][enabled][super ...] must appear in a method context_Cilk_for statement expected__builtin_rx_%s takes 'C', 'Z', 'S', 'O', 'I', or 'U'__builtin_set_thread_pointer is not supported on this target__builtin_thread_pointer is not supported on this target__float128 and __ibm128 cannot be used in the same expression__float128 and long double cannot be used in the same expression__fp16 and no ldrh__ibm128 and long double cannot be used in the same expression__io vars are volatile by default.__sec_implicit_index parameter must be an integer constant expression``custom-%s=' argument requires numeric digitsa comma operator cannot appear in a constant-expressiona concept cannot be a member functiona constructor cannot be %<concept%>a destructor cannot be %<concept%>a destructor cannot be %<constexpr%>a function call cannot appear in a constant-expressiona function-definition is not allowed herea template cannot be defaulteda wide string is invalid in this contextabort in %s, at %s:%daccumulator is not a constant integeractual argument to INTENT = OUT/INOUTadd_sym(): Bad sizing modeaddress of label %qD returnedaddress of local variable %qD returnedaddress offset not a constantaddress operand requires constraint for X, Y, or Z registerakaalignment for %q+D must be at least %dallocatable argumentalso found %<%c%s%>ambiguous method %s%s%sambiguous overload for an assignment cannot appear in a constant-expressionan decrement cannot appear in a constant-expressionan increment cannot appear in a constant-expressionanachronismanachronism: and %qT has no template constructorsargs to be formatted is not %<...%>argument %d of %qE must be a multiple of %dargument %d of %qE must be an addressargument %d of %qE must be in the range %d...%dargument %qd is not a constantargument %qs to %<-Wnormalized%> not recognizedargument %qs to %<-femit-struct-debug-detailed%> not recognizedargument %qs to %<-femit-struct-debug-detailed%> unknownargument 1 must be 0 or 2argument 1 must be a 1-bit unsigned literalargument 1 must be a 5-bit signed literalargument 1 must be a mapargument 1 must be an 8-bit field valueargument 1 of __builtin_paired_predicate is out of rangeargument 1 of __builtin_paired_predicate must be a constantargument 2 has invalid typeargument 2 must be 0 or 1argument 2 must be a 5-bit unsigned literalargument 2 must be a 6-bit unsigned literalargument 3 must be a 1-bit unsigned literalargument 3 must be a 2-bit unsigned literalargument 3 must be a 4-bit unsigned literalargument 3 must be in the range 0..15argument must be a field referenceargument must be channelargument must have complex typeargument to %%:compare-debug-auxbase-opt does not end in .gkargument to %qs is too large (max. %d)arguments '%s' and '%s' for intrinsic %sarguments '%s' and '%s' for intrinsic '%s'arguments 'a%d' and 'a%d' for intrinsic '%s'arith_power(): Bad basearith_power(): unknown typearithmetic IFarray assignmentarray index in initializer exceeds array boundsarray index in initializer is not an integer constant expressionarray index in initializer not of integer typearray index in non-array initializerarray index range in initializer exceeds array boundsarray initialized from non-constant array expressionarray initialized from parenthesized string constantarray notation expression cannot be used as a return valuearray notations cannot be used in declarationarray of inappropriate type initialized from string constantarray resultarray size missing in %q+Darray size missing in %qDarray size missing in %qTarray subscript is above array boundsarray subscript is below array boundsarray subscript is not an integerarray subscript is outside array boundsarray used as initializeras %qDassertion missing after %qsassigning to an array from an initializer listassignmentassignment of function %qDassignment of read-only member %qDassignment of read-only variable %qDassignment suppressionassume_aligned parameter not integer constantassumed-rank argumentassumed-shape argumentassumed-type argumentassuming that the loop counter does not overflowassuming that the loop is not infiniteasynchronous argumentatexit failedattribute %<target%> argument not a stringattribute declarationattribute ignoredattribute(target("%s")) is unknownbad addressbad address, not (reg+disp):bad address, not a constant:bad address, not an I/O address:bad address, not post_inc or pre_dec:bad array initializerbad builtin codebad builtin fcodebad builtin icodebad condition codebad format of .zip/.jar archive
bad insn for 'A'bad insn in frv_print_operand, 0 casebad insn in frv_print_operand, bad const_doublebad insn in frv_print_operand, z casebad insn to frv_print_operand, 'F' modifier:bad insn to frv_print_operand, 'L' modifier:bad insn to frv_print_operand, 'M/N' modifier:bad insn to frv_print_operand, 'O' modifier:bad insn to frv_print_operand, 'e' modifier:bad insn to frv_print_operand, 'f' modifier:bad insn to frv_print_operand, 'g' modifier:bad insn to frv_print_operand, P modifier:bad insn to frv_print_operand_address:bad insn to frv_print_operand_memory_reference:bad method signaturebad movebad operandbad output_condmove_single operandbad output_move_double operandbad output_move_single operandbad registerbad register to frv_print_operand_memory_reference_reg:bad shift insn:bad string constantbad testbad usage of spec function %qsbad value %<%s%> for -mtls-size= switchbad value %qs for -mcpu switchbad value %qs for -mfp-rounding-mode switchbad value %qs for -mfp-trap-mode switchbad value %qs for -mmemory-latencybad value %qs for -mmpy-option switchbad value %qs for -mtls-size switchbad value %qs for -mtrap-precision switchbad value %qs for -mtune switchbad value (%s) for %sarch=%s %sbad value (%s) for %stune=%s %sbad value (%s) for -march= switchbad value (%s) for -mcmodel= switchbad value (%s) for -mtune= switchbad value for -mcall-%sbad value for -msdata=%sbad zip/jar file %sbase class %q#T has accessible non-virtual destructorbase operand of %<->%> is not a pointerbb %d does not belong to loop %dbb %d on wrong placebind(c) procedureblock IFbogus JARL construction: %dbogus JR construction: %dbogus PREPEARE construction: %dboth %<__thread%> and %<thread_local%> specifiedboth arguments to %<__builtin___clear_cache%> must be pointersbraced spec %qs is invalid at %qcbraced spec body %qs is invalidbraces around scalar initializerbranch %2d never executed
branch %2d taken %s%s
builtin %s only accepts a string argumentbut not herecall   %2d never executed
call   %2d returned %s
call is unlikely and code size would growcall of %<(%T) (%A)%> is ambiguouscall of overloaded %<%D(%A)%> is ambiguouscall of overloaded %<%s(%A)%> is ambiguouscall to internal functioncalled from herecalled from this functioncaller is not optimizedcan not use -mtp=cp15 with 16-bit Thumbcan%'t close input file %s: %mcan%'t convert value to a vectorcan%'t extend PCH file: %mcan%'t find %<class$%> in %qTcan%'t get position in PCH file: %mcan%'t open %qs for writing: %mcan%'t open %s for writing: %mcan%'t open %s: %mcan%'t read %s: %mcan%'t read PCH file: %mcan%'t set position in PCH file: %mcan%'t specify %<-D%> without %<--main%>can%'t use multiple stack checking methods togethercan%'t write %s: %mcan%'t write PCH filecan%'t write PCH file: %mcan%'t write padding to PCH file: %mcan%'t write to %s: %mcan't get program status: %mcan't open %s: %mcan't open input file: %scan't open ldd output: %mcan't open nm output: %mcan't use non gp relative absolute addresscandidate 1:candidate 2:candidate is:candidates are:candidate is: %#Dcandidate is: %+#Dcandidates are:candidates are: %+#Dcannot bind %qT lvalue to %qTcannot call constructor %<%T::%D%> directlycannot call function %qDcannot capture member %qD of anonymous unioncannot convert %qT to %qTcannot convert to a pointer typecannot convert type %qT to type %qTcannot create temporary filecannot declare pointer to %q#Tcannot declare pointer to %q#T membercannot declare reference to %q#Tcannot decompose addresscannot disable built-in function %qscannot find %s in plugin %s
%scannot find '%s'cannot find 'ldd'cannot find 'nm'cannot find LTO cgraph in %scannot find LTO section refs in %scannot find class %qEcannot find file for class %scannot load plugin %s
%scannot open %scannot open %s: %mcannot open '%s'cannot open intermediate ptx filecannot optimize loop, the loop counter may overflowcannot optimize possibly infinite loopscannot read %s: %mcannot read LTO decls from %scannot read LTO mode table from %scannot specify %<main%> class when not linkingcannot specify %<override%> for a classcannot specify -o with -c, -S or -E with multiple filescannot specify -static with -fsanitize=addresscannot specify -static with -fsanitize=threadcannot specify both -C and -ocannot take address of %qscannot use %<::%> in parameter declarationcannot use mode %qs for enumeral typescannot use mshared and static togethercannot use mthreads and mlegacy-threads togethercannot use type %s as type %scase labels not sorted in switch statementcase labels not sorted: cast from %qT to %qT increases required alignment of target typecast from %qT to %qT loses precisioncdecl and thiscall attributes are not compatiblecgraph_node has wrong clone listcgraph_node has wrong clone_ofchanges meaning of %qD from %q#Dchar-array initialized from wide stringcheck_intents(): List mismatchcheck_restricted(): Unknown expression typecheck_some_aliasing(): List mismatchchecksum is (%x,%x) instead of (%x,%x)choosing %qD over %qDclass %qE already existsclass %qE is deprecatedclass type %qT is incompletecleanup argument not a functioncleanup argument not an identifierclose: %sclosing dependency file %s: %mcoarray argumentcode model %qs not supported in x32 modecode model %qs with -f%scode model %s does not support PIC modecollect2 version %s
collect: reading %s
collect: recompiling %s
collect: relinking
collect: tweaking %s in %s
comma at end of enumerator listcommand line option %qs is valid for %s but not for %scommand line option %qs is valid for the driver but not for %scompare_actual_expr(): Bad component codecompare_real(): Bad operatorcomparison between %q#T and %q#Tcomparison between %qT and %qTcomparison is always %dcompatible type is herecompilation terminated due to -Wfatal-errors.
compilation terminated due to -fmax-errors=%u.
compilation terminated.
complex integer overflow in expressioncomplex invalid for %qscompressed stream: %sconflicting declaration %q+#Dconflicting super class name %qEconflicting types for %<%c%s%>conflicting types for %q+Dconflicting types for built-in function %q+Dconflicts with %qDconflicts with previous declaration %q#Dconsider using '-pg' instead of '-p' with gprof(1)consider using `-pg' instead of `-p' with gprof (1) consider using `-pg' instead of `-p' with gprof(1)const/copy propagation disabledconst_double_split got a bad insn:constant argument out of range for %qsconstant refers to itselfconstructor cannot be static member functionconstructor priorities are not supportedcontaining loopcontaining loop herecontinue statement not within a loopconversion casts away constnessconversion from %q#T to %q#Tconverting far pointer to near pointerconverting from %qT to %qTcoprocessor not enabledcould not close response file %scould not close temporary response file %scould not convert %qE from %qT to %qTcould not find a spill registercould not find class %qEcould not find interface for class %qEcould not find specs file %s
could not open dump file %qs: %mcould not open response file %scould not open temporary response file %scould not parse file offsetcould not parse hex numbercould not split insncould not write to response file %scould not write to temporary response file %scouldn%'t understand version %s
created and used with different ABIscreated and used with different architectures / ABIscreated and used with different endiannesscreated and used with different settings of -fpiccreated and used with different settings of -fpiecreated and used with differing settings of '%s'creating array of %qTcreating array of function memberscreating array of functionscreating array of referencescreating array of voidcreating pointer to member of type voiddata declarationdebugdebug output level %qs is too highdebug: declaration of %<~%T%> as member of %qTdeclaration of %q#Ddeclaration of %q#D has no initializerdeclaration of %q#Tdeclaration of %qD as %<typedef%>declaration of %qD as array of function membersdeclaration of %qD as array of functionsdeclaration of %qD as array of referencesdeclaration of %qD as array of voiddeclaration of %qD as member of %qTdeclaration of %qD as non-functiondeclaration of %qD as non-memberdeclaration of %qD as parameterdeclaration of %qD shadows a member of %qTdeclaration of %qE as array of functionsdeclaration of %qE as array of voidsdeclared heredeclared private heredeclared protected heredecrement of function %qDdecrement of pointer to an incomplete type %qTdecrement of read-only member %qDdeduced return type only available with -std=c++14 or -std=gnu++14deducing %qT as %qTdefault %d minimum %d maximum %ddefault target was not setdefaulted declaration %q+Ddefinition of protocol %qE not founddeleted function %q+Ddeleting LTRANS file %s: %mdeleting array %q#Edeleting file %s: %mdeprecated conversion from string constant to %qTderived type declarationdestructor priorities are not supporteddestructors may not have parametersdifferent number of parametersdifferent number of resultsdifferent parameter typesdifferent receiver typesdifferent result typesdifferent varargsdivision by zerodo not specify both -march=... and -mcpu=...do_check(): too many argsdo_simplify(): Too many args for intrinsicdoes not support multilibduplicate %<_Atomic%>duplicate %<_Thread_local%> or %<__thread%>duplicate %<const%>duplicate %<restrict%>duplicate %<volatile%>duplicate %qDduplicate %qEduplicate %qsduplicate case valueduplicate class will only be compiled onceduplicate cv-qualifierduplicate declaration for protocol %qEduplicate initialization of %qDduplicate instance variable %q+Dduplicate label %qDduplicate member %q+Dduplicate virt-specifierdwarf version %d is not supporteddynamic dependency %s not foundelement types must be the sameelemental binary operationelemental procedureembedded %<\0%> in formatemit_fusion_p9_load not MEMemit_fusion_p9_load, bad reg #1emit_fusion_p9_load, bad reg #2emit_fusion_p9_store not MEMemit_fusion_p9_store, bad reg #1emit_fusion_p9_store, bad reg #2empty declarationempty index range in initializerempty left precision in %s formatempty precision in %s formatempty range specifiedempty scalar initializerenum conversion in assignment is invalid in C++enum conversion in initialization is invalid in C++enum conversion in return is invalid in C++enum type defined hereenvironment variable %qs not definedenvironment variable COLLECT_GCC must be setenvironment variable COLLECT_GCC_OPTIONS must be setenvironment variable DJGPP not definedenvironment variable DJGPP points to corrupt file '%s'environment variable DJGPP points to missing file '%s'errorerror closing %s: %merror in args to spec function %qserror in constant pool entry #%d
error in removing %s
error while parsing constant poolerror while parsing constant pool
error while parsing fieldserror while parsing fields
error while parsing final attributeserror while parsing final attributes
error while parsing methodserror while parsing methods
error while reading %s from zip fileerror writing %qserror writing to %s: %merror: eval_intrinsic(): Bad operatorexception handling personality mismatchexception of type %<%T%> will be caughtexcess elements in array initializerexcess elements in char array initializerexcess elements in scalar initializerexcess elements in struct initializerexcess elements in union initializerexcess elements in vector initializerexecution count is negativeexit %d->%d not recordedexpected %<#pragma acc%> clauseexpected %<#pragma omp section%> or %<}%>expected %<#pragma omp%> clauseexpected %<#pragma simd%> clauseexpected %<(%>expected %<(%> or end of lineexpected %<)%>expected %<*%>expected %<+%>, %<*%>, %<-%>, %<&%>, %<^%>, %<|%>, %<&&%>, %<||%> or identifierexpected %<+%>, %<*%>, %<-%>, %<&%>, %<^%>, %<|%>, %<&&%>, %<||%>, %<min%> or %<max%>expected %<+%>, %<*%>, %<-%>, %<&%>, %<^%>, %<|%>, %<&&%>, %<||%>, %<min%> or identifierexpected %<,%>expected %<,%> or %<)%>expected %<,%> or %<)%> after %qEexpected %<,%> or %<...%>expected %<,%> or %<;%>expected %<,%> or %<}%>expected %<,%>, %<;%> or %<}%>expected %<.%>expected %<...%>expected %<:%>expected %<:%> or %<...%>expected %<:%> or %<::%>expected %<:%> or numeralexpected %<:%>, %<,%>, %<;%>, %<}%> or %<__attribute__%>expected %<::%>expected %<;%>expected %<;%> after class definitionexpected %<;%> after struct definitionexpected %<;%> after union definitionexpected %<;%> at end of member declarationexpected %<;%> or %<{%>expected %<;%>, %<,%> or %<)%>expected %<;%>, identifier or %<(%>expected %<<%>expected %<=%>expected %<=%>, %<,%>, %<;%>, %<asm%> or %<__attribute__%>expected %<>%>expected %<@end%>expected %<@synchronized%>expected %<@throw%>expected %<@try%>expected %<[%>expected %<]%>expected %<_Cilk_spawn%> before %<_Cilk_sync%>expected %<__label__%>expected %<__transaction_atomic%>expected %<__transaction_relaxed%>expected %<asm%>expected %<catch%>expected %<class%>expected %<class%> or %<typename%>expected %<class%>, %<typename%>, or %<template%>expected %<data%>expected %<declare%>expected %<decltype%>expected %<delete%>expected %<extern%>expected %<for%> after %qsexpected %<namespace%>expected %<new%>expected %<none%>expected %<none%> or %<shared%>expected %<omp_priv%> or function-nameexpected %<operator%>expected %<point%>expected %<return%>expected %<scalar%>expected %<static_assert%>expected %<target%>expected %<template%>expected %<throw%>expected %<tofrom%>expected %<try%>expected %<using%>expected %<while%>expected %<{%>expected %<{%> or %<:%>expected %<}%>expected %<}%> before %<else%>expected %<~%>expected %qT but argument is of type %qTexpected ...expected [error|warning|ignored|push|pop] after %<#pragma GCC diagnostic%>expected an SSA_NAME objectexpected binary operatorexpected boolean expressionexpected boolean typeexpected channelexpected class nameexpected class-keyexpected class-nameexpected declarationexpected declaration or statementexpected declaration specifiersexpected declaration specifiers or %<...%>expected declaratorexpected end of capture-listexpected end of lineexpected expressionexpected functionexpected function nameexpected function-name %<(%>expected id-expressionexpected id-expression (arguments)expected identifierexpected identifier or %<(%>expected identifier or %<)%>expected identifier or %<*%>expected initializerexpected integerexpected integer expressionexpected integer expression before ')'expected interface or pointer to interfaceexpected iteration declaration or initializationexpected iteration-statementexpected jump-statementexpected labeled-statementexpected namespace-nameexpected nested-name-specifierexpected numeric typeexpected operatorexpected pointerexpected primary-expressionexpected ptr-operatorexpected selection-statementexpected specifier-qualifier-listexpected statementexpected string literalexpected string-literalexpected suffix identifierexpected template-argumentexpected template-idexpected template-id for typeexpected template-nameexpected type specifierexpected type-nameexpected type-specifierexpected unqualified-idexpected variable-nameexpression %qE is not a constant-expressionexpression cannot be used as a functionexpression must be integralextend_ref(): Bad tailextra %<;%>extra brace group at end of initializerextra elements in scalar initializerextra qualification not allowedextra semicolonfail to initialize plugin %sfailed to find class '%s'failed to get exit status: %mfailed to get process times: %mfailure trying to reload:fastcall and thiscall attributes are not compatiblefatal error: fclose %s: %mfield %q#D with same name as classfield %qE declared as a functionfield %qs not foundfield name not in record or union initializerfield precision specifierfield widthfield width in printf formatfield width in scanf formatfield width in strfmon formatfield width in strftime formatfield width specifierfile %qs left but not enteredfill characterfill character in strfmon formatfind_enum(): Enum not foundfini function found in object %sfirst argument must be []bytefirst argument of %q+D should be %<int%>fixed-point overflow in expressionfixed-point types not supported for this targetfixed-point types not supported in C++floating constant misusedfloating constant truncated to zerofloating literal truncated to zerofloating point overflow in expressionfloating-point constant not a valid immediate operandflow control insn inside a basic blockfold-expressions only available with -std=c++1z or -std=gnu++1zfopen %s: %mfopen: %s: %mfor %qDfor statement expectedfor template declaration %q+Dfor, while or do statement expectedformatformat is a wide character stringforward declaration of %q#Tfound %<%c%s%>found %<-%E%> instead of %<+%E%> in protocol(s)fr30_print_operand: invalid %%F codefr30_print_operand: invalid %%x codefr30_print_operand: invalid operand to %%A codefr30_print_operand: unhandled MEMfr30_print_operand: unknown codefr30_print_operand: unrecognized %%B codefr30_print_operand: unrecognized %%b codefr30_print_operand: unrecognized %%p codefr30_print_operand_address: unhandled addressfree_expr0(): Bad expr typefrom previous declaration %q+Dfrom previous declaration %q+Ffrv_print_operand: unknown codefunction %qD declared %<virtual%> inside a unionfunction %qD is initialized like a variablefunction %qD redeclared as inlinefunction %qD redeclared as variablefunction %qD redeclared with attribute noinlinefunction attribute mismatchfunction body can be overwritten at link timefunction body not availablefunction call has aggregate valuefunction declared %<noreturn%> has a %<return%> statementfunction definition declared %<auto%>function definition declared %<register%>function definition declared %<typedef%>function definition declared %qsfunction definition does not declare parametersfunction definition has qualified void return typefunction does not return string typefunction may return address of local variablefunction might be candidate for attribute %<%s%>function might be candidate for attribute %<%s%> if it is known to return normallyfunction not considered for inliningfunction not declared inline and code size would growfunction not inlinablefunction not inline candidatefunction parameters cannot have __fp16 typefunction return type cannot be functionfunction returning a functionfunction returning an arrayfunction returns address of labelfunction returns address of local variablefunction returns an aggregatefunction symbol is not functionfunction_profiler supportfunctions cannot return __fp16 typegcc driver version %s %sexecuting gcc version %s
gcc version %s %s
gcov %s%s
gfc_add_interface(): Bad interface typegfc_arith_divide(): Bad basic typegfc_arith_error(): Bad error codegfc_arith_minus(): Bad basic typegfc_arith_plus(): Bad basic typegfc_arith_times(): Bad basic typegfc_arith_uminus(): Bad basic typegfc_compare_expr(): Bad basic typegfc_copy_expr(): Bad expr nodegfc_get_constant_expr(): locus %<where%> cannot be NULLgfc_is_constant_expr(): Unknown expression typegfc_match(): Bad match code %cgfc_range_check(): Bad typegfc_resolve_blocks(): Bad block typegfc_resolve_code(): Bad statement codegfc_resolve_code(): No expression on DO WHILEgfc_resolve_expr(): Bad expression typegfc_simplify_abs(): Bad typegfc_simplify_dcmplx(): Bad type (x)gfc_simplify_dcmplx(): Bad type (y)gfc_simplify_dim(): Bad typegfc_simplify_floor(): Bad kindgfc_simplify_log: bad typegfc_trans_code(): Bad statement codegfc_trans_select(): Bad type for case expr.gfc_validate_kind(): Got bad kindgfc_validate_kind(): Got bad typegfc_variable_attr(): Bad array referencegfc_variable_attr(): Expression isn't a variablegfortran does not support -E without -cppgimplification failedglobal declaration %q#Dglobal register variable has initial valuegot %d template parameters for %q#Dgot %d template parameters for %q#Tgp is constant (but save/restore gp on indirect calls).gp_offset (%ld) or end_offset (%ld) is less than zerohad to relocate PCHiWMMXt and NEON are incompatibleiWMMXt unsupported under Thumb modeia64_print_operand: unknown codeignoring #pragma %s %signoring duplicate directory "%s"
ignoring nonexistent directory "%s"
ignoring unknown option %q.*s in %<-fdump-%s%>illegal operand illegal operand address (1)illegal operand address (2)illegal operand address (3)illegal operand address (4)illegal operand detectedimplicit declaration of function %qEimplicit templates may not be %<virtual%>implied END DOin %s, at %s:%din argument to unary !in basic block %d:in declaration %q+Din definition of macro %qsin expansion of macro %qsin gfc_simplify_acos(): Bad typein gfc_simplify_acosh(): Bad typein gfc_simplify_asin(): Bad typein gfc_simplify_asinh(): Bad typein gfc_simplify_atan(): Bad typein gfc_simplify_atanh(): Bad typein gfc_simplify_cos(): Bad typein gfc_simplify_exp(): Bad typein gfc_simplify_sin(): Bad typein passing argument %P of %qDin statementin the definition of %q#Tincompatible floating point / vector register operand for '%%%c'incompatible type for argument %d of %qEincompatible type for map indexincompatible type for method %s%s%sincompatible type for method %s%s%s (%s)incompatible type for receiverincompatible types in assignment of %qT to %qTincompatible types in sendincorrect comparison modeincorrect format in scaling, using 1/1
incorrect hint operandincorrect insn:incorrect rounding operandincrement of function %qDincrement of pointer to an incomplete type %qTincrement of read-only member %qDindex must be integerindex value is out of boundinit function found in object %sinit_arglist(): too many argumentsinitialization of a flexible array memberinitialization of flexible array member in a nested contextinitialized field overwritteninitialized field with side-effects overwritteninitializer element is not a constant expressioninitializer element is not computable at load timeinitializer element is not constantinitializer ends prematurelyinitializer for %q#D is invalidinitializer provided for functioninline code to invalidate instruction cache entries after setting up nested function trampolines.inline function %q+D declared but never definedinline function %q+D declared weakinline function %qD used but never definedinline namespaces only available with -std=c++11 or -std=gnu++11inlined_to pointer is wronginlined_to pointer refers to itselfinput file %qs is the same as output fileinsn contains an invalid address !insn does not satisfy its constraints:insn outside basic blockinstall: %s%s
instruction never executedinsufficient arguments to overloaded function %sinteger division by zerointeger overflow in array sizeinteger overflow in expressionintegral expression %qE is not constantinternal compiler errorinternal compiler error.  Bad address:internal compiler error.  Incorrect shift:internal compiler error.  Unknown mode:internal compiler error: internal consistency failureinternal error - invalid Utf8 nameinternal error: bad register: %dinternal functioninternal unit in WRITEinvalid #pragma %sinvalid %%%c operandinvalid %%-codeinvalid %%A operandinvalid %%B operandinvalid %%C operandinvalid %%C valueinvalid %%D operandinvalid %%D valueinvalid %%E valueinvalid %%F valueinvalid %%G modeinvalid %%G valueinvalid %%H operandinvalid %%H specifierinvalid %%I operandinvalid %%J codeinvalid %%J valueinvalid %%K valueinvalid %%L codeinvalid %%L operandinvalid %%L valueinvalid %%M operandinvalid %%M valueinvalid %%N operandinvalid %%N valueinvalid %%O valueinvalid %%P operandinvalid %%P valueinvalid %%R valueinvalid %%T valueinvalid %%U valueinvalid %%Y operandinvalid %%c operandinvalid %%d operandinvalid %%d valueinvalid %%e valueinvalid %%f operandinvalid %%f valueinvalid %%h operandinvalid %%h valueinvalid %%i operandinvalid %%j codeinvalid %%j operandinvalid %%j valueinvalid %%k valueinvalid %%m valueinvalid %%p valueinvalid %%q valueinvalid %%r operandinvalid %%r valueinvalid %%s operandinvalid %%s valueinvalid %%t operandinvalid %%t operand 'invalid %%t/%%b valueinvalid %%u valueinvalid %%v valueinvalid %%x valueinvalid %%xn codeinvalid %%y value, try using the 'Z' constraintinvalid 'asm': invalid --param name %qsinvalid --param value %qsinvalid CASE_CHAINinvalid IACC argumentinvalid PHI argumentinvalid PHI resultinvalid UNSPEC as operandinvalid UNSPEC as operand: %dinvalid abstract type for %q+Dinvalid addressinvalid addressing modeinvalid argument of %qE attributeinvalid argument of %qs attributeinvalid argument of SQRT at %Linvalid argument to %qDinvalid argument to gimple callinvalid argumentsinvalid array assignmentinvalid base-class specificationinvalid case label in switch statementinvalid cast to abstract class type %qTinvalid conditional operandinvalid const_double operandinvalid constantinvalid constant - try using an output modifierinvalid constant for output modifier '%c'invalid constant in %<#pragma %s%>invalid constant in %<#pragma pack%> - ignoredinvalid constant vector for output modifier '%c'invalid constraints for operandinvalid conversion from %<__fpreg%>invalid conversion from %qT to %qTinvalid conversion to %<__fpreg%>invalid coprocessor register %qEinvalid coprocessor register rangeinvalid cpu "%s" for %s"%s"%sinvalid declaration of %<%T::%E%>invalid declaratorinvalid definition of qualified type %qTinvalid depend kindinvalid dist_schedule kindinvalid explicit specializationinvalid expression - try using an output modifierinvalid expression as operandinvalid expression for output modifier '%c'invalid failure memory model for %<__atomic_compare_exchange%>invalid first operand of MEM_REFinvalid form of %<#pragma omp atomic%>invalid format of %sinvalid fpu for attribute(target("%s"))invalid function declarationinvalid function in gimple callinvalid increment expressioninvalid initializerinvalid initializer clauseinvalid initializer for %q#Dinvalid insn:invalid line in the resolution fileinvalid linkage-specificationinvalid map kindinvalid maskinvalid member function declarationinvalid memory model argument to builtininvalid memory model for %<__atomic_load%>invalid memory model for %<__atomic_store%>invalid operandinvalid operand addressinvalid operand code '%c'invalid operand for '%%%c'invalid operand for 'A' modifierinvalid operand for 'D' modifierinvalid operand for 'H' modifierinvalid operand for 'O' modifierinvalid operand for 'T' modifierinvalid operand for 'b' modifierinvalid operand for 'e' modifierinvalid operand for 'm' modifierinvalid operand for 'o' modifierinvalid operand for 'p' modifierinvalid operand for 'r' specifierinvalid operand for 'z' modifierinvalid operand for code '%c'invalid operand in unary operationinvalid operand modifier letterinvalid operand output codeinvalid operand prefixinvalid operand prefix '%%%c'invalid operand size for operand code 'O'invalid operand size for operand code 'Z'invalid operand size for operand code 'z'invalid operand to %%H/%%L codeinvalid operand to %%M codeinvalid operand to %%N codeinvalid operand to %%O codeinvalid operand to %%Rinvalid operand to %%R codeinvalid operand to %%Sinvalid operand to %%T/%%B codeinvalid operand to %%U codeinvalid operand to %%V codeinvalid operand to %%Z codeinvalid operand to %%p codeinvalid operand to %%s codeinvalid operand to %%z codeinvalid operand type used with operand code 'Z'invalid operands in binary operationinvalid operands in ternary operationinvalid operation (%s)invalid operation on %<__fpreg%>invalid operator for %<#pragma omp atomic%>invalid parameter %qsinvalid parameter type %qTinvalid pointer mode %qsinvalid pointer to bit-field %qDinvalid pragmainvalid proc_bind kindinvalid property declarationinvalid receiver type %qsinvalid redeclaration of %q+Dinvalid reduction-identifierinvalid reference prefixinvalid register name for %q+Dinvalid resolution in the resolution fileinvalid schedule kindinvalid setter, it must have one argumentinvalid shift operandinvalid template declaration of %qDinvalid template-idinvalid type %<void%> for newinvalid type %qT declared %<friend%>invalid type argument (have %qT)invalid type argument of %<->%> (have %qT)invalid type argument of %<->*%> (have %qT)invalid type for instance variableinvalid type for propertyinvalid types in nop conversioninvalid use of %%d, %%x, or %%Xinvalid use of %<...%> with non-sliceinvalid use of %<::%>invalid use of %<_Cilk_spawn%>invalid use of %<auto%>invalid use of %<auto%> in default template argumentinvalid use of %<auto%> in exception-specificationinvalid use of %<auto%> in template argumentinvalid use of %<restrict%>invalid use of %qDinvalid use of %qTinvalid use of '%%%c'invalid use of constructor as a templateinvalid use of non-lvalue arrayinvalid use of qualified-name %<%D::%D%>invalid use of qualified-name %<%T::%D%>invalid use of qualified-name %<::%D%>invalid use of typeinvalid use of type %<void%> in parameter declarationinvalid use of void expressioninvalid version number %qsinvalid zero extractitem in READiterator variablejcf-dump: no classes specified
jump to case labeljump to label %qDjunk at end of #pragma %sjunk at end of #pragma __nostandardjunk at end of #pragma __standardjunk at end of %<#pragma %s%>junk at end of %<#pragma GCC visibility%>junk at end of %<#pragma align%>junk at end of %<#pragma fini%>junk at end of %<#pragma init%>junk at end of %<#pragma pack%>junk at end of %<#pragma redefine_extname%>junk at end of %<#pragma reset_options%>junk at end of %<#pragma weak%>junk at end of '#pragma ms_struct'junk at end of '#pragma options'junk at end of '#pragma unused'junk at end of signature stringlabel label %q+D declared but not definedlabel %q+D defined but not usedlabel %q+D used but not definedlabel %qD defined herelambda capture initializers only available with -std=c++14 or -std=gnu++14lambda templates are only available with -std=c++14 or -std=gnu++14lambda-expression in a constant expressionlang_* check: failed in %s, at %s:%dlanguage %s not recognizedlast argument must be an immediateld returned %d exit statusleft precisionleft precision in strfmon formatleft rotate count >= width of typeleft rotate count is negativeleft shift count >= width of typeleft shift count is negativeleft shift of negative valuelen larger than caplength mismatch in expressionlength modifierlength modifier in printf formatlength modifier in scanf formatlength modifier in strfmon formatletter %c was found & insn was not CONST_INTlibraries: %s
library lib%s not foundlinear step expression must be integrallo_sum not of registerlocal symbols must be definedlseek failed while reading export datalto_obj_file_open() failedlvalue required as decrement operandlvalue required as increment operandmacro name missing after %qsmalformed #pragma callmalformed #pragma ghs sectionmalformed #pragma redefine_extname, ignoredmalformed #pragma weak, ignoredmalformed %<#pragma %s%>, ignoredmalformed %<#pragma %s%>, ignoringmalformed %<#pragma align%>malformed %<#pragma align%>, ignoringmalformed %<#pragma fini%>malformed %<#pragma fini%>, ignoringmalformed %<#pragma init%>malformed %<#pragma init%>, ignoringmalformed %<#pragma message%>, ignoredmalformed %<#pragma pack%> - ignoredmalformed %<#pragma pack(pop[, id])%> - ignoredmalformed %<#pragma pack(push[, id][, <n>])%> - ignoredmalformed '#pragma ms_struct {on|off|reset}', ignoringmalformed '#pragma ms_struct', ignoringmalformed '#pragma options', ignoringmalformed COLLECT_GCC_OPTIONSmalformed ptx filemalformed spec function argumentsmalformed spec function namemask must be an immediatematch_attr_spec(): Bad attributemaximum number of arrays per scop.maximum number of basic blocks per function to be analyzed by Graphite.maximum number of isl operations, 0 means unlimitedmaximum number of parameters in a SCoP.maximum value of parameter %qs is %umay not use both -EB and -ELmay not use both -m32 and -m64memory allocation failed while reading export datamethod %s%s%s is marked go:nointerfacemethod %s%s%s requires a pointer receivermethod '%s' not found in classminimal number of loops per function to be analyzed by Graphite.minimum value of parameter %qs is %umismatched argumentsmismatching parensmissing %<(%> after %<#pragma GCC visibility push%> - ignoredmissing %<(%> after %<#pragma pack%> - ignoredmissing %<=%> (after %<getter%> attribute)missing %<=%> (after %<setter%> attribute)missing '(' after '#pragma unused', ignoringmissing ')' after '#pragma unused', ignoringmissing Code attributemissing PHI defmissing [error|warning|ignored|push|pop] after %<#pragma GCC diagnostic%>missing arch name in -march=%qsmissing argument to %qsmissing barrier after block %imissing braces around initializermissing close parenmissing cpu name in 'cpu' target %smissing cpu name in -mcpu=%qsmissing cpu name in -mtune=%qsmissing definitionmissing device or architecture after %qsmissing edge %i->%imissing field '%s' in '%s'missing filename after %qsmissing increment expressionmissing makefile target after %qsmissing method %s%s%smissing numbermissing open parenmissing operandmissing path after %qsmissing terminating %c charactermodification of %qE is not a constant-expressionmodule proceduremore than %d operands in %<asm%>multilib exclusion %qs is invalidmultilib exclusions %qs is invalidmultilib select %qs %qs is invalidmultilib select %qs is invalidmultilib spec %qs is invalidmultiple -mcpu= options specified.multiple definition of %q#Tmultiple inline callersmultiple ref-qualifiersneed %<typename%> before %<%T::%E%> because %qT is a dependent scopeneed explicit conversionnegative insn lengthnegative shift countnegative width in bit-field %q+Dnested assembly dialect alternativesnested namespace definitions only available with -std=c++1z or -std=gnu++1znested redefinition of %<struct %E%>nested redefinition of %<union %E%>new_symbol(): Symbol name too longnext member %q#D declared hereno %<%c%E%> method foundno %qs getter foundno FUNCTION_PROFILER for CRISno argumentsno arguments for spec functionno class name specified with %qsno closing %<]%> for %<%%[%> formatno data type for mode %qsno description yet.no input file specifiedno input filesno input files; unwilling to write output filesno match for no post-decrement operator for typeno post-increment operator for typeno pre-decrement operator for typeno pre-increment operator for typeno previous declaration for %qDno previous prototype for %qDno processor type specified for linkingno register in addressno return statement in function returning non-voidno sclass for %s stab (0x%x)no type named %q#T in %q#Tnode has unknown typenon-AAPCS derived PCS variantnon-NULL pointer initialization at %Cnon-scalar typenon-static initialization of a flexible array membernonconstant array index in initializernonlocal label normalization cannot co-exist with scaling
not a valid Java .class filenot configured for SPE ABInot configured with sysroot headers suffixnot enough argumentsnot enough arguments to function %qEnot enough arguments to returnnot enough type informationnot support -fpicnotenote: null pointernumber must be 0 or 1number of arguments doesn%'t match prototypenumber of components of vector not a power of twonumber of counters is %d instead of %dnumber of results does not match number of valuesobjc++-cpp-output is deprecated; please use objective-c++-cpp-output insteadobjc-cpp-output is deprecated; please use objective-c-cpp-output insteadobject is not a methodobsolete Maverick format code '%c'old declaration %q#Dold-style function definitiononly 0.0 can be loaded as an immediateonly one of -mm and -ml may be givenonly one of -mm and -mtiny= may be givenonly one of -ms and -ml may be givenonly one of -ms and -mm may be givenonly one of -ms and -mtiny= may be givenopen %s failed: %sopen /dev/zero: %mopening dependency file %s: %mopening output file %qs: %sopening output file %s: %moperand is not a condition code, invalid operand code '%c'operand is not a condition code, invalid operand code 'D'operand is not a condition code, invalid operand code 'Y'operand number missing after %%-letteroperand number out of rangeoperand types are %qT and %qToperands to %T/%t must be reg + const_int:operands to ?: have different types %qT and %qToptimization level attribute mismatchoption %qs is valid for %s but not for %soption("%s") was already specifiedoptional argumentoptions enabled: options or targets missing after %qsoptions passed: ordered argument needs positive constant integer expressionoriginal %<default%> is hereoriginal definition appeared hereoriginally defined hereoriginally indirect function call not considered for inliningoriginally specified hereorphaned %qs constructouter %<__transaction_cancel%> not within outer %<__transaction_atomic%>output file not specifiedoutput filename specified twiceoutput_move_single:overflow in array dimensionoverflow in constant expressionoverflow in enumeration valuesoverriding final function %q+Dpadding struct to align %q+Dparameter %q+D declared %<_Noreturn%>parameter %q+D declared %<inline%>parameter %qD declared voidparameter %qD declared with void typeparameter %qD has Java class typeparameter %qD has incomplete typeparameter %qD is initializedparameter %qD set but not usedparameter %u (%q+D) has void typeparameter %u has void typeparameter name omittedpassing too large argument on stackpedwarnpedwarn: permerrorpermerror: pex_init failed: %mplugin %s was specified with different paths:
%s
%spointer argumentpointer assignmentpointer or allocatable resultpointer to a function used in arithmeticpointer to a function used in subtractionpolymorphic argumentpost-increment address is not a registerpostfix %qD must take %<int%> as its argumentpostfix %qD must take %<int%> as its second argumentpostfix %qD should return %qTpotential null pointer dereferencepre-decrement address is not a registerpre-increment address is not a registerprecisionprecision in printf formatpredicated Thumb instructionpredicated instruction in conditional sequenceprefix %qD should return %qTprev_bb of %d should be %d, not %dprevious %<#pragma omp declare reduction%>previous declarationprevious declaration %q#Dprevious declaration %q+Dprevious declaration as %q#Dprevious declaration hereprevious declaration of %<%c%E%>previous declaration of %<%c%E%> as %<@optional%>previous declaration of %<%c%E%> as %<@required%>previous declaration of %<%c%s%>previous declaration of %Dprevious declaration of %q+Dprevious declaration of %q+D was hereprevious declaration of %qDprevious declaration of %qD was inlineprevious declaration of %qD with attribute noinlineprevious declaration of %qEprevious declaration of namespace %qD hereprevious declaration with %qL linkageprevious definition hereprevious definition of %q+#Tprevious definition of %q+D was hereprevious specification in %q#D herepreviously declared herepreviously defined herepreviously defined here as %spreviously used hereprimary template hereprivate member %q#D in anonymous structprivate member %q#D in anonymous unionprofiling not supported with -mgprograms: %s
property can not be a bit-fieldproperty can not be an arrayprotected member %q#D in anonymous structprotected member %q#D in anonymous unionprotocol %qE is deprecatedprototype declarationprovided for %q+Dprovided for %qDq/Q modifiers invalid for symbol referencesqualified-id in declarationrange-based %<for%> loops only available with -std=c++11 or -std=gnu++11re-initialization of %qs at %Lread failed while reading export datareading class %s for the second time from %sreading input filerecompiling with -fcompare-debugrecursive inliningrecursively required by substitution of %qS
recursively required from %q#D
recursively required from here
redeclaration %q+D differs in %<constexpr%>redeclaration of %<enum %E%>redeclaration of %q#Dredeclared here as %q#Dredefined extern inline functions are not considered for inliningredefinition of %<struct %E%>redefinition of %<union %E%>redefinition of %q#Dredefinition of %q#Tredefinition of %q+Dredefinition of default argument for %q#Dredefinition of parameter %q+Dredefinition of typedef %q+Dredefinition of typedef %q+D with different typeredefinition of typedef %q+D with variably modified typeredundant redeclaration of %q+Dref-qualifiers only available with -std=c++11 or -std=gnu++11reference %qD is initialized with itselfreference to local variable %qD returnedregion of lp %i is wrongregparam and thiscall attributes are not compatiblereimplementation of class %qEremoving .rpo file: %mrename spec %s to %s
renaming .rpo file: %mrepeated %s in formatrequired by substitution of %qS
required from %q#D
required from here
resolve_function(): bad function typeresolve_operator(): Bad intrinsicresolve_subroutine(): bad function typereturn not followed by barrierreturn type %q#T is incompletereturn type defaults to %<int%>return type is an incomplete typereturn-statement with a value, in function returning 'void'returning a value from a constructorreturning a value from a destructorreturning initializer listreturning reference to temporaryright operand of shift expression %q+E is negativeright precisionright precision in strfmon formatright rotate count >= width of typeright rotate count is negativeright shift count >= width of typeright shift count is negativeroutine %qD declared hererx100 cpu does not have FPU hardwarerx200 cpu does not have FPU hardwarescalar_storage_order is not supportedscale needs to be non-negative
scaling cannot co-exist with normalization, skipping
second argument must be slice or stringsecond argument to %<__builtin_call_with_static_chain%> must be a pointer typesecond parameter of %<va_start%> not last named argumentsection attribute argument not a string constantsection of %q+D cannot be overriddensection type conflict with %Dsee <http://www.gnu.org/licenses/>.  */selector must be an immediateshared and mdll are not compatibleshared call_stmt:shared is not supportedshared rtxshift count not unsigned integershift of non-integer operandshort read while reading export datasimple IFsimplify_intrinsic_op(): Bad operatorsize of %q+D is %d bytessize of %q+D is larger than %wd bytessize of array %qD is negativesize of array %qE is negativesize of array %qE is too largesize of array is negativesize of array is not an integral constant-expressionsize of array is too largesize of loop %d should be %d, not %dsize of tiles for loop blocking.size of unnamed array is negativesize of unnamed array is too largesize of variable %q+D is too largesizeof(long double) is 12.sizeof(long double) is 16.soft-float and long-double-128 are incompatiblesorry, unimplementedsorry, unimplemented: source is a pointer to incomplete typesource is not a pointersource is not a pointer to classsource is not of class typesource is of incomplete class typesource type is not polymorphicspec %qs has invalid %<%%0%c%>spec %qs has invalid %<%%W%c%>spec %qs has invalid %<%%x%c%>spec %qs invalidspec failure: more than one arg to SYSROOT_HEADERS_SUFFIX_SPECspec failure: more than one arg to SYSROOT_SUFFIX_SPECspec file has no spec for linkingspec is '%s'
 
specs %%include syntax malformed after %ld charactersspecs %%rename syntax malformed after %ld charactersspecs %s spec was not found to be renamedspecs file malformed after %ld charactersspecs unknown %% command after %ld charactersstack frame too largestack_offset must be a multiple of 4stack_offset must be at least 4stackframe too big: %d bytesstatement has no effectstatement is not a constant-expressionstatement marked for throw in middle of blockstatement marked for throw, but doesn%'tstatement with no effectstatic assertion failedstatic assertion failed: %sstatic data member %qD in unnamed classstatic is not supported on TPF-OSstatic_assert without a message only available with -std=c++1z or -std=gnu++1zstdcall and thiscall attributes are not compatiblestray %<@%> in programstray %<\%o%> in programstray %qc in programstray %qs in programstruct defined herestruct has no membersstruct has no named memberssuggest parentheses around %<&&%> within %<||%>suggest parentheses around %<+%> in operand of %<&%>suggest parentheses around %<+%> inside %<<<%>suggest parentheses around %<+%> inside %<>>%>suggest parentheses around %<-%> in operand of %<&%>suggest parentheses around %<-%> inside %<<<%>suggest parentheses around %<-%> inside %<>>%>suggest parentheses around %<>>%> expressionsuggest parentheses around arithmetic in operand of %<^%>suggest parentheses around arithmetic in operand of %<|%>suggest parentheses around assignment used as truth valuesuggest parentheses around comparison in operand of %<!=%>suggest parentheses around comparison in operand of %<&%>suggest parentheses around comparison in operand of %<==%>suggest parentheses around comparison in operand of %<^%>suggest parentheses around comparison in operand of %<|%>suggest parentheses around operand of %<!%> or change %<&%> to %<&&%> or %<!%> to %<~%>suggest parentheses around operand of %<!%> or change %<|%> to %<||%> or %<!%> to %<~%>suggested alternative:suggested alternatives:support for mode %qsswitch %qs does not start with %<-%>switch %qs is no longer supportedswitch missing default caseswitch starts heresymbol used as immediate operandsymbol used with both base and indexed registerssymbol with offset used in PIC modesymtab_node::verify failedsysctl for kern.osversion failed: %msystem path %qs is not absolutetaking address of constructor %qEtaking address of destructor %qEtaking address of temporarytaking address of temporary arraytarget CPU does not support ARM modetarget CPU does not support THUMB instructionstarget CPU does not support interworkingtarget CPU does not support unaligned accessestarget OS does not support unaligned accessestarget argumenttarget format does not support infinitytarget is not pointer or referencetarget is not pointer or reference to classtarget is not pointer or reference to complete typetarget specific option mismatchtarget system does not support debug outputtemplate constraint failuretemplate declaration of %q#Dtemplate parameter %q+#Dtemplate parameters cannot be friendstemplate-id %qD for %q+D does not match any template declarationtemplate-id %qD in declaration of primary templatetemplate-id %qD used as a declaratortemplate-parameter-templates may not be %<virtual%>ternary %<operator?:%>ternary %<operator?:%> in %<%E ? %E : %E%>the %<interrupt%> attribute requires a MIPS32r2 processor or greaterthe %qE attribute requires argumentsthe %qs architecture does not support %<-mfp32%>the ' ' printf flagthe '!' strfmon flagthe '#' printf flagthe '#' strftime flagthe ''' printf flagthe ''' scanf flagthe '(' strfmon flagthe '+' printf flagthe '+' strfmon flagthe '-' printf flagthe '-' strfmon flagthe '-' strftime flagthe '0' printf flagthe '0' strftime flagthe 'E' strftime modifierthe 'I' printf flagthe 'I' scanf flagthe 'O' modifierthe 'O' strftime modifierthe '^' strfmon flagthe '^' strftime flagthe '_' strftime flagthe 'a' scanf flagthe 'm' scanf flagthe 'q' diagnostic flagthe -shared option is not currently supported for VAX ELFthe Free Software Foundation; either version 3, or (at your option)the RX100 cpu does not have FPU hardwarethe RX200 cpu does not have FPU hardwarethe address of %qD will never be NULLthe assignment suppression scanf featurethe call requires ifunc, which is not supported by this targetthe compiler can assume that the address of %qD will never be NULLthe count should be no less than 0.  please check the intrinsic _mm_sll_pi16 in code.the count should be no less than 0.  please check the intrinsic _mm_sll_pi32 in code.the count should be no less than 0.  please check the intrinsic _mm_sll_si64 in code.the count should be no less than 0.  please check the intrinsic _mm_slli_pi16 in code.the count should be no less than 0.  please check the intrinsic _mm_slli_pi32 in code.the count should be no less than 0.  please check the intrinsic _mm_slli_si64 in code.the count should be no less than 0.  please check the intrinsic _mm_sra_pi16 in code.the count should be no less than 0.  please check the intrinsic _mm_sra_pi32 in code.the count should be no less than 0.  please check the intrinsic _mm_sra_si64 in code.the count should be no less than 0.  please check the intrinsic _mm_srai_pi16 in code.the count should be no less than 0.  please check the intrinsic _mm_srai_pi32 in code.the count should be no less than 0.  please check the intrinsic _mm_srai_si64 in code.the count should be no less than 0.  please check the intrinsic _mm_srl_pi16 in code.the count should be no less than 0.  please check the intrinsic _mm_srl_pi32 in code.the count should be no less than 0.  please check the intrinsic _mm_srl_si64 in code.the count should be no less than 0.  please check the intrinsic _mm_srli_pi16 in code.the count should be no less than 0.  please check the intrinsic _mm_srli_pi32 in code.the count should be no less than 0.  please check the intrinsic _mm_srli_si64 in code.the fifth argument must be an 8-bit immediatethe forth argument must be scale 1, 2, 4, 8the immediate argument must be a 4-bit immediatethe immediate argument must be a 5-bit immediatethe immediate argument must be an 8-bit immediatethe incompatible type is defined herethe last argument must be a 1-bit immediatethe last argument must be a 2-bit immediatethe last argument must be a 3-bit immediatethe last argument must be a 32-bit immediatethe last argument must be a 4-bit immediatethe last argument must be a 5-bit immediatethe last argument must be an 1-bit immediatethe last argument must be an 8-bit immediatethe last argument must be scale 1, 2, 4, 8the m210 does not have little endian supportthe range of count should be in 0 to 32.  please check the intrinsic _mm_ror_pi16 in code.the range of count should be in 0 to 32.  please check the intrinsic _mm_ror_pi32 in code.the range of count should be in 0 to 32.  please check the intrinsic _mm_rori_pi16 in code.the range of count should be in 0 to 32.  please check the intrinsic _mm_rori_pi32 in code.the range of count should be in 0 to 64.  please check the intrinsic _mm_ror_si64 in code.the range of count should be in 0 to 64.  please check the intrinsic _mm_rori_si64 in code.the range of mask should be in 0 to 255the range of selector should be in 0 to 1the range of selector should be in 0 to 3the range of selector should be in 0 to 7the third argument must be an 8-bit immediatethe third argument must be comparison constantthis builtin function is only available on the fr405 and fr450this builtin function is only available on the fr450this builtin function is only available on the fr500 and fr550this compiler does not support %sthis is the first default labelthis is the insn:this media function is only available on the fr400 and fr550this media function is only available on the fr500this target does not support %qsthis target is little-endiantoken %u has x-location == %utoken %u has x-location == y-location == %utoken %u has y-location == %utoo few arguments to %%:compare-debug-auxbase-opttoo few arguments to %%:replace-extensiontoo few arguments to %%:version-comparetoo few arguments to %qEtoo few arguments to constructor %q#Dtoo few arguments to functiontoo few arguments to function %q#Dtoo few arguments to function %qEtoo few arguments to member function %q#Dtoo few arguments to method %q#Dtoo few expressions for structtoo many %<if%> clausestoo many %<static%> argumentstoo many %qs clausestoo many alternatives in %<asm%>too many argumentstoo many arguments for formattoo many arguments to %%:compare-debug-auxbase-opttoo many arguments to %%:compare-debug-dump-opttoo many arguments to %%:compare-debug-self-opttoo many arguments to %%:version-comparetoo many arguments to %qEtoo many arguments to constructor %q#Dtoo many arguments to functiontoo many arguments to function %q#Dtoo many arguments to function %qEtoo many arguments to maketoo many arguments to member function %q#Dtoo many arguments to method %q#Dtoo many arguments to method %qEtoo many arguments to overloaded function %stoo many expressions for structtoo many filenames given.  Type %s --help for usagetoo many initializers for %qTtoo many input filestoo many open parenstraditional C rejects the unary plus operatortree check: %s, have %s in %s, at %s:%dtree check: expected class %qs, have %qs (%s) in %s, at %s:%dtree check: expected none of %s, have %s in %s, at %s:%dtree check: expected omp_clause %s, have %s in %s, at %s:%dtry using %qE insteadtwo or more sections for %stype %qE has virtual member functionstype %qT is not a direct base of %qTtype %qT is not derived from %<java::lang::Throwable%>type %qT is too largetype %qT should match type %qTtype has no methodstype is deprecatedtype is deprecated: %stype mismatch for case label in switch statementtype mismatch in address expressiontype mismatch in array referencetype mismatch in binary expressiontype mismatch in complex expressiontype mismatch in component referencetype mismatch in conditional expressiontype mismatch in parameter %itype mismatch in shift expressiontype mismatch in vector permute expressiontype of %qD defaults to %<int%>type of %qE is unknowntypedef %q+D declared %<_Noreturn%>typedef %q+D declared %<inline%>typedef declared %<auto%>types may not be defined in caststypes may not be defined in template argumentsunable to emulate %qsunable to generate reloads for:unable to open dynamic dependency '%s'unable to open fileunable to open log file %<vtv_class_set_sizes.log%>: %munable to open log file %<vtv_count_data.log%>: %munable to open log file %<vtv_set_ptr_data.log%>: %munable to print out operand yet; code == %d (%c)unable to use '%s' for PIC registerunconditional %2d never executed
unconditional %2d taken %s
unconvertible operand %c %qsundeclared selector %qEunexpected AST of kind %sunexpected argumentunexpected attributeunexpected base-type in cris_print_baseunexpected index-type in cris_print_indexunexpected multiplicative operandunexpected offsetunexpected operandunexpected side-effects in addressunidentifiable call opunimplemented functionalityunion defined hereunion has no membersunion has no named membersunknown -mdebug-%s switchunknown IRA algorithm %qsunknown IRA region %qsunknown LTO partitioning model %qsunknown TLS model %qsunknown basic block reordering algorithm %qsunknown cc_attr valueunknown demangling style '%s'unknown destunknown insn modeunknown linker output %qsunknown machine mode %qEunknown move insn:unknown offload ABI %qsunknown operator %qs in %%:version-compareunknown option %q.*s in %<-fopt-info-%s%>unknown option for -mrecip=%sunknown pointer size model %qsunknown property attributeunknown punctuation '%c'unknown register name: %sunknown relocation unspecunknown spec function %qsunknown srcunknown switch -mlong-double-%sunknown type name %qEunknown value %qs for -marchunknown value %qs for -mcpuunknown value %qs for -mtuneunnamed class defined hereunquote_string(): got bad stringunreachableunrecognised argument of -mcpu: %sunrecognizable argument of option unrecognizable insn:unrecognized addressunrecognized argument in option %qsunrecognized argument to --help= option: %q.*sunrecognized argument to -fsanitize%s= option: %q.*sunrecognized command line option %<-%s%>unrecognized command line option %<-fdump-%s%>unrecognized command line option %<-fopt-info-%s%>unrecognized command line option %qsunrecognized ivar visibility value %qsunrecognized option -fdisableunrecognized option -fenableunrecognized register name %qsunrecognized scalar storage order value %qsunrecognized supposed constantunrecoverable errorunsupported argument to %qDunsupported combination: %sunsupported fixed-point conversionunsupported mode %s
unsupported simdlen %dunterminated assembly dialect alternativeunterminated format stringunused parameter %qDunused variable %q+Dunused variable %qDuse #include insteaduse %<%T::%D%> insteaduse %<%T::%D%> instead of %<%T::%D%> to name the constructor in a qualified nameuse %<this->%D%> insteaduse -Winvalid-pch for more informationuse __attribute__ ((vector_size)) insteaduse internal function id in profile lookup.use of %<auto%> in parameter declaration only available with -std=c++14 or -std=gnu++14use of %qs in templateuse of %s and %s together in %s formatuse of %s and %s together with %<%%%c%> %s formatuse of deleted function %qDuse of old-style castuseless cast to type %qTusing %<%c%s%>using IBM extended precision long doubleusing IEEE extended precision long doubleusing both @FILE with multiple files not implementedusing darwin64 ABIusing invalid field %qDusing old darwin ABIusing temporary as lvaluevalid arguments to %qs are: %svalue argumentvalue computed is not usedvariable %D of type %<cb%> must be uninitializedvariable %q+D declared %<_Noreturn%>variable %q+D declared %<inline%>variable %qD has function typevariable %qD redeclared as functionvariable %qD set but not usedvariable length array %qD is usedvariable length array is usedvariable or field declared voidvariable symbol is not variablevariable templates only available with -std=c++14 or -std=gnu++14variable-sized object may not be initializedvec_extract only accepts 2 argumentsvec_insert only accepts 3 argumentsvector overflow in expressionvectorlength must be a power of 2vectorlength must be an integer constantverification failed at PC=%d: %sverification failed: %sverify_cgraph_node failedverify_eh_tree failedverify_flow_info failedverify_flow_info: Basic block %d succ edge is corruptedverify_flow_info: Block %i has loop_father, but there are no loopsverify_flow_info: Block %i lacks loop_fatherverify_flow_info: Duplicate edge %i->%iverify_flow_info: Incorrect blocks for fallthru %i->%iverify_flow_info: Incorrect fallthru %i->%iverify_flow_info: REG_BR_PROB does not match cfg %i %iverify_flow_info: Wrong count of block %i %iverify_flow_info: Wrong count of edge %i->%i %iverify_flow_info: Wrong frequency of block %i %iverify_flow_info: Wrong probability of edge %i->%i %iverify_gimple failedverify_histograms failedverify_ssa failedverify_type failedversion attribute is not a stringvirtual function %q+Dvirtual method %qDvms '#pragma __message' is ignoredvolatile argumentvolatile must be specified on any memory that is effected by DMA.vtable for waitpid failedwarning: warning: consider linking with '-static' as system libraries withweakref is not supported in this configurationweights need to be non-negative
when writing output to %s: %mwide character array initialized from incompatible wide stringwide character array initialized from non-wide stringwide string literal in %<asm%>withwith %q+#Dwithin this loopwrite_atom(): Writing negative integerwriting output filewrong arg %s to option %swrong insn in the fallthru edgewrong number of arguments to %<__builtin_call_with_static_chain%>wrong number of arguments to %<__builtin_choose_expr%>wrong number of arguments to %<__builtin_complex%>wrong number of arguments to %<__builtin_shuffle%>wrong number of arguments to function %<__builtin_next_arg%>wrong number of arguments to function %<va_start%>wrong number of template arguments (%d, should be %d)wrong number of template arguments (%d, should be at least %d)wrong type argument to %swrong type argument to abswrong type argument to bit-complementwrong type argument to conjugationwrong type argument to decrementwrong type argument to incrementwrong type argument to unary minuswrong type argument to unary plusxstormy16_print_operand: unknown codez/Architecture.zero or negative size array %q+Dzero vector sizezero width for bit-field %q+Dzero width for bit-field %qszero width in %s formatzero-length %s format stringzero-size array %qDzero-size array %qT{anonymous}{unknown}Project-Id-Version: gcc 6.1.0
Report-Msgid-Bugs-To: http://gcc.gnu.org/bugs.html
POT-Creation-Date: 2016-08-19 21:03+0000
PO-Revision-Date: 2016-04-28 14:29+0700
Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>
Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>
Language: vi
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=1; plural=0;
X-Generator: Gtranslator 2.91.7
X-Poedit-SourceCharset: UTF-8
 
 
Để tìm hướng dẫn về thông báo lỗi, thăm Ä‘ịa chỉ:
 
Để tìm hướng dẫn về thông báo lỗi, hãy xem tại:
%s.
 
Tiếp tục? (c/k) 
Tùy chọn liên kết
=================
 
 
Tùy chọn bắt Ä‘ầu với một cá»§a -g, -f, -m, -O, -W, --param
thì Ä‘ược tá»± Ä‘á»™ng gá»­i cho những tiến trình con khác nhau Ä‘ược %s gọi.
Phải sá»­ dụng tùy chọn -W<chữ> Ä‘ể gá»­i thêm tùy chọn cho những tiến trình này.
 
kết xuất ldd với bộ tạo/há»§y.
 
write_c_file - tên kết xuất là %s, tiền tố là %s
                           Hiển thị một số loại tùy chọn dòng lệnh nào Ä‘ó.
          %s        %qD        <nặc danh>    -F, --fullname                      In tên tập tin Ä‘ầy Ä‘á»§
    -f, --function                      In thông tin mức hàm
 
    -h, --hotonly                       Chỉ in thông tin cho hàm/đối tượng nóng
    -n, --normalize <long long>         Tiêu chuẩn hóa hồ sÆ¡
    -o, --object                        In thông tin mức Ä‘ối tượng
    -o, --output <dir>                  Thư mục xuất
    -s, --scale <float or simple-frac>  Tá»· lệ con Ä‘ếm hồ sÆ¡
    -t <float>, --hot_threshold <float> Äáº·t ngưỡng cho không nóng
 -v, --verbose                         Chế Ä‘á»™ chi tiết
    -w, --weight <w1,w2>                Äáº·t trọng lượng (giá trị dấu chấm Ä‘á»™ng)
    ÄÆ°á»£c bao gồm tại %s:%d:    trá»±c tiếp từ %qs    trá»±c tiếp từ %qs tại %r%s:%d%R    trá»±c tiếp từ %qs tại %r%s:%d:%d%R  %q#D  %q+T có một cấu tá»­ non-trivial  %qE  %qE không tương Ä‘ương với %qE  %qT là lớp cÆ¡ sở chưa rõ ràng cá»§a %qT  %qT không Ä‘ược dẫn xuất từ %qT  (Hãy sá»­ dụng â€œ-v --help” Ä‘ể hiển thị các tùy chọn dòng lệnh cá»§a tiến trình con).
  -###                     Giống như -v nhưng mà tùy chọn nằm trong dấu
                            nháy và lệnh không Ä‘ược thá»±c hiện.
  --bootclasspath ÄÆ¯á»œNG_DẪN    Có quyền cao hÆ¡n Ä‘ường dẫn lớp dá»±ng sẵn
  --classpath ÄÆ¯á»œNG_DẪN    Äáº·t Ä‘ường dẫn theo Ä‘ó cần tìm tập tin .class (lớp)
  --extdirs ÄÆ¯á»œNG_DẪN          Äáº·t Ä‘ường dẫn Ä‘ến thư mục phần mở rộng
  --help                   Hiển thị trợ giúp này.
  --help                  Hiển thị trợ giúp này, sau Ä‘ó thoát
  --help={common|optimizers|params|target|warnings|[^]{joined|separate|undocumented}}[,…].
tạm dịch:
help    trợ giúp
common    chung
optimizers    bộ tối Æ°u hóa
params    (viết tắt parameters) tham số
warnings    cảnh báo
target    Ä‘ích
joined    nối lại
separate    ngăn cách
undocumented    không có tài liệu mô tả
  --javap                 Tạo kết xuất bằng Ä‘ịnh dạng â€œjavap”
  --sysroot=<thư_mục>      Dùng <thư mục> này làm thư mục gốc
                            cho các phần Ä‘ầu và thư viện.
  --target-help            Hiển thị những tùy chọn dòng lệnh Ä‘ặc trưng cho Ä‘ích.
  --version                Hiển thị thông tin về phiên bản cá»§a bộ biên dịch.
  --version               Hiển thị số thứ tá»± phiên bản, sau Ä‘ó thoát
  -B <thư_mục>             Thêm <thư_mục> này vào các Ä‘ường dẫn tìm kiếm cá»§a bộ biên dịch.
  -E                       Chỉ tiền xá»­ lý, Ä‘ừng biên dịch, assemble hay liên kết.
  -ITHƯ_MỤC                   Phụ thêm thư mục vào Ä‘ường dẫn lớp
  -S                       Chỉ biên dịch, Ä‘ừng assemble hay liên kết.
  -Wa,<các_tuỳ_chọn>      Chuyển cho chương trình assembler các tùy chọn này Ä‘ịnh giới bằng dấu phẩy.
  -Wl,<các_tuỳ_chọn>      Chuyển cho bộ liên kết <các tùy chọn> này
                             Ä‘ịnh giới bằng dấu phẩy.
  -Wp,<các_tuỳ_chọn>       Chuyển cho bộ tiền xá»­ lý 
                             các tùy chọn này Ä‘ịnh giới bằng dấu phẩy.
  -Xassembler <đối_số>     Chuyển <đối số> này cho chương trình assembler.
  -Xlinker <đối_số>        Chuyển Ä‘ối số này cho bộ liên kết.
  -Xpreprocessor <đối_số>  Chuyển Ä‘ối số này cho bộ tiền xá»­ lý.
  -a, --all-blocks                Hiển thị thông tin cho mọi khối cÆ¡ bản
  -b, --branch-probabilities      Bao gồm trong kết xuất các xác xuất nhánh
  -c                       Biên dịch và dịch mã số nhưng Ä‘ừng liên kết.
  -c                      Tháo rời các thân phương pháp
  -c, --branch-counts             ÄÆ°a ra số lượng nhánh Ä‘ược theo,
                                     thay cho phần trăm
  -d, --display-progress          Hiển thị tiến trình công việc
  -dumpmachine             Hiển thị bộ xá»­ lý Ä‘ích cá»§a bộ biên dịch.
  -dumpspecs               Hiển thị tất cả các chuỗi Ä‘ặc tả dá»±ng sẵn.
  -dumpversion             Hiển thị phiên bản cá»§a bộ biên dịch.
  -f, --function-summaries        Xuất bản tóm tắt cho mỗi hàm
  -h, --help                            Hiển thị trợ giúp này rồi thoát.
  -h, --help                      Hiển thị trợ giúp này rồi thoát.
  -i, --intermediate-format       Xuất ra tập tin .gcov trong Ä‘ịnh dạng chữ thường trung gian
  -l, --long-file-names    Dùng tên tập tin kết xuất dài cho tập tin nguồn Ä‘ược bao gồm
  -m, --demangled-names           Xuất các tên hàm không Ä‘ược quản lý
  -n, --no-output                 Äá»«ng tạo tập tin kết xuất
  -no-canonical-prefixes   Äá»«ng làm cho Ä‘ường dẫn theo Ä‘úng quy tắc khi biên dịch
                             tiền tố tương á»©ng với thành phần gcc khác.
  -o <tập-tin>             Äá»ƒ kết xuất vào <tập-tin> này.
  -o TẬP-TIN              Äáº·t tên tập tin kết xuất
  -o, --object-directory TMỤC|TẬP-TIN
        Quét thư mục này hoặc tập tin Ä‘ược gọi này tìm tập tin Ä‘ối tượng
  -p, --preserve-paths            Bảo tồn tất cả các thành phần tên Ä‘ường dẫn
  -pass-exit-codes         Thoát với mã lỗi cao nhất từ một giai Ä‘oạn nào Ä‘ó.
  -pie                     Tạo vị trí Ä‘á»™c lập thi hành.
  -pipe                    Dùng á»‘ng dẫn thay cho tập tin trung gian.
  -print-file-name=<thư_viện>  Hiển thị Ä‘ường dẫn Ä‘ầy Ä‘á»§ Ä‘ến thư viện này.
  -print-libgcc-file-name  Hiển thị tên cá»§a thư viện bổ trợ cá»§a bộ biên dịch.
  -print-multi-directory   Hiển thị thư mục gốc cho các phiên bản thư viện libgcc.
  -print-multi-lib         Hiển thị sá»± Ã¡nh xạ giữa các tùy chọn dòng lệnh
                             và nhiều thư mục tìm kiếm thư viện.
  -print-multi-os-directory Hiển thị Ä‘ường dẫn tương Ä‘ối Ä‘ến các thư mục HĐH.
  -print-multiarch         Hiển thị bộ ba GNU thường hóa cá»§a Ä‘ích, Ä‘ược dùng như
                           một thành phần trong Ä‘ường dẫn thư viện.
  -print-prog-name=<trình> Hiển thị Ä‘ường dẫn Ä‘ầy Ä‘á»§ Ä‘ến thành phần bộ biên dịch này.
  -print-search-dirs       Hiển thị những thư mục nằm trên Ä‘ường dẫn
                             tìm kiếm cá»§a bộ biên dịch.
  -print-sysroot           Hiển thị thư mục chứa các thư viện Ä‘ích.
  -print-sysroot-headers-suffix Hiển thị hậu tố sysroot dùng Ä‘ể tìm phần Ä‘ầu.
  -r, --relative-only             Chỉ hiển thị dữ liệu cho dữ liệu nguồn có liên quan
  -s, --source-prefix TMỤC        Tiền tố mã nguồn cho elide
  -save-temps              Äá»«ng xóa bỏ tập tin trung gian.
  -save-temps=<đối_số>     Äá»«ng xóa bỏ tập tin trung gian.
  -shared                  Tạo thư viện chia sẻ (liên kết Ä‘á»™ng).
  -specs=<tập-tin>         Ghi Ä‘è lên Ä‘ặc tả dá»±ng sẵn bằng nội dung cá»§a <tập tin> này.
  -std=<tiêu_chuẩn>       Coi rằng các nguồn Ä‘ầu vào là theo <tiêu chuẩn> này.
  -time                    Äáº¿m thời gian chạy mỗi tiến trình con.
  -u, --unconditional-branches    CÅ©ng hiển thị số Ä‘ếm các nhánh không Ä‘iều khiển
  -v                       Hiển thị những chương trình Ä‘ược gọi bởi bộ biên dịch.
  -v, --verbose           Hiển thị thêm thông tin trong khi chạy
  -v, --version                        Hiển thị số thứ tá»± phiên bản, sau Ä‘ó thoát.
  -v, --version                   Hiển thị số thứ tá»± phiên bản, sau Ä‘ó thoát.
  -x <ngôn_ngữ>            Chỉ Ä‘ịnh ngôn ngữ cá»§a những tập tin Ä‘ầu vào mà theo sau
                            Các ngôn ngữ có thể sá»­ dụng: c c++ assembler none
                            â€œnone” (không có) = hoàn nguyên về á»©ng dụng mặc Ä‘ịnh
                            là Ä‘oán ngôn ngữ dá»±a vào phần mở rộng cá»§a tập tin.
  cần qualified-id  vì nó là một thư mục không phải hệ thống mà nhân Ä‘ôi một thư mục hệ thống
  cÆ¡ sở %qT  lớp cÆ¡ sở %qT cá»§a %q+T là non-literal  bởi vì thành viên nội bộ %q+#D có cùng tên  bởi vì phương thức nội bộ %q+#D có cùng tên  nhưng cần %d  nhưng không Ä‘è %<%T(const %T&)%>  nhưng không Ä‘ược ghi Ä‘è %<operator=(const %T&)%>  bởi %q+D  á»©ng cá»­ cần %d Ä‘ối số, %d Ä‘ược cung cấp  á»©ng cá»­ cần Ã­t nhất %d Ä‘ối số, nhưng cung cấp %d  không thể chuyển Ä‘ổi %qE (kiểu %qT) thành kiểu %qT  chuyển Ä‘ổi cho Ä‘ối số %d nên là ill-formed:  sá»± khởi tạo chéo cá»§a %q+#D  vào khối Ä‘ược cấu trúc OpenMP  vào khối catch  vào khối try  thoát khỏi khối Ä‘ược cấu trúc OpenMP  cần %qD nhưng lại nhận %qD  cần mẫu lớp, nhưng lại nhận Ä‘ược %qE  cần mẫu lớp, nhưng lại nhận Ä‘ược %qT  cần hằng cá»§a kiểu %qT, nhưng lại nhận Ä‘ược %qT  cần mẫu kiểu %qD, nhưng lại nhận Ä‘ược %qT  cần kiểu, nhưng lại nhận %qE  cần một kiểu, nhưng lại nhận Ä‘ược %qT  cho chuyển Ä‘ổi từ %qT thành %qT  từ Ä‘ịnh nghÄ©a cá»§a %q#D  từ Ä‘ây  trong gọi Ä‘ến %qD  trong Ä‘ịnh giá %<%Q(%#T, %#T)%>  nằm trong biểu thức thrown  Ä‘ang khởi tạo Ä‘ối số %P cá»§a %qD  khớp %q+D này dưới quy tắc ISO tiêu chuẩn  khớp %q+D này dưới quy tắc cÅ©  kiểu hàm thành viên %qT không phải là một Ä‘ối số mẫu hợp lệ  merge [options] <dir1> <dir2>         Hòa trộng nội dung tập tin phá»§ quét
  kiểu không khớp %qT và %qT  không hiểu chuyển Ä‘ổi cho Ä‘ối số %d từ %qT thành %qT  cho chuyển Ä‘ổi từ %qT thành %qT  thành viên dữ liệu không-tÄ©nh %qD có kiểu không-văn-chương  thành viên dữ liệu không-tÄ©nh %qD có kiểu hay thay Ä‘ổi  hoặc %<operator=(const %T&)%>  hoặc một hàm %<transaction_may_cancel_outer%>  overlap [options] <dir1> <dir2>       Tính toán chồng Ä‘è hai hồ sÆ¡
  Ä‘è lên %q#D  Ä‘è lên %q+#D  Ä‘è lên %q+#F  cÅ©ng hỗ trợ chức năng Ä‘o hiệu năng sá»­ dụng chỉ Ä‘ược cung cấp theo Ä‘ịnh dạng kho lưu  rewrite [options] <dir>               Ghi lại nội dung tập tin phá»§ quét
  bỏ qua sá»± khởi tạo cá»§a %q#D  khi khởi tạo á»Ÿ Ä‘ây (kiểu toán hạng là %qT) (các kiểu toán hạng là %qT và %qT) (các kiểu toán hạng là %qT, %qT, and %qT) ÄÃ£ hiển thị tất cả các tùy chọn có những Ä‘ặc Ä‘iểm Ä‘ã muốn
 Không tìm thấy tùy chọn có những Ä‘ặc Ä‘iểm Ä‘ã muốn
 Không tìm thấy. Hãy sá»­ dụng --help=%s Ä‘ể hiển thị *tất cả* các tùy chọn Ä‘ược giao diện %s hỗ trợ.
 á»©ng cá»­ 1: %q+#F á»©ng cá»­ 2: %q+#F sá»­ dụng các cái chuyển loại tạo mã xung Ä‘á»™t với nhau!$OMP ATOMIC phân bổ bên trong phải là MIN, MAX, IAND, IOR hay IEOR tại %L"#pragma disinterrupt %s" chưa Ä‘ược dùng"USE :: module" tại %C# %s %.2f %.2f
#include "…" việc tìm kiếm bắt Ä‘ầu á»Ÿ Ä‘ây:
#include <…> việc tìm kiếm bắt Ä‘ầu á»Ÿ Ä‘ây:
#pragma io_volatile chỉ nhận on hay offlời nhắn #pragma: %s#pragma vtable không còn Ä‘ược hỗ trợ nữa$ mô tả tại %L%+D là nguyên nhân gây xung Ä‘á»™t kiểu phần%+D khai báo bí danh sau khi Ä‘ược sá»­ dụng%q+D Ä‘ã khai báo ifunc sau khi Ä‘ược dùng%+D Ä‘ã khai báo weak sau khi Ä‘ược dùng%+D Ä‘ã khai báo weakref sau khi Ä‘ược dùng%<#pragma tối Æ°u GCC (chuỗi [,chuỗi]…)%> không có một %<)%> kết thúc%<#pragma GCC optimize%> không phải là một chuỗi hay số%<#pragma GCC option%> không phải là một chuỗi%<#pragma GCC pch_preprocess%> phải là Ä‘ầu tiên%<#pragma STDC FLOAT_CONST_DECIMAL64%> không Ä‘ược hỗ trợ cho C++%<#pragma STDC FLOAT_CONST_DECIMAL64%> không Ä‘ược hỗ trợ trên Ä‘ích này%<#pragma acc routine%> %s%<#pragma acc routine%> Ä‘ã Ä‘ược Ã¡p dụng với %D%<#pragma acc routine%> phải Ä‘ược Ã¡p dụng trước %s%<#pragma omp cancel%> chỉ có thể sá»­ dụng trong các biểu thức phức hợp%<#pragma acc update%> phải chứa Ã­t nhất là một mệnh Ä‘ề %<device%> hay %<host%> hay %<self%>%<#pragma align%> phải xuất hiện trước khai báo cá»§a %D, Ä‘ang lờ Ä‘i%<#pragma grainsize%> bị bỏ qua bởi vì -fcilkplus không Ä‘ược bật%<#pragma grainsize%> phải á»Ÿ bên trong một hàm%<#pragma omp atomic capture%> sá»­ dụng hai biểu thức khác nhau cho bộ nhớ%<#pragma omp barrier%> chỉ có thể sá»­ dụng trong các biểu thức phức hợp%<#pragma omp cancel for%> trong %<nowait%> cho cấu trúc%<#pragma omp cancel for%> trong %<ordered%> cho cấu trúc%<#pragma omp cancel sections%> trong %<nowait%> phần cấu trúc%<#pragma omp cancel%> chỉ có thể sá»­ dụng trong các biểu thức phức hợp%<#pragma omp cancellation point%> chỉ có thể sá»­ dụng trong các biểu thức phức hợp%<#pragma omp flush%> chỉ có thể sá»­ dụng trong các biểu thức phức hợp%<#pragma omp ordered%> với mệnh Ä‘ề %<depend%> chỉ có thể sá»­ dụng trong các biểu thức phức hợp%<#pragma omp taskwait%> chỉ có thể sá»­ dụng trong các biểu thức phức hợp%<#pragma omp section%> chỉ có thể sá»­ dụng trong cấu trúc %<#pragma omp sections%>%<#pragma omp taskwait%> chỉ có thể sá»­ dụng trong các biểu thức phức hợp%<#pragma omp taskyield%> chỉ có thể sá»­ dụng trong các biểu thức phức hợpkhông cho khai báo %<#pragma weak%> cá»§a %q+D, bỏ qua%<#pragma%> là không Ä‘ược phép á»Ÿ Ä‘ây%<%%%> hằng Ä‘ược dùng với toán hạng cuối%<%%%c%> chỉ sinh ra 2 số cuối cá»§a năm%<%%%c%> chỉ sinh ra 2 số cuối cá»§a năm trong một số Ä‘ịa phương%<%D::%D%> không phải là thành viên lớp%<%D::%D%> không phải là thành viên cá»§a %qT%<%E::%E%> chưa Ä‘ược khai báo%<%E::%E%> không phải là một lớp hoặc namespace%<%E::%E%> không phải là một lớp, namespace, enumeration%<%E::%E%> không phải là một kiểu%<%T::%D%> các tên cấu tá»­ trong %qT%<%T::%D%> tên há»§y tá»­%<%T::%D%> tên cấu tá»­, không phải kiểu%<%T::%E%> chưa Ä‘ược khai báo%<%T::%E%> không phải một kiểu%<%T::%E%> tên cấu tá»­, không phải kiểu%<%c%E%> không tìm thấy trong giao thức%<%s%> là không hiểu%<%s%> giá trị phải dươngcần %<)%> tại %C%<-Wabi=1%> không Ä‘ược hỗ trợ, dùng =2%<-fabi-compat-version=1%> không Ä‘ược hỗ trợ, dùng =2%<-fabi-version=1%> không còn tiếp tục Ä‘ược hỗ trợ nữa%<-femit-struct-debug-detailed=dir:…%> phải cho phép Ã­t nhất là %<-femit-struct-debug-detailed=ind:…%>%<-fobjc-gc%> bị lờ Ä‘i cho %<-fgnu-runtime%>%<-fobjc-sjlj-exceptions%> bị bỏ qua Ä‘ối với %<-fgnu-runtime%>%<-fobjc-sjlj-exceptions%> bị lờ Ä‘i cho %<-fnext-runtime%> khi %<-fobjc-abi-version%> >= 2%<-fsplit-stack%> hiện nay chỉ Ä‘ược hỗ trợ trên GNU/Linux%<-fsplit-stack%> hiện nay chỉ Ä‘ược hỗ trợ trên GNU/Linux PowerPC64 với glibc-2.18 hay mới hÆ¡n%<-gnat%> gõ nhầm là %<-gant%>%<-march=%s%> không tương thích với ABI Ä‘ã chọn%<-mcpu=%> Ä‘ã lạc hậu; dùng %<-mtune=%> hoặc %<-march=%> Ä‘ể thay thế%<-mdynamic-no-pic%> Ä‘è lên %<-fpic%>, %<-fPIC%>, %<-fpie%> hay %<-fPIE%>%<-mfused-madd%> Ä‘ã lạc hậu; dùng %<-ffp-contract=%> Ä‘ể thay thế%<-mgp32%> và %<-mfp64%> chỉ có thể Ä‘ược tổ hợp cùng nhau khi sá»­ dụng o32 ABI%<-mgp32%> dùng với 64-bit ABI%<-mgp64%> Ä‘ược dùng với 32-bit ABI%<-mgp64%> Ä‘ược dùng với bộ xá»­ lý 32-bit%<-mintel-syntax%> và %<-mno-intel-syntax%> Ä‘ã lạc hậu; dùng %<-masm=intel%> và %<-masm=att%> Ä‘ể thay thế%<-mips3d%> cần %<-mpaired-single%>%<-mno-gpopt%> cần %<-mexplicit-relocs%>%<-msse5%> Ä‘ã bị gỡ bỏ%<-x %s%> sau tập tin Ä‘ầu vào cuối không chịu tác Ä‘á»™ng%<…%> là các Ä‘ối số.)%<…%> có số toán hạng không hợp lệ%<::%D%> chưa Ä‘ược khai báo%<::%E%> chưa Ä‘ược khai báo%<::%E%> không phải một lớp hay namespace%<::%E%> không phải là một lớp, namespace, hay enumeration%<::%E%> không phải là một kiểu%<::main%> phải trả về %<int%>%<@dynamic%> không sẵn sàng trong Objective-C 1.0%<@dynamic%> không trong ngữ cảnh @implementation%<@dynamic%> cần @interface cá»§a lớp sẵn có%<@end%> phải xuất hiện trong một ngữ cảnh @implementation%<@optional%> chỉ cho phép tronh ngữ cảnh @protocol%<@optional%> không sẵn sàng trong Objective-C 1.0%<@package%> không sẵn sàng trong Objective-C 1.0%<@package%> hiện tại có cùng hiệu á»©ng với %<@public%>%<@property%> không sẵn sàng trong Objective-C 1.0%<@required%> chỉ Ä‘ược phép trong ngữ cảnh @protocol%<@required%> không sẵn sàng trong Objective-C 1.0%<@synchronized%> Ä‘ối số không phải là một Ä‘ối tượng%<@synthesize%> không thể Ä‘ược dùng trong các-ta-lốc%<@synthesize%> không sẵn sàng trong Objective-C 1.0%<@synthesize%> không trong ngữ cảnh @implementation%<@synthesize%> cần @interface cá»§a lớp sẵn có%<@throw%> (rethrow) Ä‘ược dùng ngoài một khối @catch%<@throw%> Ä‘ối số không phải là một Ä‘ối tượng%<@try%> không có %<@catch%> hay %<@finally%>%<G0%> trong chuỗi Ä‘ịnh dạng tại %L%<[*]%> không trong khai báo%<_Atomic%> Ã¡p dụng cho kiểu hạn Ä‘ịnh%<_Atomic%> trong Objective-C%<_Atomic%> với OpenMP%<_Cilk_spawn%> chỉ có thể Ä‘ược dùng trong một hàm%<_Cilk_spawn%> phải Ä‘ược theo sau bởi một biểu thức%<_Noreturn%> trong khai báo trống rỗng%<_Sat%> Ä‘ược dùng mà không có %<_Fract%> or %<_Accum%>%<__alignof%> Ä‘ược Ã¡p dụng cho trường bít%<__auto_type%> trong khai báo trống rỗng%<__auto_type%> có lẽ chỉ Ä‘ược dùng với khai báo Ä‘Æ¡n%<__auto_type%> cần một khai báo khởi tạo dữ liệu%<__auto_type%> Ä‘ược Ã¡p dụng cho một bộ khởi tạo trường-bit%<__builtin_complex%> toán hạng không Ä‘úng kiểu%<__builtin_longjmp%> Ä‘ối số thứ hai phải là 1%<__builtin_next_arg%> Ä‘ược gọi mà không có Ä‘ối số%<__gcc_host_wide_int__%> không Ä‘ược Ä‘ịnh nghÄ©a như là kiểu %<long%> hay %<long long%>%<__gcc_host_wide_int__%> không Ä‘ược Ä‘ịnh nghÄ©a là một kiểu%<__int%d%> không Ä‘ược hỗ trợ cho Ä‘ích này%<__int%d%> không Ä‘ược hỗ trợ cho Ä‘ích này%<__label__%> không á»Ÿ Ä‘ầu cá»§a một khối%<__restrict%> chỉ có thể Ä‘ược chỉ Ä‘ịnh cho Ä‘ối tượng và hàm%<__thread%> trước %<extern%>%<__thread%> trước %<static%>%<__thread%> trước %qD%<__thread%> chỉ có thể Ä‘ược chỉ Ä‘ịnh cho Ä‘ối tượng và hàm%<__transaction_cancel%> không nằm trong %<__transaction_atomic%>%<__transaction_cancel%> nằm trong một %<__transaction_relaxed%>thuộc tính %<assign%> xung Ä‘á»™t với %<copy%>thuộc tính %<assign%> xung Ä‘á»™t với %<retain%>%<async%> biểu thức phải nguyên%<auto%> thay Ä‘ổi Ã½ nghÄ©a trong C++11; hãy bỏ nó Ä‘i%<concept%> chỉ sẵn sàng với -fconcepts%<const%> chỉ có thể Ä‘ược chỉ Ä‘ịnh cho lớp và hàm%<constexpr%> không thể dùng cho khai báo kiểuthuộc tính %<copy%> chỉ hợp lệ khi dùng với Ä‘ối tượng trong Objective-C%<custom-%s=%> không Ä‘ược thừa nhận là chỉ lệnh FPU%<custom-%s=%> cần thiết Ä‘ối số%<delete[]%> không phải biểu thức hằngchỉ số %<device%> phải là số nguyên%<dynamic_cast%> không thừa nhận với -fno-rtti%<else%> mà không có %<if%> á»Ÿ trước%<enum %E%> Ä‘ược khai báo trong khai báo khởi tạo vòng lặp %<for%>%<explicit%> chỉ có thể Ä‘ược chỉ Ä‘ịnh cho cấu tá»­%<explicit%> ngoài khai báo lớp%<friend%> chỉ có thể Ä‘ược chỉ Ä‘ịnh trong một lớp%<friend%> Ä‘ược dùng bên ngoài lớpbiểu thức số %<gang%> phải nguyên%<gang%> giá trị phải dươngbiểu thức tÄ©nh %<gang%> phải nguyêngiá trị tÄ©nh %<gang%> phải dươngthuộc tính %<gnu_inline%> hiện tại trên %q+Dchỉ số %<device%> phải là số nguyên%<grainsize%> giá trị phải dương%<inline%> chỉ có thể Ä‘ược chỉ Ä‘ịnh cho hàm%<inline%> trong khai báo trống rỗng%<inline%> Ä‘ược chỉ Ä‘ịnh cho khai báo lớp bạn%<location_t%> không Ä‘ược Ä‘ịnh nghÄ©a như là một kiểu%<locus%> không Ä‘ược Ä‘ịnh nghÄ©a như là một kiểu%<long long long%> là quá dài Ä‘ối với GCC%<long long%> không hợp lệ với %qs%<long%> và %<short%> Ä‘ược chỉ Ä‘ịnh cùng nhau với %qs%<long%>không hợp lệ với %qs%<long%> hoặc %<short%> không hợp lệ với %qs%<long%> hoặc %<short%> Ä‘á»±oc chỉ Ä‘ịnh với kiểu char với %qs%<long%>, %<int%>, %<short%>, hoặc %<char%> không hợp lệ cho %qs%<main%> Ä‘ược khai báo %<_Noreturn%>%<namespace%> không cho phép Ä‘ịnh nghÄ©a á»Ÿ Ä‘ây%<no-custom-%s%> không chấp nhận Ä‘ối số%<noreturn%> hàm trả về%<num_gangs%> giá trị phải dương%<num_teams%> biểu thức phải nguyên%<num_tasks%> giá trị phải dương%<num_teams%> giá trị phải dương%<num_threads%> giá trị phải dương%<num_threads%> giá trị phải dương%<operator delete%> phải trả về kiểu %qT%<operator delete%> nhận kiểu %qT như là Ä‘ối số thứ nhất%<operator new%> phải trả về kiểu %qT%<operator new%> nhận kiểu %<size_t%> (%qT) như là Ä‘ối số thứ nhất%<operator%s%>%<operator%s%> trong %<%E %s %E%>%<operator%s%> trong %<%E%s%>%<operator%s%> trong %<%s%E%>%<operator=%> cần trả về một tham chiếu Ä‘ến %<*this%>%<operator[]%>%<operator[]%> trong %<%E[%E]%>chỉ số %<device%> phải là số nguyên%<priority%> giá trị phải dươngthuộc tính %<readonly%> xung Ä‘á»™t với %<readwrite%>thuộc tính %<readonly%> xung Ä‘á»™t với %<setter%>%<requires%> chỉ sẵn sàng với -fconceptsthuộc tính %<retain%> xung Ä‘á»™t với %<copy%>thuộc tính %<retain%> chỉ hợp lệ khi dùng với Ä‘ối tượng trong Objective-C%<return%> với một giá trị, trong hàm trả lại void (rỗng)%<return%> (trả lại) không có giá trị, trong hàm trả lại non-void (không rỗng)%<short%> không hợp lệ với %qs%<short%> hoặc %<long%> không hợp lệ với %qs%<signed%> và %<unsigned%> Ä‘ược chỉ Ä‘ịnh cùng với nhau cho %qs%<signed%> hoặc %<unsigned%> không hợp lệ với %qs%<sizeof%> Ä‘ược Ã¡p dụng cho bit-fieldđối số cho %<sizeof…%> phải Ä‘ược bao quanh bởi dấu ngoặc Ä‘Æ¡n%<static%> không sá»­ dụng khi Ä‘ịnh nghÄ©a (như ngược với khai báo) một thành viên dữ liệu tÄ©nh%<struct %E%> Ä‘ược khai báo trong khai báo khởi tạo vòng lặp %<for%>%<this%> có lẽ không nên Ä‘ược dùng trong ngữ cảnh này%<thread_limit%> biểu thức phải nguyên%<thread_limit%> giá trị phải dươnggiá trị %<tile%> phải là số nguyên%<tile%> giá trị phải dương%<tree%> không Ä‘ược Ä‘ịnh nghÄ©a là kiểu con trỏ%<tree%> không Ä‘ược Ä‘ịnh nghÄ©a như là một kiểu%<typedef%> bị bỏ qua trong khai báo này%<typeid%> toán tá»­ không thể xuất hiện trong biểu thức hằng%<typeof%> Ä‘ược Ã¡p dụng cho một bit-field%<union %E%> Ä‘ược khai báo trong khai báo khởi tạo vòng lặp %<for%>chiều dài %<vector%> phải là số nguyênchiều dài %<vector%> giá trị phải dương%<vector_length%> giá trị phải dương%<virtual%> chỉ có thể Ä‘ược chỉ Ä‘ịnh cho hàm%<virtual%> ngoài khai báo lớp%<void%> phải là Ä‘ối số duy nhất%<volatile%> chỉ có thể Ä‘ược chỉ Ä‘ịnh cho Ä‘ối tượng và hàmbiểu thức %<wait%> phải là số nguyênbiểu thức số %<worker%> phải là số nguyên%<worker%> giá trị phải dương%<~auto%> chỉ sẵn sàng trên -std=c++14 hay -std=gnu++14từ hạn Ä‘ịnh %E bị bỏ qua trên asm%E cần %<-fgnu-tm%>Tìm thấy %d bộ cấu trúc
Tìm thấy %d bộ há»§y cấu trúc
Tìm thấy %d bảng khung
chế Ä‘á»™ %i-bit chưa Ä‘ược biên dịch bên trong%q#D xung Ä‘á»™t với khai báo trước%q#D Ä‘ược khai báo á»Ÿ Ä‘âyđối số %q#D có kiểu chưa Ä‘ầy Ä‘á»§%q#D kế thừa từ %qT%q#D là không thể truy cập trong ngữ cảnh này%q#D không phải là hàm mẫu%q#D không là const%q#D là volatile%q#D chưa Ä‘ược khai báo trong lớp%q#D trước Ä‘ịnh nghÄ©a á»Ÿ Ä‘ây%q#D trước Ä‘ược Ä‘ịnh nghÄ©a á»Ÿ Ä‘ây%q#D nên Ä‘ược khởi tạo%q#T không có thành viên nào mang tên %qE%q#T không có thành viên nào mang tên %qE; Ã½ bạn là %qE?%q#T có thành viên dữ liệu con trỏ%q#T có lớp cÆ¡ sở áº£o%q#T không phải là một lớp%q#T không phải là một lớp hay namespace%q#T không phải là một mẫu%q#T Ä‘ược dùng á»Ÿ nÆ¡i mà %qT cần%q#T trước Ä‘ã khai báo á»Ÿ Ä‘ây%q+#D không thể Ä‘ược khai báo%q+#D không thể Ä‘ược quá tải%q+#D không phải là thành viên tÄ©nh cá»§a %q#T%q+D Ä‘ược dùng trước khai báo%q+D Ä‘ược khai báo là friend%q+D không hợp lệ trong %q#T%q+D thường là một hàmthành viên dữ liệu tÄ©nh %q+D bên trong cá»§a chỉ thị khai báo Ä‘ích%q+D chỉ nhận không hoặc hai Ä‘ối số%q+D Ä‘ược dùng trước khai báo%q+E không phải biểu thức hằng%q+F Ä‘ược dùng mà chưa từng Ä‘ược Ä‘ịnh nghÄ©a%q+T có một khai báo trước á»Ÿ Ä‘ây%q+T không là kiểu văn chương vì:%qD Ä‘ược gọi trong một biểu thức hằng%q#D không thể Ä‘ược tạo Ä‘è%qD không thể là mặc Ä‘ịnh%qD không thể Ä‘ược dùng như một hàm%qD không thể có Ä‘ối số mặc Ä‘ịnh%qD Ä‘ã Ä‘ổi ngữ nghÄ©a trong GCC 4.4%qD Ä‘ược khai báo %<constexpr%> ngoài lớp cá»§a nó%qD Ä‘ược khai báo như là trường %<virtual%>%qD Ä‘ược khai báo như là Ä‘ối số %<virtual%>%qD Ä‘ược khai báo như là kiểu %<virtual%>%qD Ä‘ược khai báo là một biến %<virtual%>%qD Ä‘ã Ä‘ược Ä‘ịnh nghÄ©a là không có tham số%qD Ä‘ược khai báo là một trường %<inline%>%qD Ä‘ược khai báo là một Ä‘ối số %<inline%>%qD Ä‘ược khai báo là một kiểu %<inline%>%qD Ä‘ược khai báo là một biến %<inline%>%qD Ä‘ược khai báo là mảng cá»§a %qT%qD Ä‘ược khai báo như là một tham chiếu nhưng lại chưa Ä‘ược khởi tạo%qD Ä‘ược khai báo á»Ÿ Ä‘ây%+D Ä‘ã khai báo weakref sau khi Ä‘ược dùng%q+D Ä‘ược Ä‘ịnh nghÄ©a nhưng không dùng%qD không phải một biến trong mệnh Ä‘ề %qs%qD không phải tên một kiểu enumeration trong %qT%qD Ä‘ã Ä‘ịnh nghÄ©a rồi%qD có kiểu chưa Ä‘ầy Ä‘á»§%qD là một namespace%qD thường không phải là hàm non-static%qD Ä‘ã sẵn là bạn cá»§a %qT%qD Ä‘ã sẵn là bạn cá»§a lớp %qT%qD Ä‘ã Ä‘ịnh nghÄ©a sẵn trong %qT%qD Ä‘ã sẵn Ä‘ịnh nghÄ©a trong %qT%qD Ä‘ã Ä‘ịnh nghÄ©a trong lớp %qT%qD là một mẫu liệt kê%qD Ä‘ược Ä‘ịnh nghÄ©a với mô hình tls %s%qD Ä‘ã lạc hậu%qD Ä‘ã lạc hậu: %s%qD Ä‘ược khởi tạo bằng chính nó%qD thường không phải là hàm non-static%qD không phải là một lớp hay namespace%qD không phải là một hàm trả về con trỏ%qD không phải là một mẫu hàm%qD không phải là thành viên cá»§a %qD%qD không phải là thành viên cá»§a %qT%qD không phải là hàm thành viên mẫu%qD không là một namespace-name%qD không phải là một biến trỏ%qD không phải là một thành viên dữ liệu tÄ©nh cá»§a một mẫu lớp%qD không phải một mẫu%qD không phải là một hàm mẫu%qD không phải là một kiểu%qD không phải là một biến%qD không phải một biến trong mệnh Ä‘ề  %<aligned%>%qD không phải một biến trong mệnh Ä‘ề %<depend%>%qD không phải một biến trong mệnh Ä‘ề %qs%qD không phải một biến trong mệnh Ä‘ề %<lastprivate%>%qD không phải một biến trong mệnh Ä‘ề %qs%qD không phải là một biến%qD không phải một Ä‘ối số trong mệnh Ä‘ề %<uniform%>%qD không phải là Ä‘ối số hàm%qD không bị bắt%qD không tương thích với %qD%qD chưa Ä‘ược khai báo trong %qD%qD không phải một biến trong mệnh Ä‘ề %qs%qD Ä‘ược dùng Ä‘ể bỏ khởi tạo trong hàm này%qD không Ä‘ược khai báo như là tÄ©nh%qD phải là một hàm không-thành-viên%qD phải nhận %<void%>%qD cần chính các là một Ä‘ối số%qD cần chính các là hai Ä‘ối số%qD chưa Ä‘ược khai báo%qD chưa Ä‘ược Ä‘ịnh nghÄ©a%qD cần Ä‘ược khởi tạo%qD cần trả về bằng giá trị%qD Ä‘ược dùng trước khi nó Ä‘ược Ä‘ịnh nghÄ©a%qD Ä‘ược dùng trong bộ khởi tạo cá»§a chính nó%qD Ä‘ã Ä‘ược khai báo á»Ÿ Ä‘ây%q+D bị áº©n%qD chưa Ä‘ược khai báo %<constexpr%>%qD chưa Ä‘ược khai báo trong phạm vi này%qD không Ä‘ược khởi tạo với một biểu thức hằng%qD trước Ä‘ã khai báo á»Ÿ Ä‘ây%qD sẽ Ä‘ược khởi tạo sau%qE Ä‘ối số không phải là một Ä‘ịnh danhThuộc tính %qE nằm ngoài vùng Ä‘ịa chỉThuộc tính %qE không Ä‘ược Ã¡p dụng cho các hàmthuộc tính %qE bị trùngthuộc tính %qE theo %qEthuộc tính %qE bị lờ Ä‘ithuộc tính %qE bị lờ Ä‘i cho %qEThuộc tính %qE bị lờ Ä‘i với các kiểuthuộc tính %qE chỉ Ã¡p dụng cho các hàmThuộc tính %qE trên biến không hay thay Ä‘ổiThuộc tính %qE chỉ Ä‘ược Ã¡p dụng cho các Ä‘ối tượng mứcThuộc tính %qE chỉ Ä‘ược Ã¡p dụng cho SH2Athuộc tính %qE chỉ Ã¡p dụng cho các hàmThuộc tính %qE chỉ Ä‘ược Ã¡p dụng cho các biếnThuộc tính %qE chỉ dùng Ä‘ược trên hệ thống 32-bitThuộc tính %qE cần tham số là chuỗiThuộc tính %qE cần kiểu trả về là void%qE không thể dùng như một hàm%qE không phải một kiểu Ã¡nh xạ Ä‘ược trong mệnh Ä‘ề %qs%qE không có kiểu lớp%qE không có con trỏ hay kiểu mảng%qE không phải tên một kiểu%qE chưa Ä‘ược khai báo%qE trong %q#T không phải là tên cá»§a kiểu mẫu%qE trong %q#T không là tên một kiểu%qE không phải là thành viên cá»§a union%qE Ä‘ã lạc hậu%qE Ä‘ã lạc hậu: %s%qE không phải một biến cÅ©ng không phải tên hàm trong mệnh Ä‘ề %qs%qE không phải một lớp hay namespace%qE không phải một lớp mẫu%qE không phải là biểu thức hằng%qE không phải là một mẫu%qE không phải là một kiểu%qE không phải một biến trong mệnh Ä‘ề %<aligned%>%qE không phải một biến trong mệnh Ä‘ề %<depend%>%qE không phải một biến trong mệnh Ä‘ề %qs%qE không phải một Ä‘ối số trong mệnh Ä‘ề %<uniform%>%qE không á»Ÿ Ä‘ầu cá»§a khai báo%qE chưa Ä‘ược khởi tạo%qE không là kiểu %qT%qE có lẽ không Ä‘áp á»©ng với %<%c%E%>%qE cần là tùy chọn %s%qE Ä‘ược dùng với %<auto%>%qE Ä‘ược dùng với %<register%>%qE Ä‘ược dùng với %<typedef%>%qT Ä‘ược khai báo á»Ÿ Ä‘ây%qT Ä‘ược Ä‘ịnh nghÄ©a cÆ¡ sở trá»±c tiếp áº£o%qT Ä‘ược Ä‘ịnh nghÄ©a với cÆ¡ sở Ä‘a trá»±c tiếp%qT không có thành viên nào mang tên %qE%qT không có thành viên nào mang tên %qE; Ã½ bạn là %qE?%qT Ä‘ã sẵn là bạn cá»§a %qT%qT không là cÆ¡ sở cá»§a %qT%qT không phải là một lớp hay namespace%qT không phải là kiểu lớp%qT không phải có kiểu lớp, cấu trúc hay union%qT không phải là thành viên cá»§a %qT%qT không phải là một namespace%qT không phải là một namespace hay enum không hoạt vi%qT không phải lớp lồng nhau cá»§a %qT%qT không phải kiểu con trỏ Ä‘ến Ä‘ối tượng%qT không phải một mẫu%qT không phải là một kiểu mẫu%qT không phải một kiểu enumeration%qT là/dùng kiểu nặc danh%qT Ä‘ược coi là %qs%qT Ä‘ược coi là enum%qsđối số %qs cá»§a %qs intrinsict tại %L phải là INTENT(IN)đối số %qs cá»§a %qs intrinsict tại %L phải là %sđối số %qs cá»§a %qs intrinsict tại %L phải là ALLOCATABLETham số %qs cá»§a hạn chế %qs tại %L phải là SỐ-NGUYÊNđối số %qs cá»§a %qs intrinsict tại %L phải là NGUYÊN hay THỦ TỤCđối số %qs cá»§a %qs intrinsict tại %L phải là NGUYÊN hay THá»°Cđối số %qs cá»§a %qs intrinsict tại %L phải là THá»°C hay PHỨCđối số %qs cá»§a %qs intrinsict tại %L phải là hằngĐối số %qs cá»§a hạn chế %qs tại %L phải là thá»±c thể dữ liệuđối số %qs cá»§a %qs intrinsict tại %L phải là mảng lôgícđối số %qs cá»§a %qs intrinsict tại %L phải là kiểu sốđối số %qs cá»§a %qs intrinsict tại %L phải là tuyến tínhđối số %qs cá»§a %qs intrinsict tại %L phải là một biếnđối số %qs cá»§a %qs intrinsict tại %L phải là một mảngđối số %qs cá»§a %qs intrinsict tại %L phải là chính Ä‘ôiđối số %qs cá»§a %qs intrinsict tại %L phải là các loại %dĐối số %qs cá»§a hạn chế %qs tại %L phải là khoảng 1 hay 2đối số %qs cá»§a %qs intrinsict tại %L phải không là TÙY-CHỌN%qs tại %C không phải là thành viên cá»§a cấu trúc %qs%qs tại %C không phải là một biến“%qs” tại %L Ä‘ã Ä‘ược khởi tạo tại %L rồi%qs tại %L phải là số nguyên“%qs” tại %L không phải là một hàm%qs tại %L phải là kiểu ABSTRACT %s%qs tại %L phải Ã­t hÆ¡n BIT_SIZE(%qs)%s tại %L phải là số nguyên%qs tại %L phải là HÀM%qs tại %L phải là THỦ TỤC CONthuộc tính %qs bị bỏ qua%qs không thể xuất hiện trong biểu thức hằng%qs không hỗ trợ mã MIPS16%qs cần một Ä‘ối số nhưng lại Ä‘ưa ra %d%qs cần 2 Ä‘ối số nhưng chỉ nhận Ä‘ược %d%qs cần một Ä‘ối số hằng%qs cần giá trị dấu chấm cố Ä‘ịnh làm Ä‘ối số%qs cần giá trị dấu chấm cố Ä‘ịnh làm Ä‘ối số Ä‘ầu tiên%qs cần giá trị nguyên làm Ä‘ối số thứ haibiểu thức %qs phải là số nguyên%qs hàm không có Ä‘ối số%qs hàm không trả về giá trị nào%qs có chỗ bị tràn%qs trong %<%s %E%>%qs là tùy chọn không hiểu -save-temps%qs Ä‘ã lỗi thời và không có tác Ä‘á»™ng gì%qs Ä‘ã lỗi thời; hãy dùng -fno-zero-initialized-in-bss%qs Ä‘ã lỗi thời; hãy dùng -fstack-check%qs không tương thích với %qs%qs không tương thích với %s %s%qs không phải là một thư mục%qs không phải là tập tin dữ liệu gcov“%qs” không phải là một tên lớp Ä‘úng“%qs” không phải là một tùy chọn hợp lệ cho bộ tiền xá»­ lý“%qs” không phải là một tùy chọn cái mà Ä‘iều khiển cảnh báo%qs không sẵn sàng trong các hàm non-VLIW%qs không hợp lệ cho %qs%qs là phiên bản %q.*s, cần phiên bản %q.*s%qs phải là mệnh Ä‘ề Ä‘ầu tiên cá»§a %qs%qs phải Ä‘ược sá»­ dụng cùng với %qs%qs cá»§a %qs là RIÊNG tại %L%qs Ä‘ược dùng với %qE%qs giá trị phải dương%r%s:%d:%R   %r%s:%d:%R   [ bỏ qua %d ngữ cảnh minh dụ, dùng -ftemplate-backtrace-limit=0 Ä‘ể tắt ]
%r%s:%d:%d:%R   %r%s:%d:%d:%R   [ bỏ qua %d ngữ cảnh minh dụ, dùng -ftemplate-backtrace-limit=0 Ä‘ể tắt ]
%s%s
%s Giống như %s.%s %#D%s %#D%s %<%s%.*s%> cần khớp một Ä‘ối số %<%T%s%> argument%s %<%s%.*s%> cần khớp một Ä‘ối số %<%s%s%>%s %qs%s %s %p %d
%s %s%s
%s %s(%E) %p %d
%s â€œ%s”
%s (chương trình %s)%s tại %L%s tại %L phải là SỐ-NGUYÊN%s tại %L phải là một scalar%s tại %L phải là số nguyênthuộc tính %s Ä‘ược Ã¡p dụng cho %s %s tại %Lthuộc tính %s xung Ä‘á»™t với thuộc tính %s trong %sq tại %Lthuộc tính %s cá»§a %qs xung Ä‘á»™t với thuộc tính %s tại %Lthuộc tính %s với thuộc tính %s tại %Lthuộc tính %s với thuộc tính %s trong %qs tại %L%s không thể Ä‘ược dùng trong asm á»Ÿ Ä‘ây%s không hỗ trợ %s%s không hỗ trợ %s với %<%%%c%> Ä‘ịnh dạng %s%s không hỗ trợ block_ends_with_call_p%s không hỗ trợ block_ends_with_condjump_p%s không hỗ trợ can_duplicate_block_p%s không hỗ trợ can_merge_blocks_p%s không hỗ trợ can_remove_branch_p%s không hỗ trợ create_basic_block%s không hỗ trợ delete_basic_block%s không hỗ trợ dump_bb_for_graph%s không hỗ trợ duplicate_block%s không hỗ trợ flow_call_edges_add%s không hỗ trợ force_nonfallthru%s không hỗ trợ make_forwarder_block%s không hỗ trợ merge_blocks%s không hỗ trợ move_block_after%s không hỗ trợ predict_edge%s không hỗ trợ predicted_by_p%s không hỗ trợ redirect_edge_and_branch%s không hỗ trợ redirect_edge_and_branch_force%s không hỗ trợ split_block%s không hỗ trợ split_edge%s không hỗ trợ %<%%%c%> Ä‘ịnh dạng %s%s không hỗ trợ %<%%%s%c%> Ä‘ịnh dạng %s%s bị bỏ qua với %s và %<%%%c%> %s Ä‘ịnh dạng%s bị bỏ qua với %s trong %s Ä‘ịnh dạng%s trong chuỗi văn CFString%s trong chuỗi Ä‘ịnh dạng tại %L%s không Ä‘ược hỗ trợ bởi cấu hình này%s chỉ chấp nhận %d tham số%s chỉ chấp nhận một tham số%s chỉ chấp nhận hai tham số%s á»Ÿ ngoài phạm vi: Vùng là từ %i Ä‘ến %i, giá trị là %i%s trả lại trạng thái thoát %dcần lệnh %s tại %Lthẻ %sthẻ %s tại %L phải là chuỗi ký tá»± cá»§a kiểu mặc Ä‘ịnhthẻ %s tại %L phải là kiểu %sthẻ %s tại %L phải là scalarthẻ %s với INQUIRE%s Ä‘ã kết thúc với tín hiệu %d [%s]%s%s Ä‘ược dùng với Ä‘ịnh dạng %<%%%c%> %s%s"%s"%s không hợp lệ%s"%s"%s là không Ä‘ược phép%s%#D%s%#D <xóa>%s%#D <gần khớp>%s%D(%T) <dá»±ng-sẵn>%s%D(%T, %T) <dá»±ng-sẵn>%s%D(%T, %T, %T) <dá»±ng-sắn>%s%T <chuyển Ä‘ổi>%s%s%s %sversion %s (%s)
%s    biên dịch bằng GNU C phiên bản %s, %s%s%s %sversion %s (%s) biên dịch bằng CC, %s%sGGC tìm ra: --param ggc-min-expand=%d --param ggc-min-heapsize=%d
%s%swarning: phiên bản phần Ä‘ầu %s %s vẫn khác với phiên bản thư viện %s.
%s-%s là một vùng trống rỗng%s: %m%s: %s%s: trình biên dịch %s chưa Ä‘ược cài Ä‘ặt trên hệ thống này%s: %s: %s%s: -fcompare-debug thất bại%s: -fcompare-debug thất bại (độ dài)%s: Không thể mở tập tin kết xuất: %s
%s: Không Ä‘óng Ä‘ược tập tin kết xuất %s
%s: Trong minh dụ cá»§a %q#D:
%s: Trong thay thế cá»§a %qS:
%s: tập tin PCH không hợp lệ%s: xá»­ lý các cảnh báo như là các lỗi%s: không thể mở dưới dạng tập tin COFF%s: không thể mở tập tin compare-debug %s%s: couldn%'t mở tập tin PCH: %m%s: không phải là một tập tin COFF%s: phần %s còn thiếu%s: xá»­ lý một số các cảnh báo như là các lỗi%s:%d: lộn xộn do lỗi trước nên há»§y bỏ
%s: â€œ%s” có cung từ khối Ä‘i vào
%s: â€œ%s” có cung Ä‘ến khối Ä‘i vào
%s: â€œ%s” còn thiếu khối Ä‘i vào và/hay Ä‘i ra
%s: Ä‘ã thấy khối cho â€œ%s”
%s: không thể mở tập tin dữ liệu, coi là nó chưa thá»±c hiện
%s: không thể mở tập tin ghi chú
%s: bị hỏng
%s: Ä‘ồ thị không thể giải Ä‘ược cho â€œ%s”
%s: không tìm thấy hàm
%s: không có dòng cho â€œ%s”
%s: không phải là một tập tin dữ liệu gcov
%s: không phải là tập tin ghi chú gcov
%s: bị tràn
%s: hồ sÆ¡ không tương á»©ng với â€œ%s”
%s: tập tin nguồn mới hÆ¡n tập tin ghi chú â€œ%s”
%s: dấu vết thời gian không khớp với tập tin ghi chú
%s: không rõ hàm â€œ%u”
%s: phiên bản â€œ%.4s” mà thích â€œ%.4s” hÆ¡n
%s: phiên bản â€œ%.4s” mà thích phiên bản â€œ%.4s” hÆ¡n
%srtd%s bị bỏ qua trong chế Ä‘á»™ 64bit%stune=x86-64%s Ä‘ã lỗi thời, dùng %stune=k8%s hay %stune=generic%s Ä‘ể thay thế là thích hợp“cờ â€œ â€œcờ â€œ!”cờ â€œ#”“%%%c” không phải là một tiền tố toán hạng Ä‘úng“%%&” bị sá»­ dụng mà không có tham chiếu TLS năng Ä‘á»™ng cục bộtoán hạng â€œ%%l” không phải là một nhãn“%s”: mmcu=“%s”
“%s”: tập tin Ä‘ặc tả=“%s”
 
cờ â€œ'”cờ â€œ(”cờ â€œ+”cờ â€œ-”cờ â€œ0”toán hạng â€œB” có nhiều bit Ä‘ược Ä‘ặttoán hạng â€œB” không phải là một hằng sốđồ sá»­a Ä‘ổi â€œE”cờ â€œI”đồ sá»­a Ä‘ổi â€œO”cờ â€œ^”cờ â€œ_”cờ â€œa”'h' Ã¡p dụng cho toán không nguyêncờ â€œm”toán hạng â€œo” không phải là một hằng sốcờ â€œq”©(namespace vô danh)(nặc danh)(gần chỗ khởi tạo cho %qs)(bộ há»§y tÄ©nh cho %s)(bộ khởi tạo tÄ©nh cho %s)(thông Ä‘iệp này Ä‘ược hiển thị chỉ một lần cho mỗi tập tin nguồn)
({nặc danh})*** CẢNH BÁO *** có phần bổ sung vẫn hoạt Ä‘á»™ng: Ä‘ừng thông báo trường hợp này như là một lỗi nếu bạn có thể tạo nó lần nữa mà tắt phần bổ sung nào.
*this--CLASSPATH    ÄÃ£ lạc hậu; nên sá»­ dụng --classpath Ä‘ể thay thế.--bootclasspath=<đường_dẫn>    Thay thế Ä‘ường dẫn hệ thống.--classpath=<đường_dẫn>    Äáº·t Ä‘ường dẫn lớp.--encoding=<mã_ký_tá»±>    Chọn mã ký tá»± cá»§a Ä‘ầu vào (mặc Ä‘ịnh là miền Ä‘ịa phương).--extdirs=<đường_dẫn>    Äáº·t Ä‘ường dẫn Ä‘ến thư mục phần mở rộng.đối số --help %q.*s chưa rõ ràng, hãy chính xác hÆ¡nđã tới giới hạn --param inline-unit-growthđã tới giới hạn --param large-function-growthđã tới giới hạn --param large-stack-frame-growthđã tới giới hạn --param max-inline-insns-autođã tới giới hạn --param max-inline-insns-single“--resource” cÅ©ng yêu cầu â€œ-o”-A<hỏi>=<đáp>    Khắng Ä‘ịnh trả lời cho một câu hỏi nào Ä‘ó.
       Thêm dấu trừ - vào trước <hỏi> thì tắt <đáp> Ä‘ó.-D<vÄ©_lệnh>[=<giá_trị>]    Xác Ä‘ịnh vÄ© lệnh này có giá trị này. Chỉ Ä‘ưa ra vÄ© lệnh thì giá trị Ä‘ược coi là 1.Nhập từ Ä‘ầu vào tiêu chuẩn thì cÅ©ng yêu cầu tùy chọn -E hoặc -x-F <thư_mục>    Phụ thêm thư mục này vào cuối Ä‘ường dẫn bao gồm khung chính.-I <thư_mục>    Phụ thêm thư mục này vào Ä‘ường dẫn bao gồm chính.-I- Ä‘ược chỉ Ä‘ịnh hai lần-J<thư_mục>    Äá»ƒ vào 'thư mục' này các tập tin MÔ-ĐUN.-MF <tập-tin>    Ghi vào tập tin này kết xuất về quan hệ phụ thuộc.-MG chỉ nên dùng với -M hoặc -MM-MQ <đích>    Thêm một Ä‘ích Ä‘ược MAKE trích dẫn.-MT <đích>    Thêm một Ä‘ích không phải Ä‘ược trích dẫn.-O<số>    Äáº·t mức tối Æ°u hóa thành <số>.-U<vÄ©_lệnh>    Há»§y xác Ä‘ịnh vÄ© lệnh này.-Werror=%s: -%s không phải là tùy chọn mà Ä‘iều khiển cảnh báo-Werror=%s: không có tùy chọn -%s-Wformat-contains-nul bị lờ Ä‘i nếu không có -Wformat-Wformat-extra-args bị lờ Ä‘i nếu không có -Wformat-Wformat-nonliteral bị lờ Ä‘i nếu không có -Wformat-Wformat-security bị lờ Ä‘i nếu không có -Wformat-Wformat-y2k bị lờ Ä‘i nếu không có -Wformat-Wformat-zero-length bị lờ Ä‘i nếu không có -Wformat-Wframe-larger-than=<số>    Cảnh báo nếu một khung con trỏ cá»§a hàm lớn hÆ¡n <số> byte.-Wlarger-than=<số>    Cảnh báo nếu một Ä‘ối tượng lớn hÆ¡n <số> byte.-Wnormalized=<none|id|nfc|nfkc>    Cảnh báo về chuỗi Unicode không phải chuẩn hóa.hai tùy chọn -Xbind-now và -Xbind-lazy không tương thích với nhaukhông cho phép sá»­ dụng -bundle với -dynamiclibkhông cho phép sá»­ dụng -bundle_loader với -dynamiclibsá»­ dụng Ada thì cÅ©ng yêu cầu -c hoặc -S-c là cần cho gnat2scil-c cần cho gnat2whykhông cho phép sá»­ dụng -client_name với -dynamiclibchỉ cho phép sá»­ dụng -current_version với -dynamiclib-f%s và -msdata=%s là không tương thích-f%s Ä‘ược bỏ qua (không Ä‘ược DJGPP hỗ trợ)
-f%s không hỗ trợ với chỉ lệnh CONST16-f%s không Ä‘ược hỗ trợ: lờ Ä‘i-fPIC và -fpic không Ä‘ược hỗ trợ trong cấu hình này-fPIC và -mcall-%s là không tương thích-fPIC không Ä‘ược hỗ trợ-fPIC/-fpic không Ä‘ược hỗ trợ cho Ä‘ích này-fPIE không Ä‘ược hỗ trợ-fada-spec-parent=unit  Äá»• Ä‘ặc tả Ada là các Ä‘Æ¡n vị con cá»§a cha Ä‘ã cho.-falign-labels=%d không Ä‘ược hỗ trợ-falign-loops=%d không Ä‘ược hỗ trợ-fasan-shadow-offset chỉ có thể dùng với -fsanitize=kernel-address-fblas-matmul-limit=<số>    Kích cỡ cá»§a ma trận nhỏ nhất cho Ä‘ó matmul sẽ sá»­ dụng BLAS.-fcheck-pointer-bounds không hỗ trợ Ä‘ích này-fcheck-pointer-bounds không hỗ trợ với Address Sanitizer-fcheck-pointer-bounds cần tên â€œ%s” cho cách dùng nội bộ-fcheck=[…]    Ghi rõ có nên thá»±c hiện những hàm kiểm tra lúc chạy nào.-fcilkplus phải Ä‘ược bật Ä‘ể dùng %<_Cilk_for%>-fcilkplus phải Ä‘ược bật Ä‘ể dùng %<_Cilk_sync%>-fcoarray=<none|single|lib>    Chỉ Ä‘ịnh Ä‘ồng mảng song song nào nên Ä‘ược dùng.-fconst-string-class=<tên>    Dùng <tên> lớp cho chuỗi hằng.-fconstexpr-depth=<number>    Chỉ Ä‘ịnh mức Ä‘ệ quy constexpr (bt hằng) tối Ä‘a.-fconvert=<big-endian|little-endian|native|swap> Không phụ thuộc endian Ä‘ược dùng cho các tập tin chưa Ä‘ược Ä‘ịnh dạng.-fdbg-cnt=%s-fdeduce-init-list    bật deduction cá»§a std::initializer_list cho một tham số kiểu mẫu từ brace-enclosed initializer-list.-fdisable-[tree|rtl|ipa]-<pass>=vùng1+vùng2 tắt chuyển qua tối Æ°u hóa.nên kết hợp tùy chọn --femit-class-file với -fsyntax-only-fenable-[tree|rtl|ipa]-<pass>=vùng1+vùng2 bật chuyển qua tối Æ°u hóa.-fexcess-precision=standard dành cho C++-fexcess-precision=standard cho Java-fexec-charset=<cset>    Chuyển mọi hằng chuỗi và ký tá»± sang bảng ký tá»± <cset>.-ffixed-line-length-<số>    Trong chế Ä‘á»™ cố Ä‘ịnh thì chiều rộng dòng ký tá»± là số này.-ffpe-summary=[…]    Äá»«ng in tổng hợp ngoại lệ dấu chấm Ä‘á»™ng.-ffpe-trap=[…]    Äá»«ng lại theo ngoại lệ dấu chấm Ä‘á»™ng.-ffree-line-length-<số>    Trong chế Ä‘á»™ tá»± do thì chiều rộng dòng ký tá»± là số này.-fhandle-exceptions Ä‘ược Ä‘ổi tên thành -fexceptions (và giờ thành mặc Ä‘ịnh)-finit-character=<số>    Khởi tạo các biến ký tá»± cục bộ thành giá trị ASCII này.-finit-integer=<số>    Khởi tạo các biến số nguyên cục bộ thành giá trị này.-finit-logical=<true|false>    Khởi tạo các biến hợp lý cục bộ (true=đúng, false=sai).-finit-real=<zero|snan|nan|inf|-inf>    Khởi tạo các biến thá»±c nội bộ.-finline-matmul-limit=<số>    Kích cỡ cá»§a ma trận nhỏ nhất cho Ä‘ó matmul sẽ Ä‘ược chung dòng.-finput-charset=<cset>    Chỉ Ä‘ịnh bảng mã ký tá»± mặc Ä‘ịnh cho tập tin mã nguồn.-fira-algorithm=[CB|priority] Äáº·t dùng thuật toán IRA.-fira-region=[one|all|mixed] Äáº·t vùng cho IRA.hai tùy chọn --fjni và --femit-class-file không tương thích với nhauhai tùy chọn --fjni và --femit-class-files không tương thích với nhau-flto-compression-level=<số>    Dùng mức nén zlib <số> cho IL.-fmax-array-constructor=<số>    Số tối Ä‘a các Ä‘ối tượng trong một bộ cấu tạo mảng.-fmax-errors=<số>    Số lượng tối Ä‘a các lỗi cần thông báo.-fmax-identifier-length=<số>    Chiều dài tối Ä‘a cá»§a bộ nhận diện.-fmax-stack-var-size=<số>    Kích cỡ theo byte cá»§a mảng lớn nhất sẽ Ä‘ược Ä‘ể vào ngăn xếp.-fmax-subrecord-length=<số>    Chiều dài tối Ä‘a cá»§a mục ghi phụ.-fopt-info[-<type>=tập-tin]    Äá»• chi tiết việc tối Æ°u hóa bộ dịch.không cho phép sá»­ dụng -force_flat_namespace với -dynamiclib-fpic và -fPIC không Ä‘ược hỗ trợ nếu không có -mdsbt trên Ä‘ích này-fpic và -mapcs-reent là xung khắc nhau-fpic không Ä‘ược hỗ trợ-fpie không Ä‘ược hỗ trợ-fplugin-arg-<tên>-<khóa>[=<giá trị>]    Chỉ Ä‘ịnh Ä‘ối số <khóa>=<giá trị> cho plugin <tên>.-fprefetch-loop-arrays không Ä‘ược hỗ trợ bởi -Os-fprefetch-loop-arrays không Ä‘ược hỗ trợ bởi Ä‘ích này-freorder-blocks-and-partition không Ä‘ược hỗ trợ trên kiến trúc này-frepo phải dùng với -c-fsanitize-recover=leak không Ä‘ược hỗ trợ-fsanitize-recover=thread không Ä‘ược hỗ trợ-fsanitize=address và -fsanitize=kernel-address xung khắc với -fsanitize=thread-fsanitize=address và -fsanitize=kernel-address không Ä‘ược hỗ trợ cho Ä‘ích này-fsanitize=address xung khắc với -fsanitize=kernel-address-fsanitize=address không Ä‘ược hỗ trợ cho Ä‘ích nàytùy chọn -fsanitize=all không hợp lệ-fsso-struct=[big-endian|little-endian]    Äáº·t thứ tá»± lưu trữ vô hướng mặc Ä‘ịnh.-fstack-check=[no|generic|specific]     Chèn mã kiểm tra ngăn xếp vào chương trình.-fstack-limit- các tùy chọn bị bỏ qua với -mfdpic; dùng -mstack-check-l1-fstack-limit- các tùy chọn không Ä‘ược hỗ trợ trên cpu này-fstack-limit-register=<register>    Bẫy nếu ngăn xếp Ä‘i qua <register>.-fstack-limit-symbol=<tên>    Bẫy nếu ngăn xếp Ä‘i qua ký hiệu <tên>.-fstack-protector không hỗ trợ Ä‘ích này-fuse-linker-plugin không Ä‘ược hỗ trợ trong cấu hình này-fuse-linker-plugin, mà không tìm thấy %s-fvisibility=[private|protected|public|package]    Äáº·t tính khả kiến ký hiệu mặc Ä‘ịnh.-fvtable-verify không Ä‘ược hỗ trợ trong cấu hình này-fwide-exec-charset=<cset>    Chuyển Ä‘ổi mọi chuỗi rộng và hằng ký tá»± rộng ra bộ mã <cset>.-fwpa và -fltrans loại trừ lẫn nhau-g chỉ hỗ trợ khi sá»­ dụng GAS trên bộ xá»­ lý này,tùy chọn -g bị tắt-gnat<tuỳ_chọn>    Ghi rõ các tùy chọn tới GNAT.-gz không Ä‘ược hỗ trợ trong cấu hình này-gz=<định dạng>    Tạo phần gỡ lỗi nén theo Ä‘ịnh dạng <định dạng>.-gz=zlib không Ä‘ược hỗ trợ trong cấu hình này-idirafter <thư_mục>    Phụ thêm thư mục này vào Ä‘ường dẫn bao gồm hệ thống.-iframework <thư_mục>    Phụ thêm thư mục này vào Ä‘ường dẫn bao gồm khuôn khổ hệ thống.-imultiarch <dir>    Äáº·t <dir> Ä‘ể cho thư mục con bao gồm Ä‘a kiến trúc.chỉ cho phép sá»­ dụng -install_name với -dynamiclib-iplugindir <dir> tùy chọn không Ä‘ược gá»­i từ gcc-iplugindir=<dir>    Äáº·t <dir> cho thư mục phần bổ sung mặc Ä‘ịnh.-iframework <thư_mục>    Phụ thêm thư mục này vào Ä‘ường dẫn bao gồm khuôn khổ hệ thống-isysroot <thư_mục>    Äáº·t <thư_mục> này vào Ä‘ường dẫn gốc hệ thống.-isystem <thư_mục>    Thêm <thư_mục> này vào Ä‘ầu Ä‘ường dẫn bao gồm hệ thống.-iwithprefix <thư_mục>    Phụ thêm thư mục này vào Ä‘ường dẫn bao gồm hệ thống.-iwithprefixbefore <thư_mục>    Phụ thêm thư mục này vào Ä‘ường dẫn bao gồm chính.không cho phép sá»­ dụng -keep_private_externs với -dynamiclib-m%s không Ä‘ược hỗ trợ trong cấu hình này-m64 yêu cầu kiến trúc PowerPC64, Ä‘ang bật-m64 yêu cầu cpu PowerPC64-mabi=ABI    Tạo ra làm hợp với ABI Ä‘ưa ra.-mabi=ABI    Tạo ra mã phù hợp với ABI Ä‘ưa ra.-maix64 Ä‘ược yêu cầu: tính toán 64-bit với Ä‘ịa chỉ 32-bit vẫn chưa Ä‘ược hỗ trợ-maix64 cần kiến trúc PowerPC64 bật-malign-functions Ä‘ã cÅ©, hãy dùng -falign-functions-malign-functions=%d không nằm giữa 0 và %d-malign-jumps Ä‘ã cÅ©, hãy dùng -falign-jumps-malign-jumps=%d không nằm giữa 0 và %d-malign-loops Ä‘ã cÅ©, hãy dùng -falign-loops-malign-loops=%d không nằm giữa 0 và %d-mallow-movmisalign cần -mvsx-maltivec=le không cho phép trên Ä‘ích big-endian-mapcs-stack-check không tương thích với -mno-apcs-frame-march=KIẾN_TRÚC    Tạo ra mã cho phiến tinh thể hoặc CPU Ä‘ưa ra.-mcpu=KTrúc    Sá»­ dụng các tính năng cá»§a Ktrúc Ä‘ã cho.-march=ISA    Tạo ra mã cho ISA Ä‘ưa ra.-mas100-syntax không tương thích với -gdwarf-masm=intel không Ä‘ược hỗ trợ trong cấu hình này-max-stackframe=%d là không thể dùng Ä‘ược, không nằm trong khoảng 0 và %d-mbackchain -mpacked-stack -mhard-float không Ä‘ược hỗ trợ trong tổ hợpkhông cho phép sá»­ dụng Ä‘ồng thời hai tùy chọn -mbig-endian (về cuối lớn) và -mlittle-endian (về cuối nhỏ)-mbranch-cost=%d không nằm trong khoảng 0 và 5-mbranch-cost=GIÁ    Äáº·t giá cá»§a nhánh thành khoảng số các câu lệnh này.-mc= phải là -mc=tiny, -mc=near, hay -mc=far-mcall-aixdesc xung khắc với -mabi=elfv2-mclip hiện nay không chịu tác dụng gì nếu không có -mminmax-mcmodel không tương thích với các tùy chọn toc khác-mcmodel= không Ä‘ược hỗ trợ trên hệ thống 32-mcode-readable=CÀI-ĐẶT    Ghi rõ khi nào câu lệnh có quyền truy cập Ä‘ến mã.-mcorea và -mcoreb không thể dùng cùng với nhau-mcorea cần Ä‘ược dùng với -mmulticore-mcoreb cần Ä‘ược dùng với -mmulticore-mcpu=    Sá»­ dụng các tính năng cá»§a CPU Ä‘ưa ra, và Ä‘ịnh thời mã cho CPU Ä‘ó.-mcpu=%s xung Ä‘á»™t với -march=%s-mcpu=%s có số sá»­a Ä‘ổi silíc không hợp lệ-mcpu=%s không hợp lệ-mcpu=VXL    Biên dịch mã cho CPU biến thế ARC.-mcpu=CPU    Dùng các tính năng cá»§a và tối Æ°u hóa cho CPU.-mcpu=CPU    Sá»­ dụng các tính năng và lịch biểu cá»§a CPU Ä‘ưa ra.-mcpu=PROCESSOR        Sá»­ dụng các tính năng cá»§a và mã tác vụ cho CPU Ä‘ã cho.-mcpu=m16c    Biên dịch mã cho biến thế M16C.-mcpu=m32c    Biên dịch mã cho biến thế M32C.-mcpu=m32cm    Biên dịch mã cho biến thế M32CM.-mcpu=r8c    Biên dịch mã cho biến thế R8C.-mcrypto cần -maltivec-mdebug=    Bật kết xuất gỡ rối.-mdirect-move cần -mvsx-mefficient-unaligned-vsx cần -mallow-movmisalign-mefficient-unaligned-vsx cần -mvsx-memregs=    Số các byte memreg (mặc Ä‘ịnh: 16, phạm vi: 0..16).-mes0 chỉ có thể Ä‘ược dùng với C-mexr Ä‘ược dùng mà không có -ms-mexr Ä‘ược dùng mà không có -ms hayor -msx-mfentry không hỗ trợ cho 32-bit trong tổ hợp cùng với -fpic-mfloat-abi=hard và VFP-mfloat-abi=soft và -mfloat-abi=hard không Ä‘ược dùng cùng nhau-mfloat-gprs=    Chọn phương pháp dấu chấm Ä‘á»™ng GPR.-mfloat128 cần hỗ trợ VSX-mfloat128-hardware cần Ä‘ược ISA 3.0 hỗ trợ-mflush-func=HÀM    Sá»­ dụng hàm này Ä‘ể chuyển hết vùng nhớ tạm ra ngoài trước khi gọi trampoline ngăn xếp.-mfpu=    Ghi rõ dấu chấm Ä‘á»™ng (sp, dp, sp-lite, dp-lite) (cÅ©ng ngụ Ã½ -mxilinx-fpu).-mhard-dfp cần -mhard-floatkhông hỗ trợ -mhard-float-mincoming-stack-boundary=%d không á»Ÿ giữa %d và 12-mint32 không hỗ trợ cho Ä‘ích H8300 và H8300L-mipsSỐ    Tạo ra mã cho cấp ISA SỐ.-mlong-double-64 là không Ä‘ược phép với -m64-mlong-double-<số>    Ghi rõ kích cỡ cá»§a Ä‘ôi dài (64 hay 128 bit).-mmax-stackframe=KÍCH_Cá»     Cảnh báo khung ngăn xếp nào vượt quá kích cỡ này.-mmcu=MCU    Chọn MCU Ä‘ích.-mmul32x16 chỉ hỗ trợ ARC600 hay ARC601-mmul=g13 không thể dùng với -mcpu=g10-mmul=g13 không thể dùng với -mcpu=g14-mmul=g14 không thể dùng với -mcpu=g10-mmul=g14 không thể dùng với -mcpu=g13-mmulticore chỉ có thể Ä‘ược dùng với BF561-mmultiple không Ä‘ược hỗ trợ trên hệ thống bé trước-mn Ä‘ược dùng mà không có -nh hoặc -ms hay -msx-mno-altivec thì tắt vsx-mno-dpfp-lrsr chỉ Ä‘ược hỗ trợ với -mdpfp-mno-exr chỉ hợp lệ với -ms hay -msx                   - Tùy chọn bị bỏ qua!-mno-fentry không tương thích với SEH-mno-serialize-volatile    Äá»‘i với câu lệnh MEMW thì Ä‘ừng cÅ©ng xếp theo thứ tá»± các tham chiếu Ä‘ến vùng nhớ hay thay Ä‘ổi.-mnop-mcount không tương thích với Ä‘ích này-mpcrel -fPIC hiện tại chưa Ä‘ược hỗ trợ trên cpu Ä‘ã chọn-mpic-register= là vô Ã­ch nếu không có -fpic-mpointer-size=[no,32,short,64,long]    Ä‘ặt cỡ con trỏ mặc Ä‘ịnh.-mpower8-fusion-sign cần -mpower8-fusion-mpower8-vector cần -maltivec-mpower8-vector cần -mvsx-mpower9-dform cần -mpower9-vector-mpower9-dform cần -mupper-regs-df-mpower9-dform cần -mupper-regs-sf-mpower9-fusion cần -mpower8-fusion-mpower9-vector cần -mpower8-vector-mpreferred-stack-boundary không Ä‘ược hỗ trợ trên Ä‘ích này-mpreferred-stack-boundary=%d không nằm giữa %d và %d-mquad-memory không sẵn sàng trên chế Ä‘á»™ little endian-mquad-memory yêu cầu chế Ä‘á»™ 64-bit-mquad-memory-atomic cần chế Ä‘á»™ 64-bit-mr10k-cache-barrier=CÀI-ĐẶT    Ghi rõ khi nào nên chèn rào cản vùng nhớ tạm r10k.-mrecip cần -ffinite-math hoặc -ffast-math-mrecip cần -fno-trapping-math hoặc -ffast-math-mrecip yêu cầu -freciprocal-math hoặc -ffast-math-mregparm bị bỏ qua trên chế Ä‘á»™ 64-bit-mregparm bị bỏ qua trên chế Ä‘á»™ 64-bit-mregparm=%d không nằm giữa 0 và %d-mrelax chỉ hỗ trợ cho RTP PIC-mrelocatable và -mcall-%s là không tương thích-mrelocatable và -mno-minimal-toc là không tương thích-mrelocatable và -msdata=%s là không tương thích-ms2600 Ä‘ược dùng mà không có -ms-msdata=%s và -mcall-%s là không tương thích-msecure-plt không Ä‘ược hỗ trợ bởi bộ dịch hợp ngữ cá»§a bạn-mshared-library-id= Ä‘ược chỉ Ä‘ịnh mà không có -mid-shared-library-mshared-library-id=%s không nằm giữa 0 và %d-msim    Sá»­ dụng khoảng thời gian chạy cá»§a bộ mô phỏng.-msim   Dùng chạy mô phỏng.tùy chọn -msimple-fpu bị bỏ quakhông cho phép sá»­ dụng Ä‘ồng thời hai tùy chọn -msingle-float và -msoft-floattùy chọn -msingle-float tương Ä‘ương với -mhard-float-mslow-flash-data chỉ hỗ trợ mã không-pic trên Ä‘ích armv7-m-mspfp_fast không sẵn sàng trên ARC600 hay ARC601-mstring không Ä‘ược hỗ trợ trên hệ thống lớn trước-mstringop-strategy=rep_8byte không hỗ trợ mã 32-bit-msx không hỗ trợ trong coff-mtoc-fusion cần -mpower8-fusion-mtoc-fusion yêu cầu chế Ä‘á»™ 64-bit-mtoc-fusion yêu cầu mô hình mã medium/large-mtraceback=    Chọn bảng vét lùi Ä‘ầy Ä‘á»§ (full), bộ phận (part) hoặc không có (none).-mtune=    Äá»‹nh thời mã cho CPU Ä‘ưa ra.-mtune= cần mn10300, am33, am33-2, hay am34-mtune=KIẾN_TRÚC    Äiều chỉnh sá»± xếp hàng cho chíp hoặc CPU Ä‘ưa ra.-mtune=BXL    Tối Æ°u hóa kết xuất cho bộ xá»­ lý này.-mtune=BỘ_XỬ_LÝ    Tối Æ°u hóa kết xuất cho bộ xá»­ lý này.-mupper-regs-df cần -mvsx-mupper-regs-sf cần -mpower8-vector-mvsx và -mno-altivec không tương thích với nhau-mvsx và -mpaired không tương thích với nhau-mvsx yêu cầu Ä‘ặt Ä‘ịa chỉ một cách phụ lục-mvsx yêu cầu dấu chấm Ä‘á»™ng loại phần cứng-mvsx-timode cần -mvsx-mxl-multiply-high cần -mno-xl-soft-mul-mxl-reorder chỉ Ä‘ược dùng với -mcpu=v8.30.a hay lớn hÆ¡n-mxl-reorder cần -mxl-pattern-compare cho -mcpu=v8.30.a-o <tập tin>    Äáº·t kết xuất vào <tập tin>hai tùy chọn --pg và --fomit-frame-pointer không tương thích với nhau-pie không Ä‘ược hỗ trợ trong cấu hình này-pipe bị bỏ qua bởi vì -save-temps Ä‘ược chỉ rakhông hỗ trợ -pipekhông cho phép sá»­ dụng -private_bundle với -dynamiclib-trigraphs    Hỗ trợ bộ ba ISO C.ABI 31-bit.ABI 64-bit.không hỗ trợ 64-bit SPE<Khi khởi tạo>
<%s nặc danh><nặc-danh><danh sách bộ khởi tạo nằm trong dấu ngoặc><có-sẵn><dòng lệnh><lỗi khai báo><bộ Ä‘ếm><biểu tượng bị lỗi><lỗi biểu thức><lambda<lambda><còn thiếu><giá trị trả lại><giá trị trả lại><lời khai báo><lỗi thẻ><lỗi Ä‘ối số mẫu><lỗi tham số mẫu><biểu thức ném><lỗi loại><loại sai><lỗi xác Ä‘ịnh loại><lỗi sá»­a sẵn loại><gọi thá»§ tục ubsan><không rõ toán hạng><không rõ><không tên cố Ä‘ịnh:<không tên nổi:<không tên không ký:<không tên><chưa phân tích cú pháp><chưa giải quyết loại hàm quá tải>đối số @catch không thể là từ hạn Ä‘ịnh giao thứckhông tìm thấy @interface cá»§a lớp %qEMột hệ số Ä‘ể Ä‘iều hưởng giới hạn trên Ä‘ược bộ Ä‘ịnh thời mô-đu-lô swing sá»­ dụng Ä‘ể Ä‘ịnh thời một vòng lặp.Đồng nghÄ©a -std=c89 (cho C) hoặc -std=c++98 (cho C++).Một ngưỡng trên số trung bình Ä‘ếm vòng lặp Ä‘ược bộ Ä‘ịnh thời mô-đu-lô swing tính.AAPCS không hỗ trợ -mcallee-super-interworkingAAPCS không hỗ trợ -mcaller-super-interworkingABSTRACT INTERFACE %qs phải không tham chiếu tại %LABSTRACT INTERFACE tại %CKiểu TRỪU TƯỢNG tại %qs Ä‘ược dùng tại %LKiểu TRỪU TƯỢNG tại %Cbiến ACQUIRED_LOCKđối tượng ALLOCATEcâu lệnh ASSIGN tại %Ccấu trúc ASSOCIATE tại %Cthuộc tính ASYNCHRONOUS tại%Ccâu lệnh ASYNCHRONOUS tại %CChấp nhận phần mở rộng Ä‘ể hỗ trợ mã nguồn cÅ©.Truy cập Ä‘ến biến trong Ä‘ối tượng PPU 32-bit (mặc Ä‘ịnh).Truy cập Ä‘ến biến trong Ä‘ối tượng PPU 64-bit.Đối số thá»±c tế có chứa quá Ã­t phần tá»­ cho Ä‘ối số giả â€œ%qs” (%lu/%lu) tại %LChiều dài chuỗi thật không tương á»©ng với Ä‘iều khai báo cho Ä‘ối số giả â€œ%s” (%ld/%ld)Chiều dài chuỗi thật vẫn nhỏ hÆ¡n Ä‘iều khai báo cho Ä‘ối số giả â€œ%s” (%ld/%ld)Thêm kiểm tra cho phép chia không.Thêm kiểm tra cho tràn phép chia trong INT_MIN / -1.Lần bổ sung in ra thông tin gỡ rối.Bí danh cho --help=đích.Bí danh cho -femit-class-file.Bí danh cho  -mcpu=g10.Bí danh cho  -mcpu=g13.Bí danh cho  -mcpu=g14.Bí danh có cạnh gọiBí danh có tham chiếu non-aliasCân chỉnh tất cả các nhãn.Xếp hàng tất cả các vòng lặp theo biên giới 32-byte.Xếp hàng mã và dữ liệu theo 32-bit.Đích xếp hàng cá»§a các thao tác chuỗi.Xếp hàng các Ä‘ôi theo biên giới 64-bit.Xếp hàng một số Ä‘ôi theo biên giới dword.Chỉnh Ä‘ầu cá»§a hàm.Chỉnh Ä‘ầu cá»§a vòng lặp.Xếp hàng theo loại cÆ¡ bản cá»§a trường bit.Xếp hàng tất cả các biến theo một biên giới 32-byte.Tất cả các hàm thì có phần mặc Ä‘ịnh là far (xa).Tất cả các thá»§ tục về Ä‘iều thá»±c chất vẫn sẵn sàng bất chấp tiêu chuẩn Ä‘ược chọn.Tất cả các giá trị có thể Ä‘ặt Ä‘ược thì có phần mặc Ä‘ịnh là far (xa).Tất cả các giá trị có thể Ä‘ặt Ä‘ược thì có phần mặc Ä‘ịnh là near (gần).Tất cả các giá trị có thể Ä‘ặt Ä‘ược thì có phần mặc Ä‘ịnh là tiny (rất nhỏ).Cấp phát các biến cúc bộ trên ngăn xếp Ä‘ể cho phép Ä‘ệ quy một cách gián tiếp.Cấp phát có thể vượt quá giới hạn bộ nhớTrong chế Ä‘á»™ cố Ä‘ịnh thì cÅ©ng cho phép chiều rộng dòng ký tá»± tùy Ã½.Trong chế Ä‘á»™ tá»± do thì cÅ©ng cho phép chiều rộng dòng ký tá»± tùy Ã½.Cho phép trường bit Ä‘i qua biên giới từ.Cho phép Ä‘óng gói nhánh với câu lệnh khác.Cho phép chuyển Ä‘ổi giữa hàm trỏ loại __ea và chung (mặc Ä‘ịnh).Cho phép tên thá»±c thể chứa dấu Ä‘ồng Ä‘ô la "$".Sá»­ dụng Ä‘ịa chỉ hàm mà Ä‘ược giữ trong các thanh ghi.Cho phép gcc tạo chỉ lệnh LIW.Cho phép gcc tạo chỉ lệnh SETLB và Lcc.Cho phép gcc sá»­ dụng câu lệnh repeat/erepeat.Cho phép xá»­ lý dấu chấm Ä‘á»™ng phần cứng bao quát thao tác cả hai hệ Ä‘iều hành 32-bit và 64-bit.Cho phép sá»­ dụng câu lệnh MDMX.Cho phép sá»­ dụng câu lệnh MT.Cho phép sá»­ dụng các câu lệnh kiểu dấu chấm Ä‘á»™ng phần cứng với V850E2V3 và hÆ¡n.Cho phép sá»­ dụng ABI và các câu lệnh kiểu dấu chấm Ä‘á»™ng phần cứng.Cho phép Ä‘ưa ra hai câu lệnh từng chu kỳ.Quy Æ°á»›c gọi thay thế.Các chỉ lệnh AltiVec và SPE không thể cùng tồn tạiđối số AltiVec bị gá»­i cho hàm không nguyên mẫuAltiVec không Ä‘ược hỗ trợ á»Ÿ Ä‘ích nàyLúc nào cÅ©ng kiểm tra có kho lưu lớp không phải Ä‘ược gcj tạo ra.Lúc nào cÅ©ng tạo ra cuộc gọi dài.Lúc nào cÅ©ng thấy trường bit có kích cỡ số nguyên.Lúc nào cÅ©ng sá»­ dụng DRAP (hàm trỏ Ä‘ối số Ä‘ã xếp hàng năng Ä‘á»™ng) Ä‘ể xếp hàng lại ngăn xếp.Luôn dùng JSR, không phải BSR, cho gọi.Phụ chú câu lệnh dịch mã số bằng Ä‘ịa chỉ Æ°á»›c lượng.Tên Ä‘ã chứa một dấu gạch dưới thì phụ thêm một dấu gạch dưới bổ sung.Có tên hiển thị bên ngoài thì phụ thêm dấu gạch dưới.Có giá trị số không thì Ã¡p dụng ký hiệu trừ.Số tối Ä‘a (xấp xỉ) các câu lệnh cần cho phép giữa một lời gợi Ã½ và nhánh tương á»©ng [125].Đối số %qs cá»§a %qs với PASS(%s) tại %L phải là dẫn xuất kiểu %qsĐối số %qs cá»§a %qs với PASS(%s) tại %L phải là kiểu dẫn xuất %qsĐối số %qs cá»§a %qs với PASS(%s) tại %L phải là vô hướngTham số %qs cá»§a thá»§ tục cÆ¡ bản tại %L phải là vô hướngTham số NCOPIES cá»§a REPEAT (lặp lại) hạn chế là Ã¢m (giá trị cá»§a nó là %ld)Điều thá»±c chất REPEAT (lặp lại) có Ä‘ối số NCOPIES (số các bản sao) quá lớnĐối số cá»§a %s tại %L phải là cá»§a một Ä‘á»™ dàiĐối số cá»§a hàm %s tại %L là Ã¢mĐối số cá»§a thá»§ tục FINAL tại %L phải là kiểu %qsCâu lệnh IF số học tại %CSố học NaN (không phải là một con số) tại %LSố học Ä‘úng tại %LSố học bị tràn tại %LSố học bị tràn ngược tại %LKích thước phần tá»­ mảng quá lớn tại %CCác toán hạng mảng không tương xứng với nhau tại %LTham chiếu mảng á»Ÿ ngoại phạm viAssembler không hỗ trợ -mabi=ilp32Tùy chọn dịch ASM
=================
 
Nhãn Ä‘ã gán không phải là một nhãn Ä‘íchGán vô hướng cho mảng chưa cấp phátCoi là các ICPLB Ä‘ược bật vào lúc chạy.Coi là một Ä‘oạn TLS lớn.Coi là mọi ký hiệu Ä‘ều có giá trị 32-bit.Giả sá»­ là mọi biến Ä‘ối số biến Ä‘ổi Ä‘ều Ä‘ược nguyên mẫu.Coi là mã sẽ Ä‘ược GAS dịch.Coi là mã sẽ Ä‘ược liên kết bởi ld cá»§a GNU.Coi là mã sẽ Ä‘ược liên kết bởi ld cá»§a HP.Coi là ngăn xếp Ä‘ến Ä‘ược xếp hàng theo lÅ©y thừa 2 này.Coi là các hàm sở hữu Ä‘ược thá»±c hiện dùng JNI.Coi là môi trường thá»±c thi C bình thường.Coi có thể bị sai xếp hàng Ä‘ôi.Coi là câu oệnh pt* sẽ không bẫyCoi là có một vùng Ä‘ịa chỉ nhỏ.Coi là ký hiệu có thể không hợp lệ.Coi là CPU Ä‘ích Ä‘ược cấu hình về cuối lớn.Coi là CPU Ä‘ích Ä‘ược cấu hình về cuối nhỏ.Coi rằng các việc nạp/lưu dấu chấm Ä‘á»™ng không phải rất có thể gây ra sá»± xung Ä‘á»™t khi Ä‘ược Ä‘ể vào cùng một nhóm câu lệnh.Coi là Ä‘ã cung cấp hỗ trợ vào lúc chạy, vì thế bỏ sót -lsim khỏi dòng lệnh liên kết.Coi là tập tin nguồn có dạng cố Ä‘ịnh.Coi là tập tin nguồn có dạng tá»± do.Coi là môi trường RTP VxWorks.Coi là môi trường vThreads VxWorks.Coi là lúc chạy thì sá»­ dụng một bảng chuỗi duy nhất Ä‘ể Ã¡nh xạ một Ä‘ối tượng tới cấu trúc Ä‘ồng bộ cá»§a nó.Giả Ä‘ịnh kiểu tại %CTheo phạm vi toàn cục:Ở cấp Ä‘ầu:Tá»± Ä‘á»™ng ghi trả lại các Ä‘ường dẫn vùng nhớ tạm dữ liệu loại phần mềm (mặc Ä‘ịnh).Đang thá»­ BỎ cấp phát một mảng Ä‘ã bỏ cấp phát â€œ%s”Thá»­ bảo tồn ngăn xếp Ä‘ược xếp hàng theo lÅ©y thừa 2 này.Đang cố cấp phát một biến Ä‘ã Ä‘ược cấp phát rồiĐang cố cấp phát một biến Ä‘ã Ä‘ược cấp phát rồi â€œ%s”Tá»± Ä‘á»™ng xếp hàng các Ä‘ích nhánh Ä‘ể giảm giá nhánh thừa.Tránh giới hạn phạm vi nào trong câu lệnh gọi.Tránh sá»± tạo ra cuộc gọi tương Ä‘ối với PC; sá»­ dụng hành Ä‘á»™ng gián tiếp.Tránh sá»± tạo ra câu lệnh nạp/lưu phụ lục khi có thể.Tránh các thanh ghi Ä‘ích và Ä‘ịa chỉ chồng chéo lên nhau Ä‘ối với câu lệnh LDRDTránh sá»± nạp suy Ä‘oán Ä‘ể khắc phục một sá»± dị thường loại phần cứng.Tránh dùng các chỉ lệnh DIV và MODBB %i có cạnh saiBB %i thiếu cạnhBIND(C) Ä‘ược Ã¡p dụng với %s %s tại %LBIND(C) tại %LBIND(C) tại %CBLANK= tại %C không Ä‘ược phép trong Fortran 95cấu trúc BLOCK tại %Ckiểu BYTE tại %CDi chuyển 128-bit saiHợp nhất GPR saiMã byte sai.
Tên saiToán tá»­ saiGặp loại saio trong biểu thức bất biếnTên bộ mạch [và vùng nhớ].Đóng kết với số các Ä‘iều á»©ng cá»­ dưới Ä‘ó tất cả các Ä‘iều á»©ng cá»­ Ä‘ược tính trong sá»± tối Æ°u hóa iv.Đóng kết với số các lần sá»­ dụng iv trong vòng lặp Ä‘ược tối Æ°u hóa bằng sá»± tối Æ°u hóa iv.Đóng kết với số các sá»± kiểm tra lúc chạy Ä‘ược chèn bởi việc kiểm tra phiên bản vòng lặp cho bí danh cá»§a bộ véc-tÆ¡ hóa.Đóng kết với số các sá»± kiểm tra lúc chạy Ä‘ược chèn bởi việc kiểm tra phiên bản vòng lặp Ä‘ể xếp hàng cá»§a bộ véc-tÆ¡ hóa.Đóng kết với kích cỡ biểu thức Ä‘ược sá»­ dụng trong bộ phân tích sá»± khai căn vô hướng.Đóng kết với Ä‘á»™ tinh vi cá»§a biểu thức Ä‘ược sá»­ dụng trong bộ phân tích sá»± khai căn vô hướng.Đóng kết với giá cá»§a một biểu thức Ä‘ể tính số các lần lặp lại.Đóng kết với số các lần lặp lại Ä‘ược Æ°á»›c lượng bởi thuật toán phân tích số sức mạnh vÅ© phu các lần lặp lại.Nhánh có giá này (1-5, Ä‘Æ¡n vị tùy Ã½).Nhánh Ä‘ược thá»±c hiện: %s trên %d
Xây dá»±ng cho Lõi A.Biên dịch cho Lõi B.Biên dịch cho SDRAM.C++11 %<constexpr%> chỉ sẵn sàng với -std=c++11 hay -std=gnu++11C++11 %<noexcept%> chỉ sẵn sàng với -std=c++11 hay -std=gnu++11C++11 %<thread_local%> chỉ sẵn sàng với -std=c++11 hay -std=gnu++11C++11 auto inline chỉ sẵn sàng với -std=c++11 hay -std=gnu++11câu lệnh CLASS tại %CCOLLECT_GCC phải Ä‘ược Ä‘ặtCOLLECT_GCC phải Ä‘ược Ä‘ặt.COLLECT_LTO_WRAPPER phải Ä‘ược Ä‘ặtCOMMON â€œ%qs” tại %L không tồn tạiKhông thể so sánh các số lượng PHỨC TẠP tại %Lthuộc tính CONTIGUOUS tại %Ccâu lệnh CONTIGUOUS tại %CCONVERT tag tại %LCPU bạn chọn không hỗ trợ chỉ lệnh x86-64Gọi một hàm thư viện Ä‘ể chia số nguyên.Gọi mcount Ä‘ể Ä‘o hiệu năng sá»­ dụng Ä‘ẳng trước một Ä‘oạn mở Ä‘ầu hàm.Cuộc gọi Ä‘ược thá»±c hiện: %s trên %d
Không thể xây dá»±ng kiểu TRỪU TƯỢNG %qs tại %LKhông thể chuyển Ä‘ổi %qs thành %qs tại %LKhông thể chuyển Ä‘ổi %s thành %s tại %LKhông thể mở tập tin %qskhông thể Ä‘è GENERIC %qs tại %LKhông thể chuyển sang thư mục %sKhông thể lấy tên thư mục hiện thờiKhông thể tạo thư mục %sKhông thể map %sKhông thể mở %sKhông thể mở â€œ%s” cho kết xuất.
Không thể mở tập tin xuất trung gian %s
Không thể mở tập tin hồ sÆ¡ %sKhông thể mở tập tin nguồn %s
Không thể Ä‘ọc %skhông thể Ä‘ọc hồ sÆ¡ hàm từ %s.Không thể Ä‘ọc bảng chuỗi từ %s.không thể Ä‘ọc tập hợp làm việc từ %s.Bắt gặp lỗi Ä‘ánh máy.Gây ra chương trình gas in ra thống kê về tomcat.Đổi giá trị trong chuyển Ä‘ổi từ %qs sang %qs tại %LĐổi giá trị trong chuyển Ä‘ổi từ %qs sang %qs tại %LThay Ä‘ổi chỉ 8 bit thấp cá»§a hàm trỏ ngăn xếp.Sá»­a Ä‘ổi ABI Ä‘ể cho phép câu lệnh từ Ä‘ôi.Sá»­a Ä‘ổi khoảng thời gian nhìn trước cá»§a công cụ Ä‘ịnh thờiThay Ä‘ổi chiều dài tối Ä‘a cá»§a dãy Ä‘ược thá»±c hiện có Ä‘iều kiện.Thay Ä‘ổi số các thanh ghi tạm thời còn sẵn sàng cho dãy Ä‘ược thá»±c hiện có Ä‘iều kiện.Thay Ä‘ổi hàm trỏ ngăn xếp mà không tắt tín hiệu ngắt.Chiều dài chuỗi thật vẫn nhỏ hÆ¡n Ä‘iều khai báo cho Ä‘ối số giả â€œ%qs” (%lu/%lu) tại %LKiểm tra tràn stack lúc chạy.Kiểm tra lỗi cú pháp, sau Ä‘ó dừng lại.Kiểm tra giá trị trả về cá»§a new trong C++.Chọn chiến lược Ä‘ể tạo ra thao tác chuỗi dùngĐặc tính Ä‘ã bị xóa bỏ:Khai báo Coarray tại %CKích cỡ mã:
 * small            nhỏ
 * medium        vừa
 * large            lớn.Đẳng sau bộ mô tả P thì yêu cầu một dấu phẩyTạo mã trong chế Ä‘á»™ về cuối lớn.Biên dịch mã cho chế Ä‘á»™ về cuối nhỏ. ÄÃ¢y là mặc Ä‘ịnh.Biên dịch mã nhờ trình bao bọc DLL Cygwin Ä‘ể hỗ trợ chức năng thay thế toán tá»­ C++ mới/xóa.Biên dịch cho con trỏ loại 32-bit.Biên dịch cho con trỏ loại 64-bit.Biên dịch cho ETRAX 100 (CRIS v8).Biên dịch cho ETRAX 4 (CRIS v3).Biên dịch cho ABI loại V8+.Tạo thư viện dùng chungBiên dịch cho m32r.Biên dịch cho m32r2.Biên dịch cho m32x.Biên dịch cho bộ xá»­ lý v850.Biên dịch cho bộ xá»­ lý v850e.Biên dịch cho bộ xá»­ lý v850e1.Biên dịch cho bộ xá»­ lý v850e2.Biên dịch cho bộ xá»­ lý v850e3v3.Biên dịch cho bộ xá»­ lý v850e3v5.Biên dịch cho bộ xá»­ lý v850e và biến thể cá»§a v852el.Thành phần â€œ%qs” tại %C Ä‘ã sẵn Ä‘ược khai báo tại %LThành phần â€œ%qs” tại %C Ä‘ã sẵn trong kiểu cha mẹ %LĐược tính toán GOTO tại %CTên cấu hình.Cấu hình bằng: %s
Làm cho hợp hÆ¡n với cú pháp XLC cá»§a IBM.Làm cho hợp với không gì Ä‘ặc biệt.Làm cho hợp với chuẩn ISO 1990 C như sá»­a Ä‘ổi trong 1994.Làm cho hợp với chuẩn ISO 1990 C với phần mở rộng GNU.Làm cho hợp với chuẩn ISO 1990 C.Làm cho hợp với chuẩn ISO 1998 C++ xem xét lại kỹ thuật năm 2003.Làm cho hợp với chuẩn ISO 1998 C++ xem xét lại Ä‘ính chính kỹ thuật năm 2003.Làm cho hợp với chuẩn ISO 1999 C với phần mở rộng GNU.Làm cho hợp với chuẩn ISO 1999 C.Làm cho hợp với chuẩn ISO 2011 C với phần mở rộng GNU.Làm cho hợp với chuẩn ISO 2011 C++.Làm cho hợp với chuẩn ISO 2011 C++ với phần mở rộng GNU.Làm cho hợp với chuẩn ISO 2011 C++.Làm cho hợp với chuẩn ISO 2014 C++ với phần mở rộng GNU.Làm cho hợp với chuẩn ISO 2014 C++.Làm cho hợp với chuẩn nháp ISO 2017(?) C++ (thá»­ nghiệm và hỗ trợ chưa Ä‘ầy Ä‘á»§).Làm cho hợp với chuẩn nháp ISO 201z(7?) C++ có phần mở rộng GNU (thá»­ nghiệm và hỗ trợ chưa Ä‘ầy Ä‘á»§).Làm cho hợp với tiêu chuẩn ISO Fortran 2003.Làm cho hợp với tiêu chuẩn ISO Fortran 2008 bao gồm TS 29113.Làm cho hợp với tiêu chuẩn ISO Fortran 2008.Làm cho hợp với tiêu chuẩn ISO Fortran 95.Phù hợp với o32 FPXX ABI.Tính là truy cập chậm Ä‘ến vùng nhớ tạm theo byte.Thấy â€œtype” (loại) â€œint” (số nguyên) có chiều rộng 16 bit.Thấy â€œtype” (loại) â€œint” (số nguyên) có chiều rộng 32 bit.Giá trị bất biến có thể Ä‘ặt Ä‘ược thì có phần mặc Ä‘ịnh là near (gần).Tại %C thì yêu cầu biểu thức bất biếnĐiều khiển chế Ä‘á»™ Ä‘ặt bẫy IEEE.Điều khiển chế Ä‘á»™ làm tròn dấu chấm Ä‘á»™ng Ä‘ã tạo ra.Điều khiển Ä‘á»™ chính xác Ä‘ưa ra cho ngoại lệ về dấu chấm Ä‘á»™ng.Chuyển Ä‘ổi từ %qs sang %qs tại %LChuyển Ä‘ổi từ %s sang %s tại %LVào thá»§ tục thì cÅ©ng sao chép các phần mảng vào một khối kề nhau.Bản quyền %s 2014-2016 Tổ chức phần mềm tá»± do.
Giá cần coi Ä‘ối với một câu lệnh nhánh.Giá cần coi cho một câu lệnh nhân lên.Giá cần coi Ä‘ối với câu lệnh gettr.Không thể tạo addis cho sát nhậpKhông thể mở tập tin kết xuất â€œ%s”
Đếm các quan hệ phụ thuộc loại Ä‘ầu cÆ¡ trong khi tính mức Æ°u tiên cá»§a câu lệnh.Con trỏ Cray %qs trong mệnh Ä‘ề %s tại %LTạo á»©ng dụng GUI.Tạo một bản thá»±c hiện không phụ thuộc vào vị trí.Tạo thư viện dùng chung.Tạo á»©ng dụng bàn giao tiếp.Tạo tập tin dữ liệu cần bởi "gcov".Đang tạo â€œ%s”
Đang tạo mảng tạm tại %Lđối tượng DEALLOCATEDECIMAL= tại %C không Ä‘ược phép trong Fortran 95DELIM= tại %C không Ä‘ược phép trong Fortran 95Giá trị bước DO (làm) là số khôngDữ liệu vượt quá ngưỡng này thì Ä‘ể vào phần .ldata trong mô hình trung bình x86-64.Dữ liệu Ä‘ược lưu theo Ä‘ịnh dạng về cuối lớn.Dữ liệu Ä‘ược lưu theo Ä‘ịnh dạng về cuối nhỏ. (Mặc Ä‘ịnh).Đặc tính Ä‘ã bị xóa bỏ:Đã lạc hậu và Ä‘ược thay thế bằng -std=c++11.Đã lạc hậu và Ä‘ược thay thế bằng -std=c++14.Đã lạc hậu và Ä‘ược thay thế bằng -std=c11.Đã lạc hậu và Ä‘ược thay thế bằng -std=c99.Đã lạc hậu và Ä‘ược thay thế bằng -std=gnu++11.Đã lạc hậu và Ä‘ược thay thế bằng -std=gnu++14.Đã lạc hậu và Ä‘ược thay thế bằng -std=gnu11.Đã lạc hậu và Ä‘ược thay thế bằng -std=gnu99.Đã lạc hậu và Ä‘ược thay thế bằng -std=iso9899:1999.Tùy chọn Ä‘ã lạc hậu.  Dùng -misel Ä‘ể thay thế.Tùy chọn Ä‘ã lạc hậu.  Dùng -mno-isel Ä‘ể thay thế.Tùy chọn Ä‘ã lạc hậu.  Dùng -mno-spe Ä‘ể thay thế.Tùy chọn Ä‘ã lạc hậu.  Dùng -mno-vrsave Ä‘ể thay thế.Tùy chọn Ä‘ã lạc hậu.  Dùng -mspe Ä‘ể thay thế.Tùy chọn Ä‘ã lạc hậu.  Dùng -mvrsave Ä‘ể thay thế.Đã lỗi thời. Tùy chọn này không có tác dụng gì.Bị phân Ä‘ối nên hãy sá»­ dụng Ä‘ối số -Os Ä‘ể thay thế.Mô tả cho mxl-mode-bootstrap.Mô tả cho mxl-mode-executable.Mô tả cho mxl-mode-novectors.Mô tả cho mxl-mode-xmdstub.Quyết Ä‘ịnh những quan hệ phụ thuộc nào giữa các câu lệnh thì Ä‘ược thấy có giá cao.Bộ dá»±ng mảng chứa các chiều dài KÝ_Tá»° khác nhau (%ld/%ld)Tắt các thanh ghi dấu chấm Ä‘á»™ng.Tắt tất cả các câu lệnh tùy chọn.Tắt dấu chấm Ä‘á»™ng bằng phần cứng.Tắt chức năng Ä‘ặt Ä‘ịa chỉ loại phụ lục.Tắt khả năng tiền xá»­ lý.Tắt thanh ghi loại sức chứa.Tắt khả năng sá»­ dụng câu lệnh dấu chấm Ä‘á»™ng RX.Không cho phép gọi trá»±c tiếp cho hàm toàn cục.Không cho phép nhiều hÆ¡n â€œmsched-max-memory-insns trong nhóm chỉ lệnh. Không thì giới hạn là â€œmềm” (thích thao tác không phải vùng nhớ hÆ¡n khi tới giới hạn này).Hiển thị thống kê về khoảng thời gian biên dịch.Hiển thị nội dung cá»§a một tập tin lớp theo một Ä‘ịnh dạng cho người Ä‘ọc Ä‘ược.
 
Hiển thị cây mã sau tối Æ°u hóa mặt tiền.Hiển thị cây mã sau khi phân tích cú pháp.Hiển thị cây mã sau phân tích; tùy chọn này Ä‘ã lạc hậu.Hiển thị thông tin về phiên bản cá»§a bộ biên dịch.Hiển thị thông tin này.Chia cho không tại %LChiến lược chia là một cá»§a: call, call2, fp, inv, inv:minlat, inv20u, inv20l, inv:call, inv:call2, inv:fp, call-div1, call-fp, call-table.Đừng coi là một Ä‘oạn TLS lớn.Đừng tắt thanh ghi loại sức chứa.Đừng loại bỏ ghi chú trong sá»± mở rộng vÄ© lệnh.Đừng loại bỏ ghi chú.Đừng xuất chế Ä‘á»™ Ä‘ặt Ä‘ịa chỉ với sá»± gán hiệu á»©ng cạnh.Đừng xuất hằng số nguyên phức tạp vào vùng nhớ chỉ Ä‘ọc.Đừng xuất Ä‘oạn mở/đóng hàm.Đừng Ã©p buộc hạn chế xếp hàng.Đừng tạo ra chỉ thị #line.Đừng tạo ra chỉ thị .size.Đừng sạo ra một Ä‘iểm ra khỏi riêng lẻ cho mỗi hàm.Đừng tạo mã mà nó chỉ chạy Ä‘ược trong chế Ä‘á»™ siêu giám sát (mặc Ä‘ịnh).Đừng tạo ra câu lệnh nạp/lưu với bản cập nhật.Đừng tạo chỉ lệnh mpy cho ARC700.Đừng chèn vào trá»±c tiếp phép chia số nguyên.Đừng chèn vào trá»±c tiếp căn bậc hai.Đừng nạp thanh ghi PIC trong Ä‘oạn mở Ä‘ầu hàm.Không tìm các tập tin Ä‘ối tượng trong Ä‘ường dẫn tiêu chuẩn.Đừng Ä‘ánh dấu cái chuyển ABI trong e_flags.Đừng Ä‘ể vào TOC hằng số dấu chấm Ä‘á»™ng.Đừng Ä‘ể vào TOC hằng số loại ký_hiệu+hiệu_số.Đừng làm ra vẻ là nhánh có giá cao.Đừng cung cấp một Ä‘ịa chỉ bắt Ä‘ầu mặc Ä‘ịnh 0x100 cá»§a chương trình.Đừng hỗ trợ hàm dá»±ng sẵn và chức năng tạo ra mã loại SSE4.1 và SSE4.2.Đừng xá»­ lý giá trị cục bộ hoặc khối CHUNG như là nó Ä‘ược Ä‘ặt tên trong câu lệnh LƯU.Đừng Ä‘iều chỉnh sá»± xếp hàng mã và dữ liệu chỉ-đọc.Đừng Ä‘iều chỉnh sá»± xếp hàng ngăn xếp.Đừng Ä‘iều chỉnh sá»± xếp hàng dữ liệu có thể ghi Ä‘ược.Đừng sá»­ dụng câu lệnh MDMX.Đừng sá»­ dụng câu lệnh MIPS-3D.Đừng sá»­ dụng dấu chấm Ä‘á»™ng loại VAX.Đừng sá»­ dụng một hàm chuyển hết vùng nhớ tạm ra ngoài trước khi gọi trampoline stack.Đừng sá»­ dụng Ä‘ịa chỉ mà cấp phát thanh ghi toàn cục.Đừng sá»­ dụng mã Ä‘iều kiện từ câu lệnh thông thường.Đừng sá»­ dụng dấu chấm Ä‘á»™ng bằng phần cứng.Đừng sá»­ dụng dấu chấm Ä‘á»™ng loại phần cứng.Đừng sá»­ dụng dấu chấm Ä‘á»™ng bằng phần cứng.Đừng sá»­ dụng câu lệnh loại bốn dấu chấm Ä‘á»™ng phần cứng.Đừng sá»­ dụng mẫu Ä‘ược chèn vào trá»±c tiếp Ä‘ể sao chép vùng nhớ.Không dùng lệnh mở rộng AltiVec ABI.Không dùng lệnh mở rộng SPE ABI.Đừng sá»­ dụng câu lệnh loại trường-bit.Đừng sá»­ dụng chỉ lệnh callt (mặc Ä‘ịnh).Đừng sá»­ dụng chỉ lệnh tùy chỉnh fabsd.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fabss.Đừng sá»­ dụng chỉ lệnh tùy chỉnh faddd.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fadds.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fatand.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fatans.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fcmpeqd.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fcmpeqs.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fcmpged.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fcmpges.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fcmpgtd.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fcmpgts.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fcmpled.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fcmples.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fcmpltd.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fcmplts.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fcmpned.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fcmpnes.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fcosd.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fcoss.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fdivd.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fdivs.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fexpd.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fexps.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fextsd.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fixdi.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fixdu.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fixsi.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fixsu.Đừng sá»­ dụng chỉ lệnh tùy chỉnh floatid.Đừng sá»­ dụng chỉ lệnh tùy chỉnh floatis.Đừng sá»­ dụng chỉ lệnh tùy chỉnh floatud.Đừng sá»­ dụng chỉ lệnh tùy chỉnh floatus.Đừng sá»­ dụng chỉ lệnh tùy chỉnh flogd.Đừng sá»­ dụng chỉ lệnh tùy chỉnh flogs.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fmaxd.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fmaxs.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fmind.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fmins.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fmuld.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fmuls.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fnegd.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fnegs.Đừng sá»­ dụng chỉ lệnh tùy chỉnh frdxhi.Đừng sá»­ dụng chỉ lệnh tùy chỉnh frdxlo.Đừng sá»­ dụng chỉ lệnh tùy chỉnh frdy.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fsind.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fsins.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fsqrtd.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fsqrts.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fsubd.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fsubs.Đừng sá»­ dụng chỉ lệnh tùy chỉnh ftand.Đừng sá»­ dụng chỉ lệnh tùy chỉnh ftans.Đừng sá»­ dụng chỉ lệnh tùy chỉnh ftruncds.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fwrx.Đừng sá»­ dụng chỉ lệnh tùy chỉnh fwry.Đừng sá»­ dụng chỉ lệnh tùy chỉnh round.Đừng sá»­ dụng tham chiếu vùng nhớ tạm chưa xếp hàng.Bật -pedantic thì Ä‘ừng cảnh báo về sá»­ dụng â€œlong long”.Kiểm tra ngăn xếp dùng biên giới trong vùng nhớ nháp cấp 1.Không làm gì. Dành cho mục Ä‘ích tương thích ngược.Không làm gì. Giữ lại vì mục Ä‘ích tương thích ngược.Đừng xếp hàng các mục trong mã hoặc dữ liệu.Đừng gọi hàm nào chuyển hết vùng nhớ tạm ra ngoài.Đừng gọi bẫy nào chuyển hết vùng nhớ tạm ra ngoài.Đừng tạo một bản thá»±c hiện không phụ thuộc vào vị trí.Đừng tạo ra hàm kiểm tra Ä‘ối với Ä‘ầu cÆ¡ về Ä‘iều khiển khi Ä‘ịnh thời một cách lá»±a chọn.Đừng tạo ra mã chỉ có chế Ä‘á»™ quyền Ä‘ặc biệt; cÅ©ng ngụ Ã½ -mno-inline-ic_invalidate nếu mã trá»±c tiếp không có tác Ä‘á»™ng trong chế Ä‘á»™ người dùngĐừng tối Æ°u hóa sá»± di chuyển khối, dùng memcpy.Đừng tối Æ°u hóa sá»± di chuyển khối.Sá»­ dụng gợi-nhớ-P cho nhánh.Đừng dùng bất kỳ r32..r63 nào.Không cảnh báo dùng lệnh mở rộng Microsoft.Đơn vị dấu chấm Ä‘á»™ng chính xác Ä‘ôi.Đang Ä‘iều khiển:Trùng thuộc tính %s tại %LTrùng Ä‘ặc tả %s tại %CTrùng DEFERRED tại %CTrùng nhãn cấu trúc %qs tại %CTrùng ký hiệu %qs trong danh sách Ä‘ối số hình thức tại %CCấp phát Ä‘á»™ng các thanh ghi CC.Dùng bộ mô tả g0 thì không cho phép bộ ghi rõ EE500 và FPRs không Ä‘ược hỗ trợENCODING= tại %C không Ä‘ược phép trong Fortran 95câu lệnh ENTRY tại %CENUM và ENUMERATOR tại %CERRMSG tại %LERRMSG tag tại %LBiến ERRMSGKiến trúc ESA/390.EXTENDS tại %LXuất vào vùng dữ liệu nhỏ sá»± Ä‘ịnh vị lại 16-bit.Xuất vào vùng dữ liệu nhỏ sá»± Ä‘ịnh vị lại 32-bit.Xuất mã thích hợp với IEEE mà không có ngoại lệ không chính xác.Xuất thông tin về Ä‘ồ thị gọi.Xuất mẫu cmpeqdi_t pattern ngay cả khi tùy chọn -mcbranchdi vẫn hoạt Ä‘á»™ng.Xuất mã cho phần mở rộng ISA byte/từ.Xuất mã cho phần mở rộng ISA Ä‘ếm.Xuất mã cho phần mở rộng ISA dấu chấm Ä‘á»™ng về di chuyển và tính căn bậc hai.Xuất mã cho phần mở rộng ISA áº£nh Ä‘á»™ng di chuyển.Xuất mã dùng chỉ thị Ä‘ịnh vị lại dứt khoát.Xuất nhánh trá»±c tiếp tới hàm cục bộ.Xuất lỗi khi tạo ra sá»± Ä‘ịnh vị lại vào lúc chạy.Xuất mã bổ sung trong Ä‘oạn mở Ä‘ầu hàm Ä‘ể Ä‘ặt bẫy nếu kích cỡ ngăn xếp vượt quá giới hạn Ä‘ưa ra.Xuất cuộc gọi hàm dùng bảng hiệu số toàn cục khi tạo ra PIC.Xuất nhánh gián tiếp tới hàm cục bộ.Xuất dãy nạp/lưu dàiĐối với con trỏ tuyến trình thì xuất rdval thay cho rduniq.Xuất bit dừng lại Ä‘ẳng trước và sau asm mở rộng hay thay Ä‘ổi.Xuất nhiều thông tin gỡ rối trong mã dịch mã số.Cảnh báo khi tạo ra sá»± Ä‘ịnh vị lại vào lúc chạy.FINAL trống rỗng tại %CBật câu lệnh chia loại 32-bit.Bật câu lệnh nhân lên loại 32-bit.Bật Cilk Plus.Bật DIV, DIVU.Bật thông tin gỡ rối dòng Dwarf 2 thông qua as cá»§a GNU.Bật chế Ä‘á»™ PIC Mô tả Hàm.Bật thư viện dùng chung dá»±a vào mã số (ID).Bật chức năng Ä‘ịnh thời IVC2.Bật các chỉ lệnh MUL.Bật các chỉ lệnh MUL.X và UMUL.X.Bật các chỉ lệnh MULX, coi là dịch nhanh hÆ¡n.Bật bộ Ä‘ồng xá»­ lý MeP với thanh ghi 32-bit.Bật bộ Ä‘ồng xá»­ lý MeP với thanh ghi 64-bit.Bật bộ Ä‘ồng xá»­ lý MeP.Bật OpenACC.Bật chỉ thị OpenMP's SIMD.Bật sá»± hỗ trợ PIC Ä‘ể biên dịch thư viện.Bật khắc phục cut2 SH5.Bật mã tìm Ä‘ường TFP-OS.Bật câu lệnh khác biệt tuyệt Ä‘ối.Bật sá»± xếp hàng các khối CHUNG.Bật tất cả cảnh báo -Wunused-.Bật tất cả các câu lệnh tùy chọn.Bật chức năng bảo vệ hàm dá»±ng sẵn asan.Bật dò tìm asan cá»§a lỗi dùng-sau-khi-trả-về.Bật chức năng bảo vệ toàn cục asan.Bật chức năng bảo vệ thao tác tải asan.Bật chức năng bảo vệ ngăn xếp asan.Bật chức năng bảo vệ thao tác lưu trữ asan.Bật sá»± kiểm tra khả năng sá»± gán cho việc lưu vào mảng Ä‘ối tượng.Bật các câu lệnh tính số trung bình.Bật chức năng gỡ rối hậu phương.Bật câu lệnh barrel shift.Bật các câu lệnh thao tác bit.Bật mẫu cbranchdi4.Bật các câu lệnh trích Ä‘oạn.Bật sá»± thá»±c hiện có Ä‘iều kiện mà khác với moves/scc.Bật sá»± di chuyển có Ä‘iều kiện.Bật tính năng cấu/há»§y tá»­Bật kết xuất gỡ rối.Bật việc hỗ trợ phần cứng dấu chấm Ä‘á»™ng thập phân.Bật câu lệnh chia và câu lệnh lấy số dư.Bật sá»± Ä‘ể sớm hÆ¡n các bit dừng lại, Ä‘ể Ä‘ịnh thời một cách thành công hÆ¡n.Bật tiếp nhận ngoại lệ.Cho phép tối Æ°u hóa từ chương trình gọi.Bật tạo lệnh R2 BMX.Bật tạo lệnh R2 CDX.Bật dấu chấm Ä‘á»™ng loại phần cứng.Bật sá»± chèn trá»±c tiếp PLT vào cuộc gọi hàm.Bật sá»± tối Æ°u hóa cách xếp hàng nhãn.Bật câu lệnh có số không Ä‘i trước.Bật số tối Æ°u hóa bộ liên kết.Bật chức năng làm yếu bộ liên kết.Bật hàm yếu về bộ liên kết.Bật làm yếu bộ liên kết.Bật IraBật câu lệnh tính số tối Ä‘a/thiểu.Bật phần lớn các thông Ä‘iệp cảnh báo.Bật khả năng hỗ trợ Ä‘a lõi.Bật câu lệnh nhân.Bật sá»± tối Æ°u hóa quá trình thá»±c hiện có Ä‘iều kiện mà cÅ©ng lồng nhau.Bật sá»± tối Æ°u hóa mã khởi tạo lớp tÄ©nh.Bật sá»± tối Æ°u hóa &&/|| trong quá trình thá»±c hiện có Ä‘iều kiện.Bật khả năng tiền xá»­ lý.Bật chức năng kiểm tra phạm vi trong khi biên dịch.Bật câu lệnh Ä‘ặt trạng thái bão hòa.Bật ngăn cách Ä‘oạn dữ liệu.Bật chức năng Ä‘ặt GPR thành kết quả cá»§a phép so sánh.Bật câu lệnh mở rộng ký hiệu.Bật chức năng dò ngăn xếp.Bật chức năng kiểm tra trả lại cấu trúc psABI 32-bit ngặtBật sá»± hỗ trợ cho khái niệm C++.Bật hỗ trợ cho RH850 ABI.  ÄÃ¢y là mặc Ä‘ịnh.Bật sá»± tối Æ°u hóa vòng lặp lồng nhau.Bật chế Ä‘á»™ thông thường.Bật sá»­ dụng thay ghi dấu chấm Ä‘á»™ng 64-bit trong câu lệnh fmov. Xem -mdalign nếu cÅ©ng yêu cầu xếp hàng theo 64-bit.Bật khả năng sá»­ dụng câu lệnh dấu chấm Ä‘á»™ng RX. ÄÃ¢y là cài Ä‘ặt mặc Ä‘ịnh.Bật sá»­ dụng tải chỉ mục.Bật sá»­ dụng câu lệnh fsca.Bật sá»­ dụng câu lệnh fsrra.Bật sá»­ dụng chế Ä‘á»™ Ä‘ặt Ä‘ịa chỉ loại phụ lục cho SHmedia32/SHcompact.Bật sá»­ dụng câu lệnh nạp ngắn.Bật tiền xá»­ lý theo kiểu cổ Ä‘iển.Bật sá»­ dụng GPREL cho dữ liệu chỉ Ä‘ọc trong FDPIC.Cho phép sá»­ dụng POST_INC / POST_DEC.Cho phép sá»­ dụng POST_MODIFY.Bật sá»­ dụng sdata/scommon/sbss.Bật câu lệnh Ä‘ược người dùng xác Ä‘ịnh.Cho phép các chỉ lệnh lặp v850e3v5.Bật kết xuất chi tiết.Bật/Tắt Ä‘ánh Ä‘ịa chỉ tương Ä‘ối GP.Bật/tắt sá»­ dụng câu lệnh dấu chấm Ä‘á»™ng thập phân 128-bit IEEE.Bật thư viện dùng chung dá»±a vào mã số (ID).Mã hóa câu lệnh SSE với tiền tố VEX.Biểu thức kết thúc trong vòng lặp DO (làm)Kết thúc danh sách tìm kiếm.
Tương Ä‘ương với -mgpopt=local.Tương Ä‘ương với -mgpopt=none.LỗiGặp lỗi khi chuyển Ä‘ổi số nguyênLỗi trong khởi tạo con trỏ tại %CSai trong type-spec tại %LGặp lỗi khi ghi tập tin môt-đun: %sLỗi khi ghi tập tin kết xuất â€œ%s”
Dữ kiệnThoát khi gặp lỗi lần Ä‘ầu.Cần ")" tại %CCần "," tại %CCần %<(%> tại %Ccần %<)%> hoặc %<,%> tại %CCần %<,%> tại %Ccần %<,%> hoặc kết thúc câu lệnh tại %CCần %<::%> tại %CCần %<=>%> tại %CCần %<END INTERFACE ASSIGNMENT (=)%> tại %CCần :: trong Ä‘ịnh nghÄ©a KIỂU tại %CCần vòng lặp DO tại %Ccần bộ mô tả chỉnh sá»­a PCần một giao diện không tên tại %CCần một thá»§ tục cho Ä‘ối số %qs tại %LCần một con trỏ thá»§ tục cho Ä‘ối số %qs tại %LCần access-specifier tại %CCần danh sách Ä‘ối số tại %CCần chỉ số mảng tại %CCần kết hợp tại %CCần danh sách kết hợp tại %CMong Ä‘ợi một tên bit thuộc tínhCần thuộc tính ràng buộc tại %CCần tên ràng buộc tại %CCần tham chiếu thành phần tại %CMong Ä‘ợi một loại biểu thứcMong Ä‘ợi một số nguyênMong Ä‘ợi một chuỗi số nguyênMong Ä‘ợi một dấu ngoặc Ä‘Æ¡n mởMong Ä‘ợi một tênMong Ä‘ợi một chuỗi thậtMong Ä‘ợi một dấu ngoặc Ä‘Æ¡n Ä‘óngMong Ä‘ợi một chuỗiCần tên chấm dứt tại %CCần tên biến tại %CCần %<END INTERFACE %s%> tại %CCần %<END INTERFACE OPERATOR (%s)%> tại %C, Cần %<END INTERFACE OPERATOR (%s)%> tại %C, nhưng lại nhận Ä‘ược %sCần %<END INTERFACE OPERATOR (.%s.)%> tại %CCần %s tại %CCần câu lệnh %s tại %LXuất hàm ngay cả khi chúng có thể chung dòng.Biểu thức tại %L phải thuộc kiểu scalarcâu lệnh FLUSH tại %CĐã bật ngoại lệ dấu chấm Ä‘á»™ng.Cảnh báo khi mọi bộ cấu trúc và bộ há»§y cấu trúc Ä‘ều là riêngLỗi nghiêm trọngĐặc tính Ä‘ã bị xóa bỏ:Sá»­a tính toán min_intĐơn vị dấu chấm Ä‘á»™ng không hỗ trợ phép chia và phép tính căn bậc hai.Theo quy Æ°á»›c gọi SuperH / Renesas (còn gọi là Hitachi)Tùy theo các yêu cầu cá»§a sá»± liên kết EABI.Để tìm hướng dẫn về thông báo lỗi, hãy xem:
%s.
Cho thư viện các bản thá»±c chất: gá»­i mọi tham số qua thanh ghi.Gán quyền thá»±c hiện cho hàm lồng nhau trên ngăn xếp.Buộc hợp ngữ luôn xuất sá»­ dụng hằng dạng thập lục.Ép buộc các hàm Ä‘ược xếp hàng theo một biên giới 4-byte.Các Ä‘ặc tính Ä‘ã cÅ© cá»§a Fortran 2008:Hàm %qs Ä‘ược khởi tạo giống như là một biểu thức %LHàm %qs tại %L không thể có bộ khởi tạoHàm %qs tại %L phải là PUREHàm %qs cần một danh sách Ä‘ối số tại %CĐầu hàng Ä‘ược xếp hàng theo lÅ©y thừa 2 này.GCSE bị tắtGENERIC ràng buộc tại %CGMP phiên bản %s, MPFR phiên bản %s, MPC phiên bản %s, isl phiên bản %s
C cá»§a GNU không còn hỗ trợ -traditional mà không có -EPhần mở rộng GNU:Objective C cá»§a GNU không còn hỗ trợ chức năng biên dịch truyền thốngTạo ra câu lệnh 16-bit.Tạo ra mã i386 16-bit.Tạo ra mã SHmedia 32-bit không có FPU.Tạo ra mã SHmedia 32-bit.Tạo ra mã 32-bit.Tạo ra hiệu số 32-bit trong bảng cái chuyển.Tạo ra mã i386 32-bit.Tạo ra mã x86-64 32-bit.Tạo ra mã SHmedia 64-bit không có FPU.Tạo ra mã SHmedia 64-bit.Tạo ra mã 64-bit.Tạo ra mã x86-64 64-bit.Tạo ra các khung ngăn xếp làm hợp với APCS.Tạo ra câu lệnh VRSAVE khi tạo ra mã AltiVecTạo ra mã trong chế Ä‘á»™ về cuối nhỏ.Tạo ra mã vi Cell.Tạo ra mã ELF FDPIC.Tạo ra mã SHcompact không có FPU.Tạo ra mã chính xác Ä‘ôi GFLOAT.Tạo ra mã H8/300H.Tạo ra mã H8S.Tạo ra mã H8S/2600.Tạo ra mã H8SX.Tạo ra mã ILP32.Tạo ra mã LP64.Tạo ra mã MIPS16.Tạo ra mã PA1.0.Tạo ra mã PA1.1.Tạo ra mã PA2.0 (yêu cầu binutils 2.10 hay sau).Tạo ra câu lệnh Ä‘ôi-đơn PPC750CL.Tạo chỉ lệnh SBIT, CBIT.Tạo ra mã SH1.Tạo ra mã SH2.Tạo ra mã SH2a không có FPU.Tạo ra mã SH2e.Tạo ra mã SH3.Tạo ra mã SH3e.Tạo ra mã SH4 không có FPU.Tạo ra mã SH4.Tạo ra mã SH4-100 không có FPU.Tạo ra mã SH4-100.Tạo ra mã SH4-200 không có FPU.Tạo ra mã SH4-200.Tạo ra mã SH4-300 không có FPU.Tạo ra mã SH4-300.Tạo ra mã SH4a không có FPU.Tạo ra mã SH4a.Tạo ra mã SH4al-dsp.Tạo ra mã SHcompact.Tạo ra câu lệnh SIMD SPE trong E500.Tạo ra câu lệnh VRSAVE khi tạo ra mã AltiVec.Tạo ra một cuộc gọi nên há»§y bỏ nếu một hàm không trả lại còn trả lại.Tạo ra một Ä‘iểm ra khỏi riêng lẻ cho mỗi hàm.Tạo ra câu lệnh auto-inc/dec.Tạo ra mã về cuối lớn.Tạo ra mã về cuối lớn big-endian.Tạo ra câu lệnh bit.Đối với nhánh thì tạo ra lời gợi Ã½ nhánh.Tạo ra câu lệnh gọi dưới dạng cuộc gọi trá»±c tiếp.Tạo ra câu lệnh gọi dưới dạng cuộc gọi gián tiếp, nếu cần thiết.Tạo ra câu lệnh gọi dưới dạng cuộc gọi gián tiếp.Kiểm tra chung cho mọi truy cập Ä‘ọc vào bộ nhớ.Kiểm tra chung cho mọi truy cập ghi vào bộ nhớ.Tạo ra sá»± kiểm tra có tham chiếu Ä‘ến NULL (vô giá trị).Tạo ra câu lệnh cld trong Ä‘oạn mở Ä‘ầu hàm.Tạo ra mã Ä‘ể Ä‘ặt Ä‘ịa chỉ 18 bit.Tạo ra mã Ä‘ể Ä‘ặt Ä‘ịa chỉ 32 bit.Tạo mã cho kiến trúc CR16C.Tạo mã cho kiến trúc CR16C+ (mặc Ä‘ịnh).Tạo ra mã cho as cá»§a GNU.Tạo ra mã cho bộ dịch mã số GNU assembler (gas).Tạo ra mã cho ld cá»§a GNU.Tạo ra mã môi trường thá»±c thi GNU.Tạo ra mã cho loạt SH4 340 (không có MMU/FPU).Tạo ra mã cho loạt SH4 400 (không có MMU/FPU).Tạo ra mã cho loạt SH4 500 (không có MMU/FPU).Tạo ra mã cho trạng thái Thumb.Tạo ra mã cho bộ dịch mã số UNIX assembler.Tạo ra mã cho một ABI 32 bít.Tạo ra mã cho một 5206e.Tạo ra mã cho một 520X.Tạo ra mã cho một 528xTạo ra mã cho một 5307.Tạo ra mã cho một 5407.Tạo ra mã cho một ABI 64 bít.Tạo ra mã cho một 68000.Tạo ra mã cho một 68010.Tạo ra mã cho một 68020.Tạo ra mã cho một 68030.Tạo ra mã cho một 68040 mà không có câu lệnh mới nào.Tạo ra mã cho một 68040.Tạo ra mã cho một 68060 mà không có câu lệnh mới nào.Tạo ra mã cho một 68060.Tạo ra mã cho một 68302.Tạo ra mã cho một 68332.Tạo ra mã cho một 68851.Tạo ra mã cho một ColdFire v4e.Tạo ra mã cho một DLL.Tạo ra mã cho một Fido A.Tạo ra mã cho một cpu32.Tạo ra mã cho một 11/10.Tạo ra mã cho một 11/40.Tạo ra mã cho một 11/45.Tạo ra mã cho các thao tác atomic dá»±ng sẵn.Tạo ra mã cho phần mở rộng hạt nhân có thể nạp Ä‘ược với Darwin.Xuất hàm ngay cả khi chúng có thể chung dòng.Tạo ra mã cho CPU Ä‘ưa ra.Tạo ra mã cho BSS PLT thá»±c hiện cÅ©.Xuất mã cho hàm tÄ©nh ngay cả khi chúng không bao giờ Ä‘ược gọi.Tạo ra mã cho Nền tảng Android.Tạo ra mã cho Boehm GC.Tạo ra mã cho M*Core M210Tạo ra mã cho M*Core M340Tạo ra mã cho hạt nhân hoặc phần mở rộng hạt nhân có thể nạp Ä‘ược.Tạo mã cho chế Ä‘á»™ siêu giám sát (mặc Ä‘ịnh).Tạo ra mã cho chế Ä‘á»™ người dùng.Tạo ra mã cho ARM 32 bit.Tạo mã trong chế Ä‘á»™ về cuối lớn.Tạo mã trong chế Ä‘á»™ về cuối lớn.Tạo ra mã trong chế Ä‘á»™ về cuối nhỏ.Tạo ra mã trong chế Ä‘á»™ về cuối nhỏ.Tạo ra mã thích hợp với bản thá»±c thị (KHÔNG PHẢI thư viện dùng chung).Tạo ra mã thích hợp với chức năng gỡ rối trả kết quả nhanh.Tạo ra mã có thể sá»­ dụng Ä‘ược trong Ä‘ối tượng năng Ä‘á»™ng có kiểu SVR4.Tạo ra mã thích hợp vớiIntel MCU psABI.Tạo ra mã thích hợp với ABI Ä‘ưa ra.Tạo ra mã sá»­ dụng chỉ lệnh dấu chấm Ä‘á»™ng 68881.Tạo ra mã sẽ không Ä‘ược liên kết Ä‘ối với thư viện dùng chung mã số khác nào,Tạo ra mã Ä‘ể sá»­ dụng một PLT và GOT không thá»±c hiện.Tạo ra mã mả sá»­ dụng câu lệnh dấu chấm Ä‘á»™ng phần cứng.Tạo ra mã mả sá»­ dụng câu lệnh dấu chấm Ä‘á»™ng phần cứngTạo ra mã chứa cuộc gọi thư viện cho dấu chấm Ä‘á»™ng.Tạo ra mã không có GP reg.Tạo chỉ lệnh di chuyển Ä‘iều kiệnTạo ra các lời xác Ä‘ịnh cpp cho V/R máy phục vụ.Tạo ra các lời xác Ä‘ịnh cpp cho V/R máy trạm.Tạo ra mã SH2a-FPU chính xác Ä‘ôi mặc Ä‘ịnh.Tạo ra mã SH2a-FPU chính xác Ä‘Æ¡n mặc Ä‘ịnh.Tạo ra mã SH4 chính xác Ä‘Æ¡n mặc Ä‘ịnh.Tạo ra mã SH4-100 chính xác Ä‘Æ¡n mặc Ä‘ịnh.Tạo ra mã SH4-200 chính xác Ä‘Æ¡n mặc Ä‘ịnh.Tạo ra mã SH4-300 chính xác Ä‘Æ¡n mặc Ä‘ịnh.Tạo ra mã SH4a chính xác Ä‘Æ¡n mặc Ä‘ịnh.Tạo ra các khung ngăn xếp không liên tiếp.Tạo ra kết quả chia có phần dư với cùng một ký hiệu (-/+) với số chia (không phải với số bị chia).Tạo ra các cuộc gọi gián tiếp nhanh.Tạo ra tính toán dùng dấu chấm Ä‘á»™ng dùng tập hợp câu lệnh Ä‘ưa ra.Tạo ra phép chia dấu chấm Ä‘á»™ng trá»±c tiếp, tối Æ°u hóa cho sá»± ngấm ngầmTạo ra phép chia dấu chấm Ä‘á»™ng trá»±c tiếp, tối Æ°u hóa cho tốc Ä‘á»™ truyền dữ liệuTạo ra phép chia số nguyên trá»±c tiếp, tối Æ°u hóa cho sá»± ngấm ngầmTạo ra phép chia số nguyên trá»±c tiếp, tối Æ°u hóa cho tốc Ä‘á»™ truyền dữ liệuTạo ra căn bậc hai trá»±c tiếp, tối Æ°u cho sá»± ngấm ngầm.Tạo ra căn bậc hai trá»±c tiếp, tối Æ°u cho tốc Ä‘á»™ truyền dữ liệu.Lúc chạy thì tạo ra các thể hiện Hạng.Bật các chỉ lệnh hỗ trợ bởi dịch barrel.Tạo ra câu lệnh isel.Tạo ra mã về cuối nhỏ.Tạo ra mã về cuối nhỏ little-endian.Tạo ra câu lệnh Ä‘a nạp/lưu.Tạo ra câu lệnh nạp/lưu với bản cập nhật.Tạo ra quan hệ phụ thuộc cá»§a make, và biên dịch.Tạo ra quan hệ phụ thuộc cá»§a make.Tạo ra câu lệnh mul64 và mulu64.Tạo ra câu lệnh norm.Tạo ra mã có chế Ä‘á»™ thông thường.Tạo ra chỉ mã SH2a-FPU chính xác Ä‘Æ¡n.Tạo ra chỉ mã SH4 chính xác Ä‘Æ¡n.Tạo ra chỉ mã SH4-100 chính xác Ä‘Æ¡n.Tạo ra chỉ mã SH4-200 chính xác Ä‘Æ¡n.Tạo ra chỉ mã SH4-300 chính xác Ä‘Æ¡n.Tạo ra chỉ mã SH4a chính xác Ä‘Æ¡n.Tạo ra mã tương Ä‘ối với PC (pc-relative).Tạo chỉ lệnh năng suất mở rộng.Tạo ra Ä‘ích giả cho mọi phần Ä‘ầu.Tạo ra mã PIC loại vào lạiTạo ra số Ä‘ảo thay cho divss và sqrtss.Tạo ra mã có thể tá»± Ä‘ịnh vị lại.Tạo ra sin, cos, sqrt cho FPU (đơn vị dấu chấm Ä‘á»™ng).Tạo ra câu lệnh chuỗi Ä‘ể di chuyển khối.Tạo ra câu lệnh swap.Tạo ra câu lệnh push25/pop25 v3.Điều Ä‘ược tạo ra thì nên Ä‘ược nạp bởi bộ nạp và khởi Ä‘á»™ng.Gán cho mỗi nhánh giá mặc Ä‘ịnh cá»§a nó.hằng Hollerith tại %CĐộ tăng lên (theo phần trăm) Ä‘ược phép cho Ä‘Æ¡n vị biên dịch Ä‘ưa ra do việc chèn vào trá»±c tiếp.Độ tăng lên (theo phần trăm) Ä‘ược phép cho Ä‘Æ¡n vị biên dịch Ä‘ưa ra do sá»± lan truyền bất biến thuộc liên quá trình.mã số (ID) cá»§a thư viện dùng chung cần biên dịch.câu lệnh IMPORT tại %Cthá»§ tục IMPURE tại %CIOMSG tag tại %LISO C không cho phép %<%E (biểu thức)%>ISO C không hỗ trợ %<#pragma STDC FLOAT_CONST_DECIMAL64%>ISO C không hỗ trợ kiểu %<__int%d%>ISO C không hỗ trợ kiểu dấu chấm Ä‘á»™ng hệ thập phânISO C không hỗ trợ kiểu dấu chấm cố Ä‘ịnhISO C không hỗ trợ kiểu saturatingISO C cấm %<goto *expr;%>ISO C cấm chỉ Ã¡p kiểu thành kiểu hỗn hợpISO C cấm chỉ việc so sánh cá»§a %<void *%> với con trỏ hàmISO C cấm chỉ biểu thức Ä‘iều kiện giữa %<void *%> với con trỏ hàmISO C cấm hàm lồng nhauISO C cấm chỉ mảng có Ä‘á»™ dài là khôngISO C cấm chỉ mảng có Ä‘á»™ dài là không %qEISO C++ không cho phép %<alignof%> với một non-typeISO C++ không cho phép ?: với toán hạng á»Ÿ giữa bị bỏ quaISO C++ không cho phép %<%T::%D%> Ä‘ược Ä‘ịnh nghÄ©a như là %<%T::%D%>ISO C++ không cho phép %<alignof%> Ã¡p dụng cho kiểu hàmISO C++ không hỗ trợ %<__int%d%> cho %qsISO C++ cấm gọi %<::main%> từ bên trong chương trìnhISO C++ cấm việc Ã¡p Ä‘ổi kiểu cá»§a mảng %qTISO C++ cấm compound-literalsISO C++ cấm tính toán gotosISO C++ cấm chuyển Ä‘ổi hằng chuỗi thành %qTISO C++ cấm kiểu liệt kê nặc danh trống rỗngISO C++ cấm biến có kích thước biến Ä‘ổiISO C++ cấm biến có kích thước biến Ä‘ổi %qDISO C++ cấm mảng có kích thước bằng khôngISO C++ cấm mảng có kích thước bằng không %qDISO C90 không hỗ trợ %<_Alignas%>ISO C90 không hỗ trợ %<_Generic%>ISO C90 không hỗ trợ %<_Noreturn%>ISO C90 không hỗ trợ %<_Static_assert%>ISO C90 không hỗ trợ từ hạn Ä‘ịnh %<_Atomic%>ISO C90 không hỗ trợ %<long long%>ISO C90 không hỗ trợ %qEISO C90 không hỗ trợ kiểu lô-gícISO C90 không hỗ trợ kiểu complexISO C90 không hỗ trợ thành viên mảng linh Ä‘á»™ngISO C90 không hỗ trợ từ hạn Ä‘ịnh %<_Atomic%>ISO C90 cấm mảng có kích thước biến Ä‘ổiISO C90 cấm mảng có kích thước biến Ä‘ổi %qEISO C99 không hỗ trợ %<_Alignas%>ISO C99 không hỗ trợ %<_Generic%>ISO C99 không hỗ trợ %<_Noreturn%>ISO C99 không hỗ trợ %<_Static_assert%>ISO C99 không hỗ trợ %qEISO C99 không hỗ trợ từ hạn Ä‘ịnh %<_Atomic%>mô Ä‘un ISO_C_BINDING tại %CDùng -ftree-vectorize thì biên giới vòng lặp tối thiểu cá»§a một vòng lặp cần tính Ä‘ể véc-tÆ¡ hóa.Dùng -fvariable-expansion-in-unroller thì số tối Ä‘a các lần mở rộng một biến nào Ä‘ó trong khi bỏ cuộn vòng lặp.Nếu số lượng á»©ng cá»­ trong một tập hợp nhỏ hÆ¡n, chúng tôi luôn thá»­ gỡ bỏ iv chưa dùng nào trong khi tối Æ°u hóa nó.Bỏ qu chữ â€œD” trong cột Ä‘ầu tiên trong thể dạng cố Ä‘ịnh.Bỏ qua dllimport Ä‘ối với chức năng.Bị bỏ qua.Chỉ thị tiền xá»­ lý không hợp lệTrong cấu tá»­ %qsTrong cấu tá»­ bản sao %qsTrong bộ há»§y %qsTrong hàm %qsTrong hàm Î»Trong hàm bộ phận %qsTrong hàm bộ phận tÄ©nh %qsThư mục bao gồm %qs: %sVùng không tương thích nhau trong %s (%d và %d) tại %LĐặc tả kiểu không tương thích cho phần tá»­ mảng tại %LTại %%L và %%L có một toán tá»­ với các phân hàng mâu thuẫn nhauGiá trị trả lại hàm không Ä‘úngSá»­ dụng toán học IEEE cho phép so sánh dấu chấm Ä‘á»™ng.Ngăn cản sá»­ dụng câu lệnh nào có loại dấu chấm Ä‘á»™ng phần cứng.Khởi tạo các biến cục bộ thành số không (từ g77).Chèn vào trá»±c tiếp tất cả các thao tác chuỗi Ä‘ược biết.Chèn hằng số vào trá»±c tiếp nếu có thể làm trong nhiều nhất 2 câu lệnh.Chèn vào trá»±c tiếp các thao tác chuỗi loại memset/memcpy, mà thá»±c hiện phiên bản trá»±c tiếp chỉ cho khối nhỏ.Chèn vào trá»±c tiếp một cách Ä‘ệ quy chỉ khi xác xuất cuộc gọi Ä‘ược thá»±c hiện cÅ©ng vượt quá tham số.Tập tin nhập vào là một tập tin chứa danh sách các tên tập tin cần biên dịch.Chèn câu lệnh hbrp Ä‘ẳng sau Ä‘ích nhánh Ä‘ã gợi Ã½ Ä‘ể tránh vấn Ä‘ề SPU Ä‘ang treo cứng.Chèn nops khi có thể tăng hiệu suất bằng cách cho phép Ä‘ưa ra Ä‘ôi (mặc Ä‘ịnh).Chèn mã kiểm tra ngăn xếp vào chương trình. Giống với -fstack-check=specific.Tại %C thì yêu cầu biểu thức số nguyênId (N) nguyên cá»§a chỉ lệnh tùy chỉnh fabsd.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fabss.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh faddd.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fadds.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fatand.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fatans.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fcmpeqd.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fcmpeqs.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fcmpged.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fcmpges.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fcmpgtd.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fcmpgts.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fcmpled.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fcmples.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fcmpltd.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fcmplts.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fcmpned.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fcmpnes.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fcosd.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fcoss.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fdivd.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fdivs.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fexpd.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fexps.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fextsd.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fixdi.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fixdu.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fixsi.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fixdu.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh floatid.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh floatis.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh floatud.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh floatus.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh flogd.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh flogs.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fmaxd.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fmaxs.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fmind.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fmins.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fmuld.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fmuls.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fnegd.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fnegs.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh frdxhi.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh frdxlo.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh frdy.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fsind.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fsins.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fsqrtd.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fsqrts.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fsubd.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fsubs.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh ftand.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh ftans.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh ftruncds.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fwrx.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh fwry.Id (N) nguyên cá»§a chỉ lệnh tùy chỉnh round.số nguyên nằm á»Ÿ ngoại phạm vi Ä‘ối xứng ngụ Ã½ bởi ngôn ngữ Fortran Tiêu Chuẩn tại %LTràn số nguyênSố nguyên quá lớn tại %CGiá trị số nguyên quá lớn trong biểu thức tại %CIntel MPX không hỗ trợ x32Giao diện %qs tại %L không thể là hàm khai báoLỗi biên dịch nội bộ: Ä‘ã nhập lại hàm thông báo lỗi.
Thá»§ tục nội tại %qs Ä‘ược dùng làm Ä‘ối số thật tại %LBiên dịch bất kỳ INTEGER(4) như là INTEGER(8)Biên dịch bất kỳ REAL(4) như là REAL(10).Biên dịch bất kỳ REAL(4) như là REAL(16).Biên dịch bất kỳ REAL(4) như là REAL(8).Biên dịch bất kỳ REAL(8) như là REAL(10).Biên dịch bất kỳ REAL(8) như là REAL(16).Biên dịch bất kỳ REAL(8) như là REAL(4).Chèn vào nhau các vùng gộp nghÄ©a chữ và mã trong phần văn bản.NULL không hợp lệ %LĐối số hợp lệ cho $!ACC WAIT tại %LCác Ä‘ối số dá»±ng sẵn không hợp lệTên có chứa ký tá»± không hợp lệ tại %CNgữ cảnh sai cho hạn chế NULL() tại %LGặp ngữ cảnh sai cho hàm trỏ NULL() tại %%LSố áº£nh không hợp lệ %d trong SYNC IMAGESloại không hợp lệ cho %s tại %LĐối số thá»§ tục không hợp lệ tại %LVùng %s không hợp lệ trong tùy chọn %stype-spec không hợp lệ tại %CĐích nhảy Ä‘ược xếp hàng theo lÅ©y thừa 2 này.Chỉ sá»­ dụng icc0/fcc0.Không hiểu AArch64 ABIs (để dùng với tùy chọn -mabi=):Không hiểu ABIs (để dùng với tùy chọn -mabi=):Hiểu ARM ABIs (để dùng với tùy chọn -mabi=):Hiểu ARM CPUs (để dùng với tùy chọn -mcpu= và -mtune=):Hiểu ARM FPUs (để dùng với tùy chọn -mfpu=):Hiểu kiến trúc ARM (để dùng với tùy chọn -march=):Không hiểu C6X ISAs (để dùng với tùy chọn -march=):Không hiểu CPUs (để dùng với tùy chọn -mcpu= và -mtune=):Không hiểu FR-V CPUs (để dùng với tùy chọn -mcpu=):Không hiểu IQ2000 CPUs (để dùng với tùy chọn -mcpu=):Không hiểu Itanium CPUs (để dùng với tùy chọn -mcpu=):.Không hiểu M68K CPUs (để dùng với tùy chọn -mcpu=):Không hiểu M68K ISAs(để dùng với tùy chọn -march=):Không hiểu kiến trúc M68K (để dùng với tùy chọn -mtune=):Không hiểu MIPS ABIs (để dùng với tùy chọn -mabi=):Hiểu MIPS CPUs (để dùng với tùy chọn -march= và -mtune=):Không hiểu  các cài Ä‘ặt MIPS IEEE (để dùng với tùy chọn -mabs= và -mnan=):Hiểu mức MIPS ISA (để dùng với tùy chọn -mips):Hiểu TILE-Gx CPUs (để dùng với tùy chọn -mcpu=):Không hiểu TILEPro CPUs (để dùng với tùy chọn -mcpu=):Không hiểu TLS dialects (để dùng với tùy chọn -mtls-dialect=):Không hiểu mô hình Ä‘ịa chỉ (để dùng với tùy chọn -maddress-mode=):Hiểu kiến trúc (để dùng với tùy chọn -march=):Không hiểu phương ngôn cá»§a hợp ngữ (để dùng với tùy chọn -masm-dialect=):Hiểu cmodel (để dùng với tùy chọn -mcmodel=):Không hiểu mô hinh mã (để dùng với tùy chọn -mcmodel=):Không hiểu lá»±a chọn cân chỉnh dữ liệu(cho việc dùng với tùy chọn -malign-data=):Không hiểu kiểu dấu chấm Ä‘á»™ng ABIs (để dùng với tùy chọn -mfloat-abi=):biến LINEAR %qs tại %L phải là SỐ-NGUYÊNPhần hỗ trợ LTO không Ä‘ược bật trong cấu hình nàyNhãn %d tại %L Ä‘ã Ä‘ịnh nghÄ©a nhưng chưa Ä‘ược dùngĐẳng sau â€œ%<*%>” thì yêu cầu một dấu ngoặc Ä‘Æ¡n mởPhần mở rộng cÅ©:Mức chi tiết lưu gỡ lỗi hsaNâng giới hạn về kích cỡ GOT.Giống như -M mà bỏ qua tập tin phần Ä‘ầu cá»§a hệ thống.Giống như -MD mà bỏ qua tập tin phần Ä‘ầu cá»§a hệ thống.Dòng bị cắt cụt tại %LDòng Ä‘ược thá»±c hiện: %s trên %d
Liên kết tới chương trình xuất theo Ä‘ịnh dạng ELF (hÆ¡n là mmo).Liên kết với HAL BSP.Liên kết với thư viện C bản giới hạn.Liên kết với libads.a, libc.a và crt0.o.Liên kết với libc.a và libdebug.a.Liên kết với libc.a và libsim.a.Liên kết với libmvme.a, libc.a và crt0.o.Liên kết với libsim.a, libc.a và sim-crt0.o.Liên kết với libyk.a, libc.a và crt0.o.Liên kết với thư viện dấu chấm Ä‘á»™ng nhanh.Liên kết với các thư viện library-pic.Tại %%L thì các bộ hợp lý phải Ä‘ược so sánh với %s thay cho %sMã vòng lặp Ä‘ược xếp hàng theo lÅ©y thừa 2 này.Biến vòng lặpBiến vòng lặp tại %C không thể là một coarrayBiến vòng lặp tại %C không thể là một thành-phần-conBiến vòng lặp tại %C không thể là một mảngBiến vòng lặp bị sá»­a Ä‘ổiVòng lặp nào lặp lại Ã­t nhất số lần lặp lại Ä‘ược chọn thì Ä‘ược xếp hàng các vòng lặp..MIPS16 -mxgot mãMIPS16 PIC cho ABIs khác hÆ¡n o32 và o64MMIX nội bộ: sai Ä‘ặt giá trị cho â€œm”, không phải là một CONST_INTMMIX nội bộ: không thể giải mã toán hạng nàyMMIX nội bộ: mong Ä‘ợi một CONST_INT, không phải như thếMMIX nội bộ: mong Ä‘ợi một rằng buộc, không phải như thếMMIX nội bộ: mong Ä‘ợi một thanh ghi, không phải như thếMMIX nội bộ: Ä‘ây không phải là một hằng số:MMIX nội bộ: Ä‘ây không phải là một Ä‘ịa chỉ nhận raMMIX nội bộ: Ä‘ang thá»­ xuất Ä‘iều kiện sai Ä‘ảo ngược:MMIX nội bộ: CC cá»§a Ä‘iều này là gì?MMIX nội bộ: CC cá»§a Ä‘iều này là gì?Tiền tố MODULE tại %CMOLD tag tại %LBảo tồn hàm trỏ dây chuyền ngượcLàm cho "char" là có dấu theo mặc Ä‘ịnh.Làm cho "char" là không dấu theo mặc Ä‘ịnh.Làm cho số nguyên có chiều rộng 32 bit.Làm cho cấu trúc một bội số cho 4 byte (cảnh báo: ABI bị sá»­a Ä‘ổi).Kiểm tra lại hàm nạp và hàm lưu không Ä‘i qua câu lệnh DMA.Malloc dữ liệu vào vùng P2.Đánh dấu thanh ghi MAC như là bị cuộc gọi ghi Ä‘è.Đánh dấu cuộc gọi __tls_get_addr bằng thông tin về Ä‘ối số.Đánh dấu tất cả các vòng lặp là xá»­ lý song song.Số tối Ä‘a các khối cÆ¡ bản trong vòng lặp Ä‘ể chuyển Ä‘á»™ng bất biến vòng lặp.Số tối Ä‘a các vòng lặp cho RA thuộc miền.Kích cỡ tối Ä‘a (theo MB) cá»§a bảng xung Ä‘á»™t.Kích cỡ tối Ä‘a cá»§a bảng chuỗi duy nhất theo dõi var.Độ tăng mã lên tối Ä‘a (theo phần trăm) do Ä‘uôi bị nhân Ä‘ôi.Độ tăng lên Æ°á»›c lượng tối Ä‘a cá»§a thân hàm do chèn vào trá»±c tiếp sớm một cuộc gọi riêng lẻ.Kết quả Æ°á»›c lượng tối Ä‘a cá»§a nhánh Ä‘ược thấy là dá»± Ä‘oán Ä‘ược.Độ tăng lên tối Ä‘a (theo phần trăm) do chèn hàm lớn vào trá»±c tiếp.Độ tăng lên khung ngăn xếp tối Ä‘a (theo phần trăm) do chèn vào trá»±c tiếp.Độ tăng lên tối Ä‘a Ä‘ược pháp cá»§a kích cỡ tham số mới ipa-sra thì thay thế một hàm trỏ theo một chiều rộng tập hợp.Chiều dài tối Ä‘a cá»§a tập hợp antic bộ phận khi thá»±c hiện sá»± tối Æ°u hóa sẵn cây.Số tối Ä‘a các cặp lưu Ä‘iều kiện cái mà có thể hạ xuống.Số tối Ä‘a các trường trong một cấu trúc trước khi tiến trình phân tích hàm trỏ thấy cấu trúc Ä‘ó là một biến riêng lẻ.Số tối Ä‘a các lệnh trong khối cÆ¡ bản cần Ä‘ể coi là cho if-conversion SLP.Số tối Ä‘a các lệnh trong khối cÆ¡ bản cần tính Ä‘ể véc-tÆ¡ hóa SLP.Số tối Ä‘a các lệnh trong danh sách sẵn sàng mà Ä‘ược thấy là thích hợp với chức năng thay Ä‘ổi tên.Số tối Ä‘a các không gian tên Ä‘ể tìm kiếm cái thay thế khi việc tìm gặp lỗi.Số tối Ä‘a các nops cần chèn cho một lời gợi Ã½ (mặc Ä‘ịnh là 2).Số tối Ä‘a các câu lệnh Ä‘ược phép trong một khối cần Ä‘ược nhân Ä‘ôi khi sắp xếp bước nhảy theo nhánh.Số tối Ä‘a các lần có thể Ä‘ịnh thời một lệnh nào Ä‘ó.Kích cỡ tối Ä‘a (theo byte) cá»§a giá trị bất biến Ä‘ược phép làm toán hạng.Kích cỡ tối Ä‘a cá»§a một SCC trước khi SCCVN dừng xá»­ lý một hàm.Kích cỡ tối Ä‘a cá»§a biến loại toàn cục và tÄ©nh mà có thể Ä‘ược Ä‘ể vào vùng dữ liệu nhỏ.Lỗi cấp phát vùng nhớCách dùng lệnh con hòa trộn:Tá»· lệ tối thiểu giữa các lệnh và các thao tác vùng nhớ Ä‘ể bật lấy sẵn trong một vòng lặp.Tá»· lệ tối thiểu giữa các lệnh và các lần lấy sẵn Ä‘ể bật lấy sẵn cho một vòng lặp không rõ số Ä‘ếm lần Ä‘i qua.Khoảng cách tối thiểu giữa vị trí lưu và nạp có thể xung Ä‘á»™t với nhau.Sá»± mở rộng miền nhớ tối thiểu Ä‘ể gây ra tập hợp rác, theo phần trăm cá»§a kích cỡ miền nhớ hoàn toàn.Sá»± mở rộng miền nhớ tối thiểu (theo kilô-byte) trước khi bắt Ä‘ầu tập hợp rác.Thiếu %<&%> trong hằng ký tá»± tiếp tục tại %CThiếu Ä‘ối số Ä‘ối thá»±c tế %qs trong cú gọi Ä‘ến %qs tại %LThiếu Ä‘ối số Ä‘ối thá»±c tế cho Ä‘ối số %qs tại %LThiếu dấu phẩy tại %LThiếu số lượng cho cú gọi hàm %s/%iThiếu nhãn Ä‘ịnh dạng tại %CThiếu dấu ngoặc Ä‘Æ¡n mở Ä‘i trướcThiếu ký hiệuNOTE_INSN_BASIC_BLOCK %d tại giữa cá»§a khối cÆ¡ bản %dNOTE_INSN_BASIC_BLOCK bị thiếu cho khối %dthuộc tính NO_ARG_CHECKNULL Ä‘ược dùng trong số họcTên â€œ%qs” tại %C Ä‘ã Ä‘ược Ä‘ịnh nghÄ©a trước tại %LTên tại %C quá dàiTên cá»§a thư viện hệ thống cần liên kết với.Tên cá»§a tập tin bắt Ä‘ầu.Tên quá dàiDanh sách tên `%s' không thể là Ä‘ối số tại %LĐối số Ã¢m N tại %LKhông có nhánh
Không có cuộc gọi
Không có crt0.o mặc Ä‘ịnh.Không có dòng thá»±c thi
không còn Ä‘ược hỗ trợ nữa.Có ký tá»± tab không phù hợp tại %CKhông phải là thư mục bao gồm sẵn có %qsYêu cầu chiều rộng không phải Ã¢mKhông phải là một tập tin .class Java Ä‘úng.
Không cần THẺ.Số các thanh ghi Ä‘ược sá»­ dụng Ä‘ể gá»­i Ä‘ối số nguyên cho Ä‘ích.Đối tượng %qs không phải là một biến tại %LĐặc tính cÅ©:Công cụ ngoại tuyến Ä‘ể xá»­ lý Ä‘ếm gcda
 
Bù vượt quá 16 byte.Sá»± khởi tạo kiểu cÅ© tại %CBỏ sót hàm trỏ khung cho hàm lá.Bỏ qua con trỏ khung trong hàm lá.Chỉ tạo ra sá»± Ä‘ịnh vị lại tuyệt Ä‘ối với giá trị kích cỡ từ.Chỉ Ä‘ưa ra một câu lệnh từng chu kỳ.Giữ lại vì mục Ä‘ích tương thích ngược.Chỉ sá»­ dụng 32 FPRs.Chỉ sá»­ dụng 32 GPRs.Tại %%L có một toán tá»­ .not. với toán hạng %sTại %%L có một toán tá»­ thuộc số nguyên phân â€œ%s” với toán hạng %sToán hạng cá»§a toán tá»­ người dùng %%<%s%%> tại %%L là %sTại %%L có một toán tá»­ thuộc số nhị phân â€œ%s” với các toán hạng %s/%sTại %%L có một toán tá»­ so sánh â€œ%s” với các toán hạng %s/%sTại %%L có một toán tá»­ hợp lý â€œ%s” với các toán hạng %s/%sTại %%L có một toán tá»­ ghép nối chuỗi với các toán hạng %s/%sCác toán hạng cá»§a toán tá»­ người dùng %%<%s%%> tại %%L là %s/%sTối Æ°u hóa về thá»­ nghiệm hÆ¡n là kích thước hay tốc Ä‘á»™.Tối Æ°u hóa về kích thước thay vì tốc Ä‘á»™.Tối Æ°u hóa cho tốc Ä‘á»™ bất kể có tuân theo Ä‘úng chuẩn hay không.Tối Æ°u hóa về Ä‘ầu khung.Tối Æ°u hóa việc nạp Ä‘ịa chỉ lui/addiu.Tối Æ°u hóa mã lúc liên kết.Tối Æ°u hóa các câu lệnh gọi Ä‘uôi trong bộ dịch mã số và bộ liên kết.Tùy chọn %s với các giá trị khác biệtTùy chọn:
Không Ä‘á»§ sức chứa trong ngăn xếp.
Xuất một tập tin lớp.Cách dùng lệnh con chồng Ä‘è:Ghi Ä‘è lên -mbest-lib-options.Bộ mô tả P yêu cầu hệ số tá»· lệ Ä‘i trướcPAD= tại %C không Ä‘ược phép trong Fortran 95biến thể PCSChưa cài Ä‘ặt thanh ghi PICPRE bị tắtPRINT_OPERAND con trỏ nullPRINT_OPERAND, sai insn cho %%CPRINT_OPERAND, sai insn cho %%NPRINT_OPERAND: không hiểu dấu chấm â€œ%c”PRINT_OPERAND_ADDRESS, con trỏ nulldanh sách PROCEDURE tại %Cthuộc tính BẢO VỆ tại %CĐóng gói các câu lệnh VLIW.Chuyển tùy chọn -EB cho bộ liên kết.Chuyển tùy chọn -EL cho bộ liên kết.Chuyển tùy chọn -marclinux cho bộ liên kết.Chuyển tùy chọn -marclinux_prof cho bộ liên kết.Chuyển tùy chọn -z text cho bộ liên kết.Gá»­i Ä‘ối số dấu chấm Ä‘á»™ng trong thanh ghi dành cho dấu chấm Ä‘á»™ng.Gá»­i Ä‘ịa chỉ cá»§a vị trí lưu ra cho _mcount trong $12.Tối Æ°u hóa sá»± xếp hàng một cách Ä‘ặc trưng cho VR4130.Bộ ghi rõ Ä‘ịnh dạng thì yêu cầu một dấu chấmCho phép sá»­ dụng ký tá»± tab một cách không phù hợp.Cho phép Ä‘ịnh thời dãy Ä‘oạn mở Ä‘ầu cá»§a một hàm nào Ä‘ó.Cho phép sá»­ dụng từ khóa assert.Đang Ä‘ịnh thời thì cÅ©ng Ä‘ể một bit dừng lại vào Ä‘ẳng sau mọi chu kỳ.Để vào TOC hằng số dấu chấm Ä‘á»™ng.Để vào TOC hằng số loại ký_hiệu+hiệu_số.Vui lòng báo cáo lỗi,
cùng với mã nguồn Ä‘ã Ä‘ược sá»­a chữa nếu có.
Phần bổ sungCon trỏ là 32-bit.Con trỏ là 64-bitYêu cầu chiều rộng lÅ©y thừa dươngYêu cầu chiều rộng dươngDùng bộ mô tả T thì yêu cầu chiều rộng dươngThích nhánh hÆ¡n sá»± thá»±c hiện có Ä‘iều kiện.Thích truy cập loại từ hÆ¡n truy cập loại byte.Thêm dấu hai chấm ":" vào trước ký hiệu toàn cục (để sá»­ dụng với TIỀN_TỐ).Chỉ các chỉ thị tiền xá»­ lý.Nguồn tiền xá»­ lý lưu vào trong tập tin %s, vui lòng Ä‘ính kèm cái này vào báo cáo lỗi cá»§a bạn.
Làm ra vẻ rằng branch-around-a-move là một sá»± di chuyển có Ä‘iều kiện.Làm ra vẻ là nhánh có giá cao.Ngăn cản sá»­ dụng lệnh dấu chấm Ä‘á»™ng nào.Ngăn cản sá»­ dụng câu lệnh nào có loại dấu chấm Ä‘á»™ng phần cứng.In ra thông tin về bao quát cá»§a mã
 
Hiển thị các cảnh báo thêm nữa (gần như chắc chắn là không cần).In ra tên cá»§a tập tin phần Ä‘ầu nào Ä‘ang Ä‘ược sá»­ dụng.Thá»§ tục â€œ%qs” tại %C Ä‘ã Ä‘ược Ä‘ịnh nghÄ©a trước tại %LThá»§ tục â€œ%qs” tại %L Ä‘ã sẵn có kiểu cÆ¡ bản cá»§a %sThá»§ tục %qs Ä‘ược gọi tại %L không Ä‘ược khai báo rõ ràngĐang xá»­ lý Ä‘ặc tả (%s), cái mà â€œ%s”
Xuất một vết ngược khi gặp lỗi lúc chạy.Cảnh báo lúc chạy nếu một mục mảng tạm thời Ä‘ã Ä‘ược tạo cho một Ä‘ối số thá»§ tục.Xuất mã về cuối lớn.Xuất mã có thể Ä‘ịnh vị lại vào lúc chạy.Xuất mã về cuối nhỏ.Chương trình nằm hoàn toàn trong 64k thấp cá»§a vùng nhớ.Cấm cuộc gọi hàm tương Ä‘ối với PC.Cấm cuộc gọi hàm tương Ä‘ối với PC.Bảo vệ dấu ngoặc Ä‘Æ¡n trong biểu thức.Cung cấp thư viện cho bộ mô phỏng.Đặt toàn bộ các mảng nội bộ vào stack.Để tất cả vào TOC bình thường.Để vào ROM các hằng số chưa khởi tạo (yêu cầu -membedded-data).Kiến trúc R2 chỉ chế Ä‘á»™ về cuối nhỏ.ROUND= tại %C không Ä‘ược phép trong Fortran 95kiểm tra RTL: cần  mã â€œ%s” hoặc â€œ%s”, nhận â€œ%s” trong %s, tại %s:%dkiểm tra RTL: cần  mã â€œ%s”, nhận â€œ%s” trong %s, tại %s:%dkiểm tra RTL: cần elt %d kiểu â€œ%c” hoặc â€œ%c”, nhận â€œ%c” (rtx %s) trong %s, tại %s:%dkiểm tra RTL: cần elt %d kiểu â€œ%c”, nhận â€œ%c” (rtx %s) trong %s, tại %s:%dRTP PIC không tương thích với -msingle-pic-baseRTP PIC không tương thích với ThumbĐang Ä‘ọc các Ä‘ặc tả từ %s
Xếp hàng lại ngăn xếp trong Ä‘oạn mở Ä‘ầu.Tái cấp phát Ä‘ược LHS trong phép gán.Không chấp nhận từ khóa "GNU-define"Chấp nhận các hàm dá»±ng sẵn.Không chấp nhận từ khóa "asm".Giảm số lượng siêu dữ liệu phản chiếu Ä‘ược tạo ra.Làm yếu các nhánh.Gỡ bỏ thanh vùng nhớ thừa.Gỡ bỏ â€œ%s”
Yêu cầu hàm thư viện toán học thích hợp với IEEE (OSF/1).Trong Ä‘oạn mở Ä‘ầu hàm thì dành riêng sức chứa cho Ä‘ối số gá»­i raHạn chế sá»­ dụng câu lệnh dấu chấm Ä‘á»™ng phần cứng thành thao tác 32-bit.Kết quả cá»§a %s là NaN tại %LTrả lại tất cả các cấu trúc trong vùng nhớ (AIX mặc Ä‘ịnh).Trả lại kết quả dấu chấm Ä‘á»™ng theo ac0 (bằng fr0 trong cú pháp dịch mã số UNIX).Trả lại hàm trỏ trong cả hai a0 và d0.Trả lại các cấu trúc nhỏ trong thanh ghi (SVR4 mặc Ä‘ịnh).Trả lại giá trị %sq cá»§a hàm %qs khai báo tại %L chưa Ä‘ặtTrả lại giá trị cá»§a hàm %qs tại %L chưa Ä‘ặtTrả lại giá trị cá»§a hàm trong thanh ghi FPU (đơn vị dấu chấm Ä‘á»™ng).Sá»­ dụng lại r30 một cách từng hàm.Cách dùng lệnh con ghi lại:Chỉ chạy biên dịch lần hai cá»§a tùy chọn -fcompare-debug.Đang chạy hàm hàm Ä‘ặc tả â€œ%s” với %d Ä‘ối số
Tên lúc chạy.SH2a không hỗ trợ tình trạng về cuối nhỏSIGN= tại %C không Ä‘ược phép trong Fortran 95SIZE tại %L phải là số dươngSOURCE tag tại %LSPE không Ä‘ược hỗ trợ á»Ÿ Ä‘ích nàySSA hỏngSSA_NAME_OCCURS_IN_ABNORMAL_PHI cần Ä‘ược Ä‘ặtbiến STATSTAT= Ä‘ối số cho %s tại %Lcâu lệnh SYNC tại %CGiống như %s. Dùng tùy-chọn sau Ä‘ó Ä‘ể thay thế.Giống với -mA6.Giống với -mA7.Giống như: -mep -mprolog-function.Định thời mã cho CPU Ä‘ưa ra.Định thời CPU Ä‘ưa ra.Định thời bắt Ä‘ầu và kết thúc thá»§ tục.Phần vào Ä‘ó cần Ä‘ể tất cả các giá trị bất biến có thể Ä‘ặt Ä‘ược (tiny, near, far) (không có giá trị mặc Ä‘ịnh)
tiny        rất nhỏ
near        gần
far        xa.Xem %s Ä‘ể có chỉ dẫn.
Segmentation FaultSegmentation Fault (mã)Chọn quy Æ°á»›c gọi ABI.Chọn mô hình mã.Chọn phân số cá»§a tần số tối Ä‘a lần thá»±c hiện khối cÆ¡ bản trong hàm mà cÅ©ng quy Ä‘ịnh rằng khối cÆ¡ bản Ä‘ược xếp hàng.Chọn phân số cá»§a tần số tối Ä‘a lần thá»±c hiện khối cÆ¡ bản trong hàm mà cÅ©ng quy Ä‘ịnh rằng khối cÆ¡ bản cần phải Ä‘ược thấy là nóng.Chọn chế Ä‘á»™ rộng - con trỏ và Ä‘ịa chỉ 20 bít.Chọn phương pháp Ä‘ể quản lý sdata.Chọn chế Ä‘á»™ nhỏ - con trỏ và Ä‘ịa chỉ 20 bít (mặc Ä‘ịnh).Chọn lúc chạy.Chọn cái gì Ä‘ể cải thiện.Đặt Ä‘á»™ chính xác dấu chấm Ä‘á»™ng 80387 thành 32-bít.Đặt Ä‘á»™ chính xác dấu chấm Ä‘á»™ng 80387 thành 64-bít.Đặt Ä‘á»™ chính xác dấu chấm Ä‘á»™ng 80387 thành 80-bít.Đặt Ä‘ịnh nghÄ©a Windows.Đặt giá cá»§a lệnh rẽ nhánh.Đặt thành PRIVATE (riêng) tình trạng truy cập cá»§a thá»±c thể mô-đun.Đặt tên cá»§a hàm chính cho chương trình gỡ rối.Đặt thanh ghi giữ giá trị -1Đặt kích cỡ biểu thức bun thành 1.Đặt Ä‘ịa chỉ bắt Ä‘ầu cá»§a dữ liệu.Đặt Ä‘ịa chỉ bắt Ä‘ầu cá»§a chương trình.Đặt bit PPC_EMB trong phần Ä‘ầu cờ ELF.Đặt giá cá»§a nhánh.Đặt loại Ä‘á»™ chính xác Ä‘ôi mặc Ä‘ịnh thành một loại có chiều rộng 8 byte.Đặt loại số nguyên mặc Ä‘ịnh thành một loại có chiều rộng 8 byte.Đặt loại số thá»±c mặc Ä‘ịnh thành một loại có chiều rộng 8 byte.Đặt kích cỡ tối Ä‘a cá»§a dữ liệu thích hợp với vùng SDA.Đặt kích cỡ tối Ä‘a cá»§a dữ liệu thích hợp với vùng TDA.Đặt kích cỡ tối Ä‘a cá»§a dữ liệu thích hợp với vùng ZDA.Đặt số tối Ä‘a các byte cần Ä‘ể cho kích cỡ ngăn xếp trước khi gây ra một câu lệnh Ä‘ặt bẫy.Đặt số lượng tối Ä‘a cho một thao tác lượng gia loại ngăn xếp Ä‘Æ¡n.Đặt phiên bản ngôn ngữ nguồn.Đặt loại CPU Ä‘ích.Đặt phiên bản VM Ä‘ích.Đang Ä‘ặt Ä‘ặc tả %s thành â€œ%s”
 
Cắt ngắn tham chiếu Ä‘ịa chỉ trong khi liên kết.Đơn vị dấu chấm Ä‘á»™ng chính xác Ä‘Æ¡n.Kích cỡ (theo KB) cá»§a vùng nhớ tạm dữ liệu loại phần mềm.Vùng dữ liệu nhỏ:
 * none    không có
 * sdata
 * use    sá»­ dụng.Giới hạn mềm về số các câu lệnh vùng nhớ mỗi nhóm câu lệnh, gán mức Æ°u tiên thấp hÆ¡n cho câu lệnh vùng nhớ theo sau mà thá»­ Ä‘ịnh thời trong cùng một nhóm câu lệnh. Hữu Ã­ch Ä‘ể ngăn cản sá»± xung Ä‘á»™t Ä‘ối với nhóm vùng nhớ tạm. Giá trị mặc Ä‘ịnh là 1.Ghi rõ kích cỡ bit cá»§a hiệu số TLS trá»±c tiếp. giá trị hợp lệ là 12, 24, 32, 48.Ghi rõ số các thanh ghi cần dành riêng cho bộ quản lý tín hiệu ngắt.Ghi rõ nếu hàm ngắt nên lưu và phục hồi thanh ghi tích lÅ©y hay không.Ghi rõ CPU cho mục Ä‘ích tạo ra mã.Ghi rõ CPU cho mục Ä‘ích Ä‘ịnh thời.Ghi rõ CPU cho mục Ä‘ích Ä‘ịnh thời. Äá»‘i số hợp lệ là 700, 7100, 7100LC, 7200, 7300, và 8000.Ghi rõ tiêu chuẩn UNIX cho lời xác Ä‘ịnh sẵn và chức năng liên kết.Ghi rõ FPU loại Xilinx.Chỉ Ä‘ịnh phần bổ sung cần nạp.Ghi rõ cách xếp hàng các trường cấu trúc: mặc Ä‘ịnh (default) hay tá»± nhiên (natural).Ghi rõ một ABI.Ghi rõ kích cỡ bit cá»§a hiệu số TLS trá»±c tiếp.Ghi rõ hàm chuyển hết vùng nhớ tạm ra ngoài.Ghi rõ số thứ tá»± bẫy chuyển hết vùng nhớ tạm ra ngoài.Ghi rõ giá cá»§a nhánh (Mặc Ä‘ịnh là 20).Ghi rõ cách truy cập Ä‘ến con trỏ tuyến trình.Ghi rõ có nên sá»­ dụng phần cứng dấu chấm Ä‘á»™ng hay không.Ghi rõ Ä‘ối tượng chính cho TFP-OS.Ghi rõ tên cho hàm chia Ä‘ã ký 32-bit.Ghi rõ phạm vi các thanh ghi cần làm cho cố Ä‘ịnh.Ghi rõ mức Æ°u tiên Ä‘ịnh thời cho câu lệnh bị hạn chế khe gá»­i Ä‘i.Ghi rõ rằng có nên sá»­ dụng một thư viện BLAS bên ngoài cho cuộc gọi matmul trên mạng có kích cỡ lớn.Ghi rõ rằng một dấu chéo ngược trong một chuỗi thì giới thiệu một ký tá»± thoát.Ghi rõ rằng không cho phép tạo loại ngầm nào, nếu không bị ghi Ä‘è bởi câu lệnh THá»°C CHẤT dứt khoát.Chỉ Ä‘ịnh ISA cần biên dịch cho: msp430, mdsp430x, msp430xv2.Chỉ Ä‘ịnh MCU cần biên dịch cho nó.Ghi rõ Ä‘ịnh dấu chấm Ä‘á»™ng __fp16.Chỉ Ä‘ịnh mô hình mã.Ghi rõ sá»± xếp hàng bit tối thiểu cá»§a cấu trúc.Tạo ra mã cho các thao tác atomic.Ghi rõ tên cá»§a CPU Ä‘ích.Ghi rõ tên cá»§a kiến trúc Ä‘ích.Chỉ ra tên cá»§a cấu hình dấu chấm Ä‘á»™ng Ä‘ích.Ghi rõ tên cá»§a phần cứng / Ä‘ịnh dạng Ä‘ích về dấu chấm Ä‘á»™ng.Ghi rõ thanh ghi cần sá»­ dụng Ä‘ể Ä‘ặt Ä‘ịa chỉ PIC.Ghi rõ CPU Ä‘ích.Ghi rõ loại CPU RX Ä‘ích.Chỉ Ä‘ịnh lược Ä‘ồ lưu tuyến cục bộ.Ghi rõ vị trí á»Ÿ Ä‘ó có các mô-đun thá»±c chất Ä‘ã biên dịch.Ghi rõ lược Ä‘ồ chèn nop hậu Ä‘ịnh thời nào cần Ã¡p dụng.Biểu thức bắt Ä‘ầu trong vòng lặp DO (làm)Câu lệnh hàm %qs cần một danh sách Ä‘ối số tại %CHàm khai báo tại %L không phải xuất hiện trong một GIAO DIỆNLiên kết tÄ©nh thư viện bổ trợ Fortran cá»§a GNU (libgfortran).Biểu thức bước trong vòng lặp DO (làm)Dừng tăng lên tiếp nếu xác xuất có cạnh tốt nhất vẫn nhỏ hÆ¡n ngưỡng này (theo phần trăm). ÄÆ°á»£c sá»­ dụng khi có sẵn sàng thông tin phản hồi từ hồ sÆ¡Dừng tăng lên tiếp nếu xác xuất có cạnh tốt nhất vẫn nhỏ hÆ¡n ngưỡng này (theo phần trăm). ÄÆ°á»£c sá»­ dụng khi không có sẵn sàng thông tin phản hồi từ hồ sÆ¡Dừng tăng lên ngược nếu xác xuất ngược có cạnh tốt nhất vẫn nhỏ hÆ¡n ngưỡng này (theo phần trăm).Lưu Ä‘ôi theo 64 bit.Lưu các tên hàm trong mã Ä‘ối tượng.Lưu Ä‘ôi theo 32 bit. ÄÃ¢y là cài Ä‘ặt mặc Ä‘ịnh.Chiều dài chuỗi tại %L là quá lớnChuỗi con tại %L có Ä‘á»™ dài là khôngHỗ trợ các hàm dá»±ng sẵn 3DNow!.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại AES.Hỗ trợ các hàm dá»±ng sẵn 3DNow! Athlon.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại BMI.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại BMI2.Hỗ trợ chỉ lệnh CLFLUSHOPT.Hỗ trợ chỉ lệnh CLWB.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại CLZERO.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại F16C.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại FMA4.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại FSGSBASE.Hỗ trợ chỉ lệnh FXSAVE và FXRSTOR.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại LWP.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại LZCNT.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại MMX và SSE.Hỗ trợ các hàm dá»±ng sẵn MMX.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại MMX, SSE và SSE2.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại MMX, SSE, SSE2 và SSE3.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại MMX, SSE, SSE2, SSE3 và SSE4A.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại MMX, SSE, SSE2, SSE3 và SSSE3.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại MMX, SSE, SSE2, SSE3, SSSE3 và SSE4.1.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1 và SSE4.2.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2 và AVX.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX và AVX2.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX và FMA.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2 và AVX512F và AVX512BW.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2 và AVX512F và AVX512CD.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2 và AVX512F và AVX512DQ.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2 và AVX512F và AVX512ER.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2 và AVX512F và AVX512IFMA.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2 và AVX512F và AVX512PF.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2 và AVX512F và AVX512VBMI.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2 và AVX512F và AVX512VL.Hỗ trợ hàm dá»±ng sẵn MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2 và AVX512F và tạo mã.Hỗ trợ tạo mã MPX.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại MWAITX và MONITORX.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại PCLMUL.Hỗ trợ chỉ lệnh PCOMMIT.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại PKU.Hỗ trợ chỉ lệnh PREFETCHW.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại PREFETCHWT1.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại RDRND.Hỗ trợ chỉ lệnh RDSEED.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại RTM.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại SHA1 và SHA256.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại TBM.Hỗ trợ Ä‘oạn TLS lớn hÆ¡n 64K.Hỗ trợ các hàm dá»±ng sẵn và chức năng tạo ra mã loại XOP.Hỗ trợ chỉ lệnh XSAVE và XRSTOR.Hỗ trợ chỉ lệnh XSAVEC.Hỗ trợ chỉ lệnh XSAVEOPT.Hỗ trợ chỉ lệnh XSAVES và XRSTORS.Hỗ trợ cuộc gọi giữa các tập hợp câu lệnh loại Thumb và ARM.Hỗ trợ chức năng tạo ra mã là câu lệnh ABM (thao tác bit cấp cao).Hỗ trợ chức năng tạo ra mã là câu lệnh cmpxchg16b.Hỗ trợ chức năng tạo ra mã là câu lệnh crc32.Hỗ trợ chức năng tạo ra mã là câu lệnh movbe.Hỗ trợ chức năng tạo ra mã là câu lệnh popcnt.Hỗ trợ chức năng tạo ra mã là câu lệnh sahf trong mã x86-64 64-bit.Hỗ trợ chức năng tạo ra mã là câu lệnh crc32.Hỗ trợ chức năng Ä‘a luồng thừa tá»±.Hỗ trợ chức năng gá»­i thông Ä‘iệp qua với Môi trường Song song (Parellel Environment).Hỗ trợ nhiều hÆ¡n 8192 mục nhập GOT trên ColdFire.Hỗ trợ chức năng Ä‘a luồng.Hỗ trợ câu lệnh nhân-tích_lÅ©y.Thu hồi cảnh báo.Bật/tắt ASE MIPS16 trên các hàm qua lại, Ä‘ể kiểm tra chức năng cá»§a bộ dịch mã sốBật/tắt ASE MIPS16 trên các hàm qua lại, Ä‘ể kiểm tra chức năng cá»§a bộ dịch mã số.Tắt tùy chọn -mstack-guard=.Ký hiệu %qs Ä‘ã sẵn Ä‘ược khai báoKý hiệu â€œ%qs” tại %C Ä‘ã sẵn Ä‘ược khai báo tại %LKý hiệu %qs tại %C Ä‘ã có trong khối COMMONKý hiệu â€œ%qs” tại %L chưa rõ ràngĐồng nghÄ©a với -Wcomment.Từ Ä‘ồng nghÄ©a với -gnatk8.Gặp lỗi cú pháp trong biểu thức tại %CTILE cần biểu thức hằng tại %LTLS dialect Ä‘ược dùng:Đã lấy Ã­t nhất một lần: %s trên %d
Đặt mục Ä‘ích là mã chính xác Ä‘ôi DFLOATĐích có I&D bị chia ra.Đặt mục Ä‘ích là bộ xá»­ lý AM33.Đặt mục Ä‘ích là bộ xá»­ lý AM33/2.0.Đích là bộ xá»­ lý AM34.Đích: %s
Tùy chọn --param nhận ra những Ä‘iều theo Ä‘ây như là tham sốNếu lỗi không Ä‘ược tái lặp lại, thế thì gần như chắc chắn là phần cứng hay HDH có trục trặc.
Phiên bản Mac OSX cÅ© nhất trên Ä‘ó chương trình này chạy Ä‘ược.Biến sá»± kiện tại %L sẽ không thể là coindexed Theo Ä‘ây có những tùy chọn không phụ thuộc vào ngôn ngữTheo Ä‘ây có những tùy chọn liên quan Ä‘ến ngôn ngữTheo Ä‘ây có những tùy chọn không có tài liệu diễn tảTheo Ä‘ây có những tùy chọn Ä‘ặc trưng cho chỉ ngôn ngữ Theo Ä‘ây có những tùy chọn Ä‘ược hỗ trợ bởi ngôn ngữ Theo Ä‘ây có những tùy chọn Ä‘ặc trưng cho Ä‘íchTheo Ä‘ây có những tùy chọn Ä‘iều khiển các thông Ä‘iệp cảnh báo cá»§a bộ biên dịchTheo Ä‘ây có những tùy chọn Ä‘iều khiển việc tối Æ°u hóaTheo Ä‘ây có những tùy chọn chấp nhận các Ä‘ối số nối lạiTheo Ä‘ây có những tùy chọn chấp nhận các Ä‘ối số riêngBiên giới dưới cá»§a một vùng Ä‘ệm Ä‘ược tính Ä‘ể bảo vệ chống ngăn xếp bị Ä‘ập tan ra.Vùng nhớ tối Ä‘a cho GCSE cấp phát.Khoảng Ä‘ợi xung Ä‘á»™t tối Ä‘a trước khi một lệnh Ä‘ược tính Ä‘ể di chuyển một cách lý thuyết có tính chất suy Ä‘oán.Độ sâu tối Ä‘a cá»§a một bộ vòng lặp xếp lồng vào nhau Ä‘ược chúng ta lột hoàn toàn.Độ sâu tối Ä‘a cá»§a việc chèn vào trá»±c tiếp một cách Ä‘ệ quy cho hàm trá»±c tiếp.Độ sâu tối Ä‘a cá»§a việc chèn vào trá»±c tiếp một cách Ä‘ệ quy cho hàm không phải trá»±c tiếp.Hệ số mở rộng tối Ä‘a khi sao chép khối cÆ¡ bảnSố tối Ä‘a các lệnh Ä‘ược CSE xá»­ lý trước khi chuyển hết ra ngoài.Chiều dài tối Ä‘a cá»§a Ä‘ường dẫn Ä‘ược tính trong CSE.Chiều dài tối Ä‘a cá»§a danh sách các thao tác còn treo.Số tối Ä‘a các vị trí bộ nhớ Ä‘ược thư viện cselib ghi lưu.Số tối Ä‘a các nút RTL có thể ghi lưu như là giá trị cuối cùng cá»§a bộ kết hợp.Số tối Ä‘a các khối mỗi vùng cần tính Ä‘ể Ä‘ịnh thời giữa các khối.Số tối Ä‘a các nhánh trên Ä‘ường dẫn xuyên suốt chuỗi vỏ bọc.Số tối Ä‘a các cạnh gá»­i Ä‘ến cần tính Ä‘ể nhảy chéoSố tối Ä‘a các chỉ lệnh phối hợp cố phối hợp.Số tối Ä‘a các lệnh mỗi vùng cần tính Ä‘ể Ä‘ịnh thời giữa các khối.Số tối Ä‘a các lệnh cá»§a một vòng lặp Ä‘ược lột hoàn toàn.Số tối Ä‘a các lệnh cá»§a một vòng lặp Ä‘ược lột mà cuộn chỉ một lần.Số tối Ä‘a các lệnh insns cá»§a một vòng lặp Ä‘ược lột.Số tối Ä‘a các lệnh cá»§a một vòng lặp chưa chuyển Ä‘ổi nhánh.Số tối Ä‘a các lệnh trong một lệnh riêng lẻ mà thích hợp với việc chèn vào trá»±c tiếp.Số tối Ä‘a các lệnh Ä‘ến Ä‘ó hàm trá»±c tiếp có thể tới bằng cách chèn vào trá»±c tiếp một cách Ä‘ệ quy.Số tối Ä‘a các lệnh Ä‘ến Ä‘ó hàm không phải trá»±c tiếp có thể tới bằng cách chèn vào trá»±c tiếp một cách Ä‘ệ quy.Số tối Ä‘a các câu lệnh sẵn sàng Ä‘ưa ra cần Ä‘ược tính bởi bộ Ä‘ịnh thời trong lần Ä‘ầu tiên chạy thá»§ tục Ä‘ịnh thời.Số tối Ä‘a các lệnh cần tính Ä‘ể Ä‘iền vào một khe Ä‘ợi.Số tối Ä‘a các lệnh cần tính Ä‘ể tìm thông tin thanh ghi vẫn hiện thời và chính xác.Số tối Ä‘a các lệnh trung bình cần tính nên bỏ cuộn trong một vòng lặp bình quân.Số tối Ä‘a các lệnh cần tính nên bỏ cuộn trong một vòng lặp.Số tối Ä‘a các lệnh cần quét ngược khi tìm một sá»± nạp lại tương Ä‘ương.Số tối Ä‘a các lệnh khi tá»± Ä‘á»™ng chèn vào trá»±c tiếp.Số tối Ä‘a các lần lặp lại qua CFG Ä‘ể kéo dài vùng.Số tối Ä‘a các lần lặp lại vòng lặp dá»± Ä‘oán một cách tÄ©nh.Số tối Ä‘a các lần chèn vào trá»±c tiếp loại gián tiếp lồng nhau Ä‘ược làm bởi bộ chèn vào trá»±c tiếp sớm.Số tối Ä‘a các lần lột một vòng lặp riêng lẻ Ä‘ược lột hoàn toàn.Số tối Ä‘a các lần lột một vòng lặp riêng lẻ.Số tối Ä‘a các lần bỏ cuộn một vòng lặp riêng lẻ.Số tối Ä‘a các lần há»§y chuyển Ä‘ổi nhánh trong một vòng lặp riêng lẻ.Tá»· lệ tối Ä‘a giữa kích cỡ mảng và các nhánh chuyển Ä‘ổi Ä‘ể chuyển Ä‘ảo Ä‘ể lấy chỗ trống.Tá»· lệ tối Ä‘a các cá»§a các lệnh chèn Ä‘ể xóa cá»§a biểu thức trong GCSE.Kích cỡ tối Ä‘a cá»§a cá»­a sổ nhìn trước cá»§a việc Ä‘ịnh thời lá»±a chọn.Xác xuất tối thiểu (theo phần trăm) có suy Ä‘oán Ä‘úng, Ä‘ể Ä‘ịnh thời lệnh thuộc lý thuyết có tính chất suy Ä‘oán.UID tối thiểu cần sá»­ dụng cho một lệnh không gỡ rối.Giá tối thiểu cá»§a một biểu thức giá rất cao trong sá»± chuyển Ä‘á»™ng bất biến vòng lặp.Số tối thiểu các lệnh tương á»©ng cần tính Ä‘ể nhảy chéoXác xuất tối thiểu có thể tới một khối nguồn Ä‘ể Ä‘ịnh thời giữa các khối một cách lý thuyết có tính chất suy Ä‘oán.Số các chu kỳ Ä‘ược bộ Ä‘ịnh thời mô-đu-lô swing tính khi kiểm tra sá»± xung Ä‘á»™t bằng DFA.Số các lệnh insn Ä‘ược thá»±c hiện trước khi hoàn tất quá trình lấy sẵn (prefetch).Số các quá trình lấy sẵn có thể chạy Ä‘ồng thời.Số các thanh ghi mỗi lớp còn lại chưa dùng do chuyển Ä‘á»™ng bất biến vòng lặp.Phần trăm hàm, tăng cấp theo tần số thá»±c hiện, mà phải Ä‘ược bao quát bởi việc tạo vết. ÄÆ°á»£c sá»­ dụng khi hồ sÆ¡ phản hồi sẵn có.Phần trăm hàm, tăng cấp theo tần số thá»±c hiện, mà phải Ä‘ược bao quát bởi việc tạo vết. ÄÆ°á»£c sá»­ dụng khi hồ sÆ¡ phản hồi không sẵn có.Tập tin phân giải.Kích cỡ cá»§a Ä‘ường vùng nhớ tạm cấp 1.Kích cỡ cá»§a vùng nhớ tạm cấp 1.Kích cỡ cá»§a vùng nhớ tạm cấp 2.Kích cỡ thân hàm cần thấy là lớn.Kích cỡ khung ngăn xếp nên thấy là lớn.Kích cỡ Ä‘Æ¡n vị thông dịch cần thấy là lớn.Tá»· lệ ngưỡngg Ä‘ể thá»±c hiện việc khá»­ bộ phận sá»± thừa sau khi nạp lại.Tá»· lệ ngưỡng cá»§a số Ä‘ếm lần thá»±c hiện cạnh tới hạn cÅ©ng cho phép thá»±c hiện việc khá»­ sá»± thừa sau khi nạp lại.Kiểu cá»§a hàm %qs tại %L là không thể truy cậpBiên giới trên Ä‘ể chia sẻ hằng số nguyên.Đây là phần mềm tá»± do: bạn có quyền sá»­a Ä‘ổi và phát hành lại nó.
KHÔNG CÓ BẢO HÀNH GÌ CẢ, THẬM CHÍ KHÔNG CÓ BẢO Äáº¢M ÄÆ¯á»¢C NGỤ Ã
KHẢ NĂNG BÁN HAY KHẢ NĂNG LÀM ÄÆ¯á»¢C VIỆC DỨT KHOÁT.
 
Đây là phần mềm tá»± do; hãy xem mã nguồn Ä‘ể tìm thấy Ä‘iều kiện sao chép.
KHÔNG CÓ BẢO HÀNH GÌ CẢ, THẬM CHÍ KHÔNG CÓ BẢO Äáº¢M ÄÆ¯á»¢C NGỤ Ã
KHẢ NĂNG BÁN HAY KHẢ NĂNG LÀM ÄÆ¯á»¢C VIỆC DỨT KHOÁT.
 
Tùy chọn này còn thiếu tài liệu hướng dẫn.Cái chuyển này Ä‘ã lạc hậu: Ä‘ừng dùng.Cái chuyển này Ä‘ã lạc hậu: hãy thay thế bằng -Werror=implicit-function-declaration.Tùy chọn này Ä‘ã lạc hậu: hãy thay thế bằng -Wextra.Cái chuyển này Ä‘ã lạc hậu: hãy thay thế bằng -fsanitize-recover=.Mô hình tuyến trình: %s
Thumb-1 dấu-chấm-động-bằng-phần-cứng VFP ABIThumb: Coi là con trỏ hàm có thể nhảy Ä‘ến mã không phải Thumb.Thumb: Coi là hàm không phải tÄ©nh có thể Ä‘ược gọi từ mã ARM.Thumb: Tạo ra khung ngăn xếp (loại lá) ngay cả khi không cần thiết.Thumb: Tạo ra khung ngăn xếp (không phải loại lá) ngay cả khi không cần thiết.Bật khả năng tiền xá»­ lý dùng %<-cpp%>Đừng sá»­ dụng tham chiếu GOTPLT cùng với -fpic hoặc -fPIC.Quá nhiều Ä‘ối số trong cuộc gọi Ä‘ến %qs tại %LQuá nhiều Ä‘ối số cho %s tại %LBẫy khi số nguyên chia cho số không.Coi các cảnh báo như là các lỗi.Coi số nguyên là 32-bit.Coi dòng có chữ â€œD” trong cột Ä‘ầu tiên là ghi chú.Coi tập tin phần Ä‘ầu còn thiếu là tập tin Ä‘ược tạo ra.Coi các cảnh báo Ä‘ã chỉ ra như là một lỗi.Hãy thá»­ chạy câu lệnh trợ giúp â€œjcf-dump --help” Ä‘ể xem thêm thông tin.
Hãy thá»­ chạy â€œ%s” trong trình bao Ä‘ể tăng giới hạn.
Thá»­ cho phép bộ liên kết chuyển Ä‘ổi cuộc gọi PIC sang cuộc gọi trá»±c tiếp.Thá»­ bố trí các loại có hướng một cách tóm gọn nhất có thể.Điều chỉnh mã cho bộ xá»­ lý Ä‘ưa ra.Điều chỉnh Ä‘á»™ ngấm ngầm vùng nhớ mong Ä‘ợi.Điều chỉnh cho CPU hay kiến trúc Ä‘ưa ra.UNIT không Ä‘ược chỉ ra tại %Lkhông thể tìm thấy ký hiệu %qsKhông thể tạo ra việc tải/lưu offset cho hợp nhấtKhông thể phân giải hàm Ä‘ặc tả %qs tại %LKhông cần %<*%> cho Ä‘ối chiếu %d cá»§a %d tại %CKhông cần câu lệnh %s tại %CKhông cần câu lệnh CASE tại %CKhông cần câu lệnh END tại %CKhông cần câu lệnh ENTRY tại %CGặp kết thúc tập tin bất thườngGặp phần tá»­ không cần â€œ%qc” trong chuỗi Ä‘ịnh dạng tại %LGặp kết thúc tập tin bất thường tại %qsGặp kết thức chuỗi Ä‘ịnh dạng bất thườngGặp kết thức mô-đun bất thườngGặp kiểu hạn chế không cần %qs tại %LCâu lệnh V/R chứa con số Ä‘Æ¡n vị quá lớnCâu lệnh V/R chứa con số Ä‘Æ¡n vị quá nhỏKhông hiểu intrinsic opKhông rõ toán tá»­ %%<%s%%> tại %%LKhông rõ tên thá»§ tục â€œ%qs” tại %CKhông thừa nhận giá trị tùy chọn không phụ thuộc endian: %qsKhông nhận ra tùy chọn Ä‘ể khởi tạo giá trị dấu chấm Ä‘á»™ng: %qsKhông nhận ra tùy chọn: "%qs"Không hỗ trợ mã â€œ%c” cho dấu chấm cố Ä‘ịnh:Không hỗ trợ toán hạng cho mã â€œ%c”Đối số giả chưa dùng %qs tại %LĐối số chưa dùng %qs Ä‘ược khai báo tại %LBiến số chưa dùng %qs Ä‘ược khai báo tại %LCách dùng: %s [TÙY_CHỌN]… TÊN_LỚPHẠNGmain [TẬP-TIN-XUẤT]
Cách dùng: %s [TÙY_CHỌN]… LỆNH_CON [TÙY-CHỌN]…
Cách dùng: %s [tuỳ_chọn] tập-tin…
Cách dùng: gcov [TÙY_CHỌN]… NGUỒN|ĐỐITƯỢNG…
 
Cách dùng: jcf-dump [TÙY_CHỌN]… HẠNG…
 
Hãy sá»­ dụng "-Wl,TÙY_CHỌN" Ä‘ể gá»­i tùy chọn Ä‘ó cho chương trình dịch mã số.
 
Hãy sá»­ dụng "-Wl,TÙY_CHỌN" Ä‘ể gá»­i tùy chọn Ä‘ó cho bộ liên kết.
 
Sá»­ dụng -G cho dữ liệu không phải Ä‘ược xác Ä‘ịnh bởi Ä‘ối tượng hiện thời.Sá»­ dụng -G cho dữ liệu cục bộ với Ä‘ối tượng.Sá»­ dụng Ä‘ôi dài 128-bit.Sá»­ dụng số nguyên 16-bit.Sá»­ dụng dấu chấm Ä‘á»™ng 32-bit.Sá»­ dụng số nguyên 32-bit.Sá»­ dụng ABI 32-bit.Sá»­ dụng thanh ghi dấu chấm Ä‘á»™ng 32-bit.Sá»­ dụng thanh ghi chung 32-bit.Sá»­ dụng mục nhập 4-byte trong bảng cái chuyển.Sá»­ dụng 4 bộ tích Ä‘a phương tiện.Sá»­ dụng câu lệnh nhân ná»­a từ 4xx.Sá»­ dụng câu lệnh dlmzb tìm kiếm chuỗi 4xx.Sá»­ dụng 64 FPRs.Sá»­ dụng 64 GPRs.Sá»­ dụng dấu chấm Ä‘á»™ng 64-bit.Sá»­ dụng ABI 64-bit.Sá»­ dụng thanh ghi dấu chấm Ä‘á»™ng 64-bit.Sá»­ dụng thanh ghi chung 64-bit.Sá»­ dụng Ä‘ôi dài 64-bit.Sá»­ dụng 8 bộ tích Ä‘a phương tiện.Sá»­ dụng Ä‘ôi dài 80-bit.Sá»­ dụng thanh ghi dành riêng cho ABI.Sá»­ dụng câu lệnh AltiVec.Sá»­ dụng thư viện C cá»§a Bionic.Sá»­ dụng câu lệnh rất có thể thích hợp với nhanh (Branch Likely), thì ghi Ä‘è lên giá trị mặc Ä‘ịnh cá»§a kiến trúc Ä‘ó.Sá»­ dụng câu lệnh CONST16 Ä‘ể nạp các hằng số.Sá»­ dụng EABI.Dùng các chỉ lệnh Äá»‹a chỉ áº¢o hóa Nâng cao.Sá»­ dụng thư viện C cá»§a GNU.Sá»­ dụng phần sdata/sbss tương Ä‘ối với GP.Sá»­ dụng chức năng Ä‘ặt Ä‘ịa chỉ tương Ä‘ối với GP Ä‘ể truy cập Ä‘ến dữ liệu nhỏ.Sá»­ dụng các quy tắc xếp hàng H8/300.Sá»­ dụng toán học IEEE cho phép so sánh dấu chấm Ä‘á»™ngSá»­ dụng câu lệnh ISA 2.07 Category:Vector.AES và Category:Vector.SHA2.Sá»­ dụng LRA thay cho reload (cổ Ä‘iển).Sá»­ dụng LRA thay cho reload .Dùng chỉ lệnh MCU.Sá»­ dụng câu lệnh MIPS-3D.Sá»­ dụng câu lệnh MIPS-DSP REV 2.Sá»­ dụng câu lệnh MIPS-DSP.Sá»­ dụng hỗ trợ nhánh Ä‘ặc trưng cho Mingw.Sá»­ dụng thanh ghi từ kép (thay cho từ bốn) Neon Ä‘ể véc-tÆ¡ hóa.Sá»­ dụng thanh ghi từ bốn (thay cho từ Ä‘ôi) Neon Ä‘ể véc-tÆ¡ hóa.Sá»­ dụng toán tá»­ dịch mã số %reloc() kiểu NewABI.Sá»­ dụng gợi-nhớ-P cho nhánh dá»± Ä‘oán tÄ©nh là bắt Ä‘ược.Sá»­ dụng câu lệnh â€œmad” loại PMC.Sá»­ dụng các câu lệnh tùy chọn cá»§a nhóm General Purpose (thường dụng) PowerPC.Sá»­ dụng các câu lệnh tùy chọn cá»§a nhóm Graphics (đồ họa) PowerPC.Sá»­ dụng câu lệnh mfcr trường Ä‘Æ¡n PowerPC V2.01.Sá»­ dụng câu lệnh làm tròn loại dấu chấm Ä‘á»™ng PowerPC V2.02.Sá»­ dụng câu lệnh popcntb PowerPC V2.02.Sá»­ dụng câu lệnh so sánh các byte PowerPC V2.05.Sá»­ dụng câu lệnh popcntd PowerPC V2.06.Sá»­ dụng tập hợp câu lệnh PowerPC-64.Sá»­ dụng ROM thay cho RAM.Sá»­ dụng quy Æ°á»›c gá»­i qua thanh ghi loại SSE cho chế Ä‘á»™ SF và DF.Sá»­ dụng câu lệnh SmartMIPS.Sá»­ dụng cú pháp dịch mã số UNIX.Sá»­ dụng dấu chấm Ä‘á»™ng loại VAX.Sá»­ dụng quy Æ°á»›c cấu trúc VAXC.Dùng các chỉ lệnh Virtualization Application Specific.Sá»­ dụng một loại dài 32-bit.Có tập tin chưa Ä‘ịnh dạng thì sá»­ dụng một ký hiệu Ä‘ánh dấu mục ghi loại 4 byte.Sá»­ dụng một loại dài 64-bit.Sá»­ dụng Ä‘ịa chỉ mà cấp phát thanh ghi toàn cục.Ghi rõ số các thanh ghi cần dành riêng cho bộ quản lý tín hiệu ngắt.Sá»­ dụng tên thanh ghi xen kẽ.Sá»­ dụng một loại số nguyên 8-bit.Có tập tin chưa Ä‘ịnh dạng thì sá»­ dụng một ký hiệu Ä‘ánh dấu mục ghi loại 8 byte.Dùng giá trị trá»±c tiếp cỡ tùy Ã½ trong thao tác bit.Sá»­ dụng thứ tá»± byte về cuối lớn.Sá»­ dụng dãy tạo-nhánh-và-ngắt (branch-and-break) Ä‘ể kiểm tra có số nguyên chia cho số không.Sá»­ dụng BRAS cho tập tin thá»±c thị < 64k.Sá»­ dụng thanh ghi bị cuộc gọi ghi Ä‘è cho tham số và giá trị trả lại.Sá»­ dụng phép Ä‘ầu cÆ¡ loại Ä‘iều khiển.Sá»­ dụng phép Ä‘ầu cÆ¡ loại dữ liệu sau khi nạp lại.Sá»­ dụng phép Ä‘ầu cÆ¡ loại dữ liệu trước khi nạp lại.Sá»­ dụng câu lệnh dấu chấm Ä‘á»™ng thập phân bằng phần cứng.Sá»­ dụng phương pháp mặc Ä‘ịnh Ä‘ể quản lý sdata.Sá»­ dụng một quy Æ°á»›c gọi khác bằng â€œrtd”.Sá»­ dụng tham chiếu trá»±c tiếp Ä‘ối với %gs khi truy cập Ä‘ến dữ liệu cá»§a nó.Dùng các chỉ lệnh Äá»‹a chỉ áº¢o hóa Nâng cao (XPA).Sá»­ dụng câu lệnh so sánh loại dấu chấm Ä‘á»™ng tùy theo Ã©pxilông.Sá»­ dụng câu lệnh dời dấu chấm Ä‘á»™ng Ä‘ến/từ GPR PowerPC V2.05 mở rộng.Sá»­ dụng quy Æ°á»›c gọi f2c.Sá»­ dụng các tính năng cá»§a CPU Ä‘ưa ra, và Ä‘ịnh thời mã cho CPU Ä‘ó.Sá»­ dụng các tính năng cá»§a và Ä‘ịnh thời CPU Ä‘ó.Sá»­ dụng mô hình cá»­a sổ thanh ghi phẳng.Sá»­ dụng câu lệnh dấu chấm Ä‘á»™ng chính Ä‘ôi.Sá»­ dụng thanh ghi dấu chấm Ä‘á»™ng.Sá»­ dụng cả bộ thanh ghi cho phân bổ thanh ghi.Dùng bố trí trường bít gcc mặc Ä‘ịnhSá»­ dụng mẫu mã SPARC-V9 Ä‘ưa ra.Sá»­ dụng mẫu mã TILE-Gx Ä‘ưa ra.Dùng chế Ä‘á»™ Ä‘ịa chỉ Ä‘ã cho.Sá»­ dụng phương ngôn dịch mã số Ä‘ưa ra.Sá»­ dụng phương ngôn lưu theo nhánh cục bộ.Sá»­ dụng mẫu mã x86-64 Ä‘ưa ra.Sá»­ dụng FP (dấu chấm Ä‘á»™ng) bằng phần cứng (mặc Ä‘ịnh).Sá»­ dụng dấu chấm Ä‘á»™ng bằng phần cứng.Sá»­ dụng câu lệnh chia phần cứng trong ColdFire.Dùng chỉ lệnh chuyển Ä‘ổi dấu chấm Ä‘á»™ng bằng phần cứng.Sá»­ dụng các chỉ lệnh chấm Ä‘á»™ng phần cứng.Dùng chỉ lệnh bình phương chấm Ä‘á»™ng bằng phần cứng.Sá»­ dụng dấu chấm Ä‘á»™ng loại phần cứng.Sá»­ dụng dấu chấm Ä‘á»™ng bằng phần cứng.Sá»­ dụng câu lệnh loại bốn dấu chấm Ä‘á»™ng phần cứngSá»­ dụng câu lệnh loại bốn dấu chấm Ä‘á»™ng phần cứng.Sá»­ dụng các chỉ lệnh thá»±c thi giao dịch bằng phần cứng.Sá»­ dụng phép Ä‘ầu cÆ¡ loại Ä‘iều khiển theo khối.Sá»­ dụng phép Ä‘ầu cÆ¡ loại dữ liệu theo khối sau khi nạp lại.Sá»­ dụng phép Ä‘ầu cÆ¡ loại dữ liệu theo khối trước khi nạp lại.Sá»­ dụng tên thanh ghi loại in/loc/out.Sá»­ dụng câu lệnh CALLXn gián tiếp cho chương trình lớn.Sá»­ dụng cuộc gọi gián tiếp.Sá»­ dụng mẫu Ä‘ược chèn vào trá»±c tiếp Ä‘ể sao chép vùng nhớ.Sá»­ dụng chỉ lệnh madd/msub số nguyên.Sá»­ dụng thứ tá»± byte về cuối nhỏ.Sá»­ dụng câu lệnh ll, sc và sync.Sá»­ dụng câu lệnh Ä‘a phương tiện.Sá»­ dụng các chỉ lệnh microMIPS.Sá»­ dụng câu lệnh nhân_cộng/trừ.Dùng các chỉ lệnh nhân cao cho các phần cao cá»§a phép nhân 32x32.Sá»­ dụng thư viện musl CSá»­ dụng bố trí trường bit sở hữu (MS)Sá»­ dụng bố trí trường bit sở hữu (MS).Sá»­ dụng các mẫu adddi3/subdi3 mới.Sá»­ dụng quy Æ°á»›c gọi thông thường.Sá»­ dụng bảng hiệu số cho cuộc gọi phương pháp áº£o.Sá»­ dụng chỉ một mục nhập TOC từng thá»§ tục.Sá»­ dụng bố trí ngăn xếp Ä‘óng gói.Sá»­ dụng câu lệnh dấu chấm Ä‘á»™ng Ä‘ôi-đơn.Sá»­ dụng câu lệnh so sánh mẫu.Sá»­ dụng quy Æ°á»›c gọi di Ä‘á»™ng.Bật chức năng bảo vệ ngăn xếp asan.Sá»­ dụng câu lệnh Ä‘ẩy Ä‘ể lưu các Ä‘ối số gá»­i Ä‘i.Sá»­ dụng vùng màu Ä‘ỏ trong mã x86-64.Sá»­ dụng ngăn xếp thanh ghi cho tham số và giá trị trả lại.Sá»­ dụng thanh ghi Ä‘ể gá»­i Ä‘ối số qua.Sá»­ dụng những thanh ghi r2 và r5.Sá»­ dụng phiên bản sdram cá»§a thời gian chạy.Sá»­ dụng thư viện dùng chung.Sá»­ dụng hàm kiểm tra phép Ä‘ầu cÆ¡ loại dữ liệu Ä‘Æ¡n giản Ä‘ể Ä‘ầu cÆ¡ về Ä‘iều khiển.Dùng hàm kiểm tra phép Ä‘ầu cÆ¡ loại dữ liệu Ä‘Æ¡n giản.Sá»­ dụng thời gian chạy cá»§a bộ mô phỏng mà không có véc-tÆ¡.Sá»­ dụng thời gian chạy cá»§a bộ mô phỏng.Sá»­ dụng dấu chấm Ä‘á»™ng bằng phần mềm (mặc Ä‘ịnh)Sá»­ dụng so sánh dấu chấm Ä‘á»™ng bằng phần mềm.Sá»­ dụng dấu chấm Ä‘á»™ng bằng phần mềm.Sá»­ dụng khuynh hướng về ngăn xếp.Sá»­ dụng hàm chính tiêu chuẩn làm Ä‘iểm vào Ä‘ể khởi chạy.Sá»­ dụng cấu trúc khi xếp hàng mạnh hÆ¡n các bản sao từ Ä‘ôi.Sá»­ dụng mẩu cho Ä‘oạn mở Ä‘ầu hàm.Sá»­ dụng chương trình con cho Ä‘oạn mở/đóng hàm.Sá»­ dụng câu lệnh synci Ä‘ể làm tắt i-cache.Dùng chỉ lệnh tas.b cho __atomic_test_and_set.Dùng lệnh mở rộng AltiVec ABI.Sá»­ dụng phần mở rộng hàm trỏ Cray Pointer.Sá»­ dụng cú pháp dịch mã số DEC.Sá»­ dụng ELFv1 ABI.Sá»­ dụng ELFv2 ABI.Sá»­ dụng phần mở rộng GNU tới Ä‘ịnh dạng PE cho dữ liệu chung xếp hàng.Dùng lệnh mở rộng SPE ABI.Sá»­ dụng câu lệnh loại trường-bit.Sá»­ dụng câu lệnh chia.Dùng xếp hàng dữ liệu Ä‘ã cho.Sá»­ dụng những tùy chọn bật nhiều tính năng nhất tùy theo giới hạn cá»§a tùy chọn khác.Tạo ra câu lệnh chuỗi mvcle Ä‘ể di chuyển khối.Sá»­ dụng thời gian chạy cá»§a bộ mô phỏng.Sá»­ dụng câu lệnh bẫy Ä‘ể kiểm tra có số nguyên chia cho số không.Sá»­ dụng thư viện uClibc.Sá»­ dụng hàm khởi chạy Unicode và xác Ä‘ịnh vÄ© lệnh UNICODE.Sá»­ dụng câu lệnh véc-tÆ¡/vô_hướng (VSX).Sá»­ dụng việc nạp vùng nhớ loại mở rộng số không, không phải việc mở rộng ký hiệu.Dùng tùy-chọn này Ä‘ể chuẩn Ä‘oán.Đang sá»­ dụng các Ä‘ặc tả dá»±ng sẵn.
thuộc tính VALUE tại %Ccâu lệnh VALUE tại %CChế Ä‘á»™ VOIDmode trên một Ä‘ầu rathuộc tính VOLATILE tại %Ccâu lệnh VOLATILE tại %CCác chỉ lệnh VSX và SPE không thể cùng tồn tạiĐối số hợp lệ cho tùy chọn -msdata=.Đối số hợp lệ cho -malign-:Đối số hợp lệ cho -mcode-readable=:Đối số hợp lệ cho -mfloat-gprs=:Đối số hợp lệ cho -mfpmath=:Đối số hợp lệ cho -mr10k-cache-barrier=:Đối số hợp lệ cho -mstringop-strategy=:Đối số hợp lệ cho -mtp=:Biến %qs không thể xuất hiện trong biểu thức tại %LBiến %qs không phải là Ä‘ối số hàm giả tại %LGiá trị có thể Ä‘ặt Ä‘ược có kích cỡ Ä‘ến số này thì nằm trong phần based (dá»±a vào). (mặc Ä‘ịnh là 0).Giá trị có thể Ä‘ặt Ä‘ược có kích cỡ Ä‘ến số này thì nằm trong phần tiny (rất nhỏ). (mặc Ä‘ịnh là 4).Đối số véc-tÆ¡ bị gá»­i cho hàm không nguyên mẫuABI thư viện véc-tÆ¡ cần sá»­ dụng.Cảnh báo về lời khai báo â€œextern” (bên ngoài) á»Ÿ ngoại phạm vi tập tin.Cảnh báo về cấu trúc "đáng ngờ".Cảnh báo về @selector()s không có lời khai báo trước.Cảnh báo về cấu trúc C không nằm trong tập hợp phụ chung cá»§a C và C++.Cảnh báo về cấu trúc C++ mà nó có nghÄ©a khác nhau giữa ISO C++ 1998 và ISO C++ 2011.Cảnh báo về cấu trúc C++ mà nó có nghÄ©a khác nhau giữa ISO C++ 2001 và ISO C++ 2014.Cảnh báo về các cấu trúc kế thừa C++11 khi cÆ¡ sở có một cấu tá»­ variadic.Cảnh báo khi NULL Ä‘ược gá»­i cho khe Ä‘ối số Ä‘ánh dấu là yêu cầu giá trị không phải NULL.Cảnh báo về tập tin PCH Ä‘ược tìm thấy mà không phải Ä‘ược sá»­ dụng.Cảnh báo về chuỗi Ä‘ịnh dạng không phải có nghÄ©a chữCảnh báo về sá»­ dụng __TIME__, __DATE__ và __TIMESTAMP__.Cảnh báo về sá»± xếp hàng các khối CHUNG.Cảnh báo về thân trống trong một câu lệnh â€œif” (nếu) hay â€œelse” (không thì).Cảnh báo về so sánh biểu thứ lôgíc với một giá trị nguyên khác Ä‘úng/sai.Cảnh báo về thá»§ tục Ä‘ược gọi mà không phải Ä‘ược khai báo dứt khoát.Cảnh báo về cuộc gọi có giao diện ngầm.Cảnh báo về hàm Ã¡p kiểu cho kiểu không tương thích.Cảnh báo về sá»± Ã©p kiểu mà loại bỏ Ä‘oạn Ä‘iều kiện.Cảnh báo về sá»± so sánh các loại Ä‘ếm (enum) khác nhau.Cảnh báo về số nguyên chia cho số không vào lúc biên dịch.Cảnh báo về số nguyên chia cho số không vào lúc biên dịch.Cảnh báo về sá»± tạo mục mảng tạm thời.Cảnh báo về xóa các Ä‘ối tượng Ä‘a thể với cấu trúc không phải áº£o.Cảnh báo về sá»­ dụng loại AltiVec â€œvector long â€¦â€.Cảnh báo về các Ä‘iều kiện trùng lắp trong chuỗi if-else-if.Cảnh báo về so sánh bằng liên quan Ä‘ến biểu thức REAL hay COMPLEX.Cảnh báo về các Ä‘ặc Ä‘iểm không có trong ISO C90, nhưng lại có trong ISO C99.Cảnh báo về các Ä‘ặc Ä‘iểm không có trong ISO C99, nhưng lại có trong ISO C11.Cảnh báo về các Ä‘ặc Ä‘iểm không có trong ISO C90, nhưng lại có trong ISO C99Cảnh báo về chuỗi Ä‘ịnh dạng không phải có nghÄ©a chữ.Cảnh báo về chuỗi Ä‘ịnh dạng chứa NUL byte.Cảnh báo về lời gọi hàm ngầm.Cảnh báo về tham số hàm Ä‘ược khai báo mà không ghi rõ loại, trong hàm kiểu K&R.Cảnh báo về số học trỏ Ä‘ến hàm.Cảnh báo về hàm có thể yêu cầu thuộc tính Ä‘ịnh dạng.Cảnh báo về hàm toàn cục không có lời khai báo trước.Cảnh báo về hàm toàn cục mà không có nguyên mẫu.Cảnh báo về sá»± chuyển Ä‘ổi ngầm "float" thành "double".Cảnh báo khai báo ngầm.Cảnh báo về lời khai báo hàm ngầm.Cảnh báo về sá»± không thể chuyển Ä‘ổi số nguyên thành con trỏ và con trỏ thành số nguyên.Cảnh báo khi sai sá»­ dụng vÄ© lệnh â€œoffsetof”.Cảnh báo về các vÄ© lệnh Ä‘ã Ä‘ịnh nghÄ©a trong tập tin chính mà không Ä‘ược sá»­ dụng.Cảnh báo về các biến tá»± Ä‘á»™ng tá»± Ä‘á»™ng không Ä‘ược khởi tạo.Cảnh báo về lỗi truy cập bộ nhớ Ä‘ược tìm thấy bởi Pointer Bounds Checker.Cảnh báo về ký hiệu â€œ&” còn thiếu trong hằng ký tá»± tiếp tục.Cảnh báo về Ä‘oạn khởi tạo cấu trúc thiếu trường.Cảnh báo về thiếu hàm giải cấp phát cỡ.Cảnh báo lạm dụng pragmas.Cảnh báo chuyển Ä‘ổi ngầm.Cảnh báo về nhiều khai báo trên cùng Ä‘ối tượng.Cảnh báo về bộ há»§y cấu trúc không phải áº£o.Cảnh báo về phần mở rộng chiều rộng scanf/printf không phải tùy theo ISO.Cảnh báo về biểu thức toán học bị tràn.Cảnh báo về các tên hàm áº£o quá tải.Cảnh báo về ghi Ä‘è lên Ä‘oạn khởi tạo mà có hiệu á»©ng cạnh.Cảnh báo về ghi Ä‘è lên Ä‘oạn khởi tạo mà không có hiệu á»©ng cạnh.Cảnh báo về trường bit Ä‘óng gói có hiệu số bị thay Ä‘ổi trong GCC 4.4.Cảnh báo về Ã©p Ä‘ổi con trỏ cái mà sẽ gia tăng sắp hàng.Cảnh báo về Ä‘oạn khởi tạo cá»§a cấu trúc cần bộ khởi tạo thiết kế.Cảnh báo về Ä‘ối số giả có thể bị chồng lấp.Cảnh báo về hàm Ä‘ịnh dạng có thể gây ra vấn Ä‘ề về hàm Ä‘ịnh dạng.Cảnh báo về sá»± vi phạm quy tắc Ä‘iểm liên tiếp.Cảnh báo về Ä‘oạn khởi tạo có thể thiếu dấu ngoặc móc.Cảnh báo về dấu ngoặc Ä‘Æ¡n có thể bị thiếu.Cảnh báo về ghi chú khối có thể lồng nhau, và ghi chú C++ chiếm giữ nhiều dòng vật lý.Cảnh báo khi phát hiện sá»± dị thường về chuỗi Ä‘ịnh dạng printf/scanf/strftime/strfmon.Cảnh báo về hằng-chữ-số-thá»±c với chữ-số-mÅ© 'q'.Cảnh báo về trả về các cấu trúc, liên hợp hay mảng.Cảnh báo về các khác biệt dấu với các hàm Ä‘ịnh dạng.Cảnh báo về so sánh có và không dấu.Cảnh báo về hiệu bài thừa Ä‘ẳng sau #elif và #endif.Cảnh báo về Ä‘ịnh dạng strftime xuất năm chỉ có hai chữ số.Cảnh báo về chữ in thấp có loại â€œchar”.Cảnh báo về lời khai báo â€œmain” Ä‘áng ngờ.Cảnh báo về sá»­ dụng Ä‘ịa chỉ vùng nhớ một cách Ä‘áng ngờ.Cảnh báo về switches với biểu thức Ä‘iều khiển trả về lô-gíc.Cảnh báo về những thứ thay Ä‘ổi giữa -fabi-version hiện tại và phiên bản chỉ Ä‘ịnh.Cảnh báo về trường hợp sẽ thay Ä‘ổi khi biên dịch bằng một bộ biên dịch tương thích với ABI.Cảnh báo về biểu thức ký tá»± bị cắt ngắn.Cảnh báo về dòng nguồn bị cắt ngắn.Cảnh báo NULL chưa Ã¡p kiểu dùng làm ký hiệu cầm canh.Cảnh báo về biểu thức hằng thuộc số bị tràn ngượcCảnh báo về các biến tá»± Ä‘á»™ng tá»± Ä‘á»™ng không Ä‘ược khởi tạo.Cảnh báo về khai báo hàm không Ä‘ược khai báo mẫu trước.Cảnh báo về pragmas không thừa nhận.Cảnh báo hằng thá»±c không có hậu tố.Cảnh báo về Ä‘ối số giả có không dùng.Cảnh báo về sá»­ dụng hằng số ký tá»± Ä‘a ký tá»±.Cảnh báo về Ã¡p kiểu vô Ã­ch.Cảnh báo khi người dùng xác Ä‘ịnh một thư mục không tồn tại.Cảnh báo về việc dùng khai báo __attribute__((đã lạc hậu)).Cảnh báo về dùng các vÄ© lệnh variadic.Cảnh báo về biến có thể bị thay Ä‘ổi bởi â€œlongjmp” hoặc â€œvfork”.Cảnh báo về biến bị tá»± khởi tạo.Cảnh báo về sá»± vượt quá quy tắc Effective C++.Cảnh báo về Ä‘ịnh dạng có chiều dài số không.Cảnh báo về Ä‘ịnh dạng có chiều dài số khôngCảnh báo cho cấu trúc hỗ-trợ-có-điều-kiện.Cảnh báo về chuyển Ä‘ổi NULL từ/đến một loại không phải hàm trỏ.Cảnh báo về sá»± chuyển Ä‘ổi loại ngầm giữa số nguyên có dấu và không có dấu.Cảnh báo về sá»± chuyển Ä‘ổi loại ngầm có thể làm nguyên nhân mất chính xác số thá»±c dấu chấm Ä‘á»™ng.Cảnh báo về sá»± chuyển Ä‘ổi loại ngầm có thể thay Ä‘ổi một giá trị.Cảnh báo về lời khai báo kiểu cÅ©.Cảnh báo nếu có tập tin .class quá cÅ©.Cảnh báo nếu một sá»± gán kiểu C Ä‘ược sá»­ dụng trong một chương trình.Cảnh báo khi so sánh luôn Æ°á»›c lượng là Ä‘úng hoặc là sai.Cảnh báo nếu sá»­ dụng một tính năng bộ biên dịch, lớp, phương pháp hay trường Ä‘ã lạc hậu.Cảnh báo nếu một hàm sá»­ dụng alloca hoặc tạo một mảng có kích cỡ năng Ä‘á»™ng.Cảnh báo khi một lời khai báo nội bộ áº©n một biến minh dụ.Cảnh báo nếu một chọn có nhiều phương thức.Cảnh báo nếu có một hàm riêng lẻ với kích cỡ khung vượt quá kích cỡ khung Ä‘ưa ra.Cảnh báo về chuỗi dài hÆ¡n chiều dài di Ä‘á»™ng tối Ä‘a Ä‘ược tiêu chuẩn ghi rõ.Cảnh báo nếu một Ä‘ối tượng con có thuộc tính abi_tag cái mà kiểu Ä‘ối tượng hoàn chỉnh không có.Cảnh báo nếu một thá»§ tục người dùng có cùng một tên với một Ä‘iều thá»±c chấtCảnh báo nếu mảng có Ä‘á»™ dài biến Ä‘ổi Ä‘ược dùng.Cảnh báo nếu một mảng bị truy cập á»Ÿ ngoài phạm vi cá»§a nó.Cảnh báo về lời xác Ä‘ịnh tham số kiểu cÅ©.Cảnh báo nếu tìm câu lệnh trống Ä‘ã lạc hậu.Cảnh báo nếu số lượng dịch trái là số Ã¢m.Cảnh báo nếu ghi rõ bộ sá»­a Ä‘ổi không cần thiết.Cảnh báo nếu gá»­i cho hàm quá nhiều Ä‘ối số Ä‘ối với chuỗi Ä‘ịnh dạng cá»§a nó.Cảnh báo nến từ hạn Ä‘ịnh trên mảng cái mà Ä‘ích trỏ Ä‘ến bị loại bỏ.Cảnh báo nếu số lượng dịch >= Ä‘á»™ rộng cá»§a kiểu.Cảnh báo nếu số lượng dịch là số Ã¢m.Cảnh báo nếu kiểm tra Ä‘ẳng thức cá»§a con số dấu chấm Ä‘á»™ng.Cảnh báo nếu con trỏ trong phép gán con trỏ có thể vượt qua Ä‘ích cá»§a nó.Cảnh báo nếu kiểu cá»§a biến có thể không có khả năng tương thích với C.Cảnh báo nếu từ hạn Ä‘ịnh trên các con trỏ bị loại bỏ.Cảnh báo về Ä‘iều thá»±c chất không phải thuộc về tiêu chuẩn Ä‘ược chọnCảnh báo lúc Ä‘ịnh nghÄ©a không gian tên.Cảnh báo về khai báo hàm mẫu sÆ¡ cấp.Cảnh báo khi __builtin_frame_address hay __builtin_return_address Ä‘ược dùng không an toàn.Cảnh báo khi chạm trán chỉ thị #warning.Cảnh báo khi xuất một câu lệnh mã vi Cell.Cảnh báo khi một vÄ© lệnh bộ tiền xá»­ lý dá»±ng sẵn chưa Ä‘ược xác Ä‘ịnh hoặc Ä‘ược xác Ä‘ịnh lại.Cảnh báo khi biến hằng không Ä‘ược dùng.Cảnh báo khi một lời khai báo không ghi rõ loại.Cảnh báo khi phát hiện một lời khai báo Ä‘ẳng sau một câu lệnh.Cảnh báo khi hàm không thể triển khai thành HSAIL.Cảnh báo khi hàm không Ä‘ược dùng.Cảnh báo khi tham số cá»§a hàm chỉ Ä‘ược Ä‘ặt, nếu không thì không sá»­ dụng.Cảnh báo khi tham số cá»§a hàm không Ä‘ược dùng.Cảnh báo khi một bước nhảy còn thiếu sá»± khởi tạo biến.Cảnh báo khi nhãn không Ä‘ược dùng.Cảnh báo khi mảng bên-tay-trái Ä‘ược tái cấp phát.Cảnh báo khi biến bên-tay-trái Ä‘ược tái cấp phát.Cảnh báo khi chuỗi văn â€œ0” Ä‘ược dùng như là con trỏ null.Cảnh báo khi một toán tá»­ hợp lý cứ Æ°á»›c lượng là Ä‘úng hoặc là sai một cách Ä‘áng ngờ.Cảnh báo khi có một sá»± gán cho một hàm trỏ cho một số nguyên có kích cỡ khác.Cảnh báo khi biến thanh ghi Ä‘ược khai báo là hay thay Ä‘ổi.Cảnh báo khi biến chỉ Ä‘ược Ä‘ặt, nếu không thì không sá»­ dụng.Cảnh báo khi biến không Ä‘ược dùng.Cảnh báo khi mọi bộ cấu trúc và bộ há»§y cấu trúc Ä‘ều là riêng.Cảnh báo khi giá trị cá»§a biểu thức không Ä‘ược dùng.Cảnh báo khi không không thể dùng hàm chung dòng.Cảnh báo khi chuyển một tối Æ°u mà nó bị tắtCảnh báo khi cố giải phóng một Ä‘ối tượng không-heap.Cảnh báo khi chuyển Ä‘ổi loại hàm trỏ sang hàm thành viên.Cảnh báo khi xóa một con trỏ tới kiểu không hoàn toàn.Cảnh báo khi hàm bạn không làm mẫu Ä‘ược khai báo bên trong một mẫu.Cảnh báo khi trình dịch Ä‘ổi thứ tá»± mã.Cảnh báo khi có một sá»± gán cho một hàm trỏ từ một số nguyên có kích cỡ khác.Cảnh báo khi chuyển Ä‘ổi giữa một con trỏ tới kiểu không tương thích.Cảnh báo khi typedefs nội bộ Ä‘ịnh nghÄ©a hàm mà nó không Ä‘ược dùng.Cảnh báo khi nào Ä‘oạn Ä‘iều kiện loại bị bỏ qua.Cảnh báo khi nào một sá»± gán Objective-C bị chặn bởi bộ nhặt rác.Cảnh báo khi nào các thuộc tính bị bỏ qua.Cảnh báo khi nào Ä‘oạn Ä‘iều kiện loại bị bỏ qua.Cảnh báoKhi tạo ra mã -mabicalls thì cho phép tập tin thá»±c thi sá»­ dụng PLT và sao chép sá»± Ä‘ịnh vị lại.Khi tạo ra mã -mabicalls, làm cho mã thích hợp với sá»­ dụng trong thư viện dùng chung.Có nên sá»­ dụng loại hợp nguyên tắc hay không.Thuật toán nào Ä‘ược Ã¡p dụng.Trong khi cài Ä‘ặt bộ tiếp hợp tín hiệu: %mTrong khi cài Ä‘ặt stack tín hiệu: %mKhắc phục một số lỗi mflo/mfhi VR4130 nào Ä‘ó.Khắc phục một sá»± dị thường phần cứng bằng cách thêm một số NOP vào trước nóKhắc phục một lỗi phần cứng 4300 sớm.Khắc phục lỗi trong câu lệnh nhân lên.Khắc phục một số lỗi 24K nào Ä‘ó.Khắc phục một số lỗi R10000 nào Ä‘ó.Khắc phục một số lỗi R4000 nào Ä‘ó.Khắc phục một số lỗi R4400 nào Ä‘ó.Khắc phục một số lỗi RM7000 nào Ä‘ó.Khắc phục một số lỗi VR4120 nào Ä‘ó.Khắc phục một những lỗi cho các lõi SB-1 bản sá»­a Ä‘ổi 2 sớm.Khắc phục lỗi nhân lên phần cứng.XXX vào pop_everything ()
XXX rời bỏ pop_everything ()
Bạn cần một tập-tin khởi chạy C cho -msys-crt0=Nền tảng Ä‘ích cá»§a bạn không hỗ trợ -fcheck-pointer-boundsBộ mô tả Ä‘ịnh dạng chứa chiều rộng số không[Đang rời khỏi %s]
[không tìm thấy %s][mặc Ä‘ịnh][bị tắt][đã bật][super â€¦] phải xuất hiện trong ngữ cảnh phương thứccần câu lệnh _Cilk_for__builtin_rx_%s nhận â€œC”, â€œZ”, â€œS”, â€œO”, â€œI”, hoặc â€œU”__builtin_set_thread_pointer không Ä‘ược hỗ trợ trên Ä‘ích này__builtin_thread_pointer không Ä‘ược hỗ trợ trên Ä‘ích này__float128 và __ibm128 không thể Ä‘ược dùng trong cùng một biểu thức__float128 và long double không thể Ä‘ược dùng trong cùng một biểu thức__fp16 và không ldrh__ibm128 và long double không thể Ä‘ược dùng trong cùng một biểu thứcBiến __io thì hay thay Ä‘ổi theo mặc Ä‘ịnh.tham số __sec_implicit_index phải là một biểu thức hằng số nguyên““custom-%s=” Ä‘ối số cần các chữ sốtoán tá»­ dấu phẩy không Ä‘ược xuất hiện trong biểu thức hằngcấu tá»­ không thể là hàm thành viên tÄ©nhcấu tá»­ không thể là %<concept%>há»§y tá»­ không thể là %<concept%>há»§y tá»­ không thể là %<constexpr%>cú gọi hàm không Ä‘ược xuất hiện trong biểu thức hằngkhông cho phép Ä‘ịnh nghÄ©a hàm tại Ä‘âymột mẫu không thể là mặc Ä‘ịnhmột chuỗi lớn là không hợp lệ trong ngữ cảnh nàybỏ dở lúc %s, tại %s:%dthanh ghi tổng không phải là số nguyên hằngtham số thá»±c tế cho INTENT = OUT/INOUTadd_sym(): Chế Ä‘á»™ cỡ saiđịa chỉ cá»§a nhãn %qD Ä‘ược trả vềđịa chỉ cá»§a biến cục bộ %q+D Ä‘ược trả vềhiệu số Ä‘ịa chỉ không phải là một hằng sốtoán hạng Ä‘ịa chỉ yêu cầu ràng buộc cho thanh ghi X, Y, hay Zđược biết làsắp hàng cho %q+D phải Ã­t nhất %dđối số phân bổ Ä‘ượccÅ©ng tìm thấy %<%c%s%>phương thức còn chưa rõ ràng %s%s%squá tải chưa rõ ràng Ä‘ối vớiphép gán không thể Ä‘ược xuất hiện trong biểu thức hằngphép gia số không thể Ä‘ược xuất hiện trong biểu thức hằngphép gia số không Ä‘ược phép xuất hiện trong biểu thức hằngniên Ä‘ạisai niên Ä‘ại: và %qT không có các cấu tá»­ mẫuargs Ä‘ược Ä‘ịnh dạng không %<…%>đối số %d cá»§a %qE phải là bội số cá»§a %dđối số %d cá»§a %qE phải là một Ä‘ịa chỉđối số %d cá»§a %qE phải nằm trong vùng %d…%dđối số %qd không phải hằng sốkhông nhận ra tham số %qs cho %<-Wnormalized%>không nhận ra Ä‘ối số %qs cho %<-femit-struct-debug-detailed%>không hiểu Ä‘ối số %qs cho %<-femit-struct-debug-detailed%>đối số 1 phải là 0 hay 2đối số 1 phải là kiểu văn không dấu 1-bitđối số 1 phải là kiểu văn có dấu 5-bitđối số 1 phải là Ã¡nh xạđối số 1 phải là trường 8-bitđối số 1 cá»§a __builtin_paired_predicate nằm ngoài phạm viđối số 1 cá»§a __builtin_paired_predicate phải là một hằngđối số 2 có kiểu không hợp lệđối số 2 phải là 0 hay 1đối số 2 phải là kiểu văn không dấu 5-bitđối số 2 phải là kiểu văn không dấu 6-bitđối số 3 phải là kiểu văn không dấu 1-bitđối số 3 phải là kiểu văn không dấu 2-bitđối số 3 phải là kiểu văn không dấu 4-bitđối số 3 phải nằm trong vùng 0…15đối số phải là một tham chiếu trườngđối số phải là kênhđối số phải có kiểu phứcđối số tới %%:compare-debug-auxbase-opt không kết thúc bằng .gkđối số cho %qs quá lớn (tối Ä‘a là %d)đối số â€œ%s” và â€œ%s” cho %s thá»±c chấtđối số â€œ%s” và â€œ%s” cho â€œ%s” thá»±c chấtđối số â€œa%d” và â€œa%d” cho â€œ%s” thá»±c chấtarith_power(): CÆ¡ số saiarith_power(): không hiểu kiểuIF (nếu) số họcsá»± gán mảngbộ khởi tạo chứa một chỉ mục mảng vượt quá giới hạn mảngbộ khởi tạo chứa một chỉ mục mảng không phải là một biểu tượng hằng số nguyênbộ khởi tạo chứa một chỉ mục mảng không có loại số nguyêngặp chỉ mục mảng trong bộ khởi tạo không phải mảngbộ khởi tạo chứa một phạm vi chỉ mục mảng vượt quá giới hạn mảngmảng bị khởi tạo từ biểu tượng mảng không phải hằng sốmảng bị khởi tạo từ hằng số chuỗi nằm trong ngoặc Ä‘Æ¡nbiểu thức không thể Ä‘ược dùng như một hàmCảnh báo về lời khai báo kiểu cÅ©mảng loại không thích hợp bị khởi tạo từ hằng số chuỗikết quả mảngthiếu kích thước mảng trong %q+Dthiếu kích thước mảng trong %qDthiếu kích thước mảng trong %qTchỉ số mảng lớn hÆ¡n cận trênchỉ số mảng nhỏ hÆ¡n cận dướichỉ số mảng không phải là số nguyênchỉ số mảng nằm ngoài phạm vi cá»§a mảngmảng Ä‘ược dùng như là bộ khởi tạonhư %qDthiếu quyết toán sau %qsgán giá trị cho mảng từ một danh sách bộ khởi tạosá»± gángán cá»§a hàm %qDgán thành viên chỉ-đọc %qDgán cho biến chỉ Ä‘ọc %qDthu hồi sá»± gántham số assume_aligned không phải là một hằng nguyênđối số assumed-rankđối số assumed-shapeđối số assumed-typecoi rằng bộ Ä‘ếm vòng lặp không bị tràncoi rằng vòng lặp có giới hạnđối số không Ä‘ồng bộatexit gặp lỗithuộc tính %<target%> không là một chuỗilời khai báo thuộc tínhthuộc tính bị bỏ quathuộc tính(đích("%s")) là không hiểuđịa chỉ saiđịa chỉ sai, không phải (reg+disp):địa chỉ sai, không phải là một hằng số:Địa chỉ sai, không phải Ä‘ịa chỉ V/R:địa chỉ sai, không phải post_inc hoặc pre_dec:bộ khởi tạo mảng không Ä‘úngmã dá»±ng sẵn saifcode dá»±ng sẵn saiicode dá»±ng sẵn saimã Ä‘iều kiện saikho nén .zip/.jar có Ä‘ịnh dạng sai
sai Ä‘ặt lệnh cho â€œA”lệnh sai tới frv_print_operand, trường hợp â€œ0”gặp lệnh sai trong frv_print_operand, Ä‘ặt sai const_doublelệnh sai tới frv_print_operand, trường hợp â€œz”lệnh sai tới frv_print_operand, bộ sá»­a Ä‘ổi â€œF”:lệnh sai tới frv_print_operand, bộ sá»­a Ä‘ổi â€œL”:lệnh sai tới frv_print_operand, bộ sá»­a Ä‘ổi â€œM/N”:lệnh sai tới frv_print_operand, bộ sá»­a Ä‘ổi â€œO”:lệnh sai tới frv_print_operand, bộ sá»­a Ä‘ổi â€œe”:lệnh sai tới frv_print_operand, bộ sá»­a Ä‘ổi â€œf”:lệnh sai tới frv_print_operand, bộ sá»­a Ä‘ổi â€œg”:lệnh sai tới frv_print_operand, bộ sá»­a Ä‘ổi â€œP”:sai Ä‘ặt lệnh tới frv_print_operand_address:sai Ä‘ặt lệnh tới frv_print_operand_memory_reference:tín hiệu phương thức saisai di chuyểntoán hạng saiđặt sai toán hạng output_condmove_singleđặt sai toán hạng output_move_doubleđặt sai toán hạng output_move_singlethanh ghi saisai Ä‘ặt thanh ghi tới frv_print_operand_memory_reference_reg:lệnh dời sai:hằng chuỗi saisai kiểm tracách dùng hàm Ä‘ặc tả %qs saigiá trị sai %<%s%> cho -mtls-size=giá trị sai %qs cho -mcpugiá trị sai %qs cho -mfp-rounding-modegiá trị sai %qs cho -mfp-trap-modegiá trị sai %qs cho -mmemory-latencygiá trị sai %qs cho tùy-chọn -mmpy-optiongiá trị sai %qs cho -mtls-sizegiá trị sai %qs cho -mtrap-precisiongiá trị sai %qs cho -mtunegiá trị sai (%s) cho %sarch=%s %sgiá trị sai (%s) cho %stune=%s %ssai giá trị (%s) cho chuyển -march=giá trị sai (%s) cho -mcmodel=sai giá trị (%s) cho chuyển -mtunesai giá trị cho -mcall-%ssai giá trị cho -msdata=%stập tin zip/jar sai %slớp cÆ¡ sở %q+T có một há»§y tá»­ non-trivial truy cập Ä‘ượctoán hạng cÆ¡ sở cá»§a %<->%> không phải là một con trỏbb %d không thuộc về vòng lặp %dbb %d trên chỗ saithá»§ tục bind(c)IF (nếu) loại khốichỉ lệnh JARL giả: %dchỉ lệnh JR giả: %dchỉ lệnh PREPEARE giả: %dđã chỉ ra cả hai %<__thread%> và %<thread_local%>cả hai Ä‘ối số cho %<__builtin___clear_cache%> phải là các con trỏđặc tả giữa ngoặc móc %qs không hợp lệ tại %qcthân cá»§a Ä‘ặc tả giữa ngoặc móc %qs không hợp lệngoặc chung quanh bộ khởi tạo vô hướngnhánh %2d chưa bao giờ thá»±c hiện
nhánh %2d Ä‘ược lấy %s%s
%s chỉ chấp nhận một tham sốnhưng không phải á»Ÿ Ä‘âycuộc gọi   %2d chưa bao giờ thá»±c hiện
cuộc gọi   %2d trả về %s
cuộc gọi không chắc, và kích cỡ mã sẽ tăng lạicú gọi cá»§a %<(%T) (%A)%> chưa rõ rànggọi hàm quá tải %<%D(%A)%> chưa rõ rànggọi hàm quá tải %<%s(%A)%> chưa rõ rànggọi hàm nội bộđược gọi từ Ä‘âyđược gọi từ hàm nàycú gọi không Ä‘ược tối Æ°u hóakhông thể sá»­ dụng -mtp=cp15 với 16-bit Thumbcan%'t Ä‘óng tập tin Ä‘ầu vào %s: %mkhông thể chuyển Ä‘ổi giá trị thành kiểu vectorkhông thể mở rộng tập tin PCH: %mkhông thể tìm thấy %<class$%> trong %qTcan%'t lấy vị trí trong tập tin PCH: %mcan%'t mở %s Ä‘ể ghi: %mcan%'t mở %s Ä‘ể ghi: %mcan%'t mở %s: %mcan%'t Ä‘ọc %s: %mcan%'t Ä‘ọc tập tin PCH: %mKhông thể Ä‘ặt vị trí trong tập tin PCH: %mcan%'t chỉ Ä‘ịnh %<-D%> mà không có %<--main%>không thể dùng nhiều phương thức kiểm tra stack cùng nhaucan%'t ghi %s: %mcan%'t ghi tập tin PCHcan%'t ghi tập tin PCH: %mcan%'t ghi phần Ä‘ệm vào PCH: %mcan%'t ghi vào %s: %mkhông thể lấy trạng thái về chương trình: %mkhông thể mở %s: %mkhông thể mở tập tin Ä‘ầu vào: %skhông thể mở kết xuất ldd: %mkhông thể mở kết xuất nm: %mkhông cho phép sá»­ dụng Ä‘ịa chỉ tuyệt Ä‘ối tương Ä‘ối không phải gpứng cá»­ 1:ứng cá»­ 2:ứng cá»­ là:ứng cá»­ là: %#Dứng cá»­ là: %+#Dứng cá»­ là:ứng cá»­ là: %+#Dkhông thể buộc %qT lvalue thành %qTkhông thể gọi cấu tá»­ %<%T::%D%> một cách trá»±c tiếpkhông thể gọi hàm %qDkhông thể chụp thành viên %qD trong hỗn hợp nặc danhkhông thể chuyển Ä‘ổi %qT thành %qTkhông thể chuyển Ä‘ổi thành kiểu con trỏkhông thể chuyển Ä‘ổi kiểu %qT thành %qTkhông thể tạo tập tin tạm thờikhông thể khai báo con trỏ Ä‘ến %q#Tkhông thể khai báo con trỏ cho thành viên %q#Tkhông thể khai báo tham chiếu Ä‘ến %q#Tkhông thể giải mã Ä‘ịa chỉkhông thể tắt hàm dá»±ng sẵn %qskhông tìm thấy %s trong phần bổ xung %s
%skhông tìm thấy â€œ%s”không tìm thấy â€œldd”không tìm thấy â€œnm”không thể tìm thấy LTO cgraph trong %skhông thể tìm thấy tham chiếu phần LTO trong %skhông tìm thấy lớp %qEkhông thể tìm thấy tập tin cho lớp %skhông thể tải phần bổ xung %s
%skhông thể mở %skhông thể mở %s: %mkhông mở Ä‘ược â€œ%s”Không thể mở tập tin xuất trung gian ptxkhông thể tối Æ°u hóa vòng lặp vì bộ Ä‘ếm vòng lặp có thể bị trànkhông thể tối Æ°u hóa vòng lặp có thể là vô hạnkhông thể Ä‘ọc %s: %mkhông thể Ä‘ọc â€œLTO decls” từ %skhông thể Ä‘ọc chế Ä‘á»™ LTO từ %skhông thể chỉ Ä‘ịnh lớp %<main%> khi không liên kếtkhông thể chỉ Ä‘ịnh %<override%> cho lớpkhông thể ghi rõ nhiều tập tin với tùy chọn -S hoặc -E, và hai tùy chọn -o và c loại từ lẫn nhaukhông thể chỉ Ä‘ịnh -static với -fsanitize=địa_chỉkhông thể chỉ Ä‘ịnh -static với -fsanitize=threadkhông thể ghi rõ Ä‘ồng thời hai tùy chọn --C và -okhông thể lấy Ä‘ịa chỉ cá»§a %qskhông thể dùng %<::%> trong khai báo Ä‘ối sốkhông thể dùng chế Ä‘á»™ %qs cho các kiểu liệt kêkhông cho phép sá»­ dụng Ä‘ồng thời hai tùy chọn mshared và statickhông cho phép sá»­ dụng Ä‘ồng thời hai tùy chọn mthreads và mlegacy-threadskhông thể dùng kiểu %s như là %scác nhãn case không Ä‘ược sắp xếp trong câu lệnh switchnhãn cho case chưa Ä‘ược sắp xếp: Ã¡p Ä‘ổi kiểu tá»­ %qT thành %qT yêu cầu tăng cân chỉnh cá»§a kiểu Ä‘ícháp Ä‘ổi kiểu tá»­ %qT thành %qT làm mất Ä‘á»™ chính xáccác thuộc tính cdecl và thiscall không tương thích với nhaucgraph_node có danh sách nhân bản saicgraph_node có clone_of saithay Ä‘ổi nghÄ©a cá»§a %qD từ %q#Dmảng ký tá»± bị khởi tạo từ chuỗi rộngcheck_intents(): Danh sách không khớpcheck_restricted(): không hiểu kiểu biểu thứccheck_some_aliasing(): Danh sách không khớptổng kiểm là (%x,%x) thay vì (%x,%x)đóng %qD thông qua %qDlớp %qE Ä‘ã có trước rồilớp %qE Ä‘ã lạc hậukiểu lớp %qT chưa hoàn thiệndọn các Ä‘ối số không phải hàmdọn các Ä‘ối số không phải Ä‘ịnh danhclose: %sđóng tập tin phụ thuộc %s: %mđối số coarraymô hình mã %qs không Ä‘ược hỗ trợ trong chế Ä‘á»™ x32mô hình mã %qs với -f%smô hình mã %s không hỗ trợ chế Ä‘á»™ PICcollect2 phiên bản %s
tập hợp: Ä‘ang Ä‘ọc %s
tập hợp: Ä‘ang biên dịch lại %s
tập hợp: Ä‘ang liên kết lại
tập hợp: Ä‘ang Ä‘iều chỉnh %s trong %s
dấu phẩy á»Ÿ cuối cá»§a danh dánh liệt kêtùy chọn dòng lệnh %qs thì hợp lệ cho %s nhưng lại không với %stùy chọn dòng lệnh %qs thì hợp lệ cho trình Ä‘iều khiển nhưng lại không với %scompare_actual_expr(): Mã thành phần saicompare_real(): Toán tá»­ saiso sánh giữ %q#T và %q#Tso sánh giữa %qT và %qTso sánh luôn là %dkiểu tương thích là á»Ÿ Ä‘âytiến trình biên dịch bị chấm dứt do -Wfatal-errors.
tiến trình biên dịch bị chấm dứt do -fmax-errors=%u.
tiến trình biên dịch bị chấm dứt.
tràn số nguyên phức trong biểu thứcsố áº£o không hợp lệ cho %qsdòng dữ liệu Ä‘ược nén: %skhai báo xung Ä‘á»™t %q+#Dxung Ä‘á»™t tên siêu lớp %qEcác kiểu xung Ä‘á»™t với %<%c%s%>kiểu xung Ä‘á»™t cho %q+Dxung Ä‘á»™t kiểu cho hàm dá»±ng sẵn %q+Dxung Ä‘á»™t với %qDxung Ä‘á»™t với khai báo trước %q#Dcân nhắc dùng â€œ-pg” thay cho â€œ-p” với gprof(1)sá»­ dụng gprof(1) thì Ä‘ề nghị bạn dùng "-pg" thay cho "-p"sá»­ dụng gprof(1) thì Ä‘ề nghị bạn Ä‘ặt "-pg" thay cho "-p"Chức năng lan truyền hằng số / sao chép bị tắtconst_double_split nhận một lệnh sai:đối số hằng nằm ngoài phạm vi cho %qshằng tham chiếu Ä‘ến chính nócấu tá»­ không thể là hàm thành viên tÄ©nhcác quyền Æ°u tiên cấu tá»­ là không Ä‘ược hỗ trợchứa vòng lặpchứa vòng lặpcâu lệnh â€œcontinue” nằm á»Ÿ ngoài một vòng lặpviệc chuyển Ä‘ổi cÅ©ng bỏ trình trạng bất biếnchuyển Ä‘ổi từ %q#T sang %q#Tkhông thể chuyển Ä‘ổi thành kiểu con trỏđang chuyển Ä‘ổi từ %qT thành %qTđồng xá»­ lý chưa Ä‘ược bậtkhông thể Ä‘óng Ä‘áp á»©ng tập tin %skhông thể Ä‘óng tập tin Ä‘áp á»©ng tạm thời %skhông thể chuyển Ä‘ổi %qE từ %qT thành %qTkhông tìm thấy một thanh ghi làm trànkhông tìm thấy lớp %qEkhông tìm thấy giao diện cho lớp %qEkhông tìm thấy tập tin Ä‘ặc tả %s
không thể mở tập tin dump %qs: %mkhông thể mở tập tin Ä‘áp á»©ng %skhông thể mở tập tin Ä‘áp á»©ng tạm thời %skhông thể phân tích khoảng bù tập tinkhông thể phân tích số thập lục phânkhông thể chia tách insnkhông thể ghi vào tập tin Ä‘áp á»©ng %skhông thể ghi vào tập tin Ä‘áp á»©ng tạm thời %skhông thể hiểu phiên bản %s
tạo và sá»­ dụng với các ABI khác nhautạo và sá»­ dụng với các kiến trúc hoặc ABI khác nhautạo và sá»­ dụng với các trình trạng cuối khác nhauđược tạo và sá»­ dụng với cài Ä‘ặt khác nhau cá»§a -fpicđược tạo và sá»­ dụng với cài Ä‘ặt khác nhau cá»§a -fpieđược tạo và sá»­ dụng với cài Ä‘ặt khác nhau cá»§a â€œ%s”đang tạo mảng cá»§a %qTtạo mảng cá»§a thành viên hàmtạo mảng hàmtạo mảng tham chiếutạo mảng voidđang tạo con trỏ Ä‘ến thành viên cá»§a kiểu voidlời khai báo dữ liệugỡ lỗimức gỡ lỗi %qs là quá caogỡ rối: phần khai báo cá»§a %<~%T%> là thành viên cá»§a %qTkhai báo cá»§a %q#Dkhai báo cá»§a %q#D chưa có bộ khởi tạokhai báo cá»§a %q#Tsá»± khai báo cá»§a %qD như là %<typedef%>sá»± khai báo cá»§a %qD như là mảng cá»§a các thành viên hàmsá»± khai báo cá»§a %qD như là mảng cá»§a các hàmsá»± khai báo cá»§a %qD như là mảng cá»§a các tham chiếusá»± khai báo cá»§a %qD như là mảng voidsá»± khai báo cá»§a %qD như là thành viên cá»§a %qTsá»± khai báo cá»§a %qD như là non-functionsá»± khai báo cá»§a %qD như là non-memberkhai báo cá»§a %qD như là Ä‘ối sốsá»± khai báo cá»§a các bóng %qD như là thành viên cá»§a %qTsá»± khai báo cá»§a %qE như là mảng cá»§a các hàmsá»± khai báo cá»§a %qE như là mảng cá»§a voidđược khai báo á»Ÿ Ä‘âyđược khai báo  á»Ÿ Ä‘âyđược khai báo bảo vệ á»Ÿ Ä‘âysố giảm cá»§a hàm %qDgiảm con trỏ tới loại không hoàn toàn %qTgiảm thành viên chỉ-đọc %qDkiểu trả về deduced chỉ sẵn sàng với -std=c++14 hay -std=gnu++14suy diễn %qT như là %qTmặc Ä‘ịnh %d tối thiểu %d tối Ä‘a %dchưa Ä‘ặt Ä‘ích mặc Ä‘ịnhkhai báo Ä‘ược mặc Ä‘ịnh %q+Dkhông thể tìm thấy phần Ä‘ịnh nghÄ©a cá»§a giao thức %qEhàm bị xóa %q+Dđang xóa bỏ tập tin LTRANS %s: %mđang xóa mảng %q#Eđang xóa bỏ tập tin %s: %mviệc chuyển Ä‘ổi từ chuỗi thành %qT Ä‘ã lỗi thờilời khai báo loại có hướngcác quyền Æ°u tiên há»§y tá»­ là không Ä‘ược hỗ trợhá»§y tá»­ không Ä‘ược có Ä‘ối sốkhác số lượng Ä‘ối sốkhác số cá»§a kết quảkhác kiểu tham sốkhác kiểu nhận Ä‘ượckiểu kết quả khác biệtvarargs khác biệtchia cho 0không dùng Ä‘ồng thời hai tùy chọn -march=… và -mcpu=…do_check(): quá nhiều Ä‘ối sốdo_simplify(): Quá nhiều Ä‘ối số cho intrinsickhông hỗ trợ chức năng Ä‘a thư việntrùng lặp %<_Atomic%>trùng %<_Thread_local%> hay %<__thread%>lặp lại %<const%>lặp lại %<restrict%>lặp lại %<volatile%>trùng %qDlặp lại %qEtrùng %qstrùng giá trị cho caselớp trùng nhau thì chỉ biên dịch một lầntrùng cv-qualifierkhai báo bị trùng lắp cho giao thức %qEkhởi tạo lặp lại cho %qDtrùng biến minh dụ %q+Dtrùng nhãn %qDthành viên trùng lặp %q+Dtrùng virt-specifierdwarf phiên bản %d không Ä‘ược hỗ trợkhông tìm thấy quan hệ phụ thuộc năng Ä‘á»™ng %scác kiểu phần tá»­ phải Ä‘ồng nhấtthao tác nhị phân loại yếu tốthá»§ tục loại yếu tố%<\0%> Ä‘ược nhúng trong Ä‘ịnh dạngemit_fusion_p9_load không MEMemit_fusion_p9_load, reg #1 saiemit_fusion_p9_load, reg #2 saiemit_fusion_p9_store không MEMemit_fusion_p9_store, reg #1 saiemit_fusion_p9_store, reg #2 saikhai báo trống rỗngbộ khởi tạo chứa phạm vi chỉ mục vẫn trốngđộ chính xác trái bị trống rỗng trong Ä‘ịnh dạng %sđộ chính xác bị trống rỗng trong Ä‘ịnh dạng %svùng trống rỗng Ä‘ược chỉ rabộ khởi tạo vô hướng vẫn trốngchuyển Ä‘ổi enum trong bộ khởi tạo thì không hợp lệ trong C++chuyển Ä‘ổi enum trong bộ khởi tạo thì không hợp lệ trong C++chuyển Ä‘ổi enum trả về thì không hợp lệ trong C++kiểu enum Ä‘ược Ä‘ịnh nghÄ©a á»Ÿ Ä‘âychưa Ä‘ịnh nghÄ©a biến môi trường%qsbiến môi trường COLLECT_GCC cần Ä‘ược Ä‘ặtbiến môi trường COLLECT_GCC_OPTIONS cần Ä‘ược Ä‘ặtchưa xác Ä‘ịnh biến môi trường DJGPPbiến môi trường DJGPP chỉ tới tập tin bị hỏng â€œ%s”biến môi trường DJGPP chỉ tới tập tin còn thiếu â€œ%s”lỗilỗi Ä‘óng %s: %mgặp lỗi trong các Ä‘ối số tới hàm Ä‘ặc tả %qsgặp lỗi trong mục nhập vùng gộp hằng số #%d
gặp lỗi khi gỡ bỏ %s
gặp lỗi khi phân bể hằng sốgặp lỗi khi phân tích cú pháp cá»§a vùng gộp hằng số
gặp lỗi khi phân tích cú pháp cá»§a các trườnggặp lỗi khi phân tích cú pháp cá»§a các trường
gặp lỗi khi phân tích cú pháp cá»§a các thuộc tính cuối cùnggặp lỗi khi phân tích cú pháp cá»§a các thuộc tính cuối cùng
gặp lỗi khi phân tích cú pháp cá»§a các phương thứcgặp lỗi khi phân tích cú pháp cá»§a các phương pháp
gặp lỗi khi Ä‘ọc %s từ tập tin ziplỗi ghi %qslỗi ghi vào %s: %mlỗi: eval_intrinsic(): Sai toán tá»­xá»­ lý ngoại lệ không khớp personalityngoại lệ kiểu %<%T%> sẽ Ä‘ược bắtgặp yếu tố thừa trong bộ khởi tạo mảnggặp yếu tố thừa trong bộ khởi tạo mảng ký tá»±gặp yếu tố thừa trong bộ khởi tạo vô hướnggặp yếu tố thừa trong bộ khởi tạo cấu trúcgặp yếu tố thừa trong bộ khởi tạo hợpgặp yếu tố thừa trong bộ khởi tạo véc-tÆ¡số lượng thừa hành là Ã¢mthoát khỏi %d->%d không Ä‘ược ghi lạicần mệnh Ä‘ề %<#pragma acc%>cần %<#pragma omp section%> hoặc %<}%>cần mệnh Ä‘ề %<#pragma omp%>cần mệnh Ä‘ề %<#pragma simd%>cần %<(%>cần %<(%> hoặc xuống dòngcần %<)%>cần %<*%>cần %<+%>, %<*%>, %<-%>, %<&%>, %<^%>, %<|%>, %<&&%>, %<||%> hoặc Ä‘ịnh danhcần %<+%>, %<*%>, %<-%>, %<&%>, %<^%>, %<|%>, %<&&%>, %<||%>, %<min%> hoặc %<max%>cần %<+%>, %<*%>, %<-%>, %<&%>, %<^%>, %<|%>, %<&&%>, %<||%>, %<min%> hoặc Ä‘ịnh danhcần %<,%>cần %<,%> hoặc %<)%>cần %<,%> hoặc %<)%> sau %qEcần %<,%> hoặc %<...%>cần %<,%> hoặc %<;%>cần %<,%> hoặc %<}%>cần %<,%>, %<;%> hoặc %<}%>cần %<.%>cần %<…%>cần %<:%>cần %<:%> hoặc %<…%>cần %<:%> hoặc %<::%>cần %<:%> hoặc sốcần %<:%>, %<,%>, %<;%>, %<}%> hoặc %<__attribute__%>cần %<::%>cần %<;%>cần %<;%> sau Ä‘ịnh nghÄ©a lớpcần %<;%> sau Ä‘ịnh nghÄ©a cấu trúccần %<;%> sau Ä‘ịnh nghÄ©a kiểu hỗn hợpcần %<;%> tại cuối khai báo thành viêncần %<;%> hoặc %<{%>cần %<;%>, %<,%> hoặc %<)%>cần %<;%>, Ä‘ịnh danh hoặc %<(%>cần %<<%>cần %<=%>cần %<=%>, %<,%>, %<;%>, %<asm%> hay %<__attribute__%>cần %<>%>cần %<@end%>cần %<@synchronized%>cần %<@throw%>cần %<@try%>cần %<[%>cần %<]%>cần %<_Cilk_spawn%> trước %<_Cilk_sync%>cần %<__label__%>cần %<__transaction_atomic%>cần %<__transaction_relaxed%>cần %<asm%>cần %<catch%>cần %<class%>cần %<class%>, hoặc %<typename%>cần %<class%>, %<typename%>, hoặc %<template%>cần %<data%>cần %<declare%>cần %<decltype%>cần %<delete%>cần %<extern%>cần %<for%> sau %qscần %<namespace%>cần %<new%>cần %<none%>cần %<none%> hoặc %<shared%>cần %<omp_priv%> hoặc tên-hàmcần %<operator%>cần %<point%>cần %<return%>cần %<scalar%>cần %<static_assert%>cần %<target%>cần %<template%>cần %<throw%>cần %<tofrom%>cần %<try%>cần %<using%>cần %<while%>cần %<{%>cần %<{%> hoặc %<:%>cần %<}%>cần %<}%> trước %<else%>cần %<~%>cần %qT nhưng Ä‘ối số là kiểu %qTcần ...cần [error|warning|ignored|push|pop] sau %<#pragma GCC diagnostic%>cần một Ä‘ối tượng SSA_NAMEcần toán tá»­ hai ngôicần một biểu thức lôgíccần kiểu booleancần kênhcần tên lớpcần class-keycần class-namecần khai báocần khai báo hay câu lệnhcần các Ä‘ịnh danh khai báocần các Ä‘ịnh danh khai báo hay %<…%>cần câu khai báocần kết thúc cá»§a capture-listcần kết thúc dòngcần biểu thứccần hàmcần tên hàmcần tên-hàm %<(%>cần id-expressioncần id-expression (các Ä‘ối số)cần Ä‘ịnh danhcần một Ä‘ịnh danh hoặc %<(%>cần Ä‘ịnh danh %<)%>cần một Ä‘ịnh danh hoặc %<*%>cần bộ khởi tạoMong Ä‘ợi một số nguyêncần biểu thức nguyêncần biểu thức nguyên trước â€œ)”cần giao diện hay con trỏ Ä‘ến giao diệncần khai báo nhắc lại hay sá»± khởi tạocần iteration-statementcần jump-statementcần labeled-statementcần namespace-namecần nested-name-specifiercần kiểu sốcần toán tá»­cần con trỏcần biểu thức cÆ¡ bảncần ptr-operatorcần selection-statementcần specifier-qualifier-listcần biểu thứccần chuỗi văn chươngcần một chuỗi chữcần Ä‘ịnh danh hậu tốcần template-argumentcần template-idcần template-id cho kiểucần template-namecần bộ chỉ Ä‘ịnh kiểucần type-name (tên kiểu)cần type-specifiercần unqualified-idcần tên biếnbiểu thức %qE không phải là biểu thức hằngbiểu thức không thể Ä‘ược dùng như một hàmchỉ số phải là số nguyênextend_ref(): Äuôi sai%<;%> mở rộnggặp nhóm ngoặc móc thừa tại kết thúc cá»§a bộ khởi tạogặp yếu tố thừa trong bộ khởi tạo vô hướngkhông cho phép từ hạn Ä‘ịnh mở rộngdấu chấm phẩy mở rộnggặp lỗi khi khởi tạo phần bổ xung %skhông tìm thấy lớp â€œ%s”gặp lỗi khi lấy trạng thái thoát: %mgặp lỗi khi lấy thời gian tiến trình: %mgặp lỗi nghiêm trọng khi tải lại:các thuộc tính fastcall và thiscall không tương thích với nhaulỗi nghiêm trọng: fclose %s: %mtrường %q#D với cùng tên với lớptrường %qE Ä‘ược khai báo như là một hàmkhông tìm thấy trường %qskhông có tên trường trong bộ khởi tạo hợp hoặc mục ghichỉ Ä‘ịnh Ä‘á»™ chính xác trườngbề rộng trườngchiều rộng cá»§a trường theo Ä‘ịnh dạng printfchiều rộng cá»§a trường theo Ä‘ịnh dạng scanfchiều rộng cá»§a trường theo Ä‘ịnh dạng strfmonchiều rộng cá»§a trường theo Ä‘ịnh dạng stfrtimechỉ Ä‘ịnh Ä‘á»™ rộng trườngtập tin còn %qs nhưng không vào Ä‘ượcký tá»± Ä‘iền vàoký tá»± Ä‘iền vào theo Ä‘ịnh dạng strftimefind_enum(): không tìm thấy bộ Ä‘ếmhàm fini Ä‘ược tìm trong Ä‘ối tượng %sđối số Ä‘ầu tiên phải là []byteđối số Ä‘ầu tiên cá»§a %q+D phải là %<int%>tràn số dấu chấm tÄ©nh trong biểu thứckiểu dấu chấm cố Ä‘ịnh không Ä‘ược hỗ trợ trên Ä‘ích nàykiểu dấu chấm cố Ä‘ịnh không hỗ trợ trong C++sai sá»­ dụng hằng số dấu chấm Ä‘á»™nghằng dấu chấm Ä‘á»™ng bị cắt cụt thành số khôngvăn bản dấu chấm Ä‘á»™ng cắt ngắn thành số khôngtràn số dấu chấm Ä‘á»™ng trong biểu thứchằng số dấu chấm Ä‘á»™ng không phải là một giá trị trá»±c tiếp hợp lệgặp lệnh Ä‘iều khiển luồng bên trong một khối cÆ¡ bảnfold-expressions chỉ sẵn sàng với -std=c++1z hay -std=gnu++1zfopen %s: %mfopen: %s: %mcho %qDcần câu lệnh forcho khai báo hàm mẫu %q+Dcần câu lệnh for, while hoặc dođịnh dạngđịnh dạng là một chuỗi ký tá»± rộng lớnkhai báo trước cá»§a %q#Ttìm thấy %<%c%s%>tìm thấy %<-%E%> thay vì %<+%E%> trong giao thứcfr30_print_operand: sai Ä‘ặt mã %%Ffr30_print_operand: sai Ä‘ặt mã %%xfr30_print_operand: không nhận ra mã %%Afr30_print_operand: MEM chưa quản lýfr30_print_operand: không rõ mãfr30_print_operand: không nhận ra mã %%Bfr30_print_operand: không nhận ra mã %%bfr30_print_operand: không nhận ra mã %%pfr30_print_operand_address: Ä‘ịa chỉ chưa quản lýfree_expr0(): Kiểu biểu thức saitừ khai báo trước Ä‘ây %q+Dtừ khai báo trước Ä‘ây %q+Ffrv_print_operand: gặp mã không rõhàm %qD Ä‘ược khai báo %<virtual%> trong một unionhàm %qD Ä‘ược khởi tạo giống như là một biếnhàm %qD Ä‘ược khai báo lại là không chung dòng (inline)hàm %qD Ä‘ược Ä‘ịnh nghÄ©a lại thành một biếnhàm %qD Ä‘ược khai báo lại là không chung dòng (inline) thuộc thuộc tính hàm không khớpthân hàm có thể bị ghi Ä‘è lúc liên kếtthân hàm không sẵn sàngcú gọi hàm có giá trị tập hợphàm Ä‘ã khai báo %<noreturn%> có một câu lệnh %<return%>định nghÄ©a hàm Ä‘ược khai báo là %<auto%>định nghÄ©a hàm Ä‘ược khai báo là %<register%>định nghÄ©a hàm Ä‘ược khai báo là %<typedef%>định nghÄ©a hàm Ä‘ược khai báo là %qsđịnh nghÄ©a hàm không khai báo Ä‘ối sốđịnh nghÄ©a hàm có kiểu trả về là voidhàm không trả về kiểu chuỗihàm có thể trả về Ä‘ịa chỉ cá»§a biến cục bộhàm nên á»©ng cá»­ cho thuộc tính %<%s%>hàm nên á»©ng cá»­ cho thuộc tính %<%s%> nếu nó biết trả về một cách bình thườnghàm không phải Ä‘ược tính Ä‘ể chèn vào trá»±c tiếphàm không phải Ä‘ược khai báo trá»±c tiếp, và kích cỡ mã sẽ tăng lạihàm không thể chèn vào trá»±c tiếphàm không phải là á»©ng xá»­ Ä‘ể chèn vào trá»±c tiếptham số hàm không thể có loại __fp16kiểu trả về hàm không thể là hàmhàm trả về hàmhàm trả về một mảnghàm trả về Ä‘ịa chỉ cá»§a biến cục bộhàm trả về Ä‘ịa chỉ cá»§a biến cục bộhàm trả về một tập hợpký hiệu hàm không phải là một hàmhỗ trợ function_profilerhàm không thể trả lại loại __fp16Trình Ä‘iều khiển gcc phiên bản %s %sexecuting gcc phiên bản %s
gcc phiên bản %s %s
gcov %s%s
gfc_add_interface(): Kiểu giao diện saigfc_arith_divide(): Kiểu cÆ¡ bản saigfc_arith_error(): Mã câu lệnh saigfc_arith_minus(): Kiểu cÆ¡ bản saigfc_arith_plus(): Kiểu cÆ¡ bản saigfc_arith_times(): Kiểu cÆ¡ bản saigfc_arith_uminus(): Kiểu cÆ¡ bản saigfc_compare_expr(): Kiểu cÆ¡ bản saigfc_copy_expr(): nút biểu thức saigfc_get_constant_expr(): vị trí %<where%> không thể là NULLgfc_is_constant_expr(): không hiểu kiểu biểu thứcgfc__match(): Mã khớp sai %cgfc_range_check(): Kiểu saigfc_resolve_blocks(): Kiểu khối saigfc_resolve_code(): Mã câu lệnh saigfc_resolve_code(): Không có biểu thức trên DO WHILEgfc_resolve_expr(): sai kiểu biểu thứcgfc_simplify_abs(): Kiểu saigfc_simplify_dcmplx(): Kiểu sai (x)gfc_simplify_dcmplx(): Kiểu sai (y)gfc_simplify_dim(): Kiểu saigfc_simplify_floor(): Kiểu saigfc_simplify_log: Kiểu saigfc_trans_code(): Mã câu lệnh saigfc_trans_select(): Kiểu cho biểu thức case sai.gfc_validate_kind(): Nhận loại saigfc_validate_kind(): Nhận kiểu saigfc_variable_attr(): Tham chiếu mảng saigfc_variable_attr(): Biểu thức không phải là một biếngfortran không hỗ trợ sá»­ dụng -E mà không có -cppgimplification gặp lỗikhai báo toàn cục %q#Dbiến thanh ghi toàn cục có giá trị khởi tạonhận Ä‘ược %d Ä‘ối số mẫu cho %q#Dnhận Ä‘ược %d Ä‘ối số mẫu cho %q#Tgp bất biến (mà lưu/phục_hồi gp khi Ä‘ược gọi gián tiếp).gp_offset (%ld) hay end_offset (%ld) nhỏ hÆ¡n khôngphải biên dịch lại PCHiWMMXt và NEON là xung khác lẫn nhauiWMMXt không Ä‘ược hỗ trợ dưới chế Ä‘á»™ Thumbia64_print_operand: gặp mã không hợp lệđang bỏ qua #pragma %s %sđang bỏ qua thư mục trùng "%s"
đang bỏ qua thư mục không tồn tại "%s"
bỏ qua tùy chọn không hiểu %q.*s trong %<-fdump-%s%>toán hạng không hợp lệđịa chỉ toán hạng không hợp lệ (1)địa chỉ toán hạng không hợp lệ (2)địa chỉ toán hạng không hợp lệ (3)địa chỉ toán hạng không hợp lệ (4)phát hiện toán hạng cấmkhai báo ngầm cá»§a hàm %qEcác mẫu ngầm không nên là %<virtual%>ngụ Ã½ END DO (kết thúc làm)trong %s, tại %s:%dtrong Ä‘ối số tới bộ nguyên phân !trong khối cÆ¡ bản %d:trong khai báo %q+Dtrong phần Ä‘ịnh nghÄ©a macro %qstrong phần mở rộng macro %qsin gfc_simplify_acos(): Kiểu saiin gfc_simplify_acosh(): Kiểu saiin gfc_simplify_asin(): Kiểu saiin gfc_simplify_asinh(): Kiểu saiin gfc_simplify_atan(): Kiểu saiin gfc_simplify_atanh(): Kiểu saiin gfc_simplify_cos(): Kiểu saiin gfc_simplify_exp(): Kiểu saiin gfc_simplify_sin(): Kiểu saitrong Ä‘ối số chuyển qua %P cá»§a %qDtại câu lệnhtrong Ä‘ịnh nghÄ©a cá»§a %q#Ttoán hạn dấu chấm Ä‘á»™ng / thanh ghi véctÆ¡ không tương thích cho â€œ%%%c”kiểu không tương thích cho Ä‘ối số %d cá»§a %qEkiểu không tương thích cho chỉ mục Ã¡nh xạkiểu không tương thích cho phương thức %s%s%skiểu không tương thích cho phương thức %s%s%s (%s)không tương thích kiểu Ä‘ối với bộ nhậnphép gán %qT cho %qT không tương thích kiểukhông tương thích kiểu trong bộ gá»­ichế Ä‘á»™ so sánh không Ä‘úngđịnh dạng biến Ä‘ổi không Ä‘úng, nên dùng 1/1
lệnh không Ä‘úng:lệnh không Ä‘úng:lệnh không Ä‘úng:số gia cá»§a hàm %qDtăng con trỏ tới loại không hoàn toàn %qTgia số cho thành viên chỉ-đọc %qDchỉ số phải là số nguyêngiá trị chỉ mục nằm ngoài phạm vi cho phéphàm init Ä‘ược tìm trong Ä‘ối tượng %sinit_arglist(): quá nhiều Ä‘ối sốđã khởi tạo một bộ phận mảng dẻobộ phận mảng dẻo bị khởi tạo trong một ngữ cảnh lồng nhautrường Ä‘ã khởi tạo bị ghi Ä‘ètrường Ä‘ã khởi tạo với hiệu á»©ng khác bị ghi Ä‘èyếu tố khởi tạo không phải là một biểu tượng hằng sốyếu tố khởi tạo không tính Ä‘ược vào lúc nạpyếu tố khởi tạo không phải hằng sốbộ khởi tạo kết thúc bất ngờbộ khởi tạo cho %q#D không hợp lệbộ khởi tạo Ä‘ược cung cấp cho hàmchèn mã vào trá»±c tiếp Ä‘ể tắt các mục nhập vùng nhớ tạm câu lệnh sau khi cài Ä‘ặt các trampoline hàm lồng nhau.hàm chung dòng %q+D Ä‘ược khai báo nhưng chưa bao giờ Ä‘ược Ä‘ịnh nghÄ©ahàm chung dòng %q+D Ä‘ược khai báo yếuhàm chung dòng %qD Ä‘ược dùng nhưng chưa bao giờ Ä‘ược Ä‘ịnh nghÄ©ainline namespaces chỉ sẵn sàng với -std=c++11 hay -std=gnu++11inlined_to con trỏ là saicon trỏ inlined_to chỉ Ä‘ến chính nótập tin Ä‘ầu vào %qs là cùng với tập tin Ä‘ầu rainsn chứa một Ä‘ịa chỉ sai !lệnh không thỏa những ràng buộc cá»§a nó:gặp lệnh bên ngoài khối cÆ¡ bảncài Ä‘ặt: %s%s
lệnh chưa bao giờ thá»±c hiệnthiếu Ä‘ối số cho hàm Ä‘ược quá tải %ssố nguyên chia cho khôngtràn số nguyên trong kích thước mảngtràn số nguyên trong biểu thứcbiểu thức nguyên %qE không là hằnglỗi biên dịch nội bộlỗi biên dịch nội bộ. Äá»‹a chỉ sai:lỗi biên dịch nội bộ. Dịch không Ä‘úng:lỗi biên dịch nội bộ. Không hiểu chế Ä‘á»™:lỗi biên dịch nội bộ: tính nhất quán nội tại gặp lỗi nghiêm trọnglỗi nội bộ - tên Utf8 không hợp lệlỗi nội bộ : thanh ghi sai: %dhàm nội bộđơn vị bên trong trong GHI#pragma %s không hợp lệsai toán hạng %%%c%%-code saitoán hạng %%A saitoán hạng %%B saisai toán hạng %%Cgiá trị %%C saisai toán hạng %%Dgiá trị %%D saigiá trị %%E saigiá trị %%F saichế Ä‘á»™ %%G không hợp lệgiá trị %%G saisai toán hạng %%Hđịnh danh %%H không hợp lệsai toán hạng %%Imã %%J saigiá trị %%J saigiá trị %%K saimã %%L saisai toán hạng %%Lgiá trị %%L saisai toán hạng %%Mgiá trị %%M saisai toán hạng %%Ngiá trị %%N saigiá trị %%O saigặp toán hạng %%P saigiá trị %%P saigiá trị %%R saigiá trị %%T saigiá trị %%U saitoán hạng %%Y saitoán hạng %%c saitoán hạng %%d saigiá trị %%d saigiá trị %%e saitoán hạng %%f saigiá trị %%f saisai toán hạng %%hgiá trị %%h saisai toán hạng %%imã %%j saisai toán hạng %%jgiá trị %%j saigiá trị %%k saigiá trị %%m saigặp giá trị %%p saigiá trị %%q saisai toán hạng %%rgiá trị %%r saitoán hạng %%s saigiá trị %%s saisai toán hạng %%tsai toán hạng %%t â€œgiá trị %%t/%%b saigiá trị %%u saigiá trị %%v saigiá trị %%x saimã %%xn saigiá trị %%y sai, hãy thá»­ sá»­ dụng ràng buộc â€œZ”“asm” không hợp lệ: sai tên cho tùy chọn --param %qssai giá trị cho tùy chọn --param %qssai CASE_CHAINđối số IACC không hợp lệsai tham số PHIkết quả PHI không hợp lệđặt sai UNSPEC như là toán hạngUNSPEC không hợp lệ như là toán hạng: %dkiểu trừu tượng cho %q+D không hợp lệđịa chỉ saisai Ä‘ặt chế Ä‘á»™ Ä‘ặt Ä‘ịa chỉđối số cá»§a thuộc tính %qE không hợp lệđối số cá»§a thuộc tính %qs không hợp lệđối số cá»§a SQRT tại %L không hợp lệđối số không hợp lệ cho %qDđối số không hợp lệ cho cú gọi hàm gimplecác Ä‘ối số không hợp lệgán mảng không hợp lệđặc tả lớp-cÆ¡-sở không hợp lệnhãn case không hợp lệ trong câu lệnh switcháp Ä‘ổi kiểu trừu tượng cho kiểu lớp %qT không hợp lệtoán hạng Ä‘iều kiện không hợp lệtoán hạng const_double saihằng không hợp lệhằng không hợp lệ - hãy thá»­ dùng bổ nghÄ©a kết xuấthằng không hợp lệ cho bổ nghÄ©a kết xuất â€œ%c”hằng không hợp lệ trong %<#pragma %s%>hằng không hợp lệ trong %<#pragma pack%> - nên bỏ quavéc-tÆ¡ hằng không hợp lệ cho bổ nghÄ©a kết xuất â€œ%c”sai Ä‘ặt ràng buộc cho toán hạngsai chuyển Ä‘ổi từ %<__fpreg%>chuyển Ä‘ổi từ %qT thành %qT không hợp lệsai chuyển Ä‘ổi sang %<__fpreg%>thanh ghi bộ Ä‘ồng xá»­ lý %qE không hợp lệphạm vi thanh ghi bộ Ä‘ồng xá»­ lý không hợp lệsai cpu "%s" cho %s"%s"%skhai báo không hợp lệ cá»§a %<%T::%E%>bộ khai báo không hợp lệđịnh nghÄ©a không hợp lệ cá»§a kiểu hạn Ä‘ịnh %qTkiểu phụ thuộc không hợp lệkiểu dist_schedule không hợp lệđặc tả rõ ràng không hợp lệbiểu thức không hợp lệ - hãy thá»­ dùng bổ nghÄ©a kết xuấtbiểu thức như là toán hạng không hợp lệbiểu thức không hợp lệ cho bộ sá»­a Ä‘ầu ra â€œ%c”mô hình bộ nhớ không hợp lệ cho %<__atomic_compare_exchange%>sai toán hạng thứ nhất cá»§a MEM_REFsai dạng thức cá»§a %<#pragma omp atomic%>định dạng cá»§a %s không hợp lệthuộc tính(đích("%s")) là không hiểukhai báo hàm không hợp lệhàm không hợp lệ trong cú gọi gimplebiểu thức gia không hợp lệbộ khởi tạo saimệnh Ä‘ề khởi tạo không hợp lệbộ khởi tạo cho %q#D không hợp lệlệnh sai:gặp dòng sai trong tập tin phân giảiđặc tả linkage không hợp lệkiểu Ã¡nh xạ không hợp lệbộ lọc saikhai báo hàm thành viên không hợp lệđối số mô hình bộ nhớ không hợp lệ cho phần tích hợpmô hình bộ nhớ không hợp lệ cho %<__atomic_load%>mô hình bộ nhớ không hợp lệ cho %<__atomic_store%>toán hạng không hợp lệđịa chỉ toán hạng không hợp lệmã toán hạng sai â€œ%c”toán hạng không hợp lệ Ä‘ối với â€œ%%%c”sai Ä‘ặt toán hạng cho sá»± sá»­a Ä‘ổi â€œA”sai Ä‘ặt toán hạng cho sá»± sá»­a Ä‘ổi â€œD”sai Ä‘ặt toán hạng cho sá»± sá»­a Ä‘ổi â€œH”sai Ä‘ặt toán hạng cho sá»± sá»­a Ä‘ổi â€œO”sai Ä‘ặt toán hạng cho sá»± sá»­a Ä‘ổi â€œT”sai Ä‘ặt toán hạng cho sá»± sá»­a Ä‘ổi â€œb”sai Ä‘ặt toán hạng cho sá»± sá»­a Ä‘ổi â€œe”sai Ä‘ặt toán hạng cho sá»± sá»­a Ä‘ổi â€œm”sai Ä‘ặt toán hạng cho sá»± sá»­a Ä‘ổi â€œo”sai Ä‘ặt toán hạng cho sá»± sá»­a Ä‘ổi â€œp”toán hạng không hợp lệ cho chỉ Ä‘ịnh â€œr”sai Ä‘ặt toán hạng cho sá»± sá»­a Ä‘ổi â€œz”sai Ä‘ặt toán hạng cho mã â€œ%c”toán hạng không hợp lệ trong phép toán một ngôisai Ä‘ặt chữ sá»­a Ä‘ổi toán hạngsai Ä‘ặt mã kết xuất toán hạngtiền tố toán hạng không hợp lệtiền tố toán hạng không hợp lệ â€œ%%%c”sai kích cỡ toán hạng cho mã toán hạng â€œO”sai kích cỡ toán hạng cho mã toán hạng â€œZ”sai kích cỡ toán hạng cho mã toán hạng â€œz”sai Ä‘ặt toán hạng tới mã %%H/%%Ltoán hạng không hợp lệ cho mã %%Msai Ä‘ặt toán hạng tới mã %%Ntoán hạng không hợp lệ cho mã %%Osai Ä‘ặt toán hạng tới %%Rsai Ä‘ặt toán hạng tới mã %%Rsai Ä‘ặt toán hạng tới %%Ssai Ä‘ặt toán hạng tới mã %%T/%%Bsai Ä‘ặt toán hạng tới mã %%Utoán hạng không hợp lệ cho mã %%Vtoán hạng không hợp lệ cho mã %%Zsai Ä‘ặt toán hạng tới mã %%psai Ä‘ặt toán hạng tới mã %%stoán hạng không hợp lệ cho mã %%zsá»­ dụng loại toán hạng không hợp lệ với mã toán hạng â€œZ”toán hạng không hợp lệ trong phép toán nhị phântoán hạng không hợp lệ trong phép toán tam nguyêntoán tá»­ không hợp lệ (%s)thao tác sai %<__fpreg%>thao tác không hợp lệ cho %<#pragma omp atomic%>tham số sai %qskiểu Ä‘ối số không hợp lệ %qTchế Ä‘á»™ con trỏ %qs không hợp lệcon trỏ cho trường bít %qD không hợp lệpragma không hợp lệkiểu proc_bind không hợp lệkhai báo thuộc tính không hợp lệkiểu bộ nhận không hợp lệ %qstái khai báo không hợp lệ cho %q+Dbộ khởi tạo saitiền tố tham chiếu không hợp lệtên thanh ghi cho %q+D không hợp lệphân giải không hợp lệ trong tập tin phân giảikiểu lịch biểu không hợp lệbộ Ä‘ặt không hợp lệ, nó phải có một Ä‘ối sốsai Ä‘ặt toán hạng dờiphần khai báo mẫu cá»§a %qD không hợp lệtemplate-id không hợp lệkiểu không hợp lệ %<void%> cho newkiểu không hợp lệ %qT Ä‘ược khai báo %<friend%>kiểu tham số không hợp lệ (có %qT)kiểu tham số không hợp lệ cá»§a %<->%> (có %qT)kiểu tham số không hợp lệ cá»§a %<->*%> (có %qT)kiểu không hợp lệ cho biến instance (minh dụ)kiểu không hợp lệ cho thuộc tínhcác kiểu không hợp lệ trong chuyển Ä‘ổi nopdùng không Ä‘úng %%d, %%x hoặc %%Xdùng %<...%> mà không có non-slice là không hợp lệdùng %<::%> không hợp lệdùng %<_Cilk_spawn%> không hợp lệdùng %<auto%> không hợp lệdùng %<auto%> không hợp lệ trong Ä‘ối số mẫu mặc Ä‘ịnhdùng %<auto%> không hợp lệ trong Ä‘ặc tả ngoại lệdùng %<auto%> không hợp lệ trong Ä‘ối số mẫudùng %<restrict%> không hợp lệdùng %qD không hợp lệcách dùng không hợp lệ %qTsai sá»­ dụng â€œ%%%c”dùng cấu tá»­ như là một mẫu là không hợp lệsai sá»­ dụng mảng không phải lvaluecách dùng không Ä‘úng tên từ hạn Ä‘ịnh %<%D::%D%>cách dùng không Ä‘úng tên từ hạn Ä‘ịnh %<%T::%D%>cách dùng không Ä‘úng tên từ hạn Ä‘ịnh %<::%D%>sá»­ dụng kiểu saikhông thể dùng %<::%> trong khai báo Ä‘ối sốsá»­ dụng sai biểu thức voidsố thứ tá»± phiên bản không hợp lệ %qstrích số không không hợp lệmục tin trong READbiến iteratorjcf-dump: chưa ghi rõ hạng nào
nhảy tới nhãn lệnh casenhảy tới nhãn %qDcó rác á»Ÿ cuối #pragma %scó rác á»Ÿ cuối #pragma __nostandardcó rác á»Ÿ cuối #pragma __standardcó rác á»Ÿ cuối %<#pragma %s%>có rác á»Ÿ cuối %<#pragma GCC visibility%>có rác á»Ÿ cuối %<#pragma align%>có rác á»Ÿ cuối %<#pragma fini%>có rác á»Ÿ cuối %<#pragma init%>có rác á»Ÿ cuối %<#pragma pack%>có rác á»Ÿ cuối cá»§a %<#pragma redefine_extname%>có rác á»Ÿ cuối %<#pragma reset_options%>có rác á»Ÿ cuối %<#pragma weak%>có rác á»Ÿ cuối â€œ#pragma ms_struct”có rác á»Ÿ cuối cá»§a â€œ#pragma options”có rác á»Ÿ cuối â€œ#pragma unused”có rác á»Ÿ cuối chuỗi chữ kýnhãnnhãn %q+D Ä‘ược khai báo nhưng chưa Ä‘ược Ä‘ịnh nghÄ©anhãn %q+D Ä‘ược Ä‘ịnh nghÄ©a nhưng chưa Ä‘ược dùngnhãn %q+D Ä‘ược dùng nhưng chưa Ä‘ịnh nghÄ©anhãn %qD Ä‘ược Ä‘ịnh nghÄ©a á»Ÿ Ä‘âykhởi tạo chụp lambda chỉ sẵn sàng với -std=c++14 hay -std=gnu++14mẫu lambda chỉ sẵn sàng với -std=c++14 hay -std=gnu++14Gặp biểu thức lambda trong biểu thức bất biếnlang_* check: gặp lỗi trong %s, tại %s:%dkhông chấp nhận ngôn ngữ %sđối số cuối phải là giá trị trá»±c tiếpld trả về trạng thái thoát %dđồ chính xác bên tráiđồ chính xác bên trái theo Ä‘ịnh dạng strfmonsố lượng quay trái >= Ä‘á»™ rộng cá»§a kiểusố lượng quay trái bị Ã¢msố lượng dịch trái  >= Ä‘á»™ rộng cá»§a kiểusố lượng dịch trái là số Ã¢mdịch trái cá»§a một giá trị Ã¢mlen lớn hÆ¡n capchiều dài không khớp trong biểu thứcđồ sá»­a Ä‘ổi bề dàiđồ sá»­a Ä‘ổi chiều dài theo Ä‘ịnh dạng printfđồ sá»­a Ä‘ổi chiều dài theo Ä‘ịnh dạng scanfđồ sá»­a Ä‘ổi chiều dài theo Ä‘ịnh dạng strfmonchữ %c Ä‘ược tìm thấy & insn không phải là CONST_INTthư viện: %s
không tìm thấy thư viện lib%sbiểu thức bước thẳng phải là số nguyênlo_sum không phải thanh ghiký hiệu cục bộ phải Ä‘ược Ä‘ịnh nghÄ©alseek gặp lỗi khi xuất dữ liệulto_obj_file_open() gặp lỗilvalue Ä‘ược yêu cầu như là toán hạng giảmlvalue Ä‘ược yêu cầu như là toán hạng giathiếu tên macro sau %qscú gọi #pragma sai dạngsai dạng #pragma ghs phần#pragma redefine_extname sai dạng, nên bỏ quasai dạng #pragma weak, bị bỏ qua%<#pragma %s%> sai dạng, bị bỏ qua%<#pragma %s%> sai dạng, bị bỏ qua%<#pragma align%> sai Ä‘ịnh dạng%<#pragma align%> sai dạng, bị bỏ qua%<#pragma fini%> sai dạng%<#pragma fini%> sai dạng, bị bỏ qua%<#pragma init%> sai dạng%<#pragma init%> sai dạng, bị bỏ qua%<#pragma message%> sai dạng, bị bỏ qua%<#pragma pack%> sai dạng, bị bỏ qua%<#pragma pack(pop[, id])%> sai dạng - nên bỏ qua%<#pragma pack(push[, id][, <n>])%> sai dạng - nên bỏ qua“#pragma ms_struct {on|off|reset}” sai dạng, nên bỏ qua“#pragma ms_struct” sai dạng, nên bỏ qua“#pragma options” sai dạng, bị bỏ quaCOLLECT_GCC_OPTIONS dị hìnhtập tin ptx có dạng saiđối số hàm Ä‘ặc tả dạng saitên hàm Ä‘ặc tả dạng saimặt nạ phải là một giá trị trá»±c tiếpmatch_attr_spec(): Thuộc tính saisố tối Ä‘a các mảng trên một scop.số tối Ä‘a các khối cÆ¡ bản mỗi hàm cần Ä‘ược Graphite phân tích.Số tối Ä‘a các thao tác isl, 0 là không giới hạnsố tối Ä‘a các tham số trong một SCoP.giá trị lớn nhất cá»§a Ä‘ối số %qs là %ukhông cho phép sá»­ dụng Ä‘ồng thời hai tùy chọn -EB và -ELkhông cho phép sá»­ dụng Ä‘ồng thời hai tùy chọn -m32 và -m64gặp lỗi phân bổ bộ nhớ khi Ä‘ang Ä‘ọc dữ liệu xuấtphương thức %s%s%s Ä‘ược Ä‘ánh dấu là go:nointerfacephương thức %s%s%s yêu cầu bộ nhận con trỏkhông tìm thấy phương thức â€œ%s” trong lớpsố tối Ä‘a các khối cÆ¡ bản mỗi hàm cần Ä‘ược Graphite phân tích.giá trị tối thiểu cá»§a Ä‘ối số %qs là %ucác Ä‘ối số không tương á»©ng với nhaucác cha mẹ không khớpthiếu %<(%> sau %<#pragma GCC visibility push%> - nên bỏ quathiếu %<(%> sau %<#pragma pack%> - nên bỏ quathiếu %<=%> (sau thuộc tính %<getter%>)thiếu %<=%> (sau thuộc tính %<setter%>)thiếu â€œ(” trước â€œ#pragma chưa dùng”, nên bỏ quathiếu â€œ)” trước â€œ#pragma chưa dùng”, nên bỏ quaThiếu thuộc tính Code (mã)thiếu PHI defthiếu [error|warning|ignored|push|pop] sau %<#pragma GCC diagnostic%>thiếu tên kiến trúc trong -march=%qsthiếu Ä‘ối số Ä‘ối cho %qsthiếu chắn sau khối %ithiếu ngoặc móc chung quanh bộ khởi tạothiếu paren Ä‘óngthiếu tên cpu trong â€œcpu” Ä‘ích %sthiếu cpu trong -mcpu=%qsthiếu tên cpu trong -mcpu=%qsthiếu Ä‘ịnh nghÄ©athiếu thiết bị hay kiến trúc sau %qsthiếu edge %i->%ithiếu trường â€œ%s” trong â€œ%s”thiếu tên tập tin sau %qsthiếu biểu thức gia sốthiếu Ä‘ích makefile sau %qsthiếu phương thức%s%s%sthiếu sốthiếu paren mởtoán hạng còn thiếuthiếu Ä‘ường dẫn sau %qsthiếu ký tá»± â€œ%c” chấm dứtbổ từ %qE không phải là biểu thức hằngthá»§ tục mô-đunnhiều hÆ¡n %d toán hạng trong %<asm%>sá»± loại từ Ä‘a thư viện %qs không hợp lệsá»± loại từ Ä‘a thư viện %qs không hợp lệsá»± lá»±a chọn Ä‘a thư viện %qs %qs không hợp lệsá»± lá»±a chọn Ä‘a thư viện %qs không hợp lệđặc tả Ä‘a thư viện %qs không hợp lệchỉ ra nhiều tùy chọn -mcpu=.nhiều Ä‘ịnh nghÄ©a cho %q#Tnhiều bộ gọi chung dòngđa ref-qualifierscần %<typename%> trước %<%T::%E%> bởi vì %qT có phạm vi phụ thuộccần chuyển Ä‘ổi rõ ràngchiều dài insn Ã¢msố lượng dịch Ã¢mđộ rộng bị Ã¢m trong trường bít %q+Dcác sá»± xen kẽ phương ngôn assembly lồng nhauđịnh nghÄ©a namespaces lồng nhau chỉ sẵn sàng với -std=c++1z hay -std=gnu++1zđịnh nghÄ©a lại bị lồng cá»§a %<struct %E%>định nghÄ©a lại bị lồng cá»§a %<union %E%>new_symbol(): Tên ký hiệu quá dàithành viên kế %q#D Ä‘ã khai báo á»Ÿ Ä‘âykhông tìm thấy phương thức %<%c%E%>không tìm thấy getter %qskhông có FUNCTION_PROFILER cho CRISkhông có Ä‘ối số nàokhông có Ä‘ối số tới hàm Ä‘ặc tảkhông chỉ Ä‘ịnh tên lớp với %qschưa Ä‘óng %<]%> cho Ä‘ịnh dạng %<%%[%>không có kiểu dữ liệu cho chế Ä‘á»™ %qschưa có mô tả gì.chưa chỉ Ä‘ịnh tập tin Ä‘ầu vàokhông có tập tin nhập vàokhông có tập tin nhập vào ; không sẵn sàng ghi tập tin kết xuấtkhông khớp chokhông có toán tá»­ hậu giảm cho loạikhông có toán tá»­ hậu gia cho loạikhông có toán tá»­ giảm gia cho loạikhông có toán tá»­ tiền gia cho loạichưa có khai báo trước Ä‘ây cho %qDchưa có khai báo nguyên mẫu trước Ä‘ây cho %qDchưa ghi rõ loại bộ xá»­ lý cần liên kếtđịa chỉ không chứa thanh ghi%<return%> (trả lại) không có giá trị, trong hàm trả lại non-void (không rỗng)không sclass cho %s stab (0x%x)không có kiểu có tên %q#T trong %q#Tnút có kiểu không hiểunon-AAPCS dẫn suất biến thể PCSKhởi tạo con trỏ khác KHÔNG tại %Ckiểu không-scalarmột bộ phận mảng dẻo bị khởi tạo một cách không phải tÄ©nhbộ khởi tạo chứa một chỉ mục mảng không phải hằng sốnhãn không-cục-bộthường hóa không thể cùng tồn tại với biến Ä‘ổi
không phải là một tập tin .class Java hợp lệchưa cấu hình cho SPE ABIkhông Ä‘ược cấu hình với hậu số phần Ä‘ầu sysrootkhông Ä‘á»§ Ä‘ối sốkhông Ä‘á»§ Ä‘ối số cho hàm %qEkhông có Ä‘á»§ Ä‘ối số Ä‘ể trả vềkhông Ä‘á»§ thông tin kiểukhông hỗ trợ -fpicghi chúghi chú: con trỏ rỗngsố phải là 0 hay 1số lượng Ä‘ối số không giống với nó khi khai báo mẫu hàmsố lượng thành phần cá»§a véctÆ¡ không thể là mÅ© cá»§a haisố Ä‘ếm phải là %d thay vì %dsố cá»§a kết quả không khớp với số cá»§a giá trịobjc++-cpp-output Ä‘ã lạc hậu; vui lòng dùng objective-c++-cpp-output Ä‘ể thay thếobjc-cpp-output Ä‘ã lạc hậu; vui lòng dùng objective-c-cpp-output Ä‘ể thay thếđối tượng không phải là phương thứcđịnh dạng mã Maverick Ä‘ã cÅ© â€œ%c”khai báo cÅ© %q#Dđịnh nghÄ©a hàm theo cách cÅ©0.0 chỉ nạp Ä‘ược như là một số trá»±c tiếpchỉ một trong số các tùy chọn sau Ä‘ược chỉ ra: -mm và -mlchỉ một trong số các tùy chọn sau Ä‘ược chỉ ra: -mm và -mtiny=chỉ một trong số các tùy chọn sau Ä‘ược chỉ ra: -ms và -mlchỉ một trong số các tùy chọn sau Ä‘ược chỉ ra: -ms và -mmchỉ một trong số các tùy chọn sau Ä‘ược chỉ ra: -ms và -mtiny=mở %s gặp lỗi: %smở /dev/zero: %mmở tập tin phụ thuộc %s: %mmở tập tin kết xuất %qs: %smở tập tin kết xuất %s: %mtoán hạng không phải là một mã Ä‘iều kiện, mã toán hạng không hợp lệ â€œ%c”toán hạng không phải là một mã Ä‘iều kiện, mã toán hạng sai â€œD”toán hạng không phải là một mã Ä‘iều kiện, mã toán hạng sai â€œY”số thứ tá»± toán hạng còn thiếu Ä‘ằng sau %%-lettersố thứ tá»± toán hạng á»Ÿ ngoại phạm vicác kiểu toán hạng là %qT và %qTcác toán hạng cho %T/%t phải là reg + const_int:các toán hạng ?: có kiểu khác %qT và %qTthuộc tính mức tối Æ°u không khớptùy chọn dòng lệnh %qs thì hợp lệ cho %s nhưng lại không với %stùy chọn ("%s") Ä‘ã sẵn Ä‘ược Ä‘ưa ra rồiđối số tùy chọntùy chọn Ä‘ã bật: thiếu tùy chọn hay Ä‘ích sau %qstùy chọn Ä‘ược gá»­i: cần biểu thức nguyên%<default%> nguyên gốc á»Ÿ Ä‘âyđịnh nghÄ©a nguyên bản xuất hiện á»Ÿ Ä‘âyđịnh nghÄ©a lần Ä‘ầu á»Ÿ Ä‘âycuộc gọi hàm gián tiếp lần Ä‘ầu tiên không phải Ä‘ược tính Ä‘ể chèn vào trá»±c tiếpnguyên gốc Ä‘ược chỉ Ä‘ịnh á»Ÿ Ä‘âycấu tá»­ %qs mồ côivòng ngoài hÆ¡n %<__transaction_cancel%> không nằm trong vòng ngoài hÆ¡n %<__transaction_atomic%>chưa chỉ Ä‘ịnh tập tin Ä‘ầu vàotên tập tin kết xuất Ä‘ược chỉ ra hai lầnoutput_move_single:tràn kích thước mảngtràn trong biểu thức hằngtràn giá trị liệt kêđang dè lên hàm cuối %q+Dchèn thêm cấu trúc cho vừa %q+Dđối số %q+D Ä‘ược khai báo %<_Noreturn%>đối số %q+D Ä‘ược khai báo %<inline%>đối số %qD Ä‘ược khai báo là voidđối số %qD Ä‘ược khai báo với kiểu voidđối số %qD có kiểu lớp Javađối số %qD có kiểu chưa Ä‘ầy Ä‘á»§tham số %qD Ä‘ược khởi tạođối số %qD Ä‘ặt nhưng chưa Ä‘ược dùngđối số %u (%q+D) có kiểu voidtham số %u có kiểu voidtên Ä‘ối số bị bỏ quachuyển Ä‘ối số quá lớn cho ngăn xếppedwarnpedwarn: permerrorpermerror: pex_init bị lỗi: %mphần bổ sung %s Ä‘ược Ä‘ặc tả với các Ä‘ường dẫn khác nhau:
%s
%sđối số con trỏsá»± gán hàm trỏcon trỏ hoặc kết quả cấp phát Ä‘ượccon trỏ Ä‘ến hàm Ä‘ược dùng trong số họccon trỏ Ä‘ến hàm Ä‘ược dùng trong phép trừđối số polymorphicđịa chỉ hậu gia không phải là một thanh ghipostfix %qD phải nhận %<int%> như là Ä‘ối số cá»§a nópostfix %qD phải nhận %<int%> như là Ä‘ối số thứ hai cá»§a nóhậu tố %qD cần trả về %qTđích không phải là một hàm trỏ hoặc một tham chiếuđịa chỉ tiền giảm không phải là một thanh ghiđịa chỉ tiền gia không phải là một thanh ghiđộ chính xácđộ chính xác theo Ä‘ịnh dạng printflệnh Thumb căn cứ vàogặp lệnh căn cứ vào trong dãy có Ä‘iều kiệntiền tố %qD cần trả về %qTprev_bb cá»§a %d phải là %d, chứ không phải %d%<#pragma omp declare reduction%> trướckhai báo trướckhai báo trước Ä‘ây %q#Dkhai báo trước Ä‘ây %q+Dkhai báo trước Ä‘ây là %q#Dkhai báo trước á»Ÿ Ä‘âykhai báo trước Ä‘ây cá»§a %<%c%E%>khai báo trước Ä‘ây cá»§a %<%c%E%> như là %<@optional%>khai báo trước Ä‘ây cá»§a %<%c%E%> như là %<@required%>khai báo trước cá»§a %<%c%s%>khai báo trước Ä‘ây cá»§a %Dkhai báo trước Ä‘ây cá»§a %q+Dkhai báo trước Ä‘ây cá»§a %q+D á»Ÿ Ä‘âykhai báo trước Ä‘ây cá»§a %qDkhai báo trước Ä‘ây cá»§a %q+D á»Ÿ Ä‘âykhai báo trước Ä‘ây cá»§a %qD với không chung dòng thuộc tínhkhai báo trước Ä‘ây cá»§a %qEkhai báo trước Ä‘ây cá»§a không gian tên %qD á»Ÿ Ä‘âykhai báo trước Ä‘ây cá»§a %qL là linkageđịnh nghÄ©a trước á»Ÿ Ä‘âykhai báo trước Ä‘ây cá»§a %q+#Tđịnh nghÄ©a trước Ä‘ây cá»§a %q+D là Ä‘âysau Ä‘ặc tả trước Ä‘ây trong %q#Dđã khai báo trước á»Ÿ Ä‘âyđã Ä‘ịnh nghÄ©a trước á»Ÿ Ä‘âyđã Ä‘ịnh nghÄ©a trước là %scái trước Ä‘ược dùng là á»Ÿ Ä‘âymẫu nguyên gốc á»Ÿ Ä‘âythành viên riêng %q+#D trong cấu trúc nặc danhthành viên riêng %q+#D trong hỗn hợp nặc danhkhông hỗ trợ sá»­ dụng chức năng Ä‘o hiệu năng sá»­ dụng với -mgchương trình: %s
thuộc tính không thể là trường bítthuộc tính không thể là một mảngthành viên bảo vệ %q+#D trong cấu trúc nặc danhthành viên bảo vệ %q+#D trong hỗn hợp nặc danhgiao thức %qE Ä‘ã lạc hậukhai báo mẫu trướcđược cung cấp cho %q+Dđược cung cấp cho %qDbổ từ q/Q không hợp lệ cho tham chiếu ký hiệumã hạn Ä‘ịnh trong khai báovòng lặp range-based %<for%> chỉ sẵn sàng với -std=c++11 hay -std=gnu++11khởi tạo lại cá»§a %qs tại %Lđọc gặp lỗi khi Ä‘ọc dữ liệu xuấtđang Ä‘ọc lÆ¡p %s cho lần thứ hai từ %sđang Ä‘ọc tập tin Ä‘ầu vàohãy dịch lại với tùy chọn -fcompare-debugchèn vào trá»±c tiếp một cách Ä‘ệ quyyêu cầu Ä‘ệ quy bởi thay thế cá»§a %qS
yêu cầu Ä‘ệ quy từ %q#D
yêu cầu Ä‘ệ quy từ Ä‘ây
sá»± khai báo lại %q+D khác trong %<constexpr%>khai báo lại cá»§a %<enum %E%>khai báo lại cá»§a %q#Dkhai báo lại á»Ÿ Ä‘ây như là %q#Dhàm trá»±c tiếp bên ngoài Ä‘ã xác Ä‘ịnh lại thì không phải Ä‘ược tính Ä‘ể chèn vào trá»±c tiếpđịnh nghÄ©a lại cá»§a %<struct %E%>định nghÄ©a lại cá»§a %<union %E%>định nghÄ©a lại cá»§a %q#Dđịnh nghÄ©a lại cá»§a %q#Tđịnh nghÄ©a lại cá»§a %q+Dđịnh nghÄ©a lại cá»§a Ä‘ối số mặc Ä‘ịnh cá»§a %q#Dđịnh nghÄ©a lại cá»§a Ä‘ối số %q+Dđịnh nghÄ©a lại cá»§a typedef %q+Dđịnh nghÄ©a lại cá»§a typedef %q+D với kiểu khácđịnh nghÄ©a lại cá»§a typedef %q+D với kiểu sá»­a biến Ä‘ổitái khai báo không hợp lệ cho %q+Dref-qualifiers chỉ sẵn sàng với -std=c++11 hay -std=gnu++11tham chiếu %qD Ä‘ược khởi tạo bằng chính nótham chiếu Ä‘ến biến cục bộ %qD Ä‘ược trả vềvùng cá»§a lp %i là saithuộc tính regparam và thiscall không tương thích với nhauthá»±c hiện lại lớp %qEđang gỡ bỏ tập tin .rpo: %mthay Ä‘ổi tên cá»§a Ä‘ặc tả %s thành %s
đang Ä‘ổi tên tập tin .rpo: %mlặp %s trong Ä‘ịnh dạngđược yêu cầu bởi thay thế cá»§a %qS
được yêu cầu từ %q#D
được yêu cầu từ Ä‘ây
resolve_function(): kiểu hàm sairesolve_operator(): intrinsic sairesolve_subroutine(): kiểu hàm saitrả về không Ä‘ược phép bởi rào chắnkiểu trả về %q#T là một kiểu không hoàn toàntrả về kiểu mặc Ä‘ịnh cho %<int%>kiểu trả về là một kiểu không hoàn toànbiểu thức trả về với một giá trị, trong hàm trả lại `void'trả về một giá trị từ cấu tá»­trả về một giá trị từ há»§y tá»­trả về danh sách bộ khởi tạotrả về tham chiếu Ä‘ến tạm thời (temporary)toán hạng phải cá»§a biểu thức dịch %q+E là số Ã¢mđồ chính xác bên phảiđồ chính xác bên phải theo Ä‘ịnh dạng strfmonsố lượng quay phải >= Ä‘á»™ rộng cá»§a kiểusố lượng quay phải bị Ã¢msố lượng dịch phải  >= Ä‘á»™ rộng cá»§a kiểusố lượng dịch trái là số Ã¢m%qD Ä‘ược khai báo á»Ÿ Ä‘âyCPU rx100 không có phần cứng xá»­ lý số thá»±c dấu chấm Ä‘á»™ng FPUCPU rx200 không có phần cứng Ä‘Æ¡n vị dấu chấm Ä‘á»™ng (FPU)scalar_storage_order không Ä‘ược hỗ trợtá»· lệ cần phải là không Ã¢m
biến Ä‘ổi không thể cùng tồn tại với tiêu chuẩn hóa, nên bỏ qua
đối số thứ hai phải là kiểu slice hay chuỗiđối số 1 cá»§a __builtin_paired_predicate phải là một hằngđối số thứ hai cá»§a %<va_start%> không là Ä‘ối số có tên cuốiđối số thuộc tính phần không phải là một hằng chuỗiphần cá»§a %q+D không thể bị ghi Ä‘èkiểu phần xung Ä‘á»™t với %Dxem <http://www.gnu.org/licenses/>.  */bộ chọn phải là một giá trị trá»±c tiếpshared và mdll không tương thích với nhaucall_stmt Ä‘ược chia sẻ:chia sẻ (dùng chung) không Ä‘ược hỗ trợrtx dùng chungsố lượng dịch không phải số nguyên không dấudịch cá»§a toán hạng không nguyênđọc ngắn khi xuất dữ liệuIF (nếu) Ä‘Æ¡n giảnsimplify_intrinsic_op(): Toán tá»­ saikích thước cá»§a %q+D là %d bytekích thước cá»§a %q+D lớn hÆ¡n %wd bytekích cỡ mảng %qD bị Ã¢mkích cỡ mảng %qE bị Ã¢mkích cỡ mảng %qE quá lớnkích cỡ mảng bị Ã¢mkích cỡ mảng không phải là biểu thức hằng số nguyênkích cỡ mảng là quá lớnkích thước cá»§a vòng lặp %d nên là %d, không phải %dkích cỡ tile (đơn vị dữ liệu) Ä‘ể chặn vòng lặp.cỡ cá»§a mảng không tên là Ã¢mkích thước cá»§a mảng chưa Ä‘ặt tên là quá lớnkích cỡ biến %q+D quá lớnkích cỡ (long double) là 12.kích cỡ (long double) là 16.soft-float và long-double-128 là xung khắc nhautiếc là chưa thá»±c hiệntiếc là chưa thá»±c hiện: nguồn là một hàm trỏ tới loại không hoàn toànnguồn không phải là một hàm trỏnguồn không phải là một hàm trỏ tới lớpnguồn không phải có loại lớpnguồn có loại lớp không hoàn toànnguồn không có loại nhiều dạngđặc tả %qs có %<%%0%c%> không hợp lệđặc tả %qs có %<%%W%c%> không hợp lệđặc tả %qs có %<%%x%c%> không hợp lệđặc tả %qs không hợp lệspec thất bại: có nhiều hÆ¡n một Ä‘ối số chuyển cho SYSROOT_HEADERS_SUFFIX_SPECspec thất bại: có nhiều hÆ¡n một Ä‘ối số chuyển cho SYSROOT_SUFFIX_SPECtập tin Ä‘ặc tả không có Ä‘ặc tả Ä‘ể liên kếtđặc tả là â€œ%s”
 
đặc tả chứa cú pháp %%include dạng sai sau %ld ký tựđặc tả chứa cú pháp %%rename dạng sai sau %ld ký tựđặc tả chứa Ä‘ặc tả %s không có tên mớitập tin Ä‘ặc tả dạng sai sau %ld ký tựđặc tả chứa một lệnh %% không rõ sai sau %ld ký tá»±khung stack quá lớnstack_offset phải là bội số cá»§a 4stack_offset bé nhất phải là 4khung stack quá lớn: %d bytescâu lệnh không có tác Ä‘á»™ng gìlệnh không phải biểu thức hằnglệnh Ä‘ược Ä‘ánh dấu cho throw á»Ÿ giữa một khốilệnh Ä‘ược Ä‘ánh dấu cho throw, nhưng không phải vậycâu lệnh không có tác dụngthẩm tra tÄ©nh gặp lỗithẩm tra tÄ©nh gặp lỗi: %sthành viên dữ liệu tÄ©nh %qD trong lớp không têntrên TPF-OS thì không hỗ trợ staticstatic_assert không có lời nhắn chỉ sẵn sàng với -std=c++1z hay -std=gnu++1zcác thuộc tính stdcall và thiscal không tương thích với nhaulạc %<@%> trong chương trìnhlạc %<\%o%> trong chương trìnhlạc %qc trong chương trìnhlạc %qs trong chương trìnhstruct Ä‘ược Ä‘ịnh nghÄ©a á»Ÿ Ä‘âystruct không có thành viên nàocấu có không thành viên Ä‘ã Ä‘ặt têngợi Ã½ bao quanh %<&&%> bằng dấu ngoặc Ä‘Æ¡n phía trong %<||%>đề nghị bao %<+%> bằng dấu ngoặc Ä‘Æ¡n toán hạng cá»§a %<&%>đề nghị bao %<+%> bằng dấu ngoặc Ä‘Æ¡n phía trong %<<<%>đề nghị bao %<+%> bằng dấu ngoặc Ä‘Æ¡n phía trong %<>>%>đề nghị bao %<-%> bằng dấu ngoặc Ä‘Æ¡n toán hạng cá»§a %<&%>đề nghị bao %<-%> bằng dấu ngoặc Ä‘Æ¡n phía trong %<<<%>đề nghị bao %<-%> bằng dấu ngoặc Ä‘Æ¡n phía trong %<>>%>gợi Ã½ bao quanh biểu thức %<>>%> bằng dấu ngoặc Ä‘Æ¡ngợi Ã½ là dùng dấu ngoặc Ä‘Æ¡n bao quanh biểu thức toán học trong toán hạng cá»§a %<^%>gợi Ã½ là dùng dấu ngoặc Ä‘Æ¡n bao quanh biểu thức toán học trong toán hạng cá»§a %<|%>gợi Ã½ là dùng dấu ngoặc Ä‘Æ¡n bao quanh phép gán Ä‘ược dùng như là giá trị chân lýgợi Ã½ là dùng dấu ngoặc Ä‘Æ¡n bao quanh biểu thức so sánh trong toán hạng cá»§a %<!=%>gợi Ã½ là dùng dấu ngoặc Ä‘Æ¡n bao quanh biểu thức so sánh trong toán hạng cá»§a %<&%>gợi Ã½ là dùng dấu ngoặc Ä‘Æ¡n bao quanh biểu thức so sánh trong toán hạng cá»§a %<==%>gợi Ã½ là dùng dấu ngoặc Ä‘Æ¡n bao quanh biểu thức so sánh trong toán hạng cá»§a %<^%>gợi Ã½ là dùng dấu ngoặc Ä‘Æ¡n bao quanh biểu thức so sánh trong toán hạng cá»§a %<|%>gợi Ã½ là dùng dấu ngoặc Ä‘Æ¡n bao quanh biểu thức so sánh trong toán hạng cá»§a %<!%> hoặc thay Ä‘ổi %<&%> thành %<&&%> hay %<!%> thành %<~%>gợi Ã½ là dùng dấu ngoặc Ä‘Æ¡n bao quanh biểu thức so sánh trong toán hạng cá»§a %<!%> hay thay Ä‘ổi %<|%> thành %<||%> hay %<!%> thành %<~%>các khả năng Ä‘ược gợi Ã½:hỗ trợ cho chế Ä‘á»™ %qsswitch %qs không bắt Ä‘ầu với %<-%>switch %qs không còn tiếp tục Ä‘ược hỗ trợ nữaswitch thiếu case mặc Ä‘ịnhswitch bắt Ä‘ầu á»Ÿ Ä‘âyký hiệu dùng như là toán hạng giá trị trá»±c tiếpký hiệu dùng với thanh ghi cả hai loại cÆ¡ bản và phụ lụcký hiệu với hiệu số dùng trong chế Ä‘á»™ PICsymtab_node::verify gặp lỗisysctl cho kern.osversion gặp lỗi: %mđường dẫn hệ thống %qs không phải dạng tuyệt Ä‘ốilấy Ä‘ịa chỉ cá»§a cấu tá»­ %qElấy Ä‘ịa chỉ cá»§a há»§y tá»­ %qEđang lấy Ä‘ịa chỉ cá»§a mẫulấy Ä‘ịa chỉ cá»§a mảng tạmCPU Ä‘ích không hỗ trợ chế Ä‘á»™ ARMCPU Ä‘ích không hỗ trợ chỉ lệnh THUMBCPU Ä‘ích không hỗ trợ làm việc tương tácCPU Ä‘ích không hỗ trợ truy cập chưa cân chỉnhCPU Ä‘ích không hỗ trợ truy cập chưa cân chỉnhđối số Ä‘íchđịnh dạng Ä‘ích không hỗ trợ vô cá»±cđích không phải là một hàm trỏ hoặc một tham chiếuđích không phải là hàm trỏ hoặc tham chiếu Ä‘ến hạngđích không phải là hàm trỏ hoặc tham chiếu Ä‘ến loại hoàn toàntùy chọn Ä‘ặc trưng cho Ä‘ích vẫn không tương á»©nghệ thống Ä‘ích không hỗ trợ xuất gỡ lỗiràng buộc mẫu gặp lỗi nghiêm trọngcho khai báo hàm mẫu %q+Dđối số mẫu %q+#Dcác Ä‘ối số tạm không thể là bạntemplate-id %qD cho %q+D không khớp bất kỳ khai báo mẫu nàotemplate-id %qD trong khai báo cá»§a mẫu nguyên gốctemplate-id %qD Ä‘ược dùng như bộ khai báotemplate-parameter-các mẫu không thể là %<virtual%>bộ tam nguyên %<operator?:%>bộ tam nguyên %<operator?:%> trong %<%E ? %E : %E%>thuộc tính %<interrupt%> cần bộ xá»­ lý MIPS32r2 hay mới hÆ¡nthuộc tính %qE cần tham sốđích này không hỗ trợ %qscờ printf â€œ â€œcờ strfmon â€œ!”cờ printf â€œ#”cờ strftime â€œ#”cờ printf â€œ'”cờ scanf â€œ'”cờ strfmon â€œ(”cờ printf â€œ+”cờ strfmon â€œ+”cờ printf â€œ-”cờ strfmon â€œ-”cờ strftime â€œ-”cờ printf â€œ0”cờ strftime â€œ0”đồ sá»­a Ä‘ổi â€œE” cá»§a strftimecờ printf â€œI”cờ scanf â€œI”đồ sá»­a Ä‘ổi â€œO”đồ sá»­a Ä‘ổi â€œO” cá»§a strftimecờ strfmon â€œ^”cờ strftime â€œ^”cờ strftime â€œ_”cờ scanf â€œa”cờ scanf â€œm”cờ chẩn Ä‘oán â€œq”tùy chọn -shared (chia sẻ) hiện thời không Ä‘ược hỗ trợ cho VAX ELFtổ chức Phần mềm Tá»± do; phiên bản 3, hoặc mới hÆ¡n (tùy bạn chọn)CPU RX100 không có phần cứng hỗ trợ dấu chấm Ä‘á»™ng (FPU)CPU RX200 không có phần cứng hỗ trợ dấu chấm Ä‘á»™ng (FPU)địa chỉ cá»§a %qD sẽ không bao giờ là NULLtính năng scanf Ä‘ể thu hồi sá»± gán__builtin_thread_pointer không Ä‘ược hỗ trợ trên Ä‘ích nàytrình biên dịch sẽ coi rằng Ä‘ịa chỉ cá»§a %qD sẽ không bao giờ là NULLsố lượng không Ä‘ược nhỏ hÆ¡n 0.  hãy kiểm tra bên trong _mm_sll_pi16 trong mã.số lượng không Ä‘ược nhỏ hÆ¡n 0.  hãy kiểm tra bên trong _mm_sll_pi32 trong mã.số lượng không Ä‘ược nhỏ hÆ¡n 0.  hãy kiểm tra bên trong _mm_sll_si64 trong mã.số lượng không Ä‘ược nhỏ hÆ¡n 0.  hãy kiểm tra bên trong _mm_slli_pi16 trong mã.số lượng không Ä‘ược nhỏ hÆ¡n 0.  hãy kiểm tra bên trong _mm_slli_pi32 trong mã.số lượng không Ä‘ược nhỏ hÆ¡n 0.  hãy kiểm tra bên trong _mm_slli_si64 trong mã.số lượng không Ä‘ược nhỏ hÆ¡n 0.  hãy kiểm tra bên trong _mm_sra_pi16 trong mã.số lượng không Ä‘ược nhỏ hÆ¡n 0.  hãy kiểm tra bên trong _mm_sra_pi32 trong mã.số lượng không Ä‘ược nhỏ hÆ¡n 0.  hãy kiểm tra bên trong _mm_sra_si64 trong mã.số lượng không Ä‘ược nhỏ hÆ¡n 0.  hãy kiểm tra bên trong _mm_srai_pi16 trong mã.số lượng không Ä‘ược nhỏ hÆ¡n 0.  hãy kiểm tra bên trong _mm_srai_pi32 trong mã.số lượng không Ä‘ược nhỏ hÆ¡n 0.  hãy kiểm tra bên trong _mm_srai_si64 trong mã.số lượng không Ä‘ược nhỏ hÆ¡n 0.  hãy kiểm tra bên trong _mm_srl_pi16 trong mã.số lượng không Ä‘ược nhỏ hÆ¡n 0.  hãy kiểm tra bên trong _mm_srl_pi32 trong mã.số lượng không Ä‘ược nhỏ hÆ¡n 0.  hãy kiểm tra bên trong _mm_srl_si64 trong mã.số lượng không Ä‘ược nhỏ hÆ¡n 0.  hãy kiểm tra bên trong _mm_srli_pi16 trong mã.số lượng không Ä‘ược nhỏ hÆ¡n 0.  hãy kiểm tra bên trong _mm_srli_pi32 trong mã.số lượng không Ä‘ược nhỏ hÆ¡n 0.  hãy kiểm tra bên trong _mm_srli_si64 trong mã.đối số thứ năm phải là giá trị trá»±c tiếp 8-bitđối số thứ tư phải là tá»· lệ 1, 2, 4, 8đối số trá»±c tiếp phải là giá trị trá»±c tiếp 4-bítđối số trá»±c tiếp phải là giá trị trá»±c tiếp 5-bítđối số trá»±c tiếp phải là giá trị trá»±c tiếp 8-bítkiểu không tương thích Ä‘ược Ä‘ịnh nghÄ©a á»Ÿ Ä‘âyđối số cuối phải là giá trị trá»±c tiếp 1-bítđối số cuối phải là giá trị trá»±c tiếp 2-bítđối số cuối phải là giá trị trá»±c tiếp 3-bítđối số cuối phải là giá trị trá»±c tiếp 32-bítđối số cuối phải là giá trị trá»±c tiếp 4-bítđối số cuối phải là giá trị trá»±c tiếp 5-bítđối số cuối phải là giá trị trá»±c tiếp 1-bítđối số cuối phải là giá trị trá»±c tiếp 8-bítđối số cuối phải là tá»· lệ 1, 2, 4, 8m210 không có hỗ trợ về cuối nhỏvùng cá»§a số lượng phải nằm trong vùn 0 Ä‘ến 32.  hãy kiểm tra bên trong _mm_ror_pi16 trong mã.vùng cá»§a số lượng phải nằm trong vùn 0 Ä‘ến 32.  hãy kiểm tra bên trong _mm_ror_pi32 trong mã.vùng cá»§a số lượng phải nằm trong vùn 0 Ä‘ến 32.  hãy kiểm tra bên trong _mm_rori_pi16 trong mã.vùng cá»§a số lượng phải nằm trong vùn 0 Ä‘ến 32.  hãy kiểm tra bên trong _mm_rori_pi32 trong mã.vùng cá»§a số lượng phải nằm trong vùn 0 Ä‘ến 64.  hãy kiểm tra bên trong _mm_ror_si64 trong mã.vùng cá»§a số lượng phải nằm trong vùn 0 Ä‘ến 64.  hãy kiểm tra bên trong _mm_rori_si64 trong mã.vùng mặt nạ phải nằm từ 0 Ä‘ến 255vùng bộ chọn phải nằm từ 0 Ä‘ến 1vùng bộ chọn phải nằm từ 0 Ä‘ến 3vùng bộ chọn phải nằm từ 0 Ä‘ến 7đối số thứ ba phải là giá trị trá»±c tiếp 8-bitđối số thứ năm phải là giá trị trá»±c tiếp 8-bithàm dá»±ng sẵn chỉ sẵn có trên fr405 và fr450hàm dá»±ng sẵn chỉ sẵn có trên fr405hàm dá»±ng sẵn chỉ sẵn có trên fr500 và fr550bộ dịch này không hỗ trợ %sđây là nhãn mặc Ä‘ịnh Ä‘ầu tiênđây là lệnh:hàm Ä‘a phương tiện chỉ sẵn có trên fr400 và fr500hàm Ä‘a phương tiện chỉ sẵn có trên fr500đích này không hỗ trợ %qskiến trúc Ä‘ích là về cuối nhỏ (little-endian)thẻ bài %u có x-location == %uThẻ bài %u có x-location == y-location == %uthẻ bài %u có y-location == %uquá Ã­t Ä‘ối số tới %%:compare-debug-auxbase-optquá Ã­t Ä‘ối số cho %%:replace-extensionquá Ã­t Ä‘ối số tới %%:version-comparequá Ã­t Ä‘ối số cho %qEquá Ã­t Ä‘ối số cho há»§y tá»­ %q#Dquá Ã­t Ä‘ối số cho hàmquá Ã­t Ä‘ối số cho hàm %q#Dquá Ã­t Ä‘ối số cho hàm %qEquá Ã­t Ä‘ối số cho hàm thành viên %q#Dquá Ã­t Ä‘ối số cho phương thức %q#Dquá Ã­t biểu thức cho cấu trúcquá nhiều mệnh Ä‘ề %<if%>quá nhiều Ä‘ối số %<static%>quá nhiều mệnh Ä‘ề %qsquá nhiều thay thế trong %<asm%>quá nhiều Ä‘ối sốquá nhiều Ä‘ối số cho Ä‘ịnh dạngquá nhiều Ä‘ối số tới %%:compare-debug-auxbase-optquá nhiều Ä‘ối số tới %%:compare-debug-dump-optquá nhiều Ä‘ối số tới %%:compare-debug-self-optquá nhiều Ä‘ối số tới %%:version-comparequá nhiều Ä‘ối số cho %qEquá nhiều Ä‘ối số cho cấu tá»­ %q#Dquá nhiều Ä‘ối số cho hàmquá nhiều Ä‘ối số cho hàm %q#Dquá nhiều Ä‘ối số cho hàm %qEquá nhiều Ä‘ối số Ä‘ể thá»±c hiệnquá nhiều Ä‘ối số cho hàm thành viên %q#Dquá nhiều Ä‘ối số cho phương thức %q#Dquá nhiều Ä‘ối số cho cho phương thức %qEquá nhiều Ä‘ối số cho hàm Ä‘ược quá tải %squá nhiều biểu thức cho cấu trúcchỉ ra quá nhiều tên tập tin. Gõ lệnh %s --help Ä‘ể biết cách dùngquá nhiều bộ khởi tạo cho %qTquá nhiều tập tin nhập vàoquá nhiều cha Ä‘ược mởngôn ngữ C truyền thống từ chối toán tá»­ cộng một ngôikiểm tra cây: %s, có %s trong %s, tại %s:%dtree check: cần lớp %qs, có %qs (%s) trong %s, tại %s:%dtree check: cần không gì cá»§a %s, có %s trong %s, tại %s:%dtree check: cần omp_clause %s, có %s trong %s, tại %s:%ddùng %qE Ä‘ể thay thếcần thiết Ã­t nhất hai phần cho %skiểu %qE có các hàm thành viên áº£okiểu %qT không là cÆ¡ sở trá»±c tiếp cá»§a %qTkiểu %qT không dẫn xuất từ kiểu %<java::lang::Throwable%>kiểu %qT quá lớnkiểu %qT nên khớp kiểu %qTkiểu không có phương thứckiểu Ä‘ã lạc hậukiểu Ä‘ã lạc hậu: %skiểu không khớp cho nhãn case trong câu lệnh switchkhông khớp kiểu trong biểu thức Ä‘ịa chỉkiểu không khớp trong tham chiếu mảngkiểu không khớp trong biểu thức nhị phânkiểu không khớp trong biểu thức phứckiểu không khớp trong tham chiếu thành phầnkiểu không khớp trong biểu thức Ä‘iều kiệnkhông khớp kiểu trong tham số %ikiểu không khớp trong biểu thức dịchkiểu không khớp trong biểu thức hoán Ä‘ổi véc-tÆ¡kiểu cá»§a %qD mặc Ä‘ịnh Ä‘ến %<int%>không hiểu kiểu cá»§a %qEtypedef %q+D Ä‘ược khai báo %<_Noreturn%>typedef %q+D Ä‘ược khai báo %<inline%>typedef Ä‘ược khai báo %<auto%>các kiểu có lẽ không nên Ä‘ược Ä‘ịnh nghÄ©a trong Ã¡p kiểucác kiểu không nên Ä‘ược Ä‘ịnh nghÄ©a trong Ä‘ối số mẫukhông thể mô phỏng %qskhông thể tạo ra việc nạp lại cho:không thể mở quan hệ phụ thuộc năng Ä‘á»™ng â€œ%s”không thể mở tập tinkhông thể mở tập tin nhật ký %<vtv_class_set_sizes.log%>: %mkhông thể mở tập tin nhật ký %<vtv_count_data.log%>: %mkhông thể mở tập tin nhật ký %<vtv_set_ptr_data.log%>: %mthậm chí không thể in ra toán hạng; mã == %d (%c)không thể dùng â€œ%s” cho thanh ghi PIC%2d không Ä‘iều kiện chưa bao giờ thá»±c hiện
%2d không Ä‘iều kiện Ä‘ược lấy %s
toán hạng không thể chuyển Ä‘ổi %c %qsbộ chọn chưa Ä‘ược khai báo %qEcần AST thuộc kiểu %sgặp tham số thừacần thuộc tínhgặp loại cÆ¡ bản (base-type) bất thường trong cris_print_indexgặp loại chỉ mục (index-type) bất thường trong cris_print_indexgặp toán hạng nhân lên bất thườngkhông cần offsetgặp toán hạng bất thườnggặp hiệu á»©ng khác bất thường trong Ä‘ịa chỉkhông nhận ra gọi opcần hàmunion Ä‘ược Ä‘ịnh nghÄ©a á»Ÿ Ä‘âyunion không có thành viên nàounion không có thành viên nàokhông hiểu tùy chọn -mdebug-%skhông hiểu thuật toán IRA %qskhông hiểu vùng IRA %qskhông hiểu mô hình phân vùng TLS %qskhông hiểu mô hình TLS %qskhông hiểu thuật toán xếp lại khối cÆ¡ bản %qskhông hiểu giá trị cc_attrkhông rõ kiểu khắt khe "%s"không rõ Ä‘íchkhông rõ chế Ä‘á»™ lệnhkhông hiểu xuất bộ liên kết %qskhông hiểu chế Ä‘á»™ máy %qEkhông rõ lệnh di chuyển:không hiểu ABI offload %qskhông hiểu toán tá»­ %qs trong %%:version-comparekhông hiểu tùy chọn %q.*s trong %<-fopt-info-%s%>không hiểu tùy chọn cho -mrecip=%skhông hiểu mô hình kích thước con trỏ %qskhông hiểu thuộc tính tính chấtkhông hiểu dấu chấm câu â€œ%c”không hiểu tên thanh ghi: %skhông rõ bỏ ghi rõ bố trí lạikhông hiểu hàm Ä‘ặc tả %qskhông rõ nguồnkhông hiểu tùy chọn -mlong-double-%skhông hiểu tên kiểu %qEkhông hiểu giá trị %qs cho -marchkhông hiểu giá trị %qs dành cho -mcpukhông hiểu giá trị %qs dành cho -mtuneunion Ä‘ược Ä‘ịnh nghÄ©a á»Ÿ Ä‘âyunquote_string(): nhận chuỗi saikhông thể Ä‘ọc Ä‘ượckhông nhận ra Ä‘ối số cá»§a tùy chọn -mcpu: %skhông nhận ra Ä‘ối số cá»§a tùy chọn không nhận ra lệnh:không nhận ra Ä‘ịa chỉkhông nhận ra Ä‘ối số tới tùy chọn %qskhông nhận ra Ä‘ối số cho tùy chọn --help=: %q.*skhông nhận ra Ä‘ối số cho tùy chọn -fsanitize%s=: %q.*skhông thừa nhận tùy chọn dòng lệnh %<-%s%>không thừa nhận tùy chọn dòng lệnh %<-fdump-%s%>không thừa nhận tùy chọn dòng lệnh %<-fopt-info-%s%>không thừa nhận tùy chọn dòng lệnh %qskhông nhận giá trị khả kiến ivar %qskhông thừa nhận tùy chọn -fdisablekhông thừa nhận tùy chọn -fenablekhông nhận ra tên thanh ghi %qskhông nhận ra giá trị thứ tá»± kho vô hướng %qskhông nhận ra Ä‘iều nên là hằng sốlỗi không thể phục hồi Ä‘ượcđối số không Ä‘ược hỗ trợ cho %DHóa hợp không Ä‘ược hỗ trợ: %skhông hỗ trợ chuyển Ä‘ổi dấu chấm cố Ä‘ịnhkhông hỗ trợ chế Ä‘á»™ %s
simdlen không Ä‘ược hỗ trợ %dsá»± xen kẽ phương ngôn assembly chưa chấm dứtgặp chuỗi Ä‘ịnh dạng chưa Ä‘ược chấm dứttham số chưa dùng %q+Dbiến chưa Ä‘ược dùng %q+Dbiến chưa Ä‘ược dùng %qDsá»­ dụng #include Ä‘ể thay thếdùng %<%T::%D%> thay thếdùng %<%T::%D%> thay cho %<%T::%D%> cho tên cá»§a cấu tá»­ trong tên hạn Ä‘ịnhdùng %<this->%D%> thay thếsá»­ dụng -Winvalid-pch Ä‘ể có thêm thông tinsá»­ dụng  __attribute__ ((vector_size)) Ä‘ể thay thếdùng mã số hàm nội tại trong tìm kiếm hồ sÆ¡.việc dùng %<auto%> trong khai báo tham số chỉ sẵn sàng với -std=c++11 hay -std=gnu++11dùng %qs trong mẫudùng cá»§a %s và %s cùng với Ä‘ịnh dạng %sdùng cá»§a %s và %s cùng với %<%%%c%> Ä‘ịnh dạng %sdùng hàm bị xóa %qDdùng Ã¡p kiểu theo cách cÅ©trừ phi Ã©p thành kiểu %qTđang dùng %<%c%s%>dùng phần mở rộng số nguyên chính Ä‘ôi IBMdùng phần mở rộng số nguyên chính Ä‘ôi IEEEchưa thá»±c hiện chức năng sá»­ dụng @FILE với nhiều tập tinsá»­ dụng darwin64 ABIđang dùng trường không hợp lệ %qDsá»­ dụng darwin ABI kiểu cũđang dùng mẫu như là lvalueđối số hợp lệ cho cho %qs là: %sđối số giá trịgiá trị Ä‘ược tính không Ä‘ược sá»­ dụngbiến %D cá»§a kiểu %<cb%> phải không Ä‘ược khởi tạobiến %q+D Ä‘ược khai báo %<_Noreturn%>biến %q+D Ä‘ược khai báo %<inline%>biến %qD có kiểu hàmbiến %qD Ä‘ược Ä‘ịnh nghÄ©a lại là một hàmbiến %qD Ä‘ược Ä‘ặt nhưng lại chưa Ä‘ược dùngmảng có Ä‘á»™ dài biến Ä‘ổi %qD Ä‘ược dùngmảng có Ä‘á»™ dài biến Ä‘ổi Ä‘ược dùngbiến hay trường Ä‘ược khai báo là voidký hiệu biến Ä‘ổi không là một biếnmẫu biến chỉ sẵn sàng với -std=c++14 hay -std=gnu++14không thể khởi tạo một Ä‘ối tượng có kích cỡ biến Ä‘ổivec_extract chỉ chấp nhận hai tham sốvec_insert chỉ chấp nhận ba tham sốtràn véc-tÆ¡ trong biểu thứcvectorlength phải là lÅ©y thừa 2chiều dài véc-tÆ¡ phải là một hằng nguyênthẩm tra gặp lỗi tại PC=%d: %sthẩm tra gặp lỗi: %sverify_cgraph_node gặp lỗiverify_eh_tree gặp lỗiverify_flow_info gặp lỗiverify_flow_info: Khối cÆ¡ sở %d succ edge bị hỏngverify_flow_info: Khối %i có loop_father, nhưng chẳng có vòng lặp nào cảverify_flow_info: Khối %i thiếu loop_fatherverify_flow_info: Trùng cạnh (edge) %i->%iverify_flow_info: Các khối sai cho fallthru %i->%iverify_flow_info: fallthru sai %i->%iverify_flow_info: REG_BR_PROB không khớp cfg %i %iverify_flow_info: Sai số lượng khối %i %iverify_flow_info: Sai số lượng cạnh %i->%i %iverify_flow_info: Sai sá»± nối tiếp cá»§a khối %i %iverify_flow_info: Sai xác suất cá»§a cạnh %i->%i %iverify_gimple gặp lỗiverify_histograms gặp lỗiverify_ssa gặp lỗiverify_type gặp lỗithuộc tính phiên bản không phải là một chuỗihàm áº£o %q+Dphương thức áº£o %qDvms â€œ#pragma __message” bị lờ Ä‘iđối số hay thay Ä‘ổiThuộc tính hay thay Ä‘ổi (volatile) phải Ä‘ược ghi rõ trên bất cứ vùng nhớ nào bị DMA tác Ä‘á»™ng.bảng vtable chowaitpid bị lỗicảnh báo: cảnh báo: nên cân nhắc liên kết dùng â€œ-static” như là thư viện hệ thốngweakref không Ä‘ược hỗ trợ trong cấu hình nàykhối lượng cần phải là không Ã¢m
khi ghi kết xuất ra %s: %mmảng ký tá»± rộng bị khởi tạo từ chuỗi rộng không tương thíchmảng ký tá»± rộng bị khởi tạo từ chuỗi không phải rộngchuỗi văn chương rộng á»Ÿ %<asm%>vớivới %q+#Dtrong vòng lặp nàywrite_atom(): Ghi số nguyên Ã¢mđang ghi tập tin Ä‘ầu rasai Ä‘ối số %s cho tùy chọn %sgặp lệnh không Ä‘úng trong cạnh failthrusai số lượng Ä‘ối số cho %<__builtin_choose_expr%>sai số lượng Ä‘ối số cho %<__builtin_choose_expr%>đối số sai số lượng cho %<__builtin_complex%>sai số tham số cho %<__builtin_shuffle%>sai số lượng Ä‘ối số cho hàm %<__builtin_next_arg%>sai số lượng Ä‘ối số cho hàm %<va_start%>sai số lượng Ä‘ối số hàm mẫu (%d, phải là %d)sai số lượng Ä‘ối số mẫu (%d, cần Ã­t nhất phải là %d)sai kiểu Ä‘ối số cho %sđối số có loại sai Ä‘ối với bộ tuyệt Ä‘ốiđối số có loại sai Ä‘ối với phần bù bitđối số có loại sai Ä‘ối với phần chiasai Ä‘ối số kiểu Ä‘ể giảmđối số sai kiểu cho gia sốđối số có loại sai Ä‘ối với dấu trừ nguyên phânđối số có loại sai Ä‘ối với dấu cộng nguyên phânxstormy16_print_operand: gặp mã không rõz/Kiến trúc.mảng có kích thước bằng không hay bị Ã¢m %q+Dkích thước véc-tÆ¡ khôngtrường bít %q+D có Ä‘á»™ rộng là khôngđộ rộng bằng không cho bit-field %qsđộ rộng bằng không trong Ä‘ịnh dạng %schuỗi Ä‘ịnh dạng %s có Ä‘á»™ dài bằng khôngmảng có kích thước bằng không %qDmảng có kích thước không %qT{nặc danh}{không rõ}