File: es.gmo

package info (click to toggle)
binutils 2.46-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 417,664 kB
  • sloc: ansic: 1,487,508; asm: 829,455; cpp: 216,692; exp: 80,524; makefile: 73,157; sh: 24,213; yacc: 15,060; lisp: 13,632; perl: 13,404; lex: 1,714; ada: 1,681; pascal: 1,446; cs: 879; python: 637; java: 478; sed: 191; xml: 95; awk: 25
file content (2325 lines) | stat: -rw-r--r-- 183,602 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
%G\KxdydCddde&eFe^e'|ePeKeOAfPf,fAgDQg8ggHphh<Piijj1kDk?k6lOlRmUpmVmPnEnnHnInDGooEp`pOpHEq6q6q7q54rGjrr-Nsx|sJsI@ttugu-vGv9v9#wM]wNwMwHxx7ayMyyqzz@{L{$|"}K2~N~~;~H	@R?cOށ{6F؃KPTOOM>B+KMLG82V\JD1PvHǎ=@Ώ:IJBJא{"~IvgJޒH)FrGEE2ӔEA̕AJPEOA1TsKȗFP[U;$MMKRBEt'W[P{ѝ8MGBΞm<G؟( =I2K8E?9AK=M?1ˢ:S8];8&-_FJԥA=a>ަXnbǧ_*iwDlG1DyL}=7ǫGFGFMլG#>kD.H\UH40Wаa(IԱD;<+8h@/CpwA,nRSGKHE0EvBKNKGF=)FgIBQ;[`WJaFMKt=ALC{MNK;H$mLFC|H
FS?>JOds(JwJmwI0FzE<;EBH9JKW7J@&?g?PM8ICMIb@@J.=yHRMSHRH=KC|Q8:DY:@BL]H8J,wBLUHRH>lBP7J!91k.~S?A-U;<.0+3\/07E)=o0-0*3[2-#$9"T!w30D4];D>GR<E8AV69<	+F/r%%#/ Gh.!##2V5p,2&4-7bBFB$Gg$75'B'j'7
5%F[2L4"?W5; 	6*Va!~CY-:C3J1~%(:0V.-#$(5M""'*)<:f" 65S%"*" =-Z,3$<P'n* #=D"X${87K/{&-$/E?8&B:b@06)F@p@?"2*U;%(* 6#W*{5*%*-5X,0%)3D>x /	&"	,I	3v	/			+
%?
+e
+
-
+
+C*a(#31*.\"'".(
D
a
-~
(
#

//B*r0*..((W')RF!0*=U(r;4'(P] y<"#923l<30-b^*3+;.g0+'"4W$s% %)"%Lr008"J0m
=5L96Ob
cp3M<VFIE$*jN7SLpKM	NWTPNLA5 @ I)!Js!M!9"6F"6}"("6"7#@L#:#A#@
$;K$D$/$8$85%8n%9%:%<&JY&4&>&7'4P'-'@'^'(S(+|(+(2(3),;),h)-):)D)6C*;z*8*8*:(+;c+:+7+9,BL,Z,4,B-Jb-3-+-I
.0W.;.<.=/h?/1/1/302@0;s07040S1=p1/121221D2-v27252638I393B3439449n47454656M5:595858268k69676978P797;7<75<8Cr878881'9,Y9(9-9798:0N:<:3:0:/!;=Q;1;K;=
<>K<3<-<.<+=G=Z=Bl=6=>=.%>/T>=>@>6?8:?Ls?&?>?8&@7_@7@h@8A1A5A51B*gB*B4BB-C9=C3wC/C6CD-D=MD&D4D<D'$EyLE$E3E8F8XF5F@F(GI1G.{G*G3G*	H+4H`HHHAHGH3:InII(I(I&I"JAJ \J0}J$J0JK/K&JK%qK$K%KK/L2L(PL,yL+L)L5L#2M=VM?MM"M5N&JN7qN!N3N;N
;O!IO7kO+O*O/O6*P(aP7PP7P5Q-FQ,tQQ$QTQ'.R=VR0R=R0S64S#kS>S-S-S#*T/NT~T3T'T%TSU<pU<U+UV/V@VTVfV nVVV"VVVW	/W9WEWKWSWXW:\W$W WWWX/.Xh^X?X
Y/Y'BYjY*YY	Y'YYYZ.,Z,[Z(Z6Z2Z0[(L[u[*[[2[	\	$\-.\\\#l\2\\\)\"]B]2]1]++^=W^^^,^6^$3_#X_|_1_&_1_6`*U`)`4``$`a-:a&ha'a-aa	a/b/0b1`bSbbb
c)c.c7c
@cNc%Tc"zc)c!c
cc
d%d,Adnd$ee(e+f<f\f{f%f+f2f1 gRg3Zg gggggg&h6hHhdhihuh5hZh!i	6i@iGi&di%iiiii#i0i'j=j!Yj{jj'jj8j5(k1^kkkkkkl&l7Fl4~l0l(l
m m#;m%_m-mmmmmmmm	n((n(Qnznnnnn
o(oDo-Uo
oo#o(oo&
p1p(Cp.lp4p%p.p5%q*[q#q(qq(q'r
Br(Pr+yrrr#rr
ssds}s?tPtitt#t4tt4u5Fu(|uu!u u v'v#Ev0iv0vv'v1w'Cw#kw2www	w
wwwx	x	)x3xNxlx x"xx#xy
$y /yPy!oyyyyyyz 4zUzezjz	yzz
zzz6z{/3{c{}{{6{ {|	3|a=|'||~U~ "9&\))]Gu^_8|BEA>Yuσ;kL-Fz^biMig!GLъEHdS،RK؍>$=c8=ڎUn4YIXۑu(3ғ=y=^_T\D4Nyȗg@XLIGɜJ:\|XOm
jx
ázAKVH]Z]`_XG+aVZd?J<7RiIV|]گ@dEBZ.OOٱ)WpȳM[NMFtԵVI;ܶVdGCVGUdTYeWVleú)f.ZXTS7=rɾ~<]`z=NGvcEL<(:;J)8tK=P7a@G+As8WpF;Ak5MWDG:SpXnV{RARwgS3C8LIS^MsL12@Lsi*5\uQPN.H}AHM9BP]L`HHI?YfRJ[AM;XJP-~cUlk].u
smsedNP7zsmRCDC>^|hHHi:TQGB[8P0>yN::dW)PPv#WOEB	^	Q	|9
A
W
=POcdJ[
Qo

\QSF@>TAoSLRFKWhGXJ2[}sMO,T|w
ITq.G4cQL/DAZ.80I4z:IR4K04">WA@:1T)('>6\H>@5JvJT La V ;!EA!>!8!E!*E"/p")"0"3"-/#]#7|##9#&$$/$T$0p$($$F$81%Mj%1%D%E/&Cu&Q&C'OO'!'4'2'$)($N(s(%(9((B)WG)A)\)8>*Mw*G*=
+,K+Jx+w+.;,j,>,61-Bh-Z-2.@9.+z...!.R.5J/3//2/#0$+0$P0"u0"00'0*1).1GX11121#2$42$Y2M~27243=93:w3(33384=H4=4&4*4!585)R58|5@5552,6T_66-6@6K<7,7I7O7O8*i85858A9LB9$9&9C9,:XL:E:S:R?;W;8;C#<Cg<F<'<5=LP=0=5=3>48>%m>,>=>;>+:?3f?=?M?E&@/l@@@D@?A#]A<AA&A,A7+B6cBBB1B+C.7C.fC7C.C-C *D1KD.}D D+D<D:6E8qE-E5E.F9=F$wF#F'F=F6&G/]GG4G4G.H5BH/xH3H3H4I'EI+mI2I$I$I4JUKJ#JBJ=KJFKK7KNK3L<SL,LL L1LdMM&MRMEN4bNLN!N4O.;OcjO6OP5 PAVPAP#P7P66Q3mQ)Q#Q-Q!R+?R&kR+R9R5R#.SBRS#S>S>S 7T@XTT:TTFT`BU2URU`)VaV8VK%WDqWNWQXOWX&X[X8*YScYLYVZ][ZbZa[c~[_[SB\\A]J]T^Tg^W^C_@X_@_)_@`AE`T`E`T"aTwaRadb@bCbC	cCMcDcJcH!ddjdEdOeHeeEe9eC.fvrf,f1g1Hg8zg9g2g2 h6Sh<h:h,i1/i.ai.i0i1i0"j-Sj7j@jXj2SkSkWk82l,klal>l/9m0im1mqm0>n0on2n1n:o6@o3woRo<o.;p1jp1p0p,p9,q7fq8q:q;rDNr6r;r;s9Bs7|s8s8s<&t;ct:t:t:u;Pu9u;u:v;=v=yv6v7vE&w9lw:w;w7x6Ux8xBx;y,Dy8qy/y,y+z93z-mzAz3z4{7F{.~{-{*{||I-|Kw|M|7}<I}T}G}C#~Eg~a~.K>EEF{]ـ9|<J6>>u?-2"BU9>҃K%]!J*?;[)5K6XX@jV*W-=<ÈN)O2y&Ӊ"R
V`6+/2/b1%ċ0
E;-D B;XB0׍6,?Dl+1ݎ@4P;E0B8K{&ǐ"D;VB'Ց:;8
t.O6:88s;-I`Dy;47/g%z`*V,QVՖQ,=~$O21<d2?ԘB4+w5]ٙT7K1ؚ
&;Sj)r(ћ2Q]j
p{C:ǜ.11c;ݝV^	A5+77c	2	ߟ&)C:2~/J2,9_-ǡ1(BA%
==;D $?ƣ.56ɤ>8?Mxƥ)%86(o+Ħ@/#ASW2. GO-"ݨ6.73f1̩
ީ4B8a]&	 0QYem|8+14
Q\!{/f-r?('	(15Z4CůB	
LDZ9	ٰ%,HI$бױ"Ow\Բ
(,.1[:\J(d.,ٴ9&@=g?\*B'm3-MD?<ҷ4D,Z+*2޸,4<EY-w8<޹+,G,t5/׺=-EsGջ)7MO)QǼ!7;>sT>JFC1վ1>9,x83޿7"?Z%/
%.|7"%11)c>8:-@%n,+(
963p#4@)>1h@"	

	*4L
Xc#,?.03_'')6Ok$)) ;BUe(+E!*;L ''H*B'mk(	8lw~=-/>[e5In#C$&JK_.G"]TfZneM;n9^HIuLl9(s4Pb]~!cZFVh`cYUZmi}?8+	Q<.o(B}qR|u2l"
er38*K 3&# v*E,JUbLBg~%Z=@:Sk4.TROEI][OXf(iqR)P
X31#~ie84)QYPW("jb$	tFtB0D&2|pTH %S,$XuNwN?C\tWEh|rTX^
<sD!kSsKa2/ pC NWq+IdqE!FTCJ>[hO;w!6yn6?7hs_Dy-Vd03}1-$Hr~_?@x:o7y-VG]t!y{S4}.BYxpMHug
{grj,S^aL`a`Wl'=mRhcv"zQCg65f#9GQD^_)*%+^FOi&{1.
MaUGm3/bj0Qr7A671<dP;$Ox(t
_zf8Np@ckxvL'7zp\H|#ekP
&
gfd`sj@%mR5yax>Koz'	Y/+,A)4G2W	5:,oM[w9=0<Bi9l+
<uJJE:DN@bZ2=dw0V5LUc"A'`Um{q>*oY1F
*k	[}K]v|'\6{A)j?;M:n>AV\XIz-\%v/;
Allocating common symbols

As-needed library included to satisfy reference by file (symbol)


Cross Reference Table


Discarded input sections


Input File Remapping


Linker script and memory map


Memory Configuration


Set                 Symbol


There are no discarded input sections
                                     Exclude objects, archive members from auto
                                     This makes binaries non-deterministic
                                     export, place into import library instead
                                     export, place into import library instead.
                                Default: %s
                                Styles: none,md5,sha1,uuid,0xHEX
                                Styles: none,md5,sha1,xx,uuid,0xHEX
                          Disable merging exidx entries
  --[disable-]dynamicbase            Image base address may be relocated using
                                       address space layout randomization (ASLR)
  --[disable-]forceinteg             Code integrity checks are enforced
  --[disable-]high-entropy-va        Image is compatible with 64-bit address space
                                       layout randomization (ASLR)
  --[disable-]no-bind                Do not bind this image
  --[disable-]no-isolation           Image understands isolation but do not
                                       isolate the image
  --[disable-]no-seh                 Image does not use SEH. No SE handler may
                                       be called in this image
  --[disable-]no-seh                 Image does not use SEH; no SE handler may
                                       be called in this image
  --[disable-]nxcompat               Image is compatible with data execution
                                       prevention
  --[disable-]tsaware                Image is Terminal Server aware
  --[disable-]wdmdriver              Driver uses the WDM model
  --[no-]branch-stub          Disable/enable use of stubs to expand branch
                                instructions that cannot reach the target.
  --[no-]fix-arm1176          Disable/enable ARM1176 BLX immediate erratum fix
  --[no-]fix-cortex-a8        Disable/enable Cortex-A8 Thumb-2 branch erratum fix
  --[no-]insert-timestamp            Use a real timestamp rather than zero (default)
  --[no-]insert-timestamp            Use a real timestamp rather than zero (default).
  --[no-]leading-underscore          Set explicit symbol underscore prefix mode
  --abi-call0                 Choose call0 ABI for the output object
  --abi-windowed              Choose windowed ABI for the output object
  --add-stdcall-alias                Export symbols with and without @nn
  --audit=AUDITLIB            Specify a library to use for auditing
  --auto-overlay [=filename]  Create an overlay script in filename if
                                executable does not fit in local store
  --auto-relink               Rerun linker using auto-overlay script
  --bank-window NAME          Specify the name of the memory region describing
                                the layout of the memory bank window
  --base_file <basefile>             Generate a base file for relocatable DLLs
  --base_file <basefile>      Generate a base file for relocatable DLLs
  --be8                       Output BE8 format image
  --bss-plt                   Force old-style BSS PLT
  --build-id[=STYLE]                 Generate build ID
  --build-id[=STYLE]          Generate build ID note
  --check-uleb128             Check if SUB_ULEB128 has non-zero addend
  --cmse-implib               Make import library to be a secure gateway import
                                library as per ARMv8-M Security Extensions
  --code-in-l1                Put code in L1
  --code-region={either,lower,upper,none}
        Transform .text* sections to {either,lower,upper,none}.text* sections
  --compact-branches          Generate compact branches/jumps for MIPS R6
  --compact-stubs             Use smaller and possibly slower call stubs
  --compat-implib                    Create backward compatible import libs;
                                       create __imp_<SYMBOL> as well
  --compat-implib                    Create backward compatible import libs;
                                       create __imp_<SYMBOL> as well.
  --compress-debug-sections=[none|zlib|zlib-gnu|zlib-gabi|zstd]
			      Compress DWARF debug sections
  --data-in-l1                Put data in L1
  --data-region={either,lower,upper,none}
        Transform .data*, .rodata* and .bss* sections to
        {either,lower,upper,none}.{bss,data,rodata}* sections
  --debug-relax               Used for debugging avr-ld.
  --debug-stubs               Used for debugging avr-ld.
  --disable-auto-image-base          Do not auto-choose image base (default)
  --disable-auto-image-base          Do not auto-choose image base. (default)
  --disable-auto-import              Do not auto-import DATA items from DLLs
  --disable-large-address-aware      Executable does not support virtual
                                       addresses greater than 2 gigabytes
  --disable-long-section-names       Never use long COFF section names, even
                                       in object files
  --disable-new-dtags         Disable new dynamic tags
  --disable-reloc-section            Do not create the base relocation table
  --disable-runtime-pseudo-reloc     Do not add runtime pseudo-relocations for
                                       auto-imported DATA
  --disable-runtime-pseudo-reloc     Do not add runtime pseudo-relocations for
                                       auto-imported DATA.
  --disable-sec-transformation
        Disable transformation of .{text,data,bss,rodata}* sections to
        add the {either,lower,upper,none} prefixes
  --disable-stdcall-fixup            Don't link _sym to _sym@nn
  --dll                              Set image base to the default for DLLs
  --dll-search-prefix=<string>       When linking dynamically to a dll without
                                       an importlib, use <string><basename>.dll
                                       in preference to lib<basename>.dll 
  --dotsyms                   For every version pattern "foo" in a version
                                script, add ".foo" so that function code
                                symbols are treated the same as function
                                descriptor symbols.  Defaults to on.
  --dsbt-index <index>    Use this as the DSBT index for the output object
  --dsbt-size <index>     Use this as the number of entries in the DSBT table
  --eh-frame-hdr              Create .eh_frame_hdr section
  --emit-stack-syms           Add sym giving stack needed for each func
  --emit-stub-syms            Add symbols on overlay call stubs
  --emit-stub-syms            Label linker stubs with a symbol
  --enable-auto-image-base           Automatically choose image base for DLLs
                                       unless user specifies one
  --enable-auto-image-base[=<address>] Automatically choose image base for DLLs
                                       (optionally starting with address) unless
                                       specifically set with --image-base
  --enable-auto-import               Do sophisticated linking of _sym to
                                       __imp_sym for DATA references
  --enable-extra-pe-debug            Enable verbose debug output when building
                                       or linking to DLLs (esp. auto-import)
  --enable-extra-pep-debug            Enable verbose debug output when building
                                       or linking to DLLs (esp. auto-import)
  --enable-long-section-names        Use long COFF section names even in
                                       executable image files
  --enable-new-dtags          Enable new dynamic tags
  --enable-reloc-section             Create the base relocation table
  --enable-runtime-pseudo-reloc      Work around auto-import limitations by
                                       adding pseudo-relocations resolved at
                                       runtime
  --enable-runtime-pseudo-reloc      Work around auto-import limitations by
                                       adding pseudo-relocations resolved at
                                       runtime.
  --enable-stdcall-fixup             Link _sym to _sym@nn without warnings
  --error-execstack           Turn warnings about executable stacks into errors
  --error-rwx-segments        Turn warnings about loadable RWX segments into errors
  --exclude-all-symbols              Exclude all symbols from automatic export
  --exclude-libs lib,lib,...         Exclude libraries from automatic export
  --exclude-libs=LIBS         Make all symbols in LIBS hidden
  --exclude-modules-for-implib mod,mod,...
  --exclude-symbols sym,sym,...      Exclude symbols from automatic export
  --export-all-symbols               Automatically export all globals to DLL
  --extra-overlay-stubs       Add stubs on all calls out of overlay regions
  --extra-stack-space=bytes   Space for negative sp access (default 2000) if
                                --reserved-space not given
  --file-alignment <size>            Set file alignment
  --fix-cortex-a53-835769      Fix erratum 835769
  --fix-cortex-a53-843419[=full|adr|adrp]      Fix erratum 843419 and optionally specify which workaround to use.
                                               full (default): Use both ADRP and ADR workaround, this will 
                                                 increase the size of your binaries.
                                               adr: Only use the ADR workaround, this will not cause any increase
                                                 in binary size but linking will fail if the referenced address is
                                                 out of range of an ADR instruction.  This will remove the need of using
                                                 a veneer and results in both performance and size benefits.
                                               adrp: Use only the ADRP workaround, this will never rewrite your ADRP
                                                 instruction into an ADR.  As such the workaround will always use a
                                                 veneer and this will give you both a performance and size overhead.
  --fix-stm32l4xx-629360      Specify how to fix STM32L4XX 629360 erratum
  --fix-v4bx                  Rewrite BX rn as MOV pc, rn for ARMv4
  --fix-v4bx-interworking     Rewrite BX rn branch to ARMv4 interworking veneer
  --fixed-space=bytes         Local store for non-overlay code and data
  --flag-mismatch-warnings    Warn about objects with incompatible
                                endian, dsp or ABI settings
  --force-dynamic             Always create dynamic sections
  --format 0|1|2              Specify which COFF version to use
  --got=<type>                Specify GOT handling scheme
  --hash-style=STYLE          Set hash style to sysv/gnu/both.  Default:   --heap <size>                      Set initial size of the heap
  --identification <string>          Set the identification of the output
  --ignore-branch-isa         Accept invalid branch relocations requiring
                              an ISA mode switch
  --ignore-lma                Ignore segment LMAs [default]
                                (for Renesas Tools compatibility)
  --image-base <address>             Set start address of the executable
  --in-implib                 Import library whose symbols address must
                                remain stable
  --insn32                    Only generate 32-bit microMIPS instructions
  --itanium                   Generate code for Intel Itanium processor
  --kill-at                          Remove @nn from exported symbols
  --large-address-aware              Executable supports virtual addresses
                                       greater than 2 gigabytes
  --ld-generated-unwind-info  Generate exception handling info for PLT
  --line-size                 Size of soft-icache lines (default 1k)
  --local-store=lo:hi         Valid address range
  --long-plt                  Generate long .plt entries
                              to handle large .plt/.got displacements
  --lrlive-analysis           Scan function prologue for lr liveness
  --m[no-]fp-as-gp            Disable/enable fp-as-gp relaxation
  --m[no-]tlsdesc-trampoline  Disable/enable TLS DESC trampoline
  --major-image-version <number>     Set version number of the executable
  --major-os-version <number>        Set minimum required OS version
  --major-subsystem-version <number> Set minimum required OS subsystem version
  --mexport-symbols=FILE      Exporting symbols in linker script
  --mhyper-relax=level        Adjust relax level (low|medium|high). default: medium
  --minor-image-version <number>     Set revision number of the executable
  --minor-os-version <number>        Set minimum required OS revision
  --minor-subsystem-version <number> Set minimum required OS subsystem revision
  --multi-subspace            Generate import and export stubs to support
                                multiple sub-space shared libraries
  --no-apply-dynamic-relocs    Do not apply link-time values for dynamic relocations
  --no-call-ret-replacement   The relaxation machine normally will
                                substitute two immediately following call/ret
                                instructions by a single jump instruction.
                                This option disables this optimization.
  --no-check-uleb128          Don't check if SUB_ULEB128 has non-zero addend
  --no-compact-branches       Generate delay slot branches/jumps for MIPS R6
  --no-dotsyms                Don't do anything special in version scripts
  --no-eh-frame-hdr           Do not create .eh_frame_hdr section
  --no-emit-stub-syms         Don't label linker stubs with a symbol
  --no-enum-size-warning      Don't warn about objects with incompatible
                                enum sizes
  --no-error-execstack        Do not turn warnings about executable stacks into errors
  --no-error-rwx-segments     Do not turn warnings about loadable RWX segments into errors
  --no-flag-mismatch-warnings Don't warn about objects with incompatible
                                endian or dsp settings
  --no-ignore-branch-isa      Reject invalid branch relocations requiring
                              an ISA mode switch
  --no-ignore-lma             Don't ignore segment LMAs
  --no-inline-optimize        Don't convert inline PLT to direct calls
  --no-insn32                 Generate all microMIPS instructions
  --no-ld-generated-unwind-info
                              Don't generate exception handling info for PLT
  --no-merge-exidx-entries
  --no-merge-exidx-entries    Disable merging exidx entries
  --no-multi-toc              Disallow automatic multiple toc sections
  --no-omagic    Equivalent to --nmagic
  --no-opd-optimize           Don't optimize the OPD section
  --no-overlays               No overlay handling
  --no-pcrel-optimize         Don't perform R_PPC64_PCREL_OPT optimization
  --no-pic-fixup              Don't edit non-pic to pic
  --no-plt-align              Dont't align individual PLT call stubs
  --no-plt-localentry         Don't optimize ELFv2 calls
  --no-plt-static-chain       PLT call stubs should not load r11
  --no-plt-static-chain       PLT call stubs should not load r11 (default)
  --no-plt-thread-safe        PLT call stubs without barrier
  --no-power10-stubs          Don't use Power10 PLT call stubs
  --no-ppc476-workaround      Disable workaround
  --no-relax-gp               Don't perform GP relaxation
  --no-rosegment              With -z separate-code, creste two read-only segments
  --no-rosegment              With -z separate-code, creste two read-only segments (default)
  --no-save-restore-funcs     Don't provide these routines
  --no-secureplt              Force PLT in data segment
  --no-stubs                  If the linker detects to attempt to access
                                an instruction beyond 128k by a reloc that
                                is limited to 128k max, it inserts a jump
                                stub. You can de-active this with this switch.
  --no-tls-get-addr-optimize  Don't use a special __tls_get_addr call
  --no-tls-get-addr-regsave   Don't use register save __tls_get_addr stub
  --no-tls-optimize           Don't try to optimize TLS accesses
  --no-toc-optimize           Don't optimize the TOC section
  --no-toc-sort               Don't sort TOC and GOT sections
  --no-trampoline             Do not generate the far trampolines used to call
                                a far function using jsr or bsr
  --no-warn-execstack         Do not generate a warning if creating an executable stack
  --no-warn-execstack         Do not generate a warning if creating an executable stack (default)
  --no-warn-rwx-segments      Do not generate a warning if a LOAD segments has RWX permissions
  --no-warn-rwx-segments      Do not generate a warning if a LOAD segments has RWX permissions (default)
  --no-wchar-size-warning     Don't warn about objects with incompatible
                                wchar_t sizes
  --non-ia-text               Allow non-icache code in icache lines
  --non-overlapping-opd       Canonicalize .opd, so that there are no
                                overlapping .opd entries
  --num-lines                 Number of soft-icache lines (default 32)
  --num-regions               Number of overlay buffers (default 1)
  --output-def <file>                Generate a .DEF file for the built DLL
  --overlay-rodata            Place read-only data with associated function
                                code in overlays
  --package-metadata[=JSON]   Generate package metadata note
  --pdb=[FILENAME]                   Generate PDB file
  --pic-veneer                Always generate PIC interworking veneers
  --plt-align                 Align PLT call stubs to fit cache lines
  --plt-align [=<align>]      Align PLT call stubs to fit cache lines
  --plt-localentry            Optimize calls to ELFv2 localentry:0 functions
  --plt-static-chain          PLT call stubs should load r11 (default)
  --plt-static-chain          PLT call stubs should load r111
  --plt-thread-safe           PLT call stubs with load-load barrier
  --plugin                    Make SPU plugin
  --pmem-wrap-around=<val>    Make the linker relaxation machine assume that a
                                program counter wrap-around occurs at address
                                <val>.  Supported values: 8k, 16k, 32k and 64k.
  --power10-stubs [=auto]     Use Power10 PLT call stubs (default auto)
  --ppc476-workaround [=pagesize]
                              Avoid a cache bug on ppc476
  --region-size               Size of overlay buffers (default 0, auto)
  --relax-gp                  Perform GP relaxation
  --reserved-space=bytes      Local store for stack and heap.  If not specified
                                ld will estimate stack size and assume no heap
  --rosegment                 With -z separate-code, create a single read-only segment
  --rosegment                 With -z separate-code, create a single read-only segment (default)
  --s390-pgste                Tell the kernel to allocate 4k page tables
  --save-restore-funcs        Provide register save and restore routines used
                                by gcc -Os code.  Defaults to on for normal
                                final link, off for ld -r.
  --sdata-got                 Force GOT location just before .sdata
  --section-alignment <size>         Set section alignment
  --secure-plt                Use new-style PLT if possible
  --secureplt                 Force PLT in text segment
  --size-opt                  When relaxing longcalls, prefer size
                                optimization over branch target alignment
  --soft-icache               Generate software icache overlays
  --stack <size>                     Set size of the initial stack
  --stack <size>              Set size of the initial stack
  --lazy-stack                Set lazy allocation of stack
  --stack-analysis            Estimate maximum stack requirement
  --stub-group-size=N         Maximum size of a group of input sections
                                handled by one stub section.
  --stub-group-size=N         Maximum size of a group of input sections that
                                can be handled by one stub section.  A negative
                                value locates all stubs after their branches
                                (with a group size of -N), while a positive
                                value allows two groups of input sections, one
                                before, and one after each stub section.
                                Values of +/-1 indicate the linker should
                                choose suitable defaults.
  --stub-group-size=N         Maximum size of a group of input sections that
                                can be handled by one stub section.  A negative
                                value locates all stubs before their branches
                                (with a group size of -N), while a positive
                                value allows two groups of input sections, one
                                before, and one after each stub section.
                                Values of +/-1 indicate the linker should
                                choose suitable defaults.
  --subsystem <name>[:<version>]     Set required OS subsystem [& version]
  --support-old-code                 Support interworking with old code
  --target1-abs               Interpret R_ARM_TARGET1 as R_ARM_ABS32
  --target1-rel               Interpret R_ARM_TARGET1 as R_ARM_REL32
  --target2=<type>            Specify definition of R_ARM_TARGET2
  --thumb-entry=<sym>         Set the entry point to be Thumb symbol <sym>
  --thumb-entry=<symbol>             Set the entry point to be Thumb <symbol>
  --tls-get-addr-optimize     Force use of special __tls_get_addr call
  --tls-get-addr-regsave      Force register save __tls_get_addr stub
  --use-blx                   Enable use of BLX instructions
  --vfp11-denorm-fix          Specify how to fix VFP11 denorm erratum
  --vle-reloc-fixup           Correct old object file 16A/16D relocation
  --warn-duplicate-exports           Warn about duplicate exports
  --warn-execstack            Generate a warning if creating an executable stack
  --warn-execstack            Generate a warning if creating an executable stack (default)
  --warn-execstack-objects    Generate a warning if an object file requests an executable stack
  --warn-rwx-segments         Generate a warning if a LOAD segment has RWX permissions
  --warn-rwx-segments         Generate a warning if a LOAD segment has RWX permissions (default)
  -Bgroup                     Selects group name lookup rules for DSO
  -N, --omagic   Do not make text readonly, do not page align data (default)
  -P AUDITLIB, --depaudit=AUDITLIB
                              Specify a library to use for auditing dependencies
  -n, --nmagic   Make text readonly, align data to next page
  -z bti-report[=none|warning|error]   Emit warning/error on mismatch of BTI marking between input objects and ouput.
                                         none: Does not emit any warning/error messages.
                                         warning (default): Emit warning when the input objects are missing BTI markings
                                           and output has BTI marking.
                                         error: Emit error when the input objects are missing BTI markings
                                           and output has BTI marking.
  -z call-nop=PADDING         Use PADDING as 1-byte NOP for branch
  -z cet-report=[none|warning|error] (default: none)
                              Report missing IBT and SHSTK properties
  -z combreloc                Merge dynamic relocs into one section and sort
  -z common                   Generate common symbols with STT_COMMON type
  -z common-page-size=SIZE    Set common page size to SIZE
  -z defs                     Report unresolved symbols in object files
  -z dynamic-undefined-weak   Make undefined weak symbols dynamic
  -z nodynamic-undefined-weak Do not make undefined weak symbols dynamic
  -z execstack                Mark executable as requiring executable stack
  -z force-bti                         Turn on Branch Target Identification mechanism and generate PLTs with BTI.
                                         Generate warnings for missing BTI markings on inputs
  -z gcs-report-dynamic=none|warning|error   Emit warning/error on mismatch of GCS marking between the current link
                                             unit and input dynamic objects.
                                               none: Does not emit any warning/error messages.
                                               warning: Emit warning when the input objects are missing GCS markings
                                                 and output have GCS marking.
                                               error: Emit error when the input objects are missing GCS markings
                                                 and output have GCS marking.
  -z gcs-report[=none|warning|error]   Emit warning/error on mismatch of GCS marking between input objects and ouput.
                                         none: Does not emit any warning/error messages.
                                         warning (default): Emit warning when the input objects are missing GCS markings
                                           and output have GCS marking.
                                         error: Emit error when the input objects are missing GCS markings
                                           and output have GCS marking.
  -z gcs=[always|never|implicit]       Controls whether the output supports the Guarded Control Stack (GCS) mechanism.
                                         implicit (default if '-z gcs' is omitted): deduce GCS from input objects.
                                         always: always marks the output with GCS.
                                         never: never marks the output with GCS.
  -z global                   Make symbols in DSO available for subsequently
                                loaded objects
  -z globalaudit              Mark executable requiring global auditing
  -z ibt                      Generate GNU_PROPERTY_X86_FEATURE_1_IBT
  -z ibtplt                   Generate IBT-enabled PLT entries
  -z indirect-extern-access   Enable indirect external access
  -z initfirst                Mark DSO to be initialized first at runtime
  -z interpose                Mark object to interpose all DSOs but executable
  -z isa-level-report=[none|all|needed|used] (default: none)
                              Report x86-64 ISA level
  -z lam-report=[none|warning|error] (default: none)
                              Report missing LAM_U48 and LAM_U57 properties
  -z lam-u48                  Generate GNU_PROPERTY_X86_FEATURE_1_LAM_U48
  -z lam-u48-report=[none|warning|error] (default: none)
                              Report missing LAM_U48 property
  -z lam-u57                  Generate GNU_PROPERTY_X86_FEATURE_1_LAM_U57
  -z lam-u57-report=[none|warning|error] (default: none)
                              Report missing LAM_U57 property
  -z lazy                     Mark object lazy runtime binding (default)
  -z loadfltr                 Mark object requiring immediate process
  -z mark-plt                 Mark PLT with dynamic tags
  -z nomark-plt               Do not mark PLT with dynamic tags (default)
  -z mark-plt                 Mark PLT with dynamic tags (default)
  -z nomark-plt               Do not mark PLT with dynamic tags
  -z max-page-size=SIZE       Set maximum page size to SIZE
  -z memory-seal              Mark object be memory sealed
  -z memory-seal              Mark object be memory sealed (default)
  -z memtag-mode[=none|sync|async]     Select Memory Tagging Extension mode of operation to use.
                                       Emits a DT_AARCH64_MEMTAG_MODE dynamic tag for the binary.
                                       This entry is only valid on the main executable.  It is
                                       ignored in the dynamically loaded objects by the loader.
                                         none (default): Disable MTE checking of memory reads and writes.
                                         sync: Enable precise exceptions when mismatched address and
                                               allocation tags detected on load/store operations.
                                         async: Enable imprecise exceptions.
  -z memtag-stack               Mark program stack with MTE protection.
  -z muldefs                  Allow multiple definitions
  -z nocombreloc              Don't merge dynamic relocs into one section
  -z nocommon                 Generate common symbols with STT_OBJECT type
  -z nocopyreloc              Don't create copy relocs
  -z nodefaultlib             Mark object not to use default search paths
  -z nodelete                 Mark DSO non-deletable at runtime
  -z nodlopen                 Mark DSO not available to dlopen
  -z nodump                   Mark DSO not available to dldump
  -z noexecstack              Mark executable as not requiring executable stack
  -z noextern-protected-data  Do not treat protected data symbol as external
  -z noindirect-extern-access Disable indirect external access (default)
  -z nomemory-seal            Don't mark oject to be memory sealed
  -z nomemory-seal            Don't mark oject to be memory sealed (default)
  -z nopack-relative-relocs   Do not pack relative relocations (default)
  -z noreloc-overflow         Disable relocation overflow check
  -z norelro                  Don't create RELRO program header
  -z norelro                  Don't create RELRO program header (default)
  -z nosectionheader          Do not generate section header
  -z noseparate-code          Don't create separate code program header
  -z noseparate-code          Don't create separate code program header (default)
  -z nostart-stop-gc          Don't garbage collect __start/__stop (default)
  -z notext                   Don't treat DT_TEXTREL in output as error
  -z notext                   Don't treat DT_TEXTREL in output as error (default)
  -z nounique                 Don't mark DSO as a loadable at most once
  -z nounique-symbol          Keep duplicated local symbol names (default)
  -z now                      Mark object non-lazy runtime binding
  -z origin                   Mark object requiring immediate $ORIGIN
                                processing at runtime
  -z pac-plt                           Protect PLTs with Pointer Authentication.
  -z pack-relative-relocs     Pack relative relocations
  -z relro                    Create RELRO program header
  -z relro                    Create RELRO program header (default)
  -z report-relative-reloc    Report relative relocations
  -z sectionheader            Generate section header (default)
  -z separate-code            Create separate code program header
  -z separate-code            Create separate code program header (default)
  -z shstk                    Generate GNU_PROPERTY_X86_FEATURE_1_SHSTK
  -z stack-size=SIZE          Set size of stack segment
  -z start-stop-gc            Enable garbage collection on __start/__stop
  -z start-stop-visibility=V  Set visibility of built-in __start/__stop symbols
                                to DEFAULT, PROTECTED, HIDDEN or INTERNAL
  -z text                     Treat DT_TEXTREL in output as error
  -z text                     Treat DT_TEXTREL in output as error (default)
  -z textoff                  Don't treat DT_TEXTREL in output as error
  -z textoff                  Don't treat DT_TEXTREL in output as error (default)
  -z undefs                   Ignore unresolved symbols in object files
  -z unique                   Mark DSO to be loaded at most once by default, and only in the main namespace
  -z unique-symbol            Avoid duplicated local symbol names
  -z x86-64-{baseline|v[234]} Mark x86-64-{baseline|v[234]} ISA level as needed
  -z, --imagic   Make text readonly, separate instruction and data spaces
  @FILE  Pattern: %s	Maps To: %s
  Supported emulations:
  no emulation specific options.
 additional relocation overflows omitted from the output
 load address 0x%V relocation truncated to fit: %s against `%pT' relocation truncated to fit: %s against symbol `%pT' defined in %pA section in %pB relocation truncated to fit: %s against undefined symbol `%pT'%8x something else
%P: %C: warning: multiple definition of `%pT'%P: %D: warning: more undefined references to `%pT' follow
%P: %H: cannot get section contents - auto-import exception
%P: %H: warning: undefined reference to `%pT'
%P: %pA has both ordered and unordered sections
%P: %pB and %pB: warning: multiple common of `%pT'
%P: %pB: --just-symbols may not be used on DSO
%P: %pB: ABI version of object files mismatched
%P: %pB: Instruction sets of object files incompatible
%P: %pB: all input objects must be COFF or ELF for --embedded-relocs
%P: %pB: all input objects must be ELF for --embedded-relocs
%P: %pB: bfd_elf_get_bfd_needed_list failed: %E
%P: %pB: bfd_stat failed: %E
%P: %pB: can not create .emreloc section: %E
%P: %pB: can't read contents of section %pA: %E
%P: %pB: can't read contents of section .idata: %E
%P: %pB: can't read contents of section .note: %E
%P: %pB: cannot read contents of section %pA
%P: %pB: could not read relocs: %E
%P: %pB: could not read symbols: %E
%P: %pB: definition of %s
%P: %pB: error adding symbols: %E
%P: %pB: file not recognized: %E
%P: %pB: file not recognized: %E; matching formats:%P: %pB: member %pB in archive is not an object
%P: %pB: reference to %s
%P: %pB: symbol `%s' definition: %s, visibility: %s, resolution: %s
%P: %pB: warning: cannot parse .xtensa.info section
%P: %pB: warning: common of `%pT' overridden by definition
%P: %pB: warning: common of `%pT' overridden by definition from %pB
%P: %pB: warning: common of `%pT' overridden by larger common
%P: %pB: warning: common of `%pT' overridden by larger common from %pB
%P: %pB: warning: common of `%pT' overriding smaller common
%P: %pB: warning: common of `%pT' overriding smaller common from %pB
%P: %pB: warning: definition of `%pT' overriding common
%P: %pB: warning: definition of `%pT' overriding common from %pB
%P: %pB: warning: duplicated QNX stack .note detected
%P: %pB: warning: incompatible Xtensa configuration (%s)
%P: %pB: warning: more undefined references to `%pT' follow
%P: %pB: warning: multiple common of `%pT'
%P: %pB: warning: undefined reference to `%pT'
%P: %s not found for insert
%P: %s: can not make object file: %E
%P: %s: can not set architecture: %E
%P: %s: can't open for writing: %E
%P: %s: can't open: %E
%P: %s: can't set start address
%P: %s: duplicated plugin
%P: %s: error in plugin cleanup: %d (ignored)
%P: %s: error loading plugin: %s
%P: %s: final close failed: %E
%P: %s: missing argument
%P: %s: non-ELF symbol in ELF BFD!
%P: %s: not a relocatable file: %E
%P: %s: plugin error: %d
%P: %s: plugin reported error after all symbols read
%P: %s: plugin reported error claiming file
%P: %s: plugin symbol table corrupt (sym type %d)
%P: *(%s$) missing from linker script
%P: --auto-overlay ignored with user overlay script
%P: --auto-overlay ignored with zero local store range
%P: --code-region requires an argument: {upper,lower,either,none}
%P: --compress-debug-sections=zstd: ld is not built with zstd support
%P: --data-region requires an argument: {upper,lower,either,none}
%P: --gc-sections requires a defined symbol root specified by -e or -u
%P: --mbaseline is not used anymore
%P: --no-define-common may not be used without -shared
%P: --relax-[no-]reduce-fp-updat is not used anymore
%P: -F may not be used without -shared
%P: -f may not be used without -shared
%P: -pie not supported
%P: -r and %s may not be used together
%P: -r and -z nosectionheader may not be used together
%P: -shared not supported
%P: .init/.fini fragments use differing TOC pointers
%P: About to run error handling script '%s' with arguments: '%s' '%s'
%P: BFD backend error: BFD_RELOC_CTOR unsupported
%P: CodeView S_GPROC32_ID/S_LPROC32_ID symbol referenced unknown type as ID
%P: CodeView symbol references out of range type %v
%P: CodeView type %v references other type %v not yet declared
%P: CodeView type %v references out of range type %v
%P: Error: unable to disambiguate: %s (did you mean -%s ?)
%P: Failed to create hash table
%P: Failed to run error handling script '%s', reason: %P: Output section `%pA' not large enough for the linker-created stubs section `%pA'.
%P: PE operations on non PE file
%P: Relaxation not supported with --enable-non-contiguous-regions (section `%pA' would overflow `%pA' after it changed size).
%P: Relaxation not supported with --enable-non-contiguous-regions.
%P: SONAME must not be empty string; ignored
%P: SONAME must not be empty string; keeping previous one
%P: Warning: grouped short command line options are deprecated: %s
%P: `-retain-symbols-file' overrides `-s' and `-S'
%P: attempted static link of dynamic object `%s'
%P: bad --ctf-share-types option: %s
%P: bad --unresolved-symbols option: %s
%P: bad -plugin-opt option
%P: base relocation for section `%s' above .reloc section
%P: bfd_hash_allocate failed creating symbol %s
%P: bfd_hash_lookup failed creating symbol %s
%P: bfd_hash_lookup failed: %E
%P: bfd_hash_lookup for insertion failed: %E
%P: bfd_hash_table_init failed: %E
%P: bfd_link_hash_lookup failed: %E
%P: bfd_link_hash_lookup of export symbol failed: %E
%P: bfd_merge_sections failed: %E
%P: bfd_new_link_order failed: %E
%P: bfd_record_phdr failed: %E
%P: bfd_xcoff_export_symbol failed: %E
%P: bfd_xcoff_link_count_reloc failed: %E
%P: bfd_xcoff_link_record_set failed: %E
%P: big endian output does not match Xtensa configuration
%P: can not create BFD %E
%P: can not create BFD: %E
%P: can not create hash table: %E
%P: can not create stub BFD: %E
%P: can not init BFD: %E
%P: can not open script: %E
%P: can't finalize linker-allocated global registers
%P: can't find %pA in output section
%P: can't find output section %pA
%P: can't find required output section %s
%P: can't open output def file %s
%P: can't relax section: %E
%P: can't set start address
%P: cannot create .note section in stub BFD.
%P: cannot create split section name for %s
%P: cannot extract object-only section from %B: %E
%P: cannot find %s (%s): %E
%P: cannot find %s inside %s
%P: cannot find %s: %E
%P: cannot open %s
%P: cannot open base file %s
%P: cannot open dependency file %s: %E
%P: cannot open linker script file %s: %E
%P: cannot open map file %s: %E
%P: cannot open output file %s: %E
%P: cannot perform PE operations on non PE output file '%pB'
%P: cannot read %s
%P: cannot represent machine `%s'
%P: cannot stat linker map file: %E
%P: cannot use executable file '%pB' as input to a link
%P: clone section failed: %E
%P: common page size (0x%v) > maximum page size (0x%v)
%P: compact frame descriptions incompatible with DWARF2 .eh_frame from %pB
%P: copy_section: %s: %s
%P: could not create dummy IR bfd: %E
%P: could not define common symbol `%pT': %E
%P: could not parse import path: %E
%P: cross-endian linking for %pB not supported
%P: disabling relaxation; it will not work with multiple definitions
%P: error closing file `%s'
%P: error writing file `%s'
%P: error: --lazy-stack must follow -zstack-size=<size>
%P: error: NULL decorated name for %s
%P: error: cannot change output format whilst linking %s binaries
%P: error: linker script file '%s' appears multiple times
%P: error: no memory region specified for loadable section `%s'
%P: error: no section named %s in linker script
%P: error: no section named %s or %s in linker script
%P: error: unhandled data_statement size
%P: error: unrecognized argument to --code-region= option: "%s"
%P: error: unrecognized argument to --data-region= option: "%s"
%P: error: unrecognized option for --fix-cortex-a53-843419: %s
%P: error: unsupported option: %s
%P: errors encountered processing file %s
%P: errors encountered processing file %s for interworking
%P: failed creating section `%s': %E
%P: failed to add DT_NEEDED dynamic tag
%P: failed to add object-only section: %s
%P: failed to add remap file %s
%P: failed to create .note section
%P: failed to create .xtensa.info section
%P: failed to finish output with object-only section
%P: failed to layout dynamic sections: %E
%P: failed to parse EH frame entries
%P: failed to record assignment to %s: %E
%P: failed to rename output with object-only section
%P: failed to set dynamic section sizes: %E
%P: failed to strip zero-sized dynamic sections
%P: fatal error: libbfd ABI mismatch
%P: final link failed
%P: final link failed: %E
%P: group ended before it began (--help for usage)
%P: have you installed the static version of the %s library ?
%P: illegal use of `%s' section
%P: input file '%s' is the same as output file
%P: internal error %s %d
%P: internal error: aborting at %s:%d
%P: internal error: aborting at %s:%d in %s
%P: invalid --compress-debug-sections option: `%s'
%P: invalid --dsbt-index %d, outside DSBT size
%P: invalid --dsbt-index %s
%P: invalid --dsbt-size %s
%P: invalid --extra-stack-space value `%s'
%P: invalid --fixed-space value `%s'
%P: invalid --line-size/--region-size `%s'
%P: invalid --line-size/--region-size `%u'
%P: invalid --local-store address range `%s'
%P: invalid --num-lines/--num-regions `%s'
%P: invalid --num-lines/--num-regions `%u'
%P: invalid --plt-align `%s'
%P: invalid --power10-stubs argument `%s'
%P: invalid --reserved-space value `%s'
%P: invalid BFD target `%s'
%P: invalid COFF format version %s
%P: invalid argument to option "--orphan-handling"
%P: invalid argument to option "--section-start"
%P: invalid argument to option --remap-inputs
%P: invalid cache memory size: %s
%P: invalid character %c (%d) in flags
%P: invalid common page size `%s'
%P: invalid common section sorting option: %s
%P: invalid data statement
%P: invalid hash style `%s'
%P: invalid hex number `%s'
%P: invalid hex number for PE parameter '%s'
%P: invalid length for memory region %s
%P: invalid maximum page size `%s'
%P: invalid number `%s'
%P: invalid number for -z call-nop=prefix-: %s
%P: invalid number for -z call-nop=suffix-: %s
%P: invalid option for -z cet-report=: %s
%P: invalid option for -z isa-level-report=: %s
%P: invalid option for -z lam-report=: %s
%P: invalid option for -z lam-u48-report=: %s
%P: invalid option for -z lam-u57-report=: %s
%P: invalid origin for memory region %s
%P: invalid pagesize `%s'
%P: invalid reloc statement
%P: invalid section sorting option: %s
%P: invalid stack size `%s'
%P: invalid subsystem type %s
%P: invalid type for output section `%s'
%P: invalid visibility in `-z %s'; must be default, internal, hidden, or protected%P: invalid x86-64 ISA level: %s
%P: link errors found, deleting executable `%s'
%P: linker map file is not a regular file
%P: little endian output does not match Xtensa configuration
%P: looping in map_segments
%P: map sections to segments failed: %E
%P: missing --end-group; added as last command line option
%P: missing argument to -m
%P: missing argument(s) to option "--section-start"
%P: missing file for --mexport-symbols
%P: mode %s
%P: multiple STARTUP files
%P: no built-in overlay manager
%P: no file/directory name provided for map output; ignored
%P: no input files
%P: no sections assigned to phdrs
%P: no state pushed before popping
%P: note to link with %s use -l:%s or rename it to lib%s
%P: only relocations against symbols are permitted
%P: output format %s cannot represent section called %s: %E
%P: please report this bug
%P: plugin failed to allocate memory for input: %s
%P: plugin_strdup failed to allocate memory: %s
%P: relocatable linking with relocations from format %s (%pB) to format %s (%pB) is not supported
%P: section %s has '$' as first character
%P: setup_section: %s: %s
%P: skipping incompatible %s when searching for %s
%P: strange hex info for PE parameter '%s'
%P: symbol `%pT' missing from main hash table
%P: target %s not found
%P: unable to open for destination of copy `%s'
%P: unable to open for source of copy `%s'
%P: unknown ELF symbol visibility: %d!
%P: unknown demangling style `%s'
%P: unknown format type %s
%P: unrecognised emulation mode: %s
%P: unrecognised option: %s
%P: unrecognized --got argument '%s'
%P: unrecognized -a option `%s'
%P: unrecognized -assert option `%s'
%P: unrecognized STM32L4XX fix type '%s'
%P: unrecognized VFP11 fix type '%s'
%P: unrecognized option '%s'
%P: unsupported input file size: %s (%ld bytes)
%P: unsupported option: -z %s
%P: use the --help option for usage information
%P: valid arguments to --mhyper-relax=(low|medium|high)
%P: warning, duplicate EXPORT: %s
%P: warning, file alignment > section alignment
%P: warning: %P: warning: %s contains output sections; did you forget -T?
%P: warning: %s ignored
%P: warning: %s, needed by %pB, may conflict with %s
%P: warning: %s, needed by %pB, not found (try using -rpath or -rpath-link)
%P: warning: '--thumb-entry %s' is overriding '-e %s'
%P: warning: --enable-non-contiguous-regions discards section `%pA' from `%pB'
%P: warning: --export-dynamic is not supported for PE targets, did you mean --export-all-symbols?
%P: warning: --export-dynamic is not supported for PE+ targets, did you mean --export-all-symbols?
%P: warning: --package-metadata is empty, ignoring
%P: warning: --package-metadata=%s does not contain valid JSON, ignoring: %s
%P: warning: .buildid section discarded, --build-id ignored
%P: warning: .note.gnu.build-id section discarded, --build-id ignored
%P: warning: .note.package section discarded, --package-metadata ignored
%P: warning: CTF linking failed; output will have no CTF section: %s
%P: warning: CTF output not created: `%s'
%P: warning: CTF section emission failed; output will have no CTF section: %s
%P: warning: CTF section in %pB cannot be linked: `%s'
%P: warning: CTF section in %pB not linkable: %P was built without support for CTF
%P: warning: CTF section in %pB not loaded; its types will be discarded: %s
%P: warning: CTF strtab association failed; strings will not be shared: %s
%P: warning: CTF symbol addition failed; CTF will not be tied to symbols: %s
%P: warning: CTF symbol shuffling failed; CTF will not be tied to symbols: %s
%P: warning: CodeView type record LF_UDT_SRC_LINE pointed to unexpected record type
%P: warning: CodeView type record LF_UDT_SRC_LINE referred to unknown string %v
%P: warning: CodeView type record LF_UDT_SRC_LINE referred to unknown type %v
%P: warning: address of `%s' isn't multiple of maximum page size
%P: warning: auto-importing has been activated without --enable-auto-import specified on the command line; this should work unless it involves constant data structures referencing symbols from auto-imported DLLs
%P: warning: bad version number in -subsystem option
%P: warning: cannot create .buildid section, --build-id ignored
%P: warning: cannot create .eh_frame_hdr section, --eh-frame-hdr ignored
%P: warning: cannot create .note.gnu.build-id section, --build-id ignored
%P: warning: cannot create .note.package section, --package-metadata ignored
%P: warning: cannot create /names stream in PDB file: %E
%P: warning: cannot create DBI stream in PDB file: %E
%P: warning: cannot create IPI stream in PDB file: %E
%P: warning: cannot create PDB file: %E
%P: warning: cannot create TPI stream in PDB file: %E
%P: warning: cannot create info stream in PDB file: %E
%P: warning: cannot create old directory stream in PDB file: %E
%P: warning: cannot create publics stream in PDB file: %E
%P: warning: cannot create section header stream in PDB file: %E
%P: warning: cannot create symbol record stream in PDB file: %E
%P: warning: cannot find entry symbol %s; defaulting to %V
%P: warning: cannot find entry symbol %s; not setting start address
%P: warning: cannot find thumb start symbol %s
%P: warning: cannot populate DBI stream in PDB file: %E
%P: warning: cannot populate IPI stream in PDB file: %E
%P: warning: cannot populate TPI stream in PDB file: %E
%P: warning: cannot populate info stream in PDB file: %E
%P: warning: cannot populate names stream in PDB file: %E
%P: warning: cannot populate publics stream in PDB file: %E
%P: warning: could not find any targets that match endianness requirement
%P: warning: could not find end of S_BLOCK32 record
%P: warning: could not find end of S_GPROC32/S_LPROC32 record
%P: warning: could not find end of S_INLINESITE record
%P: warning: could not find end of S_THUNK32 record
%P: warning: dot moved backwards before `%s'
%P: warning: duplicate CodeView type record LF_UDT_MOD_SRC_LINE
%P: warning: failed to convert %s table in %pB (%s); subsequent disassembly may be incomplete
%P: warning: global constructor %s used
%P: warning: ignoring invalid -D number %s
%P: warning: ignoring invalid -H number %s
%P: warning: ignoring invalid -bmaxdata number %s
%P: warning: ignoring invalid -bmaxstack number %s
%P: warning: ignoring invalid -pD number %s
%P: warning: ignoring invalid -pT number %s
%P: warning: ignoring invalid module type %s
%P: warning: malformed CodeView type record LF_METHODLIST
%P: warning: name for LF_CLASS/LF_STRUCTURE has no terminating zero
%P: warning: name for LF_ENUM has no terminating zero
%P: warning: name for LF_ENUMERATE has no terminating zero
%P: warning: name for LF_MEMBER has no terminating zero
%P: warning: name for LF_METHOD has no terminating zero
%P: warning: name for LF_NESTTYPE has no terminating zero
%P: warning: name for LF_ONEMETHOD has no terminating zero
%P: warning: name for LF_STMEMBER has no terminating zero
%P: warning: name for LF_UNION has no terminating zero
%P: warning: name for S_CONSTANT has no terminating zero
%P: warning: name for S_GPROC32/S_LPROC32 has no terminating zero
%P: warning: name for S_LDATA32/S_GDATA32/S_LTHREAD32/S_GTHREAD32 has no terminating zero
%P: warning: name for S_UDT has no terminating zero
%P: warning: no memory region specified for loadable section `%s'
%P: warning: orphan section `%pA' from `%pB' being placed in section `%s'
%P: warning: overwriting decorated name %s with %s
%P: warning: resolving %s by linking to %s
%P: warning: section ordering file changed.  Ignoring earlier definition
%P: warning: start of section %s changed by %ld
%P: warning: string for LF_FUNC_ID has no terminating zero
%P: warning: string for LF_MFUNC_ID has no terminating zero
%P: warning: string for LF_STRING_ID has no terminating zero
%P: warning: the size of the 'window' memory region is not a power of 2; its size %d is truncated to %d
%P: warning: truncated CodeView record S_BLOCK32
%P: warning: truncated CodeView record S_BPREL32
%P: warning: truncated CodeView record S_BUILDINFO
%P: warning: truncated CodeView record S_CONSTANT
%P: warning: truncated CodeView record S_GPROC32/S_LPROC32
%P: warning: truncated CodeView record S_HEAPALLOCSITE
%P: warning: truncated CodeView record S_INLINESITE
%P: warning: truncated CodeView record S_LDATA32/S_GDATA32/S_LTHREAD32/S_GTHREAD32
%P: warning: truncated CodeView record S_LDATA32/S_LTHREAD32
%P: warning: truncated CodeView record S_LOCAL
%P: warning: truncated CodeView record S_REGISTER
%P: warning: truncated CodeView record S_REGREL32
%P: warning: truncated CodeView record S_THUNK32
%P: warning: truncated CodeView record S_UDT
%P: warning: truncated CodeView type record LF_ARGLIST
%P: warning: truncated CodeView type record LF_ARRAY
%P: warning: truncated CodeView type record LF_BCLASS
%P: warning: truncated CodeView type record LF_BITFIELD
%P: warning: truncated CodeView type record LF_BUILDINFO
%P: warning: truncated CodeView type record LF_CLASS/LF_STRUCTURE
%P: warning: truncated CodeView type record LF_ENUM
%P: warning: truncated CodeView type record LF_ENUMERATE
%P: warning: truncated CodeView type record LF_FIELDLIST
%P: warning: truncated CodeView type record LF_FUNC_ID
%P: warning: truncated CodeView type record LF_INDEX
%P: warning: truncated CodeView type record LF_MEMBER
%P: warning: truncated CodeView type record LF_METHOD
%P: warning: truncated CodeView type record LF_METHODLIST
%P: warning: truncated CodeView type record LF_MFUNCTION
%P: warning: truncated CodeView type record LF_MFUNC_ID
%P: warning: truncated CodeView type record LF_MODIFIER
%P: warning: truncated CodeView type record LF_NESTTYPE
%P: warning: truncated CodeView type record LF_ONEMETHOD
%P: warning: truncated CodeView type record LF_POINTER
%P: warning: truncated CodeView type record LF_PROCEDURE
%P: warning: truncated CodeView type record LF_STMEMBER
%P: warning: truncated CodeView type record LF_STRING_ID
%P: warning: truncated CodeView type record LF_SUBSTR_LIST
%P: warning: truncated CodeView type record LF_UDT_SRC_LINE
%P: warning: truncated CodeView type record LF_UNION
%P: warning: truncated CodeView type record LF_VBCLASS/LF_IVBCLASS
%P: warning: truncated CodeView type record LF_VFTABLE
%P: warning: truncated CodeView type record LF_VFUNCTAB
%P: warning: truncated DEBUG_S_INLINEELINES data
%P: warning: unable to get full path to PDB
%P: warning: unable to get program name
%P: warning: unable to get working directory
%P: warning: unexpected CodeView scope start record %v
%P: warning: unexpected DEBUG_S_INLINEELINES version %u
%P: warning: unhandled type %v within LF_BCLASS
%P: warning: unhandled type %v within LF_CLASS/LF_STRUCTURE
%P: warning: unhandled type %v within LF_ENUMERATE
%P: warning: unhandled type %v within LF_MEMBER
%P: warning: unhandled type %v within LF_UNION
%P: warning: unhandled type %v within LF_VBCLASS/LF_IVBCLASS
%P: warning: unhandled type %v within S_CONSTANT
%P: warning: unique name for LF_CLASS/LF_STRUCTURE has no terminating zero
%P: warning: unique name for LF_ENUM has no terminating zero
%P: warning: unique name for LF_UNION has no terminating zero
%P: warning: unrecognized --build-id style ignored
%P: warning: unrecognized CodeView record %v
%P: warning: unrecognized CodeView subtype %v
%P: warning: unrecognized CodeView type %v
%P:%pS %% by zero
%P:%pS / by zero
%P:%pS assignment to location counter invalid outside of SECTIONS
%P:%pS can not PROVIDE assignment to location counter
%P:%pS cannot move location counter backwards (from %V to %V)
%P:%pS invalid assignment to location counter
%P:%pS: error: alias for default memory region
%P:%pS: error: align with input and explicit align specified
%P:%pS: error: memory region `%s' for alias `%s' does not exist
%P:%pS: error: output section '%s' must already exist
%P:%pS: error: redefinition of memory region alias `%s'
%P:%pS: non constant or forward reference address expression for section %s
%P:%pS: nonconstant expression for %s
%P:%pS: undefined MEMORY region `%s' referenced in expression
%P:%pS: undefined section `%s' referenced in expression
%P:%pS: undefined symbol `%s' referenced in expression
%P:%pS: unknown constant `%s' referenced in expression
%P:%pS: warning: --enable-non-contiguous-regions makes section `%pA' from `%pB' match /DISCARD/ clause.
%P:%pS: warning: --enable-non-contiguous-regions may change behaviour for section `%pA' from `%pB' (assigned to %pA, but additional match: %pA)
%P:%pS: warning: memory region `%s' not declared
%P:%pS: warning: redeclaration of memory region `%s'
%P:%s%d: warning: syntax error in import/export file
%P:%s: cannot open object-only output: %E
%P:%s: cannot stat object-only output: %E
%P:%s: final close failed on object-only output: %E
%P:%s: hash creation failed
%P:%s: read failed on object-only output: %E
%P:%s:%d: #! ([member]) is not supported in import files
%P:%s:%d: warning: ignoring unterminated last line
%P:%s:%d: warning: syntax error in import file
%P:%s:%d: warning: syntax error in import/export file
%W (size before relaxing)
%X%H: dangerous relocation: %s
%X%H: reloc refers to symbol `%pT' which is not being output
%X%P: %C: multiple definition of `%pT'%X%P: %D: more undefined references to `%pT' follow
%X%P: %H: prohibited cross reference from %s to `%pT' in %s
%X%P: %H: undefined reference to `%pT'
%X%P: %H: variable '%pT' can't be auto-imported; please read the documentation for ld's --enable-auto-import for details
%X%P: %pA exceeds local store range
%X%P: %pB section `%s' will not fit in region `%s'
%X%P: %pB: can not create runtime reloc information: %E
%X%P: %pB: can not create runtime reloc information: %s
%X%P: %pB: more undefined references to `%pT' follow
%X%P: %pB: section %s has relocs; can not use --embedded-relocs
%X%P: %pB: undefined reference to `%pT'
%X%P: %s architecture of input file `%pB' is incompatible with %s output
%X%P: %s does not support reloc %s for set %s
%X%P: %s(%s): can't find member in archive%X%P: %s(%s): can't find member in non-archive file%X%P: %s: this doesn't appear to be a DLL
%X%P: --hash-size needs a numeric argument
%X%P: .eh_frame/.stab edit: %E
%X%P: TLS problem %E
%X%P: add symbols %s: %E
%X%P: address 0x%v of %pB section `%s' is not within region `%s'
%X%P: anonymous version tag cannot be combined with other version tags
%X%P: bfd_hash_table_init of cref table failed: %E
%X%P: bfd_openr %s: %E
%X%P: can not build stubs: %E
%X%P: can not create .edata section: %E
%X%P: can not create .reloc section: %E
%X%P: can not create note section: %E
%X%P: can not create stub BFD: %E
%X%P: can not edit %s: %E
%X%P: can not find overlays: %E
%X%P: can not load built-in overlay manager: %E
%X%P: can not make stub section: %E
%X%P: can not open built-in overlay manager: %E
%X%P: can not set gp
%X%P: can not setup the input section list: %E
%X%P: can not size group sections: %E
%X%P: can not size overlay stubs: %E
%X%P: can not size stub section: %E
%X%P: can not size stub sections: %E
%X%P: can't open .lib file: %s
%X%P: can't set BFD default target to `%s': %E
%X%P: cannot build stubs: %E
%X%P: cannot create dynamic sections %E
%X%P: cannot export %s: invalid export name
%X%P: cannot export %s: symbol not defined
%X%P: cannot export %s: symbol not found
%X%P: cannot export %s: symbol wrong type (%d vs %d)
%X%P: cannot size stub section: %E
%X%P: changing output format whilst linking is not supported
%X%P: could not compute sections lists for stub generation: %E
%X%P: cref alloc failed: %E
%X%P: cref_hash_lookup failed: %E
%X%P: different object file formats composing set %s
%X%P: different relocs used in set %s
%X%P: duplicate expression `%s' in version information
%X%P: duplicate version tag `%s'
%X%P: dynamic sections created in non-dynamic link
%X%P: error, duplicate EXPORT with ordinals: %s (%d vs %d)
%X%P: error: %X%P: error: %d-bit reloc in dll
%X%P: error: can't use long section names on this arch
%X%P: error: duplicate retain-symbols-file
%X%P: error: export ordinal too large: %d
%X%P: error: ordinal used twice: %d (%s vs %s)
%X%P: error: unplaced orphan section `%pA' from `%pB'
%X%P: error: unrecognized value '-z %s'
%X%P: failed to merge target specific data of file %pB
%X%P: inline PLT: %E
%X%P: internal error on COFF shared library section %s
%X%P: internal problems scanning %pB after opening it%X%P: internal problems setting up section %s%X%P: linker script separates .got and .toc
%X%P: open %s: %E
%X%P: ppc_finish_symbols problem %E
%X%P: region `%s' overflowed by %lu byte
%X%P: region `%s' overflowed by %lu bytes
%X%P: required symbol `%s' not defined
%X%P: section %s LMA [%V,%V] overlaps section %s LMA [%V,%V]
%X%P: section %s LMA wraps around address space
%X%P: section %s VMA [%V,%V] overlaps section %s VMA [%V,%V]
%X%P: section %s VMA wraps around address space
%X%P: section `%s' assigned to non-existent phdr `%s'
%X%P: select_plt_layout problem %E
%X%P: special section %s does not support reloc %s for set %s
%X%P: too many global registers: %u, max 223
%X%P: unable to find version dependency `%s'
%X%P: unable to process relocs: %E
%X%P: unable to read .exports section contents
%X%P: unknown feature `%s'
%X%P: unknown language `%s' in version information
%X%P: unsupported PEI architecture: %s
%X%P: unsupported size %d for set %s
%X%P:%pS: PHDRS and FILEHDR are not supported when prior PT_LOAD headers lack them
%X%P:%pS: section has both a load address and a load region
%X%P:%pS: unresolvable symbol `%s' referenced in expression
%X%P:%s:%d: failed to import symbol %s: %E
%pB: in function `%pT':
%pS HLL ignored
%pS SYSLIB ignored
%s needed by %pB
%s: %s
%s: emulation specific options:
%s: supported emulations: %s: supported targets:%s: total time in link: %ld.%06ld
:%P: -pie not supported
; %D: first defined here; no contents available
<discard><no plugin>=MODEADDRESSARCHARGAccept input files whose architecture cannot be determinedAdd DIRECTORY to library search pathAdd data symbols to dynamic listAddress of section %s set to Allow multiple definitionsAllow undefined versionAllow unresolved references in shared librariesAlways set DT_NEEDED for dynamic libraries mentioned on
                                the command lineArchive member included to satisfy reference by file (symbol)

AttributesAuxiliary filter for shared object symbol tableBind global function references locallyBind global references locallyBuild global constructor/destructor tablesCOUNTCTF errorCTF error: cannot get CTF errors: `%s'
CTF warningCall SYMBOL at load-timeCall SYMBOL at unload-timeCheck section addresses for overlaps (default)Common symbol       size              file

Control how orphan sections are handled.Copy DT_NEEDED links mentioned inside DSOs that followCopyright (C) 2025 Free Software Foundation, Inc.
Create a position dependent executable (default)Create a position independent executableCreate a shared libraryCreate an output file even if errors occurCreate default symbol versionCreate default symbol version for imported symbolsCreating library file: %s
DIRECTORYDefault search path for Solaris compatibilityDefine a symbolDemangle symbol names [using STYLE]Disable the LINKER_VERSION linker script directiveDisallow undefined versionDiscard all local symbolsDiscard temporary local symbols (default)Display target specific optionsDo not allow multiple definitions with symbols included
                                in filename invoked by -R or --just-symbolsDo not allow unresolved references in object filesDo not allow unresolved references in shared libsDo not check section addresses for overlapsDo not copy DT_NEEDED links mentioned inside DSOs that followDo not define Common storageDo not demangle symbol namesDo not display any warning or error messagesDo not emit names and types of static variables in CTFDo not link against shared librariesDo not list removed unused sectionsDo not page align dataDo not page align data, do not make text readonlyDo not print resource usage statisticsDo not show discarded sections in map file outputDo not show local symbols in map file output (default)Do not strip symbols in discarded sectionsDo not treat warnings as errors (default)Do not use relaxation techniques to reduce code sizeDo task level linkingDon't bind global references locallyDon't discard any local symbolsDon't merge input [SECTION | orphan] sectionsDon't remove unused sections (default)Don't warn about mismatched input filesDon't warn on finding an incompatible libraryELF emulations:
EMULATIONEmit names and types of static variables in CTFEnable support of non-contiguous memory regionsEnable the LINKER_VERSION linker script directiveEnable warnings when --enable-non-contiguous-regions may cause unexpected behaviourEnd a groupExport all dynamic symbolsExport the specified symbolFILEFILE/DIRFILENAMEFail with %d
File
Filter for shared object symbol tableForce common symbols to be definedForce generation of file with .exe suffixForce group members out of groupsGNU ld %s
Generate embedded relocsGenerate import libraryGenerate relocatable outputHow many tags to reserve in .dynamic sectionHow to handle unresolved symbols.  <method> is:
                                ignore-all, report-all, ignore-in-object-files,
                                ignore-in-shared-libsHow to share CTF types between translation units.
                                <method> is: share-unconflicted (default),
                                             share-duplicatedIgnoredIgnored for GCC LTO option compatibilityIgnored for GCC linker option compatibilityIgnored for Linux compatibilityIgnored for SVR4 compatibilityIgnored for SunOS compatibilityIgnored for gold option compatibilityInclude all objects from following archivesInfo: resolving %s by linking to %s (auto-import)
Just link symbols (if directory, same as --rpath)KEYWORDKeep exported symbols when removing unused sectionsKeep only symbols listed in FILELIBNAMELengthLink against shared librariesLink big-endian objectsLink little-endian objectsList removed unused sections on stderrLoad named pluginLoad named plugin (ignored)NameNo symbols
Object-only input files:
 Only set DT_NEEDED for following dynamic libs if usedOnly use library directories specified on
                                the command lineOptimize output fileOptions:
OriginOutput cross reference tableOutput lots of information during linkOverride the default sysroot locationPATHPATTERN=FILEPLUGINPROGRAMPage align data, make text readonlyPop state of flags governing input file handlingPrint current sysrootPrint default output formatPrint map file on standard outputPrint option helpPrint resource usage statisticsPrint version and emulation informationPrint version informationProduce an executable with no program interpreter headerProvide a script to help with undefined symbol errorsPush state of flags governing input file handlingRead MRI format linker scriptRead default linker scriptRead dynamic listRead export dynamic symbol listRead linker scriptRead options from FILE
Read version information scriptReduce code size by using target specific optimizationsReduce memory overheads, possibly taking much longerReject input files whose architecture is unknownRemove unused sections (on some targets)Report bugs to %s
Report target memory usageReport unresolved symbols as errorsReport unresolved symbols as warningsRequire SYMBOL be defined in the final outputSCRIPTSECTION=ADDRESSSHLIBSIZESYMBOLSYMBOL=EXPRESSIONSearch for library LIBNAMESend arg to last-loaded pluginSend arg to last-loaded plugin (ignored)Set PROGRAM as the dynamic linker to useSet address of .bss sectionSet address of .data sectionSet address of .text sectionSet address of ldata segmentSet address of named sectionSet address of rodata segmentSet address of text segmentSet architectureSet default hash table size close to <NUMBER>Set emulationSet image base addressSet internal name of shared librarySet link time shared library search pathSet output file nameSet runtime shared library search pathSet start addressSet the maximum cache size to SIZE bytesShared library control for HP/UX compatibilityShow discarded sections in map file output (default)Show local symbols in map file outputSmall data size (if no size, same as --shared)Sort common symbols by alignment [in specified order]Sort sections by name or maximum alignmentSort sections by statements in FILESpecify target for following input filesSpecify target of output fileSplit output sections every COUNT relocsSplit output sections every SIZE octetsStart a groupStart with undefined reference to SYMBOLStore plugin intermediate files permanentlyStrip all symbolsStrip debugging symbolsStrip symbols in discarded sectionsSupported emulations: SymbolTARGETTake export symbols list from .exports, using
                                SYMBOL as the version.This program is free software; you may redistribute it under the terms of
the GNU General Public License version 3 or (at your option) a later version.
This program has absolutely no warranty.
Trace file opensTrace mentions of SYMBOLTreat warnings as errorsTurn off --whole-archiveUndo the effect of --export-dynamicUnresolved SYMBOL will not cause an error or warningUsage: %s [options] file...
Use --disable-stdcall-fixup to disable these fixups
Use --enable-stdcall-fixup to disable these warnings
Use C++ operator new/delete dynamic listUse C++ typeinfo dynamic listUse less memory and more disk I/OUse same format as native linkerUse wrapper functions for SYMBOLWARNING: Data is unreliable!
Warn about duplicate common symbolsWarn if an object has alternate ELF machine codeWarn if global constructors/destructors are seenWarn if output has DT_TEXTRELWarn if output has DT_TEXTREL (default)Warn if start of section changes due to alignmentWarn if the multiple GP values are usedWarn only once per undefined symbolWrite a linker map to FILE or DIR/<outputname>.mapWrite dependency file[=COUNT][=NUMBER][=SECTION][=SIZE][=STYLE][=ascending|descending]alignmentascendingattempt to open %s failed
attempt to open %s succeeded
built in linker scriptcan't create object-only sectioncan't set object-only section sizecannot find script file %s
could not allocate section contentscould not create new sectiondescendingerror adding object-only sectionerror copying private BFD dataerror copying private header dataerror copying sectionserror handling scripterror setting up sectionsfailed to copy private datafailed to create output sectionfailed to read section contentsfile already has property tablesfound %s at %s
namename|alignmentno symbolopened script file %s
out of memoryrelocation count is negativeremap input file '%s' to '%s'
remap input file '%s' to '%s' based upon pattern '%s'
remove input file '%s'
remove input file '%s' based upon pattern '%s'
unknown LTO kind value %xunknown LTO resolution value %xunknown LTO visibility value %xunrecognised or unsupported token '%s' in search path
using external linker script: %susing internal linker script:warning: warning: INSERT statement in linker script is incompatible with --enable-non-contiguous-regions.
warning: resolving %s by linking to %s
Project-Id-Version: ld 2.44.90
Report-Msgid-Bugs-To: https://sourceware.org/bugzilla/
POT-Creation-Date: 2025-07-13 08:53+0100
PO-Revision-Date: 2025-08-01 08:07+0200
Last-Translator: Antonio Ceballos Roa <aceballos@gmail.com>
Language-Team: Spanish <es@tp.org.es>
Language: es
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Bugs: Report translation errors to the Language-Team address.
Plural-Forms: nplurals=2; plural=(n != 1);

Se asignan símbolos comunes

Biblioteca bajo demanda incluida para satisfacer referencia por fichero (símbolo)


Tabla de Referencias Cruzadas


Secciones de salida descartadas


Reasignación de Fichero de Entrada


Guión del enlazador y mapa de memoria


Configuración de la Memoria


Conjunto            Símbolo


No hay secciones de entrada descartadas
                                     Excluye objetos, miembros de archivo de la exportación
                                     Produce binarios no deterministas
                                     automática, los coloca en la biblioteca de importación
                                     automática, los coloca en la biblioteca de importación.
                                Opción predefinida: %s
                                Estilos: none,md5,sha1,uuid,0xHEX
                                Estilos: none,md5,sha1,xx,uuid,0xHEX
                          Desactiva la fusión de entradas exidx
  --[disable-]dynamicbase            La dirección base de la imagen se puede
                                       reubicar usando la disposición aleatoria
                                       del espacio de direcciones (en inglés: ASLR)
  --[disable-]forceinteg             Se aplican comprobaciones de integridad del código
  --[disable-]high-entropy-va        Imagen compatible con disposición aleatoria
                                       del espacio de direcciones de 64 bits
                                       (en inglés: ASLR)
  --[disable-]no-bind                No enlaza esta imagen
  --[disable-]no-isolation           La imagen entiende aislamiento, pero
                                       no aísla la imagen
  --[disable-]no-seh                 La imagen no usa SEH. No se puede llamar
                                       a ningún manejador SE en esta imagen
  --[disable-]no-seh                 La imagen no usa SEH; no se puede llamar
                                       a un manejador SE en esta imagen
  --[disable-]nxcompat               La imagen es compatible con la prevención
                                       de ejecución de datos
  --[disable-]tsaware                La imagen funciona con Terminal Server
  --[disable-]wdmdriver              El controlador usa el modelo WDM
  --[no-]branch-stub          Desactiva/activa el uso de stubs para expandir
                                las instrucciones de rama que no pueden llegar
                                al objetivo.
  --[no-]fix-arm1176          Desactiva/activa la corrección inmediata del error ARM1176 BLX
  --[no-]fix-cortex-a8        Desactiva/activa la corrección del error de rama Cortex-A8 Thumb-2
  --[no-]insert-timestamp            Utiliza marca de tiempo real en lugar de cero (opción predefinida)
  --[no-]insert-timestamp            Utiliza marca de sello real en lugar de cero (opción predefinida).
  --[no-]leading-underscore          Establece el modo explícito de prefijo de símbolo con subrayado
  --abi-call0                 Elige ABI call0 para el objeto de salida
  --abi-windowed              Elige ABI de ventana para el objeto de salida
  --add-stdcall-alias                Exporta símbolos con y sin @nn
  --audit=AUDITLIB            Especifica una biblioteca para auditoría
  --auto-overlay [=filename]  Crea script de recubrimiento en nombre del fichero
                                si el ejecutable no cabe en el almacenamiento local
  --auto-relink               Vuelve a ejecutar el enlazador utilizando
                                script de autorecubrimiento
  --bank-window NOMBRE        Especifica el nombre de la región de memoria que
                                describe la disposición de la ventana del banco de memoria
  --base_file <ficherobase>          Genera un fichero base para DLLs reubicables
  --base_file <ficherobase>   Genera un fichero base para DLLs reubicables
  --be8                       Salida en formato de imagen BE8
  --bss-plt                   Fuerza BSS PLT al viejo estilo
  --build-id[=ESTILO]                Genera ID de build
  --build-id[=ESTILO]         Genera nota de ID de «build»
  --check-uleb128             Comprueba si SUB_ULEB128 tiene adenda distinta de cero
  --cmse-implib               Hace que la biblioteca de importación sea una
                                biblioteca de importación de pasarela segura
                                según las extensiones de seguridad de ARMv8-M
  --code-in-l1                Pone el código en L1
  --code-region={either,lower,upper,none}
        Transforma las secciones .text* en secciones {either,lower,upper,none}.text*
  --compact-branches          Genera ramas/saltos compactos para MIPS R6
  --compact-stubs             Utiliza stubs de llamadas más pequeños y
                                posiblemente más lentos
  --compat-implib                    Crea bibliotecas de importación compatibles hacia atrás;
                                       crea además __imp_<SÍMBOLO>
  --compat-implib                    Crea bibliotecas de importación compatibles hacia atrás;
                                       crea además __imp_<SÍMBOLO>.
  --compress-debug-sections=[none|zlib|zlib-gnu|zlib-gabi|zstd]
			      Comprime las secciones de depuración DWARF
  --data-in-l1                Pone los datos en L1
  --data-region={either,lower,upper,none}
        Transforma las secciones .data*, .rodata* y .bss* en
        secciones {either,lower,upper,none}.{bss,data,rodata}*
  --debug-relax               Utilizado para depurar avr-ld.
  --debug-stubs               Utilizado para depurar avr-ld.
  --disable-auto-image-base          No escoge automáticamente una imagen base (por defecto)
  --disable-auto-image-base          No escoge automáticamente una imagen base. (por defecto)
  --disable-auto-import              No importa automáticamente elementos DATA de las DLLs
  --disable-large-address-aware      El ejecutable no admite direcciones
                                       virtuales mayores que 2 gigabytes
  --disable-long-section-names       Nunca usa nombres de sección COFF largos,
                                       aún en ficheros objeto
  --disable-new-dtags         Desactiva etiquetas dinámicas nuevas
  --disable-reloc-section            No crea la tabla de reubicación de base
  --disable-runtime-pseudo-reloc     No agrega pseudo-reubicaciones al momento
                                       de ejecución para DATOS autoimportados
  --disable-runtime-pseudo-reloc     No agrega pseudo-reubicaciones al momento
                                       de ejecución para DATOS autoimportados.
  --disable-sec-transformation
        Desactiva la transformación de las secciones .{text,data,bss,rodata}*
        para añadir los prefijos {either,lower,upper,none}
  --disable-stdcall-fixup            No enlaza _sym con _sym@nn
  --dll                              Establece la imagen base por defecto para las DLLs
  --dll-search-prefix=<cadena>       Al enlazar dinámicamente con una dll sin una
                                       biblioteca de importación, usa <cadena><nombrebase>.dll 
                                       en lugar de lib<nombrebase>.dll 
  --dotsyms                   Para cada patrón de versión "foo" en un «script»
                                de versión, añade ".foo" de modo que a los
                                símbolos del código de función se los trate
                                igual que a los símbolos de los descriptores de
                                función. Activo por omisión.
  --dsbt-index <índice>   Indica el índice DSBT del objeto de salida
  --dsbt-size <índice>    Indica el número de entradas en la tabla DSBT
  --eh-frame-hdr              Crea sección .eh_frame_hdr
  --emit-stack-syms           Añade símbolo para dar la pila necesaria
                                para cada función
  --emit-stub-syms            Añade símbolos en los stubs de llamada de recubrimiento
  --emit-stub-syms            Etiqueta los stubs del enlazador con un símbolo
  --enable-auto-image-base           Escoge automáticamente la base de la imagen para
                                       las DLLs salvo que el usuario especifique una
  --enable-auto-image-base[=<direc>]   Escoge automáticamente la base de la imagen para las DLLs
                                       (opcionalmente empezando con direc salvo que
                                       se establezca específicamente con --image-base
  --enable-auto-import               Hace enlazado sofisticado de _sym a
                                       __imp_sym para las referencias DATA
  --enable-extra-pe-debug            Activa la salida de depuración detallada al construir
                                       o enlazar a DLLs (en part. con auto-importación)
  --enable-extra-pep-debug            Activa la salida de depuración detallada al construir
                                       o enlazar a DLLs (en part. con auto-importación)
  --enable-long-section-names        Usa nombres de sección COFF largos aún
                                      en ficheros de imágenes ejecutables
  --enable-new-dtags          Activa etiquetas dinámicas nuevas
  --enable-reloc-section             Crea la tabla de reubicación de base
  --enable-runtime-pseudo-reloc      Evita limitaciones de autoimportación
                                       agregando pseudo-reubicaciones resueltas
                                       al momento de ejecución
  --enable-runtime-pseudo-reloc      Evita limitaciones de autoimportación
                                       agregando pseudo-reubicaciones resueltas
                                       al momento de ejecución.
  --enable-stdcall-fixup             Enlaza _sym con _sym@nn sin avisos
  --error-execstack           Transforma los avisos sobre pilas de ejecutables en errores
  --error-rwx-segments        Transforma en errores los avisos sobre segmentos RWX cargables
  --exclude-all-symbols              Excluye todos los símbolos de la exportación automática
  --exclude-libs bib,bib,...         Excluye bibliotecas de la exportación automática
  --exclude-libs=LIBS         Hace ocultos todos los símbolos en LIBS
  --exclude-modules-for-implib mod,mod,...
  --exclude-symbols sim,sim,...      Excluye símbolos de la exportación automática
  --export-all-symbols               Exporta automáticamente todos los globales a la DLL
  --extra-overlay-stubs       Añade stubs en todas las llamadas fuera de regiones de recubrimiento
  --extra-stack-space=bytes   Espacio para acceso sp negativo (2000 predefinido)
                                si no se proporciona --reserved-space
  --file-alignment <tamaño>          Establece el fichero de alineación
  --fix-cortex-a53-835769      Corrige el error 835769
  --fix-cortex-a53-843419[=full|adr|adrp]      Corrige el error 843419 y opcionalmente especifica que solución utilizar.
                                               full (opción predefinida): utiliza las soluciones ADRP y ADR, lo cual
                                                 incrementa el tamaño de los binarios generados.
                                               adr: solo utiliza la solución ADR, que no provoca incremento alguno en el
                                                 tamaño de los binarios, pero el enlazado fallará si la dirección
                                                 referenciada está fuera del rango de la instrucción ADR. Esto eliminará
                                                 la necesidad de utilizar capa y mejorará el rendimiento y el
                                                 tamaño
                                               adrp: solo utiliza la solución ADRP, que nunca reescribirá una
                                                 instrucción ADRP como ADR.  La solución siempre utilizará
                                                 capa, lo que empeorará el rendimiento y el tamaño.
  --fix-stm32l4xx-629360      Especifica cómo corregir el error STM32L4XX 629360
  --fix-v4bx                  Reescribe BX rn como MOV pc, rn para ARMv4
  --fix-v4bx-interworking     Reescribe rama BX rn en capa de interoperabilidad ARMv4
  --fixed-space=bytes         Almacenamiento local para código y datos
                                no de recubrimiento
  --flag-mismatch-warnings    Advierte de objetos con configuraciones de
                                endian, dsp o ABI incompatibles
  --force-dynamic             Crea siempre secciones dinámicas
  --format 0|1|2              Especifica qué versión COFF utilizar
  --got=<tipo>                Especifica el esquema de manejo GOT
  --hash-style=ESTILO         Establece el estilo «hash» a sysv/gnu/both.  Predefinido:   --heap <tamaño>                    Establece el tamaño inicial del montón
  --identification <cadena>          Establece la identificación de la salida
  --ignore-branch-isa         Acepta las reubicaciones de rama inválidas que
                              requieren opción de modo ISA
  --ignore-lma                Hace caso omiso de LMAs
                                [comportamiento predefinido]
                                (para compatibilidad con Renesas Tools)
  --image-base <dirección>           Establece la dirección de inicio del ejecutable
  --in-implib                 Importa biblioteca en la que la dirección de
                                los símbolos debe permanecer estable
  --insn32                    Solo genera instrucciones microMIPS de 32 bits
  --itanium                   Genera código para el procesador Intel Itanium
  --kill-at                          Elimina @nn de los símbolos exportados
  --large-address-aware              El ejecutable admite direcciones
                                       virtuales mayores a 2 gigabytes
  --ld-generated-unwind-info  Genera información de manejo de excepciones
                                para PLT
  --line-size                 Tamaño de las líneas «soft-icache» (1k predefinido)
  --local-store=inf:sup       Rango de direcciones válido
  --long-plt                  Genera entradas .plt largas para manejar
                              desplazamientos .plt/.got grandes
  --lrlive-analysis           Examina la vitalidad lr en el prólogo de las funciones
  --m[no-]fp-as-gp            Desactiva/activa la relajación fp-as-gp
  --m[no-]tlsdesc-trampoline  Desactiva/activa trampolín TLS DESC
  --major-image-version <número>     Establece el número de versión del ejecutable
  --major-os-version <número>        Establece la versión mínima requerida del SO
  --major-subsystem-version <número> Establece la versión mínima requerida del subsistema del SO
  --mexport-symbols=FICHERO   Exportando los símbolos del «script» del enlazador
  --mhyper-relax=nivel        Ajusta el nivel de relajamiento (low|medium|high). predefinido: medium
  --minor-image-version <número>     Establece el número de revisión del ejecutable
  --minor-os-version <número>        Establece la revisión mínima requerida del SO
  --minor-subsystem-version <número> Establece la revisión mínima requerida del subsistema del SO
  --multi-subspace            Genera stubs de importación y exportación para
                                admitir bibliotecas compartidas de subespacios
                                múltiples
  --no-apply-dynamic-relocs    No aplica valores de tiempo de enlazamiento a reubicaciones dinámicas
  --no-call-ret-replacement   La máquina de relajación normalmente sustituye
                                dos instrucciones call/ret inmediatamente
                                seguidas por una sola instrucción jump.
                                Esta opción desactiva dicha optimización.
  --no-check-uleb128          No comprueba si SUB_ULEB128 tiene adenda distinta de cero
  --no-compact-branches       Genera ramas/saltos de ranura de retardo para MIPS R6
  --no-dotsyms                No hace nada especial en los «scripts» de versión
  --no-eh-frame-hdr           No crea sección .eh_frame_hdr
  --no-emit-stub-syms         No etiqueta los stubs del enlazador con un
                                símbolo
  --no-enum-size-warning      No advierte de objetos con tamaños de
                                enumerados incompatibles
  --no-error-execstack        No transforma los avisos sobre pilas de ejecutables en errores
  --no-error-rwx-segments     No transforma en errores los avisos sobre segmentos RWX cargables
  --no-flag-mismatch-warnings No advierte de objetos con configuraciones de
                                endian o dsp incompatibles
  --no-ignore-branch-isa      Rechaza las reubicaciones de rama inválidas que
                              requieren opción de modo ISA
  --no-ignore-lma             No ignora los LMAs de segmento
  --no-inline-optimize        No convierte PLT en línea en llamadas directas
  --no-insn32                 Genera todas las instrucciones microMIPS
  --no-ld-generated-unwind-info
                              No genera información de manejo de excepción para
PLT
  --no-merge-exidx-entries
  --no-merge-exidx-entries    Desactiva la fusión de entradas exidx
  --no-multi-toc              Deniega secciones toc múltiples automáticas
  --no-magic     Equivalente a --nmagic
  --no-opd-optimize           No optimiza la sección OPD
  --no-overlays               Sin manejo de recubrimientos
  --no-pcrel-optimize         No efectúa optimización R_PPC64_PCREL_OPT
  --no-pic-fixup              No edita non-pic para pic
  --no-plt-align              No alinea stubs de llamadas PLT individuales
  --no-plt-localentry         No optimiza las llamadas ELFv2
  --no-plt-static-chain       Los stubs de llamadas PLT no deberían cargar r11
  --no-plt-static-chain       Los stubs de llamadas PLT no deberían cargar r11 (lo predefinido)
  --no-plt-thread-safe        Stubs de llamadas PLT sin barrera
  --no-power10-stubs          No utiliza stubs de llamadas PLT Power10
  --no-ppc476-workaround      Desactiva la solución alternativa
  --no-relax-gp               No realiza relajación GP
  --no-rosegment              Con -z separate-code, crea dos segmentos de solo lectura
  --no-rosegment              Con -z separate-code, crea dos segmentos de solo lectura (opción predeterminada)
  --no-save-restore-funcs     No proporciona estas rutinas
  --no-secureplt              Fuerza PLT en el segmento de datos
  --no-stubs                  Si el enlazador detecta un intento de acceder
                                una instrucción más allá de 128k por parte de
                                una reubicación limitada a 128k como máximo,
                                inserta un stub de salto. Puede desactivarse
                                con esta opción.
  --no-tls-get-addr-optimize  No utiliza una llamada __tls_get_addr especial
  --no-tls-get-addr-regsave   No utiliza el stub de salvado de registro __tls_get_addr
  --no-tls-optimize           No trata de optimizar los accesos TLS
  --no-toc-optimize           No optimiza la sección TOC
  --no-toc-sort               No ordena las secciones TOC y GOT
  -z nocombreloc              No funde las reubicaciones dinámicas en una
                                sola sección
  --no-trampoline             No genera trampolines lejanos utilizados para
                                llamar a funciones lejanas mediante jsr o bsr
  --no-warn-execstack         No genera un aviso si se crea una pila de ejecutable
  --no-warn-execstack         No genera un aviso si se crea una pila de ejecutable
                                (opción predeterminada)
  --no-warn-rwx-segments      No genera un aviso si un segmento LOAD tiene permisos RWS
  --no-warn-rwx-segments      No genera un aviso si un segmento LOAD tiene permisos RWS (opción predefinida)
  --no-wchar-size-warning     No advierte de objetos con tamaños de
                                wchar_t incompatibles
  --non-ia-text               Permite código no «icache» en líneas «icache»
  --non-overlapping-opd       Canoniza .opd de forma que no haya solapamiento
                                de entradas .opd
  --num-lines                 Número de líneas «soft-icache» (32 predefinido)
  --num-regions               Número de «buffers» de recubrimientos
                                (1 predefinido)
  --output-def <fichero>             Genera un fichero .DEF para la DLL construida
  --overlay-rodata            Coloca los datos de solo lectura con el código de
                                la función asociada en recubrimientos
  --package-metadata[=JSON]   Genera nota de metadatos del paquete
  --pdb=[NOMBREFICH]                 Genera fichero PDB
  --pic-veneer                Genera siempre capas de interoperabilidad PIC
  --plt-align                 Alinea stubs de llamadas PLT para que quepan
                                en las líneas de caché
  --plt-align [=<alineamiento>]
                              Alinea los stubs de llamadas PLT para que quepan
                                en líneas de caché
  --plt-localentry            Optimiza las llamadas a funciones ELFv2 localentry:0
  --plt-static-chain          Los stubs de llamadas PLT deberían cargar r11 (lo predefinido)
  --plt-static-chain          Los stubs de llamadas PLT deberían cargar r11
  --plt-thread-safe           Stubs de llamadas PLT con barrera carga-carga
  --plugin                    Produce plugin SPU
  --pmem-wrap-around=<val>    Induce a la máquina de relajación del enlazador a
                                asumir que el contador de programa experimenta
                                una vuelta a cero en la dirección <val>.
                                Valores admitidos: 8k, 16k, 32k y 64k.
  --power10-stubs [=auto]     Utiliza stubs PLT Power10 (predefinido: auto)
  --ppc476-workaround [=tamañopágina]
                              Evita un error de caché en ppc476
  --region-size               Tamaño de los «buffers» de recubrimiento
                                (0 predefinido, auto)
  --relax-gp                  Realiza relajación GP
  --reserved-space=bytes      Almacenamiento local para pila y montículo.  Si no
                                se especifica, ld estima el tamaño de pila y
                                asume que no hay montículo
  --rosegment                 Con -z separate-code, crea un único segmento de solo lectura
  --rosegment                 Con -z separate-code, crea un único segmento de solo lectura (opción predeterminada)
  --s390-pgste                Pide al kernel que asigne tablas de páginas de 4k
  --save-restore-funcs        Proporciona rutinas para guardar restaurar registros
                                utilizadas por código gcc -Os.  Por defecto, activado
                                enlazado final normal, desactivado para ld -r.
  --sdata-got                 Fuerza la ubicación de GOT justo antes de .sdata
  --section-alignment <tamaño>       Establece la alineación de la sección
  --secure-plt                Utiliza el nuevo estilo PLT si es posible
  --secureplt                 Fuerza PLT en el segmento de texto
  --size-opt                  Cuando relaja llamadas largas, optimiza antes
                                tamaño que alineamiento de objetivo de rama
  --soft-icache               Genera recubrimientos «icache» software
  --stack <size>                     Establece el tamaño de la pila inicial
  --stack <size>              Establece el tamaño de la pila inicial
  --lazy-stack                Establece asignación perezosa de la pila
  --stack-analysis            Estima el requisito de pila máximo
  --stub-group-size=N         Tamaño máximo de un grupo de secciones de
                                entrada manejado por una sección stub.
  --stub-group-size=N         Tamaño máximo de un grupo de secciones de entrada
                                que puede manejarse en una sección stub.  Un
                                valor negativo coloca todos los stubs después
                                de sus ramas (con tamaño de grupo -N), mientras
                                que un valor positivo permite dos grupos de
                                secciones de entrada, una delante y otra detrás
                                de cada sección stub.  Los valores +/-1 indican
                                que el enlazador es el que debería escoger los
                                valores adecuados.
  --stub-group-size=N         Tamaño máximo de un grupo de secciones de entrada
                                que puede manejarse en una sección stub.  Un
                                valor negativo coloca todos los stubs después
                                de sus ramas (con tamaño de grupo -N), mientras
                                que un valor positivo permite dos grupos de
                                secciones de entrada, una delante y otra detrás
                                de cada sección stub.  Los valores +/-1 indican
                                que el enlazador es el que debería escoger los
                                valores adecuados.
  --subsystem <nombre>[:<versión>]   Establece el subsistema [y versión] requeridos del SO
  --support-old-code                 Admite interoperar con código antiguo
  --target1-abs               Interpreta R_ARM_TARGET1 como R_ARM_ABS32
  --target1-rel               Interpreta R_ARM_TARGET1 como R_ARM_REL32
  --target2=<type>            Especifica la definición de R_ARM_TARGET2
  --thumb-entry=<sim>         Establece el punto de entrada para el símbolo Thumb <sim>
  --thumb-entry=<símbolo>            Establece el punto de entrada para el símbolo Thumb <símbolo>
  --tls-get-addr-optimize     Fuerza el uso de la llamada especial __tls_get_addr
  --tls-get-addr-regsave      Fuerza el uso del stub de salvado de registro __tls_get_addr
  --use-blx                   Activa el uso de instrucciones BLX
  --vfp11-denorm-fix          Especifica cómo corregir VFP11 denorm erratum
  --vle-reloc-fixup           Corrige reubicaciones de ficheros objeto antiguos 16A/16D
  --warn-duplicate-exports           Avisa sobre exportaciones duplicadas
  --warn-execstack            Genera un aviso si se crea una pila de ejecutable
  --warn-execstack            Genera un aviso si se crea una pila de ejecutable
                                (opción predeterminada)
  --warn-execstack-objects    Genera un aviso si un fichero objeto solicita una pila de ejecutable
  --warn-rwx-segments         Genera un aviso si un segmento LOAD tiene permisos RWS
  --warn-rwx-segments         Genera un aviso si un segmento LOAD tiene permisos RWS (opción predefinida)
  -Bgroup                     Selecciona las reglas de búsqueda de nombre de grupo para DSO
  -N, --omagic   No hace que el texto sea de solo lectura; no alinea los
                   datos a la página (lo predefinido)
  -P AUDITLIB, --depaudit=AUDITLIB
                              Especifica una biblioteca para auditar dependencias
  -n, --nmagic   Hace que el texto sea de solo lectura; alinea los
                   datos a la siguiente página
  -z bti-report[=none|warning|error]   Emite aviso/error si no coincide la marcación BTI de los objetos de entrada y
                                       de salida.
                                         none: No emite mensajes de aviso/error.
                                         warning (por defecto): Emite aviso cuando los objetos de entrada carecen de
                                           marcas BTI y la salida los tiene.
                                         error: Emite aviso cuando los objetos de entrada carecen de marcas BTI y
                                           la salida los tiene.
  -z call-nop=RELLENO         Utiliza RELLENO como NOP de 1 byte para
                                bifurcación
  -z cet-report=[none|warning|error] (predefinido: none)
                              Informa de la falta de las propiedades IBT y SHSTK
  -z combreloc                Funde las reubicaciones dinámicas en una sola
                                sección y las ordena
  -z common                   Genera símbolos comunes con el tipo STT_COMMON
  -z common-page-size=TAMAÑO  Establece el tamaño de página común a TAMAÑO
  -z defs                     Informa sobre símbolos no resueltos en los
                                ficheros objeto
  -z dynamic-undefined-weak   Hace dinámicos los símbolos débiles indefinidos
  -z nodynamic-undefined-weak No hace dinámicos los símbolos débiles indefinidos
  -z execstack                Indica que el ejecutable requiere pila de
                                ejecutable
  -z force-bti                         Activa el mechanismo de identificación de objetivo de rama y genera PLTs
                                         con BTI. Genera avisos para marcas BTI ausentes en las entradas
  -z gcs-report-dynamic=none|warning|error   Emite aviso/error si no coincide la marcación GCS de la unidad de enlace
                                             actual y los objetos dinámicos de entrada.
                                               none: No emite mensajes de aviso/error.
                                               warning (por defecto): Emite aviso cuando los objetos de entrada carecen de
                                                 marcas GCS y la salida los tiene.
                                               error: Emite aviso cuando los objetos de entrada carecen de marcas GCS y
                                                 la salida los tiene.
  -z gcs-report[=none|warning|error]   Emite aviso/error si no coincide la marcación GCS de los objetos de entrada y
                                       de salida.
                                         none: No emite mensajes de aviso/error.
                                         warning (por defecto): Emite aviso cuando los objetos de entrada carecen de
                                           marcas GCS y la salida los tiene.
                                         error: Emite aviso cuando los objetos de entrada carecen de marcas GCS y
                                           la salida los tiene.
  -z gcs=[always|never|implicit]       Controla el que la salida disponga del mecanismo de pila de control protegida (GCS).
                                         implicit (por defecto, si se omite '-z gcs'): deduce GCS de los objetos de entrada.
                                         always: marca siempre la salida con GCS.
                                         never: no marca nunca la salida con GCS.
  -z global                   Hace disponibles los símbolos en DSO a los
                                objetos cargados posteriormente
  -z globalaudit              Indica que el ejecutable requiere auditoría global
  -z ibt                      Genera GNU_PROPERTY_X86_FEATURE_1_IBT
  -z ibtplt                   Genera entradas PLT con IBT activado
  -z indirect-extern-access   Activa acceso externo indirecto
  -z initfirst                Marca el DSO para ser inicialiado al principio
                                en tiempo de ejecución
  -z interpose                Marca el objeto para interponer todos los DSOs
                                menos los ejecutables
  -z isa-level-report=[none|all|needed|used] (predefinido: none)
                              Informa del nivel ISA x86-64
  -z lam-report=[none|warning|error] (predefinido: none)
                              Informa de la falta de las propiedades LAM_U48 and
                                LAM_U57
  -z lam-u48                  Genera GNU_PROPERTY_X86_FEATURE_1_LAM_U48
  -z lam-u48-report=[none|warning|error] (predefinido: none)
                              Informa de la falta de la propiedad LAM_U48
  -z lam-u57                  Genera GNU_PROPERTY_X86_FEATURE_1_LAM_U57
  -z lam-u57-report=[none|warning|error] (predefinido: none)
                              Informa de la falta de la propiedad LAM_U57
  -z lazy                     Señala enlace perezoso de objetos en tiempo
                                de ejecución (opción predefinida)
  -z loadfltr                 Indica que el objeto requiere procesamiento inmediato
  -z mark-plt                 Marca PLT con etiquetas dinámicas
  -z nomark-plt               No marca PLT con etiquetas dinámicas (predefinido)
  -z mark-plt                 Marca PLT con etiquetas dinámicas (predefinido)
  -z nomark-plt               No marca PLT con etiquetas dinámicas
  -z max-page-size=TAMAÑO     Establece el tamaño de página máximo a TAMAÑO
  -z memory-seal              Marca objeto sea sellado de memoria
  -z memory-seal              Marca objeto sea sellado de memoria (opción predeterminada)
  -z memtag-mode[=none|sync|async]     Selecciona el modo de operación extensión de etiquetado de
                                       memoria. Emite una etiqueta dinámica DT_AARCH64_MEMTAG_MODE
                                       para el binario. Esta entrada solo es válida en el ejecutable
                                       principal. Se hace caso omiso en los objetos que el cargador
                                       carga dinámicamente.
                                         none (por defecto): Desactiva las comprobaciones MTE en
                                              operaciones de lectura y escritura de memoria.
                                         sync: Activa excepciones precisas cuando se detectan
                                               discordancias en etiquetas de direcciones y de reserva
                                               en operaciones de carga/almacenamiento.
                                         async: Activa excepciones imprecisas.
  -z memtag-stack               Marca la pila del programa con protección MTE.
  -z muldefs                  Permite definiciones múltiples
  -z nocombreloc              No funde las reubicaciones dinámicas en una
                                sola sección
  -z nocommon                 Genera símbolos comunes con el tipo STT_OBJECT
  -z nocopyreloc              No crea reubicaciones copia
  -z nodefaultlib             Indica que el objeto no utilizará rutas de búsqueda predeterminadas
  -z nodelete                 Indica que el DSO no es borrable en tiempo de ejecución
  -z nodlopen                 Indica que el DSO no está disponible para dlopen
  -z nodump                   Indica que el DSO no está disponible para dldump
  -z noexecstack              Indica que el ejecutable no requiere pila de
                                ejecutable
  -z noextern-protected-data  No trata los símbolos de datos protegidos como externos
  -z noindirect-extern-access Desactiva acceso externo indirecto (predefinido)
  -z nomemory-seal            No marca objeto sea sellado de memoria
  -z nomemory-seal            No marca objeto sea sellado de memoria (opción predeterminada)
  -z nopack-relative-relocs   No empaqueta reubicaciones relativas (predefinido)
  -z noreloc-overflow         Desactiva la comprobación de desbordamiento
                                por reubicación
  -z norelro                  No crea cabecera de programa RELRO
  -z norelro                  No crea cabecera de programa RELRO (opción predefinida)
  -z nosectionheader          No genera cabecera de sección
  -z noseparate-code          No crea cabecera de programa de código separado
  -z noseparate-code          No crea cabecera de programa de código separado
                                (opción predefinida)
  -z nostart-stop-gc          No recolecta basura al hacer __start/__stop (opción predeterminada)
  -z notext                   No trata DT_TEXTREL en la salida como error
  -z notext                   No trata DT_TEXTREL en la salida como error (lo predefinido)
  -z nounique                 No marca el DSO como cargable una vez como máximo
  -z nounique-symbol          Mantiene duplicados en nombres de símbolos
                                locales (comportamiento predefinido)
  -z now                      Señala enlace no perezoso de objetos en tiempo de ejecución
  -z origin                   Indica que el objeto requiere procesamiento
                                inmediato de $ORIGEN en tiempo de ejecución
  -z pac-plt                           Protege PLTs con autenticación de puntero.
  -z pack-relative-relocs     Empaqueta reubicaciones relativas
  -z relro                    Crea cabecera de programa RELRO
  -z relro                    Crea cabecera de programa RELRO (opción predefinida)
  -z report-relative-reloc    Informa de reubicacioens relativas
  -z sectionheader            Genera cabecera de sección (opción predeterminada)
  -z separate-code            Crea cabecera de programa de código separado
  -z separate-code            Crea cabecera de programa de código separado
                                (opción predefinida)
  -z shstk                    Genera GNU_PROPERTY_X86_FEATURE_1_SHSTK
  -z stack-size=TAMAÑO        Establece el tamaño de segmento de la pila
  -z start-stop-gc            Activa la recolección de basura al hacer __start/__stop
  -z start-stop-visibility=V  Establece la visibilidad de los símbolos internos
                                __start/__stop symbols a
                                DEFAULT, PROTECTED, HIDDEN o INTERNAL
  -z text                     Trata DT_TEXTREL en la salida como error
  -z text                     Trata DT_TEXTREL en la salida como error (lo predefinido)
  -z textoff                  No trata DT_TEXTREL en la salida como error
  -z textoff                  No trata DT_TEXTREL en la salida como error (lo predefinido)
  -z undefs                   Ignora símbolos no resueltos en los ficheros
                                objeto
  -z unique                   Marca el DSO para que el comportamiento predefinido sea
                                cargarlo una vez como máximo y solo en el espacio
                                de nombres principal
  -z unique-symbol            Evita duplicados en nombres de símbolos locales
  -z x86-64-{baseline|v[234]} Marca el nivel ISA x86-64-{baseline|v[234]} requerido
  -z, --imagic   Hace que el texto sea de solo lectura; espacios de datos
                   e instrucciones separados
  @FICHERO  Patrón: %s	Asociar A: %s
  Emulaciones admitidas:
  no hay opciones específicas de emulación.
 se omitieron desbordamientos de reubicación adicionales de la salida
 dirección de carga 0x%V reubicación truncada para ajustar: %s contra `%pT' reubicación truncada para ajustar: %s contra el símbolo `%pT' definido en la sección %pA en %pB reubicación truncada para ajustar: %s contra el símbolo `%pT' sin definir%8x algo más
%P: %C: aviso: definiciones múltiples de `%pT'%P: %D: aviso: más referencias a `%pT' sin definir a continuación
%P: %H: no se puede obtener el contenido de la sección - excepción de auto-importación
%P: %H: aviso: referencia a `%pT' sin definir
%P: %pA usa tanto secciones ordenadas como desordenadas
%P: %pB y %pB: aviso: common múltiple de `%pT'
%P: %pB: --just-symbols no se puede utilizar en DSO
%P: %pB: versión ABI de los ficheros objeto discordantes
%P: %pB: Conjuntos de instrucciones de los ficheros objeto incompatibles
%P: %pB: todos los objetos de entrada deben ser COFF o ELF para --embedded-relocs
%P: %pB: todos los objetos de entrada deben ser ELF para --embedded-relocs
%P: %pB: bfd_elf_get_bfd_needed_list falló: %E
%P: %pB: falló bfd_stat: %E
%P: %pB: no se puede crear la sección .emreloc: %E
%P: %pB: no se puede leer el contenido de la sección %pA: %E
%P: %pB: no se puede leer el contenido de la sección .idata: %E
%P: %pB: no se puede leer el contenido de la sección .note: %E
%P: %pB: no se puede leer el contenido de la sección %pA
%P: %pB: no se pueden leer las reubicaciones: %E
%P: %pB: no se pueden leer símbolos: %E
%P: %pB: definición de %s
%P: %pB: error al añadir símbolos: %E
%P: %pB: no se reconoce el fichero: %E
%P: %pB: no se reconoce el fichero: %E; formatos coincidentes:%P: %pB: el miembro %pB en el archivo no es un objeto
%P: %pB: referencia a %s
%P %pB: símbolo `%s' definición: %s, visibilidad: %s, resolución: %s
%P: %pB: aviso: no se puede analizar la sección .xtensa.info
%P: %pB: aviso: el common de `%pT' se sobrepasa por definición
%P: %pB: aviso: el common de `%pT' se sobrepasa por definición desde %pB
%P: %pB: aviso: el common de `%pT' se sobrepasa con un common más grande
%P: %pB: aviso: el common de `%pT' se sobrepasa con un common más grande desde %pB
%P: %pB: aviso: el common de `%pT' se sobrepasa con un common más pequeño
%P: %pB: aviso: el common de `%pT' se sobrepasa con un common más pequeño desde %pB
%P: %pB: aviso: la definición de `%pT' se impone a common
%P: %pB: aviso: la definición de `%pT' se impone a common desde %pB
%P: %pB: aviso: se ha detectado .note del stack QNX duplicada
%P: %pB: aviso: configuración Xtensa incompatible (%s)
%P: %pB: aviso: más referencias a `%pT' sin definir a continuación
%P: %pB: aviso: common múltiple de `%pT'
%P: %pB: aviso: referencia a `%pT' sin definir
%P: no se puede encontrar %s para insert
%P: %s: no se puede hacer el fichero objeto: %E
%P: %s: no se puede establecer la arquitectura: %E
%P: %s: no se puede abrir para escritura: %E
%P: %s: no se puede abrir: %E
%P: %s: no se puede establecer la dirección de inicio
%P: %s: plugin duplicado
%P: %s: error en la limpieza de plugin: %d (se descarta)
%P: %s: error al cargar el plugin: %s
%P: %s: falló el cerrado final: %E
%P: %s: falta el argumento
%P: %s: ¡símbolo que no es ELF en el BFD ELF!
%P: %s: no es un fichero reubicable: %E
%P: %s: error en el plugin: %d
%P: %s: el plugin reportó error después de leer todos los símbolos
%P: %s: el plugin reportó error al reclamar el fichero
%P: %s: la tabla de símbolos de plugin está corrupta (tipo de símbolo %d)
%P: falta *(%s$) en el «script» del enlazador 
%P: --auto-overlay ignorada con script de recubrimientos de usuario
%P: --auto-overlay descartado con rango de almacenamiento local cero
%P: --code-region requiere un argumento: {upper,lower,either,none}
%P: --compress-debug-sections=zstd: ld no está construido con soporte para zstd
%P: --data-region requiere un argumento: {upper,lower,either,none}
%P: --gc-sections requiere de una raíz de símbolos definida mediante -e o -u
%P: --mbaseline ya no se utiliza
%P: no se puede usar --no-define-common sin -shared
%P: --relax-[no-]reduce-fp-updat ya no se utiliza
%P: no se puede usar -F sin -shared
%P: no se puede usar -f sin -shared
%P: no se admite -pie
%P: no se pueden usar juntos -r y %s
%P: no se pueden usar juntos -r y -z numcabecerasección
%P: no se admite -shared
%P: los fragmentos .init/.fini utilizan punteros TOC que difieren
%P: Se va a ejecutar el script '%s' de manejo de errores con los argumentos: '%s' '%s'
%P: error del frente trasero de BFD: no se admite BFD_RELOC_CTOR
%P: símbolo CodeView S_GPROC32_ID/S_LPROC32_ID hace referencia un tipo desconocido como ID
%P: símbolo CodeView referencia tipo fuera de rango %v
%P: el tipo CodeView %v hace referencia a otro tipo %v no declarado todavía
%P: el tipo CodeView %v hace referencia al tipo tipo fuera de rango %v
%P: Error: no se puede desambiguar: %s (¿quiso decir -%s ?)
%P: Falló al crear la tabla de dispersión
%P: No se ha podido ejecutar el script '%s' de manejo de errores, motivo: %P: La sección de salida `%pA' no es suficientemente grande para la sección `%pA' de stubs creada para el enlazador.
%P: operaciones PE en un fichero que no es PE
%P: No está admitido relajar con --enable-non-contiguous-regions (la sección `%pA' se solaparía con `%pA' tras cambiar de tamaño).
%P: No se admite relajar con --enable-non-contiguous-regions.
%P: SONAME no debe ser una cadena vacía: se descarta
%P: SONAME no debe ser una cadena vacía: se conserva la anterior
%P: Aviso: la agrupación de opciones abreviadas en la línea de órdenes es obsoleta: %s
%P `-retain-symbols-file' se impone a `-s' y `-S'
%P: se intentó el enlazado estático del objeto dinámico `%s'
%P: opción --ctf-share-types errónea: %s
%P: opción --unresolved-symbols errónea: %s
%P: opción -plugin-opt errónea
%P: reubicación de base para la sección «%s» por encima de la sección .reloc
%P: falló bfd_hash_allocate al crear el símbolo %s
%P: falló bfd_hash_lookup al crear el símbolo %s
%P: falló bfd_hash_lookup: %E
%P: falló bfd_hash_lookup para la inserción: %E
%P: falló bfd_hash_table_init: %E
%P: falló bfd_link_hash_lookup: %E
%P: falló bfd_link_hash_lookup: %E
%P: falló bfd_merge_sections: %E
%P: falló bfd_new_link_order: %E
%P: falló bfd_record_phdr: %E
%P: falló bfd_xcoff_export_symbol: %E
%P: falló bfd_xcoff_link_count_reloc: %E
%P: falló bfd_xcoff_link_record_set: %E
%P: la salida «big endian» no concuerda con la configuración Xtensa
%P: no se puede crear BFD %E
%P: no se puede crear BFD: %E
%P: no se puede crear la tabla de dispersión: %E
%P: no se puede crear stub BFD: %E
%P: no se puede inicializar BFD: %E
%P: no se puede abrir el script: %E
%P: no se pueden finalizar los registros globales asignados por el enlazador
%P: no se puede encontrar %pA en la sección de salida
%P: no se puede encontrar la sección de salida %pA
%P: no se puede encontrar la sección de salida requerida %s
%P: no se puede abrir el fichero por defecto de salida %s
%P: no se puede relajar la sección: %E
%P: no se puede establecer la dirección de inicio
%P: no se puede crear la sección .note en el stub BFD.
%P: no se puede crear el nombre de sección dividida para %s
%P: no se puede extraer la sección de solo objeto de %B: %E
%P: no se puede encontrar %s (%s): %E
%P: no se puede encontrar %s dentro de %s
%P: no se puede encontrar %s: %E
%P: no se puede abrir %s
%P: no se puede abrir el fichero base %s
%P: no se puede abrir el fichero de dependencias %s: %E
%P: no se puede abrir el fichero de guión del enlazador %s: %E
%P: no se puede encontrar el fichero de mapeo %s: %E
%P: no se puede abrir el fichero de salida %s: %E
%P: no se pueden realizar operaciones PE en el fichero de salida '%pB' que no es PE
%P: no se puede leer %s
%P: no se puede representar la máquina `%s'
%P: no se puede el estado del fichero de mapa del enlazador: %E
%P: no se puede usar el fichero ejecutable '%pB' como entrada de un enlace
%P: falló la clonación de la sección: %E
%P: tamaño de página común (0x%v) > tamaño máximo de página (0x%v)
%P: descripciones de marcos compactos incompatibles DWARF2 .eh_frame desde %pB
%P: copy_section: %s: %s
%P: no se puede crear el bfd IR dummy: %E
%P: no se puede definir el símbolo común `%pT': %E
%P: no se puede analizar la ruta de importación: %E
%P: no se admite el enlazamiento con «endian» cruzado para %pB
%P: se desactiva la relajación: no funcionará con definiciones múltiples
%P: error al cerrar el fichero `%s'
%P: error al escribir el fichero `%s'
%P: error: --lazy-stack debe ir después de -zstack-size=<tamaño>
%P: error: nombre decorado con NULL para %s
%P: error: no se puede cambiar el formato de salida mientras se enlazan los binarios %s
%P: error: el fichero script del enlazador '%s' aparece varias veces
%P: aviso: no se especificó una región de memoria para la sección cargable `%s'
%P: error: no hay ninguna sección que se llame %s en el «script» del enlazador
%P: error: no hay ninguna sección que se llame %s o %s en el «script» del enlazador
%P: error: tamaño de declaración de datos no manejado
%P: no se reconoce el argumento de la opción --code-region=: "%s"
%P: no se reconoce el argumento de la opción --data-region=: "%s"
%P: error: no se reconoce la opción para --fix-cortex-a53-843419: %s
%P: error: no se admite la opción: %s
%P: se encontraron errores al procesar el fichero %s
%P: se encontraron errores al procesar el fichero %s para interoperabilidad
%P: falló la creación de la sección `%s': %E
%P: fallo al añadir la etiqueta dinámica DT_NEEDED
%P: no se ha podido la sección de solo objeto: %s
%P: fallo al añadir el fichero de reasignación %s
%P: fallo al crear la sección .note
%P: fallo al crear la sección .xtensa.info
%P: fallo al finalizar la salida con sección de solo objeto
%P: no se han podido diseñar las secciones dinámicas: %E
%P: fallo al analizar entradas de marco EH
%P: no se ha podido grabar la asignación a %s: %E
%P: fallo al renombrar la salida con sección de solo objeto
%P: no se han podido establecer los tamaños de las secciones dinámicas: %E
%P: no se han podido quitar las secciones dinámicas de tamaño cero
%P: error fatal: discordancia en ABI de libbfd
%P: falló el enlace final
%P: falló el enlace final: %E
%P: el grupo terminó antes de empezar (--help para modo de empleo)
%P: ¿ha instalado la versión estática de la biblioteca %s ?
%P: uso ilegal de la sección `%s'
%P: el fichero de entrada '%s' es el mismo que el de salida
%P: error interno %s %d
%P: error interno: se aborta en %s:%d
%P: error interno: se aborta en %s:%d en %s
%P: opción --compress-debug-sections no válida: `%s'
%P: --dsbt-index %d no válido, tamaño fuera de DSBT
%P: --dsbt-index no válido %s
%P: --dsbt-size no válido %s
%P: valor de --extra-stack-space no válido `%s'
%P: valor de --fixed-space no válido `%s'
%P: --line-size/--region-size no válido `%s'
%P: --line-size/--region-size no válido `%u'
%P: rango de direcciones --local-store no válido `%s'
%P: --num-lines/--num-regions no válido `%s'
%P --num-lines/--num-regions no válido `%u'
%P: --plt-align no válido `%s'
%P: argumento de --power10-stubs no válido `%s'
%P: valor de --reserved-space no válido `%s'
%P: objetivo BFD inválido `%s'
%P: versión no válida de formato COFF %s
%P: argumento inválido para la opción "--orphan-handling"
%P: argumento inválido para la opción "--section-start"
%P: argumento inválido para la opción --remap--inputs
%P: tamaño de memoria caché no válido: %s
%P: carácter inválido %c (%d) en los interruptores
%P: tamaño de página normal no válido `%s'
%P: opción de ordenado de sección común inválida: %s
%P: declaración de datos inválida
%P: estilo de hash no válido `%s'
%P: número hexadecimal `%s' inválido
%P: número hexadecimal inválido para el parámetro PE '%s'
%P: longitud no válida para la región de memoria %s
%P: tamaño de página máximo no válido `%s'
%P: número `%s' inválido
%P: número no válido para -z call-nop=prefix-: %s
%P: número no válido para -z call-nop=suffix-: %s
%P: origen no válido para -z cet-report=: %s
%P: opción no válida para -z isa-level-report=: %s
%P: opción no válida para -z lam-report=: %s
%P: opción no válida para -z lam-u48-report=: %s
%P: opción no válida para -z lam-u57-report=: %s
%P: origen no válido para la región de memoria %s
%P: tamaño de página no válido `%s'
%P: declaración de reubicación inválida
%P: opción de ordenado de sección inválida: %s
%P: tamaño de pila no válido `%s'
%P: tipo de subsistema %s inválido
%P: tipo no válido para la sección de salida `%s'
%P: visibilidad no válida en `-z %s', debe ser default, internal, hidden o protected%P: nivel ISA x86-64 inválido: %s
%P: se encontraron errores de enlace, se borra el ejecutable `%s'
%P: el fichero de mapa del enlazador no es un fichero normal
%P: la salida «little endian» no concuerda con la configuración Xtensa
%P: bucle en map_segments
%P: falló la asociación de secciones a segmentos: %E
%P: falta --end-group; añadida como última opción de la línea de órdenes
%P: falta el argumento para -m
%P: falta(n) argumento(s) para la opción "--section-start"
%P: falta el fichero para --mexport-symbols
%P: modo %s
%P: ficheros STARTUP múltiples
%P: ningún gestor de recubrimientos incorporado
%P: no se ha proporcionado nombre de fichero/directorio para la salida de mapas; se hace caso omiso
%P: no hay ficheros de entrada
%P: no se asignaron secciones a phdrs
%P: no se apiló («push») ningún estado con anterioridad a retirarlo («pop»)
%P: nótese para enlazar con %s utilizar -l:%s o renombrarlo a lib%s
%P: solo se permiten reubicaciones contra símbolos
%P: el formato de salida %s no puede representar la sección llamada %s: %E
%P: por favor reporte este error
%P: plugin no pudo asignar memoria para entrada: %s
%P: plugin_strdup no pudo asignar memoria: %s
%P: no se admite el enlazado reubicable con reubicaciones del formato %s (%pB) al formato %s (%pB)
%P: la sección %s tiene un '$' como primer carácter
%P: setup_section: %s: %s
%P: se salta el %s incompatible mientras se busca %s
%P: información hexadecimal extraña para el parámetro PE '%s'
%P: falta el símbolo `%pT' de la tabla principal de dispersión
%P: no se encontró el objetivo %s
%P: no se puede abrir para el destino de la copia `%s'
%P: no se puede abrir para la fuente de la copia `%s'
%P: ¡visibilidad de símbolo ELF desconocida: %d!
%P: estilo de desenredo `%s' desconocido
%P: tipo de formato %s desconocido
%P: no se reconoce el modo de emulación: %s
%P: no se reconoce la opción %s
%P: no se reconoce el argumento --got '%s'
%P: no se reconoce la opción -a `%s'
%P: no se reconoce la opción -assert `%s'
%P: no se reconoce el tipo de corrección STM32L4XX '%s'
%P: no se reconoce el tipo de corrección VFP11 '%s'
%P: no se reconoce la opción `%s'
%P: no se admite el tamaño de fichero de entrada: %s (%ld bytes)
%P: no se admite la opción: -z %s
%P: use la opción --help para información de modo de empleo
%P: argumentos válidos para --mhyper-relax=(low|medium|high)
%P: aviso, EXPORT duplicado: %s
%P: aviso, alineación del fichero > alineación de la sección
%P: aviso: %P: aviso: %s contiene secciones de salida. ¿Olvidó -T?
%P: aviso: se descarta %s
%P: aviso: %s, necesario para %pB, podría entrar en conflicto con %s
%P: aviso: %s, necesario para %pB, no se ha encontrado (pruebe utilizando -rpath o -rpath-link)
%P: aviso: '--thumb-entry %s' se impone a '-e %s'
%P: aviso: --enable-non-contiguous-regions descarta la sección `%pA' desde `%pB'
%P: aviso: --export-dynamic no se admite para objetivos PE, ¿quiso decir --export-all-symbols?
%P: aviso: --export-dynamic no se admite para objetivos PE+, ¿quiso decir --export-all-symbols?
%P: aviso: --package-metadata está vacío; se descarta
%P: aviso: --package-metadata=%s no contiene JSON válido; se descarta: %s
%P: aviso: se descarta la sección .buildid, se descarta --build-id
%P: aviso: se descarta la sección .note.gnu.build-id, se descarta --build-id
%P: aviso: se descarta la sección .note.package; se descarta --package-metadata
%P: aviso: enlazado CTF fallido; la salida no tendrá ninguna sección CTF: %s
%P: aviso: salida CTF no creada: `%s'
%P: aviso: emisión de sección CTF fallida; la salida no tendrá ninguna sección CTF: %s
%P: aviso: sección CTF en %pB no puede enlazarse: `%s'
%P: aviso: sección CTF en %pB no enlazable: %P se construyó sin soporte para CTF
%P: aviso: sección CTF en %pB no cargada: sus tipos serán descartados: %s
%P: aviso: la asociación CFT strtab ha fallado; las cadenas no van a compartirse: %s
%P: aviso: la adición de símbolos CTF ha fallado; CTF no estará vinculado a símbolos: %s
%P: aviso: la remodelación de símbolos CTF ha fallado; CTF no estará vinculado a símbolos: %s
%P: aviso: el registro LF_UDT_SRC_LINE de tipo CodeView apunta a un tipo de registro desconocido
%P: aviso: el registro LF_UDT_SRC_LINE de tipo CodeView hace referencia a la cadena desconocida %v
%P: aviso: el registro LF_UDT_SRC_LINE de tipo CodeView hace referencia al tipo desconocido %v
%P: aviso: la dirección de `%s' no es un múltiplo del tamaño máximo de página
%P: aviso: la importación automática se activó sin especificar --enable-auto-import en la línea de órdenes.
Esto debe funcionar a menos que involucre estructuras de datos constantes que referencíen símbolos de DLLs auto-importadas
%P: aviso: número de versión erróneo en la opción -subsystem
%P: aviso: no se puede crear la sección .buildid, se descarta --build-id
%P: aviso: no se puede crear la sección .eh_frame_hdr, se descarta --eh-frame-hdr.
%P: aviso: no se puede crear la sección .note.gnu.build-id, se descarta --build-id
%P: aviso: no se puede crear la sección .note.package; se descarta --package-metadata
%P: aviso: no se puede crear el flujo /names en el fichero PDB: %E
%P: aviso: no se puede crear el flujo DBI en el fichero PDB: %E
%P: aviso: no se puede crear el flujo IPI en el fichero PDB: %E
%P: no se puede crear el fichero PDB: %E
%P: aviso: no se puede crear el flujo TPI en el fichero PDB: %E
%P: aviso: no se puede crear el flujo info en el fichero PDB: %E
%P: aviso: no se puede crear el flujoa del directorio antiguo en el fichero PDB: %E
%P: aviso: no se puede crear el flujo de públicos en el fichero PDB
%P: aviso: no se puede crear el flujo de cabecera de sección en el fichero PDB: %E
%P: aviso: no se puede crear el flujo de registro de símbolo en el fichero PDB: %E
%P: aviso: no se puede encontrar el símbolo de entrada %s; se usa por defecto %V
%P: aviso: no se puede encontrar el símbolo de entrada %s; no se establece la dirección de inicio
%P: aviso: no se puede encontrar el símbolo de inicio thumb %s
%P: aviso: no se puede rellenar el flujo DBI en el fichero PDB: %E
%P: aviso: no se puede rellenar el flujo IPI en el fichero PDB: %E
%P: aviso: no se puede rellenar el flujo TPI en el fichero PDB: %E
%P: aviso: no se puede rellenar el flujo info en el fichero PDB: %E
%P: aviso: no se puede rellenar el flujo de nombres en el fichero PDB: %E
%P: aviso: no se puede rellenar el flujo de públicos en el fichero PDB
%P: aviso: no se puede encontrar ningún objetivo que coincida con los requerimientos de `endianez'
%P: aviso: no se ha podido encontrar el final del registro S_BLOCK32
%P: aviso: no se ha podido encontrar el final del registro S_GPROC32/S_LPROC32
%P: aviso: no se ha podido encontrar el final del registro S_INLINESITE
%P: aviso: no se ha podido encontrar el final del registro S_THUNK32
%P: aviso: el punto se movió hacia atrás antes de `%s'
%P: aviso: registro LF_UDT_MOD_SRC_LINE de tipo CodeView duplicado
%P: aviso: no se ha podido convertir la tabla de %s en %pB (%s); el desensamblaje subsiguiente puede estar incompleto
%P: aviso: se usó el constructor global %s
%P: aviso: se descartal número -D no válido %s
%P: aviso: se descartal número -H no válido %s
%P: aviso: se descartal número -bmaxdata no válido %s
%P: aviso: se descartal número -bmaxstack no válido %s
%P: aviso: se descartal número -pD no válido %s
%P: aviso: se descartal número -pT no válido %s
%P: aviso: se descartal tipo de módulo no válido %s
%P: aviso: registro LF_METHODLIST de tipo CodeView truncado
%P: aviso: nombre de LF_CLASS/LF_STRUCTURE sin cero final
%P: aviso: nombre de LF_ENUM sin cero final
%P: aviso: nombre de LF_ENUMERATE sin cero final
%P: aviso: nombre de LF_MEMBER sin cero final
%P: aviso: nombre de LF_METHOD sin cero final
%P: aviso: nombre de LF_NESTTYPE sin cero final
%P: aviso: nombre de LF_ONEMETHOD sin cero final
%P: aviso: nombre de LF_STMEMBER sin cero final
%P: aviso: nombre de LF_UNION sin cero final
%P: aviso: el nombre de S_CONSTANT no tiene cero final
%P: aviso: el nombre de S_GPROC32/S_LPROC32 no tiene cero final
%P: aviso: el nombre de S_LDATA32/S_GDATA32/S_LTHREAD32/S_GTHREAD32 no tiene cero final
%P: aviso: el nombre de S_UDT no tiene cero final
%P: aviso: no se especificó una región de memoria para la sección cargable `%s'
%P: aviso: la sección huérfana `%pA' de `%pB' se está colocando en la sección `%s'
%P: aviso: se sobreescribe el nombre decorado %s con %s
%P: aviso: se resuelve %s al enlazar con %s
%P: aviso: el fichero de ordenado de secciones ha cambiado.  Se descarta la definición anterior
%P: aviso: el inicio de la sección %s se ha cambiado por %ld
%P: aviso: cadena de LF_FUNC_ID sin cero final
%P: aviso: cadena de LF_MFUNC_ID sin cero final
%P: aviso: cadena de LF_STRING_ID sin cero final
%P: aviso: el tamaño de la región de memoria de la 'ventana' no es potencia de 2; se trunca su tamaño %d a %d
%P: aviso: registro CodeView S_BLOCK32 truncado
%P: aviso: registro CodeView S_BPREL32 truncado
%P: aviso: registro CodeView S_BUILDINFO truncado
%P: aviso: registro CodeView S_CONSTANT truncado
%P: aviso: registro CodeView truncado S_GPROC32/S_LPROC32
%P: aviso: registro CodeView S_HEAPALLOCSITE truncado
%P: aviso: registro CodeView S_INLINESITE truncado
%P: aviso: registro CodeView truncado S_LDATA32/S_GDATA32/S_LTHREAD32/S_GTHREAD32
%P: aviso: registro CodeView S_LDATA32/S_LTHREAD32 truncado
%P: aviso: registro CodeView S_LOCAL truncado
%P: aviso: registro CodeView S_REGISTER truncado
%P: aviso: registro CodeView S_REGREL32 truncado
%P: aviso: registro CodeView S_THUNK32 truncado
%P: aviso: registro CodeView S_UDT truncado
%P: aviso: registro LF_ARGLIST de tipo CodeView truncado
%P: aviso: registro LF_ARRAY de tipo CodeView truncado
%P: aviso: registro LF_BCLASS de tipo CodeView truncado
%P: aviso: registro LF_BITFIELD de tipo CodeView truncado
%P: aviso: registro LF_BUILDINFO de tipo CodeView truncado
%P: aviso: registro LF_CLASS/LF_STRUCTURE de tipo CodeView truncado
%P: aviso: registro LF_ENUM de tipo CodeView truncado
%P: aviso: registro LF_ENUMERATE de tipo CodeView truncado
%P: aviso: registro LF_FIELDLIST de tipo CodeView truncado
%P: aviso: registro LF_FUNC_ID de tipo CodeView truncado
%P: aviso: registro LF_INDEX de tipo CodeView truncado
%P: aviso: registro LF_MEMBER de tipo CodeView truncado
%P: aviso: registro LF_METHOD de tipo CodeView truncado
%P: aviso: registro LF_METHODLIST de tipo CodeView truncado
%P: aviso: registro LF_MFUNCTION de tipo CodeView truncado
%P: aviso: registro LF_MFUNC_ID de tipo CodeView truncado
%P: aviso: registro LF_MODIFIER de tipo CodeView truncado
%P: aviso: registro LF_NESTTYPE de tipo CodeView truncado
%P: aviso: registro LF_ONEMETHOD de tipo CodeView truncado
%P: aviso: registro LF_POINTER de tipo CodeView truncado
%P: aviso: registro LF_PROCEDURE de tipo CodeView truncado
%P: aviso: registro LF_STMEMBER de tipo CodeView truncado
%P: aviso: registro LF_STRING_ID de tipo CodeView truncado
%P: aviso: registro LF_SUBSTR_LIST de tipo CodeView truncado
%P: aviso: registro CodeView LF_UDT_SRC_LINE truncado
%P: aviso: registro LF_UNION de tipo CodeView truncado
%P: aviso: registro LF_VBCLASS/LF_IVBCLASS de tipo CodeView truncado
%P: aviso: registro LF_VFTABLE de tipo CodeView truncado
%P: aviso: registro LF_VFUNCTAB de tipo CodeView truncado
%P: aviso: registro CodeView DEBUG_S_INLINEELINES truncado
%P: aviso: no se puede obtener la ruta completa de PDB
%P: aviso: no se puede obtener el nombre del programa
%P: aviso: no se puede obtener el directorio de trabajo
%P: aviso: registro %v de comienzo de alcance CodeView inesperado
%P: aviso: registro CodeView DEBUG_S_INLINEELINES truncado
%P: aviso: tipo %v no manejado en LF_BCLASS
%P: aviso: tipo %v no manejado en LF_CLASS/LF_STRUCTURE
%P: aviso: tipo %v no manejado en LF_ENUMERATE
%P: aviso: tipo %v no manejado en LF_MEMBER
%P: aviso: tipo %v no manejado en LF_UNION
%P: aviso: tipo %v no manejado en LF_VBCLASS/LF_IVBCLASS
%P: aviso: tipo %v no manejado en S_CONSTANT
%P: aviso: nombre único de LF_CLASS/LF_STRUCTURE sin cero final
%P: aviso: nombre único de LF_ENUM sin cero final
%P: aviso: nombre único de LF_UNION sin cero final
%P: aviso: se descarta estilo --build-id no reconocido
%P: aviso: registro %v CodeView no reconocido
%P: aviso: subtipo CodeView %v no reconocido
%P: aviso: tipo CodeView %v no reconocido
%P:%pS %% por cero
%P:%pS / por cero
%P:%pS asignación al contador de ubicación inválida fuera de SECTIONS
%P:%pS no se puede hacer una asignación PROVIDE al contador de ubicación
%P:%pS no se puede mover el contador de ubicación hacia atrás (de %V a %V)
%P:%pS asignación inválida al contador de ubicación
%P:%pS: aviso: alias para la región de memoria por defecto
%P:%pS: error: se especificó alineamiento con la entrada y alineamiento explícito
%P:%pS: aviso: no existe la región de memoria `%s' para el alias `%s'
%P:%pS: error: la sección de salida '%s' debe existir de antemano
%P:%pS: aviso: redefinición del alias de la región de memoria '%s'
%P:%pS: expresión de dirección de referencia hacia adelante o no constante para la sección %s
%P:%pS: la expresión no es constante para %s
%P:%pS: se referencía la región MEMORY sin definir `%s' en la expresión
%P:%pS: se referencía la sección sin definir `%s' en la expresión
%P:%pS: se referencía el símbolo sin definir `%s' en la expresión
%P:%pS: se referencía la constante desconocida `%s' en la expresión
%P:%pS: aviso: --enable-non-contiguous-regions hace que la sección `%pA' desde '%pB' coincida con la cláusula /DISCARD/.
%P:%pS: aviso: --enable-non-contiguous-regions puede alterar el comportamiento de la sección `%pA' desde '%pB' (asignado a %pA, pero hay otra coincidencia: %pA)
%P:%pS: aviso: no se declaró la región de memoria `%s'
%P:%pS: aviso: redeclaración de la región de memoria `%s'
%P:%s%d: aviso: error de sintaxis en fichero de importación/exportación
%P:%s: no se puede abrir la salida de solo objeto: %E
%P:%s: no se puede hacer stat de la salida de solo objeto: %E
%P:%s: falló el cerrado final de la salida de solo objeto: %E
%P:%s: falló la creación de la dispersión
%P:%s: fallo al leer la salida de solo objeto: %E
%P:%s:%d: #! ([miembro]) no se admite en ficheros de importación
%P:%s:%d: aviso: se descarta la línea última inacabada
%P:%s:%d: aviso: error de sintaxis en fichero de importación
%P:%s:%d: aviso: error de sintaxis en fichero de importación/exportación
%W (tamaño antes de la relajación)
%X%H: reubicación peligrosa: %s
%X%H: la reubicación se refiere al símbolo `%pT', el cual no se muestra
%X%P: %C: definiciones múltiples de `%pT'%X%P: %D: más referencias a `%pT' sin definir a continuación
%X%P: %H: referencia cruzada prohibida de %s a `%pT' en %s
%X%P: %H: referencia a `%pT' sin definir
%X%P: %H: no se puede auto-importar la variable '%pT'. Por favor, lea la documentación de --enable-auto-import de ld para más detalles
%X%P: %pA sobrepasa el rango de almacenamiento local
%X%P: la sección %pB `%s' no cabe en la región `%s'
%X%P: %pB: no se puede crear información de reubicación para tiempo de ejecución: %E
%X%P: %pB: no se puede crear información de reubicación para tiempo de ejecución: %s
%X%P: %pB: más referencias a `%pT' sin definir a continuación
%X%P: %pB: la sección %s tiene reubicaciones; no se puede utilizar --embedded-relocs
%X%P: %pB: referencia a `%pT' sin definir
%X%P: la arquitectura %s del fichero de entrada `%pB' es incompatible con la salida %s
%X%P: %s no se admite la reubicación %s para el conjunto %s
%X%P: %s(%s): no se puede encontrar el miembro en el archivo%X%P: %s(%s): no se puede encontrar el miembro en un fichero que no es archivo%X%P: %s: no parece que esto sea una DLL
%X%P: --hash-size necesita un argumento numérico
%X%P: edición de .eh_frame/.stab: %E
%X%P: TLS problema %E
%X%P: añade los símbolos %s: %E
%X%P: la dirección 0x%v de la sección %pB %s no está dentro de la región `%s'
%X%P: la marca de versión anónima no se puede combinar con otras marcas de versión
%X%P: falló bfd_hash_table_init de la tabla cref: %E
%X%P: bfd_openr %s: %E
%X%P: no se pueden construir los stubs: %E
%X%P: no se puede crear la sección .edata: %E
%X%P: no se puede crear la sección .reloc: %E
%X%P: no se puede crear la sección de notas: %E
%X%P: no se puede crear stub BFD: %E
%X%P: no se puede editar%s: %E
%X%P: no se pueden encontrar recubrimientos: %E
%X%P: no se puede cargar el gestor de recubrimientos incorporado: %E
%X%P: no se puede crear la sección stub: %E
%X%P: no se puede abrir el gestor de recubrimientos incorporado: %E
%X%P: no se puede establecer gp
%X%P: no se puede configurar la lista de secciones de entrada: %E
%X%P: no se pueden dimensionar las secciones de grupos: %E
%X%P: no se puede calcular tamaño de stubs de recubrimientos: %E
%X%P: no se puede medir la sección de stub: %E
%X%P: no se pueden dimensionar las secciones stub: %E
%X%P: no se puede abrir el fichero .lib: %s
%X%P: no se puede establecer el objetivo BFD por defecto a `%s': %E
%X%P: no se pueden construir los stubs: %E
%X%P: no se pueden crear secciones dinámicas %E
%X%P: no se puede exportar %s: nombre de exportación inválido
%X%P: no se puede exportar %s: símbolo sin definir
%X%P: no se puede exportar %s: no se encuentra el símbolo
%X%P: no se puede exportar %s: tipo erróneo del símbolo (%d vs %d)
%X%P: no se puede medir la sección de stub: %E
%X%P: no se puede cambiar el formato de salida mientras se enlaza
%X%P: no se han podido calcular las listas para la generación de stub: %E
%X%P: falló la reubicación cref: %E
%X%P: falló cref_hash_lookup: %E
%X%P: formatos diferentes de fichero objeto componen al conjunto %s
%X%P: se usaron diferentes reubicaciones en el conjunto %s
%X%P: expresión `%s' duplicada en la información de la versión
%X%P: marca de versión `%s' duplicada
%X%P: secciones dinámicas creadas en enlace no dinámico
%X%P: error, EXPORT duplicado con ordinales: %s (%d vs %d)
%X%P: error: %X%P: error: reubicación de %d-bit en la dll
%X%P: error: no se pueden usar nombres de sección largos en esta arquitectura
%X%P: error: fichero de símbolos a retener duplicado
%X%P: error: exportación de ordinal demasiado grande: %d
%X%P: error, ordinal utilizado dos veces: %d (%s vs %s)
%X%P: error: sección huérfana no colocada `%pA' de `%pB'
%X%P: error: no se reconoce el valor '-z %s'
%X%P: falló la mezcla de datos específicos de objetivo del fichero %pB
%X%P: PLT en línea: %E
%X%P: error interno en la sección de biblioteca compartida COFF %s
%X%P: problemas internos explorando %pB después de abrirlo%X%P: problemas internos configurando la sección %s%X%P: el «script» de enlazamiento separa .got y .toc
%X%P: abre %s: %E
%X%P: ppc_finish_symbols problema %E
%X%P: la región `%s' se desborda por %lu byte
%X%P: la región `%s' se desborda por %lu bytes
%X%P: símbolo requerido `%s' sin definir
%X%P: la LMA de la sección %s [%V,%V] se solapa con la LMA de la sección %s [%V,%V]
%X%P: La VMA de la sección %s da la vuelta alrededor del espacio de direcciones
%X%P: la VMA de la sección %s [%V,%V] se solapa con la VMA de la sección %s [%V,%V]
%X%P: la VMA de la sección %s da la vuelta alrededor del espacio de direcciones
%X%P: se asignó la sección `%s' al phdr que no existe `%s'
%X%P: select_plt_layout problema %E
%X%P: la sección especial %s no admite la reubicación %s para el conjunto %s
%X%P: demasiados registros globales: %u, máx 223
%X%P: no se puede encontrar la dependencia de versión `%s'
%X%P: no se pueden procesar las reubicaciones: %E
%X%P: no se pueden leer los contenidos de la sección .exports
%X%P: opción `%s' desconocida
%X%P: lenguaje `%s' desconocido en la información de la versión
%X%P: no se admite la arquitectura PEI: %s
%X%P: no se admite el tamaño %d para el conjunto %s
%X%P:%pS: no se admiten PHDRS y FILEHDR cuando los encabezados PT_LOAD previso no los tienen
%X%P:%pS: la sección tiene tanto una dirección de carga como una región de carga
%X%P:%pS: se referencía el símbolo sin resolución `%s' en la expresión
%X%P:%s:%d: fallo al importar el símbolo %s: %E
%pB: en la función `%pT':
%pS se descarta HLL
%pS se descarta SYSLIB
%s necesario para %pB
%s: %s
%s: opciones específicas de emulación:
%s: emulaciones admitidas: %s: objetivos admitidos:%s: tiempo total de enlazado: %ld.%06ld
:%P: no se admite -pie
; %D: primero se definió aquí; no hay contenido disponible
<descartar><sin plugin>=MODODIRECCIÓNARQARGAcepta ficheros de entrada cuya arquitectura no se pueda determinarAgrega el DIRECTORIO a la ruta de búsqueda de bibliotecasAgrega símbolos de datos a la lista dinámicaLa dirección de la sección %s se estableció a Permite definiciones múltiplesPermite versiones sin definirPermite referencias sin resolver en bibliotecas compartidasSiempre establece DT_NEEDED para las bibliotecas dinámicas
                                mencionadas en la línea de órdenesSe incluyó el miembro del archivo para satisfacer referencia por fichero (símbolo)

AtributosFiltro auxiliar para la tabla de símbolos de objetos compartidosAsocia localmente las referencias a función globalesAsocia localmente las referencias globlalesConstruye tablas globales de constructores/destructoresCUENTAerror CTFerror CTF: no se pueedn obtener errores CTF: `%s'
aviso CTFLlama al SÍMBOLO al momento de cargarLlama al SÍMBOLO al momento de descargarRevisa las direcciones de las secciones por traslapes (por defecto)Símbolo común       tamaño            fichero

Controla cómo manejar las secciones huérfanasCopia los enlaces DT_NEEDED mencionados dentro de los DSOs a continuaciónCopyright (C) 2025 Free Software Foundation, Inc.
Crea un ejecutable dependiente de posición (por defecto)Crea un ejecutable independiente de posiciónCrea una biblioteca compartidaCrea un fichero de salida aún si ocurren erroresCrea la versión de símbolo por defectoCrea la versión de símbolo por defecto para símbolos importadosSe crea el fichero de biblioteca: %s
DIRECTORIORuta de búsqueda por defecto para compatibilidad con SolarisDefine un símboloDesenreda los nombres de los símbolos [utilizando el ESTILO]Desactiva la directiva de script de enlazado LINKER_VERSIONNo permite versiones sin definirDescarta todos los símbolos localesDescarta los símbolos locales temporales (opción predefinida)Muestra las opciones específicas del objetivoNo permite definiciones múltiples con símbolos incluidos en el nombre
                                de fichero invocado por -R o --just-symbolsNo permite referencias sin resolver en ficheros objetoNo permite referencias sin resolver en bibliotecas compartidasNo revisa las direcciones de las secciones por traslapesNo copia los enlaces DT_NEEDED mencionados dentro de los DSOs a continuaciónNo define almacenamiento CommonNo desenreda los nombres de los símbolosNo muestra mensajes de aviso ni errorNo emite nombres ni tipos de variables estáticas en CTFNo enlaza contra bibliotecas compartidasNo muestra las secciones sin uso eliminadasNo pagina los datos alineadosNo pagina los datos alineados, no hace el texto de sólo lecturaNo muestra las estadísticas de uso de recursosNo muestra secciones descartadas en la salida del fichero de mapaNo muestra los símbolos locales en la salida del fichero de mapa (opción predefinida)No descarta símbolos en las secciones descartadasNo trata los avisos como errores (por defecto)No utiliza técnicas de relajación para reducir el tamaño del códigoEnlaza a nivel de tareaNo asocia localmente las referencias globalesNo descarta ningún símbolo localNo mezcla secciones de entrada [SECCIÓN | huérfanas]No elimina las secciones sin uso (por defecto)No avisa sobre ficheros de entrada sin coincidenciaNo avisa al encontrar una biblioteca incompatibleEmulaciones ELF:
EMULACIÓNEmite nombres y tipos de variables estáticas en CTFActiva el que las regiones de memoria no contiguas sean permitidasActiva la directiva de script de enlazado LINKER_VERSIONActiva avisos cuando --enable-non-contiguous-regions puede provocar comportamiento inesperadoTermina un grupoExporta todos los símbolos dinámicosExporta el símbolo especificadoFICHEROFICHERO/DIRFICHEROFalló con %d
Fichero
Filtro para la tabla de símbolos de objetos compartidosFuerza que se definan los símbolos comunesFuerza la generación del fichero con sufijo .exeFuerza a los miembros de grupo a salir de los gruposGNU ld %s
Genera reubicaciones imbuídasGenera biblioteca de importaciónGenera salida reubicableCúantas marcas reserva en la sección .dynamicCómo manejar símbolos sin resolver. <método> es:
                                ignore-all, report-all, ignore-in-object-files,
                                ignore-in-shared-libsCómo compartir tipos CTF entre unidades de traducción.
                                <method> es: share-unconflicted (predefinido),
                                             share-duplicatedSe descartaSe descarta por compatibilidad con LTO de GCCSe descarta por compatibilidad con opción del enlazador de GCCSe descarta por compatibilidad con LinuxSe descarta por compatibilidad con SVR4Se descarta por compatibilidad con SunOSSe descarta por compatibilidad con opción oro de GCCIncluye todos los objetos de los siguientes ficherosInformación: se resuelve %s al enlazar con %s (auto-importación)
Sólo enlaza símbolos (si es un directorio, es igual que --rpath)PALABRA CLAVEMantiene los símbolos exportados cuando se quitan secciones sin usoConserva solamente los símbolos enlistados en el FICHERONOMBREBIBLongitudEnlaza contra bibliotecas compartidasEnlaza objetos big-endianEnlaza objetos little-endianMuestra las secciones sin uso eliminadas en la salida de error estándarCarga el plugin nombradoCarga el plugin  nombrado (ignorado)NombreNo hay símbolos
Ficheros de entrada solo objeto:
 Sólo establece DT_NEEDED para las siguientes bibliotecas dinámicas si se usanUtiliza solamente los directorios de bibliotecas
                                especificados en la línea de órdenesOptimiza la salida del ficheroOpciones:
OrigenMuestra la tabla de referencias cruzadasMuestra mucha información durante el enlaceSobreescribe la ubicación de sysroot por defectoRUTAPATRÓN=FICHEROPLUGINPROGRAMAPagina los datos alineados, hace el texto de sólo lecturaRetira («pop») el estado de los indicadores que gobiernan el manejo del fichero de entradaMuestra el sysroot actualMuestra el formato de salida por defectoMuestra el fichero mapa en la salida estándarMuestra la ayuda de opcionesMuestra las estadísticas de uso de recursosMuestra la información de la versión y de la emulaciónMuestra la información de la versiónProduce un ejecutable sin cabecera de intérprete de programaOfrece un script de ayuda para errores de símbolos indefinidosApila («push») el estado de los indicadores que gobiernan el manejo del fichero de entradaLee el guión del enlazador de formato MRILee el guión del enlazador por defectoLee la lista dinámicaLee la lista de los símbolos dinámicos exportadosLee el guión del enlazadorLee opciones del FICHERO
Lee la información de la versión del guiónReduce el tamaño del código usando optimizaciones específicas del objetivoReduce las saturaciones de memoria, tal vez tomando más tiempoRechaza ficheros de entrada cuya arquitectura es desconocidaElimina las secciones sin uso (en algunos objetivos)Reporte errores a %s
Informa sobre el uso de memoria del objetivoReporta símbolos sin resolver como erroresReporta símbolos sin resolver como avisosRequiere que se defina SÍMBOLO en la salida finalSCRIPTSECCIÓN=DIRECCIÓNBIBCOMPTAMAÑOSÍMBOLOSÍMBOLO=EXPRESIÓNBusca la biblioteca NOMBREBIBEnvía el argumento al último plugin cargadoEnvía el argumento al último plugin cargado (ignorado)Establece el PROGRAMA como el enlazador dinámico a utilizarEstablece la dirección de la sección .bssEstablece la dirección de la sección .dataEstablece la dirección de la sección .textEstablece la dirección del segmento de datos (ldata)Establece la dirección de la sección nombradaEstablece la dirección del segmento de datos de solo lecturaEstablece la dirección del segmento de textoEstablece la arquitecturaEstablece el tamaño de de la tabla de dispersión cercano al <NÚMERO>Establece la emulaciónEstablece la dirección base de la imagenEstablece el nombre interno de la biblioteca compartidaEstablece la ruta de búsqueda de bibliotecas compartidas en tiempo de enlaceEstablece el nombre del fichero de salidaEstablece la ruta de búsqueda de bibliotecas compartidas en tiempo de ejecuciónEstablece la dirección de inicioEstablece el tamaño máximo de caché en TAMAÑO bytesControl de biblioteca compartida para compatibilidad con HP/UXMuestra secciones descartadas en la salida del fichero de mapa (opción predefinida)Muestra los símbolos locales en la salida del fichero de mapaTamaño de los datos small (si no se especifica, es el mismo que --shared)Ordena los símbolos comunes por alineación [en orden específico]Ordena secciones por nombre o alineación máximaOrdena las secciones por instrucciones en FICHEROEspecifica el objetivo para los siguientes ficheros de entradaEspecifica el objetivo del fichero de salidaDivide las secciones de salida cada CUENTA reubicacionesDivide las secciones de salida cada TAMAÑO octetosInicia un grupoInicia con una referencia sin definir hacia el SÍMBOLOAlmacena los ficheros intermedios de «plugin» permanentementeDescarta todos los símbolosDescarta los símbolos de depuraciónDescarta símbolos en las secciones descartadasEmulaciones admitidas: SímboloOBJETIVOToma la lista de exportación de símbolos de .exports, usando
                                el SÍMBOLO como la versión.Este programa es software libre; se puede redistribuir bajo los términos de
la Licencia Pública General de GNU versión 3 o (a su elección) una versión
posterior.
Este programa no tiene absolutamente ninguna garantía.
Rastrea la apertura de ficherosRastrea las menciones del SÍMBOLOTrata los avisos como erroresApaga --whole-archiveDeshace el efecto de --export-dynamicSÍMBOLO no resuelto no provocará error ni avisoModo de empleo: %s [opciones] fichero...
Use --disable-stdcall-fixup para desactivar estas composturas
Use --enable-stdcall-fixup para desactivar estos avisos
Usa la lista dinámica de los operadores de C++ new/deleteUsa la lista dinámica de tipo de dato de C++Usa menos memoria y más E/S de discoUsa el mismo formato que el enlazador nativoUsa funciones de envoltura para el SÍMBOLOAVISO: ¡El dato no es fiable!
Avisa sobre símbolos comunes duplicadosAvisa si el objeto tiene código máquina ELF alternativoAvisa si se ven constructores/destructores globalesAvisa si la salida tiene DT_TEXTRELAvisa si la salida tiene DT_TEXTREL (lo predefinido)Avisa si el inicio de la sección cambia debido a la alineaciónAvisa si se usan valores múltiples de GPAvisa sólo una vez por cada símbolo sin definirEscribe un mapa de enlazador en FICHERO o DIR/<nombresalida>.mapEscribe el fichero de dependencias[=CUENTA][=NÚMERO][=SECCIÓN][=TAMAÑO][=ESTILO][=ascending|descending]alineaciónascendentefalló el intento de abrir %s
tuvo éxito el intento de abrir %s
guión interno del enlazadorno se puede crear la sección de solo objetono se puede establecer el tamaño de la sección de solo objetono se puede encontrar el fichero de guión %s
no se ha podido asignar el contenido de la secciónno se ha podido crear la nueva seccióndescendenteerror añadiendo section de solo objetoerror copiando  BFD privadoserror copiando datos de cabecera privadoserror copiando seccionesscript de manejo de erroreserror configurando seccionesfallo al copiar datos privadosfallo al crear la sección de salidafallo al leer el contenido de la secciónel fichero ya tiene tablas de propiedadesse ha encontrado %s en %s
nombrenombre|alineaciónno hay símbolofichero de guión %s abierto
sin memoriael contador de reubicaciones es negativoreasigna el fichero de entrada '%s' a '%s'
reasigna el fichero de entrada '%s' a '%s' basado en el patrón '%s'
borra el fichero de entrada '%s'
borra el fichero de entrada '%s' basado en el patrón '%s'
valor de tipo LTO desconocido %xvalor de resolución LTO desconocido %xvalor de visibilidad LTO desconocido %xno se reconoce o no se admite el «token» '%s' en la ruta de búsqueda
se usa el guión externo del enlazador: %sse usa el guión interno del enlazador:aviso: aviso: la sentencia INSERT en el script del enlazador es incompatible con --enable-non-contiguous-regions.
aviso: se resuelve %s al enlazar con %s