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 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517
|
# Spanish translation for ld.
# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2018, 2019, 2020, 2021 Free Software Foundation, Inc.
# This file is distributed under the same license as the binutils package.
# Cristian Othón Martínez Vera <cfuga@cfuga.mx>, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012.
# Antonio Ceballos Roa <aceballos@gmail.com>, 2018, 2019, 2020, 2021, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: ld 2.44.90\n"
"Report-Msgid-Bugs-To: https://sourceware.org/bugzilla/\n"
"POT-Creation-Date: 2025-07-13 08:53+0100\n"
"PO-Revision-Date: 2025-08-01 08:07+0200\n"
"Last-Translator: Antonio Ceballos Roa <aceballos@gmail.com>\n"
"Language-Team: Spanish <es@tp.org.es>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Bugs: Report translation errors to the Language-Team address.\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ldcref.c:170
msgid "%X%P: bfd_hash_table_init of cref table failed: %E\n"
msgstr "%X%P: falló bfd_hash_table_init de la tabla cref: %E\n"
#: ldcref.c:176
msgid "%X%P: cref_hash_lookup failed: %E\n"
msgstr "%X%P: falló cref_hash_lookup: %E\n"
#: ldcref.c:186
msgid "%X%P: cref alloc failed: %E\n"
msgstr "%X%P: falló la reubicación cref: %E\n"
#: ldcref.c:371
#, c-format
msgid ""
"\n"
"Cross Reference Table\n"
"\n"
msgstr ""
"\n"
"Tabla de Referencias Cruzadas\n"
"\n"
#: ldcref.c:372
msgid "Symbol"
msgstr "Símbolo"
#: ldcref.c:380
#, c-format
msgid "File\n"
msgstr "Fichero\n"
#: ldcref.c:384
#, c-format
msgid "No symbols\n"
msgstr "No hay símbolos\n"
#: ldcref.c:413 ldcref.c:565
msgid "%P: symbol `%pT' missing from main hash table\n"
msgstr "%P: falta el símbolo `%pT' de la tabla principal de dispersión\n"
#: ldcref.c:517 ldcref.c:628 ldmain.c:1733 ldmisc.c:320 pe-dll.c:783
#: pe-dll.c:1353 pe-dll.c:1474 pe-dll.c:1576 eaarch64pe.c:1580 earm64pe.c:1580
#: earm_wince_pe.c:1583 earm_wince_pe.c:1770 earmpe.c:1583 earmpe.c:1770
#: ei386pe.c:1583 ei386pe.c:1770 ei386pe_posix.c:1583 ei386pe_posix.c:1770
#: ei386pep.c:1580 emcorepe.c:1583 emcorepe.c:1770 eshpe.c:1583 eshpe.c:1770
msgid "%P: %pB: could not read symbols: %E\n"
msgstr "%P: %pB: no se pueden leer símbolos: %E\n"
#: ldcref.c:690 ldcref.c:697 ldmain.c:1795 ldmain.c:1802
msgid "%P: %pB: could not read relocs: %E\n"
msgstr "%P: %pB: no se pueden leer las reubicaciones: %E\n"
#. We found a reloc for the symbol. The symbol is defined
#. in OUTSECNAME. This reloc is from a section which is
#. mapped into a section from which references to OUTSECNAME
#. are prohibited. We must report an error.
#: ldcref.c:724
msgid "%X%P: %H: prohibited cross reference from %s to `%pT' in %s\n"
msgstr "%X%P: %H: referencia cruzada prohibida de %s a `%pT' en %s\n"
#: ldctor.c:85
msgid "%X%P: different relocs used in set %s\n"
msgstr "%X%P: se usaron diferentes reubicaciones en el conjunto %s\n"
#: ldctor.c:103
msgid "%X%P: different object file formats composing set %s\n"
msgstr "%X%P: formatos diferentes de fichero objeto componen al conjunto %s\n"
#: ldctor.c:279 ldctor.c:300
msgid "%X%P: %s does not support reloc %s for set %s\n"
msgstr "%X%P: %s no se admite la reubicación %s para el conjunto %s\n"
#: ldctor.c:295
msgid "%X%P: special section %s does not support reloc %s for set %s\n"
msgstr "%X%P: la sección especial %s no admite la reubicación %s para el conjunto %s\n"
#: ldctor.c:321
msgid "%X%P: unsupported size %d for set %s\n"
msgstr "%X%P: no se admite el tamaño %d para el conjunto %s\n"
#: ldctor.c:344
msgid ""
"\n"
"Set Symbol\n"
"\n"
msgstr ""
"\n"
"Conjunto Símbolo\n"
"\n"
#: ldelf.c:98
msgid "%P: common page size (0x%v) > maximum page size (0x%v)\n"
msgstr "%P: tamaño de página común (0x%v) > tamaño máximo de página (0x%v)\n"
#: ldelf.c:124
msgid "%P: %pB: --just-symbols may not be used on DSO\n"
msgstr "%P: %pB: --just-symbols no se puede utilizar en DSO\n"
#: ldelf.c:226 ldelf.c:372
msgid "%P: %pB: bfd_stat failed: %E\n"
msgstr "%P: %pB: falló bfd_stat: %E\n"
#: ldelf.c:267
msgid "%P: warning: %s, needed by %pB, may conflict with %s\n"
msgstr "%P: aviso: %s, necesario para %pB, podría entrar en conflicto con %s\n"
#: ldelf.c:287 ldfile.c:356
#, c-format
msgid "attempt to open %s failed\n"
msgstr "falló el intento de abrir %s\n"
#: ldelf.c:324
msgid "%P: %pB: bfd_elf_get_bfd_needed_list failed: %E\n"
msgstr "%P: %pB: bfd_elf_get_bfd_needed_list falló: %E\n"
#: ldelf.c:378
#, c-format
msgid "found %s at %s\n"
msgstr "se ha encontrado %s en %s\n"
#: ldelf.c:411 ldlang.c:3228 ldlang.c:3242 ldlang.c:11057
msgid "%P: %pB: error adding symbols: %E\n"
msgstr "%P: %pB: error al añadir símbolos: %E\n"
#. We only issue an "unrecognised" message in verbose mode
#. as the $<foo> token might be a legitimate component of
#. a path name in the target's file system.
#: ldelf.c:601
#, c-format
msgid "unrecognised or unsupported token '%s' in search path\n"
msgstr "no se reconoce o no se admite el «token» '%s' en la ruta de búsqueda\n"
#: ldelf.c:1084
#, c-format
msgid "%s needed by %pB\n"
msgstr "%s necesario para %pB\n"
#: ldelf.c:1193
msgid "%P: warning: %s, needed by %pB, not found (try using -rpath or -rpath-link)\n"
msgstr "%P: aviso: %s, necesario para %pB, no se ha encontrado (pruebe utilizando -rpath o -rpath-link)\n"
#: ldelf.c:1209
msgid "%P: failed to add DT_NEEDED dynamic tag\n"
msgstr "%P: fallo al añadir la etiqueta dinámica DT_NEEDED\n"
#: ldelf.c:1260
msgid "%P: %s: can't open for writing: %E\n"
msgstr "%P: %s: no se puede abrir para escritura: %E\n"
#: ldelf.c:1315
msgid "%P: cannot use executable file '%pB' as input to a link\n"
msgstr "%P: no se puede usar el fichero ejecutable '%pB' como entrada de un enlace\n"
#: ldelf.c:1369
msgid "%P: compact frame descriptions incompatible with DWARF2 .eh_frame from %pB\n"
msgstr "%P: descripciones de marcos compactos incompatibles DWARF2 .eh_frame desde %pB\n"
#: ldelf.c:1405
msgid "%P: warning: cannot create .eh_frame_hdr section, --eh-frame-hdr ignored\n"
msgstr "%P: aviso: no se puede crear la sección .eh_frame_hdr, se descarta --eh-frame-hdr.\n"
#: ldelf.c:1411
msgid "%P: failed to parse EH frame entries\n"
msgstr "%P: fallo al analizar entradas de marco EH\n"
#: ldelf.c:1453
msgid "%P: warning: .note.gnu.build-id section discarded, --build-id ignored\n"
msgstr "%P: aviso: se descarta la sección .note.gnu.build-id, se descarta --build-id\n"
#: ldelf.c:1503 eaarch64pe.c:1354 earm64pe.c:1354 earm_wince_pe.c:1339
#: earmpe.c:1339 ei386pe.c:1339 ei386pe_posix.c:1339 ei386pep.c:1354
#: emcorepe.c:1339 eshpe.c:1339
msgid "%P: warning: unrecognized --build-id style ignored\n"
msgstr "%P: aviso: se descarta estilo --build-id no reconocido\n"
#: ldelf.c:1522
msgid "%P: warning: cannot create .note.gnu.build-id section, --build-id ignored\n"
msgstr "%P: aviso: no se puede crear la sección .note.gnu.build-id, se descarta --build-id\n"
#: ldelf.c:1543
msgid "%P: warning: .note.package section discarded, --package-metadata ignored\n"
msgstr "%P: aviso: se descarta la sección .note.package; se descarta --package-metadata\n"
#: ldelf.c:1599
msgid "%P: warning: --package-metadata is empty, ignoring\n"
msgstr "%P: aviso: --package-metadata está vacío; se descarta\n"
#: ldelf.c:1609
msgid "%P: warning: --package-metadata=%s does not contain valid JSON, ignoring: %s\n"
msgstr "%P: aviso: --package-metadata=%s no contiene JSON válido; se descarta: %s\n"
#: ldelf.c:1638
msgid "%P: warning: cannot create .note.package section, --package-metadata ignored\n"
msgstr "%P: aviso: no se puede crear la sección .note.package; se descarta --package-metadata\n"
#: ldelf.c:1670 eaix5ppc.c:1545 eaix5rs6.c:1545 eaixppc.c:1545 eaixrs6.c:1545
#: eppcmacos.c:1545
msgid "%P: failed to record assignment to %s: %E\n"
msgstr "%P: no se ha podido grabar la asignación a %s: %E\n"
#: ldelf.c:1845 ldelf.c:1911 eaix5ppc.c:816 eaix5rs6.c:816 eaixppc.c:816
#: eaixrs6.c:816 eelf64_ia64_vms.c:209 eppcmacos.c:816
msgid "%P: failed to set dynamic section sizes: %E\n"
msgstr "%P: no se han podido establecer los tamaños de las secciones dinámicas: %E\n"
#: ldelf.c:1883
msgid "%P: %pB: can't read contents of section %pA: %E\n"
msgstr "%P: %pB: no se puede leer el contenido de la sección %pA: %E\n"
#: ldelfgen.c:285
msgid "%P: %pA has both ordered and unordered sections\n"
msgstr "%P: %pA usa tanto secciones ordenadas como desordenadas\n"
#: ldelfgen.c:310 eelf32loongarch.c:106 eelf64loongarch.c:106
msgid "%P: map sections to segments failed: %E\n"
msgstr "%P: falló la asociación de secciones a segmentos: %E\n"
#: ldelfgen.c:330
msgid "%P: looping in map_segments\n"
msgstr "%P: bucle en map_segments\n"
#: ldelfgen.c:341
msgid "%P: failed to strip zero-sized dynamic sections\n"
msgstr "%P: no se han podido quitar las secciones dinámicas de tamaño cero\n"
#: ldelfgen.c:419
msgid "%P: warning: CTF strtab association failed; strings will not be shared: %s\n"
msgstr "%P: aviso: la asociación CFT strtab ha fallado; las cadenas no van a compartirse: %s\n"
#: ldelfgen.c:446
msgid "%P: warning: CTF symbol addition failed; CTF will not be tied to symbols: %s\n"
msgstr "%P: aviso: la adición de símbolos CTF ha fallado; CTF no estará vinculado a símbolos: %s\n"
#: ldelfgen.c:456
msgid "%P: warning: CTF symbol shuffling failed; CTF will not be tied to symbols: %s\n"
msgstr "%P: aviso: la remodelación de símbolos CTF ha fallado; CTF no estará vinculado a símbolos: %s\n"
#: ldemul.c:331
#, c-format
msgid "%pS SYSLIB ignored\n"
msgstr "%pS se descarta SYSLIB\n"
#: ldemul.c:337
#, c-format
msgid "%pS HLL ignored\n"
msgstr "%pS se descarta HLL\n"
#: ldemul.c:357
msgid "%P: unrecognised emulation mode: %s\n"
msgstr "%P: no se reconoce el modo de emulación: %s\n"
#: ldemul.c:358
msgid "Supported emulations: "
msgstr "Emulaciones admitidas: "
#: ldemul.c:400
#, c-format
msgid " no emulation specific options.\n"
msgstr " no hay opciones específicas de emulación.\n"
#: ldexp.c:285
msgid "%P: bfd_hash_allocate failed creating symbol %s\n"
msgstr "%P: falló bfd_hash_allocate al crear el símbolo %s\n"
#: ldexp.c:316
msgid "%P: bfd_hash_lookup failed creating symbol %s\n"
msgstr "%P: falló bfd_hash_lookup al crear el símbolo %s\n"
#: ldexp.c:562
msgid "%P: warning: address of `%s' isn't multiple of maximum page size\n"
msgstr "%P: aviso: la dirección de `%s' no es un múltiplo del tamaño máximo de página\n"
#: ldexp.c:641
msgid "%P:%pS %% by zero\n"
msgstr "%P:%pS %% por cero\n"
#: ldexp.c:650
msgid "%P:%pS / by zero\n"
msgstr "%P:%pS / por cero\n"
#: ldexp.c:764 ldlang.c:4112 ldmain.c:1700 eaarch64pe.c:1168 eaarch64pe.c:1784
#: earm64pe.c:1168 earm64pe.c:1784 earm_wince_pe.c:1154 earm_wince_pe.c:1881
#: earmpe.c:1154 earmpe.c:1881 ei386pe.c:1154 ei386pe.c:1881
#: ei386pe_posix.c:1154 ei386pe_posix.c:1881 ei386pep.c:1168 ei386pep.c:1784
#: emcorepe.c:1154 emcorepe.c:1881 eshpe.c:1154 eshpe.c:1881
msgid "%P: bfd_link_hash_lookup failed: %E\n"
msgstr "%P: falló bfd_link_hash_lookup: %E\n"
#: ldexp.c:777
msgid "%X%P:%pS: unresolvable symbol `%s' referenced in expression\n"
msgstr "%X%P:%pS: se referencía el símbolo sin resolución `%s' en la expresión\n"
#: ldexp.c:792
msgid "%P:%pS: undefined symbol `%s' referenced in expression\n"
msgstr "%P:%pS: se referencía el símbolo sin definir `%s' en la expresión\n"
#: ldexp.c:830 ldexp.c:848 ldexp.c:876
msgid "%P:%pS: undefined section `%s' referenced in expression\n"
msgstr "%P:%pS: se referencía la sección sin definir `%s' en la expresión\n"
#: ldexp.c:915 ldexp.c:929
msgid "%P:%pS: undefined MEMORY region `%s' referenced in expression\n"
msgstr "%P:%pS: se referencía la región MEMORY sin definir `%s' en la expresión\n"
#: ldexp.c:941
msgid "%P:%pS: unknown constant `%s' referenced in expression\n"
msgstr "%P:%pS: se referencía la constante desconocida `%s' en la expresión\n"
#: ldexp.c:1089
msgid "%P:%pS can not PROVIDE assignment to location counter\n"
msgstr "%P:%pS no se puede hacer una asignación PROVIDE al contador de ubicación\n"
#: ldexp.c:1122
msgid "%P:%pS invalid assignment to location counter\n"
msgstr "%P:%pS asignación inválida al contador de ubicación\n"
#: ldexp.c:1126
msgid "%P:%pS assignment to location counter invalid outside of SECTIONS\n"
msgstr "%P:%pS asignación al contador de ubicación inválida fuera de SECTIONS\n"
#: ldexp.c:1145
msgid "%P:%pS cannot move location counter backwards (from %V to %V)\n"
msgstr "%P:%pS no se puede mover el contador de ubicación hacia atrás (de %V a %V)\n"
#: ldexp.c:1205
msgid "%P:%s: hash creation failed\n"
msgstr "%P:%s: falló la creación de la dispersión\n"
#: ldexp.c:1581 ldexp.c:1624 ldexp.c:1684
msgid "%P:%pS: nonconstant expression for %s\n"
msgstr "%P:%pS: la expresión no es constante para %s\n"
#: ldexp.c:1711 ldlang.c:1399 ldlang.c:3561 ldlang.c:8309
msgid "%P: can not create hash table: %E\n"
msgstr "%P: no se puede crear la tabla de dispersión: %E\n"
#: ldfile.c:239
#, c-format
msgid "remap input file '%s' to '%s' based upon pattern '%s'\n"
msgstr "reasigna el fichero de entrada '%s' a '%s' basado en el patrón '%s'\n"
#: ldfile.c:242
#, c-format
msgid "remove input file '%s' based upon pattern '%s'\n"
msgstr "borra el fichero de entrada '%s' basado en el patrón '%s'\n"
#: ldfile.c:248
#, c-format
msgid "remap input file '%s' to '%s'\n"
msgstr "reasigna el fichero de entrada '%s' a '%s'\n"
#: ldfile.c:251
#, c-format
msgid "remove input file '%s'\n"
msgstr "borra el fichero de entrada '%s'\n"
#: ldfile.c:269
msgid ""
"\n"
"Input File Remapping\n"
"\n"
msgstr ""
"\n"
"Reasignación de Fichero de Entrada\n"
"\n"
#: ldfile.c:274
#, c-format
msgid " Pattern: %s\tMaps To: %s\n"
msgstr " Patrón: %s\tAsociar A: %s\n"
#: ldfile.c:275
msgid "<discard>"
msgstr "<descartar>"
#: ldfile.c:358
#, c-format
msgid "attempt to open %s succeeded\n"
msgstr "tuvo éxito el intento de abrir %s\n"
#: ldfile.c:364
msgid "%P: invalid BFD target `%s'\n"
msgstr "%P: objetivo BFD inválido `%s'\n"
#: ldfile.c:481 ldfile.c:511
msgid "%P: skipping incompatible %s when searching for %s\n"
msgstr "%P: se salta el %s incompatible mientras se busca %s\n"
#: ldfile.c:494
msgid "%P: attempted static link of dynamic object `%s'\n"
msgstr "%P: se intentó el enlazado estático del objeto dinámico `%s'\n"
#: ldfile.c:623
msgid "%P: cannot find %s (%s): %E\n"
msgstr "%P: no se puede encontrar %s (%s): %E\n"
#. We ignore the return status of the script
#. and always print the error message.
#: ldfile.c:626 ldfile.c:710 ldfile.c:714
msgid "%P: cannot find %s: %E\n"
msgstr "%P: no se puede encontrar %s: %E\n"
#: ldfile.c:678
msgid "%P: cannot find %s inside %s\n"
msgstr "%P: no se puede encontrar %s dentro de %s\n"
#: ldfile.c:693 ldmain.c:1880
msgid "%P: About to run error handling script '%s' with arguments: '%s' '%s'\n"
msgstr "%P: Se va a ejecutar el script '%s' de manejo de errores con los argumentos: '%s' '%s'\n"
#: ldfile.c:697 ldmain.c:1884
msgid "error handling script"
msgstr "script de manejo de errores"
#: ldfile.c:703 ldmain.c:1890
msgid "%P: Failed to run error handling script '%s', reason: "
msgstr "%P: No se ha podido ejecutar el script '%s' de manejo de errores, motivo: "
#: ldfile.c:719
msgid "%P: have you installed the static version of the %s library ?\n"
msgstr "%P: ¿ha instalado la versión estática de la biblioteca %s ?\n"
#: ldfile.c:730
msgid "%P: note to link with %s use -l:%s or rename it to lib%s\n"
msgstr "%P: nótese para enlazar con %s utilizar -l:%s o renombrarlo a lib%s\n"
#: ldfile.c:762
#, c-format
msgid "cannot find script file %s\n"
msgstr "no se puede encontrar el fichero de guión %s\n"
#: ldfile.c:764
#, c-format
msgid "opened script file %s\n"
msgstr "fichero de guión %s abierto\n"
#: ldfile.c:900
msgid "%P: error: linker script file '%s' appears multiple times\n"
msgstr "%P: error: el fichero script del enlazador '%s' aparece varias veces\n"
#: ldfile.c:919
msgid "%P: cannot open linker script file %s: %E\n"
msgstr "%P: no se puede abrir el fichero de guión del enlazador %s: %E\n"
#: ldfile.c:1013
msgid "%P: cannot represent machine `%s'\n"
msgstr "%P: no se puede representar la máquina `%s'\n"
#: ldlang.c:1490
msgid "%P:%pS: warning: redeclaration of memory region `%s'\n"
msgstr "%P:%pS: aviso: redeclaración de la región de memoria `%s'\n"
#: ldlang.c:1496
msgid "%P:%pS: warning: memory region `%s' not declared\n"
msgstr "%P:%pS: aviso: no se declaró la región de memoria `%s'\n"
#: ldlang.c:1532
msgid "%P:%pS: error: alias for default memory region\n"
msgstr "%P:%pS: aviso: alias para la región de memoria por defecto\n"
#: ldlang.c:1543
msgid "%P:%pS: error: redefinition of memory region alias `%s'\n"
msgstr "%P:%pS: aviso: redefinición del alias de la región de memoria '%s'\n"
#: ldlang.c:1550
msgid "%P:%pS: error: memory region `%s' for alias `%s' does not exist\n"
msgstr "%P:%pS: aviso: no existe la región de memoria `%s' para el alias `%s'\n"
#: ldlang.c:1611 ldlang.c:1654
msgid "%P: failed creating section `%s': %E\n"
msgstr "%P: falló la creación de la sección `%s': %E\n"
#: ldlang.c:2372
msgid ""
"\n"
"As-needed library included to satisfy reference by file (symbol)\n"
"\n"
msgstr ""
"\n"
"Biblioteca bajo demanda incluida para satisfacer referencia por fichero (símbolo)\n"
"\n"
#: ldlang.c:2437
msgid ""
"\n"
"Discarded input sections\n"
"\n"
msgstr ""
"\n"
"Secciones de salida descartadas\n"
"\n"
#: ldlang.c:2445
msgid ""
"\n"
"There are no discarded input sections\n"
msgstr ""
"\n"
"No hay secciones de entrada descartadas\n"
#: ldlang.c:2447
msgid ""
"\n"
"Memory Configuration\n"
"\n"
msgstr ""
"\n"
"Configuración de la Memoria\n"
"\n"
#: ldlang.c:2449
msgid "Name"
msgstr "Nombre"
#: ldlang.c:2449
msgid "Origin"
msgstr "Origen"
#: ldlang.c:2449
msgid "Length"
msgstr "Longitud"
#: ldlang.c:2449
msgid "Attributes"
msgstr "Atributos"
#: ldlang.c:2473
msgid ""
"\n"
"Linker script and memory map\n"
"\n"
msgstr ""
"\n"
"Guión del enlazador y mapa de memoria\n"
"\n"
#: ldlang.c:2533
msgid "%P: illegal use of `%s' section\n"
msgstr "%P: uso ilegal de la sección `%s'\n"
#: ldlang.c:2542
msgid "%P: output format %s cannot represent section called %s: %E\n"
msgstr "%P: el formato de salida %s no puede representar la sección llamada %s: %E\n"
#: ldlang.c:2723
msgid "%P:%pS: warning: --enable-non-contiguous-regions makes section `%pA' from `%pB' match /DISCARD/ clause.\n"
msgstr "%P:%pS: aviso: --enable-non-contiguous-regions hace que la sección `%pA' desde '%pB' coincida con la cláusula /DISCARD/.\n"
#: ldlang.c:2747
msgid "%P:%pS: warning: --enable-non-contiguous-regions may change behaviour for section `%pA' from `%pB' (assigned to %pA, but additional match: %pA)\n"
msgstr "%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)\n"
#: ldlang.c:3125
msgid "%P: %pB: file not recognized: %E; matching formats:"
msgstr "%P: %pB: no se reconoce el fichero: %E; formatos coincidentes:"
#: ldlang.c:3134
msgid "%P: %pB: file not recognized: %E\n"
msgstr "%P: %pB: no se reconoce el fichero: %E\n"
#: ldlang.c:3207
msgid "%P: %pB: member %pB in archive is not an object\n"
msgstr "%P: %pB: el miembro %pB en el archivo no es un objeto\n"
#: ldlang.c:3483
msgid "%P: input file '%s' is the same as output file\n"
msgstr "%P: el fichero de entrada '%s' es el mismo que el de salida\n"
#: ldlang.c:3531
msgid "%P: warning: could not find any targets that match endianness requirement\n"
msgstr "%P: aviso: no se puede encontrar ningún objetivo que coincida con los requerimientos de `endianez'\n"
#: ldlang.c:3545
msgid "%P: target %s not found\n"
msgstr "%P: no se encontró el objetivo %s\n"
#: ldlang.c:3547
msgid "%P: cannot open output file %s: %E\n"
msgstr "%P: no se puede abrir el fichero de salida %s: %E\n"
#: ldlang.c:3553
msgid "%P: %s: can not make object file: %E\n"
msgstr "%P: %s: no se puede hacer el fichero objeto: %E\n"
#: ldlang.c:3557
msgid "%P: %s: can not set architecture: %E\n"
msgstr "%P: %s: no se puede establecer la arquitectura: %E\n"
#: ldlang.c:3744
msgid "%P: warning: %s contains output sections; did you forget -T?\n"
msgstr "%P: aviso: %s contiene secciones de salida. ¿Olvidó -T?\n"
#: ldlang.c:3791
#, c-format
msgid "%s: %s\n"
msgstr "%s: %s\n"
#: ldlang.c:3791
msgid "CTF warning"
msgstr "aviso CTF"
#: ldlang.c:3791
msgid "CTF error"
msgstr "error CTF"
#: ldlang.c:3797
#, c-format
msgid "CTF error: cannot get CTF errors: `%s'\n"
msgstr "error CTF: no se pueedn obtener errores CTF: `%s'\n"
#: ldlang.c:3833
msgid "%P: warning: CTF section in %pB not loaded; its types will be discarded: %s\n"
msgstr "%P: aviso: sección CTF en %pB no cargada: sus tipos serán descartados: %s\n"
#: ldlang.c:3866
msgid "%P: warning: CTF output not created: `%s'\n"
msgstr "%P: aviso: salida CTF no creada: `%s'\n"
#: ldlang.c:3915
msgid "%P: warning: CTF section in %pB cannot be linked: `%s'\n"
msgstr "%P: aviso: sección CTF en %pB no puede enlazarse: `%s'\n"
#: ldlang.c:3935
msgid "%P: warning: CTF linking failed; output will have no CTF section: %s\n"
msgstr "%P: aviso: enlazado CTF fallido; la salida no tendrá ninguna sección CTF: %s\n"
#: ldlang.c:4018
msgid "%P: warning: CTF section emission failed; output will have no CTF section: %s\n"
msgstr "%P: aviso: emisión de sección CTF fallida; la salida no tendrá ninguna sección CTF: %s\n"
#: ldlang.c:4059
msgid "%P: warning: CTF section in %pB not linkable: %P was built without support for CTF\n"
msgstr "%P: aviso: sección CTF en %pB no enlazable: %P se construyó sin soporte para CTF\n"
#: ldlang.c:4195
msgid "%X%P: required symbol `%s' not defined\n"
msgstr "%X%P: símbolo requerido `%s' sin definir\n"
#: ldlang.c:4396 ldlang.c:4405
msgid "%P: invalid type for output section `%s'\n"
msgstr "%P: tipo no válido para la sección de salida `%s'\n"
#: ldlang.c:4541
msgid "warning: INSERT statement in linker script is incompatible with --enable-non-contiguous-regions.\n"
msgstr "aviso: la sentencia INSERT en el script del enlazador es incompatible con --enable-non-contiguous-regions.\n"
#: ldlang.c:4554
msgid "%P: %s not found for insert\n"
msgstr "%P: no se puede encontrar %s para insert\n"
#: ldlang.c:4826
msgid " load address 0x%V"
msgstr " dirección de carga 0x%V"
#: ldlang.c:5086
msgid "%W (size before relaxing)\n"
msgstr "%W (tamaño antes de la relajación)\n"
#: ldlang.c:5215
#, c-format
msgid "Address of section %s set to "
msgstr "La dirección de la sección %s se estableció a "
#: ldlang.c:5417
#, c-format
msgid "Fail with %d\n"
msgstr "Falló con %d\n"
#: ldlang.c:5634
msgid "%P: Output section `%pA' not large enough for the linker-created stubs section `%pA'.\n"
msgstr "%P: La sección de salida `%pA' no es suficientemente grande para la sección `%pA' de stubs creada para el enlazador.\n"
#: ldlang.c:5639
msgid "%P: Relaxation not supported with --enable-non-contiguous-regions (section `%pA' would overflow `%pA' after it changed size).\n"
msgstr "%P: No está admitido relajar con --enable-non-contiguous-regions (la sección `%pA' se solaparía con `%pA' tras cambiar de tamaño).\n"
#: ldlang.c:5748
msgid "%X%P: section %s VMA wraps around address space\n"
msgstr "%X%P: la VMA de la sección %s da la vuelta alrededor del espacio de direcciones\n"
#: ldlang.c:5754
msgid "%X%P: section %s LMA wraps around address space\n"
msgstr "%X%P: La VMA de la sección %s da la vuelta alrededor del espacio de direcciones\n"
#: ldlang.c:5806
msgid "%X%P: section %s LMA [%V,%V] overlaps section %s LMA [%V,%V]\n"
msgstr "%X%P: la LMA de la sección %s [%V,%V] se solapa con la LMA de la sección %s [%V,%V]\n"
#: ldlang.c:5850
msgid "%X%P: section %s VMA [%V,%V] overlaps section %s VMA [%V,%V]\n"
msgstr "%X%P: la VMA de la sección %s [%V,%V] se solapa con la VMA de la sección %s [%V,%V]\n"
#: ldlang.c:5873
msgid "%X%P: region `%s' overflowed by %lu byte\n"
msgid_plural "%X%P: region `%s' overflowed by %lu bytes\n"
msgstr[0] "%X%P: la región `%s' se desborda por %lu byte\n"
msgstr[1] "%X%P: la región `%s' se desborda por %lu bytes\n"
#: ldlang.c:5898
msgid "%X%P: address 0x%v of %pB section `%s' is not within region `%s'\n"
msgstr "%X%P: la dirección 0x%v de la sección %pB %s no está dentro de la región `%s'\n"
#: ldlang.c:5909
msgid "%X%P: %pB section `%s' will not fit in region `%s'\n"
msgstr "%X%P: la sección %pB `%s' no cabe en la región `%s'\n"
#: ldlang.c:5995
msgid "%P:%pS: non constant or forward reference address expression for section %s\n"
msgstr "%P:%pS: expresión de dirección de referencia hacia adelante o no constante para la sección %s\n"
#: ldlang.c:6020
msgid "%X%P: internal error on COFF shared library section %s\n"
msgstr "%X%P: error interno en la sección de biblioteca compartida COFF %s\n"
#: ldlang.c:6078
msgid "%P: error: no memory region specified for loadable section `%s'\n"
msgstr "%P: aviso: no se especificó una región de memoria para la sección cargable `%s'\n"
#: ldlang.c:6082
msgid "%P: warning: no memory region specified for loadable section `%s'\n"
msgstr "%P: aviso: no se especificó una región de memoria para la sección cargable `%s'\n"
#: ldlang.c:6116
msgid "%P: warning: start of section %s changed by %ld\n"
msgstr "%P: aviso: el inicio de la sección %s se ha cambiado por %ld\n"
#: ldlang.c:6209
msgid "%P: warning: dot moved backwards before `%s'\n"
msgstr "%P: aviso: el punto se movió hacia atrás antes de `%s'\n"
#: ldlang.c:6385
msgid "%P: can't relax section: %E\n"
msgstr "%P: no se puede relajar la sección: %E\n"
#: ldlang.c:6794
msgid "%P: invalid data statement\n"
msgstr "%P: declaración de datos inválida\n"
#: ldlang.c:6827
msgid "%P: invalid reloc statement\n"
msgstr "%P: declaración de reubicación inválida\n"
#: ldlang.c:7244
msgid "%P: --gc-sections requires a defined symbol root specified by -e or -u\n"
msgstr "%P: --gc-sections requiere de una raíz de símbolos definida mediante -e o -u\n"
#: ldlang.c:7271
msgid "%P: %s: can't set start address\n"
msgstr "%P: %s: no se puede establecer la dirección de inicio\n"
#: ldlang.c:7284 ldlang.c:7303
msgid "%P: can't set start address\n"
msgstr "%P: no se puede establecer la dirección de inicio\n"
#: ldlang.c:7297
msgid "%P: warning: cannot find entry symbol %s; defaulting to %V\n"
msgstr "%P: aviso: no se puede encontrar el símbolo de entrada %s; se usa por defecto %V\n"
#: ldlang.c:7308 ldlang.c:7316
msgid "%P: warning: cannot find entry symbol %s; not setting start address\n"
msgstr "%P: aviso: no se puede encontrar el símbolo de entrada %s; no se establece la dirección de inicio\n"
#: ldlang.c:7372
msgid "%P: relocatable linking with relocations from format %s (%pB) to format %s (%pB) is not supported\n"
msgstr "%P: no se admite el enlazado reubicable con reubicaciones del formato %s (%pB) al formato %s (%pB)\n"
#: ldlang.c:7381
msgid "%X%P: %s architecture of input file `%pB' is incompatible with %s output\n"
msgstr "%X%P: la arquitectura %s del fichero de entrada `%pB' es incompatible con la salida %s\n"
#: ldlang.c:7405
msgid "%X%P: failed to merge target specific data of file %pB\n"
msgstr "%X%P: falló la mezcla de datos específicos de objetivo del fichero %pB\n"
#: ldlang.c:7476
msgid "%P: could not define common symbol `%pT': %E\n"
msgstr "%P: no se puede definir el símbolo común `%pT': %E\n"
#: ldlang.c:7488
msgid ""
"\n"
"Allocating common symbols\n"
msgstr ""
"\n"
"Se asignan símbolos comunes\n"
#: ldlang.c:7489
msgid ""
"Common symbol size file\n"
"\n"
msgstr ""
"Símbolo común tamaño fichero\n"
"\n"
#: ldlang.c:7546
msgid "%X%P: error: unplaced orphan section `%pA' from `%pB'\n"
msgstr "%X%P: error: sección huérfana no colocada `%pA' de `%pB'\n"
#: ldlang.c:7564
msgid "%P: warning: orphan section `%pA' from `%pB' being placed in section `%s'\n"
msgstr "%P: aviso: la sección huérfana `%pA' de `%pB' se está colocando en la sección `%s'\n"
#: ldlang.c:7654
msgid "%P: invalid character %c (%d) in flags\n"
msgstr "%P: carácter inválido %c (%d) en los interruptores\n"
#. && in_section_ordering
#: ldlang.c:7748
msgid "%P:%pS: error: output section '%s' must already exist\n"
msgstr "%P:%pS: error: la sección de salida '%s' debe existir de antemano\n"
#: ldlang.c:7772
msgid "%P:%pS: error: align with input and explicit align specified\n"
msgstr "%P:%pS: error: se especificó alineamiento con la entrada y alineamiento explícito\n"
#: ldlang.c:8243
msgid "%P: warning: --enable-non-contiguous-regions discards section `%pA' from `%pB'\n"
msgstr "%P: aviso: --enable-non-contiguous-regions descarta la sección `%pA' desde `%pB'\n"
#: ldlang.c:8347
msgid "%P: %s: plugin reported error after all symbols read\n"
msgstr "%P: %s: el plugin reportó error después de leer todos los símbolos\n"
#: ldlang.c:8472
msgid ""
"Object-only input files:\n"
" "
msgstr ""
"Ficheros de entrada solo objeto:\n"
" "
#: ldlang.c:8586
msgid "%P: bfd_merge_sections failed: %E\n"
msgstr "%P: falló bfd_merge_sections: %E\n"
#: ldlang.c:8965
msgid "%P: multiple STARTUP files\n"
msgstr "%P: ficheros STARTUP múltiples\n"
#: ldlang.c:9010
msgid "%X%P:%pS: section has both a load address and a load region\n"
msgstr "%X%P:%pS: la sección tiene tanto una dirección de carga como una región de carga\n"
#: ldlang.c:9119
msgid "%X%P:%pS: PHDRS and FILEHDR are not supported when prior PT_LOAD headers lack them\n"
msgstr "%X%P:%pS: no se admiten PHDRS y FILEHDR cuando los encabezados PT_LOAD previso no los tienen\n"
#: ldlang.c:9192
msgid "%P: no sections assigned to phdrs\n"
msgstr "%P: no se asignaron secciones a phdrs\n"
#: ldlang.c:9230
msgid "%P: bfd_record_phdr failed: %E\n"
msgstr "%P: falló bfd_record_phdr: %E\n"
#: ldlang.c:9250
msgid "%X%P: section `%s' assigned to non-existent phdr `%s'\n"
msgstr "%X%P: se asignó la sección `%s' al phdr que no existe `%s'\n"
#: ldlang.c:9663
msgid "%X%P: unknown language `%s' in version information\n"
msgstr "%X%P: lenguaje `%s' desconocido en la información de la versión\n"
#: ldlang.c:9801
msgid "%X%P: anonymous version tag cannot be combined with other version tags\n"
msgstr "%X%P: la marca de versión anónima no se puede combinar con otras marcas de versión\n"
#: ldlang.c:9809
msgid "%X%P: duplicate version tag `%s'\n"
msgstr "%X%P: marca de versión `%s' duplicada\n"
#: ldlang.c:9830 ldlang.c:9839 ldlang.c:9857 ldlang.c:9867
msgid "%X%P: duplicate expression `%s' in version information\n"
msgstr "%X%P: expresión `%s' duplicada en la información de la versión\n"
#: ldlang.c:9907
msgid "%X%P: unable to find version dependency `%s'\n"
msgstr "%X%P: no se puede encontrar la dependencia de versión `%s'\n"
#: ldlang.c:9930
msgid "%X%P: unable to read .exports section contents\n"
msgstr "%X%P: no se pueden leer los contenidos de la sección .exports\n"
#: ldlang.c:9974
msgid "%P: invalid origin for memory region %s\n"
msgstr "%P: origen no válido para la región de memoria %s\n"
#: ldlang.c:9986
msgid "%P: invalid length for memory region %s\n"
msgstr "%P: longitud no válida para la región de memoria %s\n"
#: ldlang.c:10099
msgid "%X%P: unknown feature `%s'\n"
msgstr "%X%P: opción `%s' desconocida\n"
#: ldlang.c:10465
msgid "failed to create output section"
msgstr "fallo al crear la sección de salida"
#: ldlang.c:10499
msgid "failed to copy private data"
msgstr "fallo al copiar datos privados"
#: ldlang.c:10508
msgid "%P: setup_section: %s: %s\n"
msgstr "%P: setup_section: %s: %s\n"
#: ldlang.c:10571
msgid "relocation count is negative"
msgstr "el contador de reubicaciones es negativo"
#: ldlang.c:10603
msgid "%P: copy_section: %s: %s\n"
msgstr "%P: copy_section: %s: %s\n"
#: ldlang.c:10758
msgid "error setting up sections"
msgstr "error configurando secciones"
#: ldlang.c:10766
msgid "error copying private header data"
msgstr "error copiando datos de cabecera privados"
#: ldlang.c:10779
msgid "can't create object-only section"
msgstr "no se puede crear la sección de solo objeto"
#: ldlang.c:10785
msgid "can't set object-only section size"
msgstr "no se puede establecer el tamaño de la sección de solo objeto"
#: ldlang.c:10816
msgid "error copying sections"
msgstr "error copiando secciones"
#: ldlang.c:10823
msgid "error adding object-only section"
msgstr "error añadiendo section de solo objeto"
#: ldlang.c:10833
msgid "error copying private BFD data"
msgstr "error copiando BFD privados"
#: ldlang.c:10840
msgid "%P: failed to finish output with object-only section\n"
msgstr "%P: fallo al finalizar la salida con sección de solo objeto\n"
#: ldlang.c:10850
msgid "%P: failed to rename output with object-only section\n"
msgstr "%P: fallo al renombrar la salida con sección de solo objeto\n"
#: ldlang.c:10866
msgid "%P: failed to add object-only section: %s\n"
msgstr "%P: no se ha podido la sección de solo objeto: %s\n"
#: ldlang.c:10899
msgid "%P: Failed to create hash table\n"
msgstr "%P: Falló al crear la tabla de dispersión\n"
#: ldlang.c:10963
msgid "%P:%s: final close failed on object-only output: %E\n"
msgstr "%P:%s: falló el cerrado final de la salida de solo objeto: %E\n"
#: ldlang.c:10973
msgid "%P:%s: cannot open object-only output: %E\n"
msgstr "%P:%s: no se puede abrir la salida de solo objeto: %E\n"
#: ldlang.c:10981
msgid "%P:%s: cannot stat object-only output: %E\n"
msgstr "%P:%s: no se puede hacer stat de la salida de solo objeto: %E\n"
#: ldlang.c:10996
msgid "%P:%s: read failed on object-only output: %E\n"
msgstr "%P:%s: fallo al leer la salida de solo objeto: %E\n"
#: ldlang.c:11023
msgid "%P: cannot extract object-only section from %B: %E\n"
msgstr "%P: no se puede extraer la sección de solo objeto de %B: %E\n"
#: ldmain.c:204
msgid "%P: cannot open dependency file %s: %E\n"
msgstr "%P: no se puede abrir el fichero de dependencias %s: %E\n"
#: ldmain.c:553
msgid "WARNING: Data is unreliable!\n"
msgstr "AVISO: ¡El dato no es fiable!\n"
#: ldmain.c:611
msgid "%P: fatal error: libbfd ABI mismatch\n"
msgstr "%P: error fatal: discordancia en ABI de libbfd\n"
#: ldmain.c:650
msgid "%X%P: can't set BFD default target to `%s': %E\n"
msgstr "%X%P: no se puede establecer el objetivo BFD por defecto a `%s': %E\n"
#: ldmain.c:761
msgid "built in linker script"
msgstr "guión interno del enlazador"
#: ldmain.c:771
#, c-format
msgid "using external linker script: %s"
msgstr "se usa el guión externo del enlazador: %s"
#: ldmain.c:773
msgid "using internal linker script:"
msgstr "se usa el guión interno del enlazador:"
#: ldmain.c:823
msgid "%P: --no-define-common may not be used without -shared\n"
msgstr "%P: no se puede usar --no-define-common sin -shared\n"
#: ldmain.c:830
msgid "%P: no input files\n"
msgstr "%P: no hay ficheros de entrada\n"
#: ldmain.c:834
msgid "%P: mode %s\n"
msgstr "%P: modo %s\n"
#: ldmain.c:852 ends32belf.c:473 ends32belf16m.c:473 ends32belf_linux.c:606
#: ends32elf.c:473 ends32elf16m.c:473 ends32elf_linux.c:606
msgid "%P: cannot open map file %s: %E\n"
msgstr "%P: no se puede encontrar el fichero de mapeo %s: %E\n"
#: ldmain.c:944
msgid "%P: link errors found, deleting executable `%s'\n"
msgstr "%P: se encontraron errores de enlace, se borra el ejecutable `%s'\n"
#: ldmain.c:955
msgid "%P: %s: final close failed: %E\n"
msgstr "%P: %s: falló el cerrado final: %E\n"
#: ldmain.c:984
msgid "%P: unable to open for source of copy `%s'\n"
msgstr "%P: no se puede abrir para la fuente de la copia `%s'\n"
#: ldmain.c:987
msgid "%P: unable to open for destination of copy `%s'\n"
msgstr "%P: no se puede abrir para el destino de la copia `%s'\n"
#: ldmain.c:994
msgid "%P: error writing file `%s'\n"
msgstr "%P: error al escribir el fichero `%s'\n"
#: ldmain.c:999 pe-dll.c:2013
#, c-format
msgid "%P: error closing file `%s'\n"
msgstr "%P: error al cerrar el fichero `%s'\n"
#: ldmain.c:1030
#, c-format
msgid "%s: total time in link: %ld.%06ld\n"
msgstr "%s: tiempo total de enlazado: %ld.%06ld\n"
#: ldmain.c:1120
msgid "%P: missing argument to -m\n"
msgstr "%P: falta el argumento para -m\n"
#: ldmain.c:1174 ldmain.c:1191 ldmain.c:1211 ldmain.c:1243 pe-dll.c:1434
msgid "%P: bfd_hash_table_init failed: %E\n"
msgstr "%P: falló bfd_hash_table_init: %E\n"
#: ldmain.c:1178 ldmain.c:1195 ldmain.c:1215
msgid "%P: bfd_hash_lookup failed: %E\n"
msgstr "%P: falló bfd_hash_lookup: %E\n"
#: ldmain.c:1229
msgid "%X%P: error: duplicate retain-symbols-file\n"
msgstr "%X%P: error: fichero de símbolos a retener duplicado\n"
#: ldmain.c:1273
msgid "%P: bfd_hash_lookup for insertion failed: %E\n"
msgstr "%P: falló bfd_hash_lookup para la inserción: %E\n"
#: ldmain.c:1278
msgid "%P: `-retain-symbols-file' overrides `-s' and `-S'\n"
msgstr "%P `-retain-symbols-file' se impone a `-s' y `-S'\n"
#: ldmain.c:1402
msgid ""
"Archive member included to satisfy reference by file (symbol)\n"
"\n"
msgstr ""
"Se incluyó el miembro del archivo para satisfacer referencia por fichero (símbolo)\n"
"\n"
#: ldmain.c:1508
msgid "%P: %C: warning: multiple definition of `%pT'"
msgstr "%P: %C: aviso: definiciones múltiples de `%pT'"
#: ldmain.c:1511
msgid "%X%P: %C: multiple definition of `%pT'"
msgstr "%X%P: %C: definiciones múltiples de `%pT'"
#: ldmain.c:1514
msgid "; %D: first defined here"
msgstr "; %D: primero se definió aquí"
#: ldmain.c:1519
msgid "%P: disabling relaxation; it will not work with multiple definitions\n"
msgstr "%P: se desactiva la relajación: no funcionará con definiciones múltiples\n"
# FIXME: Revisar en el código fuente si `common' se refiere a una orden o
# se puede sustituir por `común'. cfuga
#: ldmain.c:1572
msgid "%P: %pB: warning: definition of `%pT' overriding common from %pB\n"
msgstr "%P: %pB: aviso: la definición de `%pT' se impone a common desde %pB\n"
# FIXME: Revisar en el código fuente si `common' se refiere a una orden o
# se puede sustituir por `común'. cfuga
#: ldmain.c:1576
msgid "%P: %pB: warning: definition of `%pT' overriding common\n"
msgstr "%P: %pB: aviso: la definición de `%pT' se impone a common\n"
#: ldmain.c:1585
msgid "%P: %pB: warning: common of `%pT' overridden by definition from %pB\n"
msgstr "%P: %pB: aviso: el common de `%pT' se sobrepasa por definición desde %pB\n"
#: ldmain.c:1589
msgid "%P: %pB: warning: common of `%pT' overridden by definition\n"
msgstr "%P: %pB: aviso: el common de `%pT' se sobrepasa por definición\n"
#: ldmain.c:1598
msgid "%P: %pB: warning: common of `%pT' overridden by larger common from %pB\n"
msgstr "%P: %pB: aviso: el common de `%pT' se sobrepasa con un common más grande desde %pB\n"
#: ldmain.c:1602
msgid "%P: %pB: warning: common of `%pT' overridden by larger common\n"
msgstr "%P: %pB: aviso: el common de `%pT' se sobrepasa con un common más grande\n"
#: ldmain.c:1609
msgid "%P: %pB: warning: common of `%pT' overriding smaller common from %pB\n"
msgstr "%P: %pB: aviso: el common de `%pT' se sobrepasa con un common más pequeño desde %pB\n"
#: ldmain.c:1613
msgid "%P: %pB: warning: common of `%pT' overriding smaller common\n"
msgstr "%P: %pB: aviso: el common de `%pT' se sobrepasa con un common más pequeño\n"
#: ldmain.c:1620
msgid "%P: %pB and %pB: warning: multiple common of `%pT'\n"
msgstr "%P: %pB y %pB: aviso: common múltiple de `%pT'\n"
#: ldmain.c:1623
msgid "%P: %pB: warning: multiple common of `%pT'\n"
msgstr "%P: %pB: aviso: common múltiple de `%pT'\n"
#: ldmain.c:1642 ldmain.c:1678
msgid "%P: warning: global constructor %s used\n"
msgstr "%P: aviso: se usó el constructor global %s\n"
#: ldmain.c:1688
msgid "%P: BFD backend error: BFD_RELOC_CTOR unsupported\n"
msgstr "%P: error del frente trasero de BFD: no se admite BFD_RELOC_CTOR\n"
#. We found a reloc for the symbol we are looking for.
#: ldmain.c:1760 ldmain.c:1762 ldmain.c:1764 ldmain.c:1772 ldmain.c:1815
msgid "warning: "
msgstr "aviso: "
#: ldmain.c:1905
msgid "%X%P: %H: undefined reference to `%pT'\n"
msgstr "%X%P: %H: referencia a `%pT' sin definir\n"
#: ldmain.c:1908
msgid "%P: %H: warning: undefined reference to `%pT'\n"
msgstr "%P: %H: aviso: referencia a `%pT' sin definir\n"
#: ldmain.c:1914
msgid "%X%P: %D: more undefined references to `%pT' follow\n"
msgstr "%X%P: %D: más referencias a `%pT' sin definir a continuación\n"
#: ldmain.c:1917
msgid "%P: %D: warning: more undefined references to `%pT' follow\n"
msgstr "%P: %D: aviso: más referencias a `%pT' sin definir a continuación\n"
#: ldmain.c:1928
msgid "%X%P: %pB: undefined reference to `%pT'\n"
msgstr "%X%P: %pB: referencia a `%pT' sin definir\n"
#: ldmain.c:1931
msgid "%P: %pB: warning: undefined reference to `%pT'\n"
msgstr "%P: %pB: aviso: referencia a `%pT' sin definir\n"
#: ldmain.c:1937
msgid "%X%P: %pB: more undefined references to `%pT' follow\n"
msgstr "%X%P: %pB: más referencias a `%pT' sin definir a continuación\n"
#: ldmain.c:1940
msgid "%P: %pB: warning: more undefined references to `%pT' follow\n"
msgstr "%P: %pB: aviso: más referencias a `%pT' sin definir a continuación\n"
#: ldmain.c:1977
msgid " additional relocation overflows omitted from the output\n"
msgstr " se omitieron desbordamientos de reubicación adicionales de la salida\n"
#: ldmain.c:1990
#, c-format
msgid " relocation truncated to fit: %s against undefined symbol `%pT'"
msgstr " reubicación truncada para ajustar: %s contra el símbolo `%pT' sin definir"
#: ldmain.c:1996
#, c-format
msgid " relocation truncated to fit: %s against symbol `%pT' defined in %pA section in %pB"
msgstr " reubicación truncada para ajustar: %s contra el símbolo `%pT' definido en la sección %pA en %pB"
#: ldmain.c:2009
#, c-format
msgid " relocation truncated to fit: %s against `%pT'"
msgstr " reubicación truncada para ajustar: %s contra `%pT'"
#: ldmain.c:2025
msgid "%X%H: dangerous relocation: %s\n"
msgstr "%X%H: reubicación peligrosa: %s\n"
#: ldmain.c:2039
msgid "%X%H: reloc refers to symbol `%pT' which is not being output\n"
msgstr "%X%H: la reubicación se refiere al símbolo `%pT', el cual no se muestra\n"
#: ldmain.c:2073
msgid "%P: %pB: reference to %s\n"
msgstr "%P: %pB: referencia a %s\n"
#: ldmain.c:2075
msgid "%P: %pB: definition of %s\n"
msgstr "%P: %pB: definición de %s\n"
#: ldmisc.c:359
#, c-format
msgid "%pB: in function `%pT':\n"
msgstr "%pB: en la función `%pT':\n"
#: ldmisc.c:499
#, c-format
msgid "no symbol"
msgstr "no hay símbolo"
#: ldmisc.c:693
msgid "%P: error: unsupported option: %s\n"
msgstr "%P: error: no se admite la opción: %s\n"
#: ldmisc.c:695
msgid "%P: warning: %s ignored\n"
msgstr "%P: aviso: se descarta %s\n"
#: ldmisc.c:706
msgid "%P: internal error %s %d\n"
msgstr "%P: error interno %s %d\n"
#: ldmisc.c:770
msgid "%P: internal error: aborting at %s:%d in %s\n"
msgstr "%P: error interno: se aborta en %s:%d en %s\n"
#: ldmisc.c:773
msgid "%P: internal error: aborting at %s:%d\n"
msgstr "%P: error interno: se aborta en %s:%d\n"
#: ldmisc.c:775
msgid "%P: please report this bug\n"
msgstr "%P: por favor reporte este error\n"
#. Output for noisy == 2 is intended to follow the GNU standards.
#: ldver.c:38
#, c-format
msgid "GNU ld %s\n"
msgstr "GNU ld %s\n"
#: ldver.c:42
#, c-format
msgid "Copyright (C) 2025 Free Software Foundation, Inc.\n"
msgstr "Copyright (C) 2025 Free Software Foundation, Inc.\n"
#: ldver.c:43
#, c-format
msgid ""
"This program is free software; you may redistribute it under the terms of\n"
"the GNU General Public License version 3 or (at your option) a later version.\n"
"This program has absolutely no warranty.\n"
msgstr ""
"Este programa es software libre; se puede redistribuir bajo los términos de\n"
"la Licencia Pública General de GNU versión 3 o (a su elección) una versión\n"
"posterior.\n"
"Este programa no tiene absolutamente ninguna garantía.\n"
#: ldver.c:53
#, c-format
msgid " Supported emulations:\n"
msgstr " Emulaciones admitidas:\n"
#: ldwrite.c:60 ldwrite.c:67 ldwrite.c:173 ldwrite.c:181 ldwrite.c:227
#: ldwrite.c:268
msgid "%P: bfd_new_link_order failed: %E\n"
msgstr "%P: falló bfd_new_link_order: %E\n"
#: ldwrite.c:337
msgid "%P: cannot create split section name for %s\n"
msgstr "%P: no se puede crear el nombre de sección dividida para %s\n"
#: ldwrite.c:348
msgid "%P: clone section failed: %E\n"
msgstr "%P: falló la clonación de la sección: %E\n"
#: ldwrite.c:385
#, c-format
msgid "%8x something else\n"
msgstr "%8x algo más\n"
#: ldwrite.c:551
msgid "%P: final link failed: %E\n"
msgstr "%P: falló el enlace final: %E\n"
#: ldwrite.c:553
msgid "%P: final link failed\n"
msgstr "%P: falló el enlace final\n"
#: lexsup.c:105 lexsup.c:303
msgid "KEYWORD"
msgstr "PALABRA CLAVE"
#: lexsup.c:105
msgid "Shared library control for HP/UX compatibility"
msgstr "Control de biblioteca compartida para compatibilidad con HP/UX"
#: lexsup.c:108
msgid "ARCH"
msgstr "ARQ"
#: lexsup.c:108
msgid "Set architecture"
msgstr "Establece la arquitectura"
#: lexsup.c:110 lexsup.c:443
msgid "TARGET"
msgstr "OBJETIVO"
#: lexsup.c:110
msgid "Specify target for following input files"
msgstr "Especifica el objetivo para los siguientes ficheros de entrada"
#: lexsup.c:113 lexsup.c:119 lexsup.c:180 lexsup.c:184 lexsup.c:223
#: lexsup.c:227 lexsup.c:242 lexsup.c:244 lexsup.c:465 lexsup.c:491
#: lexsup.c:541 lexsup.c:554 lexsup.c:558
msgid "FILE"
msgstr "FICHERO"
#: lexsup.c:113
msgid "Read MRI format linker script"
msgstr "Lee el guión del enlazador de formato MRI"
#: lexsup.c:115
msgid "Force common symbols to be defined"
msgstr "Fuerza que se definan los símbolos comunes"
#: lexsup.c:119
msgid "Write dependency file"
msgstr "Escribe el fichero de dependencias"
#: lexsup.c:122
msgid "Force group members out of groups"
msgstr "Fuerza a los miembros de grupo a salir de los grupos"
#: lexsup.c:124 lexsup.c:516 lexsup.c:518 lexsup.c:520 lexsup.c:522
#: lexsup.c:524 lexsup.c:526 lexsup.c:528
msgid "ADDRESS"
msgstr "DIRECCIÓN"
#: lexsup.c:124
msgid "Set start address"
msgstr "Establece la dirección de inicio"
#: lexsup.c:126
msgid "Export all dynamic symbols"
msgstr "Exporta todos los símbolos dinámicos"
#: lexsup.c:128
msgid "Undo the effect of --export-dynamic"
msgstr "Deshace el efecto de --export-dynamic"
#: lexsup.c:130
msgid "Enable support of non-contiguous memory regions"
msgstr "Activa el que las regiones de memoria no contiguas sean permitidas"
#: lexsup.c:132
msgid "Enable warnings when --enable-non-contiguous-regions may cause unexpected behaviour"
msgstr "Activa avisos cuando --enable-non-contiguous-regions puede provocar comportamiento inesperado"
#: lexsup.c:134
msgid "Disable the LINKER_VERSION linker script directive"
msgstr "Desactiva la directiva de script de enlazado LINKER_VERSION"
#: lexsup.c:136
msgid "Enable the LINKER_VERSION linker script directive"
msgstr "Activa la directiva de script de enlazado LINKER_VERSION"
#: lexsup.c:138
msgid "Link big-endian objects"
msgstr "Enlaza objetos big-endian"
#: lexsup.c:140
msgid "Link little-endian objects"
msgstr "Enlaza objetos little-endian"
#: lexsup.c:142 lexsup.c:145
msgid "SHLIB"
msgstr "BIBCOMP"
#: lexsup.c:142
msgid "Auxiliary filter for shared object symbol table"
msgstr "Filtro auxiliar para la tabla de símbolos de objetos compartidos"
#: lexsup.c:145
msgid "Filter for shared object symbol table"
msgstr "Filtro para la tabla de símbolos de objetos compartidos"
#: lexsup.c:148
msgid "Ignored"
msgstr "Se descarta"
#: lexsup.c:150
msgid "SIZE"
msgstr "TAMAÑO"
#: lexsup.c:150
msgid "Small data size (if no size, same as --shared)"
msgstr "Tamaño de los datos small (si no se especifica, es el mismo que --shared)"
#: lexsup.c:153
msgid "FILENAME"
msgstr "FICHERO"
#: lexsup.c:153
msgid "Set internal name of shared library"
msgstr "Establece el nombre interno de la biblioteca compartida"
#: lexsup.c:155
msgid "PROGRAM"
msgstr "PROGRAMA"
#: lexsup.c:155
msgid "Set PROGRAM as the dynamic linker to use"
msgstr "Establece el PROGRAMA como el enlazador dinámico a utilizar"
#: lexsup.c:158
msgid "Produce an executable with no program interpreter header"
msgstr "Produce un ejecutable sin cabecera de intérprete de programa"
#: lexsup.c:161
msgid "LIBNAME"
msgstr "NOMBREBIB"
#: lexsup.c:161
msgid "Search for library LIBNAME"
msgstr "Busca la biblioteca NOMBREBIB"
#: lexsup.c:163
msgid "DIRECTORY"
msgstr "DIRECTORIO"
#: lexsup.c:163
msgid "Add DIRECTORY to library search path"
msgstr "Agrega el DIRECTORIO a la ruta de búsqueda de bibliotecas"
#: lexsup.c:166
msgid "Override the default sysroot location"
msgstr "Sobreescribe la ubicación de sysroot por defecto"
#: lexsup.c:168
msgid "EMULATION"
msgstr "EMULACIÓN"
#: lexsup.c:168
msgid "Set emulation"
msgstr "Establece la emulación"
#: lexsup.c:170
msgid "Print map file on standard output"
msgstr "Muestra el fichero mapa en la salida estándar"
#: lexsup.c:172
msgid "Do not page align data"
msgstr "No pagina los datos alineados"
#: lexsup.c:174
msgid "Do not page align data, do not make text readonly"
msgstr "No pagina los datos alineados, no hace el texto de sólo lectura"
#: lexsup.c:177
msgid "Page align data, make text readonly"
msgstr "Pagina los datos alineados, hace el texto de sólo lectura"
#: lexsup.c:180
msgid "Set output file name"
msgstr "Establece el nombre del fichero de salida"
#: lexsup.c:182
msgid "Optimize output file"
msgstr "Optimiza la salida del fichero"
#: lexsup.c:184
msgid "Generate import library"
msgstr "Genera biblioteca de importación"
#: lexsup.c:187 lexsup.c:201
msgid "PLUGIN"
msgstr "PLUGIN"
#: lexsup.c:187
msgid "Load named plugin"
msgstr "Carga el plugin nombrado"
#: lexsup.c:189 lexsup.c:203
msgid "ARG"
msgstr "ARG"
#: lexsup.c:189
msgid "Send arg to last-loaded plugin"
msgstr "Envía el argumento al último plugin cargado"
#: lexsup.c:191
msgid "Store plugin intermediate files permanently"
msgstr "Almacena los ficheros intermedios de «plugin» permanentemente"
#: lexsup.c:194 lexsup.c:197
msgid "Ignored for GCC LTO option compatibility"
msgstr "Se descarta por compatibilidad con LTO de GCC"
#: lexsup.c:201
msgid "Load named plugin (ignored)"
msgstr "Carga el plugin nombrado (ignorado)"
#: lexsup.c:203
msgid "Send arg to last-loaded plugin (ignored)"
msgstr "Envía el argumento al último plugin cargado (ignorado)"
#: lexsup.c:206
msgid "Ignored for GCC linker option compatibility"
msgstr "Se descarta por compatibilidad con opción del enlazador de GCC"
#: lexsup.c:209 lexsup.c:212
msgid "Ignored for gold option compatibility"
msgstr "Se descarta por compatibilidad con opción oro de GCC"
#: lexsup.c:215
msgid "Ignored for SVR4 compatibility"
msgstr "Se descarta por compatibilidad con SVR4"
#: lexsup.c:219
msgid "Generate relocatable output"
msgstr "Genera salida reubicable"
#: lexsup.c:223
msgid "Just link symbols (if directory, same as --rpath)"
msgstr "Sólo enlaza símbolos (si es un directorio, es igual que --rpath)"
#: lexsup.c:229
msgid "PATTERN=FILE"
msgstr "PATRÓN=FICHERO"
#: lexsup.c:232
msgid "Strip all symbols"
msgstr "Descarta todos los símbolos"
#: lexsup.c:234
msgid "Strip debugging symbols"
msgstr "Descarta los símbolos de depuración"
#: lexsup.c:236
msgid "Strip symbols in discarded sections"
msgstr "Descarta símbolos en las secciones descartadas"
#: lexsup.c:238
msgid "Do not strip symbols in discarded sections"
msgstr "No descarta símbolos en las secciones descartadas"
#: lexsup.c:240
msgid "Trace file opens"
msgstr "Rastrea la apertura de ficheros"
#: lexsup.c:242
msgid "Read linker script"
msgstr "Lee el guión del enlazador"
#: lexsup.c:244
msgid "Read default linker script"
msgstr "Lee el guión del enlazador por defecto"
#: lexsup.c:248 lexsup.c:251 lexsup.c:269 lexsup.c:361 lexsup.c:385
#: lexsup.c:509 lexsup.c:544 lexsup.c:556 lexsup.c:615 lexsup.c:618
msgid "SYMBOL"
msgstr "SÍMBOLO"
#: lexsup.c:248
msgid "Start with undefined reference to SYMBOL"
msgstr "Inicia con una referencia sin definir hacia el SÍMBOLO"
#: lexsup.c:251
msgid "Require SYMBOL be defined in the final output"
msgstr "Requiere que se defina SÍMBOLO en la salida final"
#: lexsup.c:254
msgid "[=SECTION]"
msgstr "[=SECCIÓN]"
#: lexsup.c:255
msgid "Don't merge input [SECTION | orphan] sections"
msgstr "No mezcla secciones de entrada [SECCIÓN | huérfanas]"
#: lexsup.c:257
msgid "Build global constructor/destructor tables"
msgstr "Construye tablas globales de constructores/destructores"
#: lexsup.c:259
msgid "Print version information"
msgstr "Muestra la información de la versión"
#: lexsup.c:261
msgid "Print version and emulation information"
msgstr "Muestra la información de la versión y de la emulación"
#: lexsup.c:263
msgid "Discard all local symbols"
msgstr "Descarta todos los símbolos locales"
#: lexsup.c:265
msgid "Discard temporary local symbols (default)"
msgstr "Descarta los símbolos locales temporales (opción predefinida)"
#: lexsup.c:267
msgid "Don't discard any local symbols"
msgstr "No descarta ningún símbolo local"
#: lexsup.c:269
msgid "Trace mentions of SYMBOL"
msgstr "Rastrea las menciones del SÍMBOLO"
#: lexsup.c:271 lexsup.c:467 lexsup.c:469
msgid "PATH"
msgstr "RUTA"
#: lexsup.c:271
msgid "Default search path for Solaris compatibility"
msgstr "Ruta de búsqueda por defecto para compatibilidad con Solaris"
#: lexsup.c:274
msgid "Start a group"
msgstr "Inicia un grupo"
#: lexsup.c:276
msgid "End a group"
msgstr "Termina un grupo"
#: lexsup.c:280
msgid "Accept input files whose architecture cannot be determined"
msgstr "Acepta ficheros de entrada cuya arquitectura no se pueda determinar"
#: lexsup.c:284
msgid "Reject input files whose architecture is unknown"
msgstr "Rechaza ficheros de entrada cuya arquitectura es desconocida"
#: lexsup.c:296
msgid "Only set DT_NEEDED for following dynamic libs if used"
msgstr "Sólo establece DT_NEEDED para las siguientes bibliotecas dinámicas si se usan"
#: lexsup.c:299
msgid ""
"Always set DT_NEEDED for dynamic libraries mentioned on\n"
" the command line"
msgstr ""
"Siempre establece DT_NEEDED para las bibliotecas dinámicas\n"
" mencionadas en la línea de órdenes"
#: lexsup.c:303
msgid "Ignored for SunOS compatibility"
msgstr "Se descarta por compatibilidad con SunOS"
#: lexsup.c:305
msgid "Link against shared libraries"
msgstr "Enlaza contra bibliotecas compartidas"
#: lexsup.c:311
msgid "Do not link against shared libraries"
msgstr "No enlaza contra bibliotecas compartidas"
#: lexsup.c:319
msgid "Don't bind global references locally"
msgstr "No asocia localmente las referencias globales"
#: lexsup.c:321
msgid "Bind global references locally"
msgstr "Asocia localmente las referencias globlales"
#: lexsup.c:323
msgid "Bind global function references locally"
msgstr "Asocia localmente las referencias a función globales"
#: lexsup.c:325
msgid "Check section addresses for overlaps (default)"
msgstr "Revisa las direcciones de las secciones por traslapes (por defecto)"
#: lexsup.c:328
msgid "Do not check section addresses for overlaps"
msgstr "No revisa las direcciones de las secciones por traslapes"
#: lexsup.c:332
msgid "Copy DT_NEEDED links mentioned inside DSOs that follow"
msgstr "Copia los enlaces DT_NEEDED mencionados dentro de los DSOs a continuación"
#: lexsup.c:336
msgid "Do not copy DT_NEEDED links mentioned inside DSOs that follow"
msgstr "No copia los enlaces DT_NEEDED mencionados dentro de los DSOs a continuación"
#: lexsup.c:340
msgid "Output cross reference table"
msgstr "Muestra la tabla de referencias cruzadas"
#: lexsup.c:342
msgid "SYMBOL=EXPRESSION"
msgstr "SÍMBOLO=EXPRESIÓN"
#: lexsup.c:342
msgid "Define a symbol"
msgstr "Define un símbolo"
#: lexsup.c:344
msgid "[=STYLE]"
msgstr "[=ESTILO]"
#: lexsup.c:344
msgid "Demangle symbol names [using STYLE]"
msgstr "Desenreda los nombres de los símbolos [utilizando el ESTILO]"
#: lexsup.c:348
msgid ""
"Do not allow multiple definitions with symbols included\n"
" in filename invoked by -R or --just-symbols"
msgstr ""
"No permite definiciones múltiples con símbolos incluidos en el nombre\n"
" de fichero invocado por -R o --just-symbols"
# No me convence mucho la traducción de `embedded' por imbuído. cfuga
#: lexsup.c:353
msgid "Generate embedded relocs"
msgstr "Genera reubicaciones imbuídas"
#: lexsup.c:355
msgid "Treat warnings as errors"
msgstr "Trata los avisos como errores"
#: lexsup.c:358
msgid "Do not treat warnings as errors (default)"
msgstr "No trata los avisos como errores (por defecto)"
#: lexsup.c:361
msgid "Call SYMBOL at unload-time"
msgstr "Llama al SÍMBOLO al momento de descargar"
#: lexsup.c:363
msgid "Force generation of file with .exe suffix"
msgstr "Fuerza la generación del fichero con sufijo .exe"
#: lexsup.c:365
msgid "Remove unused sections (on some targets)"
msgstr "Elimina las secciones sin uso (en algunos objetivos)"
#: lexsup.c:368
msgid "Don't remove unused sections (default)"
msgstr "No elimina las secciones sin uso (por defecto)"
#: lexsup.c:371
msgid "List removed unused sections on stderr"
msgstr "Muestra las secciones sin uso eliminadas en la salida de error estándar"
#: lexsup.c:374
msgid "Do not list removed unused sections"
msgstr "No muestra las secciones sin uso eliminadas"
#: lexsup.c:377
msgid "Keep exported symbols when removing unused sections"
msgstr "Mantiene los símbolos exportados cuando se quitan secciones sin uso"
#: lexsup.c:380
msgid "Set default hash table size close to <NUMBER>"
msgstr "Establece el tamaño de de la tabla de dispersión cercano al <NÚMERO>"
#: lexsup.c:383
msgid "Print option help"
msgstr "Muestra la ayuda de opciones"
#: lexsup.c:385
msgid "Call SYMBOL at load-time"
msgstr "Llama al SÍMBOLO al momento de cargar"
#: lexsup.c:387
msgid "FILE/DIR"
msgstr "FICHERO/DIR"
#: lexsup.c:387
msgid "Write a linker map to FILE or DIR/<outputname>.map"
msgstr "Escribe un mapa de enlazador en FICHERO o DIR/<nombresalida>.map"
#: lexsup.c:389
msgid "Do not define Common storage"
msgstr "No define almacenamiento Common"
#: lexsup.c:391
msgid "Do not demangle symbol names"
msgstr "No desenreda los nombres de los símbolos"
#: lexsup.c:393
msgid "Use less memory and more disk I/O"
msgstr "Usa menos memoria y más E/S de disco"
#: lexsup.c:395
msgid "Do not allow unresolved references in object files"
msgstr "No permite referencias sin resolver en ficheros objeto"
#: lexsup.c:398
msgid "Do not display any warning or error messages"
msgstr "No muestra mensajes de aviso ni error"
#: lexsup.c:401
msgid "Allow unresolved references in shared libraries"
msgstr "Permite referencias sin resolver en bibliotecas compartidas"
#: lexsup.c:405
msgid "Do not allow unresolved references in shared libs"
msgstr "No permite referencias sin resolver en bibliotecas compartidas"
#: lexsup.c:409
msgid "Allow multiple definitions"
msgstr "Permite definiciones múltiples"
#: lexsup.c:413
msgid "SCRIPT"
msgstr "SCRIPT"
#: lexsup.c:413
msgid "Provide a script to help with undefined symbol errors"
msgstr "Ofrece un script de ayuda para errores de símbolos indefinidos"
#: lexsup.c:416
msgid "Allow undefined version"
msgstr "Permite versiones sin definir"
#: lexsup.c:418
msgid "Disallow undefined version"
msgstr "No permite versiones sin definir"
#: lexsup.c:420
msgid "Create default symbol version"
msgstr "Crea la versión de símbolo por defecto"
#: lexsup.c:423
msgid "Create default symbol version for imported symbols"
msgstr "Crea la versión de símbolo por defecto para símbolos importados"
#: lexsup.c:426
msgid "Don't warn about mismatched input files"
msgstr "No avisa sobre ficheros de entrada sin coincidencia"
#: lexsup.c:429
msgid "Don't warn on finding an incompatible library"
msgstr "No avisa al encontrar una biblioteca incompatible"
#: lexsup.c:432
msgid "Turn off --whole-archive"
msgstr "Apaga --whole-archive"
#: lexsup.c:434
msgid "Create an output file even if errors occur"
msgstr "Crea un fichero de salida aún si ocurren errores"
#: lexsup.c:439
msgid ""
"Only use library directories specified on\n"
" the command line"
msgstr ""
"Utiliza solamente los directorios de bibliotecas\n"
" especificados en la línea de órdenes"
#: lexsup.c:443
msgid "Specify target of output file"
msgstr "Especifica el objetivo del fichero de salida"
#: lexsup.c:446
msgid "Print default output format"
msgstr "Muestra el formato de salida por defecto"
#: lexsup.c:448
msgid "Print current sysroot"
msgstr "Muestra el sysroot actual"
#: lexsup.c:450
msgid "Ignored for Linux compatibility"
msgstr "Se descarta por compatibilidad con Linux"
#: lexsup.c:453
msgid "Reduce memory overheads, possibly taking much longer"
msgstr "Reduce las saturaciones de memoria, tal vez tomando más tiempo"
#: lexsup.c:457
msgid "Set the maximum cache size to SIZE bytes"
msgstr "Establece el tamaño máximo de caché en TAMAÑO bytes"
#: lexsup.c:460
msgid "Reduce code size by using target specific optimizations"
msgstr "Reduce el tamaño del código usando optimizaciones específicas del objetivo"
#: lexsup.c:462
msgid "Do not use relaxation techniques to reduce code size"
msgstr "No utiliza técnicas de relajación para reducir el tamaño del código"
#: lexsup.c:465
msgid "Keep only symbols listed in FILE"
msgstr "Conserva solamente los símbolos enlistados en el FICHERO"
#: lexsup.c:467
msgid "Set runtime shared library search path"
msgstr "Establece la ruta de búsqueda de bibliotecas compartidas en tiempo de ejecución"
#: lexsup.c:469
msgid "Set link time shared library search path"
msgstr "Establece la ruta de búsqueda de bibliotecas compartidas en tiempo de enlace"
#: lexsup.c:472
msgid "Create a shared library"
msgstr "Crea una biblioteca compartida"
#: lexsup.c:476
msgid "Create a position independent executable"
msgstr "Crea un ejecutable independiente de posición"
#: lexsup.c:480
msgid "Create a position dependent executable (default)"
msgstr "Crea un ejecutable dependiente de posición (por defecto)"
#: lexsup.c:482
msgid "[=ascending|descending]"
msgstr "[=ascending|descending]"
#: lexsup.c:483
msgid "Sort common symbols by alignment [in specified order]"
msgstr "Ordena los símbolos comunes por alineación [en orden específico]"
#: lexsup.c:488
msgid "name|alignment"
msgstr "nombre|alineación"
#: lexsup.c:489
msgid "Sort sections by name or maximum alignment"
msgstr "Ordena secciones por nombre o alineación máxima"
#: lexsup.c:492
msgid "Sort sections by statements in FILE"
msgstr "Ordena las secciones por instrucciones en FICHERO"
#: lexsup.c:494
msgid "COUNT"
msgstr "CUENTA"
#: lexsup.c:494
msgid "How many tags to reserve in .dynamic section"
msgstr "Cúantas marcas reserva en la sección .dynamic"
#: lexsup.c:497
msgid "[=SIZE]"
msgstr "[=TAMAÑO]"
#: lexsup.c:497
msgid "Split output sections every SIZE octets"
msgstr "Divide las secciones de salida cada TAMAÑO octetos"
#: lexsup.c:500
msgid "[=COUNT]"
msgstr "[=CUENTA]"
#: lexsup.c:500
msgid "Split output sections every COUNT relocs"
msgstr "Divide las secciones de salida cada CUENTA reubicaciones"
#: lexsup.c:503
msgid "Print resource usage statistics"
msgstr "Muestra las estadísticas de uso de recursos"
#: lexsup.c:505
msgid "Do not print resource usage statistics"
msgstr "No muestra las estadísticas de uso de recursos"
#: lexsup.c:507
msgid "Display target specific options"
msgstr "Muestra las opciones específicas del objetivo"
#: lexsup.c:509
msgid "Do task level linking"
msgstr "Enlaza a nivel de tarea"
#: lexsup.c:511
msgid "Use same format as native linker"
msgstr "Usa el mismo formato que el enlazador nativo"
#: lexsup.c:513
msgid "SECTION=ADDRESS"
msgstr "SECCIÓN=DIRECCIÓN"
#: lexsup.c:513
msgid "Set address of named section"
msgstr "Establece la dirección de la sección nombrada"
#: lexsup.c:516
msgid "Set image base address"
msgstr "Establece la dirección base de la imagen"
#: lexsup.c:518
msgid "Set address of .bss section"
msgstr "Establece la dirección de la sección .bss"
#: lexsup.c:520
msgid "Set address of .data section"
msgstr "Establece la dirección de la sección .data"
#: lexsup.c:522
msgid "Set address of .text section"
msgstr "Establece la dirección de la sección .text"
#: lexsup.c:524
msgid "Set address of text segment"
msgstr "Establece la dirección del segmento de texto"
#: lexsup.c:526
msgid "Set address of rodata segment"
msgstr "Establece la dirección del segmento de datos de solo lectura"
#: lexsup.c:528
msgid "Set address of ldata segment"
msgstr "Establece la dirección del segmento de datos (ldata)"
#: lexsup.c:531
msgid ""
"How to handle unresolved symbols. <method> is:\n"
" ignore-all, report-all, ignore-in-object-files,\n"
" ignore-in-shared-libs"
msgstr ""
"Cómo manejar símbolos sin resolver. <método> es:\n"
" ignore-all, report-all, ignore-in-object-files,\n"
" ignore-in-shared-libs"
#: lexsup.c:536
msgid "[=NUMBER]"
msgstr "[=NÚMERO]"
#: lexsup.c:537
msgid "Output lots of information during link"
msgstr "Muestra mucha información durante el enlace"
#: lexsup.c:541
msgid "Read version information script"
msgstr "Lee la información de la versión del guión"
#: lexsup.c:544
msgid ""
"Take export symbols list from .exports, using\n"
" SYMBOL as the version."
msgstr ""
"Toma la lista de exportación de símbolos de .exports, usando\n"
" el SÍMBOLO como la versión."
#: lexsup.c:548
msgid "Add data symbols to dynamic list"
msgstr "Agrega símbolos de datos a la lista dinámica"
#: lexsup.c:550
msgid "Use C++ operator new/delete dynamic list"
msgstr "Usa la lista dinámica de los operadores de C++ new/delete"
#: lexsup.c:552
msgid "Use C++ typeinfo dynamic list"
msgstr "Usa la lista dinámica de tipo de dato de C++"
#: lexsup.c:554
msgid "Read dynamic list"
msgstr "Lee la lista dinámica"
#: lexsup.c:556
msgid "Export the specified symbol"
msgstr "Exporta el símbolo especificado"
#: lexsup.c:558
msgid "Read export dynamic symbol list"
msgstr "Lee la lista de los símbolos dinámicos exportados"
#: lexsup.c:560
msgid "Warn about duplicate common symbols"
msgstr "Avisa sobre símbolos comunes duplicados"
#: lexsup.c:562
msgid "Warn if global constructors/destructors are seen"
msgstr "Avisa si se ven constructores/destructores globales"
#: lexsup.c:586
msgid "Warn if the multiple GP values are used"
msgstr "Avisa si se usan valores múltiples de GP"
#: lexsup.c:588
msgid "Warn only once per undefined symbol"
msgstr "Avisa sólo una vez por cada símbolo sin definir"
#: lexsup.c:590
msgid "Warn if start of section changes due to alignment"
msgstr "Avisa si el inicio de la sección cambia debido a la alineación"
#: lexsup.c:595
msgid "Warn if output has DT_TEXTREL (default)"
msgstr "Avisa si la salida tiene DT_TEXTREL (lo predefinido)"
#: lexsup.c:597
msgid "Warn if output has DT_TEXTREL"
msgstr "Avisa si la salida tiene DT_TEXTREL"
#: lexsup.c:603
msgid "Warn if an object has alternate ELF machine code"
msgstr "Avisa si el objeto tiene código máquina ELF alternativo"
#: lexsup.c:607
msgid "Report unresolved symbols as warnings"
msgstr "Reporta símbolos sin resolver como avisos"
#: lexsup.c:610
msgid "Report unresolved symbols as errors"
msgstr "Reporta símbolos sin resolver como errores"
#: lexsup.c:612
msgid "Include all objects from following archives"
msgstr "Incluye todos los objetos de los siguientes ficheros"
#: lexsup.c:615
msgid "Use wrapper functions for SYMBOL"
msgstr "Usa funciones de envoltura para el SÍMBOLO"
#: lexsup.c:619
msgid "Unresolved SYMBOL will not cause an error or warning"
msgstr "SÍMBOLO no resuelto no provocará error ni aviso"
#: lexsup.c:621
msgid "Push state of flags governing input file handling"
msgstr "Apila («push») el estado de los indicadores que gobiernan el manejo del fichero de entrada"
#: lexsup.c:624
msgid "Pop state of flags governing input file handling"
msgstr "Retira («pop») el estado de los indicadores que gobiernan el manejo del fichero de entrada"
#: lexsup.c:627
msgid "Report target memory usage"
msgstr "Informa sobre el uso de memoria del objetivo"
#: lexsup.c:629
msgid "=MODE"
msgstr "=MODO"
#: lexsup.c:629
msgid "Control how orphan sections are handled."
msgstr "Controla cómo manejar las secciones huérfanas"
#: lexsup.c:632
msgid "Show discarded sections in map file output (default)"
msgstr "Muestra secciones descartadas en la salida del fichero de mapa (opción predefinida)"
#: lexsup.c:635
msgid "Do not show discarded sections in map file output"
msgstr "No muestra secciones descartadas en la salida del fichero de mapa"
#: lexsup.c:638
msgid "Show local symbols in map file output"
msgstr "Muestra los símbolos locales en la salida del fichero de mapa"
#: lexsup.c:641
msgid "Do not show local symbols in map file output (default)"
msgstr "No muestra los símbolos locales en la salida del fichero de mapa (opción predefinida)"
#: lexsup.c:644
msgid "Emit names and types of static variables in CTF"
msgstr "Emite nombres y tipos de variables estáticas en CTF"
#: lexsup.c:647
msgid "Do not emit names and types of static variables in CTF"
msgstr "No emite nombres ni tipos de variables estáticas en CTF"
#: lexsup.c:651
msgid ""
"How to share CTF types between translation units.\n"
" <method> is: share-unconflicted (default),\n"
" share-duplicated"
msgstr ""
"Cómo compartir tipos CTF entre unidades de traducción.\n"
" <method> es: share-unconflicted (predefinido),\n"
" share-duplicated"
#: lexsup.c:815
msgid "%P: Error: unable to disambiguate: %s (did you mean -%s ?)\n"
msgstr "%P: Error: no se puede desambiguar: %s (¿quiso decir -%s ?)\n"
#: lexsup.c:819
msgid "%P: Warning: grouped short command line options are deprecated: %s\n"
msgstr "%P: Aviso: la agrupación de opciones abreviadas en la línea de órdenes es obsoleta: %s\n"
#: lexsup.c:846
msgid "%P: %s: missing argument\n"
msgstr "%P: %s: falta el argumento\n"
#: lexsup.c:851
msgid "%P: unrecognized option '%s'\n"
msgstr "%P: no se reconoce la opción `%s'\n"
#: lexsup.c:856
msgid "%P: use the --help option for usage information\n"
msgstr "%P: use la opción --help para información de modo de empleo\n"
#: lexsup.c:875
msgid "%P: unrecognized -a option `%s'\n"
msgstr "%P: no se reconoce la opción -a `%s'\n"
#: lexsup.c:888
msgid "%P: unrecognized -assert option `%s'\n"
msgstr "%P: no se reconoce la opción -assert `%s'\n"
#: lexsup.c:932
msgid "%P: unknown demangling style `%s'\n"
msgstr "%P: estilo de desenredo `%s' desconocido\n"
#: lexsup.c:1039 lexsup.c:1545 eaarch64cloudabi.c:1021 eaarch64cloudabib.c:1021
#: eaarch64elf.c:1026 eaarch64elf32.c:1026 eaarch64elf32b.c:1026
#: eaarch64elfb.c:1026 eaarch64fbsd.c:1026 eaarch64fbsdb.c:1026
#: eaarch64haiku.c:1021 eaarch64linux.c:1026 eaarch64linux32.c:1026
#: eaarch64linux32b.c:1026 eaarch64linuxb.c:1026 eaarch64nto.c:1183
#: earmelf.c:1135 earmelf_fbsd.c:1135 earmelf_fuchsia.c:1140
#: earmelf_haiku.c:1140 earmelf_linux.c:1140 earmelf_linux_eabi.c:1140
#: earmelf_linux_fdpiceabi.c:1140 earmelf_nacl.c:1140 earmelf_nbsd.c:1135
#: earmelf_phoenix.c:1140 earmelf_vxworks.c:1167 earmelfb.c:1135
#: earmelfb_fbsd.c:1135 earmelfb_fuchsia.c:1140 earmelfb_linux.c:1140
#: earmelfb_linux_eabi.c:1140 earmelfb_linux_fdpiceabi.c:1140
#: earmelfb_nacl.c:1140 earmelfb_nbsd.c:1135 earmnto.c:1095 ecskyelf.c:602
#: ecskyelf_linux.c:789 eelf32metag.c:788 eelf64lppc.c:1226
#: eelf64lppc_fbsd.c:1226 eelf64ppc.c:1226 eelf64ppc_fbsd.c:1226 ehppaelf.c:613
#: ehppalinux.c:825 ehppanbsd.c:825 ehppaobsd.c:825
msgid "%P: invalid number `%s'\n"
msgstr "%P: número `%s' inválido\n"
#: lexsup.c:1135
msgid "%P: bad --unresolved-symbols option: %s\n"
msgstr "%P: opción --unresolved-symbols errónea: %s\n"
#: lexsup.c:1222
msgid "%P: bad -plugin-opt option\n"
msgstr "%P: opción -plugin-opt errónea\n"
#. This can happen if the user put "-rpath,a" on the command
#. line. (Or something similar. The comma is important).
#. Getopt becomes confused and thinks that this is a -r option
#. but it cannot parse the text after the -r so it refuses to
#. increment the optind counter. Detect this case and issue
#. an error message here. We cannot just make this a warning,
#. increment optind, and continue because getopt is too confused
#. and will seg-fault the next time around.
#: lexsup.c:1242
msgid "%P: unrecognised option: %s\n"
msgstr "%P: no se reconoce la opción %s\n"
#: lexsup.c:1245 lexsup.c:1355 lexsup.c:1376 lexsup.c:1514
msgid "%P: -r and %s may not be used together\n"
msgstr "%P: no se pueden usar juntos -r y %s\n"
#: lexsup.c:1367
msgid "%P: -shared not supported\n"
msgstr "%P: no se admite -shared\n"
#: lexsup.c:1381
msgid "%P: -pie not supported\n"
msgstr "%P: no se admite -pie\n"
#: lexsup.c:1387
msgid "%P: SONAME must not be empty string; keeping previous one\n"
msgstr "%P: SONAME no debe ser una cadena vacía: se conserva la anterior\n"
#: lexsup.c:1393
msgid "descending"
msgstr "descendente"
#: lexsup.c:1395
msgid "ascending"
msgstr "ascendente"
#: lexsup.c:1398
msgid "%P: invalid common section sorting option: %s\n"
msgstr "%P: opción de ordenado de sección común inválida: %s\n"
#: lexsup.c:1402
msgid "name"
msgstr "nombre"
#: lexsup.c:1404
msgid "alignment"
msgstr "alineación"
#: lexsup.c:1407
msgid "%P: invalid section sorting option: %s\n"
msgstr "%P: opción de ordenado de sección inválida: %s\n"
#: lexsup.c:1412
msgid "%P: warning: section ordering file changed. Ignoring earlier definition\n"
msgstr "%P: aviso: el fichero de ordenado de secciones ha cambiado. Se descarta la definición anterior\n"
#: lexsup.c:1460
msgid "%P: invalid argument to option \"--section-start\"\n"
msgstr "%P: argumento inválido para la opción \"--section-start\"\n"
#: lexsup.c:1467
msgid "%P: missing argument(s) to option \"--section-start\"\n"
msgstr "%P: falta(n) argumento(s) para la opción \"--section-start\"\n"
#: lexsup.c:1740
msgid "%P: group ended before it began (--help for usage)\n"
msgstr "%P: el grupo terminó antes de empezar (--help para modo de empleo)\n"
#: lexsup.c:1756
msgid "%P: failed to add remap file %s\n"
msgstr "%P: fallo al añadir el fichero de reasignación %s\n"
#. FIXME: Should we allow --remap-inputs=@myfile as a synonym
#. for --remap-inputs-file=myfile ?
#: lexsup.c:1765
msgid "%P: invalid argument to option --remap-inputs\n"
msgstr "%P: argumento inválido para la opción --remap--inputs\n"
#: lexsup.c:1786
msgid "%P: invalid cache memory size: %s\n"
msgstr "%P: tamaño de memoria caché no válido: %s\n"
#: lexsup.c:1799
msgid "%X%P: --hash-size needs a numeric argument\n"
msgstr "%X%P: --hash-size necesita un argumento numérico\n"
#: lexsup.c:1811
msgid "%P: no state pushed before popping\n"
msgstr "%P: no se apiló («push») ningún estado con anterioridad a retirarlo («pop»)\n"
#: lexsup.c:1834
msgid "%P: invalid argument to option \"--orphan-handling\"\n"
msgstr "%P: argumento inválido para la opción \"--orphan-handling\"\n"
#: lexsup.c:1872
msgid "%P: bad --ctf-share-types option: %s\n"
msgstr "%P: opción --ctf-share-types errónea: %s\n"
#: lexsup.c:1889
msgid "%P: no file/directory name provided for map output; ignored\n"
msgstr "%P: no se ha proporcionado nombre de fichero/directorio para la salida de mapas; se hace caso omiso\n"
#: lexsup.c:1917
msgid "%P: cannot stat linker map file: %E\n"
msgstr "%P: no se puede el estado del fichero de mapa del enlazador: %E\n"
#: lexsup.c:1928
msgid "%P: linker map file is not a regular file\n"
msgstr "%P: el fichero de mapa del enlazador no es un fichero normal\n"
#: lexsup.c:1943
msgid "%P: SONAME must not be empty string; ignored\n"
msgstr "%P: SONAME no debe ser una cadena vacía: se descarta\n"
#: lexsup.c:1949
msgid "%P: missing --end-group; added as last command line option\n"
msgstr "%P: falta --end-group; añadida como última opción de la línea de órdenes\n"
#: lexsup.c:2038
msgid "%P: -r and -z nosectionheader may not be used together\n"
msgstr "%P: no se pueden usar juntos -r y -z numcabecerasección\n"
#: lexsup.c:2046
msgid "%P: -F may not be used without -shared\n"
msgstr "%P: no se puede usar -F sin -shared\n"
#: lexsup.c:2048
msgid "%P: -f may not be used without -shared\n"
msgstr "%P: no se puede usar -f sin -shared\n"
#: lexsup.c:2089 lexsup.c:2102
msgid "%P: invalid hex number `%s'\n"
msgstr "%P: número hexadecimal `%s' inválido\n"
#: lexsup.c:2132
#, c-format
msgid " --audit=AUDITLIB Specify a library to use for auditing\n"
msgstr " --audit=AUDITLIB Especifica una biblioteca para auditoría\n"
# DLL son las siglas en inglés de `Biblioteca de Enlace Dinámico'.
# El problema es que las siglas en español (BED) no están muy extendidas.
# Se dejó `DLL' sin traducir en todas las ocasiones. cfuga
#: lexsup.c:2134
#, c-format
msgid " -Bgroup Selects group name lookup rules for DSO\n"
msgstr " -Bgroup Selecciona las reglas de búsqueda de nombre de grupo para DSO\n"
#: lexsup.c:2136
#, c-format
msgid " --disable-new-dtags Disable new dynamic tags\n"
msgstr " --disable-new-dtags Desactiva etiquetas dinámicas nuevas\n"
#: lexsup.c:2138
#, c-format
msgid " --enable-new-dtags Enable new dynamic tags\n"
msgstr " --enable-new-dtags Activa etiquetas dinámicas nuevas\n"
#: lexsup.c:2140
#, c-format
msgid " --eh-frame-hdr Create .eh_frame_hdr section\n"
msgstr " --eh-frame-hdr Crea sección .eh_frame_hdr\n"
#: lexsup.c:2142
#, c-format
msgid " --no-eh-frame-hdr Do not create .eh_frame_hdr section\n"
msgstr " --no-eh-frame-hdr No crea sección .eh_frame_hdr\n"
#: lexsup.c:2144
#, c-format
msgid " --exclude-libs=LIBS Make all symbols in LIBS hidden\n"
msgstr " --exclude-libs=LIBS Hace ocultos todos los símbolos en LIBS\n"
#: lexsup.c:2146
#, c-format
msgid " --hash-style=STYLE Set hash style to sysv/gnu/both. Default: "
msgstr " --hash-style=ESTILO Establece el estilo «hash» a sysv/gnu/both. Predefinido: "
#: lexsup.c:2165
#, c-format
msgid ""
" -P AUDITLIB, --depaudit=AUDITLIB\n"
" Specify a library to use for auditing dependencies\n"
msgstr ""
" -P AUDITLIB, --depaudit=AUDITLIB\n"
" Especifica una biblioteca para auditar dependencias\n"
#: lexsup.c:2168
#, c-format
msgid " -z combreloc Merge dynamic relocs into one section and sort\n"
msgstr ""
" -z combreloc Funde las reubicaciones dinámicas en una sola\n"
" sección y las ordena\n"
#: lexsup.c:2170
#, c-format
msgid " -z nocombreloc Don't merge dynamic relocs into one section\n"
msgstr ""
" -z nocombreloc No funde las reubicaciones dinámicas en una\n"
" sola sección\n"
#: lexsup.c:2172
#, c-format
msgid ""
" -z global Make symbols in DSO available for subsequently\n"
" loaded objects\n"
msgstr ""
" -z global Hace disponibles los símbolos en DSO a los\n"
" objetos cargados posteriormente\n"
#: lexsup.c:2175
#, c-format
msgid " -z initfirst Mark DSO to be initialized first at runtime\n"
msgstr ""
" -z initfirst Marca el DSO para ser inicialiado al principio\n"
" en tiempo de ejecución\n"
#: lexsup.c:2177
#, c-format
msgid " -z interpose Mark object to interpose all DSOs but executable\n"
msgstr ""
" -z interpose Marca el objeto para interponer todos los DSOs\n"
" menos los ejecutables\n"
#: lexsup.c:2179
#, c-format
msgid " -z unique Mark DSO to be loaded at most once by default, and only in the main namespace\n"
msgstr ""
" -z unique Marca el DSO para que el comportamiento predefinido sea\n"
" cargarlo una vez como máximo y solo en el espacio\n"
" de nombres principal\n"
#: lexsup.c:2181
#, c-format
msgid " -z nounique Don't mark DSO as a loadable at most once\n"
msgstr " -z nounique No marca el DSO como cargable una vez como máximo\n"
#: lexsup.c:2183
#, c-format
msgid " -z lazy Mark object lazy runtime binding (default)\n"
msgstr ""
" -z lazy Señala enlace perezoso de objetos en tiempo\n"
" de ejecución (opción predefinida)\n"
#: lexsup.c:2185
#, c-format
msgid " -z loadfltr Mark object requiring immediate process\n"
msgstr " -z loadfltr Indica que el objeto requiere procesamiento inmediato\n"
#: lexsup.c:2187
#, c-format
msgid " -z nocopyreloc Don't create copy relocs\n"
msgstr " -z nocopyreloc No crea reubicaciones copia\n"
#: lexsup.c:2189
#, c-format
msgid " -z nodefaultlib Mark object not to use default search paths\n"
msgstr " -z nodefaultlib Indica que el objeto no utilizará rutas de búsqueda predeterminadas\n"
#: lexsup.c:2191
#, c-format
msgid " -z nodelete Mark DSO non-deletable at runtime\n"
msgstr " -z nodelete Indica que el DSO no es borrable en tiempo de ejecución\n"
#: lexsup.c:2193
#, c-format
msgid " -z nodlopen Mark DSO not available to dlopen\n"
msgstr " -z nodlopen Indica que el DSO no está disponible para dlopen\n"
#: lexsup.c:2195
#, c-format
msgid " -z nodump Mark DSO not available to dldump\n"
msgstr " -z nodump Indica que el DSO no está disponible para dldump\n"
#: lexsup.c:2197
#, c-format
msgid " -z now Mark object non-lazy runtime binding\n"
msgstr " -z now Señala enlace no perezoso de objetos en tiempo de ejecución\n"
#: lexsup.c:2199
#, c-format
msgid ""
" -z origin Mark object requiring immediate $ORIGIN\n"
" processing at runtime\n"
msgstr ""
" -z origin Indica que el objeto requiere procesamiento\n"
" inmediato de $ORIGEN en tiempo de ejecución\n"
#: lexsup.c:2203
#, c-format
msgid " -z relro Create RELRO program header (default)\n"
msgstr " -z relro Crea cabecera de programa RELRO (opción predefinida)\n"
#: lexsup.c:2205
#, c-format
msgid " -z norelro Don't create RELRO program header\n"
msgstr " -z norelro No crea cabecera de programa RELRO\n"
#: lexsup.c:2208
#, c-format
msgid " -z relro Create RELRO program header\n"
msgstr " -z relro Crea cabecera de programa RELRO\n"
#: lexsup.c:2210
#, c-format
msgid " -z norelro Don't create RELRO program header (default)\n"
msgstr " -z norelro No crea cabecera de programa RELRO (opción predefinida)\n"
#: lexsup.c:2214
#, c-format
msgid " -z separate-code Create separate code program header (default)\n"
msgstr ""
" -z separate-code Crea cabecera de programa de código separado\n"
" (opción predefinida)\n"
#: lexsup.c:2216
#, c-format
msgid " -z noseparate-code Don't create separate code program header\n"
msgstr " -z noseparate-code No crea cabecera de programa de código separado\n"
#: lexsup.c:2219
#, c-format
msgid " -z separate-code Create separate code program header\n"
msgstr " -z separate-code Crea cabecera de programa de código separado\n"
#: lexsup.c:2221
#, c-format
msgid " -z noseparate-code Don't create separate code program header (default)\n"
msgstr ""
" -z noseparate-code No crea cabecera de programa de código separado\n"
" (opción predefinida)\n"
#: lexsup.c:2225
#, c-format
msgid " --rosegment With -z separate-code, create a single read-only segment (default)\n"
msgstr " --rosegment Con -z separate-code, crea un único segmento de solo lectura (opción predeterminada)\n"
#: lexsup.c:2227
#, c-format
msgid " --no-rosegment With -z separate-code, creste two read-only segments\n"
msgstr " --no-rosegment Con -z separate-code, crea dos segmentos de solo lectura\n"
#: lexsup.c:2230
#, c-format
msgid " --rosegment With -z separate-code, create a single read-only segment\n"
msgstr " --rosegment Con -z separate-code, crea un único segmento de solo lectura\n"
#: lexsup.c:2232
#, c-format
msgid " --no-rosegment With -z separate-code, creste two read-only segments (default)\n"
msgstr " --no-rosegment Con -z separate-code, crea dos segmentos de solo lectura (opción predeterminada)\n"
#: lexsup.c:2235
#, c-format
msgid " -z common Generate common symbols with STT_COMMON type\n"
msgstr " -z common Genera símbolos comunes con el tipo STT_COMMON\n"
#: lexsup.c:2237
#, c-format
msgid " -z nocommon Generate common symbols with STT_OBJECT type\n"
msgstr " -z nocommon Genera símbolos comunes con el tipo STT_OBJECT\n"
#: lexsup.c:2240
#, c-format
msgid " -z text Treat DT_TEXTREL in output as error (default)\n"
msgstr " -z text Trata DT_TEXTREL en la salida como error (lo predefinido)\n"
#: lexsup.c:2243
#, c-format
msgid " -z text Treat DT_TEXTREL in output as error\n"
msgstr " -z text Trata DT_TEXTREL en la salida como error\n"
#: lexsup.c:2247
#, c-format
msgid " -z notext Don't treat DT_TEXTREL in output as error (default)\n"
msgstr " -z notext No trata DT_TEXTREL en la salida como error (lo predefinido)\n"
#: lexsup.c:2249
#, c-format
msgid " -z textoff Don't treat DT_TEXTREL in output as error (default)\n"
msgstr " -z textoff No trata DT_TEXTREL en la salida como error (lo predefinido)\n"
#: lexsup.c:2254
#, c-format
msgid " -z notext Don't treat DT_TEXTREL in output as error\n"
msgstr " -z notext No trata DT_TEXTREL en la salida como error\n"
#: lexsup.c:2256
#, c-format
msgid " -z textoff Don't treat DT_TEXTREL in output as error\n"
msgstr " -z textoff No trata DT_TEXTREL en la salida como error\n"
#: lexsup.c:2260
#, c-format
msgid " -z memory-seal Mark object be memory sealed (default)\n"
msgstr " -z memory-seal Marca objeto sea sellado de memoria (opción predeterminada)\n"
#: lexsup.c:2262
#, c-format
msgid " -z nomemory-seal Don't mark oject to be memory sealed\n"
msgstr " -z nomemory-seal No marca objeto sea sellado de memoria\n"
#: lexsup.c:2265
#, c-format
msgid " -z memory-seal Mark object be memory sealed\n"
msgstr " -z memory-seal Marca objeto sea sellado de memoria\n"
#: lexsup.c:2267
#, c-format
msgid " -z nomemory-seal Don't mark oject to be memory sealed (default)\n"
msgstr " -z nomemory-seal No marca objeto sea sellado de memoria (opción predeterminada)\n"
#: lexsup.c:2275
#, c-format
msgid " --build-id[=STYLE] Generate build ID note\n"
msgstr " --build-id[=ESTILO] Genera nota de ID de «build»\n"
# DLL son las siglas en inglés de `Biblioteca de Enlace Dinámico'.
# El problema es que las siglas en español (BED) no están muy extendidas.
# Se dejó `DLL' sin traducir en todas las ocasiones. cfuga
#: lexsup.c:2279
#, c-format
msgid " Styles: none,md5,sha1,xx,uuid,0xHEX\n"
msgstr " Estilos: none,md5,sha1,xx,uuid,0xHEX\n"
# DLL son las siglas en inglés de `Biblioteca de Enlace Dinámico'.
# El problema es que las siglas en español (BED) no están muy extendidas.
# Se dejó `DLL' sin traducir en todas las ocasiones. cfuga
#: lexsup.c:2283
#, c-format
msgid " Styles: none,md5,sha1,uuid,0xHEX\n"
msgstr " Estilos: none,md5,sha1,uuid,0xHEX\n"
#: lexsup.c:2286
#, c-format
msgid " --package-metadata[=JSON] Generate package metadata note\n"
msgstr " --package-metadata[=JSON] Genera nota de metadatos del paquete\n"
#: lexsup.c:2288
#, c-format
msgid ""
" --compress-debug-sections=[none|zlib|zlib-gnu|zlib-gabi|zstd]\n"
"\t\t\t Compress DWARF debug sections\n"
msgstr ""
" --compress-debug-sections=[none|zlib|zlib-gnu|zlib-gabi|zstd]\n"
"\t\t\t Comprime las secciones de depuración DWARF\n"
# DLL son las siglas en inglés de `Biblioteca de Enlace Dinámico'.
# El problema es que las siglas en español (BED) no están muy extendidas.
# Se dejó `DLL' sin traducir en todas las ocasiones. cfuga
#: lexsup.c:2291
#, c-format
msgid " Default: %s\n"
msgstr " Opción predefinida: %s\n"
#: lexsup.c:2294
#, c-format
msgid " -z common-page-size=SIZE Set common page size to SIZE\n"
msgstr " -z common-page-size=TAMAÑO Establece el tamaño de página común a TAMAÑO\n"
#: lexsup.c:2296
#, c-format
msgid " -z max-page-size=SIZE Set maximum page size to SIZE\n"
msgstr " -z max-page-size=TAMAÑO Establece el tamaño de página máximo a TAMAÑO\n"
#: lexsup.c:2298
#, c-format
msgid " -z defs Report unresolved symbols in object files\n"
msgstr ""
" -z defs Informa sobre símbolos no resueltos en los\n"
" ficheros objeto\n"
#: lexsup.c:2300
#, c-format
msgid " -z undefs Ignore unresolved symbols in object files\n"
msgstr ""
" -z undefs Ignora símbolos no resueltos en los ficheros\n"
" objeto\n"
#: lexsup.c:2302
#, c-format
msgid " -z muldefs Allow multiple definitions\n"
msgstr " -z muldefs Permite definiciones múltiples\n"
#: lexsup.c:2304
#, c-format
msgid " -z stack-size=SIZE Set size of stack segment\n"
msgstr " -z stack-size=TAMAÑO Establece el tamaño de segmento de la pila\n"
#: lexsup.c:2307
#, c-format
msgid " -z execstack Mark executable as requiring executable stack\n"
msgstr ""
" -z execstack Indica que el ejecutable requiere pila de\n"
" ejecutable\n"
#: lexsup.c:2309
#, c-format
msgid " -z noexecstack Mark executable as not requiring executable stack\n"
msgstr ""
" -z noexecstack Indica que el ejecutable no requiere pila de\n"
" ejecutable\n"
#: lexsup.c:2311
#, c-format
msgid " --warn-execstack-objects Generate a warning if an object file requests an executable stack\n"
msgstr " --warn-execstack-objects Genera un aviso si un fichero objeto solicita una pila de ejecutable\n"
#: lexsup.c:2314
#, c-format
msgid " --warn-execstack Generate a warning if creating an executable stack\n"
msgstr " --warn-execstack Genera un aviso si se crea una pila de ejecutable\n"
#: lexsup.c:2317
#, c-format
msgid " --warn-execstack Generate a warning if creating an executable stack (default)\n"
msgstr ""
" --warn-execstack Genera un aviso si se crea una pila de ejecutable\n"
" (opción predeterminada)\n"
#: lexsup.c:2321
#, c-format
msgid " --no-warn-execstack Do not generate a warning if creating an executable stack (default)\n"
msgstr ""
" --no-warn-execstack No genera un aviso si se crea una pila de ejecutable\n"
" (opción predeterminada)\n"
#: lexsup.c:2324
#, c-format
msgid " --no-warn-execstack Do not generate a warning if creating an executable stack\n"
msgstr " --no-warn-execstack No genera un aviso si se crea una pila de ejecutable\n"
#: lexsup.c:2327
#, c-format
msgid " --error-execstack Turn warnings about executable stacks into errors\n"
msgstr " --error-execstack Transforma los avisos sobre pilas de ejecutables en errores\n"
#: lexsup.c:2329
#, c-format
msgid " --no-error-execstack Do not turn warnings about executable stacks into errors\n"
msgstr " --no-error-execstack No transforma los avisos sobre pilas de ejecutables en errores\n"
#: lexsup.c:2333
#, c-format
msgid " --warn-rwx-segments Generate a warning if a LOAD segment has RWX permissions (default)\n"
msgstr " --warn-rwx-segments Genera un aviso si un segmento LOAD tiene permisos RWS (opción predefinida)\n"
#: lexsup.c:2335
#, c-format
msgid " --no-warn-rwx-segments Do not generate a warning if a LOAD segments has RWX permissions\n"
msgstr " --no-warn-rwx-segments No genera un aviso si un segmento LOAD tiene permisos RWS\n"
#: lexsup.c:2338
#, c-format
msgid " --warn-rwx-segments Generate a warning if a LOAD segment has RWX permissions\n"
msgstr " --warn-rwx-segments Genera un aviso si un segmento LOAD tiene permisos RWS\n"
#: lexsup.c:2340
#, c-format
msgid " --no-warn-rwx-segments Do not generate a warning if a LOAD segments has RWX permissions (default)\n"
msgstr " --no-warn-rwx-segments No genera un aviso si un segmento LOAD tiene permisos RWS (opción predefinida)\n"
#: lexsup.c:2343
#, c-format
msgid " --error-rwx-segments Turn warnings about loadable RWX segments into errors\n"
msgstr " --error-rwx-segments Transforma en errores los avisos sobre segmentos RWX cargables\n"
#: lexsup.c:2345
#, c-format
msgid " --no-error-rwx-segments Do not turn warnings about loadable RWX segments into errors\n"
msgstr " --no-error-rwx-segments No transforma en errores los avisos sobre segmentos RWX cargables\n"
#: lexsup.c:2348
#, c-format
msgid " -z unique-symbol Avoid duplicated local symbol names\n"
msgstr " -z unique-symbol Evita duplicados en nombres de símbolos locales\n"
#: lexsup.c:2350
#, c-format
msgid " -z nounique-symbol Keep duplicated local symbol names (default)\n"
msgstr ""
" -z nounique-symbol Mantiene duplicados en nombres de símbolos\n"
" locales (comportamiento predefinido)\n"
#: lexsup.c:2352
#, c-format
msgid " -z globalaudit Mark executable requiring global auditing\n"
msgstr " -z globalaudit Indica que el ejecutable requiere auditoría global\n"
#: lexsup.c:2354
#, c-format
msgid " -z start-stop-gc Enable garbage collection on __start/__stop\n"
msgstr " -z start-stop-gc Activa la recolección de basura al hacer __start/__stop\n"
#: lexsup.c:2356
#, c-format
msgid " -z nostart-stop-gc Don't garbage collect __start/__stop (default)\n"
msgstr " -z nostart-stop-gc No recolecta basura al hacer __start/__stop (opción predeterminada)\n"
#: lexsup.c:2358
#, c-format
msgid ""
" -z start-stop-visibility=V Set visibility of built-in __start/__stop symbols\n"
" to DEFAULT, PROTECTED, HIDDEN or INTERNAL\n"
msgstr ""
" -z start-stop-visibility=V Establece la visibilidad de los símbolos internos\n"
" __start/__stop symbols a\n"
" DEFAULT, PROTECTED, HIDDEN o INTERNAL\n"
#: lexsup.c:2361
#, c-format
msgid " -z sectionheader Generate section header (default)\n"
msgstr " -z sectionheader Genera cabecera de sección (opción predeterminada)\n"
#: lexsup.c:2363
#, c-format
msgid " -z nosectionheader Do not generate section header\n"
msgstr " -z nosectionheader No genera cabecera de sección\n"
#: lexsup.c:2370
#, c-format
msgid " --ld-generated-unwind-info Generate exception handling info for PLT\n"
msgstr ""
" --ld-generated-unwind-info Genera información de manejo de excepciones\n"
" para PLT\n"
#: lexsup.c:2372
#, c-format
msgid ""
" --no-ld-generated-unwind-info\n"
" Don't generate exception handling info for PLT\n"
msgstr ""
" --no-ld-generated-unwind-info\n"
" No genera información de manejo de excepción para\n"
"PLT\n"
#: lexsup.c:2382
#, c-format
msgid "ELF emulations:\n"
msgstr "Emulaciones ELF:\n"
#: lexsup.c:2400
#, c-format
msgid "Usage: %s [options] file...\n"
msgstr "Modo de empleo: %s [opciones] fichero...\n"
#: lexsup.c:2402
#, c-format
msgid "Options:\n"
msgstr "Opciones:\n"
#: lexsup.c:2480
#, c-format
msgid " @FILE"
msgstr " @FICHERO"
#: lexsup.c:2483
#, c-format
msgid "Read options from FILE\n"
msgstr "Lee opciones del FICHERO\n"
#. Note: Various tools (such as libtool) depend upon the
#. format of the listings below - do not change them.
#: lexsup.c:2488
#, c-format
msgid "%s: supported targets:"
msgstr "%s: objetivos admitidos:"
#: lexsup.c:2496
#, c-format
msgid "%s: supported emulations: "
msgstr "%s: emulaciones admitidas: "
#: lexsup.c:2501
#, c-format
msgid "%s: emulation specific options:\n"
msgstr "%s: opciones específicas de emulación:\n"
#: lexsup.c:2508
#, c-format
msgid "Report bugs to %s\n"
msgstr "Reporte errores a %s\n"
#: mri.c:291
msgid "%P: unknown format type %s\n"
msgstr "%P: tipo de formato %s desconocido\n"
#: pdb.c:845 pdb.c:1136
msgid "%P: CodeView symbol references out of range type %v\n"
msgstr "%P: símbolo CodeView referencia tipo fuera de rango %v\n"
#: pdb.c:1014
msgid "%P: warning: truncated CodeView record S_LDATA32/S_GDATA32/S_LTHREAD32/S_GTHREAD32\n"
msgstr "%P: aviso: registro CodeView truncado S_LDATA32/S_GDATA32/S_LTHREAD32/S_GTHREAD32\n"
#: pdb.c:1033
msgid "%P: warning: name for S_LDATA32/S_GDATA32/S_LTHREAD32/S_GTHREAD32 has no terminating zero\n"
msgstr "%P: aviso: el nombre de S_LDATA32/S_GDATA32/S_LTHREAD32/S_GTHREAD32 no tiene cero final\n"
#: pdb.c:1081 pdb.c:1751
msgid "%P: warning: truncated CodeView record S_GPROC32/S_LPROC32\n"
msgstr "%P: aviso: registro CodeView truncado S_GPROC32/S_LPROC32\n"
#: pdb.c:1093 pdb.c:1768
msgid "%P: warning: could not find end of S_GPROC32/S_LPROC32 record\n"
msgstr "%P: aviso: no se ha podido encontrar el final del registro S_GPROC32/S_LPROC32\n"
#: pdb.c:1119
msgid "%P: warning: name for S_GPROC32/S_LPROC32 has no terminating zero\n"
msgstr "%P: aviso: el nombre de S_GPROC32/S_LPROC32 no tiene cero final\n"
#: pdb.c:1175
msgid "%P: CodeView S_GPROC32_ID/S_LPROC32_ID symbol referenced unknown type as ID\n"
msgstr "%P: símbolo CodeView S_GPROC32_ID/S_LPROC32_ID hace referencia un tipo desconocido como ID\n"
#: pdb.c:1249
msgid "%P: warning: truncated CodeView record S_UDT\n"
msgstr "%P: aviso: registro CodeView S_UDT truncado\n"
#: pdb.c:1260
msgid "%P: warning: name for S_UDT has no terminating zero\n"
msgstr "%P: aviso: el nombre de S_UDT no tiene cero final\n"
#: pdb.c:1297
msgid "%P: warning: truncated CodeView record S_CONSTANT\n"
msgstr "%P: aviso: registro CodeView S_CONSTANT truncado\n"
#: pdb.c:1314
msgid "%P: warning: unhandled type %v within S_CONSTANT\n"
msgstr "%P: aviso: tipo %v no manejado en S_CONSTANT\n"
#: pdb.c:1328
msgid "%P: warning: name for S_CONSTANT has no terminating zero\n"
msgstr "%P: aviso: el nombre de S_CONSTANT no tiene cero final\n"
#: pdb.c:1388
msgid "%P: warning: unexpected CodeView scope start record %v\n"
msgstr "%P: aviso: registro %v de comienzo de alcance CodeView inesperado\n"
#: pdb.c:1410
msgid "%P: warning: truncated CodeView record S_BUILDINFO\n"
msgstr "%P: aviso: registro CodeView S_BUILDINFO truncado\n"
#: pdb.c:1436
msgid "%P: warning: truncated CodeView record S_BLOCK32\n"
msgstr "%P: aviso: registro CodeView S_BLOCK32 truncado\n"
#: pdb.c:1448
msgid "%P: warning: could not find end of S_BLOCK32 record\n"
msgstr "%P: aviso: no se ha podido encontrar el final del registro S_BLOCK32\n"
#: pdb.c:1473
msgid "%P: warning: truncated CodeView record S_BPREL32\n"
msgstr "%P: aviso: registro CodeView S_BPREL32 truncado\n"
#: pdb.c:1497
msgid "%P: warning: truncated CodeView record S_REGISTER\n"
msgstr "%P: aviso: registro CodeView S_REGISTER truncado\n"
#: pdb.c:1521
msgid "%P: warning: truncated CodeView record S_REGREL32\n"
msgstr "%P: aviso: registro CodeView S_REGREL32 truncado\n"
#: pdb.c:1545
msgid "%P: warning: truncated CodeView record S_LOCAL\n"
msgstr "%P: aviso: registro CodeView S_LOCAL truncado\n"
#: pdb.c:1571
msgid "%P: warning: truncated CodeView record S_INLINESITE\n"
msgstr "%P: aviso: registro CodeView S_INLINESITE truncado\n"
#: pdb.c:1583
msgid "%P: warning: could not find end of S_INLINESITE record\n"
msgstr "%P: aviso: no se ha podido encontrar el final del registro S_INLINESITE\n"
#: pdb.c:1616
msgid "%P: warning: truncated CodeView record S_THUNK32\n"
msgstr "%P: aviso: registro CodeView S_THUNK32 truncado\n"
#: pdb.c:1628
msgid "%P: warning: could not find end of S_THUNK32 record\n"
msgstr "%P: aviso: no se ha podido encontrar el final del registro S_THUNK32\n"
#: pdb.c:1653
msgid "%P: warning: truncated CodeView record S_HEAPALLOCSITE\n"
msgstr "%P: aviso: registro CodeView S_HEAPALLOCSITE truncado\n"
#: pdb.c:1687 pdb.c:1831
msgid "%P: warning: unrecognized CodeView record %v\n"
msgstr "%P: aviso: registro %v CodeView no reconocido\n"
#: pdb.c:1723
msgid "%P: warning: truncated CodeView record S_LDATA32/S_LTHREAD32\n"
msgstr "%P: aviso: registro CodeView S_LDATA32/S_LTHREAD32 truncado\n"
#: pdb.c:1879
msgid "%P: warning: truncated DEBUG_S_INLINEELINES data\n"
msgstr "%P: aviso: registro CodeView DEBUG_S_INLINEELINES truncado\n"
#: pdb.c:1886
msgid "%P: warning: unexpected DEBUG_S_INLINEELINES version %u\n"
msgstr "%P: aviso: registro CodeView DEBUG_S_INLINEELINES truncado\n"
#: pdb.c:2239
msgid "%P: CodeView type %v references other type %v not yet declared\n"
msgstr "%P: el tipo CodeView %v hace referencia a otro tipo %v no declarado todavía\n"
#: pdb.c:2246
msgid "%P: CodeView type %v references out of range type %v\n"
msgstr "%P: el tipo CodeView %v hace referencia al tipo tipo fuera de rango %v\n"
#: pdb.c:2306
msgid "%P: warning: truncated CodeView type record LF_UDT_SRC_LINE\n"
msgstr "%P: aviso: registro CodeView LF_UDT_SRC_LINE truncado\n"
#: pdb.c:2319
msgid "%P: warning: CodeView type record LF_UDT_SRC_LINE referred to unknown type %v\n"
msgstr "%P: aviso: el registro LF_UDT_SRC_LINE de tipo CodeView hace referencia al tipo desconocido %v\n"
#: pdb.c:2341
msgid "%P: warning: CodeView type record LF_UDT_SRC_LINE referred to unknown string %v\n"
msgstr "%P: aviso: el registro LF_UDT_SRC_LINE de tipo CodeView hace referencia a la cadena desconocida %v\n"
#: pdb.c:2350
msgid "%P: warning: CodeView type record LF_UDT_SRC_LINE pointed to unexpected record type\n"
msgstr "%P: aviso: el registro LF_UDT_SRC_LINE de tipo CodeView apunta a un tipo de registro desconocido\n"
#: pdb.c:2399
msgid "%P: warning: duplicate CodeView type record LF_UDT_MOD_SRC_LINE\n"
msgstr "%P: aviso: registro LF_UDT_MOD_SRC_LINE de tipo CodeView duplicado\n"
#: pdb.c:2448
msgid "%P: warning: truncated CodeView type record LF_MODIFIER\n"
msgstr "%P: aviso: registro LF_MODIFIER de tipo CodeView truncado\n"
#: pdb.c:2466 pdb.c:2481
msgid "%P: warning: truncated CodeView type record LF_POINTER\n"
msgstr "%P: aviso: registro LF_POINTER de tipo CodeView truncado\n"
#: pdb.c:2499
msgid "%P: warning: truncated CodeView type record LF_PROCEDURE\n"
msgstr "%P: aviso: registro LF_PROCEDURE de tipo CodeView truncado\n"
#: pdb.c:2519
msgid "%P: warning: truncated CodeView type record LF_MFUNCTION\n"
msgstr "%P: aviso: registro LF_MFUNCTION de tipo CodeView truncado\n"
#: pdb.c:2547 pdb.c:2557
msgid "%P: warning: truncated CodeView type record LF_ARGLIST\n"
msgstr "%P: aviso: registro LF_ARGLIST de tipo CodeView truncado\n"
#: pdb.c:2582 pdb.c:2652 pdb.c:2789 pdb.c:2836 pdb.c:3054 pdb.c:3101
msgid "%P: warning: truncated CodeView type record LF_FIELDLIST\n"
msgstr "%P: aviso: registro LF_FIELDLIST de tipo CodeView truncado\n"
#: pdb.c:2599 pdb.c:2627
msgid "%P: warning: truncated CodeView type record LF_MEMBER\n"
msgstr "%P: aviso: registro LF_MEMBER de tipo CodeView truncado\n"
#: pdb.c:2618
msgid "%P: warning: unhandled type %v within LF_MEMBER\n"
msgstr "%P: aviso: tipo %v no manejado en LF_MEMBER\n"
#: pdb.c:2638
msgid "%P: warning: name for LF_MEMBER has no terminating zero\n"
msgstr "%P: aviso: nombre de LF_MEMBER sin cero final\n"
#: pdb.c:2671 pdb.c:2694 pdb.c:2721
msgid "%P: warning: truncated CodeView type record LF_ENUMERATE\n"
msgstr "%P: aviso: registro LF_ENUMERATE de tipo CodeView truncado\n"
#: pdb.c:2687
msgid "%P: warning: unhandled type %v within LF_ENUMERATE\n"
msgstr "%P: aviso: tipo %v no manejado en LF_ENUMERATE\n"
#: pdb.c:2707
msgid "%P: warning: name for LF_ENUMERATE has no terminating zero\n"
msgstr "%P: aviso: nombre de LF_ENUMERATE sin cero final\n"
#: pdb.c:2738
msgid "%P: warning: truncated CodeView type record LF_INDEX\n"
msgstr "%P: aviso: registro LF_INDEX de tipo CodeView truncado\n"
#: pdb.c:2759
msgid "%P: warning: truncated CodeView type record LF_ONEMETHOD\n"
msgstr "%P: aviso: registro LF_ONEMETHOD de tipo CodeView truncado\n"
#: pdb.c:2774
msgid "%P: warning: name for LF_ONEMETHOD has no terminating zero\n"
msgstr "%P: aviso: nombre de LF_ONEMETHOD sin cero final\n"
#: pdb.c:2807
msgid "%P: warning: truncated CodeView type record LF_METHOD\n"
msgstr "%P: aviso: registro LF_METHOD de tipo CodeView truncado\n"
#: pdb.c:2822
msgid "%P: warning: name for LF_METHOD has no terminating zero\n"
msgstr "%P: aviso: nombre de LF_METHOD sin cero final\n"
#: pdb.c:2855 pdb.c:2884 pdb.c:2895
msgid "%P: warning: truncated CodeView type record LF_BCLASS\n"
msgstr "%P: aviso: registro LF_BCLASS de tipo CodeView truncado\n"
#: pdb.c:2875
msgid "%P: warning: unhandled type %v within LF_BCLASS\n"
msgstr "%P: aviso: tipo %v no manejado en LF_BCLASS\n"
#: pdb.c:2912
msgid "%P: warning: truncated CodeView type record LF_VFUNCTAB\n"
msgstr "%P: aviso: registro LF_VFUNCTAB de tipo CodeView truncado\n"
#: pdb.c:2935 pdb.c:2969 pdb.c:2994 pdb.c:3005
msgid "%P: warning: truncated CodeView type record LF_VBCLASS/LF_IVBCLASS\n"
msgstr "%P: aviso: registro LF_VBCLASS/LF_IVBCLASS de tipo CodeView truncado\n"
#: pdb.c:2960 pdb.c:2985
msgid "%P: warning: unhandled type %v within LF_VBCLASS/LF_IVBCLASS\n"
msgstr "%P: aviso: tipo %v no manejado en LF_VBCLASS/LF_IVBCLASS\n"
#: pdb.c:3024
msgid "%P: warning: truncated CodeView type record LF_STMEMBER\n"
msgstr "%P: aviso: registro LF_STMEMBER de tipo CodeView truncado\n"
#: pdb.c:3039
msgid "%P: warning: name for LF_STMEMBER has no terminating zero\n"
msgstr "%P: aviso: nombre de LF_STMEMBER sin cero final\n"
#: pdb.c:3072
msgid "%P: warning: truncated CodeView type record LF_NESTTYPE\n"
msgstr "%P: aviso: registro LF_NESTTYPE de tipo CodeView truncado\n"
#: pdb.c:3086
msgid "%P: warning: name for LF_NESTTYPE has no terminating zero\n"
msgstr "%P: aviso: nombre de LF_NESTTYPE sin cero final\n"
#: pdb.c:3113
msgid "%P: warning: unrecognized CodeView subtype %v\n"
msgstr "%P: aviso: subtipo CodeView %v no reconocido\n"
#: pdb.c:3128
msgid "%P: warning: truncated CodeView type record LF_BITFIELD\n"
msgstr "%P: aviso: registro LF_BITFIELD de tipo CodeView truncado\n"
#: pdb.c:3146
msgid "%P: warning: truncated CodeView type record LF_METHODLIST\n"
msgstr "%P: aviso: registro LF_METHODLIST de tipo CodeView truncado\n"
#: pdb.c:3154
msgid "%P: warning: malformed CodeView type record LF_METHODLIST\n"
msgstr "%P: aviso: registro LF_METHODLIST de tipo CodeView truncado\n"
#: pdb.c:3178
msgid "%P: warning: truncated CodeView type record LF_ARRAY\n"
msgstr "%P: aviso: registro LF_ARRAY de tipo CodeView truncado\n"
#: pdb.c:3201 pdb.c:3235
msgid "%P: warning: truncated CodeView type record LF_CLASS/LF_STRUCTURE\n"
msgstr "%P: aviso: registro LF_CLASS/LF_STRUCTURE de tipo CodeView truncado\n"
#: pdb.c:3226
msgid "%P: warning: unhandled type %v within LF_CLASS/LF_STRUCTURE\n"
msgstr "%P: aviso: tipo %v no manejado en LF_CLASS/LF_STRUCTURE\n"
#: pdb.c:3245
msgid "%P: warning: name for LF_CLASS/LF_STRUCTURE has no terminating zero\n"
msgstr "%P: aviso: nombre de LF_CLASS/LF_STRUCTURE sin cero final\n"
#: pdb.c:3264
msgid "%P: warning: unique name for LF_CLASS/LF_STRUCTURE has no terminating zero\n"
msgstr "%P: aviso: nombre único de LF_CLASS/LF_STRUCTURE sin cero final\n"
#: pdb.c:3288 pdb.c:3316
msgid "%P: warning: truncated CodeView type record LF_UNION\n"
msgstr "%P: aviso: registro LF_UNION de tipo CodeView truncado\n"
#: pdb.c:3307
msgid "%P: warning: unhandled type %v within LF_UNION\n"
msgstr "%P: aviso: tipo %v no manejado en LF_UNION\n"
#: pdb.c:3326
msgid "%P: warning: name for LF_UNION has no terminating zero\n"
msgstr "%P: aviso: nombre de LF_UNION sin cero final\n"
#: pdb.c:3345
msgid "%P: warning: unique name for LF_UNION has no terminating zero\n"
msgstr "%P: aviso: nombre único de LF_UNION sin cero final\n"
#: pdb.c:3369
msgid "%P: warning: truncated CodeView type record LF_ENUM\n"
msgstr "%P: aviso: registro LF_ENUM de tipo CodeView truncado\n"
#: pdb.c:3384
msgid "%P: warning: name for LF_ENUM has no terminating zero\n"
msgstr "%P: aviso: nombre de LF_ENUM sin cero final\n"
#: pdb.c:3402
msgid "%P: warning: unique name for LF_ENUM has no terminating zero\n"
msgstr "%P: aviso: nombre único de LF_ENUM sin cero final\n"
#: pdb.c:3421
msgid "%P: warning: truncated CodeView type record LF_VFTABLE\n"
msgstr "%P: aviso: registro LF_VFTABLE de tipo CodeView truncado\n"
#: pdb.c:3442
msgid "%P: warning: truncated CodeView type record LF_STRING_ID\n"
msgstr "%P: aviso: registro LF_STRING_ID de tipo CodeView truncado\n"
#: pdb.c:3455
msgid "%P: warning: string for LF_STRING_ID has no terminating zero\n"
msgstr "%P: aviso: cadena de LF_STRING_ID sin cero final\n"
#: pdb.c:3472 pdb.c:3482
msgid "%P: warning: truncated CodeView type record LF_SUBSTR_LIST\n"
msgstr "%P: aviso: registro LF_SUBSTR_LIST de tipo CodeView truncado\n"
#: pdb.c:3505 pdb.c:3515
msgid "%P: warning: truncated CodeView type record LF_BUILDINFO\n"
msgstr "%P: aviso: registro LF_BUILDINFO de tipo CodeView truncado\n"
#: pdb.c:3538
msgid "%P: warning: truncated CodeView type record LF_FUNC_ID\n"
msgstr "%P: aviso: registro LF_FUNC_ID de tipo CodeView truncado\n"
#: pdb.c:3554
msgid "%P: warning: string for LF_FUNC_ID has no terminating zero\n"
msgstr "%P: aviso: cadena de LF_FUNC_ID sin cero final\n"
#: pdb.c:3571
msgid "%P: warning: truncated CodeView type record LF_MFUNC_ID\n"
msgstr "%P: aviso: registro LF_MFUNC_ID de tipo CodeView truncado\n"
#: pdb.c:3587
msgid "%P: warning: string for LF_MFUNC_ID has no terminating zero\n"
msgstr "%P: aviso: cadena de LF_MFUNC_ID sin cero final\n"
#: pdb.c:3602
msgid "%P: warning: unrecognized CodeView type %v\n"
msgstr "%P: aviso: tipo CodeView %v no reconocido\n"
#: pdb.c:3776
msgid "%P: warning: unable to get working directory\n"
msgstr "%P: aviso: no se puede obtener el directorio de trabajo\n"
#: pdb.c:3784
msgid "%P: warning: unable to get program name\n"
msgstr "%P: aviso: no se puede obtener el nombre del programa\n"
#: pdb.c:3793
msgid "%P: warning: unable to get full path to PDB\n"
msgstr "%P: aviso: no se puede obtener la ruta completa de PDB\n"
#: pdb.c:5249
msgid "%P: warning: cannot create PDB file: %E\n"
msgstr "%P: no se puede crear el fichero PDB: %E\n"
#: pdb.c:5264
msgid "%P: warning: cannot create old directory stream in PDB file: %E\n"
msgstr "%P: aviso: no se puede crear el flujoa del directorio antiguo en el fichero PDB: %E\n"
#: pdb.c:5273
msgid "%P: warning: cannot create info stream in PDB file: %E\n"
msgstr "%P: aviso: no se puede crear el flujo info en el fichero PDB: %E\n"
#: pdb.c:5282
msgid "%P: warning: cannot create TPI stream in PDB file: %E\n"
msgstr "%P: aviso: no se puede crear el flujo TPI en el fichero PDB: %E\n"
#: pdb.c:5291
msgid "%P: warning: cannot create DBI stream in PDB file: %E\n"
msgstr "%P: aviso: no se puede crear el flujo DBI en el fichero PDB: %E\n"
#: pdb.c:5300
msgid "%P: warning: cannot create IPI stream in PDB file: %E\n"
msgstr "%P: aviso: no se puede crear el flujo IPI en el fichero PDB: %E\n"
#: pdb.c:5309
msgid "%P: warning: cannot create /names stream in PDB file: %E\n"
msgstr "%P: aviso: no se puede crear el flujo /names en el fichero PDB: %E\n"
#: pdb.c:5318
msgid "%P: warning: cannot create symbol record stream in PDB file: %E\n"
msgstr "%P: aviso: no se puede crear el flujo de registro de símbolo en el fichero PDB: %E\n"
#: pdb.c:5327
msgid "%P: warning: cannot create publics stream in PDB file: %E\n"
msgstr "%P: aviso: no se puede crear el flujo de públicos en el fichero PDB\n"
#: pdb.c:5334
msgid "%P: warning: cannot create section header stream in PDB file: %E\n"
msgstr "%P: aviso: no se puede crear el flujo de cabecera de sección en el fichero PDB: %E\n"
#: pdb.c:5353
msgid "%P: warning: cannot populate DBI stream in PDB file: %E\n"
msgstr "%P: aviso: no se puede rellenar el flujo DBI en el fichero PDB: %E\n"
#: pdb.c:5362
msgid "%P: warning: cannot populate TPI stream in PDB file: %E\n"
msgstr "%P: aviso: no se puede rellenar el flujo TPI en el fichero PDB: %E\n"
#: pdb.c:5373
msgid "%P: warning: cannot populate IPI stream in PDB file: %E\n"
msgstr "%P: aviso: no se puede rellenar el flujo IPI en el fichero PDB: %E\n"
#: pdb.c:5385
msgid "%P: warning: cannot populate names stream in PDB file: %E\n"
msgstr "%P: aviso: no se puede rellenar el flujo de nombres en el fichero PDB: %E\n"
#: pdb.c:5392
msgid "%P: warning: cannot populate publics stream in PDB file: %E\n"
msgstr "%P: aviso: no se puede rellenar el flujo de públicos en el fichero PDB\n"
#: pdb.c:5399
msgid "%P: warning: cannot populate info stream in PDB file: %E\n"
msgstr "%P: aviso: no se puede rellenar el flujo info en el fichero PDB: %E\n"
#: pe-dll.c:483
msgid "%X%P: unsupported PEI architecture: %s\n"
msgstr "%X%P: no se admite la arquitectura PEI: %s\n"
#: pe-dll.c:872
msgid "%X%P: cannot export %s: invalid export name\n"
msgstr "%X%P: no se puede exportar %s: nombre de exportación inválido\n"
#: pe-dll.c:924
#, c-format
msgid "%X%P: error, duplicate EXPORT with ordinals: %s (%d vs %d)\n"
msgstr "%X%P: error, EXPORT duplicado con ordinales: %s (%d vs %d)\n"
#: pe-dll.c:931
#, c-format
msgid "%P: warning, duplicate EXPORT: %s\n"
msgstr "%P: aviso, EXPORT duplicado: %s\n"
#: pe-dll.c:1038
#, c-format
msgid "%X%P: cannot export %s: symbol not defined\n"
msgstr "%X%P: no se puede exportar %s: símbolo sin definir\n"
#: pe-dll.c:1044
#, c-format
msgid "%X%P: cannot export %s: symbol wrong type (%d vs %d)\n"
msgstr "%X%P: no se puede exportar %s: tipo erróneo del símbolo (%d vs %d)\n"
#: pe-dll.c:1051
#, c-format
msgid "%X%P: cannot export %s: symbol not found\n"
msgstr "%X%P: no se puede exportar %s: no se encuentra el símbolo\n"
#: pe-dll.c:1075 eaarch64cloudabi.c:376 eaarch64cloudabib.c:376
#: eaarch64elf.c:376 eaarch64elf32.c:376 eaarch64elf32b.c:376
#: eaarch64elfb.c:376 eaarch64fbsd.c:376 eaarch64fbsdb.c:376
#: eaarch64haiku.c:376 eaarch64linux.c:376 eaarch64linux32.c:376
#: eaarch64linux32b.c:376 eaarch64linuxb.c:376 eaarch64nto.c:376
#: eaix5ppc.c:1631 eaix5ppc.c:1641 eaix5rs6.c:1631 eaix5rs6.c:1641
#: eaixppc.c:1631 eaixppc.c:1641 eaixrs6.c:1631 eaixrs6.c:1641 earmelf.c:572
#: earmelf_fbsd.c:572 earmelf_fuchsia.c:573 earmelf_haiku.c:573
#: earmelf_linux.c:573 earmelf_linux_eabi.c:573 earmelf_linux_fdpiceabi.c:573
#: earmelf_nacl.c:573 earmelf_nbsd.c:572 earmelf_phoenix.c:573
#: earmelf_vxworks.c:572 earmelfb.c:572 earmelfb_fbsd.c:572
#: earmelfb_fuchsia.c:573 earmelfb_linux.c:573 earmelfb_linux_eabi.c:573
#: earmelfb_linux_fdpiceabi.c:573 earmelfb_nacl.c:573 earmelfb_nbsd.c:572
#: earmnto.c:572 ecskyelf.c:166 ecskyelf_linux.c:166 eelf32b4300.c:175
#: eelf32bmip.c:175 eelf32bmipn32.c:189 eelf32bsmip.c:189 eelf32btsmip.c:175
#: eelf32btsmip_fbsd.c:175 eelf32btsmipn32.c:175 eelf32btsmipn32_fbsd.c:175
#: eelf32ebmip.c:175 eelf32ebmipvxworks.c:175 eelf32elmip.c:175
#: eelf32elmipvxworks.c:175 eelf32l4300.c:175 eelf32lmip.c:175
#: eelf32lr5900.c:175 eelf32lr5900n32.c:175 eelf32lsmip.c:175
#: eelf32ltsmip.c:175 eelf32ltsmip_fbsd.c:175 eelf32ltsmipn32.c:175
#: eelf32ltsmipn32_fbsd.c:175 eelf32metag.c:90 eelf32mipswindiss.c:175
#: eelf64bmip.c:189 eelf64btsmip.c:175 eelf64btsmip_fbsd.c:175 eelf64lppc.c:122
#: eelf64lppc_fbsd.c:122 eelf64ltsmip.c:175 eelf64ltsmip_fbsd.c:175
#: eelf64ppc.c:122 eelf64ppc_fbsd.c:122 eelf_mipsel_haiku.c:175 ehppaelf.c:113
#: ehppalinux.c:113 ehppanbsd.c:113 ehppaobsd.c:113 em68hc11elf.c:173
#: em68hc11elfb.c:173 em68hc12elf.c:173 em68hc12elfb.c:173 eppcmacos.c:1631
#: eppcmacos.c:1641
msgid "%P: can not create BFD: %E\n"
msgstr "%P: no se puede crear BFD: %E\n"
#: pe-dll.c:1089
msgid "%X%P: can not create .edata section: %E\n"
msgstr "%X%P: no se puede crear la sección .edata: %E\n"
#: pe-dll.c:1103
msgid "%X%P: can not create .reloc section: %E\n"
msgstr "%X%P: no se puede crear la sección .reloc: %E\n"
#: pe-dll.c:1152
#, c-format
msgid "%X%P: error: ordinal used twice: %d (%s vs %s)\n"
msgstr "%X%P: error, ordinal utilizado dos veces: %d (%s vs %s)\n"
#: pe-dll.c:1188
#, c-format
msgid "%X%P: error: export ordinal too large: %d\n"
msgstr "%X%P: error: exportación de ordinal demasiado grande: %d\n"
#: pe-dll.c:1514
#, c-format
msgid "Info: resolving %s by linking to %s (auto-import)\n"
msgstr "Información: se resuelve %s al enlazar con %s (auto-importación)\n"
#: pe-dll.c:1520
msgid "%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\n"
msgstr ""
"%P: aviso: la importación automática se activó sin especificar --enable-auto-import en la línea de órdenes.\n"
"Esto debe funcionar a menos que involucre estructuras de datos constantes que referencíen símbolos de DLLs auto-importadas\n"
#: pe-dll.c:1684
msgid "%P: base relocation for section `%s' above .reloc section\n"
msgstr "%P: reubicación de base para la sección «%s» por encima de la sección .reloc\n"
#: pe-dll.c:1734
#, c-format
msgid "%X%P: error: %d-bit reloc in dll\n"
msgstr "%X%P: error: reubicación de %d-bit en la dll\n"
#: pe-dll.c:1860
#, c-format
msgid "%P: can't open output def file %s\n"
msgstr "%P: no se puede abrir el fichero por defecto de salida %s\n"
#: pe-dll.c:2009
#, c-format
msgid "; no contents available\n"
msgstr "; no hay contenido disponible\n"
#: pe-dll.c:2368
msgid "%P: error: NULL decorated name for %s\n"
msgstr "%P: error: nombre decorado con NULL para %s\n"
#: pe-dll.c:2903
msgid "%X%P: %H: variable '%pT' can't be auto-imported; please read the documentation for ld's --enable-auto-import for details\n"
msgstr "%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\n"
#: pe-dll.c:2924
#, c-format
msgid "%X%P: can't open .lib file: %s\n"
msgstr "%X%P: no se puede abrir el fichero .lib: %s\n"
#: pe-dll.c:2930
#, c-format
msgid "Creating library file: %s\n"
msgstr "Se crea el fichero de biblioteca: %s\n"
#: pe-dll.c:2960
msgid "%X%P: bfd_openr %s: %E\n"
msgstr "%X%P: bfd_openr %s: %E\n"
#: pe-dll.c:2972
msgid "%X%P: %s(%s): can't find member in non-archive file"
msgstr "%X%P: %s(%s): no se puede encontrar el miembro en un fichero que no es archivo"
#: pe-dll.c:2986
msgid "%X%P: %s(%s): can't find member in archive"
msgstr "%X%P: %s(%s): no se puede encontrar el miembro en el archivo"
#: pe-dll.c:3243
msgid "%X%P: add symbols %s: %E\n"
msgstr "%X%P: añade los símbolos %s: %E\n"
#: pe-dll.c:3454
msgid "%X%P: open %s: %E\n"
msgstr "%X%P: abre %s: %E\n"
#: pe-dll.c:3464
msgid "%X%P: %s: this doesn't appear to be a DLL\n"
msgstr "%X%P: %s: no parece que esto sea una DLL\n"
#: pe-dll.c:3684
msgid "%X%P: error: can't use long section names on this arch\n"
msgstr "%X%P: error: no se pueden usar nombres de sección largos en esta arquitectura\n"
#: plugin.c:240 plugin.c:286
msgid "<no plugin>"
msgstr "<sin plugin>"
#: plugin.c:255 plugin.c:1139
msgid "%P: %s: error loading plugin: %s\n"
msgstr "%P: %s: error al cargar el plugin: %s\n"
#: plugin.c:262
msgid "%P: %s: duplicated plugin\n"
msgstr "%P: %s: plugin duplicado\n"
#: plugin.c:346
msgid "%P: could not create dummy IR bfd: %E\n"
msgstr "%P: no se puede crear el bfd IR dummy: %E\n"
#: plugin.c:428
msgid "%P: %s: non-ELF symbol in ELF BFD!\n"
msgstr "%P: %s: ¡símbolo que no es ELF en el BFD ELF!\n"
#: plugin.c:439
msgid "%P: unknown ELF symbol visibility: %d!\n"
msgstr "%P: ¡visibilidad de símbolo ELF desconocida: %d!\n"
#: plugin.c:561
msgid "%P: unsupported input file size: %s (%ld bytes)\n"
msgstr "%P: no se admite el tamaño de fichero de entrada: %s (%ld bytes)\n"
#: plugin.c:706
#, c-format
msgid "unknown LTO kind value %x"
msgstr "valor de tipo LTO desconocido %x"
#: plugin.c:732
#, c-format
msgid "unknown LTO resolution value %x"
msgstr "valor de resolución LTO desconocido %x"
#: plugin.c:752
#, c-format
msgid "unknown LTO visibility value %x"
msgstr "valor de visibilidad LTO desconocido %x"
#. We should not have a new, indirect or warning symbol here.
#: plugin.c:837
msgid "%P: %s: plugin symbol table corrupt (sym type %d)\n"
msgstr "%P: %s: la tabla de símbolos de plugin está corrupta (tipo de símbolo %d)\n"
#: plugin.c:902
msgid "%P: %pB: symbol `%s' definition: %s, visibility: %s, resolution: %s\n"
msgstr "%P %pB: símbolo `%s' definición: %s, visibilidad: %s, resolución: %s\n"
#: plugin.c:979
msgid "%P: warning: "
msgstr "%P: aviso: "
#: plugin.c:989
msgid "%X%P: error: "
msgstr "%X%P: error: "
#: plugin.c:1146
msgid "%P: %s: plugin error: %d\n"
msgstr "%P: %s: error en el plugin: %d\n"
#: plugin.c:1210
msgid "%P: plugin_strdup failed to allocate memory: %s\n"
msgstr "%P: plugin_strdup no pudo asignar memoria: %s\n"
#: plugin.c:1252
msgid "%P: plugin failed to allocate memory for input: %s\n"
msgstr "%P: plugin no pudo asignar memoria para entrada: %s\n"
#: plugin.c:1281
msgid "%P: %s: plugin reported error claiming file\n"
msgstr "%P: %s: el plugin reportó error al reclamar el fichero\n"
#: plugin.c:1403
msgid "%P: %s: error in plugin cleanup: %d (ignored)\n"
msgstr "%P: %s: error en la limpieza de plugin: %d (se descarta)\n"
#: eaarch64cloudabi.c:242 eaarch64cloudabib.c:242 eaarch64elf.c:242
#: eaarch64elf32.c:242 eaarch64elf32b.c:242 eaarch64elfb.c:242
#: eaarch64fbsd.c:242 eaarch64fbsdb.c:242 eaarch64haiku.c:242
#: eaarch64linux.c:242 eaarch64linux32.c:242 eaarch64linux32b.c:242
#: eaarch64linuxb.c:242 eaarch64nto.c:242 eaix5ppc.c:1096 eaix5rs6.c:1096
#: eaixppc.c:1096 eaixrs6.c:1096 earmelf.c:299 earmelf_fbsd.c:299
#: earmelf_fuchsia.c:300 earmelf_haiku.c:300 earmelf_linux.c:300
#: earmelf_linux_eabi.c:300 earmelf_linux_fdpiceabi.c:300 earmelf_nacl.c:300
#: earmelf_nbsd.c:299 earmelf_phoenix.c:300 earmelf_vxworks.c:299
#: earmelfb.c:299 earmelfb_fbsd.c:299 earmelfb_fuchsia.c:300
#: earmelfb_linux.c:300 earmelfb_linux_eabi.c:300
#: earmelfb_linux_fdpiceabi.c:300 earmelfb_nacl.c:300 earmelfb_nbsd.c:299
#: earmnto.c:299 eavr1.c:182 eavr2.c:182 eavr25.c:182 eavr3.c:182 eavr31.c:182
#: eavr35.c:182 eavr4.c:182 eavr5.c:182 eavr51.c:182 eavr6.c:182 eavrtiny.c:182
#: eavrxmega1.c:182 eavrxmega2.c:182 eavrxmega2_flmap.c:182 eavrxmega3.c:182
#: eavrxmega4.c:182 eavrxmega4_flmap.c:182 eavrxmega5.c:182 eavrxmega6.c:182
#: eavrxmega7.c:182 ecskyelf.c:213 ecskyelf_linux.c:213 eelf32b4300.c:208
#: eelf32bmip.c:208 eelf32bmipn32.c:222 eelf32bsmip.c:222 eelf32btsmip.c:208
#: eelf32btsmip_fbsd.c:208 eelf32btsmipn32.c:208 eelf32btsmipn32_fbsd.c:208
#: eelf32ebmip.c:208 eelf32ebmipvxworks.c:208 eelf32elmip.c:208
#: eelf32elmipvxworks.c:208 eelf32kvx.c:198 eelf32l4300.c:208 eelf32lmip.c:208
#: eelf32lr5900.c:208 eelf32lr5900n32.c:208 eelf32lsmip.c:208
#: eelf32ltsmip.c:208 eelf32ltsmip_fbsd.c:208 eelf32ltsmipn32.c:208
#: eelf32ltsmipn32_fbsd.c:208 eelf32metag.c:209 eelf32mipswindiss.c:208
#: eelf64bmip.c:222 eelf64btsmip.c:208 eelf64btsmip_fbsd.c:208 eelf64kvx.c:198
#: eelf64kvx_linux.c:196 eelf64lppc.c:485 eelf64lppc_fbsd.c:485
#: eelf64ltsmip.c:208 eelf64ltsmip_fbsd.c:208 eelf64ppc.c:485
#: eelf64ppc_fbsd.c:485 eelf_mipsel_haiku.c:208 ehppaelf.c:233 ehppalinux.c:233
#: ehppanbsd.c:233 ehppaobsd.c:233 em68hc11elf.c:298 em68hc11elfb.c:298
#: em68hc12elf.c:298 em68hc12elfb.c:298 eppcmacos.c:1096
msgid "%X%P: can not make stub section: %E\n"
msgstr "%X%P: no se puede crear la sección stub: %E\n"
#: eaarch64cloudabi.c:285 eaarch64cloudabib.c:285 eaarch64elf.c:285
#: eaarch64elf32.c:285 eaarch64elf32b.c:285 eaarch64elfb.c:285
#: eaarch64fbsd.c:285 eaarch64fbsdb.c:285 eaarch64haiku.c:285
#: eaarch64linux.c:285 eaarch64linux32.c:285 eaarch64linux32b.c:285
#: eaarch64linuxb.c:285 eaarch64nto.c:285 earcelf.c:117 earclinux.c:118
#: earclinux_nps.c:118 earcv2elf.c:117 earcv2elfx.c:117 earmelf.c:411
#: earmelf_fbsd.c:411 earmelf_fuchsia.c:412 earmelf_haiku.c:412
#: earmelf_linux.c:412 earmelf_linux_eabi.c:412 earmelf_linux_fdpiceabi.c:412
#: earmelf_nacl.c:412 earmelf_nbsd.c:411 earmelf_phoenix.c:412
#: earmelf_vxworks.c:411 earmelfb.c:411 earmelfb_fbsd.c:411
#: earmelfb_fuchsia.c:412 earmelfb_linux.c:412 earmelfb_linux_eabi.c:412
#: earmelfb_linux_fdpiceabi.c:412 earmelfb_nacl.c:412 earmelfb_nbsd.c:411
#: earmnto.c:411 eavr1.c:321 eavr2.c:321 eavr25.c:321 eavr3.c:321 eavr31.c:321
#: eavr35.c:321 eavr4.c:321 eavr5.c:321 eavr51.c:321 eavr6.c:321 eavrtiny.c:321
#: eavrxmega1.c:321 eavrxmega2.c:321 eavrxmega2_flmap.c:321 eavrxmega3.c:321
#: eavrxmega4.c:321 eavrxmega4_flmap.c:321 eavrxmega5.c:321 eavrxmega6.c:321
#: eavrxmega7.c:321 ecriself.c:117 ecrislinux.c:118 ed10velf.c:117
#: eelf32_sparc.c:118 eelf32_sparc_sol2.c:250 eelf32_sparc_vxworks.c:147
#: eelf32_spu.c:651 eelf32_tic6x_be.c:182 eelf32_tic6x_elf_be.c:182
#: eelf32_tic6x_elf_le.c:182 eelf32_tic6x_le.c:182 eelf32_tic6x_linux_be.c:182
#: eelf32_tic6x_linux_le.c:182 eelf32_x86_64.c:182 eelf32am33lin.c:117
#: eelf32b4300.c:314 eelf32bfin.c:127 eelf32bfinfd.c:127 eelf32bmip.c:314
#: eelf32bmipn32.c:328 eelf32briscv.c:94 eelf32briscv_ilp32.c:94
#: eelf32briscv_ilp32f.c:94 eelf32bsmip.c:328 eelf32btsmip.c:314
#: eelf32btsmip_fbsd.c:314 eelf32btsmipn32.c:314 eelf32btsmipn32_fbsd.c:314
#: eelf32cr16.c:267 eelf32crx.c:154 eelf32ebmip.c:314 eelf32ebmipvxworks.c:343
#: eelf32elmip.c:314 eelf32elmipvxworks.c:343 eelf32epiphany.c:117
#: eelf32epiphany_4x4.c:119 eelf32frvfd.c:117 eelf32ip2k.c:117 eelf32kvx.c:241
#: eelf32l4300.c:314 eelf32lm32.c:117 eelf32lm32fd.c:117 eelf32lmip.c:314
#: eelf32loongarch.c:92 eelf32lppc.c:326 eelf32lppclinux.c:326
#: eelf32lppcnto.c:326 eelf32lppcsim.c:326 eelf32lr5900.c:314
#: eelf32lr5900n32.c:313 eelf32lriscv.c:94 eelf32lriscv_ilp32.c:94
#: eelf32lriscv_ilp32f.c:94 eelf32lsmip.c:314 eelf32ltsmip.c:314
#: eelf32ltsmip_fbsd.c:314 eelf32ltsmipn32.c:314 eelf32ltsmipn32_fbsd.c:314
#: eelf32m32c.c:128 eelf32mb_linux.c:118 eelf32mbel_linux.c:118
#: eelf32mcore.c:117 eelf32mep.c:117 eelf32metag.c:259 eelf32microblaze.c:117
#: eelf32microblazeel.c:117 eelf32mipswindiss.c:313 eelf32moxie.c:117
#: eelf32or1k.c:118 eelf32or1k_linux.c:118 eelf32ppc.c:326 eelf32ppc_fbsd.c:326
#: eelf32ppchaiku.c:326 eelf32ppclinux.c:326 eelf32ppcnto.c:326
#: eelf32ppcsim.c:326 eelf32ppcvxworks.c:300 eelf32ppcwindiss.c:326
#: eelf32rl78.c:117 eelf32rx.c:133 eelf32rx_linux.c:130 eelf32tilegx.c:118
#: eelf32tilegx_be.c:118 eelf32tilepro.c:118 eelf32vax.c:117 eelf32visium.c:117
#: eelf32xstormy16.c:128 eelf32xtensa.c:2014 eelf32z80.c:144 eelf64_aix.c:117
#: eelf64_ia64.c:143 eelf64_ia64_fbsd.c:143 eelf64_ia64_vms.c:220
#: eelf64_s390.c:133 eelf64_sparc.c:118 eelf64_sparc_fbsd.c:118
#: eelf64_sparc_sol2.c:250 eelf64alpha.c:178 eelf64alpha_fbsd.c:178
#: eelf64alpha_nbsd.c:178 eelf64bmip.c:328 eelf64bpf.c:117 eelf64briscv.c:94
#: eelf64briscv_lp64.c:94 eelf64briscv_lp64f.c:94 eelf64btsmip.c:314
#: eelf64btsmip_fbsd.c:314 eelf64hppa.c:117 eelf64kvx.c:241
#: eelf64kvx_linux.c:239 eelf64loongarch.c:92 eelf64lppc.c:595
#: eelf64lppc_fbsd.c:595 eelf64lriscv.c:94 eelf64lriscv_lp64.c:94
#: eelf64lriscv_lp64f.c:94 eelf64ltsmip.c:314 eelf64ltsmip_fbsd.c:314
#: eelf64mmix.c:225 eelf64ppc.c:595 eelf64ppc_fbsd.c:595 eelf64rdos.c:165
#: eelf64tilegx.c:118 eelf64tilegx_be.c:118 eelf_i386.c:142 eelf_i386_be.c:141
#: eelf_i386_fbsd.c:142 eelf_i386_haiku.c:142 eelf_i386_ldso.c:142
#: eelf_i386_sol2.c:274 eelf_i386_vxworks.c:171 eelf_iamcu.c:142
#: eelf_mipsel_haiku.c:314 eelf_s390.c:118 eelf_x86_64.c:182
#: eelf_x86_64_cloudabi.c:182 eelf_x86_64_fbsd.c:182 eelf_x86_64_haiku.c:182
#: eelf_x86_64_sol2.c:314 eh8300elf.c:117 eh8300elf_linux.c:117
#: eh8300helf.c:117 eh8300helf_linux.c:117 eh8300hnelf.c:117 eh8300self.c:117
#: eh8300self_linux.c:117 eh8300snelf.c:117 eh8300sxelf.c:117
#: eh8300sxelf_linux.c:117 eh8300sxnelf.c:117 ehppa64linux.c:117 ehppaelf.c:283
#: ehppalinux.c:283 ehppanbsd.c:283 ehppaobsd.c:283 ei386lynx.c:132
#: ei386moss.c:132 ei386nto.c:132 em32relf.c:117 em32relf_linux.c:117
#: em32rlelf.c:117 em32rlelf_linux.c:117 em68hc11elf.c:394 em68hc11elfb.c:394
#: em68hc12elf.c:394 em68hc12elfb.c:394 em68kelf.c:269 em68kelfnbsd.c:269
#: emn10300.c:117 ends32belf.c:225 ends32belf16m.c:225 ends32belf_linux.c:225
#: ends32elf.c:225 ends32elf16m.c:225 ends32elf_linux.c:225 epruelf.c:138
#: escore3_elf.c:135 escore7_elf.c:135 eshelf.c:117 eshelf_fd.c:118
#: eshelf_linux.c:118 eshelf_nbsd.c:117 eshelf_nto.c:117 eshelf_uclinux.c:117
#: eshelf_vxworks.c:146 eshlelf.c:117 eshlelf_fd.c:118 eshlelf_linux.c:118
#: eshlelf_nbsd.c:117 eshlelf_nto.c:117 eshlelf_vxworks.c:146 ev850.c:164
#: ev850_rh850.c:164
msgid "%X%P: .eh_frame/.stab edit: %E\n"
msgstr "%X%P: edición de .eh_frame/.stab: %E\n"
#: eaarch64cloudabi.c:301 eaarch64cloudabib.c:301 eaarch64elf.c:301
#: eaarch64elf32.c:301 eaarch64elf32b.c:301 eaarch64elfb.c:301
#: eaarch64fbsd.c:301 eaarch64fbsdb.c:301 eaarch64haiku.c:301
#: eaarch64linux.c:301 eaarch64linux32.c:301 eaarch64linux32b.c:301
#: eaarch64linuxb.c:301 eaarch64nto.c:301 earmelf.c:426 earmelf_fbsd.c:426
#: earmelf_fuchsia.c:427 earmelf_haiku.c:427 earmelf_linux.c:427
#: earmelf_linux_eabi.c:427 earmelf_linux_fdpiceabi.c:427 earmelf_nacl.c:427
#: earmelf_nbsd.c:426 earmelf_phoenix.c:427 earmelf_vxworks.c:426
#: earmelfb.c:426 earmelfb_fbsd.c:426 earmelfb_fuchsia.c:427
#: earmelfb_linux.c:427 earmelfb_linux_eabi.c:427
#: earmelfb_linux_fdpiceabi.c:427 earmelfb_nacl.c:427 earmelfb_nbsd.c:426
#: earmnto.c:426 ecskyelf.c:263 ecskyelf_linux.c:263 eelf32kvx.c:257
#: eelf64kvx.c:257 eelf64kvx_linux.c:255
msgid "%X%P: could not compute sections lists for stub generation: %E\n"
msgstr "%X%P: no se han podido calcular las listas para la generación de stub: %E\n"
#: eaarch64cloudabi.c:316 eaarch64cloudabib.c:316 eaarch64elf.c:316
#: eaarch64elf32.c:316 eaarch64elf32b.c:316 eaarch64elfb.c:316
#: eaarch64fbsd.c:316 eaarch64fbsdb.c:316 eaarch64haiku.c:316
#: eaarch64linux.c:316 eaarch64linux32.c:316 eaarch64linux32b.c:316
#: eaarch64linuxb.c:316 eaarch64nto.c:316 earmelf.c:441 earmelf_fbsd.c:441
#: earmelf_fuchsia.c:442 earmelf_haiku.c:442 earmelf_linux.c:442
#: earmelf_linux_eabi.c:442 earmelf_linux_fdpiceabi.c:442 earmelf_nacl.c:442
#: earmelf_nbsd.c:441 earmelf_phoenix.c:442 earmelf_vxworks.c:441
#: earmelfb.c:441 earmelfb_fbsd.c:441 earmelfb_fuchsia.c:442
#: earmelfb_linux.c:442 earmelfb_linux_eabi.c:442
#: earmelfb_linux_fdpiceabi.c:442 earmelfb_nacl.c:442 earmelfb_nbsd.c:441
#: earmnto.c:441 eavr1.c:132 eavr1.c:196 eavr2.c:132 eavr2.c:196 eavr25.c:132
#: eavr25.c:196 eavr3.c:132 eavr3.c:196 eavr31.c:132 eavr31.c:196 eavr35.c:132
#: eavr35.c:196 eavr4.c:132 eavr4.c:196 eavr5.c:132 eavr5.c:196 eavr51.c:132
#: eavr51.c:196 eavr6.c:132 eavr6.c:196 eavrtiny.c:132 eavrtiny.c:196
#: eavrxmega1.c:132 eavrxmega1.c:196 eavrxmega2.c:132 eavrxmega2.c:196
#: eavrxmega2_flmap.c:132 eavrxmega2_flmap.c:196 eavrxmega3.c:132
#: eavrxmega3.c:196 eavrxmega4.c:132 eavrxmega4.c:196 eavrxmega4_flmap.c:132
#: eavrxmega4_flmap.c:196 eavrxmega5.c:132 eavrxmega5.c:196 eavrxmega6.c:132
#: eavrxmega6.c:196 eavrxmega7.c:132 eavrxmega7.c:196 eelf32metag.c:274
#: eelf32metag.c:288 eelf64lppc.c:538 eelf64lppc.c:557 eelf64lppc.c:584
#: eelf64lppc_fbsd.c:538 eelf64lppc_fbsd.c:557 eelf64lppc_fbsd.c:584
#: eelf64ppc.c:538 eelf64ppc.c:557 eelf64ppc.c:584 eelf64ppc_fbsd.c:538
#: eelf64ppc_fbsd.c:557 eelf64ppc_fbsd.c:584 ehppaelf.c:298 ehppaelf.c:313
#: ehppalinux.c:298 ehppalinux.c:313 ehppanbsd.c:298 ehppanbsd.c:313
#: ehppaobsd.c:298 ehppaobsd.c:313 em68hc11elf.c:93 em68hc11elf.c:103
#: em68hc11elf.c:320 em68hc11elfb.c:93 em68hc11elfb.c:103 em68hc11elfb.c:320
#: em68hc12elf.c:93 em68hc12elf.c:103 em68hc12elf.c:320 em68hc12elfb.c:93
#: em68hc12elfb.c:103 em68hc12elfb.c:320
msgid "%X%P: can not size stub section: %E\n"
msgstr "%X%P: no se puede medir la sección de stub: %E\n"
#: eaarch64cloudabi.c:335 eaarch64cloudabib.c:335 eaarch64elf.c:335
#: eaarch64elf32.c:335 eaarch64elf32b.c:335 eaarch64elfb.c:335
#: eaarch64fbsd.c:335 eaarch64fbsdb.c:335 eaarch64haiku.c:335
#: eaarch64linux.c:335 eaarch64linux32.c:335 eaarch64linux32b.c:335
#: eaarch64linuxb.c:335 eaarch64nto.c:335 eaix5ppc.c:1136 eaix5rs6.c:1136
#: eaixppc.c:1136 eaixrs6.c:1136 earmelf.c:475 earmelf_fbsd.c:475
#: earmelf_fuchsia.c:476 earmelf_haiku.c:476 earmelf_linux.c:476
#: earmelf_linux_eabi.c:476 earmelf_linux_fdpiceabi.c:476 earmelf_nacl.c:476
#: earmelf_nbsd.c:475 earmelf_phoenix.c:476 earmelf_vxworks.c:475
#: earmelfb.c:475 earmelfb_fbsd.c:475 earmelfb_fuchsia.c:476
#: earmelfb_linux.c:476 earmelfb_linux_eabi.c:476
#: earmelfb_linux_fdpiceabi.c:476 earmelfb_nacl.c:476 earmelfb_nbsd.c:475
#: earmnto.c:475 eavr1.c:205 eavr2.c:205 eavr25.c:205 eavr3.c:205 eavr31.c:205
#: eavr35.c:205 eavr4.c:205 eavr5.c:205 eavr51.c:205 eavr6.c:205 eavrtiny.c:205
#: eavrxmega1.c:205 eavrxmega2.c:205 eavrxmega2_flmap.c:205 eavrxmega3.c:205
#: eavrxmega4.c:205 eavrxmega4_flmap.c:205 eavrxmega5.c:205 eavrxmega6.c:205
#: eavrxmega7.c:205 eelf32kvx.c:291 eelf32metag.c:303 eelf64kvx.c:291
#: eelf64kvx_linux.c:289 eelf64lppc.c:634 eelf64lppc_fbsd.c:634 eelf64ppc.c:634
#: eelf64ppc_fbsd.c:634 ehppaelf.c:335 ehppalinux.c:335 ehppanbsd.c:335
#: ehppaobsd.c:335 em68hc11elf.c:324 em68hc11elfb.c:324 em68hc12elf.c:324
#: em68hc12elfb.c:324 eppcmacos.c:1136
msgid "%X%P: can not build stubs: %E\n"
msgstr "%X%P: no se pueden construir los stubs: %E\n"
#. The AArch64 backend needs special fields in the output hash structure.
#. These will only be created if the output format is an AArch64 format,
#. hence we do not support linking and changing output formats at the
#. same time. Use a link followed by objcopy to change output formats.
#. The arm backend needs special fields in the output hash structure.
#. These will only be created if the output format is an arm format,
#. hence we do not support linking and changing output formats at the
#. same time. Use a link followed by objcopy to change output formats.
#. The RISC-V backend needs special fields in the output hash structure.
#. These will only be created if the output format is a RISC-V format,
#. hence we do not support linking and changing output formats at the
#. same time. Use a link followed by objcopy to change output formats.
#. The arm backend needs special fields in the output hash structure.
#. These will only be created if the output format is an arm format,
#. hence we do not support linking and changing output formats at the
#. same time. Use a link followed by objcopy to change output formats.
#. Check the output target is nds32.
#. The score backend needs special fields in the output hash structure.
#. These will only be created if the output format is an score format,
#. hence we do not support linking and changing output formats at the
#. same time. Use a link followed by objcopy to change output formats.
#. The arm backend needs special fields in the output hash structure.
#. These will only be created if the output format is an arm format,
#. hence we do not support linking and changing output formats at the
#. same time. Use a link followed by objcopy to change output formats.
#. The V850 backend needs special fields in the output hash structure.
#. These will only be created if the output format is an arm format,
#. hence we do not support linking and changing output formats at the
#. same time. Use a link followed by objcopy to change output formats.
#: eaarch64cloudabi.c:353 eaarch64cloudabib.c:353 eaarch64elf.c:353
#: eaarch64elf32.c:353 eaarch64elf32b.c:353 eaarch64elfb.c:353
#: eaarch64fbsd.c:353 eaarch64fbsdb.c:353 eaarch64haiku.c:353
#: eaarch64linux.c:353 eaarch64linux32.c:353 eaarch64linux32b.c:353
#: eaarch64linuxb.c:353 eaarch64nto.c:353 earm_wince_pe.c:1523 earmelf.c:544
#: earmelf_fbsd.c:544 earmelf_fuchsia.c:545 earmelf_haiku.c:545
#: earmelf_linux.c:545 earmelf_linux_eabi.c:545 earmelf_linux_fdpiceabi.c:545
#: earmelf_nacl.c:545 earmelf_nbsd.c:544 earmelf_phoenix.c:545
#: earmelf_vxworks.c:544 earmelfb.c:544 earmelfb_fbsd.c:544
#: earmelfb_fuchsia.c:545 earmelfb_linux.c:545 earmelfb_linux_eabi.c:545
#: earmelfb_linux_fdpiceabi.c:545 earmelfb_nacl.c:545 earmelfb_nbsd.c:544
#: earmnto.c:544 earmpe.c:1523 eavr1.c:145 eavr2.c:145 eavr25.c:145 eavr3.c:145
#: eavr31.c:145 eavr35.c:145 eavr4.c:145 eavr5.c:145 eavr51.c:145 eavr6.c:145
#: eavrtiny.c:145 eavrxmega1.c:145 eavrxmega2.c:145 eavrxmega2_flmap.c:145
#: eavrxmega3.c:145 eavrxmega4.c:145 eavrxmega4_flmap.c:145 eavrxmega5.c:145
#: eavrxmega6.c:145 eavrxmega7.c:145 eelf32briscv.c:129
#: eelf32briscv_ilp32.c:129 eelf32briscv_ilp32f.c:129 eelf32lriscv.c:129
#: eelf32lriscv_ilp32.c:129 eelf32lriscv_ilp32f.c:129 eelf64briscv.c:129
#: eelf64briscv_lp64.c:129 eelf64briscv_lp64f.c:129 eelf64lriscv.c:129
#: eelf64lriscv_lp64.c:129 eelf64lriscv_lp64f.c:129 ei386pe.c:1523
#: ei386pe_posix.c:1523 emcorepe.c:1523 ends32belf.c:77 ends32belf16m.c:77
#: ends32belf_linux.c:77 ends32elf.c:77 ends32elf16m.c:77 ends32elf_linux.c:77
#: escore3_elf.c:82 escore7_elf.c:82 eshpe.c:1523 ev850.c:94 ev850_rh850.c:94
msgid "%P: error: cannot change output format whilst linking %s binaries\n"
msgstr "%P: error: no se puede cambiar el formato de salida mientras se enlazan los binarios %s\n"
#: eaarch64cloudabi.c:403 eaarch64cloudabi.c:463 eaarch64cloudabi.c:487
#: eaarch64cloudabib.c:403 eaarch64cloudabib.c:463 eaarch64cloudabib.c:487
#: eaarch64elf.c:403 eaarch64elf.c:463 eaarch64elf.c:487 eaarch64elf32.c:403
#: eaarch64elf32.c:463 eaarch64elf32.c:487 eaarch64elf32b.c:403
#: eaarch64elf32b.c:463 eaarch64elf32b.c:487 eaarch64elfb.c:403
#: eaarch64elfb.c:463 eaarch64elfb.c:487 eaarch64fbsd.c:403 eaarch64fbsd.c:463
#: eaarch64fbsd.c:487 eaarch64fbsdb.c:403 eaarch64fbsdb.c:463
#: eaarch64fbsdb.c:487 eaarch64haiku.c:403 eaarch64haiku.c:463
#: eaarch64haiku.c:487 eaarch64linux.c:403 eaarch64linux.c:463
#: eaarch64linux.c:487 eaarch64linux32.c:403 eaarch64linux32.c:463
#: eaarch64linux32.c:487 eaarch64linux32b.c:403 eaarch64linux32b.c:463
#: eaarch64linux32b.c:487 eaarch64linuxb.c:403 eaarch64linuxb.c:463
#: eaarch64linuxb.c:487 eaarch64nto.c:403 eaarch64nto.c:463 eaarch64nto.c:487
msgid "%X%P: error: unrecognized value '-z %s'\n"
msgstr "%X%P: error: no se reconoce el valor '-z %s'\n"
#: eaarch64cloudabi.c:744 eaarch64cloudabib.c:744 eaarch64elf.c:744
#: eaarch64elf32.c:744 eaarch64elf32b.c:744 eaarch64elfb.c:744
#: eaarch64fbsd.c:744 eaarch64fbsdb.c:744 eaarch64haiku.c:744
#: eaarch64linux.c:744 eaarch64linux32.c:744 eaarch64linux32b.c:744
#: eaarch64linuxb.c:744 eaarch64nto.c:906 earcelf.c:233 earclinux.c:324
#: earclinux_nps.c:324 earcv2elf.c:212 earcv2elfx.c:212 earmelf.c:848
#: earmelf_fbsd.c:848 earmelf_fuchsia.c:849 earmelf_haiku.c:849
#: earmelf_linux.c:849 earmelf_linux_eabi.c:849 earmelf_linux_fdpiceabi.c:849
#: earmelf_nacl.c:849 earmelf_nbsd.c:848 earmelf_phoenix.c:849
#: earmelf_vxworks.c:880 earmelfb.c:848 earmelfb_fbsd.c:848
#: earmelfb_fuchsia.c:849 earmelfb_linux.c:849 earmelfb_linux_eabi.c:849
#: earmelfb_linux_fdpiceabi.c:849 earmelfb_nacl.c:849 earmelfb_nbsd.c:848
#: earmnto.c:808 eavr1.c:428 eavr2.c:428 eavr25.c:428 eavr3.c:428 eavr31.c:428
#: eavr35.c:428 eavr4.c:428 eavr5.c:428 eavr51.c:428 eavr6.c:428 eavrtiny.c:428
#: eavrxmega1.c:428 eavrxmega2.c:428 eavrxmega2_flmap.c:428 eavrxmega3.c:428
#: eavrxmega4.c:428 eavrxmega4_flmap.c:428 eavrxmega5.c:428 eavrxmega6.c:428
#: eavrxmega7.c:428 ecriself.c:237 ecrislinux.c:284 ecskyelf.c:476
#: ecskyelf_linux.c:563 ed10velf.c:212 eelf32_sparc.c:324
#: eelf32_sparc_sol2.c:456 eelf32_sparc_vxworks.c:356 eelf32_spu.c:796
#: eelf32_tic6x_be.c:413 eelf32_tic6x_elf_be.c:413 eelf32_tic6x_elf_le.c:413
#: eelf32_tic6x_le.c:413 eelf32_tic6x_linux_be.c:413
#: eelf32_tic6x_linux_le.c:413 eelf32_x86_64.c:8396 eelf32am33lin.c:283
#: eelf32b4300.c:528 eelf32bfin.c:297 eelf32bfinfd.c:337 eelf32bmip.c:528
#: eelf32bmipn32.c:542 eelf32briscv.c:402 eelf32briscv_ilp32.c:402
#: eelf32briscv_ilp32f.c:402 eelf32bsmip.c:542 eelf32btsmip.c:528
#: eelf32btsmip_fbsd.c:528 eelf32btsmipn32.c:528 eelf32btsmipn32_fbsd.c:528
#: eelf32cr16.c:362 eelf32crx.c:249 eelf32ebmip.c:528 eelf32ebmipvxworks.c:559
#: eelf32elmip.c:528 eelf32elmipvxworks.c:559 eelf32epiphany.c:237
#: eelf32epiphany_4x4.c:214 eelf32frvfd.c:323 eelf32ip2k.c:237 eelf32kvx.c:548
#: eelf32l4300.c:528 eelf32lm32.c:237 eelf32lm32fd.c:323 eelf32lmip.c:528
#: eelf32loongarch.c:380 eelf32lppc.c:553 eelf32lppclinux.c:553
#: eelf32lppcnto.c:553 eelf32lppcsim.c:553 eelf32lr5900.c:482
#: eelf32lr5900n32.c:481 eelf32lriscv.c:402 eelf32lriscv_ilp32.c:402
#: eelf32lriscv_ilp32f.c:402 eelf32lsmip.c:528 eelf32ltsmip.c:528
#: eelf32ltsmip_fbsd.c:528 eelf32ltsmipn32.c:528 eelf32ltsmipn32_fbsd.c:528
#: eelf32m32c.c:248 eelf32mb_linux.c:324 eelf32mbel_linux.c:324
#: eelf32mcore.c:240 eelf32mep.c:212 eelf32metag.c:570 eelf32microblaze.c:212
#: eelf32microblazeel.c:212 eelf32mipswindiss.c:441 eelf32moxie.c:237
#: eelf32or1k.c:238 eelf32or1k_linux.c:324 eelf32ppc.c:553 eelf32ppc_fbsd.c:553
#: eelf32ppchaiku.c:553 eelf32ppclinux.c:553 eelf32ppcnto.c:553
#: eelf32ppcsim.c:553 eelf32ppcvxworks.c:523 eelf32ppcwindiss.c:553
#: eelf32rl78.c:237 eelf32rx.c:259 eelf32rx_linux.c:250 eelf32tilegx.c:324
#: eelf32tilegx_be.c:324 eelf32tilepro.c:324 eelf32vax.c:283 eelf32visium.c:212
#: eelf32xstormy16.c:223 eelf32xtensa.c:2227 eelf32z80.c:239 eelf64_aix.c:283
#: eelf64_ia64.c:352 eelf64_ia64_fbsd.c:352 eelf64_s390.c:426
#: eelf64_sparc.c:324 eelf64_sparc_fbsd.c:324 eelf64_sparc_sol2.c:456
#: eelf64alpha.c:388 eelf64alpha_fbsd.c:388 eelf64alpha_nbsd.c:388
#: eelf64bmip.c:542 eelf64bpf.c:212 eelf64briscv.c:402 eelf64briscv_lp64.c:402
#: eelf64briscv_lp64f.c:402 eelf64btsmip.c:528 eelf64btsmip_fbsd.c:528
#: eelf64hppa.c:233 eelf64kvx.c:548 eelf64kvx_linux.c:586 eelf64loongarch.c:380
#: eelf64lppc.c:989 eelf64lppc_fbsd.c:989 eelf64lriscv.c:402
#: eelf64lriscv_lp64.c:402 eelf64lriscv_lp64f.c:402 eelf64ltsmip.c:528
#: eelf64ltsmip_fbsd.c:528 eelf64mmix.c:391 eelf64ppc.c:989
#: eelf64ppc_fbsd.c:989 eelf64rdos.c:377 eelf64tilegx.c:324
#: eelf64tilegx_be.c:324 eelf_i386.c:7822 eelf_i386_be.c:307
#: eelf_i386_fbsd.c:354 eelf_i386_haiku.c:354 eelf_i386_ldso.c:314
#: eelf_i386_sol2.c:486 eelf_i386_vxworks.c:380 eelf_iamcu.c:354
#: eelf_mipsel_haiku.c:528 eelf_s390.c:324 eelf_x86_64.c:8396
#: eelf_x86_64_cloudabi.c:394 eelf_x86_64_fbsd.c:394 eelf_x86_64_haiku.c:394
#: eelf_x86_64_sol2.c:526 eh8300elf.c:237 eh8300elf_linux.c:237
#: eh8300helf.c:237 eh8300helf_linux.c:237 eh8300hnelf.c:237 eh8300self.c:237
#: eh8300self_linux.c:237 eh8300snelf.c:237 eh8300sxelf.c:237
#: eh8300sxelf_linux.c:237 eh8300sxnelf.c:237 ehppa64linux.c:283 ehppaelf.c:491
#: ehppalinux.c:603 ehppanbsd.c:603 ehppaobsd.c:603 ei386lynx.c:298
#: ei386moss.c:298 ei386nto.c:298 em32relf.c:237 em32relf_linux.c:323
#: em32rlelf.c:237 em32rlelf_linux.c:323 em68hc11elf.c:493 em68hc11elfb.c:493
#: em68hc12elf.c:493 em68hc12elfb.c:493 em68kelf.c:478 em68kelfnbsd.c:478
#: emn10300.c:283 ends32belf.c:336 ends32belf16m.c:336 ends32belf_linux.c:369
#: ends32elf.c:336 ends32elf16m.c:336 ends32elf_linux.c:369 epruelf.c:233
#: escore3_elf.c:301 escore7_elf.c:301 eshelf.c:283 eshelf_fd.c:324
#: eshelf_linux.c:324 eshelf_nbsd.c:283 eshelf_nto.c:283 eshelf_uclinux.c:283
#: eshelf_vxworks.c:315 eshlelf.c:283 eshlelf_fd.c:324 eshlelf_linux.c:324
#: eshlelf_nbsd.c:283 eshlelf_nto.c:283 eshlelf_vxworks.c:315 ev850.c:259
#: ev850_rh850.c:259
msgid "%P: --compress-debug-sections=zstd: ld is not built with zstd support\n"
msgstr "%P: --compress-debug-sections=zstd: ld no está construido con soporte para zstd\n"
#: eaarch64cloudabi.c:749 eaarch64cloudabib.c:749 eaarch64elf.c:749
#: eaarch64elf32.c:749 eaarch64elf32b.c:749 eaarch64elfb.c:749
#: eaarch64fbsd.c:749 eaarch64fbsdb.c:749 eaarch64haiku.c:749
#: eaarch64linux.c:749 eaarch64linux32.c:749 eaarch64linux32b.c:749
#: eaarch64linuxb.c:749 eaarch64nto.c:911 earcelf.c:238 earclinux.c:329
#: earclinux_nps.c:329 earcv2elf.c:217 earcv2elfx.c:217 earmelf.c:853
#: earmelf_fbsd.c:853 earmelf_fuchsia.c:854 earmelf_haiku.c:854
#: earmelf_linux.c:854 earmelf_linux_eabi.c:854 earmelf_linux_fdpiceabi.c:854
#: earmelf_nacl.c:854 earmelf_nbsd.c:853 earmelf_phoenix.c:854
#: earmelf_vxworks.c:885 earmelfb.c:853 earmelfb_fbsd.c:853
#: earmelfb_fuchsia.c:854 earmelfb_linux.c:854 earmelfb_linux_eabi.c:854
#: earmelfb_linux_fdpiceabi.c:854 earmelfb_nacl.c:854 earmelfb_nbsd.c:853
#: earmnto.c:813 eavr1.c:433 eavr2.c:433 eavr25.c:433 eavr3.c:433 eavr31.c:433
#: eavr35.c:433 eavr4.c:433 eavr5.c:433 eavr51.c:433 eavr6.c:433 eavrtiny.c:433
#: eavrxmega1.c:433 eavrxmega2.c:433 eavrxmega2_flmap.c:433 eavrxmega3.c:433
#: eavrxmega4.c:433 eavrxmega4_flmap.c:433 eavrxmega5.c:433 eavrxmega6.c:433
#: eavrxmega7.c:433 ecriself.c:242 ecrislinux.c:289 ecskyelf.c:481
#: ecskyelf_linux.c:568 ed10velf.c:217 eelf32_sparc.c:329
#: eelf32_sparc_sol2.c:461 eelf32_sparc_vxworks.c:361 eelf32_spu.c:801
#: eelf32_tic6x_be.c:418 eelf32_tic6x_elf_be.c:418 eelf32_tic6x_elf_le.c:418
#: eelf32_tic6x_le.c:418 eelf32_tic6x_linux_be.c:418
#: eelf32_tic6x_linux_le.c:418 eelf32_x86_64.c:8401 eelf32am33lin.c:288
#: eelf32b4300.c:533 eelf32bfin.c:302 eelf32bfinfd.c:342 eelf32bmip.c:533
#: eelf32bmipn32.c:547 eelf32briscv.c:407 eelf32briscv_ilp32.c:407
#: eelf32briscv_ilp32f.c:407 eelf32bsmip.c:547 eelf32btsmip.c:533
#: eelf32btsmip_fbsd.c:533 eelf32btsmipn32.c:533 eelf32btsmipn32_fbsd.c:533
#: eelf32cr16.c:367 eelf32crx.c:254 eelf32ebmip.c:533 eelf32ebmipvxworks.c:564
#: eelf32elmip.c:533 eelf32elmipvxworks.c:564 eelf32epiphany.c:242
#: eelf32epiphany_4x4.c:219 eelf32frvfd.c:328 eelf32ip2k.c:242 eelf32kvx.c:553
#: eelf32l4300.c:533 eelf32lm32.c:242 eelf32lm32fd.c:328 eelf32lmip.c:533
#: eelf32loongarch.c:385 eelf32lppc.c:558 eelf32lppclinux.c:558
#: eelf32lppcnto.c:558 eelf32lppcsim.c:558 eelf32lr5900.c:487
#: eelf32lr5900n32.c:486 eelf32lriscv.c:407 eelf32lriscv_ilp32.c:407
#: eelf32lriscv_ilp32f.c:407 eelf32lsmip.c:533 eelf32ltsmip.c:533
#: eelf32ltsmip_fbsd.c:533 eelf32ltsmipn32.c:533 eelf32ltsmipn32_fbsd.c:533
#: eelf32m32c.c:253 eelf32mb_linux.c:329 eelf32mbel_linux.c:329
#: eelf32mcore.c:245 eelf32mep.c:217 eelf32metag.c:575 eelf32microblaze.c:217
#: eelf32microblazeel.c:217 eelf32mipswindiss.c:446 eelf32moxie.c:242
#: eelf32or1k.c:243 eelf32or1k_linux.c:329 eelf32ppc.c:558 eelf32ppc_fbsd.c:558
#: eelf32ppchaiku.c:558 eelf32ppclinux.c:558 eelf32ppcnto.c:558
#: eelf32ppcsim.c:558 eelf32ppcvxworks.c:528 eelf32ppcwindiss.c:558
#: eelf32rl78.c:242 eelf32rx.c:264 eelf32rx_linux.c:255 eelf32tilegx.c:329
#: eelf32tilegx_be.c:329 eelf32tilepro.c:329 eelf32vax.c:288 eelf32visium.c:217
#: eelf32xstormy16.c:228 eelf32xtensa.c:2232 eelf32z80.c:244 eelf64_aix.c:288
#: eelf64_ia64.c:357 eelf64_ia64_fbsd.c:357 eelf64_s390.c:431
#: eelf64_sparc.c:329 eelf64_sparc_fbsd.c:329 eelf64_sparc_sol2.c:461
#: eelf64alpha.c:393 eelf64alpha_fbsd.c:393 eelf64alpha_nbsd.c:393
#: eelf64bmip.c:547 eelf64bpf.c:217 eelf64briscv.c:407 eelf64briscv_lp64.c:407
#: eelf64briscv_lp64f.c:407 eelf64btsmip.c:533 eelf64btsmip_fbsd.c:533
#: eelf64hppa.c:238 eelf64kvx.c:553 eelf64kvx_linux.c:591 eelf64loongarch.c:385
#: eelf64lppc.c:994 eelf64lppc_fbsd.c:994 eelf64lriscv.c:407
#: eelf64lriscv_lp64.c:407 eelf64lriscv_lp64f.c:407 eelf64ltsmip.c:533
#: eelf64ltsmip_fbsd.c:533 eelf64mmix.c:396 eelf64ppc.c:994
#: eelf64ppc_fbsd.c:994 eelf64rdos.c:382 eelf64tilegx.c:329
#: eelf64tilegx_be.c:329 eelf_i386.c:7827 eelf_i386_be.c:312
#: eelf_i386_fbsd.c:359 eelf_i386_haiku.c:359 eelf_i386_ldso.c:319
#: eelf_i386_sol2.c:491 eelf_i386_vxworks.c:385 eelf_iamcu.c:359
#: eelf_mipsel_haiku.c:533 eelf_s390.c:329 eelf_x86_64.c:8401
#: eelf_x86_64_cloudabi.c:399 eelf_x86_64_fbsd.c:399 eelf_x86_64_haiku.c:399
#: eelf_x86_64_sol2.c:531 eh8300elf.c:242 eh8300elf_linux.c:242
#: eh8300helf.c:242 eh8300helf_linux.c:242 eh8300hnelf.c:242 eh8300self.c:242
#: eh8300self_linux.c:242 eh8300snelf.c:242 eh8300sxelf.c:242
#: eh8300sxelf_linux.c:242 eh8300sxnelf.c:242 ehppa64linux.c:288 ehppaelf.c:496
#: ehppalinux.c:608 ehppanbsd.c:608 ehppaobsd.c:608 ei386lynx.c:303
#: ei386moss.c:303 ei386nto.c:303 em32relf.c:242 em32relf_linux.c:328
#: em32rlelf.c:242 em32rlelf_linux.c:328 em68hc11elf.c:498 em68hc11elfb.c:498
#: em68hc12elf.c:498 em68hc12elfb.c:498 em68kelf.c:483 em68kelfnbsd.c:483
#: emn10300.c:288 ends32belf.c:341 ends32belf16m.c:341 ends32belf_linux.c:374
#: ends32elf.c:341 ends32elf16m.c:341 ends32elf_linux.c:374 epruelf.c:238
#: escore3_elf.c:306 escore7_elf.c:306 eshelf.c:288 eshelf_fd.c:329
#: eshelf_linux.c:329 eshelf_nbsd.c:288 eshelf_nto.c:288 eshelf_uclinux.c:288
#: eshelf_vxworks.c:320 eshlelf.c:288 eshlelf_fd.c:329 eshlelf_linux.c:329
#: eshlelf_nbsd.c:288 eshlelf_nto.c:288 eshlelf_vxworks.c:320 ev850.c:264
#: ev850_rh850.c:264
msgid "%P: invalid --compress-debug-sections option: `%s'\n"
msgstr "%P: opción --compress-debug-sections no válida: `%s'\n"
#: eaarch64cloudabi.c:807 eaarch64cloudabib.c:807 eaarch64elf.c:807
#: eaarch64elf32.c:807 eaarch64elf32b.c:807 eaarch64elfb.c:807
#: eaarch64fbsd.c:807 eaarch64fbsdb.c:807 eaarch64haiku.c:807
#: eaarch64linux.c:807 eaarch64linux32.c:807 eaarch64linux32b.c:807
#: eaarch64linuxb.c:807 eaarch64nto.c:969 earcelf.c:296 earclinux.c:387
#: earclinux_nps.c:387 earmelf.c:911 earmelf_fbsd.c:911 earmelf_fuchsia.c:912
#: earmelf_haiku.c:912 earmelf_linux.c:912 earmelf_linux_eabi.c:912
#: earmelf_linux_fdpiceabi.c:912 earmelf_nacl.c:912 earmelf_nbsd.c:911
#: earmelf_phoenix.c:912 earmelf_vxworks.c:943 earmelfb.c:911
#: earmelfb_fbsd.c:911 earmelfb_fuchsia.c:912 earmelfb_linux.c:912
#: earmelfb_linux_eabi.c:912 earmelfb_linux_fdpiceabi.c:912 earmelfb_nacl.c:912
#: earmelfb_nbsd.c:911 earmnto.c:871 ecrislinux.c:347 ecskyelf_linux.c:626
#: eelf32_sparc.c:387 eelf32_sparc_sol2.c:519 eelf32_sparc_vxworks.c:419
#: eelf32_tic6x_be.c:476 eelf32_tic6x_elf_be.c:476 eelf32_tic6x_elf_le.c:476
#: eelf32_tic6x_le.c:476 eelf32_tic6x_linux_be.c:476
#: eelf32_tic6x_linux_le.c:476 eelf32_x86_64.c:8459 eelf32am33lin.c:346
#: eelf32b4300.c:591 eelf32bfin.c:360 eelf32bfinfd.c:400 eelf32bmip.c:591
#: eelf32bmipn32.c:605 eelf32briscv.c:465 eelf32briscv_ilp32.c:465
#: eelf32briscv_ilp32f.c:465 eelf32bsmip.c:605 eelf32btsmip.c:591
#: eelf32btsmip_fbsd.c:591 eelf32btsmipn32.c:591 eelf32btsmipn32_fbsd.c:591
#: eelf32ebmip.c:591 eelf32ebmipvxworks.c:622 eelf32elmip.c:591
#: eelf32elmipvxworks.c:622 eelf32frvfd.c:386 eelf32kvx.c:611 eelf32l4300.c:591
#: eelf32lm32fd.c:386 eelf32lmip.c:591 eelf32loongarch.c:443 eelf32lppc.c:616
#: eelf32lppclinux.c:616 eelf32lppcnto.c:616 eelf32lppcsim.c:616
#: eelf32lriscv.c:465 eelf32lriscv_ilp32.c:465 eelf32lriscv_ilp32f.c:465
#: eelf32lsmip.c:591 eelf32ltsmip.c:591 eelf32ltsmip_fbsd.c:591
#: eelf32ltsmipn32.c:591 eelf32ltsmipn32_fbsd.c:591 eelf32mb_linux.c:387
#: eelf32mbel_linux.c:387 eelf32metag.c:633 eelf32or1k_linux.c:387
#: eelf32ppc.c:616 eelf32ppc_fbsd.c:616 eelf32ppchaiku.c:616
#: eelf32ppclinux.c:616 eelf32ppcnto.c:616 eelf32ppcsim.c:616
#: eelf32ppcvxworks.c:586 eelf32ppcwindiss.c:616 eelf32tilegx.c:387
#: eelf32tilegx_be.c:387 eelf32tilepro.c:387 eelf32vax.c:346
#: eelf32xtensa.c:2290 eelf64_aix.c:346 eelf64_ia64.c:415
#: eelf64_ia64_fbsd.c:415 eelf64_s390.c:489 eelf64_sparc.c:387
#: eelf64_sparc_fbsd.c:387 eelf64_sparc_sol2.c:519 eelf64alpha.c:451
#: eelf64alpha_fbsd.c:451 eelf64alpha_nbsd.c:451 eelf64bmip.c:605
#: eelf64briscv.c:465 eelf64briscv_lp64.c:465 eelf64briscv_lp64f.c:465
#: eelf64btsmip.c:591 eelf64btsmip_fbsd.c:591 eelf64hppa.c:296 eelf64kvx.c:611
#: eelf64kvx_linux.c:649 eelf64loongarch.c:443 eelf64lppc.c:1052
#: eelf64lppc_fbsd.c:1052 eelf64lriscv.c:465 eelf64lriscv_lp64.c:465
#: eelf64lriscv_lp64f.c:465 eelf64ltsmip.c:591 eelf64ltsmip_fbsd.c:591
#: eelf64mmix.c:454 eelf64ppc.c:1052 eelf64ppc_fbsd.c:1052 eelf64rdos.c:440
#: eelf64tilegx.c:387 eelf64tilegx_be.c:387 eelf_i386.c:7885 eelf_i386_be.c:370
#: eelf_i386_fbsd.c:417 eelf_i386_haiku.c:417 eelf_i386_ldso.c:377
#: eelf_i386_sol2.c:549 eelf_i386_vxworks.c:443 eelf_iamcu.c:417
#: eelf_mipsel_haiku.c:591 eelf_s390.c:387 eelf_x86_64.c:8459
#: eelf_x86_64_cloudabi.c:457 eelf_x86_64_fbsd.c:457 eelf_x86_64_haiku.c:457
#: eelf_x86_64_sol2.c:589 ehppa64linux.c:346 ehppalinux.c:666 ehppanbsd.c:666
#: ehppaobsd.c:666 ei386lynx.c:361 ei386moss.c:361 ei386nto.c:361
#: em32relf_linux.c:386 em32rlelf_linux.c:386 em68kelf.c:541 em68kelfnbsd.c:541
#: emn10300.c:346 ends32belf_linux.c:432 ends32elf_linux.c:432
#: escore3_elf.c:364 escore7_elf.c:364 eshelf.c:346 eshelf_fd.c:387
#: eshelf_linux.c:387 eshelf_nbsd.c:346 eshelf_nto.c:346 eshelf_uclinux.c:346
#: eshelf_vxworks.c:378 eshlelf.c:346 eshlelf_fd.c:387 eshlelf_linux.c:387
#: eshlelf_nbsd.c:346 eshlelf_nto.c:346 eshlelf_vxworks.c:378
msgid "%P: invalid hash style `%s'\n"
msgstr "%P: estilo de hash no válido `%s'\n"
#: eaarch64cloudabi.c:824 eaarch64cloudabib.c:824 eaarch64elf.c:824
#: eaarch64elf32.c:824 eaarch64elf32b.c:824 eaarch64elfb.c:824
#: eaarch64fbsd.c:824 eaarch64fbsdb.c:824 eaarch64haiku.c:824
#: eaarch64linux.c:824 eaarch64linux32.c:824 eaarch64linux32b.c:824
#: eaarch64linuxb.c:824 eaarch64nto.c:986 earcelf.c:313 earclinux.c:404
#: earclinux_nps.c:404 earcv2elf.c:241 earcv2elfx.c:241 earmelf.c:928
#: earmelf_fbsd.c:928 earmelf_fuchsia.c:929 earmelf_haiku.c:929
#: earmelf_linux.c:929 earmelf_linux_eabi.c:929 earmelf_linux_fdpiceabi.c:929
#: earmelf_nacl.c:929 earmelf_nbsd.c:928 earmelf_phoenix.c:929
#: earmelf_vxworks.c:960 earmelfb.c:928 earmelfb_fbsd.c:928
#: earmelfb_fuchsia.c:929 earmelfb_linux.c:929 earmelfb_linux_eabi.c:929
#: earmelfb_linux_fdpiceabi.c:929 earmelfb_nacl.c:929 earmelfb_nbsd.c:928
#: earmnto.c:888 eavr1.c:457 eavr2.c:457 eavr25.c:457 eavr3.c:457 eavr31.c:457
#: eavr35.c:457 eavr4.c:457 eavr5.c:457 eavr51.c:457 eavr6.c:457 eavrtiny.c:457
#: eavrxmega1.c:457 eavrxmega2.c:457 eavrxmega2_flmap.c:457 eavrxmega3.c:457
#: eavrxmega4.c:457 eavrxmega4_flmap.c:457 eavrxmega5.c:457 eavrxmega6.c:457
#: eavrxmega7.c:457 ecriself.c:266 ecrislinux.c:364 ecskyelf.c:505
#: ecskyelf_linux.c:643 ed10velf.c:241 eelf32_sparc.c:404
#: eelf32_sparc_sol2.c:536 eelf32_sparc_vxworks.c:436 eelf32_spu.c:825
#: eelf32_tic6x_be.c:493 eelf32_tic6x_elf_be.c:493 eelf32_tic6x_elf_le.c:493
#: eelf32_tic6x_le.c:493 eelf32_tic6x_linux_be.c:493
#: eelf32_tic6x_linux_le.c:493 eelf32_x86_64.c:8476 eelf32am33lin.c:363
#: eelf32b4300.c:608 eelf32bfin.c:377 eelf32bfinfd.c:417 eelf32bmip.c:608
#: eelf32bmipn32.c:622 eelf32briscv.c:482 eelf32briscv_ilp32.c:482
#: eelf32briscv_ilp32f.c:482 eelf32bsmip.c:622 eelf32btsmip.c:608
#: eelf32btsmip_fbsd.c:608 eelf32btsmipn32.c:608 eelf32btsmipn32_fbsd.c:608
#: eelf32cr16.c:391 eelf32crx.c:278 eelf32ebmip.c:608 eelf32ebmipvxworks.c:639
#: eelf32elmip.c:608 eelf32elmipvxworks.c:639 eelf32epiphany.c:266
#: eelf32epiphany_4x4.c:243 eelf32frvfd.c:403 eelf32ip2k.c:266 eelf32kvx.c:628
#: eelf32l4300.c:608 eelf32lm32.c:266 eelf32lm32fd.c:403 eelf32lmip.c:608
#: eelf32loongarch.c:460 eelf32lppc.c:633 eelf32lppclinux.c:633
#: eelf32lppcnto.c:633 eelf32lppcsim.c:633 eelf32lr5900.c:511
#: eelf32lr5900n32.c:510 eelf32lriscv.c:482 eelf32lriscv_ilp32.c:482
#: eelf32lriscv_ilp32f.c:482 eelf32lsmip.c:608 eelf32ltsmip.c:608
#: eelf32ltsmip_fbsd.c:608 eelf32ltsmipn32.c:608 eelf32ltsmipn32_fbsd.c:608
#: eelf32m32c.c:277 eelf32mb_linux.c:404 eelf32mbel_linux.c:404
#: eelf32mcore.c:269 eelf32mep.c:241 eelf32metag.c:650 eelf32microblaze.c:241
#: eelf32microblazeel.c:241 eelf32mipswindiss.c:470 eelf32moxie.c:266
#: eelf32or1k.c:267 eelf32or1k_linux.c:404 eelf32ppc.c:633 eelf32ppc_fbsd.c:633
#: eelf32ppchaiku.c:633 eelf32ppclinux.c:633 eelf32ppcnto.c:633
#: eelf32ppcsim.c:633 eelf32ppcvxworks.c:603 eelf32ppcwindiss.c:633
#: eelf32rl78.c:266 eelf32rx.c:288 eelf32rx_linux.c:279 eelf32tilegx.c:404
#: eelf32tilegx_be.c:404 eelf32tilepro.c:404 eelf32vax.c:363 eelf32visium.c:241
#: eelf32xstormy16.c:252 eelf32xtensa.c:2307 eelf32z80.c:268 eelf64_aix.c:363
#: eelf64_ia64.c:432 eelf64_ia64_fbsd.c:432 eelf64_s390.c:506
#: eelf64_sparc.c:404 eelf64_sparc_fbsd.c:404 eelf64_sparc_sol2.c:536
#: eelf64alpha.c:468 eelf64alpha_fbsd.c:468 eelf64alpha_nbsd.c:468
#: eelf64bmip.c:622 eelf64bpf.c:241 eelf64briscv.c:482 eelf64briscv_lp64.c:482
#: eelf64briscv_lp64f.c:482 eelf64btsmip.c:608 eelf64btsmip_fbsd.c:608
#: eelf64hppa.c:313 eelf64kvx.c:628 eelf64kvx_linux.c:666 eelf64loongarch.c:460
#: eelf64lppc.c:1069 eelf64lppc_fbsd.c:1069 eelf64lriscv.c:482
#: eelf64lriscv_lp64.c:482 eelf64lriscv_lp64f.c:482 eelf64ltsmip.c:608
#: eelf64ltsmip_fbsd.c:608 eelf64mmix.c:471 eelf64ppc.c:1069
#: eelf64ppc_fbsd.c:1069 eelf64rdos.c:457 eelf64tilegx.c:404
#: eelf64tilegx_be.c:404 eelf_i386.c:7902 eelf_i386_be.c:387
#: eelf_i386_fbsd.c:434 eelf_i386_haiku.c:434 eelf_i386_ldso.c:394
#: eelf_i386_sol2.c:566 eelf_i386_vxworks.c:460 eelf_iamcu.c:434
#: eelf_mipsel_haiku.c:608 eelf_s390.c:404 eelf_x86_64.c:8476
#: eelf_x86_64_cloudabi.c:474 eelf_x86_64_fbsd.c:474 eelf_x86_64_haiku.c:474
#: eelf_x86_64_sol2.c:606 eh8300elf.c:266 eh8300elf_linux.c:266
#: eh8300helf.c:266 eh8300helf_linux.c:266 eh8300hnelf.c:266 eh8300self.c:266
#: eh8300self_linux.c:266 eh8300snelf.c:266 eh8300sxelf.c:266
#: eh8300sxelf_linux.c:266 eh8300sxnelf.c:266 ehppa64linux.c:363 ehppaelf.c:520
#: ehppalinux.c:683 ehppanbsd.c:683 ehppaobsd.c:683 ei386lynx.c:378
#: ei386moss.c:378 ei386nto.c:378 em32relf.c:266 em32relf_linux.c:403
#: em32rlelf.c:266 em32rlelf_linux.c:403 em68hc11elf.c:522 em68hc11elfb.c:522
#: em68hc12elf.c:522 em68hc12elfb.c:522 em68kelf.c:558 em68kelfnbsd.c:558
#: emn10300.c:363 ends32belf.c:365 ends32belf16m.c:365 ends32belf_linux.c:449
#: ends32elf.c:365 ends32elf16m.c:365 ends32elf_linux.c:449 epruelf.c:262
#: escore3_elf.c:381 escore7_elf.c:381 eshelf.c:363 eshelf_fd.c:404
#: eshelf_linux.c:404 eshelf_nbsd.c:363 eshelf_nto.c:363 eshelf_uclinux.c:363
#: eshelf_vxworks.c:395 eshlelf.c:363 eshlelf_fd.c:404 eshlelf_linux.c:404
#: eshlelf_nbsd.c:363 eshlelf_nto.c:363 eshlelf_vxworks.c:395 ev850.c:288
#: ev850_rh850.c:288
msgid "%P: invalid maximum page size `%s'\n"
msgstr "%P: tamaño de página máximo no válido `%s'\n"
#: eaarch64cloudabi.c:834 eaarch64cloudabib.c:834 eaarch64elf.c:834
#: eaarch64elf32.c:834 eaarch64elf32b.c:834 eaarch64elfb.c:834
#: eaarch64fbsd.c:834 eaarch64fbsdb.c:834 eaarch64haiku.c:834
#: eaarch64linux.c:834 eaarch64linux32.c:834 eaarch64linux32b.c:834
#: eaarch64linuxb.c:834 eaarch64nto.c:996 earcelf.c:323 earclinux.c:414
#: earclinux_nps.c:414 earcv2elf.c:251 earcv2elfx.c:251 earmelf.c:938
#: earmelf_fbsd.c:938 earmelf_fuchsia.c:939 earmelf_haiku.c:939
#: earmelf_linux.c:939 earmelf_linux_eabi.c:939 earmelf_linux_fdpiceabi.c:939
#: earmelf_nacl.c:939 earmelf_nbsd.c:938 earmelf_phoenix.c:939
#: earmelf_vxworks.c:970 earmelfb.c:938 earmelfb_fbsd.c:938
#: earmelfb_fuchsia.c:939 earmelfb_linux.c:939 earmelfb_linux_eabi.c:939
#: earmelfb_linux_fdpiceabi.c:939 earmelfb_nacl.c:939 earmelfb_nbsd.c:938
#: earmnto.c:898 eavr1.c:467 eavr2.c:467 eavr25.c:467 eavr3.c:467 eavr31.c:467
#: eavr35.c:467 eavr4.c:467 eavr5.c:467 eavr51.c:467 eavr6.c:467 eavrtiny.c:467
#: eavrxmega1.c:467 eavrxmega2.c:467 eavrxmega2_flmap.c:467 eavrxmega3.c:467
#: eavrxmega4.c:467 eavrxmega4_flmap.c:467 eavrxmega5.c:467 eavrxmega6.c:467
#: eavrxmega7.c:467 ecriself.c:276 ecrislinux.c:374 ecskyelf.c:515
#: ecskyelf_linux.c:653 ed10velf.c:251 eelf32_sparc.c:414
#: eelf32_sparc_sol2.c:546 eelf32_sparc_vxworks.c:446 eelf32_spu.c:835
#: eelf32_tic6x_be.c:503 eelf32_tic6x_elf_be.c:503 eelf32_tic6x_elf_le.c:503
#: eelf32_tic6x_le.c:503 eelf32_tic6x_linux_be.c:503
#: eelf32_tic6x_linux_le.c:503 eelf32_x86_64.c:8486 eelf32am33lin.c:373
#: eelf32b4300.c:618 eelf32bfin.c:387 eelf32bfinfd.c:427 eelf32bmip.c:618
#: eelf32bmipn32.c:632 eelf32briscv.c:492 eelf32briscv_ilp32.c:492
#: eelf32briscv_ilp32f.c:492 eelf32bsmip.c:632 eelf32btsmip.c:618
#: eelf32btsmip_fbsd.c:618 eelf32btsmipn32.c:618 eelf32btsmipn32_fbsd.c:618
#: eelf32cr16.c:401 eelf32crx.c:288 eelf32ebmip.c:618 eelf32ebmipvxworks.c:649
#: eelf32elmip.c:618 eelf32elmipvxworks.c:649 eelf32epiphany.c:276
#: eelf32epiphany_4x4.c:253 eelf32frvfd.c:413 eelf32ip2k.c:276 eelf32kvx.c:638
#: eelf32l4300.c:618 eelf32lm32.c:276 eelf32lm32fd.c:413 eelf32lmip.c:618
#: eelf32loongarch.c:470 eelf32lppc.c:643 eelf32lppclinux.c:643
#: eelf32lppcnto.c:643 eelf32lppcsim.c:643 eelf32lr5900.c:521
#: eelf32lr5900n32.c:520 eelf32lriscv.c:492 eelf32lriscv_ilp32.c:492
#: eelf32lriscv_ilp32f.c:492 eelf32lsmip.c:618 eelf32ltsmip.c:618
#: eelf32ltsmip_fbsd.c:618 eelf32ltsmipn32.c:618 eelf32ltsmipn32_fbsd.c:618
#: eelf32m32c.c:287 eelf32mb_linux.c:414 eelf32mbel_linux.c:414
#: eelf32mcore.c:279 eelf32mep.c:251 eelf32metag.c:660 eelf32microblaze.c:251
#: eelf32microblazeel.c:251 eelf32mipswindiss.c:480 eelf32moxie.c:276
#: eelf32or1k.c:277 eelf32or1k_linux.c:414 eelf32ppc.c:643 eelf32ppc_fbsd.c:643
#: eelf32ppchaiku.c:643 eelf32ppclinux.c:643 eelf32ppcnto.c:643
#: eelf32ppcsim.c:643 eelf32ppcvxworks.c:613 eelf32ppcwindiss.c:643
#: eelf32rl78.c:276 eelf32rx.c:298 eelf32rx_linux.c:289 eelf32tilegx.c:414
#: eelf32tilegx_be.c:414 eelf32tilepro.c:414 eelf32vax.c:373 eelf32visium.c:251
#: eelf32xstormy16.c:262 eelf32xtensa.c:2317 eelf32z80.c:278 eelf64_aix.c:373
#: eelf64_ia64.c:442 eelf64_ia64_fbsd.c:442 eelf64_s390.c:516
#: eelf64_sparc.c:414 eelf64_sparc_fbsd.c:414 eelf64_sparc_sol2.c:546
#: eelf64alpha.c:478 eelf64alpha_fbsd.c:478 eelf64alpha_nbsd.c:478
#: eelf64bmip.c:632 eelf64bpf.c:251 eelf64briscv.c:492 eelf64briscv_lp64.c:492
#: eelf64briscv_lp64f.c:492 eelf64btsmip.c:618 eelf64btsmip_fbsd.c:618
#: eelf64hppa.c:323 eelf64kvx.c:638 eelf64kvx_linux.c:676 eelf64loongarch.c:470
#: eelf64lppc.c:1079 eelf64lppc_fbsd.c:1079 eelf64lriscv.c:492
#: eelf64lriscv_lp64.c:492 eelf64lriscv_lp64f.c:492 eelf64ltsmip.c:618
#: eelf64ltsmip_fbsd.c:618 eelf64mmix.c:481 eelf64ppc.c:1079
#: eelf64ppc_fbsd.c:1079 eelf64rdos.c:467 eelf64tilegx.c:414
#: eelf64tilegx_be.c:414 eelf_i386.c:7912 eelf_i386_be.c:397
#: eelf_i386_fbsd.c:444 eelf_i386_haiku.c:444 eelf_i386_ldso.c:404
#: eelf_i386_sol2.c:576 eelf_i386_vxworks.c:470 eelf_iamcu.c:444
#: eelf_mipsel_haiku.c:618 eelf_s390.c:414 eelf_x86_64.c:8486
#: eelf_x86_64_cloudabi.c:484 eelf_x86_64_fbsd.c:484 eelf_x86_64_haiku.c:484
#: eelf_x86_64_sol2.c:616 eh8300elf.c:276 eh8300elf_linux.c:276
#: eh8300helf.c:276 eh8300helf_linux.c:276 eh8300hnelf.c:276 eh8300self.c:276
#: eh8300self_linux.c:276 eh8300snelf.c:276 eh8300sxelf.c:276
#: eh8300sxelf_linux.c:276 eh8300sxnelf.c:276 ehppa64linux.c:373 ehppaelf.c:530
#: ehppalinux.c:693 ehppanbsd.c:693 ehppaobsd.c:693 ei386lynx.c:388
#: ei386moss.c:388 ei386nto.c:388 em32relf.c:276 em32relf_linux.c:413
#: em32rlelf.c:276 em32rlelf_linux.c:413 em68hc11elf.c:532 em68hc11elfb.c:532
#: em68hc12elf.c:532 em68hc12elfb.c:532 em68kelf.c:568 em68kelfnbsd.c:568
#: emn10300.c:373 ends32belf.c:375 ends32belf16m.c:375 ends32belf_linux.c:459
#: ends32elf.c:375 ends32elf16m.c:375 ends32elf_linux.c:459 epruelf.c:272
#: escore3_elf.c:391 escore7_elf.c:391 eshelf.c:373 eshelf_fd.c:414
#: eshelf_linux.c:414 eshelf_nbsd.c:373 eshelf_nto.c:373 eshelf_uclinux.c:373
#: eshelf_vxworks.c:405 eshlelf.c:373 eshlelf_fd.c:414 eshlelf_linux.c:414
#: eshlelf_nbsd.c:373 eshlelf_nto.c:373 eshlelf_vxworks.c:405 ev850.c:298
#: ev850_rh850.c:298
msgid "%P: invalid common page size `%s'\n"
msgstr "%P: tamaño de página normal no válido `%s'\n"
#: eaarch64cloudabi.c:843 eaarch64cloudabib.c:843 eaarch64elf.c:843
#: eaarch64elf32.c:843 eaarch64elf32b.c:843 eaarch64elfb.c:843
#: eaarch64fbsd.c:843 eaarch64fbsdb.c:843 eaarch64haiku.c:843
#: eaarch64linux.c:843 eaarch64linux32.c:843 eaarch64linux32b.c:843
#: eaarch64linuxb.c:843 eaarch64nto.c:1005 eaarch64nto.c:1192 earcelf.c:332
#: earclinux.c:423 earclinux_nps.c:423 earcv2elf.c:260 earcv2elfx.c:260
#: earmelf.c:947 earmelf_fbsd.c:947 earmelf_fuchsia.c:948 earmelf_haiku.c:948
#: earmelf_linux.c:948 earmelf_linux_eabi.c:948 earmelf_linux_fdpiceabi.c:948
#: earmelf_nacl.c:948 earmelf_nbsd.c:947 earmelf_phoenix.c:948
#: earmelf_vxworks.c:979 earmelfb.c:947 earmelfb_fbsd.c:947
#: earmelfb_fuchsia.c:948 earmelfb_linux.c:948 earmelfb_linux_eabi.c:948
#: earmelfb_linux_fdpiceabi.c:948 earmelfb_nacl.c:948 earmelfb_nbsd.c:947
#: earmnto.c:907 eavr1.c:476 eavr2.c:476 eavr25.c:476 eavr3.c:476 eavr31.c:476
#: eavr35.c:476 eavr4.c:476 eavr5.c:476 eavr51.c:476 eavr6.c:476 eavrtiny.c:476
#: eavrxmega1.c:476 eavrxmega2.c:476 eavrxmega2_flmap.c:476 eavrxmega3.c:476
#: eavrxmega4.c:476 eavrxmega4_flmap.c:476 eavrxmega5.c:476 eavrxmega6.c:476
#: eavrxmega7.c:476 ecriself.c:285 ecrislinux.c:383 ecskyelf.c:524
#: ecskyelf_linux.c:662 ed10velf.c:260 eelf32_sparc.c:423
#: eelf32_sparc_sol2.c:555 eelf32_sparc_vxworks.c:455 eelf32_spu.c:844
#: eelf32_tic6x_be.c:512 eelf32_tic6x_elf_be.c:512 eelf32_tic6x_elf_le.c:512
#: eelf32_tic6x_le.c:512 eelf32_tic6x_linux_be.c:512
#: eelf32_tic6x_linux_le.c:512 eelf32_x86_64.c:8495 eelf32am33lin.c:382
#: eelf32b4300.c:627 eelf32bfin.c:396 eelf32bfinfd.c:436 eelf32bmip.c:627
#: eelf32bmipn32.c:641 eelf32briscv.c:501 eelf32briscv_ilp32.c:501
#: eelf32briscv_ilp32f.c:501 eelf32bsmip.c:641 eelf32btsmip.c:627
#: eelf32btsmip_fbsd.c:627 eelf32btsmipn32.c:627 eelf32btsmipn32_fbsd.c:627
#: eelf32cr16.c:410 eelf32crx.c:297 eelf32ebmip.c:627 eelf32ebmipvxworks.c:658
#: eelf32elmip.c:627 eelf32elmipvxworks.c:658 eelf32epiphany.c:285
#: eelf32epiphany_4x4.c:262 eelf32frvfd.c:422 eelf32ip2k.c:285 eelf32kvx.c:647
#: eelf32l4300.c:627 eelf32lm32.c:285 eelf32lm32fd.c:422 eelf32lmip.c:627
#: eelf32loongarch.c:479 eelf32lppc.c:652 eelf32lppclinux.c:652
#: eelf32lppcnto.c:652 eelf32lppcsim.c:652 eelf32lr5900.c:530
#: eelf32lr5900n32.c:529 eelf32lriscv.c:501 eelf32lriscv_ilp32.c:501
#: eelf32lriscv_ilp32f.c:501 eelf32lsmip.c:627 eelf32ltsmip.c:627
#: eelf32ltsmip_fbsd.c:627 eelf32ltsmipn32.c:627 eelf32ltsmipn32_fbsd.c:627
#: eelf32m32c.c:296 eelf32mb_linux.c:423 eelf32mbel_linux.c:423
#: eelf32mcore.c:288 eelf32mep.c:260 eelf32metag.c:669 eelf32microblaze.c:260
#: eelf32microblazeel.c:260 eelf32mipswindiss.c:489 eelf32moxie.c:285
#: eelf32or1k.c:286 eelf32or1k_linux.c:423 eelf32ppc.c:652 eelf32ppc_fbsd.c:652
#: eelf32ppchaiku.c:652 eelf32ppclinux.c:652 eelf32ppcnto.c:652
#: eelf32ppcsim.c:652 eelf32ppcvxworks.c:622 eelf32ppcwindiss.c:652
#: eelf32rl78.c:285 eelf32rx.c:307 eelf32rx_linux.c:298 eelf32tilegx.c:423
#: eelf32tilegx_be.c:423 eelf32tilepro.c:423 eelf32vax.c:382 eelf32visium.c:260
#: eelf32xstormy16.c:271 eelf32xtensa.c:2326 eelf32z80.c:287 eelf64_aix.c:382
#: eelf64_ia64.c:451 eelf64_ia64_fbsd.c:451 eelf64_s390.c:525
#: eelf64_sparc.c:423 eelf64_sparc_fbsd.c:423 eelf64_sparc_sol2.c:555
#: eelf64alpha.c:487 eelf64alpha_fbsd.c:487 eelf64alpha_nbsd.c:487
#: eelf64bmip.c:641 eelf64bpf.c:260 eelf64briscv.c:501 eelf64briscv_lp64.c:501
#: eelf64briscv_lp64f.c:501 eelf64btsmip.c:627 eelf64btsmip_fbsd.c:627
#: eelf64hppa.c:332 eelf64kvx.c:647 eelf64kvx_linux.c:685 eelf64loongarch.c:479
#: eelf64lppc.c:1088 eelf64lppc_fbsd.c:1088 eelf64lriscv.c:501
#: eelf64lriscv_lp64.c:501 eelf64lriscv_lp64f.c:501 eelf64ltsmip.c:627
#: eelf64ltsmip_fbsd.c:627 eelf64mmix.c:490 eelf64ppc.c:1088
#: eelf64ppc_fbsd.c:1088 eelf64rdos.c:476 eelf64tilegx.c:423
#: eelf64tilegx_be.c:423 eelf_i386.c:7921 eelf_i386_be.c:406
#: eelf_i386_fbsd.c:453 eelf_i386_haiku.c:453 eelf_i386_ldso.c:413
#: eelf_i386_sol2.c:585 eelf_i386_vxworks.c:479 eelf_iamcu.c:453
#: eelf_mipsel_haiku.c:627 eelf_s390.c:423 eelf_x86_64.c:8495
#: eelf_x86_64_cloudabi.c:493 eelf_x86_64_fbsd.c:493 eelf_x86_64_haiku.c:493
#: eelf_x86_64_sol2.c:625 eh8300elf.c:285 eh8300elf_linux.c:285
#: eh8300helf.c:285 eh8300helf_linux.c:285 eh8300hnelf.c:285 eh8300self.c:285
#: eh8300self_linux.c:285 eh8300snelf.c:285 eh8300sxelf.c:285
#: eh8300sxelf_linux.c:285 eh8300sxnelf.c:285 ehppa64linux.c:382 ehppaelf.c:539
#: ehppalinux.c:702 ehppanbsd.c:702 ehppaobsd.c:702 ei386lynx.c:397
#: ei386moss.c:397 ei386nto.c:397 em32relf.c:285 em32relf_linux.c:422
#: em32rlelf.c:285 em32rlelf_linux.c:422 em68hc11elf.c:541 em68hc11elfb.c:541
#: em68hc12elf.c:541 em68hc12elfb.c:541 em68kelf.c:577 em68kelfnbsd.c:577
#: emn10300.c:382 ends32belf.c:384 ends32belf16m.c:384 ends32belf_linux.c:468
#: ends32elf.c:384 ends32elf16m.c:384 ends32elf_linux.c:468 epruelf.c:281
#: escore3_elf.c:400 escore7_elf.c:400 eshelf.c:382 eshelf_fd.c:423
#: eshelf_linux.c:423 eshelf_nbsd.c:382 eshelf_nto.c:382 eshelf_uclinux.c:382
#: eshelf_vxworks.c:414 eshlelf.c:382 eshlelf_fd.c:423 eshlelf_linux.c:423
#: eshlelf_nbsd.c:382 eshlelf_nto.c:382 eshlelf_vxworks.c:414 ev850.c:307
#: ev850_rh850.c:307
msgid "%P: invalid stack size `%s'\n"
msgstr "%P: tamaño de pila no válido `%s'\n"
#: eaarch64cloudabi.c:882 eaarch64cloudabib.c:882 eaarch64elf.c:882
#: eaarch64elf32.c:882 eaarch64elf32b.c:882 eaarch64elfb.c:882
#: eaarch64fbsd.c:882 eaarch64fbsdb.c:882 eaarch64haiku.c:882
#: eaarch64linux.c:882 eaarch64linux32.c:882 eaarch64linux32b.c:882
#: eaarch64linuxb.c:882 eaarch64nto.c:1044 earcelf.c:371 earclinux.c:462
#: earclinux_nps.c:462 earcv2elf.c:299 earcv2elfx.c:299 earmelf.c:986
#: earmelf_fbsd.c:986 earmelf_fuchsia.c:987 earmelf_haiku.c:987
#: earmelf_linux.c:987 earmelf_linux_eabi.c:987 earmelf_linux_fdpiceabi.c:987
#: earmelf_nacl.c:987 earmelf_nbsd.c:986 earmelf_phoenix.c:987
#: earmelf_vxworks.c:1018 earmelfb.c:986 earmelfb_fbsd.c:986
#: earmelfb_fuchsia.c:987 earmelfb_linux.c:987 earmelfb_linux_eabi.c:987
#: earmelfb_linux_fdpiceabi.c:987 earmelfb_nacl.c:987 earmelfb_nbsd.c:986
#: earmnto.c:946 eavr1.c:515 eavr2.c:515 eavr25.c:515 eavr3.c:515 eavr31.c:515
#: eavr35.c:515 eavr4.c:515 eavr5.c:515 eavr51.c:515 eavr6.c:515 eavrtiny.c:515
#: eavrxmega1.c:515 eavrxmega2.c:515 eavrxmega2_flmap.c:515 eavrxmega3.c:515
#: eavrxmega4.c:515 eavrxmega4_flmap.c:515 eavrxmega5.c:515 eavrxmega6.c:515
#: eavrxmega7.c:515 ecriself.c:324 ecrislinux.c:422 ecskyelf.c:563
#: ecskyelf_linux.c:701 ed10velf.c:299 eelf32_sparc.c:462
#: eelf32_sparc_sol2.c:594 eelf32_sparc_vxworks.c:494 eelf32_spu.c:883
#: eelf32_tic6x_be.c:551 eelf32_tic6x_elf_be.c:551 eelf32_tic6x_elf_le.c:551
#: eelf32_tic6x_le.c:551 eelf32_tic6x_linux_be.c:551
#: eelf32_tic6x_linux_le.c:551 eelf32_x86_64.c:8534 eelf32am33lin.c:421
#: eelf32b4300.c:666 eelf32bfin.c:435 eelf32bfinfd.c:475 eelf32bmip.c:666
#: eelf32bmipn32.c:680 eelf32briscv.c:540 eelf32briscv_ilp32.c:540
#: eelf32briscv_ilp32f.c:540 eelf32bsmip.c:680 eelf32btsmip.c:666
#: eelf32btsmip_fbsd.c:666 eelf32btsmipn32.c:666 eelf32btsmipn32_fbsd.c:666
#: eelf32cr16.c:449 eelf32crx.c:336 eelf32ebmip.c:666 eelf32ebmipvxworks.c:697
#: eelf32elmip.c:666 eelf32elmipvxworks.c:697 eelf32epiphany.c:324
#: eelf32epiphany_4x4.c:301 eelf32frvfd.c:461 eelf32ip2k.c:324 eelf32kvx.c:686
#: eelf32l4300.c:666 eelf32lm32.c:324 eelf32lm32fd.c:461 eelf32lmip.c:666
#: eelf32loongarch.c:518 eelf32lppc.c:691 eelf32lppclinux.c:691
#: eelf32lppcnto.c:691 eelf32lppcsim.c:691 eelf32lr5900.c:569
#: eelf32lr5900n32.c:568 eelf32lriscv.c:540 eelf32lriscv_ilp32.c:540
#: eelf32lriscv_ilp32f.c:540 eelf32lsmip.c:666 eelf32ltsmip.c:666
#: eelf32ltsmip_fbsd.c:666 eelf32ltsmipn32.c:666 eelf32ltsmipn32_fbsd.c:666
#: eelf32m32c.c:335 eelf32mb_linux.c:462 eelf32mbel_linux.c:462
#: eelf32mcore.c:327 eelf32mep.c:299 eelf32metag.c:708 eelf32microblaze.c:299
#: eelf32microblazeel.c:299 eelf32mipswindiss.c:528 eelf32moxie.c:324
#: eelf32or1k.c:325 eelf32or1k_linux.c:462 eelf32ppc.c:691 eelf32ppc_fbsd.c:691
#: eelf32ppchaiku.c:691 eelf32ppclinux.c:691 eelf32ppcnto.c:691
#: eelf32ppcsim.c:691 eelf32ppcvxworks.c:661 eelf32ppcwindiss.c:691
#: eelf32rl78.c:324 eelf32rx.c:346 eelf32rx_linux.c:337 eelf32tilegx.c:462
#: eelf32tilegx_be.c:462 eelf32tilepro.c:462 eelf32vax.c:421 eelf32visium.c:299
#: eelf32xstormy16.c:310 eelf32xtensa.c:2365 eelf32z80.c:326 eelf64_aix.c:421
#: eelf64_ia64.c:490 eelf64_ia64_fbsd.c:490 eelf64_s390.c:564
#: eelf64_sparc.c:462 eelf64_sparc_fbsd.c:462 eelf64_sparc_sol2.c:594
#: eelf64alpha.c:526 eelf64alpha_fbsd.c:526 eelf64alpha_nbsd.c:526
#: eelf64bmip.c:680 eelf64bpf.c:299 eelf64briscv.c:540 eelf64briscv_lp64.c:540
#: eelf64briscv_lp64f.c:540 eelf64btsmip.c:666 eelf64btsmip_fbsd.c:666
#: eelf64hppa.c:371 eelf64kvx.c:686 eelf64kvx_linux.c:724 eelf64loongarch.c:518
#: eelf64lppc.c:1127 eelf64lppc_fbsd.c:1127 eelf64lriscv.c:540
#: eelf64lriscv_lp64.c:540 eelf64lriscv_lp64f.c:540 eelf64ltsmip.c:666
#: eelf64ltsmip_fbsd.c:666 eelf64mmix.c:529 eelf64ppc.c:1127
#: eelf64ppc_fbsd.c:1127 eelf64rdos.c:515 eelf64tilegx.c:462
#: eelf64tilegx_be.c:462 eelf_i386.c:7960 eelf_i386_be.c:445
#: eelf_i386_fbsd.c:492 eelf_i386_haiku.c:492 eelf_i386_ldso.c:452
#: eelf_i386_sol2.c:624 eelf_i386_vxworks.c:518 eelf_iamcu.c:492
#: eelf_mipsel_haiku.c:666 eelf_s390.c:462 eelf_x86_64.c:8534
#: eelf_x86_64_cloudabi.c:532 eelf_x86_64_fbsd.c:532 eelf_x86_64_haiku.c:532
#: eelf_x86_64_sol2.c:664 eh8300elf.c:324 eh8300elf_linux.c:324
#: eh8300helf.c:324 eh8300helf_linux.c:324 eh8300hnelf.c:324 eh8300self.c:324
#: eh8300self_linux.c:324 eh8300snelf.c:324 eh8300sxelf.c:324
#: eh8300sxelf_linux.c:324 eh8300sxnelf.c:324 ehppa64linux.c:421 ehppaelf.c:578
#: ehppalinux.c:741 ehppanbsd.c:741 ehppaobsd.c:741 ei386lynx.c:436
#: ei386moss.c:436 ei386nto.c:436 em32relf.c:324 em32relf_linux.c:461
#: em32rlelf.c:324 em32rlelf_linux.c:461 em68hc11elf.c:580 em68hc11elfb.c:580
#: em68hc12elf.c:580 em68hc12elfb.c:580 em68kelf.c:616 em68kelfnbsd.c:616
#: emn10300.c:421 ends32belf.c:423 ends32belf16m.c:423 ends32belf_linux.c:507
#: ends32elf.c:423 ends32elf16m.c:423 ends32elf_linux.c:507 epruelf.c:320
#: escore3_elf.c:439 escore7_elf.c:439 eshelf.c:421 eshelf_fd.c:462
#: eshelf_linux.c:462 eshelf_nbsd.c:421 eshelf_nto.c:421 eshelf_uclinux.c:421
#: eshelf_vxworks.c:453 eshlelf.c:421 eshlelf_fd.c:462 eshlelf_linux.c:462
#: eshlelf_nbsd.c:421 eshlelf_nto.c:421 eshlelf_vxworks.c:453 ev850.c:346
#: ev850_rh850.c:346
msgid "%P: invalid visibility in `-z %s'; must be default, internal, hidden, or protected"
msgstr "%P: visibilidad no válida en `-z %s', debe ser default, internal, hidden o protected"
#: eaarch64cloudabi.c:1006 eaarch64cloudabib.c:1006 eaarch64elf.c:1011
#: eaarch64elf32.c:1011 eaarch64elf32b.c:1011 eaarch64elfb.c:1011
#: eaarch64fbsd.c:1011 eaarch64fbsdb.c:1011 eaarch64haiku.c:1006
#: eaarch64linux.c:1011 eaarch64linux32.c:1011 eaarch64linux32b.c:1011
#: eaarch64linuxb.c:1011 eaarch64nto.c:1168
msgid "%P: error: unrecognized option for --fix-cortex-a53-843419: %s\n"
msgstr "%P: error: no se reconoce la opción para --fix-cortex-a53-843419: %s\n"
#: eaarch64cloudabi.c:1035 eaarch64cloudabib.c:1035 eaarch64elf.c:1040
#: eaarch64elf32.c:1040 eaarch64elf32b.c:1040 eaarch64elfb.c:1040
#: eaarch64fbsd.c:1040 eaarch64fbsdb.c:1040 eaarch64haiku.c:1035
#: eaarch64linux.c:1040 eaarch64linux32.c:1040 eaarch64linux32b.c:1040
#: eaarch64linuxb.c:1040 eaarch64nto.c:1213 earmelf.c:1191 earmelf_fbsd.c:1191
#: earmelf_fuchsia.c:1196 earmelf_haiku.c:1196 earmelf_linux.c:1196
#: earmelf_linux_eabi.c:1196 earmelf_linux_fdpiceabi.c:1196 earmelf_nacl.c:1196
#: earmelf_nbsd.c:1191 earmelf_phoenix.c:1196 earmelf_vxworks.c:1227
#: earmelfb.c:1191 earmelfb_fbsd.c:1191 earmelfb_fuchsia.c:1196
#: earmelfb_linux.c:1196 earmelfb_linux_eabi.c:1196
#: earmelfb_linux_fdpiceabi.c:1196 earmelfb_nacl.c:1196 earmelfb_nbsd.c:1191
#: earmnto.c:1151
#, c-format
msgid ""
" --no-enum-size-warning Don't warn about objects with incompatible\n"
" enum sizes\n"
msgstr ""
" --no-enum-size-warning No advierte de objetos con tamaños de\n"
" enumerados incompatibles\n"
#: eaarch64cloudabi.c:1037 eaarch64cloudabib.c:1037 eaarch64elf.c:1042
#: eaarch64elf32.c:1042 eaarch64elf32b.c:1042 eaarch64elfb.c:1042
#: eaarch64fbsd.c:1042 eaarch64fbsdb.c:1042 eaarch64haiku.c:1037
#: eaarch64linux.c:1042 eaarch64linux32.c:1042 eaarch64linux32b.c:1042
#: eaarch64linuxb.c:1042 eaarch64nto.c:1215 earmelf.c:1193 earmelf_fbsd.c:1193
#: earmelf_fuchsia.c:1198 earmelf_haiku.c:1198 earmelf_linux.c:1198
#: earmelf_linux_eabi.c:1198 earmelf_linux_fdpiceabi.c:1198 earmelf_nacl.c:1198
#: earmelf_nbsd.c:1193 earmelf_phoenix.c:1198 earmelf_vxworks.c:1229
#: earmelfb.c:1193 earmelfb_fbsd.c:1193 earmelfb_fuchsia.c:1198
#: earmelfb_linux.c:1198 earmelfb_linux_eabi.c:1198
#: earmelfb_linux_fdpiceabi.c:1198 earmelfb_nacl.c:1198 earmelfb_nbsd.c:1193
#: earmnto.c:1153
#, c-format
msgid ""
" --no-wchar-size-warning Don't warn about objects with incompatible\n"
" wchar_t sizes\n"
msgstr ""
" --no-wchar-size-warning No advierte de objetos con tamaños de\n"
" wchar_t incompatibles\n"
#: eaarch64cloudabi.c:1039 eaarch64cloudabib.c:1039 eaarch64elf.c:1044
#: eaarch64elf32.c:1044 eaarch64elf32b.c:1044 eaarch64elfb.c:1044
#: eaarch64fbsd.c:1044 eaarch64fbsdb.c:1044 eaarch64haiku.c:1039
#: eaarch64linux.c:1044 eaarch64linux32.c:1044 eaarch64linux32b.c:1044
#: eaarch64linuxb.c:1044 eaarch64nto.c:1217 earmelf.c:1195 earmelf_fbsd.c:1195
#: earmelf_fuchsia.c:1200 earmelf_haiku.c:1200 earmelf_linux.c:1200
#: earmelf_linux_eabi.c:1200 earmelf_linux_fdpiceabi.c:1200 earmelf_nacl.c:1200
#: earmelf_nbsd.c:1195 earmelf_phoenix.c:1200 earmelf_vxworks.c:1231
#: earmelfb.c:1195 earmelfb_fbsd.c:1195 earmelfb_fuchsia.c:1200
#: earmelfb_linux.c:1200 earmelfb_linux_eabi.c:1200
#: earmelfb_linux_fdpiceabi.c:1200 earmelfb_nacl.c:1200 earmelfb_nbsd.c:1195
#: earmnto.c:1155
#, c-format
msgid " --pic-veneer Always generate PIC interworking veneers\n"
msgstr " --pic-veneer Genera siempre capas de interoperabilidad PIC\n"
#: eaarch64cloudabi.c:1040 eaarch64cloudabib.c:1040 eaarch64elf.c:1045
#: eaarch64elf32.c:1045 eaarch64elf32b.c:1045 eaarch64elfb.c:1045
#: eaarch64fbsd.c:1045 eaarch64fbsdb.c:1045 eaarch64haiku.c:1040
#: eaarch64linux.c:1045 eaarch64linux32.c:1045 eaarch64linux32b.c:1045
#: eaarch64linuxb.c:1045 eaarch64nto.c:1218 earmelf.c:1202 earmelf_fbsd.c:1202
#: earmelf_fuchsia.c:1207 earmelf_haiku.c:1207 earmelf_linux.c:1207
#: earmelf_linux_eabi.c:1207 earmelf_linux_fdpiceabi.c:1207 earmelf_nacl.c:1207
#: earmelf_nbsd.c:1202 earmelf_phoenix.c:1207 earmelf_vxworks.c:1238
#: earmelfb.c:1202 earmelfb_fbsd.c:1202 earmelfb_fuchsia.c:1207
#: earmelfb_linux.c:1207 earmelfb_linux_eabi.c:1207
#: earmelfb_linux_fdpiceabi.c:1207 earmelfb_nacl.c:1207 earmelfb_nbsd.c:1202
#: earmnto.c:1162
#, c-format
msgid ""
" --stub-group-size=N Maximum size of a group of input sections that\n"
" can be handled by one stub section. A negative\n"
" value locates all stubs after their branches\n"
" (with a group size of -N), while a positive\n"
" value allows two groups of input sections, one\n"
" before, and one after each stub section.\n"
" Values of +/-1 indicate the linker should\n"
" choose suitable defaults.\n"
msgstr ""
" --stub-group-size=N Tamaño máximo de un grupo de secciones de entrada\n"
" que puede manejarse en una sección stub. Un\n"
" valor negativo coloca todos los stubs después\n"
" de sus ramas (con tamaño de grupo -N), mientras\n"
" que un valor positivo permite dos grupos de\n"
" secciones de entrada, una delante y otra detrás\n"
" de cada sección stub. Los valores +/-1 indican\n"
" que el enlazador es el que debería escoger los\n"
" valores adecuados.\n"
#: eaarch64cloudabi.c:1049 eaarch64cloudabib.c:1049 eaarch64elf.c:1054
#: eaarch64elf32.c:1054 eaarch64elf32b.c:1054 eaarch64elfb.c:1054
#: eaarch64fbsd.c:1054 eaarch64fbsdb.c:1054 eaarch64haiku.c:1049
#: eaarch64linux.c:1054 eaarch64linux32.c:1054 eaarch64linux32b.c:1054
#: eaarch64linuxb.c:1054 eaarch64nto.c:1227
#, c-format
msgid " --fix-cortex-a53-835769 Fix erratum 835769\n"
msgstr " --fix-cortex-a53-835769 Corrige el error 835769\n"
#: eaarch64cloudabi.c:1050 eaarch64cloudabib.c:1050 eaarch64elf.c:1055
#: eaarch64elf32.c:1055 eaarch64elf32b.c:1055 eaarch64elfb.c:1055
#: eaarch64fbsd.c:1055 eaarch64fbsdb.c:1055 eaarch64haiku.c:1050
#: eaarch64linux.c:1055 eaarch64linux32.c:1055 eaarch64linux32b.c:1055
#: eaarch64linuxb.c:1055 eaarch64nto.c:1228
#, c-format
msgid ""
" --fix-cortex-a53-843419[=full|adr|adrp] Fix erratum 843419 and optionally specify which workaround to use.\n"
" full (default): Use both ADRP and ADR workaround, this will \n"
" increase the size of your binaries.\n"
" adr: Only use the ADR workaround, this will not cause any increase\n"
" in binary size but linking will fail if the referenced address is\n"
" out of range of an ADR instruction. This will remove the need of using\n"
" a veneer and results in both performance and size benefits.\n"
" adrp: Use only the ADRP workaround, this will never rewrite your ADRP\n"
" instruction into an ADR. As such the workaround will always use a\n"
" veneer and this will give you both a performance and size overhead.\n"
msgstr ""
" --fix-cortex-a53-843419[=full|adr|adrp] Corrige el error 843419 y opcionalmente especifica que solución utilizar.\n"
" full (opción predefinida): utiliza las soluciones ADRP y ADR, lo cual\n"
" incrementa el tamaño de los binarios generados.\n"
" adr: solo utiliza la solución ADR, que no provoca incremento alguno en el\n"
" tamaño de los binarios, pero el enlazado fallará si la dirección\n"
" referenciada está fuera del rango de la instrucción ADR. Esto eliminará\n"
" la necesidad de utilizar capa y mejorará el rendimiento y el\n"
" tamaño\n"
" adrp: solo utiliza la solución ADRP, que nunca reescribirá una\n"
" instrucción ADRP como ADR. La solución siempre utilizará\n"
" capa, lo que empeorará el rendimiento y el tamaño.\n"
#: eaarch64cloudabi.c:1061 eaarch64cloudabib.c:1061 eaarch64elf.c:1066
#: eaarch64elf32.c:1066 eaarch64elf32b.c:1066 eaarch64elfb.c:1066
#: eaarch64fbsd.c:1066 eaarch64fbsdb.c:1066 eaarch64haiku.c:1061
#: eaarch64linux.c:1066 eaarch64linux32.c:1066 eaarch64linux32b.c:1066
#: eaarch64linuxb.c:1066 eaarch64nto.c:1239
#, c-format
msgid " --no-apply-dynamic-relocs Do not apply link-time values for dynamic relocations\n"
msgstr " --no-apply-dynamic-relocs No aplica valores de tiempo de enlazamiento a reubicaciones dinámicas\n"
#: eaarch64cloudabi.c:1062 eaarch64cloudabib.c:1062 eaarch64elf.c:1067
#: eaarch64elf32.c:1067 eaarch64elf32b.c:1067 eaarch64elfb.c:1067
#: eaarch64fbsd.c:1067 eaarch64fbsdb.c:1067 eaarch64haiku.c:1062
#: eaarch64linux.c:1067 eaarch64linux32.c:1067 eaarch64linux32b.c:1067
#: eaarch64linuxb.c:1067 eaarch64nto.c:1240
#, c-format
msgid ""
" -z force-bti Turn on Branch Target Identification mechanism and generate PLTs with BTI.\n"
" Generate warnings for missing BTI markings on inputs\n"
msgstr ""
" -z force-bti Activa el mechanismo de identificación de objetivo de rama y genera PLTs\n"
" con BTI. Genera avisos para marcas BTI ausentes en las entradas\n"
#: eaarch64cloudabi.c:1065 eaarch64cloudabib.c:1065 eaarch64elf.c:1070
#: eaarch64elf32.c:1070 eaarch64elf32b.c:1070 eaarch64elfb.c:1070
#: eaarch64fbsd.c:1070 eaarch64fbsdb.c:1070 eaarch64haiku.c:1065
#: eaarch64linux.c:1070 eaarch64linux32.c:1070 eaarch64linux32b.c:1070
#: eaarch64linuxb.c:1070 eaarch64nto.c:1243
#, c-format
msgid ""
" -z bti-report[=none|warning|error] Emit warning/error on mismatch of BTI marking between input objects and ouput.\n"
" none: Does not emit any warning/error messages.\n"
" warning (default): Emit warning when the input objects are missing BTI markings\n"
" and output has BTI marking.\n"
" error: Emit error when the input objects are missing BTI markings\n"
" and output has BTI marking.\n"
msgstr ""
" -z bti-report[=none|warning|error] Emite aviso/error si no coincide la marcación BTI de los objetos de entrada y\n"
" de salida.\n"
" none: No emite mensajes de aviso/error.\n"
" warning (por defecto): Emite aviso cuando los objetos de entrada carecen de\n"
" marcas BTI y la salida los tiene.\n"
" error: Emite aviso cuando los objetos de entrada carecen de marcas BTI y\n"
" la salida los tiene.\n"
#: eaarch64cloudabi.c:1072 eaarch64cloudabib.c:1072 eaarch64elf.c:1077
#: eaarch64elf32.c:1077 eaarch64elf32b.c:1077 eaarch64elfb.c:1077
#: eaarch64fbsd.c:1077 eaarch64fbsdb.c:1077 eaarch64haiku.c:1072
#: eaarch64linux.c:1077 eaarch64linux32.c:1077 eaarch64linux32b.c:1077
#: eaarch64linuxb.c:1077 eaarch64nto.c:1250
#, c-format
msgid " -z pac-plt Protect PLTs with Pointer Authentication.\n"
msgstr " -z pac-plt Protege PLTs con autenticación de puntero.\n"
#: eaarch64cloudabi.c:1074 eaarch64cloudabib.c:1074 eaarch64elf.c:1079
#: eaarch64elf32.c:1079 eaarch64elf32b.c:1079 eaarch64elfb.c:1079
#: eaarch64fbsd.c:1079 eaarch64fbsdb.c:1079 eaarch64haiku.c:1074
#: eaarch64linux.c:1079 eaarch64linux32.c:1079 eaarch64linux32b.c:1079
#: eaarch64linuxb.c:1079 eaarch64nto.c:1252
#, c-format
msgid ""
" -z gcs=[always|never|implicit] Controls whether the output supports the Guarded Control Stack (GCS) mechanism.\n"
" implicit (default if '-z gcs' is omitted): deduce GCS from input objects.\n"
" always: always marks the output with GCS.\n"
" never: never marks the output with GCS.\n"
msgstr ""
" -z gcs=[always|never|implicit] Controla el que la salida disponga del mecanismo de pila de control protegida (GCS).\n"
" implicit (por defecto, si se omite '-z gcs'): deduce GCS de los objetos de entrada.\n"
" always: marca siempre la salida con GCS.\n"
" never: no marca nunca la salida con GCS.\n"
#: eaarch64cloudabi.c:1079 eaarch64cloudabib.c:1079 eaarch64elf.c:1084
#: eaarch64elf32.c:1084 eaarch64elf32b.c:1084 eaarch64elfb.c:1084
#: eaarch64fbsd.c:1084 eaarch64fbsdb.c:1084 eaarch64haiku.c:1079
#: eaarch64linux.c:1084 eaarch64linux32.c:1084 eaarch64linux32b.c:1084
#: eaarch64linuxb.c:1084 eaarch64nto.c:1257
#, c-format
msgid ""
" -z gcs-report[=none|warning|error] Emit warning/error on mismatch of GCS marking between input objects and ouput.\n"
" none: Does not emit any warning/error messages.\n"
" warning (default): Emit warning when the input objects are missing GCS markings\n"
" and output have GCS marking.\n"
" error: Emit error when the input objects are missing GCS markings\n"
" and output have GCS marking.\n"
msgstr ""
" -z gcs-report[=none|warning|error] Emite aviso/error si no coincide la marcación GCS de los objetos de entrada y\n"
" de salida.\n"
" none: No emite mensajes de aviso/error.\n"
" warning (por defecto): Emite aviso cuando los objetos de entrada carecen de\n"
" marcas GCS y la salida los tiene.\n"
" error: Emite aviso cuando los objetos de entrada carecen de marcas GCS y\n"
" la salida los tiene.\n"
#: eaarch64cloudabi.c:1086 eaarch64cloudabib.c:1086 eaarch64elf.c:1091
#: eaarch64elf32.c:1091 eaarch64elf32b.c:1091 eaarch64elfb.c:1091
#: eaarch64fbsd.c:1091 eaarch64fbsdb.c:1091 eaarch64haiku.c:1086
#: eaarch64linux.c:1091 eaarch64linux32.c:1091 eaarch64linux32b.c:1091
#: eaarch64linuxb.c:1091 eaarch64nto.c:1264
#, c-format
msgid ""
" -z gcs-report-dynamic=none|warning|error Emit warning/error on mismatch of GCS marking between the current link\n"
" unit and input dynamic objects.\n"
" none: Does not emit any warning/error messages.\n"
" warning: Emit warning when the input objects are missing GCS markings\n"
" and output have GCS marking.\n"
" error: Emit error when the input objects are missing GCS markings\n"
" and output have GCS marking.\n"
msgstr ""
" -z gcs-report-dynamic=none|warning|error Emite aviso/error si no coincide la marcación GCS de la unidad de enlace\n"
" actual y los objetos dinámicos de entrada.\n"
" none: No emite mensajes de aviso/error.\n"
" warning (por defecto): Emite aviso cuando los objetos de entrada carecen de\n"
" marcas GCS y la salida los tiene.\n"
" error: Emite aviso cuando los objetos de entrada carecen de marcas GCS y\n"
" la salida los tiene.\n"
#: eaarch64cloudabi.c:1094 eaarch64cloudabib.c:1094 eaarch64elf.c:1099
#: eaarch64elf32.c:1099 eaarch64elf32b.c:1099 eaarch64elfb.c:1099
#: eaarch64fbsd.c:1099 eaarch64fbsdb.c:1099 eaarch64haiku.c:1094
#: eaarch64linux.c:1099 eaarch64linux32.c:1099 eaarch64linux32b.c:1099
#: eaarch64linuxb.c:1099 eaarch64nto.c:1272
#, c-format
msgid ""
" -z memtag-mode[=none|sync|async] Select Memory Tagging Extension mode of operation to use.\n"
" Emits a DT_AARCH64_MEMTAG_MODE dynamic tag for the binary.\n"
" This entry is only valid on the main executable. It is\n"
" ignored in the dynamically loaded objects by the loader.\n"
" none (default): Disable MTE checking of memory reads and writes.\n"
" sync: Enable precise exceptions when mismatched address and\n"
" allocation tags detected on load/store operations.\n"
" async: Enable imprecise exceptions.\n"
msgstr ""
" -z memtag-mode[=none|sync|async] Selecciona el modo de operación extensión de etiquetado de\n"
" memoria. Emite una etiqueta dinámica DT_AARCH64_MEMTAG_MODE\n"
" para el binario. Esta entrada solo es válida en el ejecutable\n"
" principal. Se hace caso omiso en los objetos que el cargador\n"
" carga dinámicamente.\n"
" none (por defecto): Desactiva las comprobaciones MTE en\n"
" operaciones de lectura y escritura de memoria.\n"
" sync: Activa excepciones precisas cuando se detectan\n"
" discordancias en etiquetas de direcciones y de reserva\n"
" en operaciones de carga/almacenamiento.\n"
" async: Activa excepciones imprecisas.\n"
#: eaarch64cloudabi.c:1103 eaarch64cloudabib.c:1103 eaarch64elf.c:1108
#: eaarch64elf32.c:1108 eaarch64elf32b.c:1108 eaarch64elfb.c:1108
#: eaarch64fbsd.c:1108 eaarch64fbsdb.c:1108 eaarch64haiku.c:1103
#: eaarch64linux.c:1108 eaarch64linux32.c:1108 eaarch64linux32b.c:1108
#: eaarch64linuxb.c:1108 eaarch64nto.c:1281
#, c-format
msgid " -z memtag-stack Mark program stack with MTE protection.\n"
msgstr " -z memtag-stack Marca la pila del programa con protección MTE.\n"
#: eaarch64nto.c:521
msgid "%P: cannot create .note section in stub BFD.\n"
msgstr "%P: no se puede crear la sección .note en el stub BFD.\n"
#: eaarch64nto.c:530
msgid "%P: failed to create .note section\n"
msgstr "%P: fallo al crear la sección .note\n"
#: eaarch64nto.c:571
msgid "%P: %pB: can't read contents of section .note: %E\n"
msgstr "%P: %pB: no se puede leer el contenido de la sección .note: %E\n"
#: eaarch64nto.c:581 eaarch64nto.c:585
msgid "%P: %pB: warning: duplicated QNX stack .note detected\n"
msgstr "%P: %pB: aviso: se ha detectado .note del stack QNX duplicada\n"
#: eaarch64nto.c:614
msgid "%P: error: --lazy-stack must follow -zstack-size=<size>\n"
msgstr "%P: error: --lazy-stack debe ir después de -zstack-size=<tamaño>\n"
#: eaarch64nto.c:1284
#, c-format
msgid ""
" --stack <size> Set size of the initial stack\n"
" --lazy-stack Set lazy allocation of stack\n"
msgstr ""
" --stack <size> Establece el tamaño de la pila inicial\n"
" --lazy-stack Establece asignación perezosa de la pila\n"
#: eaarch64pe.c:350 earm64pe.c:350 earm_wince_pe.c:338 earmpe.c:338
#: ei386pe.c:338 ei386pe_posix.c:338 ei386pep.c:350 emcorepe.c:338 eshpe.c:338
#, c-format
msgid " --base_file <basefile> Generate a base file for relocatable DLLs\n"
msgstr " --base_file <ficherobase> Genera un fichero base para DLLs reubicables\n"
# DLL son las siglas en inglés de `Biblioteca de Enlace Dinámico'.
# El problema es que las siglas en español (BED) no están muy extendidas.
# Se dejó `DLL' sin traducir en todas las ocasiones. cfuga
#: eaarch64pe.c:351 earm64pe.c:351 earm_wince_pe.c:339 earmpe.c:339
#: ei386pe.c:339 ei386pe_posix.c:339 ei386pep.c:351 emcorepe.c:339 eshpe.c:339
#, c-format
msgid " --dll Set image base to the default for DLLs\n"
msgstr " --dll Establece la imagen base por defecto para las DLLs\n"
#: eaarch64pe.c:352 earm64pe.c:352 earm_wince_pe.c:340 earmpe.c:340
#: ei386pe.c:340 ei386pe_posix.c:340 ei386pep.c:352 emcorepe.c:340 eshpe.c:340
#, c-format
msgid " --file-alignment <size> Set file alignment\n"
msgstr " --file-alignment <tamaño> Establece el fichero de alineación\n"
#: eaarch64pe.c:353 earm64pe.c:353 earm_wince_pe.c:341 earmpe.c:341
#: ei386pe.c:341 ei386pe_posix.c:341 ei386pep.c:353 emcorepe.c:341 eshpe.c:341
#, c-format
msgid " --heap <size> Set initial size of the heap\n"
msgstr " --heap <tamaño> Establece el tamaño inicial del montón\n"
#: eaarch64pe.c:354 earm64pe.c:354 earm_wince_pe.c:342 earmpe.c:342
#: ei386pe.c:342 ei386pe_posix.c:342 ei386pep.c:354 emcorepe.c:342 eshpe.c:342
#, c-format
msgid " --image-base <address> Set start address of the executable\n"
msgstr " --image-base <dirección> Establece la dirección de inicio del ejecutable\n"
#: eaarch64pe.c:355 earm64pe.c:355 earm_wince_pe.c:343 earmpe.c:343
#: ei386pe.c:343 ei386pe_posix.c:343 ei386pep.c:355 emcorepe.c:343 eshpe.c:343
#, c-format
msgid " --major-image-version <number> Set version number of the executable\n"
msgstr " --major-image-version <número> Establece el número de versión del ejecutable\n"
#: eaarch64pe.c:356 earm64pe.c:356 earm_wince_pe.c:344 earmpe.c:344
#: ei386pe.c:344 ei386pe_posix.c:344 ei386pep.c:356 emcorepe.c:344 eshpe.c:344
#, c-format
msgid " --major-os-version <number> Set minimum required OS version\n"
msgstr " --major-os-version <número> Establece la versión mínima requerida del SO\n"
#: eaarch64pe.c:357 earm64pe.c:357 earm_wince_pe.c:345 earmpe.c:345
#: ei386pe.c:345 ei386pe_posix.c:345 ei386pep.c:357 emcorepe.c:345 eshpe.c:345
#, c-format
msgid " --major-subsystem-version <number> Set minimum required OS subsystem version\n"
msgstr " --major-subsystem-version <número> Establece la versión mínima requerida del subsistema del SO\n"
#: eaarch64pe.c:358 earm64pe.c:358 earm_wince_pe.c:346 earmpe.c:346
#: ei386pe.c:346 ei386pe_posix.c:346 ei386pep.c:358 emcorepe.c:346 eshpe.c:346
#, c-format
msgid " --minor-image-version <number> Set revision number of the executable\n"
msgstr " --minor-image-version <número> Establece el número de revisión del ejecutable\n"
#: eaarch64pe.c:359 earm64pe.c:359 earm_wince_pe.c:347 earmpe.c:347
#: ei386pe.c:347 ei386pe_posix.c:347 ei386pep.c:359 emcorepe.c:347 eshpe.c:347
#, c-format
msgid " --minor-os-version <number> Set minimum required OS revision\n"
msgstr " --minor-os-version <número> Establece la revisión mínima requerida del SO\n"
#: eaarch64pe.c:360 earm64pe.c:360 earm_wince_pe.c:348 earmpe.c:348
#: ei386pe.c:348 ei386pe_posix.c:348 ei386pep.c:360 emcorepe.c:348 eshpe.c:348
#, c-format
msgid " --minor-subsystem-version <number> Set minimum required OS subsystem revision\n"
msgstr " --minor-subsystem-version <número> Establece la revisión mínima requerida del subsistema del SO\n"
#: eaarch64pe.c:361 earm64pe.c:361 earm_wince_pe.c:349 earmpe.c:349
#: ei386pe.c:349 ei386pe_posix.c:349 ei386pep.c:361 emcorepe.c:349 eshpe.c:349
#, c-format
msgid " --section-alignment <size> Set section alignment\n"
msgstr " --section-alignment <tamaño> Establece la alineación de la sección\n"
#: eaarch64pe.c:362 earm64pe.c:362 earm_wince_pe.c:350 earmpe.c:350
#: ei386pe.c:350 ei386pe_posix.c:350 ei386pep.c:362 emcorepe.c:350 eshpe.c:350
#, c-format
msgid " --stack <size> Set size of the initial stack\n"
msgstr " --stack <size> Establece el tamaño de la pila inicial\n"
#: eaarch64pe.c:363 earm64pe.c:363 earm_wince_pe.c:351 earmpe.c:351
#: ei386pe.c:351 ei386pe_posix.c:351 ei386pep.c:363 emcorepe.c:351 eshpe.c:351
#, c-format
msgid " --subsystem <name>[:<version>] Set required OS subsystem [& version]\n"
msgstr " --subsystem <nombre>[:<versión>] Establece el subsistema [y versión] requeridos del SO\n"
#: eaarch64pe.c:364 earm64pe.c:364 earm_wince_pe.c:352 earmpe.c:352
#: ei386pe.c:352 ei386pe_posix.c:352 ei386pep.c:364 emcorepe.c:352 eshpe.c:352
#, c-format
msgid " --support-old-code Support interworking with old code\n"
msgstr " --support-old-code Admite interoperar con código antiguo\n"
#: eaarch64pe.c:365 earm64pe.c:365 earm_wince_pe.c:353 earmpe.c:353
#: ei386pe.c:353 ei386pe_posix.c:353 ei386pep.c:365 emcorepe.c:353 eshpe.c:353
#, c-format
msgid " --[no-]leading-underscore Set explicit symbol underscore prefix mode\n"
msgstr " --[no-]leading-underscore Establece el modo explícito de prefijo de símbolo con subrayado\n"
#: eaarch64pe.c:366 earm64pe.c:366 ei386pep.c:366
#, c-format
msgid " --[no-]insert-timestamp Use a real timestamp rather than zero (default)\n"
msgstr " --[no-]insert-timestamp Utiliza marca de tiempo real en lugar de cero (opción predefinida)\n"
#: eaarch64pe.c:367 earm64pe.c:367 earm_wince_pe.c:356 earmpe.c:356
#: ei386pe.c:356 ei386pe_posix.c:356 ei386pep.c:367 emcorepe.c:356 eshpe.c:356
#, c-format
msgid " This makes binaries non-deterministic\n"
msgstr " Produce binarios no deterministas\n"
#: eaarch64pe.c:369 earm64pe.c:369 earm_wince_pe.c:358 earmpe.c:358
#: ei386pe.c:358 ei386pe_posix.c:358 ei386pep.c:369 emcorepe.c:358 eshpe.c:358
#, c-format
msgid " --add-stdcall-alias Export symbols with and without @nn\n"
msgstr " --add-stdcall-alias Exporta símbolos con y sin @nn\n"
#: eaarch64pe.c:370 earm64pe.c:370 earm_wince_pe.c:359 earmpe.c:359
#: ei386pe.c:359 ei386pe_posix.c:359 ei386pep.c:370 emcorepe.c:359 eshpe.c:359
#, c-format
msgid " --disable-stdcall-fixup Don't link _sym to _sym@nn\n"
msgstr " --disable-stdcall-fixup No enlaza _sym con _sym@nn\n"
#: eaarch64pe.c:371 earm64pe.c:371 earm_wince_pe.c:360 earmpe.c:360
#: ei386pe.c:360 ei386pe_posix.c:360 ei386pep.c:371 emcorepe.c:360 eshpe.c:360
#, c-format
msgid " --enable-stdcall-fixup Link _sym to _sym@nn without warnings\n"
msgstr " --enable-stdcall-fixup Enlaza _sym con _sym@nn sin avisos\n"
#: eaarch64pe.c:372 earm64pe.c:372 earm_wince_pe.c:361 earmpe.c:361
#: ei386pe.c:361 ei386pe_posix.c:361 ei386pep.c:372 emcorepe.c:361 eshpe.c:361
#, c-format
msgid " --exclude-symbols sym,sym,... Exclude symbols from automatic export\n"
msgstr " --exclude-symbols sim,sim,... Excluye símbolos de la exportación automática\n"
#: eaarch64pe.c:373 earm64pe.c:373 earm_wince_pe.c:362 earmpe.c:362
#: ei386pe.c:362 ei386pe_posix.c:362 ei386pep.c:373 emcorepe.c:362 eshpe.c:362
#, c-format
msgid " --exclude-all-symbols Exclude all symbols from automatic export\n"
msgstr " --exclude-all-symbols Excluye todos los símbolos de la exportación automática\n"
#: eaarch64pe.c:374 earm64pe.c:374 earm_wince_pe.c:363 earmpe.c:363
#: ei386pe.c:363 ei386pe_posix.c:363 ei386pep.c:374 emcorepe.c:363 eshpe.c:363
#, c-format
msgid " --exclude-libs lib,lib,... Exclude libraries from automatic export\n"
msgstr " --exclude-libs bib,bib,... Excluye bibliotecas de la exportación automática\n"
#: eaarch64pe.c:375 earm64pe.c:375 earm_wince_pe.c:364 earmpe.c:364
#: ei386pe.c:364 ei386pe_posix.c:364 ei386pep.c:375 emcorepe.c:364 eshpe.c:364
#, c-format
msgid " --exclude-modules-for-implib mod,mod,...\n"
msgstr " --exclude-modules-for-implib mod,mod,...\n"
#: eaarch64pe.c:376 earm64pe.c:376 earm_wince_pe.c:365 earmpe.c:365
#: ei386pe.c:365 ei386pe_posix.c:365 ei386pep.c:376 emcorepe.c:365 eshpe.c:365
#, c-format
msgid " Exclude objects, archive members from auto\n"
msgstr " Excluye objetos, miembros de archivo de la exportación\n"
#: eaarch64pe.c:377 earm64pe.c:377 ei386pep.c:377
#, c-format
msgid " export, place into import library instead\n"
msgstr " automática, los coloca en la biblioteca de importación\n"
#: eaarch64pe.c:378 earm64pe.c:378 earm_wince_pe.c:367 earmpe.c:367
#: ei386pe.c:367 ei386pe_posix.c:367 ei386pep.c:378 emcorepe.c:367 eshpe.c:367
#, c-format
msgid " --export-all-symbols Automatically export all globals to DLL\n"
msgstr " --export-all-symbols Exporta automáticamente todos los globales a la DLL\n"
#: eaarch64pe.c:379 earm64pe.c:379 earm_wince_pe.c:368 earmpe.c:368
#: ei386pe.c:368 ei386pe_posix.c:368 ei386pep.c:379 emcorepe.c:368 eshpe.c:368
#, c-format
msgid " --kill-at Remove @nn from exported symbols\n"
msgstr " --kill-at Elimina @nn de los símbolos exportados\n"
#: eaarch64pe.c:380 earm64pe.c:380 earm_wince_pe.c:369 earmpe.c:369
#: ei386pe.c:369 ei386pe_posix.c:369 ei386pep.c:380 emcorepe.c:369 eshpe.c:369
#, c-format
msgid " --output-def <file> Generate a .DEF file for the built DLL\n"
msgstr " --output-def <fichero> Genera un fichero .DEF para la DLL construida\n"
#: eaarch64pe.c:381 earm64pe.c:381 earm_wince_pe.c:370 earmpe.c:370
#: ei386pe.c:370 ei386pe_posix.c:370 ei386pep.c:381 emcorepe.c:370 eshpe.c:370
#, c-format
msgid " --warn-duplicate-exports Warn about duplicate exports\n"
msgstr " --warn-duplicate-exports Avisa sobre exportaciones duplicadas\n"
#: eaarch64pe.c:382 earm64pe.c:382 ei386pep.c:382
#, c-format
msgid ""
" --compat-implib Create backward compatible import libs;\n"
" create __imp_<SYMBOL> as well\n"
msgstr ""
" --compat-implib Crea bibliotecas de importación compatibles hacia atrás;\n"
" crea además __imp_<SÍMBOLO>\n"
#: eaarch64pe.c:383 earm64pe.c:383 ei386pep.c:383
#, c-format
msgid ""
" --enable-auto-image-base Automatically choose image base for DLLs\n"
" unless user specifies one\n"
msgstr ""
" --enable-auto-image-base Escoge automáticamente la base de la imagen para\n"
" las DLLs salvo que el usuario especifique una\n"
#: eaarch64pe.c:384 earm64pe.c:384 ei386pep.c:384
#, c-format
msgid " --disable-auto-image-base Do not auto-choose image base (default)\n"
msgstr " --disable-auto-image-base No escoge automáticamente una imagen base (por defecto)\n"
#: eaarch64pe.c:385 earm64pe.c:385 earm_wince_pe.c:374 earmpe.c:374
#: ei386pe.c:374 ei386pe_posix.c:374 ei386pep.c:385 emcorepe.c:374 eshpe.c:374
#, c-format
msgid ""
" --dll-search-prefix=<string> When linking dynamically to a dll without\n"
" an importlib, use <string><basename>.dll\n"
" in preference to lib<basename>.dll \n"
msgstr ""
" --dll-search-prefix=<cadena> Al enlazar dinámicamente con una dll sin una\n"
" biblioteca de importación, usa <cadena><nombrebase>.dll \n"
" en lugar de lib<nombrebase>.dll \n"
#: eaarch64pe.c:386 earm64pe.c:386 earm_wince_pe.c:375 earmpe.c:375
#: ei386pe.c:375 ei386pe_posix.c:375 ei386pep.c:386 emcorepe.c:375 eshpe.c:375
#, c-format
msgid ""
" --enable-auto-import Do sophisticated linking of _sym to\n"
" __imp_sym for DATA references\n"
msgstr ""
" --enable-auto-import Hace enlazado sofisticado de _sym a\n"
" __imp_sym para las referencias DATA\n"
#: eaarch64pe.c:387 earm64pe.c:387 earm_wince_pe.c:376 earmpe.c:376
#: ei386pe.c:376 ei386pe_posix.c:376 ei386pep.c:387 emcorepe.c:376 eshpe.c:376
#, c-format
msgid " --disable-auto-import Do not auto-import DATA items from DLLs\n"
msgstr " --disable-auto-import No importa automáticamente elementos DATA de las DLLs\n"
#: eaarch64pe.c:388 earm64pe.c:388 ei386pep.c:388
#, c-format
msgid ""
" --enable-runtime-pseudo-reloc Work around auto-import limitations by\n"
" adding pseudo-relocations resolved at\n"
" runtime\n"
msgstr ""
" --enable-runtime-pseudo-reloc Evita limitaciones de autoimportación\n"
" agregando pseudo-reubicaciones resueltas\n"
" al momento de ejecución\n"
#: eaarch64pe.c:389 earm64pe.c:389 ei386pep.c:389
#, c-format
msgid ""
" --disable-runtime-pseudo-reloc Do not add runtime pseudo-relocations for\n"
" auto-imported DATA\n"
msgstr ""
" --disable-runtime-pseudo-reloc No agrega pseudo-reubicaciones al momento\n"
" de ejecución para DATOS autoimportados\n"
#: eaarch64pe.c:390 earm64pe.c:390 ei386pep.c:390
#, c-format
msgid ""
" --enable-extra-pep-debug Enable verbose debug output when building\n"
" or linking to DLLs (esp. auto-import)\n"
msgstr ""
" --enable-extra-pep-debug Activa la salida de depuración detallada al construir\n"
" o enlazar a DLLs (en part. con auto-importación)\n"
#: eaarch64pe.c:391 earm64pe.c:391 earm_wince_pe.c:383 earmpe.c:383
#: ei386pe.c:383 ei386pe_posix.c:383 ei386pep.c:391 emcorepe.c:383 eshpe.c:383
#, c-format
msgid ""
" --enable-long-section-names Use long COFF section names even in\n"
" executable image files\n"
msgstr ""
" --enable-long-section-names Usa nombres de sección COFF largos aún\n"
" en ficheros de imágenes ejecutables\n"
#: eaarch64pe.c:392 earm64pe.c:392 earm_wince_pe.c:384 earmpe.c:384
#: ei386pe.c:384 ei386pe_posix.c:384 ei386pep.c:392 emcorepe.c:384 eshpe.c:384
#, c-format
msgid ""
" --disable-long-section-names Never use long COFF section names, even\n"
" in object files\n"
msgstr ""
" --disable-long-section-names Nunca usa nombres de sección COFF largos,\n"
" aún en ficheros objeto\n"
#: eaarch64pe.c:393 earm64pe.c:393 ei386pep.c:393
#, c-format
msgid ""
" --[disable-]high-entropy-va Image is compatible with 64-bit address space\n"
" layout randomization (ASLR)\n"
msgstr ""
" --[disable-]high-entropy-va Imagen compatible con disposición aleatoria\n"
" del espacio de direcciones de 64 bits\n"
" (en inglés: ASLR)\n"
#: eaarch64pe.c:394 earm64pe.c:394 earm_wince_pe.c:385 earmpe.c:385
#: ei386pe.c:385 ei386pe_posix.c:385 ei386pep.c:394 emcorepe.c:385 eshpe.c:385
#, c-format
msgid ""
" --[disable-]dynamicbase Image base address may be relocated using\n"
" address space layout randomization (ASLR)\n"
msgstr ""
" --[disable-]dynamicbase La dirección base de la imagen se puede\n"
" reubicar usando la disposición aleatoria\n"
" del espacio de direcciones (en inglés: ASLR)\n"
#: eaarch64pe.c:395 earm64pe.c:395 earm_wince_pe.c:386 earmpe.c:386
#: ei386pe.c:386 ei386pe_posix.c:386 ei386pep.c:395 emcorepe.c:386 eshpe.c:386
#, c-format
msgid " --enable-reloc-section Create the base relocation table\n"
msgstr " --enable-reloc-section Crea la tabla de reubicación de base\n"
#: eaarch64pe.c:396 earm64pe.c:396 earm_wince_pe.c:387 earmpe.c:387
#: ei386pe.c:387 ei386pe_posix.c:387 ei386pep.c:396 emcorepe.c:387 eshpe.c:387
#, c-format
msgid " --disable-reloc-section Do not create the base relocation table\n"
msgstr " --disable-reloc-section No crea la tabla de reubicación de base\n"
#: eaarch64pe.c:397 earm64pe.c:397 earm_wince_pe.c:388 earmpe.c:388
#: ei386pe.c:388 ei386pe_posix.c:388 ei386pep.c:397 emcorepe.c:388 eshpe.c:388
#, c-format
msgid " --[disable-]forceinteg Code integrity checks are enforced\n"
msgstr " --[disable-]forceinteg Se aplican comprobaciones de integridad del código\n"
#: eaarch64pe.c:398 earm64pe.c:398 earm_wince_pe.c:389 earmpe.c:389
#: ei386pe.c:389 ei386pe_posix.c:389 ei386pep.c:398 emcorepe.c:389 eshpe.c:389
#, c-format
msgid ""
" --[disable-]nxcompat Image is compatible with data execution\n"
" prevention\n"
msgstr ""
" --[disable-]nxcompat La imagen es compatible con la prevención\n"
" de ejecución de datos\n"
#: eaarch64pe.c:399 earm64pe.c:399 earm_wince_pe.c:390 earmpe.c:390
#: ei386pe.c:390 ei386pe_posix.c:390 ei386pep.c:399 emcorepe.c:390 eshpe.c:390
#, c-format
msgid ""
" --[disable-]no-isolation Image understands isolation but do not\n"
" isolate the image\n"
msgstr ""
" --[disable-]no-isolation La imagen entiende aislamiento, pero\n"
" no aísla la imagen\n"
#: eaarch64pe.c:400 earm64pe.c:400 ei386pep.c:400
#, c-format
msgid ""
" --[disable-]no-seh Image does not use SEH; no SE handler may\n"
" be called in this image\n"
msgstr ""
" --[disable-]no-seh La imagen no usa SEH; no se puede llamar\n"
" a un manejador SE en esta imagen\n"
#: eaarch64pe.c:401 earm64pe.c:401 earm_wince_pe.c:392 earmpe.c:392
#: ei386pe.c:392 ei386pe_posix.c:392 ei386pep.c:401 emcorepe.c:392 eshpe.c:392
#, c-format
msgid " --[disable-]no-bind Do not bind this image\n"
msgstr " --[disable-]no-bind No enlaza esta imagen\n"
#: eaarch64pe.c:402 earm64pe.c:402 earm_wince_pe.c:393 earmpe.c:393
#: ei386pe.c:393 ei386pe_posix.c:393 ei386pep.c:402 emcorepe.c:393 eshpe.c:393
#, c-format
msgid " --[disable-]wdmdriver Driver uses the WDM model\n"
msgstr " --[disable-]wdmdriver El controlador usa el modelo WDM\n"
#: eaarch64pe.c:403 earm64pe.c:403 earm_wince_pe.c:394 earmpe.c:394
#: ei386pe.c:394 ei386pe_posix.c:394 ei386pep.c:403 emcorepe.c:394 eshpe.c:394
#, c-format
msgid " --[disable-]tsaware Image is Terminal Server aware\n"
msgstr " --[disable-]tsaware La imagen funciona con Terminal Server\n"
#: eaarch64pe.c:404 earm64pe.c:404 earm_wince_pe.c:395 earmpe.c:395
#: ei386pe.c:395 ei386pe_posix.c:395 ei386pep.c:404 emcorepe.c:395 eshpe.c:395
#, c-format
msgid " --build-id[=STYLE] Generate build ID\n"
msgstr " --build-id[=ESTILO] Genera ID de build\n"
#: eaarch64pe.c:406 earm64pe.c:406 earm_wince_pe.c:397 earmpe.c:397
#: ei386pe.c:397 ei386pe_posix.c:397 ei386pep.c:406 emcorepe.c:397 eshpe.c:397
#, c-format
msgid " --pdb=[FILENAME] Generate PDB file\n"
msgstr " --pdb=[NOMBREFICH] Genera fichero PDB\n"
#: eaarch64pe.c:535 earm64pe.c:535 earm_wince_pe.c:546 earmpe.c:546
#: ei386beos.c:188 ei386pe.c:546 ei386pe_posix.c:546 ei386pep.c:535
#: emcorepe.c:546 eshpe.c:546
msgid "%P: warning: bad version number in -subsystem option\n"
msgstr "%P: aviso: número de versión erróneo en la opción -subsystem\n"
#: eaarch64pe.c:560 earm64pe.c:560 earm_wince_pe.c:571 earmpe.c:571
#: ei386beos.c:205 ei386pe.c:571 ei386pe_posix.c:571 ei386pep.c:560
#: emcorepe.c:571 eshpe.c:571
msgid "%P: invalid subsystem type %s\n"
msgstr "%P: tipo de subsistema %s inválido\n"
#: eaarch64pe.c:581 earm64pe.c:581 earm_wince_pe.c:592 earmpe.c:592
#: ei386beos.c:215 ei386pe.c:592 ei386pe_posix.c:592 ei386pep.c:581
#: emcorepe.c:592 eshpe.c:592
msgid "%P: invalid hex number for PE parameter '%s'\n"
msgstr "%P: número hexadecimal inválido para el parámetro PE '%s'\n"
#: eaarch64pe.c:598 earm64pe.c:598 earm_wince_pe.c:609 earmpe.c:609
#: ei386beos.c:230 ei386pe.c:609 ei386pe_posix.c:609 ei386pep.c:598
#: emcorepe.c:609 eshpe.c:609
msgid "%P: strange hex info for PE parameter '%s'\n"
msgstr "%P: información hexadecimal extraña para el parámetro PE '%s'\n"
#: eaarch64pe.c:615 earm64pe.c:615 earm_wince_pe.c:625 earmpe.c:625
#: eelf32mcore.c:356 ei386beos.c:245 ei386pe.c:625 ei386pe_posix.c:625
#: ei386pep.c:615 emcorepe.c:625 eshpe.c:625
msgid "%P: cannot open base file %s\n"
msgstr "%P: no se puede abrir el fichero base %s\n"
#: eaarch64pe.c:932 earm64pe.c:932 earm_wince_pe.c:955 earmpe.c:955
#: ei386beos.c:341 ei386pe.c:955 ei386pe_posix.c:955 ei386pep.c:932
#: emcorepe.c:955 eshpe.c:955
msgid "%P: warning, file alignment > section alignment\n"
msgstr "%P: aviso, alineación del fichero > alineación de la sección\n"
#: eaarch64pe.c:945 earm64pe.c:945 ei386pep.c:945
msgid "%P: warning: --export-dynamic is not supported for PE+ targets, did you mean --export-all-symbols?\n"
msgstr "%P: aviso: --export-dynamic no se admite para objetivos PE+, ¿quiso decir --export-all-symbols?\n"
#: eaarch64pe.c:997 earm64pe.c:997 earm_wince_pe.c:1049 earmpe.c:1049
#: ei386pe.c:1049 ei386pe_posix.c:1049 ei386pep.c:997 emcorepe.c:1049
#: eshpe.c:1049
msgid "%P: warning: overwriting decorated name %s with %s\n"
msgstr "%P: aviso: se sobreescribe el nombre decorado %s con %s\n"
#: eaarch64pe.c:1042 eaarch64pe.c:1070 earm64pe.c:1042 earm64pe.c:1070
#: ei386pep.c:1042 ei386pep.c:1070
#, c-format
msgid "warning: resolving %s by linking to %s\n"
msgstr "aviso: se resuelve %s al enlazar con %s\n"
#: eaarch64pe.c:1047 eaarch64pe.c:1075 earm64pe.c:1047 earm64pe.c:1075
#: earm_wince_pe.c:1023 earmpe.c:1023 ei386pe.c:1023 ei386pe_posix.c:1023
#: ei386pep.c:1047 ei386pep.c:1075 emcorepe.c:1023 eshpe.c:1023
msgid "Use --enable-stdcall-fixup to disable these warnings\n"
msgstr "Use --enable-stdcall-fixup para desactivar estos avisos\n"
#: eaarch64pe.c:1048 eaarch64pe.c:1076 earm64pe.c:1048 earm64pe.c:1076
#: earm_wince_pe.c:1024 earmpe.c:1024 ei386pe.c:1024 ei386pe_posix.c:1024
#: ei386pep.c:1048 ei386pep.c:1076 emcorepe.c:1024 eshpe.c:1024
msgid "Use --disable-stdcall-fixup to disable these fixups\n"
msgstr "Use --disable-stdcall-fixup para desactivar estas composturas\n"
#: eaarch64pe.c:1131 earm64pe.c:1131 earm_wince_pe.c:1115 earmpe.c:1115
#: ei386pe.c:1115 ei386pe_posix.c:1115 ei386pep.c:1131 emcorepe.c:1115
#: eshpe.c:1115
msgid "%P: %H: cannot get section contents - auto-import exception\n"
msgstr "%P: %H: no se puede obtener el contenido de la sección - excepción de auto-importación\n"
#: eaarch64pe.c:1261 earm64pe.c:1261 earm_wince_pe.c:1246 earmpe.c:1246
#: ei386pe.c:1246 ei386pe_posix.c:1246 ei386pep.c:1261 emcorepe.c:1246
#: eshpe.c:1246
msgid "%P: warning: .buildid section discarded, --build-id ignored\n"
msgstr "%P: aviso: se descarta la sección .buildid, se descarta --build-id\n"
#: eaarch64pe.c:1382 earm64pe.c:1382 earm_wince_pe.c:1367 earmpe.c:1367
#: ei386pe.c:1367 ei386pe_posix.c:1367 ei386pep.c:1382 emcorepe.c:1367
#: eshpe.c:1367
msgid "%P: warning: cannot create .buildid section, --build-id ignored\n"
msgstr "%P: aviso: no se puede crear la sección .buildid, se descarta --build-id\n"
#: eaarch64pe.c:1468 earm64pe.c:1468 earm_wince_pe.c:1452 earmpe.c:1452
#: ei386pe.c:1452 ei386pe_posix.c:1452 ei386pep.c:1468 emcorepe.c:1452
#: eshpe.c:1452
msgid "%P: cannot perform PE operations on non PE output file '%pB'\n"
msgstr "%P: no se pueden realizar operaciones PE en el fichero de salida '%pB' que no es PE\n"
#: eaarch64pe.c:1592 earm64pe.c:1592 earm_wince_pe.c:1595 earmpe.c:1595
#: ei386pe.c:1595 ei386pe_posix.c:1595 ei386pep.c:1592 emcorepe.c:1595
#: eshpe.c:1595
msgid "%X%P: unable to process relocs: %E\n"
msgstr "%X%P: no se pueden procesar las reubicaciones: %E\n"
#: eaix5ppc.c:302 eaix5rs6.c:302 eaixppc.c:302 eaixrs6.c:302 eppcmacos.c:302
msgid "%P: cannot open %s\n"
msgstr "%P: no se puede abrir %s\n"
#: eaix5ppc.c:350 eaix5rs6.c:350 eaixppc.c:350 eaixrs6.c:350 eppcmacos.c:350
msgid "%P: cannot read %s\n"
msgstr "%P: no se puede leer %s\n"
#: eaix5ppc.c:377 eaix5rs6.c:377 eaixppc.c:377 eaixrs6.c:377 eppcmacos.c:377
msgid "%P: warning: ignoring invalid -D number %s\n"
msgstr "%P: aviso: se descartal número -D no válido %s\n"
#: eaix5ppc.c:385 eaix5rs6.c:385 eaixppc.c:385 eaixrs6.c:385 eppcmacos.c:385
msgid "%P: warning: ignoring invalid -H number %s\n"
msgstr "%P: aviso: se descartal número -H no válido %s\n"
#: eaix5ppc.c:497 eaix5rs6.c:497 eaixppc.c:497 eaixrs6.c:497 eppcmacos.c:497
msgid "%P: warning: ignoring invalid -bmaxdata number %s\n"
msgstr "%P: aviso: se descartal número -bmaxdata no válido %s\n"
#: eaix5ppc.c:506 eaix5rs6.c:506 eaixppc.c:506 eaixrs6.c:506 eppcmacos.c:506
msgid "%P: warning: ignoring invalid -bmaxstack number %s\n"
msgstr "%P: aviso: se descartal número -bmaxstack no válido %s\n"
#: eaix5ppc.c:519 eaix5rs6.c:519 eaixppc.c:519 eaixrs6.c:519 eppcmacos.c:519
msgid "%P: warning: ignoring invalid module type %s\n"
msgstr "%P: aviso: se descartal tipo de módulo no válido %s\n"
#: eaix5ppc.c:549 eaix5rs6.c:549 eaixppc.c:549 eaixrs6.c:549 eppcmacos.c:549
msgid "%P: warning: ignoring invalid -pD number %s\n"
msgstr "%P: aviso: se descartal número -pD no válido %s\n"
#: eaix5ppc.c:572 eaix5rs6.c:572 eaixppc.c:572 eaixrs6.c:572 eppcmacos.c:572
msgid "%P: warning: ignoring invalid -pT number %s\n"
msgstr "%P: aviso: se descartal número -pT no válido %s\n"
#: eaix5ppc.c:701 eaix5rs6.c:701 eaixppc.c:701 eaixrs6.c:701 eppcmacos.c:701
msgid "%P: bfd_xcoff_link_record_set failed: %E\n"
msgstr "%P: falló bfd_xcoff_link_record_set: %E\n"
#: eaix5ppc.c:731 eaix5rs6.c:731 eaixppc.c:731 eaixrs6.c:731 eppcmacos.c:731
msgid "%P: bfd_link_hash_lookup of export symbol failed: %E\n"
msgstr "%P: falló bfd_link_hash_lookup: %E\n"
#: eaix5ppc.c:733 eaix5rs6.c:733 eaixppc.c:733 eaixrs6.c:733 eppcmacos.c:733
msgid "%P: bfd_xcoff_export_symbol failed: %E\n"
msgstr "%P: falló bfd_xcoff_export_symbol: %E\n"
#: eaix5ppc.c:838 eaix5rs6.c:838 eaixppc.c:838 eaixrs6.c:838 eppcmacos.c:838
msgid "%P: can't find output section %pA\n"
msgstr "%P: no se puede encontrar la sección de salida %pA\n"
#: eaix5ppc.c:875 eaix5rs6.c:875 eaixppc.c:875 eaixrs6.c:875 eppcmacos.c:875
msgid "%P: can't find %pA in output section\n"
msgstr "%P: no se puede encontrar %pA en la sección de salida\n"
#: eaix5ppc.c:941 eaix5rs6.c:941 eaixppc.c:941 eaixrs6.c:941 eppcmacos.c:941
msgid "%P: can't find required output section %s\n"
msgstr "%P: no se puede encontrar la sección de salida requerida %s\n"
#: eaix5ppc.c:1123 eaix5rs6.c:1123 eaixppc.c:1123 eaixrs6.c:1123
#: eppcmacos.c:1123
msgid "%X%P: can not size stub sections: %E\n"
msgstr "%X%P: no se pueden dimensionar las secciones stub: %E\n"
#: eaix5ppc.c:1128 eaix5rs6.c:1128 eaixppc.c:1128 eaixrs6.c:1128
#: eppcmacos.c:1128
msgid "%P: failed to layout dynamic sections: %E\n"
msgstr "%P: no se han podido diseñar las secciones dinámicas: %E\n"
#: eaix5ppc.c:1341 eaix5rs6.c:1341 eaixppc.c:1341 eaixrs6.c:1341
#: eppcmacos.c:1341
msgid "%P:%s:%d: #! ([member]) is not supported in import files\n"
msgstr "%P:%s:%d: #! ([miembro]) no se admite en ficheros de importación\n"
#: eaix5ppc.c:1358 eaix5rs6.c:1358 eaixppc.c:1358 eaixrs6.c:1358
#: eppcmacos.c:1358
msgid "%P: could not parse import path: %E\n"
msgstr "%P: no se puede analizar la ruta de importación: %E\n"
#: eaix5ppc.c:1368 eaix5ppc.c:1380 eaix5rs6.c:1368 eaix5rs6.c:1380
#: eaixppc.c:1368 eaixppc.c:1380 eaixrs6.c:1368 eaixrs6.c:1380 eppcmacos.c:1368
#: eppcmacos.c:1380
msgid "%P:%s:%d: warning: syntax error in import file\n"
msgstr "%P:%s:%d: aviso: error de sintaxis en fichero de importación\n"
#: eaix5ppc.c:1415 eaix5rs6.c:1415 eaixppc.c:1415 eaixrs6.c:1415
#: eppcmacos.c:1415
msgid "%P:%s%d: warning: syntax error in import/export file\n"
msgstr "%P:%s%d: aviso: error de sintaxis en fichero de importación/exportación\n"
#: eaix5ppc.c:1433 eaix5rs6.c:1433 eaixppc.c:1433 eaixrs6.c:1433
#: eppcmacos.c:1433
msgid "%P:%s:%d: warning: syntax error in import/export file\n"
msgstr "%P:%s:%d: aviso: error de sintaxis en fichero de importación/exportación\n"
#: eaix5ppc.c:1468 eaix5rs6.c:1468 eaixppc.c:1468 eaixrs6.c:1468
#: eppcmacos.c:1468
msgid "%X%P:%s:%d: failed to import symbol %s: %E\n"
msgstr "%X%P:%s:%d: fallo al importar el símbolo %s: %E\n"
#: eaix5ppc.c:1478 eaix5rs6.c:1478 eaixppc.c:1478 eaixrs6.c:1478
#: eppcmacos.c:1478
msgid "%P:%s:%d: warning: ignoring unterminated last line\n"
msgstr "%P:%s:%d: aviso: se descarta la línea última inacabada\n"
#: eaix5ppc.c:1513 eaix5rs6.c:1513 eaixppc.c:1513 eaixrs6.c:1513
#: eppcmacos.c:1513
msgid "%P: only relocations against symbols are permitted\n"
msgstr "%P: solo se permiten reubicaciones contra símbolos\n"
#: eaix5ppc.c:1516 eaix5rs6.c:1516 eaixppc.c:1516 eaixrs6.c:1516
#: eppcmacos.c:1516
msgid "%P: bfd_xcoff_link_count_reloc failed: %E\n"
msgstr "%P: falló bfd_xcoff_link_count_reloc: %E\n"
#: eaix5ppc.c:1604 eaix5rs6.c:1604 eaixppc.c:1604 eaixrs6.c:1604
#: eppcmacos.c:1604
msgid "%P: can not create stub BFD: %E\n"
msgstr "%P: no se puede crear stub BFD: %E\n"
#: eaix5ppc.c:1614 eaix5rs6.c:1614 eaixppc.c:1614 eaixrs6.c:1614
#: eelf32kvx.c:324 eelf64_s390.c:66 eelf64kvx.c:324 eelf64kvx_linux.c:322
#: eelf64lppc.c:132 eelf64lppc_fbsd.c:132 eelf64ppc.c:132 eelf64ppc_fbsd.c:132
#: eppcmacos.c:1614
msgid "%P: can not init BFD: %E\n"
msgstr "%P: no se puede inicializar BFD: %E\n"
#: ealphavms.c:168 eelf64_ia64_vms.c:168
#, c-format
msgid " --identification <string> Set the identification of the output\n"
msgstr " --identification <cadena> Establece la identificación de la salida\n"
#: earm_wince_pe.c:354 earmpe.c:354 ei386pe.c:354 ei386pe_posix.c:354
#: emcorepe.c:354 eshpe.c:354
#, c-format
msgid " --thumb-entry=<symbol> Set the entry point to be Thumb <symbol>\n"
msgstr " --thumb-entry=<símbolo> Establece el punto de entrada para el símbolo Thumb <símbolo>\n"
#: earm_wince_pe.c:355 earmpe.c:355 ei386pe.c:355 ei386pe_posix.c:355
#: emcorepe.c:355 eshpe.c:355
#, c-format
msgid " --[no-]insert-timestamp Use a real timestamp rather than zero (default).\n"
msgstr " --[no-]insert-timestamp Utiliza marca de sello real en lugar de cero (opción predefinida).\n"
#: earm_wince_pe.c:366 earmpe.c:366 ei386pe.c:366 ei386pe_posix.c:366
#: emcorepe.c:366 eshpe.c:366
#, c-format
msgid " export, place into import library instead.\n"
msgstr " automática, los coloca en la biblioteca de importación.\n"
#: earm_wince_pe.c:371 earmpe.c:371 ei386pe.c:371 ei386pe_posix.c:371
#: emcorepe.c:371 eshpe.c:371
#, c-format
msgid ""
" --compat-implib Create backward compatible import libs;\n"
" create __imp_<SYMBOL> as well.\n"
msgstr ""
" --compat-implib Crea bibliotecas de importación compatibles hacia atrás;\n"
" crea además __imp_<SÍMBOLO>.\n"
#: earm_wince_pe.c:372 earmpe.c:372 ei386pe.c:372 ei386pe_posix.c:372
#: emcorepe.c:372 eshpe.c:372
#, c-format
msgid ""
" --enable-auto-image-base[=<address>] Automatically choose image base for DLLs\n"
" (optionally starting with address) unless\n"
" specifically set with --image-base\n"
msgstr ""
" --enable-auto-image-base[=<direc>] Escoge automáticamente la base de la imagen para las DLLs\n"
" (opcionalmente empezando con direc salvo que\n"
" se establezca específicamente con --image-base\n"
#: earm_wince_pe.c:373 earmpe.c:373 ei386pe.c:373 ei386pe_posix.c:373
#: emcorepe.c:373 eshpe.c:373
#, c-format
msgid " --disable-auto-image-base Do not auto-choose image base. (default)\n"
msgstr " --disable-auto-image-base No escoge automáticamente una imagen base. (por defecto)\n"
#: earm_wince_pe.c:377 earmpe.c:377 ei386pe.c:377 ei386pe_posix.c:377
#: emcorepe.c:377 eshpe.c:377
#, c-format
msgid ""
" --enable-runtime-pseudo-reloc Work around auto-import limitations by\n"
" adding pseudo-relocations resolved at\n"
" runtime.\n"
msgstr ""
" --enable-runtime-pseudo-reloc Evita limitaciones de autoimportación\n"
" agregando pseudo-reubicaciones resueltas\n"
" al momento de ejecución.\n"
#: earm_wince_pe.c:378 earmpe.c:378 ei386pe.c:378 ei386pe_posix.c:378
#: emcorepe.c:378 eshpe.c:378
#, c-format
msgid ""
" --disable-runtime-pseudo-reloc Do not add runtime pseudo-relocations for\n"
" auto-imported DATA.\n"
msgstr ""
" --disable-runtime-pseudo-reloc No agrega pseudo-reubicaciones al momento\n"
" de ejecución para DATOS autoimportados.\n"
#: earm_wince_pe.c:379 earmpe.c:379 ei386pe.c:379 ei386pe_posix.c:379
#: emcorepe.c:379 eshpe.c:379
#, c-format
msgid ""
" --enable-extra-pe-debug Enable verbose debug output when building\n"
" or linking to DLLs (esp. auto-import)\n"
msgstr ""
" --enable-extra-pe-debug Activa la salida de depuración detallada al construir\n"
" o enlazar a DLLs (en part. con auto-importación)\n"
#: earm_wince_pe.c:381 earmpe.c:381 ei386pe.c:381 ei386pe_posix.c:381
#: emcorepe.c:381 eshpe.c:381
#, c-format
msgid ""
" --large-address-aware Executable supports virtual addresses\n"
" greater than 2 gigabytes\n"
msgstr ""
" --large-address-aware El ejecutable admite direcciones\n"
" virtuales mayores a 2 gigabytes\n"
#: earm_wince_pe.c:382 earmpe.c:382 ei386pe.c:382 ei386pe_posix.c:382
#: emcorepe.c:382 eshpe.c:382
#, c-format
msgid ""
" --disable-large-address-aware Executable does not support virtual\n"
" addresses greater than 2 gigabytes\n"
msgstr ""
" --disable-large-address-aware El ejecutable no admite direcciones\n"
" virtuales mayores que 2 gigabytes\n"
#: earm_wince_pe.c:391 earmpe.c:391 ei386pe.c:391 ei386pe_posix.c:391
#: emcorepe.c:391 eshpe.c:391
#, c-format
msgid ""
" --[disable-]no-seh Image does not use SEH. No SE handler may\n"
" be called in this image\n"
msgstr ""
" --[disable-]no-seh La imagen no usa SEH. No se puede llamar\n"
" a ningún manejador SE en esta imagen\n"
#: earm_wince_pe.c:968 earmpe.c:968 ei386pe.c:968 ei386pe_posix.c:968
#: emcorepe.c:968 eshpe.c:968
msgid "%P: warning: --export-dynamic is not supported for PE targets, did you mean --export-all-symbols?\n"
msgstr "%P: aviso: --export-dynamic no se admite para objetivos PE, ¿quiso decir --export-all-symbols?\n"
#: earm_wince_pe.c:1018 earmpe.c:1018 ei386pe.c:1018 ei386pe_posix.c:1018
#: emcorepe.c:1018 eshpe.c:1018
msgid "%P: warning: resolving %s by linking to %s\n"
msgstr "%P: aviso: se resuelve %s al enlazar con %s\n"
#: earm_wince_pe.c:1819 earmpe.c:1819 ei386pe.c:1819 ei386pe_posix.c:1819
#: emcorepe.c:1819 eshpe.c:1819
#, c-format
msgid "%P: errors encountered processing file %s for interworking\n"
msgstr "%P: se encontraron errores al procesar el fichero %s para interoperabilidad\n"
#: earm_wince_pe.c:1987 earmelf.c:524 earmelf_fbsd.c:524 earmelf_fuchsia.c:525
#: earmelf_haiku.c:525 earmelf_linux.c:525 earmelf_linux_eabi.c:525
#: earmelf_linux_fdpiceabi.c:525 earmelf_nacl.c:525 earmelf_nbsd.c:524
#: earmelf_phoenix.c:525 earmelf_vxworks.c:524 earmelfb.c:524
#: earmelfb_fbsd.c:524 earmelfb_fuchsia.c:525 earmelfb_linux.c:525
#: earmelfb_linux_eabi.c:525 earmelfb_linux_fdpiceabi.c:525 earmelfb_nacl.c:525
#: earmelfb_nbsd.c:524 earmnto.c:524 earmpe.c:1987 ei386pe.c:1987
#: ei386pe_posix.c:1987 emcorepe.c:1987 eshpe.c:1987
msgid "%P: warning: '--thumb-entry %s' is overriding '-e %s'\n"
msgstr "%P: aviso: '--thumb-entry %s' se impone a '-e %s'\n"
#: earm_wince_pe.c:1992 earmelf.c:529 earmelf_fbsd.c:529 earmelf_fuchsia.c:530
#: earmelf_haiku.c:530 earmelf_linux.c:530 earmelf_linux_eabi.c:530
#: earmelf_linux_fdpiceabi.c:530 earmelf_nacl.c:530 earmelf_nbsd.c:529
#: earmelf_phoenix.c:530 earmelf_vxworks.c:529 earmelfb.c:529
#: earmelfb_fbsd.c:529 earmelfb_fuchsia.c:530 earmelfb_linux.c:530
#: earmelfb_linux_eabi.c:530 earmelfb_linux_fdpiceabi.c:530 earmelfb_nacl.c:530
#: earmelfb_nbsd.c:529 earmnto.c:529 earmpe.c:1992 ei386pe.c:1992
#: ei386pe_posix.c:1992 emcorepe.c:1992 eshpe.c:1992
msgid "%P: warning: cannot find thumb start symbol %s\n"
msgstr "%P: aviso: no se puede encontrar el símbolo de inicio thumb %s\n"
#: earmelf.c:145 earmelf_fbsd.c:145 earmelf_fuchsia.c:146 earmelf_haiku.c:146
#: earmelf_linux.c:146 earmelf_linux_eabi.c:146 earmelf_linux_fdpiceabi.c:146
#: earmelf_nacl.c:146 earmelf_nbsd.c:145 earmelf_phoenix.c:146
#: earmelf_vxworks.c:145 earmelfb.c:145 earmelfb_fbsd.c:145
#: earmelfb_fuchsia.c:146 earmelfb_linux.c:146 earmelfb_linux_eabi.c:146
#: earmelfb_linux_fdpiceabi.c:146 earmelfb_nacl.c:146 earmelfb_nbsd.c:145
#: earmnto.c:145 ei386beos.c:592
#, c-format
msgid "%P: errors encountered processing file %s\n"
msgstr "%P: se encontraron errores al procesar el fichero %s\n"
#: earmelf.c:555 earmelf_fbsd.c:555 earmelf_fuchsia.c:556 earmelf_haiku.c:556
#: earmelf_linux.c:556 earmelf_linux_eabi.c:556 earmelf_linux_fdpiceabi.c:556
#: earmelf_nacl.c:556 earmelf_nbsd.c:555 earmelf_phoenix.c:556
#: earmelf_vxworks.c:555 earmelfb.c:555 earmelfb_fbsd.c:555
#: earmelfb_fuchsia.c:556 earmelfb_linux.c:556 earmelfb_linux_eabi.c:556
#: earmelfb_linux_fdpiceabi.c:556 earmelfb_nacl.c:556 earmelfb_nbsd.c:555
#: earmnto.c:555
msgid "%P: %s: can't open: %E\n"
msgstr "%P: %s: no se puede abrir: %E\n"
#: earmelf.c:558 earmelf_fbsd.c:558 earmelf_fuchsia.c:559 earmelf_haiku.c:559
#: earmelf_linux.c:559 earmelf_linux_eabi.c:559 earmelf_linux_fdpiceabi.c:559
#: earmelf_nacl.c:559 earmelf_nbsd.c:558 earmelf_phoenix.c:559
#: earmelf_vxworks.c:558 earmelfb.c:558 earmelfb_fbsd.c:558
#: earmelfb_fuchsia.c:559 earmelfb_linux.c:559 earmelfb_linux_eabi.c:559
#: earmelfb_linux_fdpiceabi.c:559 earmelfb_nacl.c:559 earmelfb_nbsd.c:558
#: earmnto.c:558
msgid "%P: %s: not a relocatable file: %E\n"
msgstr "%P: %s: no es un fichero reubicable: %E\n"
#: earmelf.c:1101 earmelf_fbsd.c:1101 earmelf_fuchsia.c:1106
#: earmelf_haiku.c:1106 earmelf_linux.c:1106 earmelf_linux_eabi.c:1106
#: earmelf_linux_fdpiceabi.c:1106 earmelf_nacl.c:1106 earmelf_nbsd.c:1101
#: earmelf_phoenix.c:1106 earmelf_vxworks.c:1133 earmelfb.c:1101
#: earmelfb_fbsd.c:1101 earmelfb_fuchsia.c:1106 earmelfb_linux.c:1106
#: earmelfb_linux_eabi.c:1106 earmelfb_linux_fdpiceabi.c:1106
#: earmelfb_nacl.c:1106 earmelfb_nbsd.c:1101 earmnto.c:1061
msgid "%P: unrecognized VFP11 fix type '%s'\n"
msgstr "%P: no se reconoce el tipo de corrección VFP11 '%s'\n"
#: earmelf.c:1114 earmelf_fbsd.c:1114 earmelf_fuchsia.c:1119
#: earmelf_haiku.c:1119 earmelf_linux.c:1119 earmelf_linux_eabi.c:1119
#: earmelf_linux_fdpiceabi.c:1119 earmelf_nacl.c:1119 earmelf_nbsd.c:1114
#: earmelf_phoenix.c:1119 earmelf_vxworks.c:1146 earmelfb.c:1114
#: earmelfb_fbsd.c:1114 earmelfb_fuchsia.c:1119 earmelfb_linux.c:1119
#: earmelfb_linux_eabi.c:1119 earmelfb_linux_fdpiceabi.c:1119
#: earmelfb_nacl.c:1119 earmelfb_nbsd.c:1114 earmnto.c:1074
msgid "%P: unrecognized STM32L4XX fix type '%s'\n"
msgstr "%P: no se reconoce el tipo de corrección STM32L4XX '%s'\n"
#: earmelf.c:1181 earmelf_fbsd.c:1181 earmelf_fuchsia.c:1186
#: earmelf_haiku.c:1186 earmelf_linux.c:1186 earmelf_linux_eabi.c:1186
#: earmelf_linux_fdpiceabi.c:1186 earmelf_nacl.c:1186 earmelf_nbsd.c:1181
#: earmelf_phoenix.c:1186 earmelf_vxworks.c:1217 earmelfb.c:1181
#: earmelfb_fbsd.c:1181 earmelfb_fuchsia.c:1186 earmelfb_linux.c:1186
#: earmelfb_linux_eabi.c:1186 earmelfb_linux_fdpiceabi.c:1186
#: earmelfb_nacl.c:1186 earmelfb_nbsd.c:1181 earmnto.c:1141
#, c-format
msgid " --thumb-entry=<sym> Set the entry point to be Thumb symbol <sym>\n"
msgstr " --thumb-entry=<sim> Establece el punto de entrada para el símbolo Thumb <sim>\n"
# DLL son las siglas en inglés de `Biblioteca de Enlace Dinámico'.
# El problema es que las siglas en español (BED) no están muy extendidas.
# Se dejó `DLL' sin traducir en todas las ocasiones. cfuga
#: earmelf.c:1182 earmelf_fbsd.c:1182 earmelf_fuchsia.c:1187
#: earmelf_haiku.c:1187 earmelf_linux.c:1187 earmelf_linux_eabi.c:1187
#: earmelf_linux_fdpiceabi.c:1187 earmelf_nacl.c:1187 earmelf_nbsd.c:1182
#: earmelf_phoenix.c:1187 earmelf_vxworks.c:1218 earmelfb.c:1182
#: earmelfb_fbsd.c:1182 earmelfb_fuchsia.c:1187 earmelfb_linux.c:1187
#: earmelfb_linux_eabi.c:1187 earmelfb_linux_fdpiceabi.c:1187
#: earmelfb_nacl.c:1187 earmelfb_nbsd.c:1182 earmnto.c:1142
#, c-format
msgid " --be8 Output BE8 format image\n"
msgstr " --be8 Salida en formato de imagen BE8\n"
#: earmelf.c:1183 earmelf_fbsd.c:1183 earmelf_fuchsia.c:1188
#: earmelf_haiku.c:1188 earmelf_linux.c:1188 earmelf_linux_eabi.c:1188
#: earmelf_linux_fdpiceabi.c:1188 earmelf_nacl.c:1188 earmelf_nbsd.c:1183
#: earmelf_phoenix.c:1188 earmelf_vxworks.c:1219 earmelfb.c:1183
#: earmelfb_fbsd.c:1183 earmelfb_fuchsia.c:1188 earmelfb_linux.c:1188
#: earmelfb_linux_eabi.c:1188 earmelfb_linux_fdpiceabi.c:1188
#: earmelfb_nacl.c:1188 earmelfb_nbsd.c:1183 earmnto.c:1143
#, c-format
msgid " --target1-rel Interpret R_ARM_TARGET1 as R_ARM_REL32\n"
msgstr " --target1-rel Interpreta R_ARM_TARGET1 como R_ARM_REL32\n"
#: earmelf.c:1184 earmelf_fbsd.c:1184 earmelf_fuchsia.c:1189
#: earmelf_haiku.c:1189 earmelf_linux.c:1189 earmelf_linux_eabi.c:1189
#: earmelf_linux_fdpiceabi.c:1189 earmelf_nacl.c:1189 earmelf_nbsd.c:1184
#: earmelf_phoenix.c:1189 earmelf_vxworks.c:1220 earmelfb.c:1184
#: earmelfb_fbsd.c:1184 earmelfb_fuchsia.c:1189 earmelfb_linux.c:1189
#: earmelfb_linux_eabi.c:1189 earmelfb_linux_fdpiceabi.c:1189
#: earmelfb_nacl.c:1189 earmelfb_nbsd.c:1184 earmnto.c:1144
#, c-format
msgid " --target1-abs Interpret R_ARM_TARGET1 as R_ARM_ABS32\n"
msgstr " --target1-abs Interpreta R_ARM_TARGET1 como R_ARM_ABS32\n"
#: earmelf.c:1185 earmelf_fbsd.c:1185 earmelf_fuchsia.c:1190
#: earmelf_haiku.c:1190 earmelf_linux.c:1190 earmelf_linux_eabi.c:1190
#: earmelf_linux_fdpiceabi.c:1190 earmelf_nacl.c:1190 earmelf_nbsd.c:1185
#: earmelf_phoenix.c:1190 earmelf_vxworks.c:1221 earmelfb.c:1185
#: earmelfb_fbsd.c:1185 earmelfb_fuchsia.c:1190 earmelfb_linux.c:1190
#: earmelfb_linux_eabi.c:1190 earmelfb_linux_fdpiceabi.c:1190
#: earmelfb_nacl.c:1190 earmelfb_nbsd.c:1185 earmnto.c:1145
#, c-format
msgid " --target2=<type> Specify definition of R_ARM_TARGET2\n"
msgstr " --target2=<type> Especifica la definición de R_ARM_TARGET2\n"
#: earmelf.c:1186 earmelf_fbsd.c:1186 earmelf_fuchsia.c:1191
#: earmelf_haiku.c:1191 earmelf_linux.c:1191 earmelf_linux_eabi.c:1191
#: earmelf_linux_fdpiceabi.c:1191 earmelf_nacl.c:1191 earmelf_nbsd.c:1186
#: earmelf_phoenix.c:1191 earmelf_vxworks.c:1222 earmelfb.c:1186
#: earmelfb_fbsd.c:1186 earmelfb_fuchsia.c:1191 earmelfb_linux.c:1191
#: earmelfb_linux_eabi.c:1191 earmelfb_linux_fdpiceabi.c:1191
#: earmelfb_nacl.c:1191 earmelfb_nbsd.c:1186 earmnto.c:1146
#, c-format
msgid " --fix-v4bx Rewrite BX rn as MOV pc, rn for ARMv4\n"
msgstr " --fix-v4bx Reescribe BX rn como MOV pc, rn para ARMv4\n"
#: earmelf.c:1187 earmelf_fbsd.c:1187 earmelf_fuchsia.c:1192
#: earmelf_haiku.c:1192 earmelf_linux.c:1192 earmelf_linux_eabi.c:1192
#: earmelf_linux_fdpiceabi.c:1192 earmelf_nacl.c:1192 earmelf_nbsd.c:1187
#: earmelf_phoenix.c:1192 earmelf_vxworks.c:1223 earmelfb.c:1187
#: earmelfb_fbsd.c:1187 earmelfb_fuchsia.c:1192 earmelfb_linux.c:1192
#: earmelfb_linux_eabi.c:1192 earmelfb_linux_fdpiceabi.c:1192
#: earmelfb_nacl.c:1192 earmelfb_nbsd.c:1187 earmnto.c:1147
#, c-format
msgid " --fix-v4bx-interworking Rewrite BX rn branch to ARMv4 interworking veneer\n"
msgstr " --fix-v4bx-interworking Reescribe rama BX rn en capa de interoperabilidad ARMv4\n"
#: earmelf.c:1188 earmelf_fbsd.c:1188 earmelf_fuchsia.c:1193
#: earmelf_haiku.c:1193 earmelf_linux.c:1193 earmelf_linux_eabi.c:1193
#: earmelf_linux_fdpiceabi.c:1193 earmelf_nacl.c:1193 earmelf_nbsd.c:1188
#: earmelf_phoenix.c:1193 earmelf_vxworks.c:1224 earmelfb.c:1188
#: earmelfb_fbsd.c:1188 earmelfb_fuchsia.c:1193 earmelfb_linux.c:1193
#: earmelfb_linux_eabi.c:1193 earmelfb_linux_fdpiceabi.c:1193
#: earmelfb_nacl.c:1193 earmelfb_nbsd.c:1188 earmnto.c:1148
#, c-format
msgid " --use-blx Enable use of BLX instructions\n"
msgstr " --use-blx Activa el uso de instrucciones BLX\n"
#: earmelf.c:1189 earmelf_fbsd.c:1189 earmelf_fuchsia.c:1194
#: earmelf_haiku.c:1194 earmelf_linux.c:1194 earmelf_linux_eabi.c:1194
#: earmelf_linux_fdpiceabi.c:1194 earmelf_nacl.c:1194 earmelf_nbsd.c:1189
#: earmelf_phoenix.c:1194 earmelf_vxworks.c:1225 earmelfb.c:1189
#: earmelfb_fbsd.c:1189 earmelfb_fuchsia.c:1194 earmelfb_linux.c:1194
#: earmelfb_linux_eabi.c:1194 earmelfb_linux_fdpiceabi.c:1194
#: earmelfb_nacl.c:1194 earmelfb_nbsd.c:1189 earmnto.c:1149
#, c-format
msgid " --vfp11-denorm-fix Specify how to fix VFP11 denorm erratum\n"
msgstr " --vfp11-denorm-fix Especifica cómo corregir VFP11 denorm erratum\n"
#: earmelf.c:1190 earmelf_fbsd.c:1190 earmelf_fuchsia.c:1195
#: earmelf_haiku.c:1195 earmelf_linux.c:1195 earmelf_linux_eabi.c:1195
#: earmelf_linux_fdpiceabi.c:1195 earmelf_nacl.c:1195 earmelf_nbsd.c:1190
#: earmelf_phoenix.c:1195 earmelf_vxworks.c:1226 earmelfb.c:1190
#: earmelfb_fbsd.c:1190 earmelfb_fuchsia.c:1195 earmelfb_linux.c:1195
#: earmelfb_linux_eabi.c:1195 earmelfb_linux_fdpiceabi.c:1195
#: earmelfb_nacl.c:1195 earmelfb_nbsd.c:1190 earmnto.c:1150
#, c-format
msgid " --fix-stm32l4xx-629360 Specify how to fix STM32L4XX 629360 erratum\n"
msgstr " --fix-stm32l4xx-629360 Especifica cómo corregir el error STM32L4XX 629360\n"
#: earmelf.c:1196 earmelf_fbsd.c:1196 earmelf_fuchsia.c:1201
#: earmelf_haiku.c:1201 earmelf_linux.c:1201 earmelf_linux_eabi.c:1201
#: earmelf_linux_fdpiceabi.c:1201 earmelf_nacl.c:1201 earmelf_nbsd.c:1196
#: earmelf_phoenix.c:1201 earmelf_vxworks.c:1232 earmelfb.c:1196
#: earmelfb_fbsd.c:1196 earmelfb_fuchsia.c:1201 earmelfb_linux.c:1201
#: earmelfb_linux_eabi.c:1201 earmelfb_linux_fdpiceabi.c:1201
#: earmelfb_nacl.c:1201 earmelfb_nbsd.c:1196 earmnto.c:1156
#, c-format
msgid ""
" --long-plt Generate long .plt entries\n"
" to handle large .plt/.got displacements\n"
msgstr ""
" --long-plt Genera entradas .plt largas para manejar\n"
" desplazamientos .plt/.got grandes\n"
#: earmelf.c:1198 earmelf_fbsd.c:1198 earmelf_fuchsia.c:1203
#: earmelf_haiku.c:1203 earmelf_linux.c:1203 earmelf_linux_eabi.c:1203
#: earmelf_linux_fdpiceabi.c:1203 earmelf_nacl.c:1203 earmelf_nbsd.c:1198
#: earmelf_phoenix.c:1203 earmelf_vxworks.c:1234 earmelfb.c:1198
#: earmelfb_fbsd.c:1198 earmelfb_fuchsia.c:1203 earmelfb_linux.c:1203
#: earmelfb_linux_eabi.c:1203 earmelfb_linux_fdpiceabi.c:1203
#: earmelfb_nacl.c:1203 earmelfb_nbsd.c:1198 earmnto.c:1158
#, c-format
msgid ""
" --cmse-implib Make import library to be a secure gateway import\n"
" library as per ARMv8-M Security Extensions\n"
msgstr ""
" --cmse-implib Hace que la biblioteca de importación sea una\n"
" biblioteca de importación de pasarela segura\n"
" según las extensiones de seguridad de ARMv8-M\n"
#: earmelf.c:1200 earmelf_fbsd.c:1200 earmelf_fuchsia.c:1205
#: earmelf_haiku.c:1205 earmelf_linux.c:1205 earmelf_linux_eabi.c:1205
#: earmelf_linux_fdpiceabi.c:1205 earmelf_nacl.c:1205 earmelf_nbsd.c:1200
#: earmelf_phoenix.c:1205 earmelf_vxworks.c:1236 earmelfb.c:1200
#: earmelfb_fbsd.c:1200 earmelfb_fuchsia.c:1205 earmelfb_linux.c:1205
#: earmelfb_linux_eabi.c:1205 earmelfb_linux_fdpiceabi.c:1205
#: earmelfb_nacl.c:1205 earmelfb_nbsd.c:1200 earmnto.c:1160
#, c-format
msgid ""
" --in-implib Import library whose symbols address must\n"
" remain stable\n"
msgstr ""
" --in-implib Importa biblioteca en la que la dirección de\n"
" los símbolos debe permanecer estable\n"
#: earmelf.c:1211 earmelf_fbsd.c:1211 earmelf_fuchsia.c:1216
#: earmelf_haiku.c:1216 earmelf_linux.c:1216 earmelf_linux_eabi.c:1216
#: earmelf_linux_fdpiceabi.c:1216 earmelf_nacl.c:1216 earmelf_nbsd.c:1211
#: earmelf_phoenix.c:1216 earmelf_vxworks.c:1247 earmelfb.c:1211
#: earmelfb_fbsd.c:1211 earmelfb_fuchsia.c:1216 earmelfb_linux.c:1216
#: earmelfb_linux_eabi.c:1216 earmelfb_linux_fdpiceabi.c:1216
#: earmelfb_nacl.c:1216 earmelfb_nbsd.c:1211 earmnto.c:1171
#, c-format
msgid " --[no-]fix-cortex-a8 Disable/enable Cortex-A8 Thumb-2 branch erratum fix\n"
msgstr " --[no-]fix-cortex-a8 Desactiva/activa la corrección del error de rama Cortex-A8 Thumb-2\n"
#: earmelf.c:1212 earmelf_fbsd.c:1212 earmelf_fuchsia.c:1217
#: earmelf_haiku.c:1217 earmelf_linux.c:1217 earmelf_linux_eabi.c:1217
#: earmelf_linux_fdpiceabi.c:1217 earmelf_nacl.c:1217 earmelf_nbsd.c:1212
#: earmelf_phoenix.c:1217 earmelf_vxworks.c:1248 earmelfb.c:1212
#: earmelfb_fbsd.c:1212 earmelfb_fuchsia.c:1217 earmelfb_linux.c:1217
#: earmelfb_linux_eabi.c:1217 earmelfb_linux_fdpiceabi.c:1217
#: earmelfb_nacl.c:1217 earmelfb_nbsd.c:1212 earmnto.c:1172
#, c-format
msgid " --no-merge-exidx-entries Disable merging exidx entries\n"
msgstr " --no-merge-exidx-entries Desactiva la fusión de entradas exidx\n"
#: earmelf.c:1213 earmelf_fbsd.c:1213 earmelf_fuchsia.c:1218
#: earmelf_haiku.c:1218 earmelf_linux.c:1218 earmelf_linux_eabi.c:1218
#: earmelf_linux_fdpiceabi.c:1218 earmelf_nacl.c:1218 earmelf_nbsd.c:1213
#: earmelf_phoenix.c:1218 earmelf_vxworks.c:1249 earmelfb.c:1213
#: earmelfb_fbsd.c:1213 earmelfb_fuchsia.c:1218 earmelfb_linux.c:1218
#: earmelfb_linux_eabi.c:1218 earmelfb_linux_fdpiceabi.c:1218
#: earmelfb_nacl.c:1218 earmelfb_nbsd.c:1213 earmnto.c:1173
#, c-format
msgid " --[no-]fix-arm1176 Disable/enable ARM1176 BLX immediate erratum fix\n"
msgstr " --[no-]fix-arm1176 Desactiva/activa la corrección inmediata del error ARM1176 BLX\n"
#: earmelf_vxworks.c:604 eelf32_sparc_vxworks.c:74 eelf32ebmipvxworks.c:270
#: eelf32elmipvxworks.c:270 eelf32ppcvxworks.c:227 eelf_i386_vxworks.c:98
#: eshelf_vxworks.c:74 eshlelf_vxworks.c:74
msgid "%X%P: cannot create dynamic sections %E\n"
msgstr "%X%P: no se pueden crear secciones dinámicas %E\n"
#: earmelf_vxworks.c:610 eelf32_sparc_vxworks.c:80 eelf32ebmipvxworks.c:276
#: eelf32elmipvxworks.c:276 eelf32ppcvxworks.c:233 eelf_i386_vxworks.c:104
#: eshelf_vxworks.c:80 eshlelf_vxworks.c:80
msgid "%X%P: dynamic sections created in non-dynamic link\n"
msgstr "%X%P: secciones dinámicas creadas en enlace no dinámico\n"
#: earmelf_vxworks.c:1251 eelf32_sparc_vxworks.c:583 eelf32ebmipvxworks.c:831
#: eelf32elmipvxworks.c:831 eelf32ppcvxworks.c:873 eelf_i386_vxworks.c:668
#: eshelf_vxworks.c:538 eshlelf_vxworks.c:538
#, c-format
msgid " --force-dynamic Always create dynamic sections\n"
msgstr " --force-dynamic Crea siempre secciones dinámicas\n"
#: eavr1.c:125 eavr2.c:125 eavr25.c:125 eavr3.c:125 eavr31.c:125 eavr35.c:125
#: eavr4.c:125 eavr5.c:125 eavr51.c:125 eavr6.c:125 eavrtiny.c:125
#: eavrxmega1.c:125 eavrxmega2.c:125 eavrxmega2_flmap.c:125 eavrxmega3.c:125
#: eavrxmega4.c:125 eavrxmega4_flmap.c:125 eavrxmega5.c:125 eavrxmega6.c:125
#: eavrxmega7.c:125
msgid "%X%P: can not setup the input section list: %E\n"
msgstr "%X%P: no se puede configurar la lista de secciones de entrada: %E\n"
#: eavr1.c:160 eavr2.c:160 eavr25.c:160 eavr3.c:160 eavr31.c:160 eavr35.c:160
#: eavr4.c:160 eavr5.c:160 eavr51.c:160 eavr6.c:160 eavrtiny.c:160
#: eavrxmega1.c:160 eavrxmega2.c:160 eavrxmega2_flmap.c:160 eavrxmega3.c:160
#: eavrxmega4.c:160 eavrxmega4_flmap.c:160 eavrxmega5.c:160 eavrxmega6.c:160
#: eavrxmega7.c:160
msgid "%X%P: can not create stub BFD: %E\n"
msgstr "%X%P: no se puede crear stub BFD: %E\n"
#: eavr1.c:587 eavr2.c:587 eavr25.c:587 eavr3.c:587 eavr31.c:587 eavr35.c:587
#: eavr4.c:587 eavr5.c:587 eavr51.c:587 eavr6.c:587 eavrtiny.c:587
#: eavrxmega1.c:587 eavrxmega2.c:587 eavrxmega2_flmap.c:587 eavrxmega3.c:587
#: eavrxmega4.c:587 eavrxmega4_flmap.c:587 eavrxmega5.c:587 eavrxmega6.c:587
#: eavrxmega7.c:587
#, c-format
msgid ""
" --pmem-wrap-around=<val> Make the linker relaxation machine assume that a\n"
" program counter wrap-around occurs at address\n"
" <val>. Supported values: 8k, 16k, 32k and 64k.\n"
msgstr ""
" --pmem-wrap-around=<val> Induce a la máquina de relajación del enlazador a\n"
" asumir que el contador de programa experimenta\n"
" una vuelta a cero en la dirección <val>.\n"
" Valores admitidos: 8k, 16k, 32k y 64k.\n"
#: eavr1.c:593 eavr2.c:593 eavr25.c:593 eavr3.c:593 eavr31.c:593 eavr35.c:593
#: eavr4.c:593 eavr5.c:593 eavr51.c:593 eavr6.c:593 eavrtiny.c:593
#: eavrxmega1.c:593 eavrxmega2.c:593 eavrxmega2_flmap.c:593 eavrxmega3.c:593
#: eavrxmega4.c:593 eavrxmega4_flmap.c:593 eavrxmega5.c:593 eavrxmega6.c:593
#: eavrxmega7.c:593
#, c-format
msgid ""
" --no-call-ret-replacement The relaxation machine normally will\n"
" substitute two immediately following call/ret\n"
" instructions by a single jump instruction.\n"
" This option disables this optimization.\n"
msgstr ""
" --no-call-ret-replacement La máquina de relajación normalmente sustituye\n"
" dos instrucciones call/ret inmediatamente\n"
" seguidas por una sola instrucción jump.\n"
" Esta opción desactiva dicha optimización.\n"
#: eavr1.c:601 eavr2.c:601 eavr25.c:601 eavr3.c:601 eavr31.c:601 eavr35.c:601
#: eavr4.c:601 eavr5.c:601 eavr51.c:601 eavr6.c:601 eavrtiny.c:601
#: eavrxmega1.c:601 eavrxmega2.c:601 eavrxmega2_flmap.c:601 eavrxmega3.c:601
#: eavrxmega4.c:601 eavrxmega4_flmap.c:601 eavrxmega5.c:601 eavrxmega6.c:601
#: eavrxmega7.c:601
#, c-format
msgid ""
" --no-stubs If the linker detects to attempt to access\n"
" an instruction beyond 128k by a reloc that\n"
" is limited to 128k max, it inserts a jump\n"
" stub. You can de-active this with this switch.\n"
msgstr ""
" --no-stubs Si el enlazador detecta un intento de acceder\n"
" una instrucción más allá de 128k por parte de\n"
" una reubicación limitada a 128k como máximo,\n"
" inserta un stub de salto. Puede desactivarse\n"
" con esta opción.\n"
#: eavr1.c:609 eavr2.c:609 eavr25.c:609 eavr3.c:609 eavr31.c:609 eavr35.c:609
#: eavr4.c:609 eavr5.c:609 eavr51.c:609 eavr6.c:609 eavrtiny.c:609
#: eavrxmega1.c:609 eavrxmega2.c:609 eavrxmega2_flmap.c:609 eavrxmega3.c:609
#: eavrxmega4.c:609 eavrxmega4_flmap.c:609 eavrxmega5.c:609 eavrxmega6.c:609
#: eavrxmega7.c:609
#, c-format
msgid " --debug-stubs Used for debugging avr-ld.\n"
msgstr " --debug-stubs Utilizado para depurar avr-ld.\n"
#: eavr1.c:611 eavr2.c:611 eavr25.c:611 eavr3.c:611 eavr31.c:611 eavr35.c:611
#: eavr4.c:611 eavr5.c:611 eavr51.c:611 eavr6.c:611 eavrtiny.c:611
#: eavrxmega1.c:611 eavrxmega2.c:611 eavrxmega2_flmap.c:611 eavrxmega3.c:611
#: eavrxmega4.c:611 eavrxmega4_flmap.c:611 eavrxmega5.c:611 eavrxmega6.c:611
#: eavrxmega7.c:611
#, c-format
msgid " --debug-relax Used for debugging avr-ld.\n"
msgstr " --debug-relax Utilizado para depurar avr-ld.\n"
#: ecskyelf.c:278 ecskyelf_linux.c:278 eelf32kvx.c:271 eelf64kvx.c:271
#: eelf64kvx_linux.c:269
msgid "%X%P: cannot size stub section: %E\n"
msgstr "%X%P: no se puede medir la sección de stub: %E\n"
#: ecskyelf.c:295 ecskyelf_linux.c:295
msgid "%X%P: cannot build stubs: %E\n"
msgstr "%X%P: no se pueden construir los stubs: %E\n"
#: ecskyelf.c:616 ecskyelf_linux.c:803
#, c-format
msgid ""
" --[no-]branch-stub Disable/enable use of stubs to expand branch\n"
" instructions that cannot reach the target.\n"
msgstr ""
" --[no-]branch-stub Desactiva/activa el uso de stubs para expandir\n"
" las instrucciones de rama que no pueden llegar\n"
" al objetivo.\n"
#: ecskyelf.c:620 ecskyelf_linux.c:807
#, c-format
msgid ""
" --stub-group-size=N Maximum size of a group of input sections\n"
" handled by one stub section.\n"
msgstr ""
" --stub-group-size=N Tamaño máximo de un grupo de secciones de\n"
" entrada manejado por una sección stub.\n"
#: ed30v_e.c:73 ed30v_o.c:73 ed30velf.c:73 eelf32_dlx.c:73 eelf32fr30.c:73
#: eelf32frv.c:73 eelf32ft32.c:73 eelf32iq10.c:73 eelf32iq2000.c:73
#: eelf32mt.c:73 em9s12zelf.c:73 emn10200.c:73 emoxiebox.c:73 emsp430X.c:99
#: emsp430elf.c:99 epjelf.c:73 epjlelf.c:73 exgateelf.c:73
msgid "%X%P: can not size group sections: %E\n"
msgstr "%X%P: no se pueden dimensionar las secciones de grupos: %E\n"
#: eelf32_spu.c:258 ev850.c:76 ev850_rh850.c:76
msgid "%X%P: can not create note section: %E\n"
msgstr "%X%P: no se puede crear la sección de notas: %E\n"
#: eelf32_spu.c:347
msgid "%P: no built-in overlay manager\n"
msgstr "%P: ningún gestor de recubrimientos incorporado\n"
#: eelf32_spu.c:357
msgid "%X%P: can not open built-in overlay manager: %E\n"
msgstr "%X%P: no se puede abrir el gestor de recubrimientos incorporado: %E\n"
#: eelf32_spu.c:363
msgid "%X%P: can not load built-in overlay manager: %E\n"
msgstr "%X%P: no se puede cargar el gestor de recubrimientos incorporado: %E\n"
#: eelf32_spu.c:423
msgid "%X%P: can not find overlays: %E\n"
msgstr "%X%P: no se pueden encontrar recubrimientos: %E\n"
#: eelf32_spu.c:430
msgid "%P: --auto-overlay ignored with user overlay script\n"
msgstr "%P: --auto-overlay ignorada con script de recubrimientos de usuario\n"
#: eelf32_spu.c:451
msgid "%X%P: can not size overlay stubs: %E\n"
msgstr "%X%P: no se puede calcular tamaño de stubs de recubrimientos: %E\n"
#: eelf32_spu.c:524
msgid "%P: can not open script: %E\n"
msgstr "%P: no se puede abrir el script: %E\n"
#: eelf32_spu.c:571
msgid "%X%P: %pA exceeds local store range\n"
msgstr "%X%P: %pA sobrepasa el rango de almacenamiento local\n"
#: eelf32_spu.c:574
msgid "%P: --auto-overlay ignored with zero local store range\n"
msgstr "%P: --auto-overlay descartado con rango de almacenamiento local cero\n"
#: eelf32_spu.c:939
msgid "%P: invalid --local-store address range `%s'\n"
msgstr "%P: rango de direcciones --local-store no válido `%s'\n"
#: eelf32_spu.c:975
msgid "%P: invalid --num-lines/--num-regions `%u'\n"
msgstr "%P --num-lines/--num-regions no válido `%u'\n"
#: eelf32_spu.c:980
msgid "%P: invalid --line-size/--region-size `%u'\n"
msgstr "%P: --line-size/--region-size no válido `%u'\n"
#: eelf32_spu.c:1001
msgid "%P: invalid --num-lines/--num-regions `%s'\n"
msgstr "%P: --num-lines/--num-regions no válido `%s'\n"
#: eelf32_spu.c:1014
msgid "%P: invalid --line-size/--region-size `%s'\n"
msgstr "%P: --line-size/--region-size no válido `%s'\n"
#: eelf32_spu.c:1023
msgid "%P: invalid --fixed-space value `%s'\n"
msgstr "%P: valor de --fixed-space no válido `%s'\n"
#: eelf32_spu.c:1032
msgid "%P: invalid --reserved-space value `%s'\n"
msgstr "%P: valor de --reserved-space no válido `%s'\n"
#: eelf32_spu.c:1041
msgid "%P: invalid --extra-stack-space value `%s'\n"
msgstr "%P: valor de --extra-stack-space no válido `%s'\n"
#: eelf32_spu.c:1078
#, c-format
msgid " --plugin Make SPU plugin\n"
msgstr " --plugin Produce plugin SPU\n"
#: eelf32_spu.c:1080
#, c-format
msgid " --no-overlays No overlay handling\n"
msgstr " --no-overlays Sin manejo de recubrimientos\n"
#: eelf32_spu.c:1082
#, c-format
msgid " --compact-stubs Use smaller and possibly slower call stubs\n"
msgstr ""
" --compact-stubs Utiliza stubs de llamadas más pequeños y\n"
" posiblemente más lentos\n"
#: eelf32_spu.c:1084
#, c-format
msgid " --emit-stub-syms Add symbols on overlay call stubs\n"
msgstr " --emit-stub-syms Añade símbolos en los stubs de llamada de recubrimiento\n"
#: eelf32_spu.c:1086
#, c-format
msgid " --extra-overlay-stubs Add stubs on all calls out of overlay regions\n"
msgstr " --extra-overlay-stubs Añade stubs en todas las llamadas fuera de regiones de recubrimiento\n"
#: eelf32_spu.c:1088
#, c-format
msgid " --local-store=lo:hi Valid address range\n"
msgstr " --local-store=inf:sup Rango de direcciones válido\n"
#: eelf32_spu.c:1090
#, c-format
msgid " --stack-analysis Estimate maximum stack requirement\n"
msgstr " --stack-analysis Estima el requisito de pila máximo\n"
#: eelf32_spu.c:1092
#, c-format
msgid " --emit-stack-syms Add sym giving stack needed for each func\n"
msgstr ""
" --emit-stack-syms Añade símbolo para dar la pila necesaria\n"
" para cada función\n"
#: eelf32_spu.c:1094
#, c-format
msgid ""
" --auto-overlay [=filename] Create an overlay script in filename if\n"
" executable does not fit in local store\n"
msgstr ""
" --auto-overlay [=filename] Crea script de recubrimiento en nombre del fichero\n"
" si el ejecutable no cabe en el almacenamiento local\n"
#: eelf32_spu.c:1097
#, c-format
msgid " --auto-relink Rerun linker using auto-overlay script\n"
msgstr ""
" --auto-relink Vuelve a ejecutar el enlazador utilizando\n"
" script de autorecubrimiento\n"
#: eelf32_spu.c:1099
#, c-format
msgid ""
" --overlay-rodata Place read-only data with associated function\n"
" code in overlays\n"
msgstr ""
" --overlay-rodata Coloca los datos de solo lectura con el código de\n"
" la función asociada en recubrimientos\n"
#: eelf32_spu.c:1102
#, c-format
msgid " --num-regions Number of overlay buffers (default 1)\n"
msgstr ""
" --num-regions Número de «buffers» de recubrimientos\n"
" (1 predefinido)\n"
#: eelf32_spu.c:1104
#, c-format
msgid " --region-size Size of overlay buffers (default 0, auto)\n"
msgstr ""
" --region-size Tamaño de los «buffers» de recubrimiento\n"
" (0 predefinido, auto)\n"
#: eelf32_spu.c:1106
#, c-format
msgid " --fixed-space=bytes Local store for non-overlay code and data\n"
msgstr ""
" --fixed-space=bytes Almacenamiento local para código y datos\n"
" no de recubrimiento\n"
#: eelf32_spu.c:1108
#, c-format
msgid ""
" --reserved-space=bytes Local store for stack and heap. If not specified\n"
" ld will estimate stack size and assume no heap\n"
msgstr ""
" --reserved-space=bytes Almacenamiento local para pila y montículo. Si no\n"
" se especifica, ld estima el tamaño de pila y\n"
" asume que no hay montículo\n"
#: eelf32_spu.c:1111
#, c-format
msgid ""
" --extra-stack-space=bytes Space for negative sp access (default 2000) if\n"
" --reserved-space not given\n"
msgstr ""
" --extra-stack-space=bytes Espacio para acceso sp negativo (2000 predefinido)\n"
" si no se proporciona --reserved-space\n"
#: eelf32_spu.c:1114
#, c-format
msgid " --soft-icache Generate software icache overlays\n"
msgstr " --soft-icache Genera recubrimientos «icache» software\n"
#: eelf32_spu.c:1116
#, c-format
msgid " --num-lines Number of soft-icache lines (default 32)\n"
msgstr " --num-lines Número de líneas «soft-icache» (32 predefinido)\n"
#: eelf32_spu.c:1118
#, c-format
msgid " --line-size Size of soft-icache lines (default 1k)\n"
msgstr " --line-size Tamaño de las líneas «soft-icache» (1k predefinido)\n"
#: eelf32_spu.c:1120
#, c-format
msgid " --non-ia-text Allow non-icache code in icache lines\n"
msgstr " --non-ia-text Permite código no «icache» en líneas «icache»\n"
#: eelf32_spu.c:1122
#, c-format
msgid " --lrlive-analysis Scan function prologue for lr liveness\n"
msgstr " --lrlive-analysis Examina la vitalidad lr en el prólogo de las funciones\n"
#: eelf32_tic6x_be.c:90 eelf32_tic6x_elf_be.c:90 eelf32_tic6x_elf_le.c:90
#: eelf32_tic6x_le.c:90 eelf32_tic6x_linux_be.c:90 eelf32_tic6x_linux_le.c:90
msgid "%P: invalid --dsbt-index %d, outside DSBT size\n"
msgstr "%P: --dsbt-index %d no válido, tamaño fuera de DSBT\n"
#: eelf32_tic6x_be.c:629 eelf32_tic6x_elf_be.c:629 eelf32_tic6x_elf_le.c:629
#: eelf32_tic6x_le.c:629 eelf32_tic6x_linux_be.c:629
#: eelf32_tic6x_linux_le.c:629
msgid "%P: invalid --dsbt-index %s\n"
msgstr "%P: --dsbt-index no válido %s\n"
#: eelf32_tic6x_be.c:639 eelf32_tic6x_elf_be.c:639 eelf32_tic6x_elf_le.c:639
#: eelf32_tic6x_le.c:639 eelf32_tic6x_linux_be.c:639
#: eelf32_tic6x_linux_le.c:639
msgid "%P: invalid --dsbt-size %s\n"
msgstr "%P: --dsbt-size no válido %s\n"
#: eelf32_tic6x_be.c:655 eelf32_tic6x_elf_be.c:655 eelf32_tic6x_elf_le.c:655
#: eelf32_tic6x_le.c:655 eelf32_tic6x_linux_be.c:655
#: eelf32_tic6x_linux_le.c:655
#, c-format
msgid " --dsbt-index <index> Use this as the DSBT index for the output object\n"
msgstr " --dsbt-index <índice> Indica el índice DSBT del objeto de salida\n"
#: eelf32_tic6x_be.c:656 eelf32_tic6x_elf_be.c:656 eelf32_tic6x_elf_le.c:656
#: eelf32_tic6x_le.c:656 eelf32_tic6x_linux_be.c:656
#: eelf32_tic6x_linux_le.c:656
#, c-format
msgid " --dsbt-size <index> Use this as the number of entries in the DSBT table\n"
msgstr " --dsbt-size <índice> Indica el número de entradas en la tabla DSBT\n"
#: eelf32_tic6x_be.c:657 eelf32_tic6x_elf_be.c:657 eelf32_tic6x_elf_le.c:657
#: eelf32_tic6x_le.c:657 eelf32_tic6x_linux_be.c:657
#: eelf32_tic6x_linux_le.c:657
#, c-format
msgid " --no-merge-exidx-entries\n"
msgstr " --no-merge-exidx-entries\n"
# DLL son las siglas en inglés de `Biblioteca de Enlace Dinámico'.
# El problema es que las siglas en español (BED) no están muy extendidas.
# Se dejó `DLL' sin traducir en todas las ocasiones. cfuga
#: eelf32_tic6x_be.c:658 eelf32_tic6x_elf_be.c:658 eelf32_tic6x_elf_le.c:658
#: eelf32_tic6x_le.c:658 eelf32_tic6x_linux_be.c:658
#: eelf32_tic6x_linux_le.c:658
#, c-format
msgid " Disable merging exidx entries\n"
msgstr " Desactiva la fusión de entradas exidx\n"
#: eelf32_x86_64.c:8638 eelf_i386.c:8061 eelf_i386_be.c:542
#: eelf_i386_fbsd.c:593 eelf_i386_haiku.c:593 eelf_i386_ldso.c:553
#: eelf_i386_sol2.c:725 eelf_i386_vxworks.c:619 eelf_iamcu.c:593
#: eelf_x86_64.c:8638 eelf_x86_64_cloudabi.c:636 eelf_x86_64_fbsd.c:636
#: eelf_x86_64_haiku.c:636 eelf_x86_64_sol2.c:768
msgid "%P: invalid number for -z call-nop=prefix-: %s\n"
msgstr "%P: número no válido para -z call-nop=prefix-: %s\n"
#: eelf32_x86_64.c:8647 eelf_i386.c:8070 eelf_i386_be.c:551
#: eelf_i386_fbsd.c:602 eelf_i386_haiku.c:602 eelf_i386_ldso.c:562
#: eelf_i386_sol2.c:734 eelf_i386_vxworks.c:628 eelf_iamcu.c:602
#: eelf_x86_64.c:8647 eelf_x86_64_cloudabi.c:645 eelf_x86_64_fbsd.c:645
#: eelf_x86_64_haiku.c:645 eelf_x86_64_sol2.c:777
msgid "%P: invalid number for -z call-nop=suffix-: %s\n"
msgstr "%P: número no válido para -z call-nop=suffix-: %s\n"
#: eelf32_x86_64.c:8652 eelf_i386.c:8075 eelf_i386_be.c:556
#: eelf_i386_fbsd.c:607 eelf_i386_haiku.c:607 eelf_i386_ldso.c:567
#: eelf_i386_sol2.c:739 eelf_i386_vxworks.c:633 eelf_iamcu.c:607
#: eelf_x86_64.c:8652 eelf_x86_64_cloudabi.c:650 eelf_x86_64_fbsd.c:650
#: eelf_x86_64_haiku.c:650 eelf_x86_64_sol2.c:782
msgid "%P: unsupported option: -z %s\n"
msgstr "%P: no se admite la opción: -z %s\n"
#: eelf32_x86_64.c:8674 eelf_i386.c:8097 eelf_i386_fbsd.c:629
#: eelf_i386_haiku.c:629 eelf_x86_64.c:8674 eelf_x86_64_cloudabi.c:672
#: eelf_x86_64_fbsd.c:672 eelf_x86_64_haiku.c:672 eelf_x86_64_sol2.c:804
msgid "%P: invalid option for -z cet-report=: %s\n"
msgstr "%P: origen no válido para -z cet-report=: %s\n"
#: eelf32_x86_64.c:8688 eelf_i386.c:8111 eelf_i386_fbsd.c:643
#: eelf_i386_haiku.c:643 eelf_x86_64.c:8688 eelf_x86_64_cloudabi.c:686
#: eelf_x86_64_fbsd.c:686 eelf_x86_64_haiku.c:686 eelf_x86_64_sol2.c:818
msgid "%P: invalid x86-64 ISA level: %s\n"
msgstr "%P: nivel ISA x86-64 inválido: %s\n"
#: eelf32_x86_64.c:8704 eelf_i386.c:8127 eelf_i386_fbsd.c:659
#: eelf_i386_haiku.c:659 eelf_x86_64.c:8704 eelf_x86_64_cloudabi.c:702
#: eelf_x86_64_fbsd.c:702 eelf_x86_64_haiku.c:702 eelf_x86_64_sol2.c:834
msgid "%P: invalid option for -z isa-level-report=: %s\n"
msgstr "%P: opción no válida para -z isa-level-report=: %s\n"
#: eelf32_x86_64.c:8751 eelf_i386.c:8169 eelf_i386_be.c:572
#: eelf_i386_fbsd.c:701 eelf_i386_haiku.c:701 eelf_i386_ldso.c:592
#: eelf_i386_sol2.c:764 eelf_i386_vxworks.c:654 eelf_iamcu.c:632
#: eelf_x86_64.c:8801 eelf_x86_64_cloudabi.c:799 eelf_x86_64_fbsd.c:799
#: eelf_x86_64_haiku.c:799 eelf_x86_64_sol2.c:931
#, c-format
msgid " -z noextern-protected-data Do not treat protected data symbol as external\n"
msgstr " -z noextern-protected-data No trata los símbolos de datos protegidos como externos\n"
#: eelf32_x86_64.c:8753 eelf_i386.c:8171 eelf_i386_be.c:574
#: eelf_i386_fbsd.c:703 eelf_i386_haiku.c:703 eelf_i386_ldso.c:594
#: eelf_i386_sol2.c:766 eelf_i386_vxworks.c:656 eelf_iamcu.c:634
#: eelf_x86_64.c:8803 eelf_x86_64_cloudabi.c:801 eelf_x86_64_fbsd.c:801
#: eelf_x86_64_haiku.c:801 eelf_x86_64_sol2.c:933
#, c-format
msgid " -z indirect-extern-access Enable indirect external access\n"
msgstr " -z indirect-extern-access Activa acceso externo indirecto\n"
#: eelf32_x86_64.c:8755 eelf_i386.c:8173 eelf_i386_be.c:576
#: eelf_i386_fbsd.c:705 eelf_i386_haiku.c:705 eelf_i386_ldso.c:596
#: eelf_i386_sol2.c:768 eelf_i386_vxworks.c:658 eelf_iamcu.c:636
#: eelf_x86_64.c:8805 eelf_x86_64_cloudabi.c:803 eelf_x86_64_fbsd.c:803
#: eelf_x86_64_haiku.c:803 eelf_x86_64_sol2.c:935
#, c-format
msgid " -z noindirect-extern-access Disable indirect external access (default)\n"
msgstr " -z noindirect-extern-access Desactiva acceso externo indirecto (predefinido)\n"
#: eelf32_x86_64.c:8758 eelf32lppc.c:869 eelf32lppclinux.c:869
#: eelf32lppcnto.c:869 eelf32lppcsim.c:869 eelf32ppc.c:869 eelf32ppc_fbsd.c:869
#: eelf32ppchaiku.c:869 eelf32ppclinux.c:869 eelf32ppcnto.c:869
#: eelf32ppcsim.c:869 eelf32ppcvxworks.c:843 eelf32ppcwindiss.c:869
#: eelf64lppc.c:1385 eelf64lppc_fbsd.c:1385 eelf64ppc.c:1385
#: eelf64ppc_fbsd.c:1385 eelf_i386.c:8176 eelf_i386_be.c:579
#: eelf_i386_fbsd.c:708 eelf_i386_haiku.c:708 eelf_i386_ldso.c:599
#: eelf_i386_sol2.c:771 eelf_i386_vxworks.c:661 eelf_iamcu.c:639
#: eelf_x86_64.c:8808 eelf_x86_64_cloudabi.c:806 eelf_x86_64_fbsd.c:806
#: eelf_x86_64_haiku.c:806 eelf_x86_64_sol2.c:938
#, c-format
msgid ""
" -z dynamic-undefined-weak Make undefined weak symbols dynamic\n"
" -z nodynamic-undefined-weak Do not make undefined weak symbols dynamic\n"
msgstr ""
" -z dynamic-undefined-weak Hace dinámicos los símbolos débiles indefinidos\n"
" -z nodynamic-undefined-weak No hace dinámicos los símbolos débiles indefinidos\n"
#: eelf32_x86_64.c:8762 eelf_x86_64.c:8812 eelf_x86_64_cloudabi.c:810
#: eelf_x86_64_fbsd.c:810 eelf_x86_64_haiku.c:810 eelf_x86_64_sol2.c:942
#, c-format
msgid " -z noreloc-overflow Disable relocation overflow check\n"
msgstr ""
" -z noreloc-overflow Desactiva la comprobación de desbordamiento\n"
" por reubicación\n"
#: eelf32_x86_64.c:8765 eelf_i386.c:8180 eelf_i386_be.c:583
#: eelf_i386_fbsd.c:712 eelf_i386_haiku.c:712 eelf_i386_ldso.c:603
#: eelf_i386_sol2.c:775 eelf_i386_vxworks.c:665 eelf_iamcu.c:643
#: eelf_x86_64.c:8815 eelf_x86_64_cloudabi.c:813 eelf_x86_64_fbsd.c:813
#: eelf_x86_64_haiku.c:813 eelf_x86_64_sol2.c:945
#, c-format
msgid " -z call-nop=PADDING Use PADDING as 1-byte NOP for branch\n"
msgstr ""
" -z call-nop=RELLENO Utiliza RELLENO como NOP de 1 byte para\n"
" bifurcación\n"
#: eelf32_x86_64.c:8768 eelf_i386.c:8183 eelf_i386_fbsd.c:715
#: eelf_i386_haiku.c:715 eelf_x86_64.c:8818 eelf_x86_64_cloudabi.c:816
#: eelf_x86_64_fbsd.c:816 eelf_x86_64_haiku.c:816 eelf_x86_64_sol2.c:948
#, c-format
msgid " -z ibtplt Generate IBT-enabled PLT entries\n"
msgstr " -z ibtplt Genera entradas PLT con IBT activado\n"
#: eelf32_x86_64.c:8770 eelf_i386.c:8185 eelf_i386_fbsd.c:717
#: eelf_i386_haiku.c:717 eelf_x86_64.c:8820 eelf_x86_64_cloudabi.c:818
#: eelf_x86_64_fbsd.c:818 eelf_x86_64_haiku.c:818 eelf_x86_64_sol2.c:950
#, c-format
msgid " -z ibt Generate GNU_PROPERTY_X86_FEATURE_1_IBT\n"
msgstr " -z ibt Genera GNU_PROPERTY_X86_FEATURE_1_IBT\n"
#: eelf32_x86_64.c:8772 eelf_i386.c:8187 eelf_i386_fbsd.c:719
#: eelf_i386_haiku.c:719 eelf_x86_64.c:8822 eelf_x86_64_cloudabi.c:820
#: eelf_x86_64_fbsd.c:820 eelf_x86_64_haiku.c:820 eelf_x86_64_sol2.c:952
#, c-format
msgid " -z shstk Generate GNU_PROPERTY_X86_FEATURE_1_SHSTK\n"
msgstr " -z shstk Genera GNU_PROPERTY_X86_FEATURE_1_SHSTK\n"
#: eelf32_x86_64.c:8774 eelf_i386.c:8189 eelf_i386_fbsd.c:721
#: eelf_i386_haiku.c:721 eelf_x86_64.c:8824 eelf_x86_64_cloudabi.c:822
#: eelf_x86_64_fbsd.c:822 eelf_x86_64_haiku.c:822 eelf_x86_64_sol2.c:954
#, c-format
msgid ""
" -z cet-report=[none|warning|error] (default: none)\n"
" Report missing IBT and SHSTK properties\n"
msgstr ""
" -z cet-report=[none|warning|error] (predefinido: none)\n"
" Informa de la falta de las propiedades IBT y SHSTK\n"
#: eelf32_x86_64.c:8778 eelf_i386.c:8193 eelf_i386_fbsd.c:725
#: eelf_i386_haiku.c:725 eelf_x86_64.c:8828 eelf_x86_64_cloudabi.c:826
#: eelf_x86_64_fbsd.c:826 eelf_x86_64_haiku.c:826 eelf_x86_64_sol2.c:958
#, c-format
msgid " -z report-relative-reloc Report relative relocations\n"
msgstr " -z report-relative-reloc Informa de reubicacioens relativas\n"
#: eelf32_x86_64.c:8781 eelf_i386.c:8196 eelf_i386_fbsd.c:728
#: eelf_i386_haiku.c:728 eelf_x86_64.c:8831 eelf_x86_64_cloudabi.c:829
#: eelf_x86_64_fbsd.c:829 eelf_x86_64_haiku.c:829 eelf_x86_64_sol2.c:961
#, c-format
msgid " -z x86-64-{baseline|v[234]} Mark x86-64-{baseline|v[234]} ISA level as needed\n"
msgstr " -z x86-64-{baseline|v[234]} Marca el nivel ISA x86-64-{baseline|v[234]} requerido\n"
#: eelf32_x86_64.c:8784 eelf_i386.c:8199 eelf_i386_fbsd.c:731
#: eelf_i386_haiku.c:731 eelf_x86_64.c:8834 eelf_x86_64_cloudabi.c:832
#: eelf_x86_64_fbsd.c:832 eelf_x86_64_haiku.c:832 eelf_x86_64_sol2.c:964
#, c-format
msgid ""
" -z isa-level-report=[none|all|needed|used] (default: none)\n"
" Report x86-64 ISA level\n"
msgstr ""
" -z isa-level-report=[none|all|needed|used] (predefinido: none)\n"
" Informa del nivel ISA x86-64\n"
#: eelf32_x86_64.c:8789 eelf_x86_64.c:8853 eelf_x86_64_cloudabi.c:851
#: eelf_x86_64_fbsd.c:851 eelf_x86_64_haiku.c:851 eelf_x86_64_sol2.c:983
#, c-format
msgid ""
" -z mark-plt Mark PLT with dynamic tags (default)\n"
" -z nomark-plt Do not mark PLT with dynamic tags\n"
msgstr ""
" -z mark-plt Marca PLT con etiquetas dinámicas (predefinido)\n"
" -z nomark-plt No marca PLT con etiquetas dinámicas\n"
#: eelf32_x86_64.c:8793 eelf_x86_64.c:8857 eelf_x86_64_cloudabi.c:855
#: eelf_x86_64_fbsd.c:855 eelf_x86_64_haiku.c:855 eelf_x86_64_sol2.c:987
#, c-format
msgid ""
" -z mark-plt Mark PLT with dynamic tags\n"
" -z nomark-plt Do not mark PLT with dynamic tags (default)\n"
msgstr ""
" -z mark-plt Marca PLT con etiquetas dinámicas\n"
" -z nomark-plt No marca PLT con etiquetas dinámicas (predefinido)\n"
#: eelf32_x86_64.c:8797 eelf64loongarch.c:619 eelf64lppc.c:1389
#: eelf64lppc_fbsd.c:1389 eelf64ppc.c:1389 eelf64ppc_fbsd.c:1389
#: eelf_i386.c:8203 eelf_i386_fbsd.c:735 eelf_i386_haiku.c:735
#: eelf_x86_64.c:8861 eelf_x86_64_cloudabi.c:859 eelf_x86_64_fbsd.c:859
#: eelf_x86_64_haiku.c:859 eelf_x86_64_sol2.c:991
#, c-format
msgid " -z pack-relative-relocs Pack relative relocations\n"
msgstr " -z pack-relative-relocs Empaqueta reubicaciones relativas\n"
#: eelf32_x86_64.c:8799 eelf64loongarch.c:621 eelf64lppc.c:1391
#: eelf64lppc_fbsd.c:1391 eelf64ppc.c:1391 eelf64ppc_fbsd.c:1391
#: eelf_i386.c:8205 eelf_i386_fbsd.c:737 eelf_i386_haiku.c:737
#: eelf_x86_64.c:8863 eelf_x86_64_cloudabi.c:861 eelf_x86_64_fbsd.c:861
#: eelf_x86_64_haiku.c:861 eelf_x86_64_sol2.c:993
#, c-format
msgid " -z nopack-relative-relocs Do not pack relative relocations (default)\n"
msgstr " -z nopack-relative-relocs No empaqueta reubicaciones relativas (predefinido)\n"
#: eelf32b4300.c:775 eelf32bmip.c:775 eelf32bmipn32.c:789 eelf32bsmip.c:789
#: eelf32btsmip.c:775 eelf32btsmip_fbsd.c:775 eelf32btsmipn32.c:775
#: eelf32btsmipn32_fbsd.c:775 eelf32ebmip.c:775 eelf32ebmipvxworks.c:810
#: eelf32elmip.c:775 eelf32elmipvxworks.c:810 eelf32l4300.c:775
#: eelf32lmip.c:775 eelf32lr5900.c:629 eelf32lr5900n32.c:628 eelf32lsmip.c:775
#: eelf32ltsmip.c:775 eelf32ltsmip_fbsd.c:775 eelf32ltsmipn32.c:775
#: eelf32ltsmipn32_fbsd.c:775 eelf32mipswindiss.c:588 eelf64bmip.c:789
#: eelf64btsmip.c:775 eelf64btsmip_fbsd.c:775 eelf64ltsmip.c:775
#: eelf64ltsmip_fbsd.c:775 eelf_mipsel_haiku.c:775
#, c-format
msgid " --insn32 Only generate 32-bit microMIPS instructions\n"
msgstr " --insn32 Solo genera instrucciones microMIPS de 32 bits\n"
#: eelf32b4300.c:778 eelf32bmip.c:778 eelf32bmipn32.c:792 eelf32bsmip.c:792
#: eelf32btsmip.c:778 eelf32btsmip_fbsd.c:778 eelf32btsmipn32.c:778
#: eelf32btsmipn32_fbsd.c:778 eelf32ebmip.c:778 eelf32ebmipvxworks.c:813
#: eelf32elmip.c:778 eelf32elmipvxworks.c:813 eelf32l4300.c:778
#: eelf32lmip.c:778 eelf32lr5900.c:632 eelf32lr5900n32.c:631 eelf32lsmip.c:778
#: eelf32ltsmip.c:778 eelf32ltsmip_fbsd.c:778 eelf32ltsmipn32.c:778
#: eelf32ltsmipn32_fbsd.c:778 eelf32mipswindiss.c:591 eelf64bmip.c:792
#: eelf64btsmip.c:778 eelf64btsmip_fbsd.c:778 eelf64ltsmip.c:778
#: eelf64ltsmip_fbsd.c:778 eelf_mipsel_haiku.c:778
#, c-format
msgid " --no-insn32 Generate all microMIPS instructions\n"
msgstr " --no-insn32 Genera todas las instrucciones microMIPS\n"
#: eelf32b4300.c:781 eelf32bmip.c:781 eelf32bmipn32.c:795 eelf32bsmip.c:795
#: eelf32btsmip.c:781 eelf32btsmip_fbsd.c:781 eelf32btsmipn32.c:781
#: eelf32btsmipn32_fbsd.c:781 eelf32ebmip.c:781 eelf32ebmipvxworks.c:816
#: eelf32elmip.c:781 eelf32elmipvxworks.c:816 eelf32l4300.c:781
#: eelf32lmip.c:781 eelf32lr5900.c:635 eelf32lr5900n32.c:634 eelf32lsmip.c:781
#: eelf32ltsmip.c:781 eelf32ltsmip_fbsd.c:781 eelf32ltsmipn32.c:781
#: eelf32ltsmipn32_fbsd.c:781 eelf32mipswindiss.c:594 eelf64bmip.c:795
#: eelf64btsmip.c:781 eelf64btsmip_fbsd.c:781 eelf64ltsmip.c:781
#: eelf64ltsmip_fbsd.c:781 eelf_mipsel_haiku.c:781
#, c-format
msgid ""
" --ignore-branch-isa Accept invalid branch relocations requiring\n"
" an ISA mode switch\n"
msgstr ""
" --ignore-branch-isa Acepta las reubicaciones de rama inválidas que\n"
" requieren opción de modo ISA\n"
#: eelf32b4300.c:785 eelf32bmip.c:785 eelf32bmipn32.c:799 eelf32bsmip.c:799
#: eelf32btsmip.c:785 eelf32btsmip_fbsd.c:785 eelf32btsmipn32.c:785
#: eelf32btsmipn32_fbsd.c:785 eelf32ebmip.c:785 eelf32ebmipvxworks.c:820
#: eelf32elmip.c:785 eelf32elmipvxworks.c:820 eelf32l4300.c:785
#: eelf32lmip.c:785 eelf32lr5900.c:639 eelf32lr5900n32.c:638 eelf32lsmip.c:785
#: eelf32ltsmip.c:785 eelf32ltsmip_fbsd.c:785 eelf32ltsmipn32.c:785
#: eelf32ltsmipn32_fbsd.c:785 eelf32mipswindiss.c:598 eelf64bmip.c:799
#: eelf64btsmip.c:785 eelf64btsmip_fbsd.c:785 eelf64ltsmip.c:785
#: eelf64ltsmip_fbsd.c:785 eelf_mipsel_haiku.c:785
#, c-format
msgid ""
" --no-ignore-branch-isa Reject invalid branch relocations requiring\n"
" an ISA mode switch\n"
msgstr ""
" --no-ignore-branch-isa Rechaza las reubicaciones de rama inválidas que\n"
" requieren opción de modo ISA\n"
#: eelf32b4300.c:789 eelf32bmip.c:789 eelf32bmipn32.c:803 eelf32bsmip.c:803
#: eelf32btsmip.c:789 eelf32btsmip_fbsd.c:789 eelf32btsmipn32.c:789
#: eelf32btsmipn32_fbsd.c:789 eelf32ebmip.c:789 eelf32ebmipvxworks.c:824
#: eelf32elmip.c:789 eelf32elmipvxworks.c:824 eelf32l4300.c:789
#: eelf32lmip.c:789 eelf32lr5900.c:643 eelf32lr5900n32.c:642 eelf32lsmip.c:789
#: eelf32ltsmip.c:789 eelf32ltsmip_fbsd.c:789 eelf32ltsmipn32.c:789
#: eelf32ltsmipn32_fbsd.c:789 eelf32mipswindiss.c:602 eelf64bmip.c:803
#: eelf64btsmip.c:789 eelf64btsmip_fbsd.c:789 eelf64ltsmip.c:789
#: eelf64ltsmip_fbsd.c:789 eelf_mipsel_haiku.c:789
#, c-format
msgid " --compact-branches Generate compact branches/jumps for MIPS R6\n"
msgstr " --compact-branches Genera ramas/saltos compactos para MIPS R6\n"
#: eelf32b4300.c:792 eelf32bmip.c:792 eelf32bmipn32.c:806 eelf32bsmip.c:806
#: eelf32btsmip.c:792 eelf32btsmip_fbsd.c:792 eelf32btsmipn32.c:792
#: eelf32btsmipn32_fbsd.c:792 eelf32ebmip.c:792 eelf32ebmipvxworks.c:827
#: eelf32elmip.c:792 eelf32elmipvxworks.c:827 eelf32l4300.c:792
#: eelf32lmip.c:792 eelf32lr5900.c:646 eelf32lr5900n32.c:645 eelf32lsmip.c:792
#: eelf32ltsmip.c:792 eelf32ltsmip_fbsd.c:792 eelf32ltsmipn32.c:792
#: eelf32ltsmipn32_fbsd.c:792 eelf32mipswindiss.c:605 eelf64bmip.c:806
#: eelf64btsmip.c:792 eelf64btsmip_fbsd.c:792 eelf64ltsmip.c:792
#: eelf64ltsmip_fbsd.c:792 eelf_mipsel_haiku.c:792
#, c-format
msgid " --no-compact-branches Generate delay slot branches/jumps for MIPS R6\n"
msgstr " --no-compact-branches Genera ramas/saltos de ranura de retardo para MIPS R6\n"
#: eelf32bfin.c:523 eelf32bfinfd.c:563
#, c-format
msgid " --code-in-l1 Put code in L1\n"
msgstr " --code-in-l1 Pone el código en L1\n"
#: eelf32bfin.c:525 eelf32bfinfd.c:565
#, c-format
msgid " --data-in-l1 Put data in L1\n"
msgstr " --data-in-l1 Pone los datos en L1\n"
#: eelf32briscv.c:641 eelf32briscv_ilp32.c:641 eelf32briscv_ilp32f.c:641
#: eelf32lriscv.c:641 eelf32lriscv_ilp32.c:641 eelf32lriscv_ilp32f.c:641
#: eelf64briscv.c:641 eelf64briscv_lp64.c:641 eelf64briscv_lp64f.c:641
#: eelf64lriscv.c:641 eelf64lriscv_lp64.c:641 eelf64lriscv_lp64f.c:641
#, c-format
msgid " --relax-gp Perform GP relaxation\n"
msgstr " --relax-gp Realiza relajación GP\n"
#: eelf32briscv.c:642 eelf32briscv_ilp32.c:642 eelf32briscv_ilp32f.c:642
#: eelf32lriscv.c:642 eelf32lriscv_ilp32.c:642 eelf32lriscv_ilp32f.c:642
#: eelf64briscv.c:642 eelf64briscv_lp64.c:642 eelf64briscv_lp64f.c:642
#: eelf64lriscv.c:642 eelf64lriscv_lp64.c:642 eelf64lriscv_lp64f.c:642
#, c-format
msgid " --no-relax-gp Don't perform GP relaxation\n"
msgstr " --no-relax-gp No realiza relajación GP\n"
#: eelf32briscv.c:643 eelf32briscv_ilp32.c:643 eelf32briscv_ilp32f.c:643
#: eelf32lriscv.c:643 eelf32lriscv_ilp32.c:643 eelf32lriscv_ilp32f.c:643
#: eelf64briscv.c:643 eelf64briscv_lp64.c:643 eelf64briscv_lp64f.c:643
#: eelf64lriscv.c:643 eelf64lriscv_lp64.c:643 eelf64lriscv_lp64f.c:643
#, c-format
msgid " --check-uleb128 Check if SUB_ULEB128 has non-zero addend\n"
msgstr " --check-uleb128 Comprueba si SUB_ULEB128 tiene adenda distinta de cero\n"
#: eelf32briscv.c:644 eelf32briscv_ilp32.c:644 eelf32briscv_ilp32f.c:644
#: eelf32lriscv.c:644 eelf32lriscv_ilp32.c:644 eelf32lriscv_ilp32f.c:644
#: eelf64briscv.c:644 eelf64briscv_lp64.c:644 eelf64briscv_lp64f.c:644
#: eelf64lriscv.c:644 eelf64lriscv_lp64.c:644 eelf64lriscv_lp64f.c:644
#, c-format
msgid " --no-check-uleb128 Don't check if SUB_ULEB128 has non-zero addend\n"
msgstr " --no-check-uleb128 No comprueba si SUB_ULEB128 tiene adenda distinta de cero\n"
#: eelf32cr16.c:88
msgid "%P: %pB: all input objects must be COFF or ELF for --embedded-relocs\n"
msgstr "%P: %pB: todos los objetos de entrada deben ser COFF o ELF para --embedded-relocs\n"
#: eelf32cr16.c:112 em68kelf.c:116 em68kelfnbsd.c:116
msgid "%P: %pB: can not create .emreloc section: %E\n"
msgstr "%P: %pB: no se puede crear la sección .emreloc: %E\n"
#: eelf32cr16.c:131 em68kelf.c:137 em68kelfnbsd.c:137
msgid "%X%P: %pB: section %s has relocs; can not use --embedded-relocs\n"
msgstr "%X%P: %pB: la sección %s tiene reubicaciones; no se puede utilizar --embedded-relocs\n"
#: eelf32cr16.c:187 em68kelf.c:180 em68kelfnbsd.c:180
msgid "%X%P: %pB: can not create runtime reloc information: %E\n"
msgstr "%X%P: %pB: no se puede crear información de reubicación para tiempo de ejecución: %E\n"
#: eelf32cr16.c:190 em68kelf.c:184 em68kelfnbsd.c:184
msgid "%X%P: %pB: can not create runtime reloc information: %s\n"
msgstr "%X%P: %pB: no se puede crear información de reubicación para tiempo de ejecución: %s\n"
#: eelf32kvx.c:64 eelf64kvx.c:64
msgid ":%P: -pie not supported\n"
msgstr ":%P: no se admite -pie\n"
#: eelf32kvx.c:316 eelf64kvx.c:316 eelf64kvx_linux.c:314
msgid "%P: can not create BFD %E\n"
msgstr "%P: no se puede crear BFD %E\n"
#: eelf32lppc.c:99 eelf32lppclinux.c:99 eelf32lppcnto.c:99 eelf32lppcsim.c:99
#: eelf32ppc.c:99 eelf32ppc_fbsd.c:99 eelf32ppchaiku.c:99 eelf32ppclinux.c:99
#: eelf32ppcnto.c:99 eelf32ppcsim.c:99 eelf32ppcwindiss.c:99
msgid "%X%P: select_plt_layout problem %E\n"
msgstr "%X%P: select_plt_layout problema %E\n"
#: eelf32lppc.c:163 eelf32lppclinux.c:163 eelf32lppcnto.c:163
#: eelf32lppcsim.c:163 eelf32ppc.c:163 eelf32ppc_fbsd.c:163
#: eelf32ppchaiku.c:163 eelf32ppclinux.c:163 eelf32ppcnto.c:163
#: eelf32ppcsim.c:163 eelf32ppcvxworks.c:108 eelf32ppcwindiss.c:163
#: eelf64lppc.c:324 eelf64lppc_fbsd.c:324 eelf64ppc.c:324 eelf64ppc_fbsd.c:324
msgid "%X%P: inline PLT: %E\n"
msgstr "%X%P: PLT en línea: %E\n"
#: eelf32lppc.c:171 eelf32lppclinux.c:171 eelf32lppcnto.c:171
#: eelf32lppcsim.c:171 eelf32ppc.c:171 eelf32ppc_fbsd.c:171
#: eelf32ppchaiku.c:171 eelf32ppclinux.c:171 eelf32ppcnto.c:171
#: eelf32ppcsim.c:171 eelf32ppcvxworks.c:116 eelf32ppcwindiss.c:171
#: eelf64lppc.c:328 eelf64lppc.c:347 eelf64lppc_fbsd.c:328
#: eelf64lppc_fbsd.c:347 eelf64ppc.c:328 eelf64ppc.c:347 eelf64ppc_fbsd.c:328
#: eelf64ppc_fbsd.c:347
msgid "%X%P: TLS problem %E\n"
msgstr "%X%P: TLS problema %E\n"
#: eelf32lppc.c:258 eelf32lppclinux.c:258 eelf32lppcnto.c:258
#: eelf32lppcsim.c:258 eelf32ppc.c:258 eelf32ppc_fbsd.c:258
#: eelf32ppchaiku.c:258 eelf32ppclinux.c:258 eelf32ppcnto.c:258
#: eelf32ppcsim.c:258 eelf32ppcvxworks.c:203 eelf32ppcwindiss.c:258
msgid "%X%P: ppc_finish_symbols problem %E\n"
msgstr "%X%P: ppc_finish_symbols problema %E\n"
#: eelf32lppc.c:810 eelf32lppclinux.c:810 eelf32lppcnto.c:810
#: eelf32lppcsim.c:810 eelf32ppc.c:810 eelf32ppc_fbsd.c:810
#: eelf32ppchaiku.c:810 eelf32ppclinux.c:810 eelf32ppcnto.c:810
#: eelf32ppcsim.c:810 eelf32ppcvxworks.c:780 eelf32ppcwindiss.c:810
#: eelf64lppc.c:1252 eelf64lppc_fbsd.c:1252 eelf64ppc.c:1252
#: eelf64ppc_fbsd.c:1252
msgid "%P: invalid --plt-align `%s'\n"
msgstr "%P: --plt-align no válido `%s'\n"
#: eelf32lppc.c:843 eelf32lppclinux.c:843 eelf32lppcnto.c:843
#: eelf32lppcsim.c:843 eelf32ppc.c:843 eelf32ppc_fbsd.c:843
#: eelf32ppchaiku.c:843 eelf32ppclinux.c:843 eelf32ppcnto.c:843
#: eelf32ppcsim.c:843 eelf32ppcvxworks.c:813 eelf32ppcwindiss.c:843
msgid "%P: invalid pagesize `%s'\n"
msgstr "%P: tamaño de página no válido `%s'\n"
#: eelf32lppc.c:873 eelf32lppclinux.c:873 eelf32lppcnto.c:873
#: eelf32lppcsim.c:873 eelf32ppc.c:873 eelf32ppc_fbsd.c:873
#: eelf32ppchaiku.c:873 eelf32ppclinux.c:873 eelf32ppcnto.c:873
#: eelf32ppcsim.c:873 eelf32ppcvxworks.c:847 eelf32ppcwindiss.c:873
#: eelf64lppc.c:1437 eelf64lppc_fbsd.c:1437 eelf64ppc.c:1437
#: eelf64ppc_fbsd.c:1437
#, c-format
msgid " --emit-stub-syms Label linker stubs with a symbol\n"
msgstr " --emit-stub-syms Etiqueta los stubs del enlazador con un símbolo\n"
#: eelf32lppc.c:876 eelf32lppclinux.c:876 eelf32lppcnto.c:876
#: eelf32lppcsim.c:876 eelf32ppc.c:876 eelf32ppc_fbsd.c:876
#: eelf32ppchaiku.c:876 eelf32ppclinux.c:876 eelf32ppcnto.c:876
#: eelf32ppcsim.c:876 eelf32ppcvxworks.c:850 eelf32ppcwindiss.c:876
#: eelf64lppc.c:1440 eelf64lppc_fbsd.c:1440 eelf64ppc.c:1440
#: eelf64ppc_fbsd.c:1440
#, c-format
msgid " --no-emit-stub-syms Don't label linker stubs with a symbol\n"
msgstr ""
" --no-emit-stub-syms No etiqueta los stubs del enlazador con un\n"
" símbolo\n"
#: eelf32lppc.c:879 eelf32lppclinux.c:879 eelf32lppcnto.c:879
#: eelf32lppcsim.c:879 eelf32ppc.c:879 eelf32ppc_fbsd.c:879
#: eelf32ppchaiku.c:879 eelf32ppclinux.c:879 eelf32ppcnto.c:879
#: eelf32ppcsim.c:879 eelf32ppcvxworks.c:853 eelf32ppcwindiss.c:879
#: eelf64lppc.c:1460 eelf64lppc_fbsd.c:1460 eelf64ppc.c:1460
#: eelf64ppc_fbsd.c:1460
#, c-format
msgid " --no-tls-optimize Don't try to optimize TLS accesses\n"
msgstr " --no-tls-optimize No trata de optimizar los accesos TLS\n"
#: eelf32lppc.c:882 eelf32lppclinux.c:882 eelf32lppcnto.c:882
#: eelf32lppcsim.c:882 eelf32ppc.c:882 eelf32ppc_fbsd.c:882
#: eelf32ppchaiku.c:882 eelf32ppclinux.c:882 eelf32ppcnto.c:882
#: eelf32ppcsim.c:882 eelf32ppcvxworks.c:856 eelf32ppcwindiss.c:882
#: eelf64lppc.c:1466 eelf64lppc_fbsd.c:1466 eelf64ppc.c:1466
#: eelf64ppc_fbsd.c:1466
#, c-format
msgid " --no-tls-get-addr-optimize Don't use a special __tls_get_addr call\n"
msgstr " --no-tls-get-addr-optimize No utiliza una llamada __tls_get_addr especial\n"
#: eelf32lppc.c:885 eelf32lppclinux.c:885 eelf32lppcnto.c:885
#: eelf32lppcsim.c:885 eelf32ppc.c:885 eelf32ppc_fbsd.c:885
#: eelf32ppchaiku.c:885 eelf32ppclinux.c:885 eelf32ppcnto.c:885
#: eelf32ppcsim.c:885 eelf32ppcwindiss.c:885
#, c-format
msgid " --secure-plt Use new-style PLT if possible\n"
msgstr " --secure-plt Utiliza el nuevo estilo PLT si es posible\n"
#: eelf32lppc.c:888 eelf32lppclinux.c:888 eelf32lppcnto.c:888
#: eelf32lppcsim.c:888 eelf32ppc.c:888 eelf32ppc_fbsd.c:888
#: eelf32ppchaiku.c:888 eelf32ppclinux.c:888 eelf32ppcnto.c:888
#: eelf32ppcsim.c:888 eelf32ppcwindiss.c:888
#, c-format
msgid " --bss-plt Force old-style BSS PLT\n"
msgstr " --bss-plt Fuerza BSS PLT al viejo estilo\n"
#: eelf32lppc.c:891 eelf32lppclinux.c:891 eelf32lppcnto.c:891
#: eelf32lppcsim.c:891 eelf32ppc.c:891 eelf32ppc_fbsd.c:891
#: eelf32ppchaiku.c:891 eelf32ppclinux.c:891 eelf32ppcnto.c:891
#: eelf32ppcsim.c:891 eelf32ppcwindiss.c:891
#, c-format
msgid " --plt-align Align PLT call stubs to fit cache lines\n"
msgstr ""
" --plt-align Alinea stubs de llamadas PLT para que quepan\n"
" en las líneas de caché\n"
#: eelf32lppc.c:894 eelf32lppclinux.c:894 eelf32lppcnto.c:894
#: eelf32lppcsim.c:894 eelf32ppc.c:894 eelf32ppc_fbsd.c:894
#: eelf32ppchaiku.c:894 eelf32ppclinux.c:894 eelf32ppcnto.c:894
#: eelf32ppcsim.c:894 eelf32ppcwindiss.c:894 eelf64lppc.c:1419
#: eelf64lppc_fbsd.c:1419 eelf64ppc.c:1419 eelf64ppc_fbsd.c:1419
#, c-format
msgid " --no-plt-align Dont't align individual PLT call stubs\n"
msgstr " --no-plt-align No alinea stubs de llamadas PLT individuales\n"
#: eelf32lppc.c:897 eelf32lppclinux.c:897 eelf32lppcnto.c:897
#: eelf32lppcsim.c:897 eelf32ppc.c:897 eelf32ppc_fbsd.c:897
#: eelf32ppchaiku.c:897 eelf32ppclinux.c:897 eelf32ppcnto.c:897
#: eelf32ppcsim.c:897 eelf32ppcwindiss.c:897 eelf64lppc.c:1478
#: eelf64lppc_fbsd.c:1478 eelf64ppc.c:1478 eelf64ppc_fbsd.c:1478
#, c-format
msgid " --no-inline-optimize Don't convert inline PLT to direct calls\n"
msgstr " --no-inline-optimize No convierte PLT en línea en llamadas directas\n"
#: eelf32lppc.c:900 eelf32lppclinux.c:900 eelf32lppcnto.c:900
#: eelf32lppcsim.c:900 eelf32ppc.c:900 eelf32ppc_fbsd.c:900
#: eelf32ppchaiku.c:900 eelf32ppclinux.c:900 eelf32ppcnto.c:900
#: eelf32ppcsim.c:900 eelf32ppcwindiss.c:900
#, c-format
msgid " --sdata-got Force GOT location just before .sdata\n"
msgstr " --sdata-got Fuerza la ubicación de GOT justo antes de .sdata\n"
#: eelf32lppc.c:903 eelf32lppclinux.c:903 eelf32lppcnto.c:903
#: eelf32lppcsim.c:903 eelf32ppc.c:903 eelf32ppc_fbsd.c:903
#: eelf32ppchaiku.c:903 eelf32ppclinux.c:903 eelf32ppcnto.c:903
#: eelf32ppcsim.c:903 eelf32ppcvxworks.c:859 eelf32ppcwindiss.c:903
#, c-format
msgid ""
" --ppc476-workaround [=pagesize]\n"
" Avoid a cache bug on ppc476\n"
msgstr ""
" --ppc476-workaround [=tamañopágina]\n"
" Evita un error de caché en ppc476\n"
#: eelf32lppc.c:907 eelf32lppclinux.c:907 eelf32lppcnto.c:907
#: eelf32lppcsim.c:907 eelf32ppc.c:907 eelf32ppc_fbsd.c:907
#: eelf32ppchaiku.c:907 eelf32ppclinux.c:907 eelf32ppcnto.c:907
#: eelf32ppcsim.c:907 eelf32ppcvxworks.c:863 eelf32ppcwindiss.c:907
#, c-format
msgid " --no-ppc476-workaround Disable workaround\n"
msgstr " --no-ppc476-workaround Desactiva la solución alternativa\n"
#: eelf32lppc.c:910 eelf32lppclinux.c:910 eelf32lppcnto.c:910
#: eelf32lppcsim.c:910 eelf32ppc.c:910 eelf32ppc_fbsd.c:910
#: eelf32ppchaiku.c:910 eelf32ppclinux.c:910 eelf32ppcnto.c:910
#: eelf32ppcsim.c:910 eelf32ppcvxworks.c:866 eelf32ppcwindiss.c:910
#, c-format
msgid " --no-pic-fixup Don't edit non-pic to pic\n"
msgstr " --no-pic-fixup No edita non-pic para pic\n"
#: eelf32lppc.c:913 eelf32lppclinux.c:913 eelf32lppcnto.c:913
#: eelf32lppcsim.c:913 eelf32ppc.c:913 eelf32ppc_fbsd.c:913
#: eelf32ppchaiku.c:913 eelf32ppclinux.c:913 eelf32ppcnto.c:913
#: eelf32ppcsim.c:913 eelf32ppcvxworks.c:869 eelf32ppcwindiss.c:913
#, c-format
msgid " --vle-reloc-fixup Correct old object file 16A/16D relocation\n"
msgstr " --vle-reloc-fixup Corrige reubicaciones de ficheros objeto antiguos 16A/16D\n"
#: eelf32mcore.c:369
#, c-format
msgid " --base_file <basefile> Generate a base file for relocatable DLLs\n"
msgstr " --base_file <ficherobase> Genera un fichero base para DLLs reubicables\n"
#: eelf32metag.c:802 eelf64lppc.c:1394 eelf64lppc_fbsd.c:1394 eelf64ppc.c:1394
#: eelf64ppc_fbsd.c:1394 ehppaelf.c:631 ehppalinux.c:843 ehppanbsd.c:843
#: ehppaobsd.c:843
#, c-format
msgid ""
" --stub-group-size=N Maximum size of a group of input sections that\n"
" can be handled by one stub section. A negative\n"
" value locates all stubs before their branches\n"
" (with a group size of -N), while a positive\n"
" value allows two groups of input sections, one\n"
" before, and one after each stub section.\n"
" Values of +/-1 indicate the linker should\n"
" choose suitable defaults.\n"
msgstr ""
" --stub-group-size=N Tamaño máximo de un grupo de secciones de entrada\n"
" que puede manejarse en una sección stub. Un\n"
" valor negativo coloca todos los stubs después\n"
" de sus ramas (con tamaño de grupo -N), mientras\n"
" que un valor positivo permite dos grupos de\n"
" secciones de entrada, una delante y otra detrás\n"
" de cada sección stub. Los valores +/-1 indican\n"
" que el enlazador es el que debería escoger los\n"
" valores adecuados.\n"
#: eelf32rx.c:398
#, c-format
msgid ""
" --no-flag-mismatch-warnings Don't warn about objects with incompatible\n"
" endian or dsp settings\n"
msgstr ""
" --no-flag-mismatch-warnings No advierte de objetos con configuraciones de\n"
" endian o dsp incompatibles\n"
#: eelf32rx.c:400
#, c-format
msgid ""
" --flag-mismatch-warnings Warn about objects with incompatible\n"
" endian, dsp or ABI settings\n"
msgstr ""
" --flag-mismatch-warnings Advierte de objetos con configuraciones de\n"
" endian, dsp o ABI incompatibles\n"
#: eelf32rx.c:402
#, c-format
msgid ""
" --ignore-lma Ignore segment LMAs [default]\n"
" (for Renesas Tools compatibility)\n"
msgstr ""
" --ignore-lma Hace caso omiso de LMAs\n"
" [comportamiento predefinido]\n"
" (para compatibilidad con Renesas Tools)\n"
#: eelf32rx.c:404
#, c-format
msgid " --no-ignore-lma Don't ignore segment LMAs\n"
msgstr " --no-ignore-lma No ignora los LMAs de segmento\n"
#: eelf32xtensa.c:147
msgid "file already has property tables"
msgstr "el fichero ya tiene tablas de propiedades"
#: eelf32xtensa.c:157
msgid "failed to read section contents"
msgstr "fallo al leer el contenido de la sección"
#: eelf32xtensa.c:169
msgid "could not create new section"
msgstr "no se ha podido crear la nueva sección"
#: eelf32xtensa.c:185
msgid "could not allocate section contents"
msgstr "no se ha podido asignar el contenido de la sección"
#: eelf32xtensa.c:204
msgid "out of memory"
msgstr "sin memoria"
#: eelf32xtensa.c:301
msgid "%P: warning: failed to convert %s table in %pB (%s); subsequent disassembly may be incomplete\n"
msgstr "%P: aviso: no se ha podido convertir la tabla de %s en %pB (%s); el desensamblaje subsiguiente puede estar incompleto\n"
#: eelf32xtensa.c:421
msgid "%P: %pB: cannot read contents of section %pA\n"
msgstr "%P: %pB: no se puede leer el contenido de la sección %pA\n"
#: eelf32xtensa.c:432
msgid "%P: %pB: warning: incompatible Xtensa configuration (%s)\n"
msgstr "%P: %pB: aviso: configuración Xtensa incompatible (%s)\n"
#: eelf32xtensa.c:436
msgid "%P: %pB: warning: cannot parse .xtensa.info section\n"
msgstr "%P: %pB: aviso: no se puede analizar la sección .xtensa.info\n"
#: eelf32xtensa.c:462
msgid "%P: little endian output does not match Xtensa configuration\n"
msgstr "%P: la salida «little endian» no concuerda con la configuración Xtensa\n"
#: eelf32xtensa.c:468
msgid "%P: big endian output does not match Xtensa configuration\n"
msgstr "%P: la salida «big endian» no concuerda con la configuración Xtensa\n"
#: eelf32xtensa.c:487
msgid "%P: cross-endian linking for %pB not supported\n"
msgstr "%P: no se admite el enlazamiento con «endian» cruzado para %pB\n"
#: eelf32xtensa.c:518
msgid "%P: failed to create .xtensa.info section\n"
msgstr "%P: fallo al crear la sección .xtensa.info\n"
#: eelf32xtensa.c:1257
msgid "%P: Relaxation not supported with --enable-non-contiguous-regions.\n"
msgstr "%P: No se admite relajar con --enable-non-contiguous-regions.\n"
#: eelf32xtensa.c:2466
#, c-format
msgid ""
" --size-opt When relaxing longcalls, prefer size\n"
" optimization over branch target alignment\n"
msgstr ""
" --size-opt Cuando relaja llamadas largas, optimiza antes\n"
" tamaño que alineamiento de objetivo de rama\n"
#: eelf32xtensa.c:2469
#, c-format
msgid " --abi-windowed Choose windowed ABI for the output object\n"
msgstr " --abi-windowed Elige ABI de ventana para el objeto de salida\n"
#: eelf32xtensa.c:2471
#, c-format
msgid " --abi-call0 Choose call0 ABI for the output object\n"
msgstr " --abi-call0 Elige ABI call0 para el objeto de salida\n"
#: eelf32z80.c:70 ez80.c:59
msgid "%P: %pB: Instruction sets of object files incompatible\n"
msgstr "%P: %pB: Conjuntos de instrucciones de los ficheros objeto incompatibles\n"
#: eelf64_ia64.c:575 eelf64_ia64_fbsd.c:575
#, c-format
msgid " --itanium Generate code for Intel Itanium processor\n"
msgstr " --itanium Genera código para el procesador Intel Itanium\n"
#: eelf64_s390.c:661
#, c-format
msgid " --s390-pgste Tell the kernel to allocate 4k page tables\n"
msgstr " --s390-pgste Pide al kernel que asigne tablas de páginas de 4k\n"
#: eelf64alpha.c:618 eelf64alpha_fbsd.c:618 eelf64alpha_nbsd.c:618
#, c-format
msgid " --secureplt Force PLT in text segment\n"
msgstr " --secureplt Fuerza PLT en el segmento de texto\n"
#: eelf64alpha.c:620 eelf64alpha_fbsd.c:620 eelf64alpha_nbsd.c:620
#, c-format
msgid " --no-secureplt Force PLT in data segment\n"
msgstr " --no-secureplt Fuerza PLT en el segmento de datos\n"
#: eelf64lppc.c:316 eelf64lppc.c:356 eelf64lppc_fbsd.c:316
#: eelf64lppc_fbsd.c:356 eelf64ppc.c:316 eelf64ppc.c:356 eelf64ppc_fbsd.c:316
#: eelf64ppc_fbsd.c:356
msgid "%X%P: can not edit %s: %E\n"
msgstr "%X%P: no se puede editar%s: %E\n"
#: eelf64lppc.c:519 eelf64lppc_fbsd.c:519 eelf64ppc.c:519 eelf64ppc_fbsd.c:519
msgid "%X%P: linker script separates .got and .toc\n"
msgstr "%X%P: el «script» de enlazamiento separa .got y .toc\n"
#: eelf64lppc.c:580 eelf64lppc_fbsd.c:580 eelf64ppc.c:580 eelf64ppc_fbsd.c:580
msgid "%P: .init/.fini fragments use differing TOC pointers\n"
msgstr "%P: los fragmentos .init/.fini utilizan punteros TOC que difieren\n"
#: eelf64lppc.c:1281 eelf64lppc_fbsd.c:1281 eelf64ppc.c:1281
#: eelf64ppc_fbsd.c:1281
msgid "%P: invalid --power10-stubs argument `%s'\n"
msgstr "%P: argumento de --power10-stubs no válido `%s'\n"
#: eelf64lppc.c:1404 eelf64ppc.c:1404
#, c-format
msgid " --plt-static-chain PLT call stubs should load r11 (default)\n"
msgstr " --plt-static-chain Los stubs de llamadas PLT deberían cargar r11 (lo predefinido)\n"
#: eelf64lppc.c:1407 eelf64ppc.c:1407
#, c-format
msgid " --no-plt-static-chain PLT call stubs should not load r11\n"
msgstr " --no-plt-static-chain Los stubs de llamadas PLT no deberían cargar r11\n"
#: eelf64lppc.c:1410 eelf64lppc_fbsd.c:1410 eelf64ppc.c:1410
#: eelf64ppc_fbsd.c:1410
#, c-format
msgid " --plt-thread-safe PLT call stubs with load-load barrier\n"
msgstr " --plt-thread-safe Stubs de llamadas PLT con barrera carga-carga\n"
#: eelf64lppc.c:1413 eelf64lppc_fbsd.c:1413 eelf64ppc.c:1413
#: eelf64ppc_fbsd.c:1413
#, c-format
msgid " --no-plt-thread-safe PLT call stubs without barrier\n"
msgstr " --no-plt-thread-safe Stubs de llamadas PLT sin barrera\n"
#: eelf64lppc.c:1416 eelf64lppc_fbsd.c:1416 eelf64ppc.c:1416
#: eelf64ppc_fbsd.c:1416
#, c-format
msgid " --plt-align [=<align>] Align PLT call stubs to fit cache lines\n"
msgstr ""
" --plt-align [=<alineamiento>]\n"
" Alinea los stubs de llamadas PLT para que quepan\n"
" en líneas de caché\n"
#: eelf64lppc.c:1422 eelf64lppc_fbsd.c:1422 eelf64ppc.c:1422
#: eelf64ppc_fbsd.c:1422
#, c-format
msgid " --plt-localentry Optimize calls to ELFv2 localentry:0 functions\n"
msgstr " --plt-localentry Optimiza las llamadas a funciones ELFv2 localentry:0\n"
#: eelf64lppc.c:1425 eelf64lppc_fbsd.c:1425 eelf64ppc.c:1425
#: eelf64ppc_fbsd.c:1425
#, c-format
msgid " --no-plt-localentry Don't optimize ELFv2 calls\n"
msgstr " --no-plt-localentry No optimiza las llamadas ELFv2\n"
#: eelf64lppc.c:1428 eelf64lppc_fbsd.c:1428 eelf64ppc.c:1428
#: eelf64ppc_fbsd.c:1428
#, c-format
msgid " --power10-stubs [=auto] Use Power10 PLT call stubs (default auto)\n"
msgstr " --power10-stubs [=auto] Utiliza stubs PLT Power10 (predefinido: auto)\n"
#: eelf64lppc.c:1431 eelf64lppc_fbsd.c:1431 eelf64ppc.c:1431
#: eelf64ppc_fbsd.c:1431
#, c-format
msgid " --no-pcrel-optimize Don't perform R_PPC64_PCREL_OPT optimization\n"
msgstr " --no-pcrel-optimize No efectúa optimización R_PPC64_PCREL_OPT\n"
#: eelf64lppc.c:1434 eelf64lppc_fbsd.c:1434 eelf64ppc.c:1434
#: eelf64ppc_fbsd.c:1434
#, c-format
msgid " --no-power10-stubs Don't use Power10 PLT call stubs\n"
msgstr " --no-power10-stubs No utiliza stubs de llamadas PLT Power10\n"
#: eelf64lppc.c:1443 eelf64lppc_fbsd.c:1443 eelf64ppc.c:1443
#: eelf64ppc_fbsd.c:1443
#, c-format
msgid ""
" --dotsyms For every version pattern \"foo\" in a version\n"
" script, add \".foo\" so that function code\n"
" symbols are treated the same as function\n"
" descriptor symbols. Defaults to on.\n"
msgstr ""
" --dotsyms Para cada patrón de versión \"foo\" en un «script»\n"
" de versión, añade \".foo\" de modo que a los\n"
" símbolos del código de función se los trate\n"
" igual que a los símbolos de los descriptores de\n"
" función. Activo por omisión.\n"
#: eelf64lppc.c:1449 eelf64lppc_fbsd.c:1449 eelf64ppc.c:1449
#: eelf64ppc_fbsd.c:1449
#, c-format
msgid " --no-dotsyms Don't do anything special in version scripts\n"
msgstr " --no-dotsyms No hace nada especial en los «scripts» de versión\n"
#: eelf64lppc.c:1452 eelf64lppc_fbsd.c:1452 eelf64ppc.c:1452
#: eelf64ppc_fbsd.c:1452
#, c-format
msgid ""
" --save-restore-funcs Provide register save and restore routines used\n"
" by gcc -Os code. Defaults to on for normal\n"
" final link, off for ld -r.\n"
msgstr ""
" --save-restore-funcs Proporciona rutinas para guardar restaurar registros\n"
" utilizadas por código gcc -Os. Por defecto, activado\n"
" enlazado final normal, desactivado para ld -r.\n"
#: eelf64lppc.c:1457 eelf64lppc_fbsd.c:1457 eelf64ppc.c:1457
#: eelf64ppc_fbsd.c:1457
#, c-format
msgid " --no-save-restore-funcs Don't provide these routines\n"
msgstr " --no-save-restore-funcs No proporciona estas rutinas\n"
#: eelf64lppc.c:1463 eelf64lppc_fbsd.c:1463 eelf64ppc.c:1463
#: eelf64ppc_fbsd.c:1463
#, c-format
msgid " --tls-get-addr-optimize Force use of special __tls_get_addr call\n"
msgstr " --tls-get-addr-optimize Fuerza el uso de la llamada especial __tls_get_addr\n"
#: eelf64lppc.c:1469 eelf64lppc_fbsd.c:1469 eelf64ppc.c:1469
#: eelf64ppc_fbsd.c:1469
#, c-format
msgid " --tls-get-addr-regsave Force register save __tls_get_addr stub\n"
msgstr " --tls-get-addr-regsave Fuerza el uso del stub de salvado de registro __tls_get_addr\n"
#: eelf64lppc.c:1472 eelf64lppc_fbsd.c:1472 eelf64ppc.c:1472
#: eelf64ppc_fbsd.c:1472
#, c-format
msgid " --no-tls-get-addr-regsave Don't use register save __tls_get_addr stub\n"
msgstr " --no-tls-get-addr-regsave No utiliza el stub de salvado de registro __tls_get_addr\n"
#: eelf64lppc.c:1475 eelf64lppc_fbsd.c:1475 eelf64ppc.c:1475
#: eelf64ppc_fbsd.c:1475
#, c-format
msgid " --no-opd-optimize Don't optimize the OPD section\n"
msgstr " --no-opd-optimize No optimiza la sección OPD\n"
#: eelf64lppc.c:1481 eelf64lppc_fbsd.c:1481 eelf64ppc.c:1481
#: eelf64ppc_fbsd.c:1481
#, c-format
msgid " --no-toc-optimize Don't optimize the TOC section\n"
msgstr " --no-toc-optimize No optimiza la sección TOC\n"
#: eelf64lppc.c:1484 eelf64lppc_fbsd.c:1484 eelf64ppc.c:1484
#: eelf64ppc_fbsd.c:1484
#, c-format
msgid " --no-multi-toc Disallow automatic multiple toc sections\n"
msgstr " --no-multi-toc Deniega secciones toc múltiples automáticas\n"
#: eelf64lppc.c:1487 eelf64lppc_fbsd.c:1487 eelf64ppc.c:1487
#: eelf64ppc_fbsd.c:1487
#, c-format
msgid " --no-toc-sort Don't sort TOC and GOT sections\n"
msgstr ""
" --no-toc-sort No ordena las secciones TOC y GOT\n"
" -z nocombreloc No funde las reubicaciones dinámicas en una\n"
" sola sección\n"
#: eelf64lppc.c:1490 eelf64lppc_fbsd.c:1490 eelf64ppc.c:1490
#: eelf64ppc_fbsd.c:1490
#, c-format
msgid ""
" --non-overlapping-opd Canonicalize .opd, so that there are no\n"
" overlapping .opd entries\n"
msgstr ""
" --non-overlapping-opd Canoniza .opd de forma que no haya solapamiento\n"
" de entradas .opd\n"
#: eelf64lppc_fbsd.c:1404 eelf64ppc_fbsd.c:1404
#, c-format
msgid " --plt-static-chain PLT call stubs should load r111\n"
msgstr " --plt-static-chain Los stubs de llamadas PLT deberían cargar r11\n"
#: eelf64lppc_fbsd.c:1407 eelf64ppc_fbsd.c:1407
#, c-format
msgid " --no-plt-static-chain PLT call stubs should not load r11 (default)\n"
msgstr " --no-plt-static-chain Los stubs de llamadas PLT no deberían cargar r11 (lo predefinido)\n"
#: eelf64mmix.c:84 emmo.c:84
msgid "%X%P: internal problems setting up section %s"
msgstr "%X%P: problemas internos configurando la sección %s"
#: eelf64mmix.c:128 emmo.c:128
msgid "%X%P: too many global registers: %u, max 223\n"
msgstr "%X%P: demasiados registros globales: %u, máx 223\n"
#: eelf64mmix.c:144 emmo.c:144
msgid "%P: can't finalize linker-allocated global registers\n"
msgstr "%P: no se pueden finalizar los registros globales asignados por el enlazador\n"
#: eelf_x86_64.c:8719 eelf_x86_64_cloudabi.c:717 eelf_x86_64_fbsd.c:717
#: eelf_x86_64_haiku.c:717 eelf_x86_64_sol2.c:849
msgid "%P: invalid option for -z lam-u48-report=: %s\n"
msgstr "%P: opción no válida para -z lam-u48-report=: %s\n"
#: eelf_x86_64.c:8733 eelf_x86_64_cloudabi.c:731 eelf_x86_64_fbsd.c:731
#: eelf_x86_64_haiku.c:731 eelf_x86_64_sol2.c:863
msgid "%P: invalid option for -z lam-u57-report=: %s\n"
msgstr "%P: opción no válida para -z lam-u57-report=: %s\n"
#: eelf_x86_64.c:8754 eelf_x86_64_cloudabi.c:752 eelf_x86_64_fbsd.c:752
#: eelf_x86_64_haiku.c:752 eelf_x86_64_sol2.c:884
msgid "%P: invalid option for -z lam-report=: %s\n"
msgstr "%P: opción no válida para -z lam-report=: %s\n"
#: eelf_x86_64.c:8838 eelf_x86_64_cloudabi.c:836 eelf_x86_64_fbsd.c:836
#: eelf_x86_64_haiku.c:836 eelf_x86_64_sol2.c:968
#, c-format
msgid " -z lam-u48 Generate GNU_PROPERTY_X86_FEATURE_1_LAM_U48\n"
msgstr " -z lam-u48 Genera GNU_PROPERTY_X86_FEATURE_1_LAM_U48\n"
#: eelf_x86_64.c:8840 eelf_x86_64_cloudabi.c:838 eelf_x86_64_fbsd.c:838
#: eelf_x86_64_haiku.c:838 eelf_x86_64_sol2.c:970
#, c-format
msgid ""
" -z lam-u48-report=[none|warning|error] (default: none)\n"
" Report missing LAM_U48 property\n"
msgstr ""
" -z lam-u48-report=[none|warning|error] (predefinido: none)\n"
" Informa de la falta de la propiedad LAM_U48\n"
#: eelf_x86_64.c:8843 eelf_x86_64_cloudabi.c:841 eelf_x86_64_fbsd.c:841
#: eelf_x86_64_haiku.c:841 eelf_x86_64_sol2.c:973
#, c-format
msgid " -z lam-u57 Generate GNU_PROPERTY_X86_FEATURE_1_LAM_U57\n"
msgstr " -z lam-u57 Genera GNU_PROPERTY_X86_FEATURE_1_LAM_U57\n"
#: eelf_x86_64.c:8845 eelf_x86_64_cloudabi.c:843 eelf_x86_64_fbsd.c:843
#: eelf_x86_64_haiku.c:843 eelf_x86_64_sol2.c:975
#, c-format
msgid ""
" -z lam-u57-report=[none|warning|error] (default: none)\n"
" Report missing LAM_U57 property\n"
msgstr ""
" -z lam-u57-report=[none|warning|error] (predefinido: none)\n"
" Informa de la falta de la propiedad LAM_U57\n"
#: eelf_x86_64.c:8848 eelf_x86_64_cloudabi.c:846 eelf_x86_64_fbsd.c:846
#: eelf_x86_64_haiku.c:846 eelf_x86_64_sol2.c:978
#, c-format
msgid ""
" -z lam-report=[none|warning|error] (default: none)\n"
" Report missing LAM_U48 and LAM_U57 properties\n"
msgstr ""
" -z lam-report=[none|warning|error] (predefinido: none)\n"
" Informa de la falta de las propiedades LAM_U48 and\n"
" LAM_U57\n"
#: ehppaelf.c:327 ehppalinux.c:327 ehppanbsd.c:327 ehppaobsd.c:327
msgid "%X%P: can not set gp\n"
msgstr "%X%P: no se puede establecer gp\n"
#: ehppaelf.c:627 ehppalinux.c:839 ehppanbsd.c:839 ehppaobsd.c:839
#, c-format
msgid ""
" --multi-subspace Generate import and export stubs to support\n"
" multiple sub-space shared libraries\n"
msgstr ""
" --multi-subspace Genera stubs de importación y exportación para\n"
" admitir bibliotecas compartidas de subespacios\n"
" múltiples\n"
#: ei386beos.c:354
msgid "%P: PE operations on non PE file\n"
msgstr "%P: operaciones PE en un fichero que no es PE\n"
#: ei386beos.c:403 ei386beos.c:408
msgid "%P: %pB: can't read contents of section .idata: %E\n"
msgstr "%P: %pB: no se puede leer el contenido de la sección .idata: %E\n"
#: ei386beos.c:640
msgid "%P: section %s has '$' as first character\n"
msgstr "%P: la sección %s tiene un '$' como primer carácter\n"
#: ei386beos.c:670
msgid "%P: *(%s$) missing from linker script\n"
msgstr "%P: falta *(%s$) en el «script» del enlazador \n"
#: em68hc11elf.c:144 em68hc11elfb.c:144 em68hc12elf.c:144 em68hc12elfb.c:144
msgid "%P: warning: the size of the 'window' memory region is not a power of 2; its size %d is truncated to %d\n"
msgstr "%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\n"
#: em68hc11elf.c:159 em68hc11elfb.c:159 em68hc12elf.c:159 em68hc12elfb.c:159
msgid "%X%P: changing output format whilst linking is not supported\n"
msgstr "%X%P: no se puede cambiar el formato de salida mientras se enlaza\n"
#: em68hc11elf.c:624 em68hc11elfb.c:624 em68hc12elf.c:624 em68hc12elfb.c:624
#, c-format
msgid ""
" --no-trampoline Do not generate the far trampolines used to call\n"
" a far function using jsr or bsr\n"
msgstr ""
" --no-trampoline No genera trampolines lejanos utilizados para\n"
" llamar a funciones lejanas mediante jsr o bsr\n"
#: em68hc11elf.c:627 em68hc11elfb.c:627 em68hc12elf.c:627 em68hc12elfb.c:627
#, c-format
msgid ""
" --bank-window NAME Specify the name of the memory region describing\n"
" the layout of the memory bank window\n"
msgstr ""
" --bank-window NOMBRE Especifica el nombre de la región de memoria que\n"
" describe la disposición de la ventana del banco de memoria\n"
#: em68kelf.c:92 em68kelfnbsd.c:92
msgid "%P: %pB: all input objects must be ELF for --embedded-relocs\n"
msgstr "%P: %pB: todos los objetos de entrada deben ser ELF para --embedded-relocs\n"
#: em68kelf.c:701 em68kelfnbsd.c:701
msgid "%P: unrecognized --got argument '%s'\n"
msgstr "%P: no se reconoce el argumento --got '%s'\n"
#: em68kelf.c:714 em68kelfnbsd.c:714
#, c-format
msgid " --got=<type> Specify GOT handling scheme\n"
msgstr " --got=<tipo> Especifica el esquema de manejo GOT\n"
#: emmo.c:330
msgid "%X%P: internal problems scanning %pB after opening it"
msgstr "%X%P: problemas internos explorando %pB después de abrirlo"
#: emsp430X.c:160 emsp430elf.c:160
msgid "%P: error: unhandled data_statement size\n"
msgstr "%P: error: tamaño de declaración de datos no manejado\n"
#: emsp430X.c:300 emsp430elf.c:300
msgid "%P: error: no section named %s or %s in linker script\n"
msgstr "%P: error: no hay ninguna sección que se llame %s o %s en el «script» del enlazador\n"
#: emsp430X.c:309 emsp430elf.c:309
msgid "%P: error: no section named %s in linker script\n"
msgstr "%P: error: no hay ninguna sección que se llame %s en el «script» del enlazador\n"
#: emsp430X.c:456 emsp430elf.c:456
#, c-format
msgid ""
" --code-region={either,lower,upper,none}\n"
" Transform .text* sections to {either,lower,upper,none}.text* sections\n"
msgstr ""
" --code-region={either,lower,upper,none}\n"
" Transforma las secciones .text* en secciones {either,lower,upper,none}.text*\n"
#: emsp430X.c:457 emsp430elf.c:457
#, c-format
msgid ""
" --data-region={either,lower,upper,none}\n"
" Transform .data*, .rodata* and .bss* sections to\n"
" {either,lower,upper,none}.{bss,data,rodata}* sections\n"
msgstr ""
" --data-region={either,lower,upper,none}\n"
" Transforma las secciones .data*, .rodata* y .bss* en\n"
" secciones {either,lower,upper,none}.{bss,data,rodata}*\n"
#: emsp430X.c:458 emsp430elf.c:458
#, c-format
msgid ""
" --disable-sec-transformation\n"
" Disable transformation of .{text,data,bss,rodata}* sections to\n"
" add the {either,lower,upper,none} prefixes\n"
msgstr ""
" --disable-sec-transformation\n"
" Desactiva la transformación de las secciones .{text,data,bss,rodata}*\n"
" para añadir los prefijos {either,lower,upper,none}\n"
#: emsp430X.c:477 emsp430elf.c:477
msgid "%P: --code-region requires an argument: {upper,lower,either,none}\n"
msgstr "%P: --code-region requiere un argumento: {upper,lower,either,none}\n"
#: emsp430X.c:483 emsp430elf.c:483
msgid "%P: error: unrecognized argument to --code-region= option: \"%s\"\n"
msgstr "%P: no se reconoce el argumento de la opción --code-region=: \"%s\"\n"
#: emsp430X.c:500 emsp430elf.c:500
msgid "%P: --data-region requires an argument: {upper,lower,either,none}\n"
msgstr "%P: --data-region requiere un argumento: {upper,lower,either,none}\n"
#: emsp430X.c:506 emsp430elf.c:506
msgid "%P: error: unrecognized argument to --data-region= option: \"%s\"\n"
msgstr "%P: no se reconoce el argumento de la opción --data-region=: \"%s\"\n"
#. Incompatible objects.
#: ends32belf.c:129 ends32belf16m.c:129 ends32belf_linux.c:129 ends32elf.c:129
#: ends32elf16m.c:129 ends32elf_linux.c:129
msgid "%P: %pB: ABI version of object files mismatched\n"
msgstr "%P: %pB: versión ABI de los ficheros objeto discordantes\n"
#: ends32belf.c:450 ends32belf16m.c:450 ends32belf_linux.c:583 ends32elf.c:450
#: ends32elf16m.c:450 ends32elf_linux.c:583
msgid "%P: --mbaseline is not used anymore\n"
msgstr "%P: --mbaseline ya no se utiliza\n"
#: ends32belf.c:461 ends32belf16m.c:461 ends32belf_linux.c:594 ends32elf.c:461
#: ends32elf16m.c:461 ends32elf_linux.c:594
msgid "%P: --relax-[no-]reduce-fp-updat is not used anymore\n"
msgstr "%P: --relax-[no-]reduce-fp-updat ya no se utiliza\n"
#: ends32belf.c:465 ends32belf16m.c:465 ends32belf_linux.c:598 ends32elf.c:465
#: ends32elf16m.c:465 ends32elf_linux.c:598
msgid "%P: missing file for --mexport-symbols\n"
msgstr "%P: falta el fichero para --mexport-symbols\n"
#: ends32belf.c:478 ends32belf.c:487 ends32belf16m.c:478 ends32belf16m.c:487
#: ends32belf_linux.c:611 ends32belf_linux.c:620 ends32elf.c:478
#: ends32elf.c:487 ends32elf16m.c:478 ends32elf16m.c:487 ends32elf_linux.c:611
#: ends32elf_linux.c:620
msgid "%P: valid arguments to --mhyper-relax=(low|medium|high)\n"
msgstr "%P: argumentos válidos para --mhyper-relax=(low|medium|high)\n"
#: ends32belf.c:507 ends32belf16m.c:507 ends32belf_linux.c:640 ends32elf.c:507
#: ends32elf16m.c:507 ends32elf_linux.c:640
#, c-format
msgid " --m[no-]fp-as-gp Disable/enable fp-as-gp relaxation\n"
msgstr " --m[no-]fp-as-gp Desactiva/activa la relajación fp-as-gp\n"
#: ends32belf.c:509 ends32belf16m.c:509 ends32belf_linux.c:642 ends32elf.c:509
#: ends32elf16m.c:509 ends32elf_linux.c:642
#, c-format
msgid " --mexport-symbols=FILE Exporting symbols in linker script\n"
msgstr " --mexport-symbols=FICHERO Exportando los símbolos del «script» del enlazador\n"
#: ends32belf.c:511 ends32belf16m.c:511 ends32belf_linux.c:644 ends32elf.c:511
#: ends32elf16m.c:511 ends32elf_linux.c:644
#, c-format
msgid " --mhyper-relax=level Adjust relax level (low|medium|high). default: medium\n"
msgstr " --mhyper-relax=nivel Ajusta el nivel de relajamiento (low|medium|high). predefinido: medium\n"
#: ends32belf.c:513 ends32belf16m.c:513 ends32belf_linux.c:646 ends32elf.c:513
#: ends32elf16m.c:513 ends32elf_linux.c:646
#, c-format
msgid " --m[no-]tlsdesc-trampoline Disable/enable TLS DESC trampoline\n"
msgstr " --m[no-]tlsdesc-trampoline Desactiva/activa trampolín TLS DESC\n"
#: epdp11.c:83
#, c-format
msgid " -N, --omagic Do not make text readonly, do not page align data (default)\n"
msgstr ""
" -N, --omagic No hace que el texto sea de solo lectura; no alinea los\n"
" datos a la página (lo predefinido)\n"
#: epdp11.c:84
#, c-format
msgid " -n, --nmagic Make text readonly, align data to next page\n"
msgstr ""
" -n, --nmagic Hace que el texto sea de solo lectura; alinea los\n"
" datos a la siguiente página\n"
#: epdp11.c:85
#, c-format
msgid " -z, --imagic Make text readonly, separate instruction and data spaces\n"
msgstr ""
" -z, --imagic Hace que el texto sea de solo lectura; espacios de datos\n"
" e instrucciones separados\n"
#: epdp11.c:86
#, c-format
msgid " --no-omagic Equivalent to --nmagic\n"
msgstr " --no-magic Equivalente a --nmagic\n"
#: etic3xcoff.c:70 etic3xcoff_onchip.c:70 etic4xcoff.c:70 etic54xcoff.c:70
#, c-format
msgid " --format 0|1|2 Specify which COFF version to use\n"
msgstr " --format 0|1|2 Especifica qué versión COFF utilizar\n"
#: etic3xcoff.c:91 etic3xcoff_onchip.c:91 etic4xcoff.c:91 etic54xcoff.c:91
msgid "%P: invalid COFF format version %s\n"
msgstr "%P: versión no válida de formato COFF %s\n"
#~ msgid "%P: warning: -z dynamic-undefined-weak ignored\n"
#~ msgstr "%P: aviso: se ha hecho caso omiso de -z dynamic-undefined-weak\n"
#~ msgid "%F%P: %pB: bfd_stat failed: %E\n"
#~ msgstr "%F%P: %pB: bfd_stat falló: %E\n"
#~ msgid "%F%P: %pB: can't read contents of section .gnu.warning: %E\n"
#~ msgstr "%F%P: %pB: no se puede leer el contenido de la sección .gnu.warning: %E\n"
#~ msgid "%P: cannot find %s\n"
#~ msgstr "%P: no se puede encontrar %s\n"
#, c-format
#~ msgid " Default: zlib-gabi\n"
#~ msgstr " Lo predefinido: zlib-gabi\n"
#~ msgid "%P: zero vma section reloc detected: `%s' #%d f=%d\n"
#~ msgstr "%P: reubicación de sección vma cero detectada: `%s' #%d f=%d\n"
#, c-format
#~ msgid ""
#~ " --taso Load executable in the lower 31-bit addressable\n"
#~ " virtual address range\n"
#~ msgstr ""
#~ " --taso Carga el ejecutable en el rango de 31 bits inferior\n"
#~ " de direcciones virtuales direccionables\n"
#, c-format
#~ msgid " -z bndplt Always generate BND prefix in PLT entries\n"
#~ msgstr " -z bndplt Genera siempre prefijo BND en las entradas PLT\n"
#~ msgid "%F%P: cannot link with CTF in %pB: %s\n"
#~ msgstr "%F%P: no se puede con CTF en %pB: %s\n"
#~ msgid "running: %s \"%s\" \"%s\" \"%s\" \"%s\"\n"
#~ msgstr "ejecutando: %s \"%s\" \"%s\" \"%s\" \"%s\"\n"
#~ msgid " --[no-]branch-stub\n"
#~ msgstr " --[no-]branch-stub\n"
#~ msgid " --stub-group-size=N\n"
#~ msgstr " --stub-group-size=N\n"
#~ msgid "%P: warning: mixing ADL and Z80 mode binaries, objdump may generate invalid output"
#~ msgstr "%P: aviso: mezclando binarios de modo ADL y Z80, objdump puede generar salida no válida"
#~ msgid "%P: warning: incompatible object files linked, result code might not work"
#~ msgstr "%P: aviso: ficheros objeto incompatibles enlazados, el código resultante podría no funcionar"
#~ msgid " --no-wchar-size-warning Don't warn about objects with incompatible wchar_t sizes\n"
#~ msgstr ""
#~ " --no-wchar-size-warning No advierte de objetos con tamaños de\n"
#~ " wchar_t incompatibles\n"
#~ msgid " --fix-cortex-a53-843419 Fix erratum 843419\n"
#~ msgstr " --fix-cortex-a53-843419 Corrige el error 843419\n"
#~ msgid "%X%P: .gnu.hash is incompatible with the MIPS ABI\n"
#~ msgstr "%X%P: .gnu.hash es incompatible con la MIPS ABI\n"
#~ msgid "%P: %pB: must use -fpic to compile this file for shared object or PIE\n"
#~ msgstr "%P: %pB: debe utilizar -fpic para compilar este fichero para objeto compartido o PIE\n"
#~ msgid "%P: missing file for --mexport-ex9=<file>\n"
#~ msgstr "%P: falta el fichero para --mexport-ex9=<fichero>\n"
#~ msgid "%F%P: cannot open ex9 export file %s\n"
#~ msgstr "%F%P: no se puede abrir el fichero base %s\n"
#~ msgid "%P: missing file for --mimport-ex9=<file>\n"
#~ msgstr "%P: falta el fichero para --mimport-ex9=<fichero>\n"
#~ msgid "%F%P: cannot open ex9 import file %s\n"
#~ msgstr "%F%P: no se puede abrir el fichero base %s\n"
#~ msgid "%F%P: the range of ex9_limit must between 1 and 511\n"
#~ msgstr "%F%P: el rango de ex9_limit debe estar entre 1 y 511\n"
#~ msgid " --m[no-]ex9 Disable/enable link-time EX9 relaxation\n"
#~ msgstr " --m[no-]ex9 Desactiva/activa la relajación EX9 de tiempo de enlazamiento\n"
#~ msgid " --mexport-ex9=FILE Export EX9 table after linking\n"
#~ msgstr " --mexport-ex9=FICHERO Exporta la tabla EX9 después de enlazar\n"
#~ msgid " --mimport-ex9=FILE Import Ex9 table for EX9 relaxation\n"
#~ msgstr " --mimport-ex9=FICHERO Importa la tabla Ex9 para la relajación EX9\n"
#~ msgid " --mupdate-ex9 Update existing EX9 table\n"
#~ msgstr " --mupdate-ex9 Actualiza la tabla EX9 existente\n"
#~ msgid " --mex9-limit=NUM Maximum number of entries in ex9 table\n"
#~ msgstr " --mex9-limit=NUM Número máximo de entradas en la tabla ex9\n"
#~ msgid " --mex9-loop-aware Avoid generate EX9 instruction inside loop\n"
#~ msgstr " --mex9-loop-aware Evita generar instrucción EX9 dentro de bucle\n"
#~ msgid " --m[no-]ifc Disable/enable link-time IFC optimization\n"
#~ msgstr " --m[no-]ifc Desactiva/activa optimización IFC de tiempo de enlazamiento\n"
#~ msgid " --mifc-loop-aware Avoid generate IFC instruction inside loop\n"
#~ msgstr " --mifc-loop-aware Evita generar instrucción IFC dentro de bucle\n"
#~ msgid " --support-old-code Support interworking with old code\n"
#~ msgstr " --support-old-code Admite interoperar con código antiguo\n"
#~ msgid "Errors encountered processing file %s"
#~ msgstr "Se encontraron errores al procesar el fichero %s"
#~ msgid "%B: file not recognized: %E\n"
#~ msgstr "%B: no se reconoce el fichero: %E\n"
#~ msgid "%B: matching formats:"
#~ msgstr "%B: formatos coincidentes:"
#~ msgid "%P%F: bfd_hash_lookup failed: %E\n"
#~ msgstr "%P%F: falló bfd_hash_lookup: %E\n"
#~ msgid "%B: warning: larger common is here\n"
#~ msgstr "%B: aviso: el common más grande está aquí\n"
#~ msgid "%B: warning: smaller common is here\n"
#~ msgstr "%B: aviso: el common más pequeño está aquí\n"
#~ msgid "%B: warning: previous common is here\n"
#~ msgstr "%B: aviso: el common previo está aquí\n"
#~ msgid "%P%F: -r and -pie may not be used together\n"
#~ msgstr "%P%F: no se pueden usar juntos -r y -pie\n"
#~ msgid "%s: data size %ld\n"
#~ msgstr "%s: tamaño de los datos %ld\n"
#~ msgid "%P%F: bad -rpath option\n"
#~ msgstr "%P%F: opción -rpath errónea\n"
#~ msgid "%P%F: bad -plugin option\n"
#~ msgstr "%P%F: opción -plugin errónea\n"
#~ msgid "%P%X: %s: hash table failure adding symbol %s"
#~ msgstr "%P%X: %s: falló la tabla de dispersión al agregar el símbolo %s"
#~ msgid "%P%X: %s: can't find IR symbol '%s'"
#~ msgstr "%P%X: %s: no se puede encontrar el símbolo IR '%s'"
#~ msgid "%P%x: %s: bad IR symbol type %d"
#~ msgstr "%P%x: %s: tipo de símbolo IR %d erróneo"
#~ msgid "%F%P: %s (%s): No such file: %E\n"
#~ msgstr "%F%P: %s (%s): No hay tal fichero: %E\n"
#~ msgid ""
#~ "Set DT_NEEDED tags for DT_NEEDED entries in\n"
#~ " following dynamic libs"
#~ msgstr ""
#~ "Establece marcas DT_NEEDED para entradas DT_NEEDED en\n"
#~ " las siguientes bibliotecas dinámicas"
#~ msgid ""
#~ "Do not set DT_NEEDED tags for DT_NEEDED entries\n"
#~ " in following dynamic libs"
#~ msgstr ""
#~ "No establece marcas DT_NEEDED para entradas DT_NEEDED en\n"
#~ " las siguientes bibliotecas dinámicas"
#~ msgid "Always set DT_NEEDED for following dynamic libs"
#~ msgstr "Siempre establece DT_NEEDED para las siguientes bibliotecas dinámicas"
#~ msgid "Relax branches on certain targets"
#~ msgstr "Relaja ramificaciones en ciertos objetivos"
#~ msgid "%P%F: may not nest groups (--help for usage)\n"
#~ msgstr "%P%F: no se pueden anidar grupos (--help para modo de empleo)\n"
#~ msgid "%P%F: --relax and -r may not be used together\n"
#~ msgstr "%P%F: no se pueden usar juntos -relax y -r\n"
#~ msgid " --support-old-code Support interworking with old code\n"
#~ msgstr " --support-old-code Admite interoperar con código antiguo\n"
#~ msgid "%B%F: could not read symbols; %E\n"
#~ msgstr "%B%F: no se pueden leer símbolos; %E\n"
#~ msgid "%F%S nonconstant expression for %s\n"
#~ msgstr "%F%S expresión no constante para %s\n"
#~ msgid "%B%F: could not read symbols\n"
#~ msgstr "%B%F: no se pueden leer los símbolos\n"
#~ msgid "%F%S non constant expression for %s\n"
#~ msgstr "%F%S expresión no constante para %s\n"
#~ msgid "%P%F: out of memory during initialization"
#~ msgstr "%P%F: memoria agotada durante la inicialización"
#~ msgid "%P%F: -static and -shared may not be used together\n"
#~ msgstr "%P%F: no se pueden usar juntos -static y -shared\n"
#~ msgid "%P%X: generated"
#~ msgstr "%P%X: generado"
#~ msgid "%F%P: %s forward reference of section %s\n"
#~ msgstr "%F%P: %s es una referencia hacia adelante de la sección %s\n"
#~ msgid "%P%F: target architecture respecified\n"
#~ msgstr "%P%F: arquitectura destino reespecificada\n"
#~ msgid "%P: no [COMMON] command, defaulting to .bss\n"
#~ msgstr "%P: no hay una orden [COMMON], usando .bss por defecto\n"
#~ msgid "%P%F: -r and --mpc860c0 may not be used together\n"
#~ msgstr "%P%F: no se pueden usar juntos -r y --mpc860c0\n"
#~ msgid "Allow no undefined symbols"
#~ msgstr "No permitir símbolos sin definir"
#~ msgid "Allow undefined symbols in shared objects (the default)"
#~ msgstr "Permitir símbolos sin definir en objetos compartidos (por defecto)"
#~ msgid "[=WORDS]"
#~ msgstr "[=PALABRAS]"
#~ msgid ""
#~ "Modify problematic branches in last WORDS (1-10,\n"
#~ "\t\t\t\tdefault 5) words of a page"
#~ msgstr ""
#~ "Modificar las ramificaciones problemáticas en las últimas PALABRAS (1-10,\n"
#~ "\t\t\t5 por defecto) palabras de una página"
#~ msgid "%P%F: invalid argument to option \"mpc860c0\"\n"
#~ msgstr "%P%F: Argumento inválido para la opción \"mpc860c0\"\n"
#~ msgid " --dll-search-prefix=<string> When linking dynamically to a dll witout an\n"
#~ msgstr " --dll-search-prefix=<cadena> Al enlazar dinámicamente con una dll sin una\n"
#~ msgid " importlib, use <string><basename>.dll \n"
#~ msgstr " biblioteca de importación, usar <cadena><nombrebase>.dll\n"
#~ msgid "Archive member included"
#~ msgstr "Se incluyó el fichero miembro"
|