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
|
# Brazilian Portuguese translations for ld (binutils package).
# Traduções em português brasileiro para o ld (pacote binutils).
# Copyright (C) 2020 Free Software Foundation, Inc.
# This file is distributed under the same license as the binutils package.
# Rafael Fontenelle <rafaelff@gnome.org>, 2017-2020.
msgid ""
msgstr ""
"Project-Id-Version: ld 2.34.90\n"
"Report-Msgid-Bugs-To: bug-binutils@gnu.org\n"
"POT-Creation-Date: 2020-07-04 10:34+0100\n"
"PO-Revision-Date: 2020-07-04 12:37-0300\n"
"Last-Translator: Rafael Fontenelle <rafaelff@gnome.org>\n"
"Language-Team: Brazilian Portuguese <ldpbr-translation@lists.sourceforge.net>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Virtaal 1.0.0-beta1\n"
"X-Bugs: Report translation errors to the Language-Team address.\n"
#: ldcref.c:171
msgid "%X%P: bfd_hash_table_init of cref table failed: %E\n"
msgstr "%X%P: bfd_hash_table_init da tabela cref falhou: %E\n"
#: ldcref.c:177
msgid "%X%P: cref_hash_lookup failed: %E\n"
msgstr "%X%P: cref_hash_lookup falhou: %E\n"
#: ldcref.c:187
msgid "%X%P: cref alloc failed: %E\n"
msgstr "%X%P: alloc de cref falhou: %E\n"
#: ldcref.c:372
#, c-format
msgid ""
"\n"
"Cross Reference Table\n"
"\n"
msgstr ""
"\n"
"Tabela de referência cruzada\n"
"\n"
#: ldcref.c:373
msgid "Symbol"
msgstr "Símbolo"
#: ldcref.c:381
#, c-format
msgid "File\n"
msgstr "Arquivo\n"
#: ldcref.c:385
#, c-format
msgid "No symbols\n"
msgstr "Nenhum símbolo\n"
#: ldcref.c:414 ldcref.c:566
msgid "%P: symbol `%pT' missing from main hash table\n"
msgstr "%P: símbolo \"%pT\" faltando da tabela hash principal\n"
#: ldcref.c:518 ldcref.c:629 ldmain.c:1293 ldmisc.c:335 pe-dll.c:736
#: pe-dll.c:1314 pe-dll.c:1435 pe-dll.c:1558 earm_wince_pe.c:1437
#: earm_wince_pe.c:1644 earmpe.c:1437 earmpe.c:1644 ei386pe.c:1437
#: ei386pe.c:1644 ei386pe_posix.c:1437 ei386pe_posix.c:1644 ei386pep.c:1422
#: emcorepe.c:1437 emcorepe.c:1644 eppcpe.c:1437 eppcpe.c:1644 eshpe.c:1437
#: eshpe.c:1644
msgid "%F%P: %pB: could not read symbols: %E\n"
msgstr "%F%P: %pB: não foi possível ler os símbolos: %E\n"
#: ldcref.c:691 ldcref.c:698 ldmain.c:1355 ldmain.c:1362
msgid "%F%P: %pB: could not read relocs: %E\n"
msgstr "%F%P: %pB: não foi possível ler as realocações: %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:725
msgid "%X%P: %C: prohibited cross reference from %s to `%pT' in %s\n"
msgstr "%X%P: %C: referência cruzada proibida de %s para \"%pT\" em %s\n"
#: ldctor.c:84
msgid "%X%P: different relocs used in set %s\n"
msgstr "%X%P: realocações diferentes usadas no conjunto %s\n"
#: ldctor.c:102
msgid "%X%P: different object file formats composing set %s\n"
msgstr "%X%P: Formatos de arquivo objeto diferentes compondo conjunto %s\n"
#: ldctor.c:278 ldctor.c:299
msgid "%X%P: %s does not support reloc %s for set %s\n"
msgstr "%X%P: %s não oferece suporte a realocações %s para o conjunto %s\n"
#: ldctor.c:294
msgid "%X%P: special section %s does not support reloc %s for set %s\n"
msgstr "%X%P: Seção especial %s não oferece suporte a realocações %s para o conjunto %s\n"
#: ldctor.c:320
msgid "%X%P: unsupported size %d for set %s\n"
msgstr "%X%P: Tamanho sem suporte %d para o conjunto %s\n"
#: ldctor.c:343
msgid ""
"\n"
"Set Symbol\n"
"\n"
msgstr ""
"\n"
"Conjunto Símbolo\n"
"\n"
#: ldelf.c:71
msgid "%P: warning: -z dynamic-undefined-weak ignored\n"
msgstr "%P: aviso: -z dynamic-undefined-weak ignorado\n"
#: ldelf.c:98
msgid "%F%P: %pB: --just-symbols may not be used on DSO\n"
msgstr "%F%P: %pB: --just-symbols não pode ser usado em DSO\n"
#: ldelf.c:200
msgid "%P: %pB: bfd_stat failed: %E\n"
msgstr "%P: %pB: bfd_stat falhou: %E\n"
#: ldelf.c:241
msgid "%P: warning: %s, needed by %pB, may conflict with %s\n"
msgstr "%P: aviso: %s, necessário por %pB, pode conflitar com %s\n"
#: ldelf.c:261 ldfile.c:133
#, c-format
msgid "attempt to open %s failed\n"
msgstr "tentativa de abrir %s falhou\n"
#: ldelf.c:298
msgid "%F%P: %pB: bfd_elf_get_bfd_needed_list failed: %E\n"
msgstr "%F%P: %pB: bfd_elf_get_bfd_needed_list falhou: %E\n"
#: ldelf.c:346
msgid "%F%P: %pB: bfd_stat failed: %E\n"
msgstr "%F%P: %pB: bfd_stat falhou: %E\n"
#: ldelf.c:352
#, c-format
msgid "found %s at %s\n"
msgstr "localizado %s em %s\n"
#: ldelf.c:385 ldlang.c:3146 ldlang.c:3160
msgid "%F%P: %pB: error adding symbols: %E\n"
msgstr "%F%P: %pB: erro ao adicionar 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:572
#, c-format
msgid "unrecognised or unsupported token '%s' in search path\n"
msgstr "token não reconhecido ou sem suporte \"%s\" no caminho de pesquisa\n"
#: ldelf.c:1016
msgid "%F%P: %s: can't open for writing: %E\n"
msgstr "%F%P: %s não foi possível abrir para escrita: %E\n"
#: ldelf.c:1050 ldelf.c:1084
msgid "%F%P: cannot use executable file '%pB' as input to a link\n"
msgstr "%F%P: não foi possível usar o arquivo executável \"%pB\" como entrada para um vínculo\n"
#: ldelf.c:1111
msgid "%F%P: compact frame descriptions incompatible with DWARF2 .eh_frame from %pB\n"
msgstr "%F%P: descrições de quadro compacto incompatíveis com .eh_frame DWARF2 de %pB\n"
#: ldelf.c:1147
msgid "%P: warning: cannot create .eh_frame_hdr section, --eh-frame-hdr ignored\n"
msgstr "%P: aviso: não foi possível criar a seção .eh_frame_hdr, --eh-frame-hdr ignorada\n"
#: ldelf.c:1203
#, c-format
msgid "%s needed by %pB\n"
msgstr "%s necessária para %pB\n"
#: ldelf.c:1312
msgid "%P: warning: %s, needed by %pB, not found (try using -rpath or -rpath-link)\n"
msgstr "%P: aviso: %s, necessária para %pB, não localizada (tente usar -rpath ou -rpath-link)\n"
#: ldelf.c:1325
msgid "%F%P: failed to add DT_NEEDED dynamic tag\n"
msgstr "%F%P: falha ao adicionar tag dinâmica DT_NEEDED\n"
#: ldelf.c:1333
msgid "%F%P: failed to parse EH frame entries\n"
msgstr "%F%P: falha ao analisar entradas de quadro EH\n"
#: ldelf.c:1372
msgid "%P: warning: .note.gnu.build-id section discarded, --build-id ignored\n"
msgstr "%P: aviso: seção .note.gnu.build-id descartada, --build-id ignorada\n"
#: ldelf.c:1418 earm_wince_pe.c:1228 earmpe.c:1228 ei386pe.c:1228
#: ei386pe_posix.c:1228 ei386pep.c:1231 emcorepe.c:1228 eppcpe.c:1228
#: eshpe.c:1228
msgid "%P: warning: unrecognized --build-id style ignored\n"
msgstr "%P: aviso: estilo de --build-id não reconhecido ignorado\n"
#: ldelf.c:1436
msgid "%P: warning: cannot create .note.gnu.build-id section, --build-id ignored\n"
msgstr "%P: aviso: não foi possível criar a seção .note.gnu.build-id, --build-id ignorada\n"
#: ldelf.c:1468 eaix5ppc.c:1370 eaix5rs6.c:1370 eaixppc.c:1370 eaixrs6.c:1370
#: eppcmacos.c:1370
msgid "%F%P: failed to record assignment to %s: %E\n"
msgstr "%F%P: falha ao registrar atribuição a %s: %E\n"
#: ldelf.c:1650 ldelf.c:1715 eaix5ppc.c:832 eaix5rs6.c:832 eaixppc.c:832
#: eaixrs6.c:832 eelf64_ia64_vms.c:209 eppcmacos.c:832
msgid "%F%P: failed to set dynamic section sizes: %E\n"
msgstr "%F%P: falha ao definir tamanhos de seção dinâmica: %E\n"
#: ldelf.c:1687
msgid "%F%P: %pB: can't read contents of section .gnu.warning: %E\n"
msgstr "%F%P: %pB: não foi possível ler conteúdo da seção .gnu.warning: %E\n"
#: ldelfgen.c:55
msgid "%F%P: map sections to segments failed: %E\n"
msgstr "%F%P: mapa de seções para segmentos falhou: %E\n"
#: ldelfgen.c:75
msgid "%F%P: looping in map_segments"
msgstr "%F%P: em loop em map_segments"
#: ldelfgen.c:87
msgid "%F%P: failed to strip zero-sized dynamic sections"
msgstr "%F%P: falha ao remover as seções dinâmicas completadas com zero"
#: ldelfgen.c:191
msgid "%F%P: warning: CTF strtab association failed; strings will not be shared: %s\n"
msgstr "%F%P: aviso: associação de strtab CTF falhou; strings não serão compartilhadas: %s\n"
#: ldelfgen.c:197
msgid "%F%P: warning: CTF symbol shuffling failed; slight space cost: %s\n"
msgstr "%F%P: aviso: embaralhamento de símbolos CTF falhou; leve custo de espaço: %s\n"
#: ldemul.c:314
#, c-format
msgid "%pS SYSLIB ignored\n"
msgstr "SYSLIB %pS ignorado\n"
#: ldemul.c:320
#, c-format
msgid "%pS HLL ignored\n"
msgstr "HLL %pS ignorado\n"
#: ldemul.c:340
msgid "%P: unrecognised emulation mode: %s\n"
msgstr "%P: modo de emulação não reconhecido: %s\n"
#: ldemul.c:341
msgid "Supported emulations: "
msgstr "Emulações sem suporte: "
#: ldemul.c:383
#, c-format
msgid " no emulation specific options.\n"
msgstr " sem opções específicas de emulação.\n"
#: ldexp.c:284
msgid "%F%P: bfd_hash_allocate failed creating symbol %s\n"
msgstr "%F%P: bfd_hash_allocate falhou ao criar símbolo %s\n"
#: ldexp.c:315
msgid "%F%P: bfd_hash_lookup failed creating symbol %s\n"
msgstr "%F%P: bfd_hash_lookup falhou ao criar símbolo %s\n"
#: ldexp.c:552
msgid "%P: warning: address of `%s' isn't multiple of maximum page size\n"
msgstr "%P: aviso: o endereço de \"%s\" não é múltiplo do tamanho máximo de página\n"
#: ldexp.c:631
msgid "%F%P:%pS %% by zero\n"
msgstr "%F%P:%pS %% por zero\n"
#: ldexp.c:640
msgid "%F%P:%pS / by zero\n"
msgstr "%F%P:%pS / por zero\n"
#: ldexp.c:736 ldlang.c:3922 ldmain.c:1260 earm_wince_pe.c:1772 earmpe.c:1772
#: ei386pe.c:1772 ei386pe_posix.c:1772 ei386pep.c:1646 emcorepe.c:1772
#: eppcpe.c:1772 eshpe.c:1772
msgid "%F%P: bfd_link_hash_lookup failed: %E\n"
msgstr "%F%P: bfd_link_hash_lookup falhou: %E\n"
#: ldexp.c:749
msgid "%X%P:%pS: unresolvable symbol `%s' referenced in expression\n"
msgstr "%X%P:%pS: símbolo \"%s\" irresolvível referenciado na expressão\n"
#: ldexp.c:764
msgid "%F%P:%pS: undefined symbol `%s' referenced in expression\n"
msgstr "%F%P:%pS: símbolo \"%s\" indefinido referenciado na expressão\n"
#: ldexp.c:802 ldexp.c:820 ldexp.c:848
msgid "%F%P:%pS: undefined section `%s' referenced in expression\n"
msgstr "%F%P:%pS: seção \"%s\" indefinida referenciada na expressão\n"
#: ldexp.c:879 ldexp.c:893
msgid "%F%P:%pS: undefined MEMORY region `%s' referenced in expression\n"
msgstr "%F%P:%pS: região de MEMORY \"%s\" indefinida referenciada na expressão\n"
#: ldexp.c:905
msgid "%F%P:%pS: unknown constant `%s' referenced in expression\n"
msgstr "%F%P:%pS: constante desconhecida \"%s\" referenciada na expressão\n"
#: ldexp.c:1053
msgid "%F%P:%pS can not PROVIDE assignment to location counter\n"
msgstr "%F%P:%pS não pode fornecer (PROVIDE) atribuição ao contador de localização\n"
#: ldexp.c:1086
msgid "%F%P:%pS invalid assignment to location counter\n"
msgstr "%F%P:%pS atribuição inválida ao contador de localização\n"
#: ldexp.c:1090
msgid "%F%P:%pS assignment to location counter invalid outside of SECTIONS\n"
msgstr "%F%P:%pS atribuição ao contador de localização inválida fora de SECTIONS\n"
#: ldexp.c:1109
msgid "%F%P:%pS cannot move location counter backwards (from %V to %V)\n"
msgstr "%F%P:%pS não é possível mover contador de localização de volta (de %V para %V)\n"
#: ldexp.c:1169
msgid "%F%P:%s: hash creation failed\n"
msgstr "%F%P:%s: criação de hash falhou\n"
#: ldexp.c:1538 ldexp.c:1580 ldexp.c:1640
msgid "%F%P:%pS: nonconstant expression for %s\n"
msgstr "%F%P:%pS: expressão não constante para %s\n"
#: ldexp.c:1666 ldlang.c:1281 ldlang.c:3464 ldlang.c:7848
msgid "%F%P: can not create hash table: %E\n"
msgstr "%F%P: não foi possível criar tabela hash: %E\n"
#: ldfile.c:135
#, c-format
msgid "attempt to open %s succeeded\n"
msgstr "tentativa de abrir %s bem-sucedida\n"
#: ldfile.c:141
msgid "%F%P: invalid BFD target `%s'\n"
msgstr "%F%P: alvo BFD inválido \"%s\"\n"
#: ldfile.c:267 ldfile.c:297
msgid "%P: skipping incompatible %s when searching for %s\n"
msgstr "%P: pulando %s incompatível ao pesquisar para %s\n"
#: ldfile.c:280
msgid "%F%P: attempted static link of dynamic object `%s'\n"
msgstr "%F%P: tentado vínculo estático de objeto dinâmico \"%s\"\n"
#: ldfile.c:407
msgid "%P: cannot find %s (%s): %E\n"
msgstr "%P: não foi possível localizar %s (%s): %E\n"
#: ldfile.c:410
msgid "%P: cannot find %s: %E\n"
msgstr "%P: não foi possível localizar %s: %E\n"
#: ldfile.c:462
msgid "%P: cannot find %s inside %s\n"
msgstr "%P: não foi possível localizar %s dentro de %s\n"
#: ldfile.c:465
msgid "%P: cannot find %s\n"
msgstr "%P: não foi possível localizar %s\n"
# "lib" é parte do nome do arquivo, tipo "libcurl", não traduzir -- Rafael
#: ldfile.c:475
msgid "%P: note to link with %s use -l:%s or rename it to lib%s\n"
msgstr "%P: para vincular com %s use -l:%s ou renome-o para a lib%s\n"
#: ldfile.c:503
#, c-format
msgid "cannot find script file %s\n"
msgstr "não foi possível localizar o arquivo script %s\n"
#: ldfile.c:505
#, c-format
msgid "opened script file %s\n"
msgstr "aberto arquivo de script %s\n"
#: ldfile.c:654
msgid "%F%P: error: linker script file '%s' appears multiple times\n"
msgstr "%F%P: erro: o arquivo de script \"%s\" do vinculador aparece várias vezes\n"
#: ldfile.c:676
msgid "%F%P: cannot open linker script file %s: %E\n"
msgstr "%F%P: não foi possível abrir o arquivo de script do vinculador %s: %E\n"
#: ldfile.c:749
msgid "%F%P: cannot represent machine `%s'\n"
msgstr "%F%P: não foi possível representar a máquina \"%s\"\n"
#: ldlang.c:1365
msgid "%P:%pS: warning: redeclaration of memory region `%s'\n"
msgstr "%P:%pS: aviso: redeclaração de região de memória \"%s\"\n"
#: ldlang.c:1371
msgid "%P:%pS: warning: memory region `%s' not declared\n"
msgstr "%P:%pS: aviso: região de memória \"%s\" não declarada\n"
#: ldlang.c:1407
msgid "%F%P:%pS: error: alias for default memory region\n"
msgstr "%F%P:%pS: erro: apelido para região de memória padrão\n"
#: ldlang.c:1418
msgid "%F%P:%pS: error: redefinition of memory region alias `%s'\n"
msgstr "%F%P:%pS: erro: redefinição de região de memória com apelido \"%s\"\n"
#: ldlang.c:1425
msgid "%F%P:%pS: error: memory region `%s' for alias `%s' does not exist\n"
msgstr "%F%P:%pS: erro: a região de memória \"%s\" para apelido \"%s\" não existe\n"
#: ldlang.c:1484 ldlang.c:1523
msgid "%F%P: failed creating section `%s': %E\n"
msgstr "%F%P: falha ao criar a seção \"%s\": %E\n"
#: ldlang.c:2221
msgid ""
"\n"
"As-needed library included to satisfy reference by file (symbol)\n"
"\n"
msgstr ""
"\n"
"Biblioteca conforme necessária incluída para satisfazer referência por arquivo (símbolo)\n"
"\n"
#: ldlang.c:2288
#, c-format
msgid ""
"\n"
"Discarded input sections\n"
"\n"
msgstr ""
"\n"
"Seções de entrada descartadas\n"
"\n"
#: ldlang.c:2296
msgid ""
"\n"
"Memory Configuration\n"
"\n"
msgstr ""
"\n"
"Configuração de memória\n"
"\n"
#: ldlang.c:2298
msgid "Name"
msgstr "Nome"
#: ldlang.c:2298
msgid "Origin"
msgstr "Origem"
#: ldlang.c:2298
msgid "Length"
msgstr "Tamanho"
#: ldlang.c:2298
msgid "Attributes"
msgstr "Atributos"
#: ldlang.c:2338
#, c-format
msgid ""
"\n"
"Linker script and memory map\n"
"\n"
msgstr ""
"\n"
"Mapa de memória e script de vinculador\n"
"\n"
#: ldlang.c:2391
msgid "%F%P: illegal use of `%s' section\n"
msgstr "%F%P: uso ilegal de seção \"%s\"\n"
#: ldlang.c:2400
msgid "%F%P: output format %s cannot represent section called %s: %E\n"
msgstr "%F%P: o formato de saída %s não pode representar a seção chamada %s: %E\n"
#: ldlang.c:2567
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 faz a seção \"%pA\" de \"%pB\" corresponder a cláusula /DISCARD/.\n"
#: ldlang.c:2600
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 pode alterar o comportamento para a seção \"%pA\" de \"%pB\" (atribuído %pA, mas correspondência adicional: %pA)\n"
#: ldlang.c:3050
msgid "%P: %pB: file not recognized: %E; matching formats:"
msgstr "%P: %pB: arquivo não reconhecido: %E; formatos correspondentes:"
#: ldlang.c:3058
msgid "%F%P: %pB: file not recognized: %E\n"
msgstr "%F%P: %pB: arquivo não reconhecido: %E\n"
#: ldlang.c:3131
msgid "%F%P: %pB: member %pB in archive is not an object\n"
msgstr "%F%P: %pB: o membro %pB no arquivo não é um objeto\n"
#: ldlang.c:3434
msgid "%P: warning: could not find any targets that match endianness requirement\n"
msgstr "%P: aviso: não foi possível localizar quaisquer alvos que correspondam ao requerimento de endianness\n"
#: ldlang.c:3448
msgid "%F%P: target %s not found\n"
msgstr "%F%P: aviso %s não localizado\n"
#: ldlang.c:3450
msgid "%F%P: cannot open output file %s: %E\n"
msgstr "%F%P: não foi possível abrir o arquivo de saída %s: %E\n"
#: ldlang.c:3456
msgid "%F%P: %s: can not make object file: %E\n"
msgstr "%F%P: %s: não foi possível fazer arquivo objeto: %E\n"
#: ldlang.c:3460
msgid "%F%P: %s: can not set architecture: %E\n"
msgstr "%F%P: %s: não foi possível definir arquitetura: %E\n"
#: ldlang.c:3640
msgid "%P: warning: %s contains output sections; did you forget -T?\n"
msgstr "%P: aviso: %s contém seções de saída; você se esqueceu de -T?\n"
#: ldlang.c:3697
msgid "%P: warning: CTF section in `%pI' not loaded: its types will be discarded: `%s'\n"
msgstr "%P: aviso: seção CTF em \"%pI\" não carregada: seus tipos serão descartados: \"%s\"\n"
#: ldlang.c:3722
msgid "%P: warning: CTF output not created: `%s'\n"
msgstr "%P: aviso: saída CTF não criada: \"%s\"\n"
#: ldlang.c:3764
msgid "%F%P: cannot link with CTF in %pB: %s\n"
msgstr "%F%P: não foi possível vincular com CTF em %pB: %s\n"
#: ldlang.c:3774
msgid "%F%P: CTF linking failed; output will have no CTF section: %s\n"
msgstr "%F%P: vinculação de CTF falhou; a saída não terá uma seção CTF: %s\n"
#: ldlang.c:3830
msgid "%F%P: CTF section emission failed; output will have no CTF section: %s\n"
msgstr "%F%P: emissão de seção CTF falhou; a saída não terá uma seção CTF: %s\n"
#: ldlang.c:3868
msgid "%P: warning: CTF section in `%pI' not linkable: %P was built without support for CTF\n"
msgstr "%P: aviso: seção CTF em \"%pI\" não vinculável: %P foi compilado sem suporte a CTF\n"
#: ldlang.c:3992
msgid "%X%P: required symbol `%s' not defined\n"
msgstr "%X%P: símbolo exigido \"%s\" não definido\n"
#: ldlang.c:4291
msgid "warning: INSERT statement in linker script is incompatible with --enable-non-contiguous-regions.\n"
msgstr "aviso: instrução INSERT em um script vinculador é incompatível com --enable-non-contiguous-regions.\n"
#: ldlang.c:4304
msgid "%F%P: %s not found for insert\n"
msgstr "%F%P: %s não localizado para inserção\n"
#: ldlang.c:4544
msgid " load address 0x%V"
msgstr " carga com endereço 0x%V"
#: ldlang.c:4777
msgid "%W (size before relaxing)\n"
msgstr "%W (tamanho antes de relaxar)\n"
#: ldlang.c:4870
#, c-format
msgid "Address of section %s set to "
msgstr "Endereço de seção %s definido para "
#: ldlang.c:5068
#, c-format
msgid "Fail with %d\n"
msgstr "Falha com %d\n"
#: ldlang.c:5281
msgid "%F%P: Output section '%s' not large enough for the linker-created stubs section '%s'.\n"
msgstr "%F%P: A seção de saída \"%s\" não grande demais para a seção esboço \"%s\", criada pelo vinculador.\n"
#: ldlang.c:5286
msgid "%F%P: Relaxation not supported with --enable-non-contiguous-regions (section '%s' would overflow '%s' after it changed size).\n"
msgstr "%F%P: Relaxamento não suportado com --enable-non-contiguous-regions (a seção \"%s\" excederia \"%s\" após a alteração do tamanho).\n"
#: ldlang.c:5395
msgid "%X%P: section %s VMA wraps around address space\n"
msgstr "%X%P: VMA da seção %s cobre o espaço de endereço\n"
#: ldlang.c:5401
msgid "%X%P: section %s LMA wraps around address space\n"
msgstr "%X%P: VMA da seção %s cobre o espaço de endereço\n"
#: ldlang.c:5453
msgid "%X%P: section %s LMA [%V,%V] overlaps section %s LMA [%V,%V]\n"
msgstr "%X%P: LMA [%V,%V] da seção %s sobrepõe LMA [%V,%V] da seção %s\n"
#: ldlang.c:5497
msgid "%X%P: section %s VMA [%V,%V] overlaps section %s VMA [%V,%V]\n"
msgstr "%X%P: VMA [%V,%V] da seção %s sobrepõe VMA [%V,%V] da seção %s\n"
#: ldlang.c:5520
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: a região \"%s\" estourou por %lu byte\n"
msgstr[1] "%X%P: a região \"%s\" estourou por %lu bytes\n"
#: ldlang.c:5545
msgid "%X%P: address 0x%v of %pB section `%s' is not within region `%s'\n"
msgstr "%X%P: endereço 0x%v de seção %pB \"%s\" não está dentro da região \"%s\"\n"
#: ldlang.c:5556
msgid "%X%P: %pB section `%s' will not fit in region `%s'\n"
msgstr "%X%P: a seção %pB \"%s\" não vai caber na região \"%s\"\n"
#: ldlang.c:5642
msgid "%F%P:%pS: non constant or forward reference address expression for section %s\n"
msgstr "%F%P:%pS: expressão de endereço não constante ou referência direta para seção %s\n"
#: ldlang.c:5667
msgid "%X%P: internal error on COFF shared library section %s\n"
msgstr "%X%P: erro interno em biblioteca compartilhada COFF na seção %s\n"
#: ldlang.c:5725
msgid "%F%P: error: no memory region specified for loadable section `%s'\n"
msgstr "%F%P: erro: nenhuma região de memória especificada para seção carregável \"%s\"\n"
#: ldlang.c:5729
msgid "%P: warning: no memory region specified for loadable section `%s'\n"
msgstr "%P: aviso: nenhuma região de memória especificada para seção carregável \"%s\"\n"
#: ldlang.c:5763
msgid "%P: warning: start of section %s changed by %ld\n"
msgstr "%P: aviso: início da seção %s alterado por %ld\n"
#: ldlang.c:5855
msgid "%P: warning: dot moved backwards before `%s'\n"
msgstr "%P: avio: ponto movido para atrás antes de \"%s\"\n"
#: ldlang.c:6036
msgid "%F%P: can't relax section: %E\n"
msgstr "%F%P: não é possível relaxar a seção: %E\n"
#: ldlang.c:6457
msgid "%F%P: invalid data statement\n"
msgstr "%F%P: instrução de dados inválida\n"
#: ldlang.c:6490
msgid "%F%P: invalid reloc statement\n"
msgstr "%F%P: instrução de realocação inválida\n"
#: ldlang.c:6844
msgid "%F%P: gc-sections requires either an entry or an undefined symbol\n"
msgstr "%F%P: gc-sections requer uma entrada ou um símbolo indefinido\n"
#: ldlang.c:6868
msgid "%F%P: %s: can't set start address\n"
msgstr "%F%P: %s: não foi possível definir endereço inicial\n"
#: ldlang.c:6881 ldlang.c:6899
msgid "%F%P: can't set start address\n"
msgstr "%F%P: não foi possível definir endereço inicial\n"
#: ldlang.c:6893
msgid "%P: warning: cannot find entry symbol %s; defaulting to %V\n"
msgstr "%P: aviso: não foi possível localizar símbolo de entrada %s; usando o padrão %V\n"
#: ldlang.c:6904
msgid "%P: warning: cannot find entry symbol %s; not setting start address\n"
msgstr "%P: aviso: não foi possível localizar símbolo de entrada %s; não definindo o endereço inicial\n"
#: ldlang.c:6960
msgid "%F%P: relocatable linking with relocations from format %s (%pB) to format %s (%pB) is not supported\n"
msgstr "%F%P: sem suporte a vinculação realocável com realocações do formato %s (%pB) para o formato %s (%pB)\n"
#: ldlang.c:6970
msgid "%X%P: %s architecture of input file `%pB' is incompatible with %s output\n"
msgstr "%X%P: a arquitetura %s do arquivo de entrada \"%pB\" é incompatível com a saída de %s\n"
#: ldlang.c:6993
msgid "%X%P: failed to merge target specific data of file %pB\n"
msgstr "%X%P: falha ao mesclar dados específicos de alvo do arquivo %pB\n"
#: ldlang.c:7064
msgid "%F%P: could not define common symbol `%pT': %E\n"
msgstr "%F%P: não foi possível definir símbolo comum \"%pT\": %E\n"
#: ldlang.c:7076
msgid ""
"\n"
"Allocating common symbols\n"
msgstr ""
"\n"
"Alocação de símbolos comuns\n"
#: ldlang.c:7077
msgid ""
"Common symbol size file\n"
"\n"
msgstr ""
"Símbolo comum tamanho arquivo\n"
"\n"
#: ldlang.c:7151
msgid "%X%P: error: unplaced orphan section `%pA' from `%pB'\n"
msgstr "%X%P: erro: seção órfã não colocada \"%pA\" de \"%pB\"\n"
#: ldlang.c:7169
msgid "%P: warning: orphan section `%pA' from `%pB' being placed in section `%s'\n"
msgstr "%P: aviso: seção órfã \"%pA\" de \"%pB\" sendo colocada na seção \"%s\"\n"
#: ldlang.c:7260
msgid "%F%P: invalid character %c (%d) in flags\n"
msgstr "%F%P: caractere inválido %c (%d) nas flags\n"
#: ldlang.c:7369
msgid "%F%P:%pS: error: align with input and explicit align specified\n"
msgstr "%F%P:%pS: erro: alinhamento com entrada e alinhamento explícito especificados\n"
#: ldlang.c:7875
msgid "%F%P: %s: plugin reported error after all symbols read\n"
msgstr "%F%P: %s: plug-ins relatou erro após leitura de todos símbolos\n"
#: ldlang.c:8312
msgid "%F%P: multiple STARTUP files\n"
msgstr "%F%P: múltiplos arquivos STARTUP\n"
#: ldlang.c:8358
msgid "%X%P:%pS: section has both a load address and a load region\n"
msgstr "%X%P:%pS: a seção possui um endereço de carga e uma região de carga\n"
#: ldlang.c:8464
msgid "%X%P:%pS: PHDRS and FILEHDR are not supported when prior PT_LOAD headers lack them\n"
msgstr "%X%P:%pS: Sem suporte a PHDRS e FILEHDR quando estão faltando nos cabeçalhos PT_LOAD anteriores\n"
#: ldlang.c:8537
msgid "%F%P: no sections assigned to phdrs\n"
msgstr "%F%P: nenhuma seção atribuída a phdrs\n"
#: ldlang.c:8575
msgid "%F%P: bfd_record_phdr failed: %E\n"
msgstr "%F%P: bfd_record_phdr falhou: %E\n"
#: ldlang.c:8595
msgid "%X%P: section `%s' assigned to non-existent phdr `%s'\n"
msgstr "%X%P: seção \"%s\" atribuída a phdr não existente \"%s\"\n"
#: ldlang.c:9018
msgid "%X%P: unknown language `%s' in version information\n"
msgstr "%X%P: linguagem desconhecida \"%s\" na informação da versão\n"
#: ldlang.c:9163
msgid "%X%P: anonymous version tag cannot be combined with other version tags\n"
msgstr "%X%P: tag de versão anônima não pode ser combinada com de outras versões\n"
#: ldlang.c:9172
msgid "%X%P: duplicate version tag `%s'\n"
msgstr "%X%P: tag versão duplicada \"%s\"\n"
#: ldlang.c:9193 ldlang.c:9202 ldlang.c:9220 ldlang.c:9230
msgid "%X%P: duplicate expression `%s' in version information\n"
msgstr "%X%P: expressão duplicada \"%s\" na informação de versão\n"
#: ldlang.c:9270
msgid "%X%P: unable to find version dependency `%s'\n"
msgstr "%X%P: não foi possível localizar a dependência de versão \"%s\"\n"
#: ldlang.c:9293
msgid "%X%P: unable to read .exports section contents\n"
msgstr "%X%P: não foi possível ler conteúdo de seção .exports\n"
#: ldlang.c:9331
msgid "%F%P: invalid origin for memory region %s\n"
msgstr "%F%P: origem inválida para região de memória %s\n"
#: ldlang.c:9340
msgid "%F%P: invalid length for memory region %s\n"
msgstr "%F%P: tamanho inválido para região de memória %s\n"
#: ldlang.c:9451
msgid "%X%P: unknown feature `%s'\n"
msgstr "%X%P: recurso desconhecido \"%s\"\n"
#: ldmain.c:194
msgid "%F%P: cannot open dependency file %s: %E\n"
msgstr "%F%P: não foi possível abrir o arquivo de dependência %s: %E\n"
#: ldmain.c:264
msgid "%F%P: fatal error: libbfd ABI mismatch\n"
msgstr "%F%P: erro fatal: ABI de libbfd incompatível\n"
#: ldmain.c:300
msgid "%X%P: can't set BFD default target to `%s': %E\n"
msgstr "%X%P: não foi possível definir alvo padrão BFD para \"%s\": %E\n"
#: ldmain.c:402
msgid "built in linker script"
msgstr "script de vinculador incorporado"
#: ldmain.c:412
msgid "using external linker script:"
msgstr "usando script de vinculador externo:"
#: ldmain.c:414
msgid "using internal linker script:"
msgstr "usando script de vinculador interno:"
#: ldmain.c:461
msgid "%F%P: --no-define-common may not be used without -shared\n"
msgstr "%F%P: --no-define-common não pode ser usado sem -shared\n"
#: ldmain.c:467
msgid "%F%P: no input files\n"
msgstr "%F%P: nenhum arquivo de entrada\n"
#: ldmain.c:471
msgid "%P: mode %s\n"
msgstr "%P: modo %s\n"
#: ldmain.c:487 ends32belf.c:418 ends32belf16m.c:418 ends32belf_linux.c:547
#: ends32elf.c:418 ends32elf16m.c:418 ends32elf_linux.c:547
msgid "%F%P: cannot open map file %s: %E\n"
msgstr "%F%P: não foi possível abrir o arquivo de mapeamento %s: %E\n"
#: ldmain.c:540
msgid "%P: link errors found, deleting executable `%s'\n"
msgstr "%P: erros de vinculação localizados, excluindo executável \"%s\"\n"
#: ldmain.c:549
msgid "%F%P: %pB: final close failed: %E\n"
msgstr "%F%P: %pB: fechamento final falhou: %E\n"
#: ldmain.c:576
msgid "%F%P: unable to open for source of copy `%s'\n"
msgstr "%F%P: não foi possível abrir para ordem da cópia \"%s\"\n"
#: ldmain.c:579
msgid "%F%P: unable to open for destination of copy `%s'\n"
msgstr "%F%P: não foi possível abrir para destino da cópia \"%s\"\n"
#: ldmain.c:586
msgid "%P: error writing file `%s'\n"
msgstr "%P: erro ao escrever o arquivo \"%s\"\n"
#: ldmain.c:591 pe-dll.c:1949
#, c-format
msgid "%P: error closing file `%s'\n"
msgstr "%P: erro ao fechar o arquivo \"%s\"\n"
#: ldmain.c:605
#, c-format
msgid "%s: total time in link: %ld.%06ld\n"
msgstr "%s: tempo total no vínculo: %ld.%06ld\n"
#: ldmain.c:692
msgid "%F%P: missing argument to -m\n"
msgstr "%F%P: faltando argumento para -m\n"
#: ldmain.c:742 ldmain.c:759 ldmain.c:779 ldmain.c:811 pe-dll.c:1395
msgid "%F%P: bfd_hash_table_init failed: %E\n"
msgstr "%F%P: bfd_hash_table_init falhou: %E\n"
#: ldmain.c:746 ldmain.c:763 ldmain.c:783
msgid "%F%P: bfd_hash_lookup failed: %E\n"
msgstr "%F%P: bfd_hash_lookup falhou: %E\n"
#: ldmain.c:797
msgid "%X%P: error: duplicate retain-symbols-file\n"
msgstr "%X%P: erro: retain-symbols-file duplicado\n"
#: ldmain.c:841
msgid "%F%P: bfd_hash_lookup for insertion failed: %E\n"
msgstr "%F%P: bfd_hash_lookup para inserção falhou: %E\n"
#: ldmain.c:846
msgid "%P: `-retain-symbols-file' overrides `-s' and `-S'\n"
msgstr "%P: \"-retain-symbols-file\" sobrepõe \"-s\" e \"-S\"\n"
#: ldmain.c:962
msgid ""
"Archive member included to satisfy reference by file (symbol)\n"
"\n"
msgstr ""
"Membro de arquivo incluído para satisfazer referência por arquivo (símbolo)\n"
"\n"
#: ldmain.c:1071
msgid "%X%P: %C: multiple definition of `%pT'"
msgstr "%X%P: %C: múltiplas definições de \"%pT\""
#: ldmain.c:1074
msgid "; %D: first defined here"
msgstr "; %D: definido primeiro aqui"
#: ldmain.c:1079
msgid "%P: disabling relaxation; it will not work with multiple definitions\n"
msgstr "%P: desabilitando relaxamento; não vai funcionar com múltiplas definições\n"
#: ldmain.c:1132
msgid "%P: %pB: warning: definition of `%pT' overriding common from %pB\n"
msgstr "%P: %pB: aviso: definição de \"%pT\" sobrepondo comum de %pB\n"
#: ldmain.c:1136
msgid "%P: %pB: warning: definition of `%pT' overriding common\n"
msgstr "%P: %pB: aviso: definição de \"%pT\" sobrepondo comum\n"
#: ldmain.c:1145
msgid "%P: %pB: warning: common of `%pT' overridden by definition from %pB\n"
msgstr "%P: %pB: aviso: comum de \"%pT\" sobreposto pela definição de %pB\n"
#: ldmain.c:1149
msgid "%P: %pB: warning: common of `%pT' overridden by definition\n"
msgstr "%P: %pB: aviso: comum de \"%pT\" sobreposto pela definição\n"
#: ldmain.c:1158
msgid "%P: %pB: warning: common of `%pT' overridden by larger common from %pB\n"
msgstr "%P: %pB: aviso: comum de \"%pT\" sobreposto por um comum maior de %pB\n"
#: ldmain.c:1162
msgid "%P: %pB: warning: common of `%pT' overridden by larger common\n"
msgstr "%P: %pB: aviso: comum de \"%pT\" sobreposto por um comum maior\n"
#: ldmain.c:1169
msgid "%P: %pB: warning: common of `%pT' overriding smaller common from %pB\n"
msgstr "%P: %pB: aviso: comum de \"%pT\" sobrepondo um comum menor de %pB\n"
#: ldmain.c:1173
msgid "%P: %pB: warning: common of `%pT' overriding smaller common\n"
msgstr "%P: %pB: aviso: comum de \"%pT\" sobrepondo um comum menor\n"
#: ldmain.c:1180
msgid "%P: %pB and %pB: warning: multiple common of `%pT'\n"
msgstr "%P: %pB e %pB: aviso: múltiplos comuns de \"%pT\"\n"
#: ldmain.c:1183
msgid "%P: %pB: warning: multiple common of `%pT'\n"
msgstr "%P: %pB: aviso: múltiplos comuns de \"%pT\"\n"
#: ldmain.c:1202 ldmain.c:1238
msgid "%P: warning: global constructor %s used\n"
msgstr "%P: aviso: construtor global %s usado\n"
#: ldmain.c:1248
msgid "%F%P: BFD backend error: BFD_RELOC_CTOR unsupported\n"
msgstr "%F%P: erro de backend BFD: sem suporte a BFD_RELOC_CTOR\n"
#. We found a reloc for the symbol we are looking for.
#: ldmain.c:1320 ldmain.c:1322 ldmain.c:1324 ldmain.c:1332 ldmain.c:1375
msgid "warning: "
msgstr "aviso: "
#: ldmain.c:1427
msgid "%X%P: %C: undefined reference to `%pT'\n"
msgstr "%X%P: %C: referência não definida para \"%pT\"\n"
#: ldmain.c:1430
msgid "%P: %C: warning: undefined reference to `%pT'\n"
msgstr "%P: %C: aviso: referência não definida para \"%pT\"\n"
#: ldmain.c:1436
msgid "%X%P: %D: more undefined references to `%pT' follow\n"
msgstr "%X%P: %D: mais referências não definidas para \"%pT\" seguir\n"
#: ldmain.c:1439
msgid "%P: %D: warning: more undefined references to `%pT' follow\n"
msgstr "%P: %D: aviso: mais referências não definidas para \"%pT\" seguir\n"
#: ldmain.c:1450
msgid "%X%P: %pB: undefined reference to `%pT'\n"
msgstr "%X%P: %pB: referência não definida para \"%pT\"\n"
#: ldmain.c:1453
msgid "%P: %pB: warning: undefined reference to `%pT'\n"
msgstr "%P: %pB: aviso: referência não definida para \"%pT\"\n"
#: ldmain.c:1459
msgid "%X%P: %pB: more undefined references to `%pT' follow\n"
msgstr "%X%P: %pB: mais referências não definidas para \"%pT\" seguir\n"
#: ldmain.c:1462
msgid "%P: %pB: warning: more undefined references to `%pT' follow\n"
msgstr "%P: %pB: aviso: mais referências não definidas para \"%pT\" seguir\n"
#: ldmain.c:1499
msgid " additional relocation overflows omitted from the output\n"
msgstr " estouro de realocação adiciona omitido da saída\n"
#: ldmain.c:1512
#, c-format
msgid " relocation truncated to fit: %s against undefined symbol `%pT'"
msgstr " realocação truncada para caber: %s contra símbolo não definido \"%pT\""
#: ldmain.c:1518
#, c-format
msgid " relocation truncated to fit: %s against symbol `%pT' defined in %pA section in %pB"
msgstr " realocação truncada para caber: %s contra símbolo não definido \"%pT\" na seção %pA em %pB"
#: ldmain.c:1531
#, c-format
msgid " relocation truncated to fit: %s against `%pT'"
msgstr " realocação truncada para caber: %s contra \"%pT\""
#: ldmain.c:1547
msgid "%X%H: dangerous relocation: %s\n"
msgstr "%X%H: realocação perigosa: %s\n"
#: ldmain.c:1561
msgid "%X%H: reloc refers to symbol `%pT' which is not being output\n"
msgstr "%X%H: a realocação faz referência a símbolo \"%pT\" que não está sendo emitido\n"
#: ldmain.c:1595
msgid "%P: %pB: reference to %s\n"
msgstr "%P: %pB: referência a %s\n"
#: ldmain.c:1597
msgid "%P: %pB: definition of %s\n"
msgstr "%P: %pB: definição de %s\n"
#: ldmisc.c:374
#, c-format
msgid "%pB: in function `%pT':\n"
msgstr "%pB: na função \"%pT\":\n"
#: ldmisc.c:512
#, c-format
msgid "no symbol"
msgstr "nenhum símbolo"
#: ldmisc.c:619
msgid "%F%P: internal error %s %d\n"
msgstr "%F%P: erro interno %s %d\n"
#: ldmisc.c:683
msgid "%P: internal error: aborting at %s:%d in %s\n"
msgstr "%P: erro interno: abortando em %s:%d em %s\n"
#: ldmisc.c:686
msgid "%P: internal error: aborting at %s:%d\n"
msgstr "%P: erro interno: abortando em %s:%d\n"
#: ldmisc.c:688
msgid "%F%P: please report this bug\n"
msgstr "%F%P: Por favor, relate o erro\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) 2020 Free Software Foundation, Inc.\n"
msgstr "Copyright (C) 2020 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 é um software livre; você pode redistribuí-lo sob os termos\n"
"da Licença Pública Geral GNU versão 3 ou (a seu critério) uma versão posterior.\n"
"Esse programa possui absolutamente nenhuma garantia.\n"
#: ldver.c:53
#, c-format
msgid " Supported emulations:\n"
msgstr " Emulações com suporte:\n"
#: ldwrite.c:60 ldwrite.c:170 ldwrite.c:222 ldwrite.c:263
msgid "%F%P: bfd_new_link_order failed\n"
msgstr "%F%P: bfd_new_link_order falhou\n"
#: ldwrite.c:332
msgid "%F%P: cannot create split section name for %s\n"
msgstr "%F%P: não foi possível criar nome de seção dividida para %s\n"
#: ldwrite.c:344
msgid "%F%P: clone section failed: %E\n"
msgstr "%F%P: clonagem de seção falhou: %E\n"
#: ldwrite.c:382
#, c-format
msgid "%8x something else\n"
msgstr "%8x alguma outra coisa\n"
#: ldwrite.c:552
msgid "%F%P: final link failed: %E\n"
msgstr "%F%P: vinculação final falhou: %E\n"
#: lexsup.c:103 lexsup.c:288
msgid "KEYWORD"
msgstr "PALAVRA-CHAVE"
# Dividi linhas para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:103
msgid "Shared library control for HP/UX compatibility"
msgstr ""
"Controle de biblioteca compartilhada para\n"
" compatibilidade com HP/UX"
#: lexsup.c:106
msgid "ARCH"
msgstr "ARCH"
#: lexsup.c:106
msgid "Set architecture"
msgstr "Define a arquitetura"
#: lexsup.c:108 lexsup.c:415
msgid "TARGET"
msgstr "ALVO"
# Dividi linhas para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:108
msgid "Specify target for following input files"
msgstr ""
"Especifica o alvo para os seguintes arquivos\n"
" de entrada"
#: lexsup.c:111 lexsup.c:117 lexsup.c:174 lexsup.c:178 lexsup.c:214
#: lexsup.c:227 lexsup.c:229 lexsup.c:433 lexsup.c:500 lexsup.c:513
#: lexsup.c:517
msgid "FILE"
msgstr "ARQUIVO"
#: lexsup.c:111
msgid "Read MRI format linker script"
msgstr "Lê script de vinculador no formato MRI"
#: lexsup.c:113
msgid "Force common symbols to be defined"
msgstr "Força símbolos comuns a serem definidos"
#: lexsup.c:117
msgid "Write dependency file"
msgstr "Grava um arquivo de dependência"
#: lexsup.c:120
msgid "Force group members out of groups"
msgstr "Força membros de grupos para fora dos grupos"
#: lexsup.c:122 lexsup.c:477 lexsup.c:479 lexsup.c:481 lexsup.c:483
#: lexsup.c:485 lexsup.c:487
msgid "ADDRESS"
msgstr "ENDEREÇO"
#: lexsup.c:122
msgid "Set start address"
msgstr "Define o endereço inicial"
#: lexsup.c:124
msgid "Export all dynamic symbols"
msgstr "Exporta todas os símbolos dinâmicos"
#: lexsup.c:126
msgid "Undo the effect of --export-dynamic"
msgstr "Desfaz o efeito de --export-dynamic"
#: lexsup.c:128
msgid "Enable support of non-contiguous memory regions"
msgstr "Habilita suporte de regiões de memória não contígua"
#: lexsup.c:130
msgid "Enable warnings when --enable-non-contiguous-regions may cause unexpected behaviour"
msgstr "Habilita avisos quando --enable-non-contiguous-regions pode causar comportamento inesperado"
#: lexsup.c:132
msgid "Link big-endian objects"
msgstr "Vincula objetos big-endian"
#: lexsup.c:134
msgid "Link little-endian objects"
msgstr "Vincula objetos little-endian"
#: lexsup.c:136 lexsup.c:139
msgid "SHLIB"
msgstr "SHLIB"
# Dividi linhas para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:136
msgid "Auxiliary filter for shared object symbol table"
msgstr ""
"Filtro auxiliar para tabela de símbolos\n"
" de objeto compartilhado"
# Dividi linhas para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:139
msgid "Filter for shared object symbol table"
msgstr ""
"Filtro para tabela de símbolos de objeto\n"
" compartilhado"
#: lexsup.c:142
msgid "Ignored"
msgstr "Ignorado"
#: lexsup.c:144
msgid "SIZE"
msgstr "TAMANHO"
# Dividi linhas para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:144
msgid "Small data size (if no size, same as --shared)"
msgstr ""
"Tamanho de dados pequenos (se nenhum tamanho,\n"
" mesmo que --shared)"
#: lexsup.c:147
msgid "FILENAME"
msgstr "ARQUIVO"
#: lexsup.c:147
msgid "Set internal name of shared library"
msgstr "Define nome interno da biblioteca compartilhada"
#: lexsup.c:149
msgid "PROGRAM"
msgstr "PROGRAMA"
#: lexsup.c:149
msgid "Set PROGRAM as the dynamic linker to use"
msgstr "Define PROGRAMA como vinculador dinâmico a usar"
# Dividi linhas para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:152
msgid "Produce an executable with no program interpreter header"
msgstr ""
"Produz um executável com nenhum cabeçalho\n"
" de interpretação de programa"
#: lexsup.c:155
msgid "LIBNAME"
msgstr "NOMELIB"
#: lexsup.c:155
msgid "Search for library LIBNAME"
msgstr "Pesquisa pela biblioteca NOMELIB"
#: lexsup.c:157
msgid "DIRECTORY"
msgstr "DIRETÓRIO"
# Dividi linhas para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:157
msgid "Add DIRECTORY to library search path"
msgstr ""
"Adiciona DIRETÓRIO ao caminho de pesquisa\n"
" de biblioteca"
#: lexsup.c:160
msgid "Override the default sysroot location"
msgstr "Substitui o local da raiz do sistema padrão"
#: lexsup.c:162
msgid "EMULATION"
msgstr "EMULAÇÃO"
# Espaço extra para promover alinhamento -- Rafael
#: lexsup.c:162
msgid "Set emulation"
msgstr " Define emulação"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:164
msgid "Print map file on standard output"
msgstr ""
"Imprime o arquivo de mapeamento para a saída\n"
" padrão"
#: lexsup.c:166
msgid "Do not page align data"
msgstr "Não alinha em página os dados"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:168
msgid "Do not page align data, do not make text readonly"
msgstr ""
"Não alinha em página os dados, não torna o\n"
" texto somente leitura"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:171
msgid "Page align data, make text readonly"
msgstr ""
"Alinha em página os dados, torna o\n"
" texto somente leitura"
#: lexsup.c:174
msgid "Set output file name"
msgstr "Define nome de arquivo de saída"
#: lexsup.c:176
msgid "Optimize output file"
msgstr "Otimiza o arquivo de saída"
#: lexsup.c:178
msgid "Generate import library"
msgstr "Gera biblioteca de importação"
#: lexsup.c:181 lexsup.c:192
msgid "PLUGIN"
msgstr "PLUG-IN"
#: lexsup.c:181
msgid "Load named plugin"
msgstr "Carrega o plug-in especificado"
#: lexsup.c:183 lexsup.c:194
msgid "ARG"
msgstr "ARG"
#: lexsup.c:183
msgid "Send arg to last-loaded plugin"
msgstr "Envia arg para o último plug-in carregado"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:185 lexsup.c:188
msgid "Ignored for GCC LTO option compatibility"
msgstr ""
"Ignorada para manter compatibilidade com\n"
" a opção LTO do GCC"
#: lexsup.c:192
msgid "Load named plugin (ignored)"
msgstr "Carrega o plug-in especificado (ignorado)"
#: lexsup.c:194
msgid "Send arg to last-loaded plugin (ignored)"
msgstr "Envia arg para o último plug-in carregado (ignorado)"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:197
msgid "Ignored for GCC linker option compatibility"
msgstr ""
"Ignorada para manter compatibilidade com\n"
" a opção de vinculação do GCC"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:200 lexsup.c:203
msgid "Ignored for gold option compatibility"
msgstr ""
"Ignorada para manter compatibilidade com\n"
" a opção gold"
#: lexsup.c:206
msgid "Ignored for SVR4 compatibility"
msgstr "Ignorada para manter compatibilidade com SVR4"
#: lexsup.c:210
msgid "Generate relocatable output"
msgstr "Gera uma saída realocável"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:214
msgid "Just link symbols (if directory, same as --rpath)"
msgstr ""
"Só vincula símbolos (se diretório, igual\n"
" a --rpath)"
#: lexsup.c:217
msgid "Strip all symbols"
msgstr "Remove todos símbolos"
#: lexsup.c:219
msgid "Strip debugging symbols"
msgstr "Remove símbolos de depuração"
#: lexsup.c:221
msgid "Strip symbols in discarded sections"
msgstr "Remove símbolos nas seções descartadas"
#: lexsup.c:223
msgid "Do not strip symbols in discarded sections"
msgstr "Não remove símbolos nas seções descartadas"
#: lexsup.c:225
msgid "Trace file opens"
msgstr "Rastreia aberturas de arquivos"
#: lexsup.c:227
msgid "Read linker script"
msgstr "Lê script do vinculador"
#: lexsup.c:229
msgid "Read default linker script"
msgstr "Lê o script do vinculador padrão"
#: lexsup.c:233 lexsup.c:236 lexsup.c:254 lexsup.c:343 lexsup.c:367
#: lexsup.c:470 lexsup.c:503 lexsup.c:515 lexsup.c:553 lexsup.c:556
msgid "SYMBOL"
msgstr "SÍMBOLO"
#: lexsup.c:233
msgid "Start with undefined reference to SYMBOL"
msgstr "Inicia com referência não definida a SÍMBOLO"
#: lexsup.c:236
msgid "Require SYMBOL be defined in the final output"
msgstr "Exibe que SÍMBOLO esteja definido na saída final"
#: lexsup.c:239
msgid "[=SECTION]"
msgstr "[=SEÇÃO]"
# Espaço extra para promover alinhamento -- Rafael
#: lexsup.c:240
msgid "Don't merge input [SECTION | orphan] sections"
msgstr " Não mescla seções [SEÇÃO | órfãs] de entrada"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:242
msgid "Build global constructor/destructor tables"
msgstr ""
"Constrói tabelas globais de\n"
" construtor/desconstrutor"
#: lexsup.c:244
msgid "Print version information"
msgstr "Emite as informações da versão"
#: lexsup.c:246
msgid "Print version and emulation information"
msgstr "Exibe as informações da versão e emulação"
#: lexsup.c:248
msgid "Discard all local symbols"
msgstr "Descarta todos os símbolos locais"
#: lexsup.c:250
msgid "Discard temporary local symbols (default)"
msgstr "Descarta símbolos locais temporários (padrão)"
#: lexsup.c:252
msgid "Don't discard any local symbols"
msgstr "Não descarta quaisquer símbolos locais"
#: lexsup.c:254
msgid "Trace mentions of SYMBOL"
msgstr "Rastreia menções ao SÍMBOLO"
#: lexsup.c:256 lexsup.c:435 lexsup.c:437
msgid "PATH"
msgstr "CAMINHO"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:256
msgid "Default search path for Solaris compatibility"
msgstr ""
"O caminho de pesquisa padrão para manter\n"
" compatibilidade com Solaris"
#: lexsup.c:259
msgid "Start a group"
msgstr "Inicia um grupo"
#: lexsup.c:261
msgid "End a group"
msgstr "Termina um grupo"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:265
msgid "Accept input files whose architecture cannot be determined"
msgstr ""
"Aceita arquivos de entrada cuja arquitetura\n"
" não pôde ser determinada"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:269
msgid "Reject input files whose architecture is unknown"
msgstr ""
"Rejeita arquivos de entrada cuja arquitetura\n"
" é desconhecida"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:281
msgid "Only set DT_NEEDED for following dynamic libs if used"
msgstr ""
"Só define DT_NEEDED para as seguintes\n"
" bibliotecas dinâmicas se usadas"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:284
msgid ""
"Always set DT_NEEDED for dynamic libraries mentioned on\n"
" the command line"
msgstr ""
"Sempre define DT_NEEDED para bibliotecas\n"
" dinâmicas mencionadas na linha de comando"
#: lexsup.c:288
msgid "Ignored for SunOS compatibility"
msgstr "Ignorado por questão de compatibilidade com SunOS"
#: lexsup.c:290
msgid "Link against shared libraries"
msgstr "Vincula com bibliotecas compartilhadas"
#: lexsup.c:296
msgid "Do not link against shared libraries"
msgstr "Não vincula com bibliotecas compartilhadas"
#: lexsup.c:304
msgid "Bind global references locally"
msgstr "Associa referências globais localmente"
#: lexsup.c:306
msgid "Bind global function references locally"
msgstr "Associa referências de função global localmente"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:308
msgid "Check section addresses for overlaps (default)"
msgstr ""
"Verifica os endereços de seção por\n"
" sobreposições (padrão)"
#: lexsup.c:311
msgid "Do not check section addresses for overlaps"
msgstr "Não verifica endereços de seção por sobreposições"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:315
msgid "Copy DT_NEEDED links mentioned inside DSOs that follow"
msgstr ""
"Copia vínculos a DT_NEEDED mencionados dentro\n"
" de DSOs que segue"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:319
msgid "Do not copy DT_NEEDED links mentioned inside DSOs that follow"
msgstr ""
"Não copia vínculos a DT_NEEDED mencionados\n"
" dentro de DSOs que segue"
#: lexsup.c:323
msgid "Output cross reference table"
msgstr "Emite tabela de referência cruzada"
#: lexsup.c:325
msgid "SYMBOL=EXPRESSION"
msgstr "SÍMBOLO=EXPRESSÃO"
#: lexsup.c:325
msgid "Define a symbol"
msgstr "Define um símbolo"
#: lexsup.c:327
msgid "[=STYLE]"
msgstr "[=ESTILO]"
# Dividi linhas para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:327
msgid "Demangle symbol names [using STYLE]"
msgstr ""
"Realiza \"demangle\" em nomes de símbolos\n"
" [usando ESTILO]"
#: lexsup.c:331
msgid ""
"Do not allow multiple definitions with symbols included\n"
" in filename invoked by -R or --just-symbols"
msgstr ""
"Não permite vários definições com símbolos\n"
" incluídos no nome de arquivo invocador por\n"
" -R ou --just-symbols"
#: lexsup.c:335
msgid "Generate embedded relocs"
msgstr "Gera realocações incorporadas"
#: lexsup.c:337
msgid "Treat warnings as errors"
msgstr "Trata avisos como erros"
#: lexsup.c:340
msgid "Do not treat warnings as errors (default)"
msgstr "Não trata de avisos como erros (padrão)"
# Espaço extra para promover alinhamento -- Rafael
#: lexsup.c:343
msgid "Call SYMBOL at unload-time"
msgstr " Chama SÍMBOLO em tempo de descarregamento"
#: lexsup.c:345
msgid "Force generation of file with .exe suffix"
msgstr "Força geração de arquivo com sufixo .exe"
#: lexsup.c:347
msgid "Remove unused sections (on some targets)"
msgstr "Remove seções não usadas (em alguns alvos)"
#: lexsup.c:350
msgid "Don't remove unused sections (default)"
msgstr "Não remove seções não usadas (padrão)"
#: lexsup.c:353
msgid "List removed unused sections on stderr"
msgstr "Lista seções não usadas removidas na stderr"
#: lexsup.c:356
msgid "Do not list removed unused sections"
msgstr "Não lista seções não usadas removidas"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:359
msgid "Keep exported symbols when removing unused sections"
msgstr ""
"Mantém símbolos exportados ao remover\n"
" seções não usadas"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:362
msgid "Set default hash table size close to <NUMBER>"
msgstr ""
"Define o tamanho da tabela de hash padrão\n"
" próximo a <NÚMERO>"
#: lexsup.c:365
msgid "Print option help"
msgstr "Emite ajuda das opções"
# Espaço extra para promover alinhamento -- Rafael
#: lexsup.c:367
msgid "Call SYMBOL at load-time"
msgstr " Chama SÍMBOLO em tempo de carregamento"
#: lexsup.c:369
msgid "FILE/DIR"
msgstr "ARQUIVO/DIR"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:369
msgid "Write a linker map to FILE or DIR/<outputname>.map"
msgstr ""
"Escreve um mapeador de vinculador para\n"
" ARQUIVO ou DIR/<nome-saída>.map"
#: lexsup.c:371
msgid "Do not define Common storage"
msgstr "Não define o armazenamento comum"
#: lexsup.c:373
msgid "Do not demangle symbol names"
msgstr "Não realiza \"demangle\" em nomes de símbolos"
#: lexsup.c:375
msgid "Use less memory and more disk I/O"
msgstr "Usa menos memória e mais E/S de disco"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:377
msgid "Do not allow unresolved references in object files"
msgstr ""
"Não permite referências não resolvidas em\n"
" arquivos de objeto"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:380
msgid "Allow unresolved references in shared libraries"
msgstr ""
"Permite referências não resolvidas em\n"
" bibliotecas compartilhadas"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:384
msgid "Do not allow unresolved references in shared libs"
msgstr ""
"Não permite referências não resolvidas em\n"
" bibliotecas compartilhadas"
#: lexsup.c:388
msgid "Allow multiple definitions"
msgstr "Permite múltiplas definições"
#: lexsup.c:390
msgid "Disallow undefined version"
msgstr "Proíbe versão não definida"
#: lexsup.c:392
msgid "Create default symbol version"
msgstr "Cria versão de símbolo padrão"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:395
msgid "Create default symbol version for imported symbols"
msgstr ""
"Cria versão de símbolo padrão para símbolos\n"
" importados"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:398
msgid "Don't warn about mismatched input files"
msgstr ""
"Não avisa sobre arquivos de entrada não\n"
" incompatíveis"
#: lexsup.c:401
msgid "Don't warn on finding an incompatible library"
msgstr "Não avisa ao localizar uma biblioteca incompatível"
#: lexsup.c:404
msgid "Turn off --whole-archive"
msgstr "Desliga --whole-archive"
#: lexsup.c:406
msgid "Create an output file even if errors occur"
msgstr "Cria um arquivo de saída mesmo se ocorrer erros"
#: lexsup.c:411
msgid ""
"Only use library directories specified on\n"
" the command line"
msgstr ""
"Usa somente diretórios de biblioteca\n"
" especificados na linha de comando"
#: lexsup.c:415
msgid "Specify target of output file"
msgstr "Especifica alvo de arquivo de saída"
#: lexsup.c:418
msgid "Print default output format"
msgstr "Emite o formato de saída padrão"
#: lexsup.c:420
msgid "Print current sysroot"
msgstr "Emite sysroot atual"
#: lexsup.c:422
msgid "Ignored for Linux compatibility"
msgstr "Ignorado por questão de compatibilidade com Linux"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:425
msgid "Reduce memory overheads, possibly taking much longer"
msgstr ""
"Reduz excessos de uso de memória,\n"
" possivelmente demorando mais"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:428
msgid "Reduce code size by using target specific optimizations"
msgstr ""
"Reduz o tamanho do código usando\n"
" otimizações específicas de alvo"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:430
msgid "Do not use relaxation techniques to reduce code size"
msgstr ""
"Não usa técnicas de relaxamento para\n"
" reduzir tamanho do código"
#: lexsup.c:433
msgid "Keep only symbols listed in FILE"
msgstr "Mantém apenas símbolos listados no ARQUIVO"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:435
msgid "Set runtime shared library search path"
msgstr ""
"Define o caminho de pesquisa de biblioteca\n"
" compartilhada em tempo de execução"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:437
msgid "Set link time shared library search path"
msgstr ""
"Define o caminho de pesquisa de biblioteca\n"
" compartilhada em tempo de vínculo"
#: lexsup.c:440
msgid "Create a shared library"
msgstr "Cria uma biblioteca compartilhada"
#: lexsup.c:444
msgid "Create a position independent executable"
msgstr "Cria um executável independente de posição"
#: lexsup.c:448
msgid "[=ascending|descending]"
msgstr "[=ascending|descending]"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:449
msgid "Sort common symbols by alignment [in specified order]"
msgstr ""
"Ordena símbolos comuns por alinhamento\n"
" [na ordem especificada]"
#: lexsup.c:454
msgid "name|alignment"
msgstr "nome|alinhamento"
#: lexsup.c:455
msgid "Sort sections by name or maximum alignment"
msgstr "Ordena seções por nome ou alinhamento máximo"
#: lexsup.c:457
msgid "COUNT"
msgstr "QTDE"
#: lexsup.c:457
msgid "How many tags to reserve in .dynamic section"
msgstr "Quantas tags para reservar na seção .dynamic"
#: lexsup.c:460
msgid "[=SIZE]"
msgstr "[=TAMANHO]"
#: lexsup.c:460
msgid "Split output sections every SIZE octets"
msgstr "Divide a saída em seções a cada TAMANHO octetos"
#: lexsup.c:463
msgid "[=COUNT]"
msgstr "[=CONTAGEM]"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:463
msgid "Split output sections every COUNT relocs"
msgstr ""
"Divide a saída em seções a cada CONTAGEM\n"
" realocações"
#: lexsup.c:466
msgid "Print memory usage statistics"
msgstr "Emite estatísticas de uso de memória"
#: lexsup.c:468
msgid "Display target specific options"
msgstr "Exibe opções específicas de alvo"
# Espaço extra para promover alinhamento -- Rafael
#: lexsup.c:470
msgid "Do task level linking"
msgstr " Faz vínculo em nível de tarefa"
#: lexsup.c:472
msgid "Use same format as native linker"
msgstr "Usa o mesmo formato que o vinculador nativo"
#: lexsup.c:474
msgid "SECTION=ADDRESS"
msgstr "SEÇÃO=ENDEREÇO"
#: lexsup.c:474
msgid "Set address of named section"
msgstr "Define o endereço da seção dada"
# Espaço extra para promover alinhamento -- Rafael
#: lexsup.c:477
msgid "Set address of .bss section"
msgstr " Define o endereço da seção .bss"
# Espaço extra para promover alinhamento -- Rafael
#: lexsup.c:479
msgid "Set address of .data section"
msgstr " Define o endereço da seção .data"
# Espaço extra para promover alinhamento -- Rafael
#: lexsup.c:481
msgid "Set address of .text section"
msgstr " Define o endereço da seção .text"
# Espaço extra para promover alinhamento -- Rafael
#: lexsup.c:483
msgid "Set address of text segment"
msgstr " Define o endereço do segmento \"text\""
# Espaço extra para promover alinhamento -- Rafael
#: lexsup.c:485
msgid "Set address of rodata segment"
msgstr " Define o endereço do segmento \"rodata\""
# Espaço extra para promover alinhamento -- Rafael
#: lexsup.c:487
msgid "Set address of ldata segment"
msgstr " Define o endereço do segmento \"ldata\""
# Não traduzir "<method>", pois seu texto correspondente na opção não é traduzível -- Rafael
#: lexsup.c:490
msgid ""
"How to handle unresolved symbols. <method> is:\n"
" ignore-all, report-all, ignore-in-object-files,\n"
" ignore-in-shared-libs"
msgstr ""
"Como tratar símbolos não resolvidos. <method> é:\n"
" ignore-all, report-all, ignore-in-object-files,\n"
" ignore-in-shared-libs"
#: lexsup.c:495
msgid "[=NUMBER]"
msgstr "[=NÚMERO]"
# Espaço extra para promover alinhamento -- Rafael
#: lexsup.c:496
msgid "Output lots of information during link"
msgstr " Emite muitas informações durante vinculação"
#: lexsup.c:500
msgid "Read version information script"
msgstr "Lê script de informações de versão"
#: lexsup.c:503
msgid ""
"Take export symbols list from .exports, using\n"
" SYMBOL as the version."
msgstr ""
"Obtém lista de símbolos de exportação de\n"
" .exports, usando SÍMBOLO como a versão."
#: lexsup.c:507
msgid "Add data symbols to dynamic list"
msgstr "Adiciona símbolos de dados à lista dinâmica"
#: lexsup.c:509
msgid "Use C++ operator new/delete dynamic list"
msgstr ""
"Usa a lista dinâmica dos operações de C++\n"
" new/delete"
#: lexsup.c:511
msgid "Use C++ typeinfo dynamic list"
msgstr "Usa a lista dinâmica de typeinfo de C++"
#: lexsup.c:513
msgid "Read dynamic list"
msgstr "Lê a lista dinâmica"
#: lexsup.c:515
msgid "Export the specified symbol"
msgstr "Exporta o símbolo especificado"
#: lexsup.c:517
msgid "Read export dynamic symbol list"
msgstr "Lê a lista de símbolos dinâmicos exportados"
#: lexsup.c:519
msgid "Warn about duplicate common symbols"
msgstr "Avisa sobre símbolos comuns duplicados"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:521
msgid "Warn if global constructors/destructors are seen"
msgstr ""
"Avisa se construtores/destrutores globais\n"
" forem vistos"
#: lexsup.c:524
msgid "Warn if the multiple GP values are used"
msgstr "Avisa se os múltiplos valores de GP forem usados"
#: lexsup.c:526
msgid "Warn only once per undefined symbol"
msgstr "Avisa uma vez por símbolo não definido"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:528
msgid "Warn if start of section changes due to alignment"
msgstr ""
"Avisa se o início da seção alterar em razão\n"
" de alinhamento"
#: lexsup.c:533
msgid "Warn if outpout has DT_TEXTREL (default)"
msgstr "Avisa se a saída tem DT_TEXTREL (padrão)"
#: lexsup.c:535
msgid "Warn if outpout has DT_TEXTREL"
msgstr "Avisa se a saída tem DT_TEXTREL"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:541
msgid "Warn if an object has alternate ELF machine code"
msgstr ""
"Avisa se um objeto possuir código alterativo\n"
" de máquina ELF"
#: lexsup.c:545
msgid "Report unresolved symbols as warnings"
msgstr "Relata símbolos não resolvidos como avisos"
#: lexsup.c:548
msgid "Report unresolved symbols as errors"
msgstr "Relata símbolos não resolvidos como erros"
#: lexsup.c:550
msgid "Include all objects from following archives"
msgstr "Inclui todos os objetos dos seguintes arquivos"
# Espaço extra para promover alinhamento -- Rafael
#: lexsup.c:553
msgid "Use wrapper functions for SYMBOL"
msgstr " Usa funções interfaceadores para SÍMBOLO"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:557
msgid "Unresolved SYMBOL will not cause an error or warning"
msgstr ""
"SÍMBOLO não resolvido não causará um erro\n"
" ou um aviso"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:559
msgid "Push state of flags governing input file handling"
msgstr ""
"Faz push do estado de flags governando\n"
" o tratamento de arquivo de entrada"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:562
msgid "Pop state of flags governing input file handling"
msgstr ""
"Faz pop do estado de flags governando\n"
" o tratamento de arquivo de entrada"
#: lexsup.c:565
msgid "Report target memory usage"
msgstr "Relata uso de memória alvo"
#: lexsup.c:567
msgid "=MODE"
msgstr "=MODO"
#: lexsup.c:567
msgid "Control how orphan sections are handled."
msgstr "Controla como seções órfãs são tratadas."
#: lexsup.c:570
msgid "Show discarded sections in map file output (default)"
msgstr "Mostra seções descartadas na saída de arquivo de mapeamento (padrão)"
#: lexsup.c:573
msgid "Do not show discarded sections in map file output"
msgstr "Não mostra seções descartadas na saída de arquivo de mapeamento"
#: lexsup.c:751
msgid "%P: %s: missing argument\n"
msgstr "%P: %s: argumento em falta\n"
#: lexsup.c:756
msgid "%P: unrecognized option '%s'\n"
msgstr "%P: opção não reconhecida \"%s\"\n"
#: lexsup.c:761
msgid "%F%P: use the --help option for usage information\n"
msgstr "%F%P: use a opção --help para informações de uso\n"
#: lexsup.c:780
msgid "%F%P: unrecognized -a option `%s'\n"
msgstr "%F%P: opção -a não reconhecida \"%s\"\n"
#: lexsup.c:793
msgid "%F%P: unrecognized -assert option `%s'\n"
msgstr "%F%P: opção -assert não reconhecida \"%s\"\n"
#: lexsup.c:837
msgid "%F%P: unknown demangling style `%s'\n"
msgstr "%F%P: estilo de \"demangling\" desconhecido \"%s\"\n"
#: lexsup.c:913 lexsup.c:1372 eaarch64cloudabi.c:803 eaarch64cloudabib.c:803
#: eaarch64elf.c:798 eaarch64elf32.c:798 eaarch64elf32b.c:798
#: eaarch64elfb.c:798 eaarch64fbsd.c:803 eaarch64fbsdb.c:803
#: eaarch64linux.c:803 eaarch64linux32.c:803 eaarch64linux32b.c:803
#: eaarch64linuxb.c:803 earmelf.c:1064 earmelf_fbsd.c:1064
#: earmelf_fuchsia.c:1069 earmelf_linux.c:1069 earmelf_linux_eabi.c:1069
#: earmelf_linux_fdpiceabi.c:1069 earmelf_nacl.c:1069 earmelf_nbsd.c:1064
#: earmelf_phoenix.c:1069 earmelf_vxworks.c:1100 earmelfb.c:1064
#: earmelfb_fbsd.c:1064 earmelfb_fuchsia.c:1069 earmelfb_linux.c:1069
#: earmelfb_linux_eabi.c:1069 earmelfb_linux_fdpiceabi.c:1069
#: earmelfb_nacl.c:1069 earmelfb_nbsd.c:1064 earmnto.c:1039 earmsymbian.c:1064
#: ecskyelf.c:530 ecskyelf_linux.c:693 eelf32metag.c:690 eelf64lppc.c:1149
#: eelf64ppc.c:1149 eelf64ppc_fbsd.c:1149 ehppaelf.c:550 ehppalinux.c:728
#: ehppanbsd.c:728 ehppaobsd.c:728
msgid "%F%P: invalid number `%s'\n"
msgstr "%F%P: número inválido \"%s\"\n"
#: lexsup.c:1009
msgid "%F%P: bad --unresolved-symbols option: %s\n"
msgstr "%F%P: opção --unresolved-symbols inválida: %s\n"
#: lexsup.c:1077
msgid "%F%P: bad -plugin-opt option\n"
msgstr "%F%P: opção -plugin-opt inválida\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:1094
msgid "%F%P: unrecognised option: %s\n"
msgstr "%F%P: opção não reconhecida %s\n"
#: lexsup.c:1097 lexsup.c:1207 lexsup.c:1225 lexsup.c:1341
msgid "%F%P: -r and %s may not be used together\n"
msgstr "%F%P: -r e %s não podem ser usados juntos\n"
#: lexsup.c:1219
msgid "%F%P: -shared not supported\n"
msgstr "%F%P: sem suporte a -shared\n"
#: lexsup.c:1230
msgid "%F%P: -pie not supported\n"
msgstr "%F%P: sem suporte a -pie\n"
#: lexsup.c:1236
msgid "%P: SONAME must not be empty string; keeping previous one\n"
msgstr "%P: SONAME não pode ser uma string vazia; mantendo o anterior\n"
#: lexsup.c:1242
msgid "descending"
msgstr "descendente"
#: lexsup.c:1244
msgid "ascending"
msgstr "ascendente"
#: lexsup.c:1247
msgid "%F%P: invalid common section sorting option: %s\n"
msgstr "%F%P: opção inválida de ordenação de seção comum: %s\n"
#: lexsup.c:1251
msgid "name"
msgstr "nome"
#: lexsup.c:1253
msgid "alignment"
msgstr "alinhamento"
#: lexsup.c:1256
msgid "%F%P: invalid section sorting option: %s\n"
msgstr "%F%P: opção inválida de ordenação de seção: %s\n"
#: lexsup.c:1290
msgid "%F%P: invalid argument to option \"--section-start\"\n"
msgstr "%F%P: argumento inválido para a opção \"--section-start\"\n"
#: lexsup.c:1297
msgid "%F%P: missing argument(s) to option \"--section-start\"\n"
msgstr "%F%P: faltando argumento(s) para a opção \"--section-start\"\n"
#: lexsup.c:1562
msgid "%F%P: group ended before it began (--help for usage)\n"
msgstr "%F%P: o grupo terminou antes de começar (--help para uso)\n"
#: lexsup.c:1590
msgid "%X%P: --hash-size needs a numeric argument\n"
msgstr "%X%P: --hash-size precisa de um argumento numérico\n"
#: lexsup.c:1602
msgid "%F%P: no state pushed before popping\n"
msgstr "%F%P: não foi feito push do estado antes de fazer pop\n"
#: lexsup.c:1625
msgid "%F%P: invalid argument to option \"--orphan-handling\"\n"
msgstr "%F%P: argumento inválido para a opção \"--orphan-handling\"\n"
#: lexsup.c:1648
msgid "%P: no file/directory name provided for map output; ignored\n"
msgstr "%P: nenhum nome de arquivo ou diretório fornecido para saída de mapas; ignorado\n"
#. If this alloc fails then something is probably very
#. wrong. Better to halt now rather than continue on
#. into more problems.
#: lexsup.c:1669
msgid "%P%F: cannot create name for linker map file: %E\n"
msgstr "%P%F: não foi possível criar o nome para o arquivo de mapa de vinculador %E\n"
#: lexsup.c:1680
msgid "%P: SONAME must not be empty string; ignored\n"
msgstr "%P: SONAME não pode ser uma string vazia; ignorado\n"
#: lexsup.c:1686
msgid "%P: missing --end-group; added as last command line option\n"
msgstr "%P: faltando --end-group; adicionado com última opção de linha de comando\n"
#: lexsup.c:1794
msgid "%F%P: -F may not be used without -shared\n"
msgstr "%F%P: -F não pode ser usado sem -shared\n"
#: lexsup.c:1796
msgid "%F%P: -f may not be used without -shared\n"
msgstr "%F%P: -f não pode ser usado sem -shared\n"
#: lexsup.c:1837 lexsup.c:1850
msgid "%F%P: invalid hex number `%s'\n"
msgstr "%F%P: número hexa inválido \"%s\"\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:1880
#, c-format
msgid " --audit=AUDITLIB Specify a library to use for auditing\n"
msgstr ""
" --audit=AUDITLIB Especifica uma biblioteca para usar\n"
" para auditamento\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:1882
#, c-format
msgid " -Bgroup Selects group name lookup rules for DSO\n"
msgstr ""
" -Bgroup Seleciona regras de procura por nome de grupo\n"
" para DSO\n"
#: lexsup.c:1884
#, c-format
msgid " --disable-new-dtags Disable new dynamic tags\n"
msgstr " --disable-new-dtags Desabilita novas tags dinâmicas\n"
#: lexsup.c:1886
#, c-format
msgid " --enable-new-dtags Enable new dynamic tags\n"
msgstr " --enable-new-dtags Habilita novas tags dinâmicas\n"
#: lexsup.c:1888
#, c-format
msgid " --eh-frame-hdr Create .eh_frame_hdr section\n"
msgstr " --eh-frame-hdr Cria a seção .eh_frame_hdr\n"
#: lexsup.c:1890
#, c-format
msgid " --no-eh-frame-hdr Do not create .eh_frame_hdr section\n"
msgstr " --no-eh-frame-hdr Não cria a seção .eh_frame_hdr\n"
#: lexsup.c:1892
#, c-format
msgid " --exclude-libs=LIBS Make all symbols in LIBS hidden\n"
msgstr " --exclude-libs=LIBS Torna todos os símbolos em LIBS ocultos\n"
#: lexsup.c:1894
#, c-format
msgid " --hash-style=STYLE Set hash style to sysv/gnu/both. Default: "
msgstr " --hash-style=ESTILO Define estilo hash para sysv/gnu/both. Padrão: "
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:1913
#, c-format
msgid ""
" -P AUDITLIB, --depaudit=AUDITLIB\n"
" Specify a library to use for auditing dependencies\n"
msgstr ""
" -P AUDITLIB, --depaudit=AUDITLIB\n"
" Especifica biblioteca para usar para auditar\n"
" dependências\n"
#: lexsup.c:1916
#, c-format
msgid " -z combreloc Merge dynamic relocs into one section and sort\n"
msgstr " -z combreloc Mescla realocações dinâmicas numa seção e ordena\n"
#: lexsup.c:1918
#, c-format
msgid " -z nocombreloc Don't merge dynamic relocs into one section\n"
msgstr " -z nocombreloc Não mescla realocações dinâmicas em uma seção\n"
#: lexsup.c:1920
#, c-format
msgid ""
" -z global Make symbols in DSO available for subsequently\n"
" loaded objects\n"
msgstr ""
" -z global Torna símbolos em DSO disponíveis para\n"
" objetos carregados em seguida\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:1923
#, c-format
msgid " -z initfirst Mark DSO to be initialized first at runtime\n"
msgstr ""
" -z initfirst Marca o DSO para ser inicializado primeiro em\n"
" tempo de execução\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:1925
#, c-format
msgid " -z interpose Mark object to interpose all DSOs but executable\n"
msgstr ""
" -z interpose Marca o objeto para interpor todos os DSOs,\n"
" exceto executáveis\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:1927
#, c-format
msgid " -z lazy Mark object lazy runtime binding (default)\n"
msgstr ""
" -z lazy Marca o objeto com vinculação preguiçosa de\n"
" tempo de execução (padrão)\n"
#: lexsup.c:1929
#, c-format
msgid " -z loadfltr Mark object requiring immediate process\n"
msgstr " -z loadfltr Marca o objeto como exigindo processo imediato\n"
#: lexsup.c:1931
#, c-format
msgid " -z nocopyreloc Don't create copy relocs\n"
msgstr " -z nocopyreloc Não cria realocações copiadas\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:1933
#, c-format
msgid " -z nodefaultlib Mark object not to use default search paths\n"
msgstr ""
" -z nodefaultlib Marca o objeto para não usar caminhos de\n"
" pesquisa padrão\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:1935
#, c-format
msgid " -z nodelete Mark DSO non-deletable at runtime\n"
msgstr ""
" -z nodelete Marca DSO como não excluível em tempo\n"
" de execução\n"
#: lexsup.c:1937
#, c-format
msgid " -z nodlopen Mark DSO not available to dlopen\n"
msgstr " -z nodlopen Marca o DSO como não disponível para dlopen\n"
#: lexsup.c:1939
#, c-format
msgid " -z nodump Mark DSO not available to dldump\n"
msgstr " -z nodump Marca o DSO como não disponível para dldump\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:1941
#, c-format
msgid " -z now Mark object non-lazy runtime binding\n"
msgstr ""
" -z now Marca o objeto com vinculação não preguiçosa\n"
" de tempo de execução\n"
#: lexsup.c:1943
#, c-format
msgid ""
" -z origin Mark object requiring immediate $ORIGIN\n"
" processing at runtime\n"
msgstr ""
" -z origin Marca o objeto como exigindo processamento\n"
" imediato de $ORIGIN em tempo de execução\n"
#: lexsup.c:1947
#, c-format
msgid " -z relro Create RELRO program header (default)\n"
msgstr " -z relro Cria cabeçalho de programa RELRO (padrão)\n"
#: lexsup.c:1949
#, c-format
msgid " -z norelro Don't create RELRO program header\n"
msgstr " -z norelro Não cria cabeçalho de programa RELRO\n"
#: lexsup.c:1952
#, c-format
msgid " -z relro Create RELRO program header\n"
msgstr " -z relro Cria cabeçalho de programa RELRO\n"
#: lexsup.c:1954
#, c-format
msgid " -z norelro Don't create RELRO program header (default)\n"
msgstr " -z norelro Não cria cabeçalho de programa RELRO (padrão)\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:1958
#, c-format
msgid " -z separate-code Create separate code program header (default)\n"
msgstr ""
" -z separate-code Cria cabeçalho de programa de código separado\n"
" (padrão)\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:1960
#, c-format
msgid " -z noseparate-code Don't create separate code program header\n"
msgstr ""
" -z noseparate-code Não cria cabeçalho de programa de código\n"
" separado\n"
#: lexsup.c:1963
#, c-format
msgid " -z separate-code Create separate code program header\n"
msgstr " -z separate-code Cria cabeçalho de programa de código separado\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:1965
#, c-format
msgid " -z noseparate-code Don't create separate code program header (default)\n"
msgstr ""
" -z noseparate-code Não cria cabeçalho de programa de código\n"
" separado (padrão)\n"
#: lexsup.c:1968
#, c-format
msgid " -z common Generate common symbols with STT_COMMON type\n"
msgstr " -z common Gera símbolos comuns com tipo STT_COMMON\n"
#: lexsup.c:1970
#, c-format
msgid " -z nocommon Generate common symbols with STT_OBJECT type\n"
msgstr " -z nocommon Gera símbolos comuns com tipo STT_OBJECT\n"
#: lexsup.c:1972
#, c-format
msgid " -z stack-size=SIZE Set size of stack segment\n"
msgstr " -z stack-size=TAM Define o tamanho do segmento de pilha\n"
#: lexsup.c:1975
#, c-format
msgid " -z text Treat DT_TEXTREL in output as error (default)\n"
msgstr " -z text Trata DT_TEXTREL na saída como erro (padrão)\n"
#: lexsup.c:1978
#, c-format
msgid " -z text Treat DT_TEXTREL in output as error\n"
msgstr " -z text Trata DT_TEXTREL na saída como erro\n"
#: lexsup.c:1982
#, c-format
msgid " -z notext Don't treat DT_TEXTREL in output as error (default)\n"
msgstr " -z notext Não trata DT_TEXTREL na saída como erro (padrão)\n"
#: lexsup.c:1984
#, c-format
msgid " -z textoff Don't treat DT_TEXTREL in output as error (default)\n"
msgstr " -z textoff Não trata DT_TEXTREL na saída como erro (padrão)\n"
#: lexsup.c:1989
#, c-format
msgid " -z notext Don't treat DT_TEXTREL in output as error\n"
msgstr " -z notext Não trata DT_TEXTREL na saída como erro\n"
#: lexsup.c:1991
#, c-format
msgid " -z textoff Don't treat DT_TEXTREL in output as error\n"
msgstr " -z textoff Não trata DT_TEXTREL na saída como erro\n"
#: lexsup.c:1999
#, c-format
msgid " --build-id[=STYLE] Generate build ID note\n"
msgstr " --build-id[=ESTILO] Gera uma nota de ID de compilação\n"
#: lexsup.c:2001
#, c-format
msgid ""
" --compress-debug-sections=[none|zlib|zlib-gnu|zlib-gabi]\n"
" Compress DWARF debug sections using zlib\n"
msgstr ""
" --compress-debug-sections=[none|zlib|zlib-gnu|zlib-gabi]\n"
" Comprime seções de depuração DWARF usando zlib\n"
#: lexsup.c:2005
#, c-format
msgid " Default: zlib-gabi\n"
msgstr " Padrão: zlib-gabi\n"
#: lexsup.c:2008
#, c-format
msgid " Default: none\n"
msgstr " Padrão: nenhum\n"
#: lexsup.c:2011
#, c-format
msgid " -z common-page-size=SIZE Set common page size to SIZE\n"
msgstr " -z common-page-size=TAM Define o tamanho comum de página para TAM\n"
#: lexsup.c:2013
#, c-format
msgid " -z max-page-size=SIZE Set maximum page size to SIZE\n"
msgstr " -z max-page-size=TAM Define o tamanho máximo de página para TAM\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:2015
#, c-format
msgid " -z defs Report unresolved symbols in object files\n"
msgstr ""
" -z defs Relata símbolos não resolvidos em arquivos\n"
" de objeto\n"
#: lexsup.c:2017
#, c-format
msgid " -z muldefs Allow multiple definitions\n"
msgstr " -z muldefs Permite múltiplas definições\n"
#: lexsup.c:2019
#, c-format
msgid " -z execstack Mark executable as requiring executable stack\n"
msgstr " -z execstack Marca executável como exigindo pilha executável\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: lexsup.c:2021
#, c-format
msgid " -z noexecstack Mark executable as not requiring executable stack\n"
msgstr ""
" -z noexecstack Marca executável como não exigindo pilha\n"
" executável\n"
#: lexsup.c:2023
#, c-format
msgid " -z globalaudit Mark executable requiring global auditing\n"
msgstr " -z globalaudit Marca executável como exigindo auditoria global\n"
#: lexsup.c:2030
#, c-format
msgid " --ld-generated-unwind-info Generate exception handling info for PLT\n"
msgstr " --ld-generated-unwind-info Gera info de tratamento de exceção para PLT\n"
#: lexsup.c:2032
#, 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"
" Não gera info de tratamento de exceção para PLT\n"
#: lexsup.c:2043
#, c-format
msgid "ELF emulations:\n"
msgstr "Emulações de ELF:\n"
#: lexsup.c:2061
#, c-format
msgid "Usage: %s [options] file...\n"
msgstr "Uso: %s [opções] arquivo...\n"
#: lexsup.c:2063
#, c-format
msgid "Options:\n"
msgstr "Opções:\n"
#: lexsup.c:2141
#, c-format
msgid " @FILE"
msgstr " @ARQ"
# Espaço extra para promover alinhamento -- Rafael
#: lexsup.c:2144
#, c-format
msgid "Read options from FILE\n"
msgstr " Lê as opções do arquivo ARQ\n"
#. Note: Various tools (such as libtool) depend upon the
#. format of the listings below - do not change them.
#: lexsup.c:2149
#, c-format
msgid "%s: supported targets:"
msgstr "%s: há suporte aos alvos:"
#: lexsup.c:2157
#, c-format
msgid "%s: supported emulations: "
msgstr "%s: há suporte às emulações: "
#: lexsup.c:2162
#, c-format
msgid "%s: emulation specific options:\n"
msgstr "%s: opções específicas de emulação:\n"
#: lexsup.c:2169
#, c-format
msgid "Report bugs to %s\n"
msgstr "Relate erros para %s\n"
#: mri.c:291
msgid "%F%P: unknown format type %s\n"
msgstr "%F%P: tipo de formato desconhecido %s\n"
#: pe-dll.c:447
msgid "%X%P: unsupported PEI architecture: %s\n"
msgstr "%X%P: sem suporte à arquitetura PEI: %s\n"
#: pe-dll.c:825
msgid "%X%P: cannot export %s: invalid export name\n"
msgstr "%X%P: não foi possível exportar %s: nome inválido de exportação\n"
#: pe-dll.c:877
#, c-format
msgid "%X%P: error, duplicate EXPORT with ordinals: %s (%d vs %d)\n"
msgstr "%X%P: erro, EXPORT duplicado com ordinais: %s (%d vs %d)\n"
#: pe-dll.c:884
#, c-format
msgid "%P: warning, duplicate EXPORT: %s\n"
msgstr "%P: aviso, EXPORT duplicado: %s\n"
#: pe-dll.c:991
#, c-format
msgid "%X%P: cannot export %s: symbol not defined\n"
msgstr "%X%P: não foi possível exportar %s: símbolo não definido\n"
#: pe-dll.c:997
#, c-format
msgid "%X%P: cannot export %s: symbol wrong type (%d vs %d)\n"
msgstr "%X%P: não foi possível exportar %s: tipo incorreto de símbolo (%d vs %d)\n"
#: pe-dll.c:1004
#, c-format
msgid "%X%P: cannot export %s: symbol not found\n"
msgstr "%X%P: não foi possível exportar %s: símbolo não localizado\n"
#: pe-dll.c:1027 eaarch64cloudabi.c:360 eaarch64cloudabib.c:360
#: eaarch64elf.c:359 eaarch64elf32.c:359 eaarch64elf32b.c:359
#: eaarch64elfb.c:359 eaarch64fbsd.c:360 eaarch64fbsdb.c:360
#: eaarch64linux.c:360 eaarch64linux32.c:360 eaarch64linux32b.c:360
#: eaarch64linuxb.c:360 eaix5ppc.c:1432 eaix5ppc.c:1442 eaix5rs6.c:1432
#: eaix5rs6.c:1442 eaixppc.c:1432 eaixppc.c:1442 eaixrs6.c:1432 eaixrs6.c:1442
#: earmelf.c:568 earmelf_fbsd.c:568 earmelf_fuchsia.c:569 earmelf_linux.c:569
#: earmelf_linux_eabi.c:569 earmelf_linux_fdpiceabi.c:569 earmelf_nacl.c:569
#: earmelf_nbsd.c:568 earmelf_phoenix.c:569 earmelf_vxworks.c:568
#: earmelfb.c:568 earmelfb_fbsd.c:568 earmelfb_fuchsia.c:569
#: earmelfb_linux.c:569 earmelfb_linux_eabi.c:569
#: earmelfb_linux_fdpiceabi.c:569 earmelfb_nacl.c:569 earmelfb_nbsd.c:568
#: earmnto.c:568 earmsymbian.c:568 ecskyelf.c:163 ecskyelf_linux.c:163
#: eelf32b4300.c:172 eelf32bmip.c:172 eelf32bmipn32.c:186 eelf32bsmip.c:186
#: eelf32btsmip.c:172 eelf32btsmip_fbsd.c:172 eelf32btsmipn32.c:172
#: eelf32btsmipn32_fbsd.c:172 eelf32ebmip.c:172 eelf32ebmipvxworks.c:172
#: eelf32elmip.c:172 eelf32elmipvxworks.c:172 eelf32l4300.c:172
#: eelf32lmip.c:172 eelf32lr5900.c:172 eelf32lr5900n32.c:172 eelf32lsmip.c:172
#: eelf32ltsmip.c:172 eelf32ltsmip_fbsd.c:172 eelf32ltsmipn32.c:172
#: eelf32ltsmipn32_fbsd.c:172 eelf32metag.c:87 eelf32mipswindiss.c:172
#: eelf64bmip.c:186 eelf64btsmip.c:172 eelf64btsmip_fbsd.c:172
#: eelf64lppc.c:117 eelf64ltsmip.c:172 eelf64ltsmip_fbsd.c:172 eelf64ppc.c:117
#: eelf64ppc_fbsd.c:117 ehppaelf.c:110 ehppalinux.c:110 ehppanbsd.c:110
#: ehppaobsd.c:110 em68hc11elf.c:170 em68hc11elfb.c:170 em68hc12elf.c:170
#: em68hc12elfb.c:170 enios2elf.c:92 enios2linux.c:92 eppcmacos.c:1432
#: eppcmacos.c:1442
msgid "%F%P: can not create BFD: %E\n"
msgstr "%F%P: não foi possível criar BFD: %E\n"
#: pe-dll.c:1041
msgid "%X%P: can not create .edata section: %E\n"
msgstr "%X%P: não foi possível criar seção .edata: %E\n"
#: pe-dll.c:1055
msgid "%X%P: can not create .reloc section: %E\n"
msgstr "%X%P: não foi possível criar seção .reloc: %E\n"
#: pe-dll.c:1116
#, c-format
msgid "%X%P: error: ordinal used twice: %d (%s vs %s)\n"
msgstr "%X%P: erro: ordinal usado duas vezes: %d (%s vs %s)\n"
#: pe-dll.c:1152
#, c-format
msgid "%X%P: error: export ordinal too large: %d\n"
msgstr "%X%P: erro: ordinal exportação grande demais: %d\n"
#: pe-dll.c:1475
#, c-format
msgid "Info: resolving %s by linking to %s (auto-import)\n"
msgstr "Info: resolvendo %s por vinculação a %s (autoimportação)\n"
#: pe-dll.c:1481
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: autoimportação foi desativada sem --enable-auto-import especificado na linha de comando; isso deve funcionar a menos que envolva estruturas de dados constantes referenciando símbolos de DLLs autoimportadas\n"
#. Huh? Shouldn't happen, but punt if it does.
#: pe-dll.c:1550
msgid "%P: zero vma section reloc detected: `%s' #%d f=%d\n"
msgstr "%P: realocação de seção de vma zero detectada: \"%s\" #%d f=%d\n"
#: pe-dll.c:1666
#, c-format
msgid "%X%P: error: %d-bit reloc in dll\n"
msgstr "%X%P: erro: realocação de %d bits na dll\n"
#: pe-dll.c:1794
#, c-format
msgid "%P: can't open output def file %s\n"
msgstr "%P: não foi possível abrir arquivo def de saída %s\n"
#: pe-dll.c:1945
#, c-format
msgid "; no contents available\n"
msgstr "; nenhum conteúdo disponível\n"
#: pe-dll.c:2804
msgid "%X%P: %C: variable '%pT' can't be auto-imported; please read the documentation for ld's --enable-auto-import for details\n"
msgstr "%X%P: %C: a variável \"%pT\" não pode ser importada automaticamente; por favor, leia a documentação para --enable-auto-import do \"ld\" para detalhes\n"
#: pe-dll.c:2831
#, c-format
msgid "%X%P: can't open .lib file: %s\n"
msgstr "%X%P: não foi possível abrir o arquivo .lib: %s\n"
#: pe-dll.c:2837
#, c-format
msgid "Creating library file: %s\n"
msgstr "Criando arquivo de biblioteca: %s\n"
#: pe-dll.c:2867
msgid "%X%P: bfd_openr %s: %E\n"
msgstr "%X%P: bfd_openr %s: %E\n"
#: pe-dll.c:2879
msgid "%X%P: %s(%s): can't find member in non-archive file"
msgstr "%X%P: %s(%s): não foi possível localizar membro em arquivo que não é pacote"
#: pe-dll.c:2893
msgid "%X%P: %s(%s): can't find member in archive"
msgstr "%X%P: %s(%s): não foi possível localizar membro no pacote"
#: pe-dll.c:3156
msgid "%X%P: add symbols %s: %E\n"
msgstr "%X%P: adicionar símbolos %s: %E\n"
#: pe-dll.c:3343
msgid "%X%P: open %s: %E\n"
msgstr "%X%P: abrir %s: %E\n"
#: pe-dll.c:3352
msgid "%X%P: %s: this doesn't appear to be a DLL\n"
msgstr "%X%P: %s: isso não parece ser uma DLL\n"
#: pe-dll.c:3557
msgid "%X%P: error: can't use long section names on this arch\n"
msgstr "%X%P: erro: não foi possível usar nomes longos de seção nesta arquitetura\n"
#: plugin.c:233 plugin.c:279
msgid "<no plugin>"
msgstr "<nenhum plug-in>"
#: plugin.c:248 plugin.c:1100
msgid "%F%P: %s: error loading plugin: %s\n"
msgstr "%F%P: %s: erro ao carregar plug-in: %s\n"
#: plugin.c:255
msgid "%P: %s: duplicated plugin\n"
msgstr "%P: %s: plug-in duplicado\n"
#: plugin.c:341
msgid "%F%P: could not create dummy IR bfd: %E\n"
msgstr "%F%P: não foi possível criar bfd IR simulatório: %E\n"
#: plugin.c:422
msgid "%F%P: %s: non-ELF symbol in ELF BFD!\n"
msgstr "%F%P: %s: símbolo não ELF em BFD ELF!\n"
#: plugin.c:433
msgid "%F%P: unknown ELF symbol visibility: %d!\n"
msgstr "%F%P: visibilidade desconhecida de símbolo ELF: %d!\n"
#: plugin.c:542
msgid "%F%P: unsupported input file size: %s (%ld bytes)\n"
msgstr "%F%P: sem suporte ao tamanho de arquivo de entrada: %s (%ld bytes)\n"
#: plugin.c:679
#, c-format
msgid "unknown LTO kind value %x"
msgstr "tipo desconhecido de LTO com valor %x"
#: plugin.c:705
#, c-format
msgid "unknown LTO resolution value %x"
msgstr "resolução desconhecida de LTO com valor %x"
#: plugin.c:725
#, c-format
msgid "unknown LTO visibility value %x"
msgstr "visibilidade desconhecida de LTO com valor %x"
#. We should not have a new, indirect or warning symbol here.
#: plugin.c:805
msgid "%F%P: %s: plugin symbol table corrupt (sym type %d)\n"
msgstr "%F%P: %s: tabela de símbolo de plug-in corrompida (tipo símb %d)\n"
#: plugin.c:867
msgid "%P: %pB: symbol `%s' definition: %s, visibility: %s, resolution: %s\n"
msgstr "%P: %pB: definição de símbolo \"%s\": %s, visibilidade: %s, resolução: %s\n"
#: plugin.c:944
msgid "%P: warning: "
msgstr "%P: aviso: "
#: plugin.c:955
msgid "%P: error: "
msgstr "%P: erro: "
#: plugin.c:1107
msgid "%F%P: %s: plugin error: %d\n"
msgstr "%F%P: %s: erro de plug-in: %d\n"
#: plugin.c:1162
msgid "%F%P: plugin_strdup failed to allocate memory: %s\n"
msgstr "%F%P: plugin_strdup falhou em alocar memória: %s\n"
#: plugin.c:1199
msgid "%F%P: plugin failed to allocate memory for input: %s\n"
msgstr "%F%P: plug-in falhou em alocar memória para entrada: %s\n"
#: plugin.c:1226
msgid "%F%P: %s: plugin reported error claiming file\n"
msgstr "%F%P: %s: o plug-in relatou erro ao reivindicar o arquivo\n"
#: plugin.c:1337
msgid "%P: %s: error in plugin cleanup: %d (ignored)\n"
msgstr "%P: %s: erro na limpeza do plug-in: %d (ignorado)\n"
#: eaarch64cloudabi.c:223 eaarch64cloudabib.c:223 eaarch64elf.c:222
#: eaarch64elf32.c:222 eaarch64elf32b.c:222 eaarch64elfb.c:222
#: eaarch64fbsd.c:223 eaarch64fbsdb.c:223 eaarch64linux.c:223
#: eaarch64linux32.c:223 eaarch64linux32b.c:223 eaarch64linuxb.c:223
#: earmelf.c:292 earmelf_fbsd.c:292 earmelf_fuchsia.c:293 earmelf_linux.c:293
#: earmelf_linux_eabi.c:293 earmelf_linux_fdpiceabi.c:293 earmelf_nacl.c:293
#: earmelf_nbsd.c:292 earmelf_phoenix.c:293 earmelf_vxworks.c:292
#: earmelfb.c:292 earmelfb_fbsd.c:292 earmelfb_fuchsia.c:293
#: earmelfb_linux.c:293 earmelfb_linux_eabi.c:293
#: earmelfb_linux_fdpiceabi.c:293 earmelfb_nacl.c:293 earmelfb_nbsd.c:292
#: earmnto.c:292 earmsymbian.c:292 eavr1.c:178 eavr2.c:178 eavr25.c:178
#: eavr3.c:178 eavr31.c:178 eavr35.c:178 eavr4.c:178 eavr5.c:178 eavr51.c:178
#: eavr6.c:178 eavrtiny.c:178 eavrxmega1.c:178 eavrxmega2.c:178
#: eavrxmega3.c:178 eavrxmega4.c:178 eavrxmega5.c:178 eavrxmega6.c:178
#: eavrxmega7.c:178 ecskyelf.c:210 ecskyelf_linux.c:210 eelf32b4300.c:205
#: eelf32bmip.c:205 eelf32bmipn32.c:219 eelf32bsmip.c:219 eelf32btsmip.c:205
#: eelf32btsmip_fbsd.c:205 eelf32btsmipn32.c:205 eelf32btsmipn32_fbsd.c:205
#: eelf32ebmip.c:205 eelf32ebmipvxworks.c:205 eelf32elmip.c:205
#: eelf32elmipvxworks.c:205 eelf32l4300.c:205 eelf32lmip.c:205
#: eelf32lr5900.c:205 eelf32lr5900n32.c:205 eelf32lsmip.c:205
#: eelf32ltsmip.c:205 eelf32ltsmip_fbsd.c:205 eelf32ltsmipn32.c:205
#: eelf32ltsmipn32_fbsd.c:205 eelf32metag.c:206 eelf32mipswindiss.c:205
#: eelf64bmip.c:219 eelf64btsmip.c:205 eelf64btsmip_fbsd.c:205
#: eelf64lppc.c:470 eelf64ltsmip.c:205 eelf64ltsmip_fbsd.c:205 eelf64ppc.c:470
#: eelf64ppc_fbsd.c:470 ehppaelf.c:230 ehppalinux.c:230 ehppanbsd.c:230
#: ehppaobsd.c:230 em68hc11elf.c:295 em68hc11elfb.c:295 em68hc12elf.c:295
#: em68hc12elfb.c:295 enios2elf.c:223 enios2linux.c:223
msgid "%X%P: can not make stub section: %E\n"
msgstr "%X%P: não foi possível criar seção stub: %E\n"
#: eaarch64cloudabi.c:266 eaarch64cloudabib.c:266 eaarch64elf.c:265
#: eaarch64elf32.c:265 eaarch64elf32b.c:265 eaarch64elfb.c:265
#: eaarch64fbsd.c:266 eaarch64fbsdb.c:266 eaarch64linux.c:266
#: eaarch64linux32.c:266 eaarch64linux32b.c:266 eaarch64linuxb.c:266
#: earcelf.c:96 earclinux.c:97 earclinux_nps.c:97 earcv2elf.c:96
#: earcv2elfx.c:96 earmelf.c:404 earmelf_fbsd.c:404 earmelf_fuchsia.c:405
#: earmelf_linux.c:405 earmelf_linux_eabi.c:405 earmelf_linux_fdpiceabi.c:405
#: earmelf_nacl.c:405 earmelf_nbsd.c:404 earmelf_phoenix.c:405
#: earmelf_vxworks.c:404 earmelfb.c:404 earmelfb_fbsd.c:404
#: earmelfb_fuchsia.c:405 earmelfb_linux.c:405 earmelfb_linux_eabi.c:405
#: earmelfb_linux_fdpiceabi.c:405 earmelfb_nacl.c:405 earmelfb_nbsd.c:404
#: earmnto.c:404 earmsymbian.c:404 eavr1.c:299 eavr2.c:299 eavr25.c:299
#: eavr3.c:299 eavr31.c:299 eavr35.c:299 eavr4.c:299 eavr5.c:299 eavr51.c:299
#: eavr6.c:299 eavrtiny.c:299 eavrxmega1.c:299 eavrxmega2.c:299
#: eavrxmega3.c:299 eavrxmega4.c:299 eavrxmega5.c:299 eavrxmega6.c:299
#: eavrxmega7.c:299 ecriself.c:96 ecrislinux.c:97 ed10velf.c:96
#: eelf32_sparc.c:97 eelf32_sparc_sol2.c:228 eelf32_sparc_vxworks.c:126
#: eelf32_spu.c:766 eelf32_tic6x_be.c:181 eelf32_tic6x_elf_be.c:181
#: eelf32_tic6x_elf_le.c:181 eelf32_tic6x_le.c:181 eelf32_tic6x_linux_be.c:181
#: eelf32_tic6x_linux_le.c:181 eelf32_x86_64.c:121 eelf32am33lin.c:96
#: eelf32b4300.c:293 eelf32bfin.c:106 eelf32bfinfd.c:106 eelf32bmip.c:293
#: eelf32bmipn32.c:307 eelf32bsmip.c:307 eelf32btsmip.c:293
#: eelf32btsmip_fbsd.c:293 eelf32btsmipn32.c:293 eelf32btsmipn32_fbsd.c:293
#: eelf32cr16.c:246 eelf32crx.c:133 eelf32ebmip.c:293 eelf32ebmipvxworks.c:322
#: eelf32elmip.c:293 eelf32elmipvxworks.c:322 eelf32epiphany.c:96
#: eelf32epiphany_4x4.c:98 eelf32frvfd.c:96 eelf32ip2k.c:96 eelf32l4300.c:293
#: eelf32lm32.c:96 eelf32lm32fd.c:96 eelf32lmip.c:293 eelf32lppc.c:317
#: eelf32lppclinux.c:317 eelf32lppcnto.c:317 eelf32lppcsim.c:317
#: eelf32lr5900.c:293 eelf32lr5900n32.c:292 eelf32lriscv.c:89
#: eelf32lriscv_ilp32.c:89 eelf32lriscv_ilp32f.c:89 eelf32lsmip.c:293
#: eelf32ltsmip.c:293 eelf32ltsmip_fbsd.c:293 eelf32ltsmipn32.c:293
#: eelf32ltsmipn32_fbsd.c:293 eelf32m32c.c:107 eelf32mb_linux.c:97
#: eelf32mbel_linux.c:97 eelf32mcore.c:96 eelf32mep.c:96 eelf32metag.c:256
#: eelf32microblaze.c:96 eelf32microblazeel.c:96 eelf32mipswindiss.c:292
#: eelf32moxie.c:96 eelf32or1k.c:97 eelf32or1k_linux.c:97 eelf32ppc.c:317
#: eelf32ppc_fbsd.c:317 eelf32ppclinux.c:317 eelf32ppcnto.c:317
#: eelf32ppcsim.c:317 eelf32ppcvxworks.c:291 eelf32ppcwindiss.c:317
#: eelf32rl78.c:96 eelf32rx.c:112 eelf32rx_linux.c:109 eelf32tilegx.c:97
#: eelf32tilegx_be.c:97 eelf32tilepro.c:97 eelf32vax.c:96 eelf32visium.c:96
#: eelf32xc16x.c:96 eelf32xc16xl.c:96 eelf32xc16xs.c:96 eelf32xstormy16.c:107
#: eelf32xtensa.c:2001 eelf32z80.c:123 eelf64_aix.c:96 eelf64_ia64.c:122
#: eelf64_ia64_fbsd.c:122 eelf64_ia64_vms.c:220 eelf64_s390.c:112
#: eelf64_sparc.c:97 eelf64_sparc_fbsd.c:97 eelf64_sparc_sol2.c:228
#: eelf64alpha.c:180 eelf64alpha_fbsd.c:180 eelf64alpha_nbsd.c:180
#: eelf64bmip.c:307 eelf64bpf.c:96 eelf64btsmip.c:293 eelf64btsmip_fbsd.c:293
#: eelf64hppa.c:96 eelf64lppc.c:580 eelf64lriscv.c:89 eelf64lriscv_lp64.c:89
#: eelf64lriscv_lp64f.c:89 eelf64ltsmip.c:293 eelf64ltsmip_fbsd.c:293
#: eelf64mmix.c:207 eelf64ppc.c:580 eelf64ppc_fbsd.c:580 eelf64rdos.c:112
#: eelf64tilegx.c:97 eelf64tilegx_be.c:97 eelf_i386.c:121 eelf_i386_be.c:120
#: eelf_i386_fbsd.c:121 eelf_i386_ldso.c:121 eelf_i386_sol2.c:252
#: eelf_i386_vxworks.c:150 eelf_iamcu.c:121 eelf_k1om.c:121
#: eelf_k1om_fbsd.c:121 eelf_l1om.c:121 eelf_l1om_fbsd.c:121 eelf_s390.c:97
#: eelf_x86_64.c:121 eelf_x86_64_cloudabi.c:121 eelf_x86_64_fbsd.c:121
#: eelf_x86_64_sol2.c:252 eh8300elf.c:96 eh8300elf_linux.c:96 eh8300helf.c:96
#: eh8300helf_linux.c:96 eh8300hnelf.c:96 eh8300self.c:96
#: eh8300self_linux.c:96 eh8300snelf.c:96 eh8300sxelf.c:96
#: eh8300sxelf_linux.c:96 eh8300sxnelf.c:96 ehppa64linux.c:96 ehppaelf.c:280
#: ehppalinux.c:280 ehppanbsd.c:280 ehppaobsd.c:280 ei386lynx.c:111
#: ei386moss.c:111 ei386nto.c:111 em32relf.c:96 em32relf_linux.c:96
#: em32rlelf.c:96 em32rlelf_linux.c:96 em68hc11elf.c:373 em68hc11elfb.c:373
#: em68hc12elf.c:373 em68hc12elfb.c:373 em68kelf.c:248 em68kelfnbsd.c:248
#: emn10300.c:96 ends32belf.c:204 ends32belf16m.c:204 ends32belf_linux.c:204
#: ends32elf.c:204 ends32elf16m.c:204 ends32elf_linux.c:204 enios2elf.c:273
#: enios2linux.c:273 eppclynx.c:317 epruelf.c:117 escore3_elf.c:117
#: escore7_elf.c:117 eshelf.c:96 eshelf_fd.c:97 eshelf_linux.c:97
#: eshelf_nbsd.c:96 eshelf_nto.c:96 eshelf_uclinux.c:96 eshelf_vxworks.c:125
#: eshlelf.c:96 eshlelf_fd.c:97 eshlelf_linux.c:97 eshlelf_nbsd.c:96
#: eshlelf_nto.c:96 eshlelf_vxworks.c:125 ev850.c:143 ev850_rh850.c:143
msgid "%X%P: .eh_frame/.stab edit: %E\n"
msgstr "%X%P: edição de .eh_frame/.stab: %E\n"
#: eaarch64cloudabi.c:282 eaarch64cloudabib.c:282 eaarch64elf.c:281
#: eaarch64elf32.c:281 eaarch64elf32b.c:281 eaarch64elfb.c:281
#: eaarch64fbsd.c:282 eaarch64fbsdb.c:282 eaarch64linux.c:282
#: eaarch64linux32.c:282 eaarch64linux32b.c:282 eaarch64linuxb.c:282
#: earmelf.c:419 earmelf_fbsd.c:419 earmelf_fuchsia.c:420 earmelf_linux.c:420
#: earmelf_linux_eabi.c:420 earmelf_linux_fdpiceabi.c:420 earmelf_nacl.c:420
#: earmelf_nbsd.c:419 earmelf_phoenix.c:420 earmelf_vxworks.c:419
#: earmelfb.c:419 earmelfb_fbsd.c:419 earmelfb_fuchsia.c:420
#: earmelfb_linux.c:420 earmelfb_linux_eabi.c:420
#: earmelfb_linux_fdpiceabi.c:420 earmelfb_nacl.c:420 earmelfb_nbsd.c:419
#: earmnto.c:419 earmsymbian.c:419 ecskyelf.c:260 ecskyelf_linux.c:260
msgid "%X%P: could not compute sections lists for stub generation: %E\n"
msgstr "%X%P: não foi possível computar listas de seções para geração de stub: %E\n"
#: eaarch64cloudabi.c:297 eaarch64cloudabib.c:297 eaarch64elf.c:296
#: eaarch64elf32.c:296 eaarch64elf32b.c:296 eaarch64elfb.c:296
#: eaarch64fbsd.c:297 eaarch64fbsdb.c:297 eaarch64linux.c:297
#: eaarch64linux32.c:297 eaarch64linux32b.c:297 eaarch64linuxb.c:297
#: earmelf.c:434 earmelf_fbsd.c:434 earmelf_fuchsia.c:435 earmelf_linux.c:435
#: earmelf_linux_eabi.c:435 earmelf_linux_fdpiceabi.c:435 earmelf_nacl.c:435
#: earmelf_nbsd.c:434 earmelf_phoenix.c:435 earmelf_vxworks.c:434
#: earmelfb.c:434 earmelfb_fbsd.c:434 earmelfb_fuchsia.c:435
#: earmelfb_linux.c:435 earmelfb_linux_eabi.c:435
#: earmelfb_linux_fdpiceabi.c:435 earmelfb_nacl.c:435 earmelfb_nbsd.c:434
#: earmnto.c:434 earmsymbian.c:434 eavr1.c:129 eavr1.c:192 eavr2.c:129
#: eavr2.c:192 eavr25.c:129 eavr25.c:192 eavr3.c:129 eavr3.c:192 eavr31.c:129
#: eavr31.c:192 eavr35.c:129 eavr35.c:192 eavr4.c:129 eavr4.c:192 eavr5.c:129
#: eavr5.c:192 eavr51.c:129 eavr51.c:192 eavr6.c:129 eavr6.c:192
#: eavrtiny.c:129 eavrtiny.c:192 eavrxmega1.c:129 eavrxmega1.c:192
#: eavrxmega2.c:129 eavrxmega2.c:192 eavrxmega3.c:129 eavrxmega3.c:192
#: eavrxmega4.c:129 eavrxmega4.c:192 eavrxmega5.c:129 eavrxmega5.c:192
#: eavrxmega6.c:129 eavrxmega6.c:192 eavrxmega7.c:129 eavrxmega7.c:192
#: eelf32metag.c:271 eelf32metag.c:285 eelf64lppc.c:523 eelf64lppc.c:542
#: eelf64lppc.c:569 eelf64ppc.c:523 eelf64ppc.c:542 eelf64ppc.c:569
#: eelf64ppc_fbsd.c:523 eelf64ppc_fbsd.c:542 eelf64ppc_fbsd.c:569
#: ehppaelf.c:295 ehppaelf.c:310 ehppalinux.c:295 ehppalinux.c:310
#: ehppanbsd.c:295 ehppanbsd.c:310 ehppaobsd.c:295 ehppaobsd.c:310
#: em68hc11elf.c:90 em68hc11elf.c:100 em68hc11elf.c:317 em68hc11elfb.c:90
#: em68hc11elfb.c:100 em68hc11elfb.c:317 em68hc12elf.c:90 em68hc12elf.c:100
#: em68hc12elf.c:317 em68hc12elfb.c:90 em68hc12elfb.c:100 em68hc12elfb.c:317
#: enios2elf.c:290 enios2elf.c:303 enios2linux.c:290 enios2linux.c:303
msgid "%X%P: can not size stub section: %E\n"
msgstr "%X%P: não foi possível definir tamanho de seção stub: %E\n"
#: eaarch64cloudabi.c:316 eaarch64cloudabib.c:316 eaarch64elf.c:315
#: eaarch64elf32.c:315 eaarch64elf32b.c:315 eaarch64elfb.c:315
#: eaarch64fbsd.c:316 eaarch64fbsdb.c:316 eaarch64linux.c:316
#: eaarch64linux32.c:316 eaarch64linux32b.c:316 eaarch64linuxb.c:316
#: earmelf.c:468 earmelf_fbsd.c:468 earmelf_fuchsia.c:469 earmelf_linux.c:469
#: earmelf_linux_eabi.c:469 earmelf_linux_fdpiceabi.c:469 earmelf_nacl.c:469
#: earmelf_nbsd.c:468 earmelf_phoenix.c:469 earmelf_vxworks.c:468
#: earmelfb.c:468 earmelfb_fbsd.c:468 earmelfb_fuchsia.c:469
#: earmelfb_linux.c:469 earmelfb_linux_eabi.c:469
#: earmelfb_linux_fdpiceabi.c:469 earmelfb_nacl.c:469 earmelfb_nbsd.c:468
#: earmnto.c:468 earmsymbian.c:468 eavr1.c:201 eavr2.c:201 eavr25.c:201
#: eavr3.c:201 eavr31.c:201 eavr35.c:201 eavr4.c:201 eavr5.c:201 eavr51.c:201
#: eavr6.c:201 eavrtiny.c:201 eavrxmega1.c:201 eavrxmega2.c:201
#: eavrxmega3.c:201 eavrxmega4.c:201 eavrxmega5.c:201 eavrxmega6.c:201
#: eavrxmega7.c:201 eelf32metag.c:300 eelf64lppc.c:619 eelf64ppc.c:619
#: eelf64ppc_fbsd.c:619 ehppaelf.c:332 ehppalinux.c:332 ehppanbsd.c:332
#: ehppaobsd.c:332 em68hc11elf.c:321 em68hc11elfb.c:321 em68hc12elf.c:321
#: em68hc12elfb.c:321 enios2elf.c:318 enios2linux.c:318
msgid "%X%P: can not build stubs: %E\n"
msgstr "%X%P: não foi possível compilar stubs: %E\n"
#. 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 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 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:334 eaarch64cloudabib.c:334 eaarch64elf.c:333
#: eaarch64elf32.c:333 eaarch64elf32b.c:333 eaarch64elfb.c:333
#: eaarch64fbsd.c:334 eaarch64fbsdb.c:334 eaarch64linux.c:334
#: eaarch64linux32.c:334 eaarch64linux32b.c:334 eaarch64linuxb.c:334
#: earm_wince_pe.c:1377 earmelf.c:540 earmelf_fbsd.c:540 earmelf_fuchsia.c:541
#: earmelf_linux.c:541 earmelf_linux_eabi.c:541 earmelf_linux_fdpiceabi.c:541
#: earmelf_nacl.c:541 earmelf_nbsd.c:540 earmelf_phoenix.c:541
#: earmelf_vxworks.c:540 earmelfb.c:540 earmelfb_fbsd.c:540
#: earmelfb_fuchsia.c:541 earmelfb_linux.c:541 earmelfb_linux_eabi.c:541
#: earmelfb_linux_fdpiceabi.c:541 earmelfb_nacl.c:541 earmelfb_nbsd.c:540
#: earmnto.c:540 earmpe.c:1377 earmsymbian.c:540 eavr1.c:142 eavr2.c:142
#: eavr25.c:142 eavr3.c:142 eavr31.c:142 eavr35.c:142 eavr4.c:142 eavr5.c:142
#: eavr51.c:142 eavr6.c:142 eavrtiny.c:142 eavrxmega1.c:142 eavrxmega2.c:142
#: eavrxmega3.c:142 eavrxmega4.c:142 eavrxmega5.c:142 eavrxmega6.c:142
#: eavrxmega7.c:142 eelf32lriscv.c:110 eelf32lriscv_ilp32.c:110
#: eelf32lriscv_ilp32f.c:110 eelf64lriscv.c:110 eelf64lriscv_lp64.c:110
#: eelf64lriscv_lp64f.c:110 ei386pe.c:1377 ei386pe_posix.c:1377
#: emcorepe.c:1377 ends32belf.c:74 ends32belf16m.c:74 ends32belf_linux.c:74
#: ends32elf.c:74 ends32elf16m.c:74 ends32elf_linux.c:74 eppcpe.c:1377
#: escore3_elf.c:75 escore7_elf.c:75 eshpe.c:1377 ev850.c:91 ev850_rh850.c:91
msgid "%F%P: error: cannot change output format whilst linking %s binaries\n"
msgstr "%F%P: erro: não é possível alterar o formato de saída enquanto vincula os binários %s\n"
#: eaarch64cloudabi.c:570 eaarch64cloudabib.c:570 eaarch64elf.c:569
#: eaarch64elf32.c:569 eaarch64elf32b.c:569 eaarch64elfb.c:569
#: eaarch64fbsd.c:570 eaarch64fbsdb.c:570 eaarch64linux.c:570
#: eaarch64linux32.c:570 eaarch64linux32b.c:570 eaarch64linuxb.c:570
#: earcelf.c:202 earclinux.c:258 earclinux_nps.c:258 earcv2elf.c:186
#: earcv2elfx.c:186 earmelf.c:812 earmelf_fbsd.c:812 earmelf_fuchsia.c:813
#: earmelf_linux.c:813 earmelf_linux_eabi.c:813 earmelf_linux_fdpiceabi.c:813
#: earmelf_nacl.c:813 earmelf_nbsd.c:812 earmelf_phoenix.c:813
#: earmelf_vxworks.c:848 earmelfb.c:812 earmelfb_fbsd.c:812
#: earmelfb_fuchsia.c:813 earmelfb_linux.c:813 earmelfb_linux_eabi.c:813
#: earmelfb_linux_fdpiceabi.c:813 earmelfb_nacl.c:813 earmelfb_nbsd.c:812
#: earmnto.c:787 earmsymbian.c:812 eavr1.c:409 eavr2.c:409 eavr25.c:409
#: eavr3.c:409 eavr31.c:409 eavr35.c:409 eavr4.c:409 eavr5.c:409 eavr51.c:409
#: eavr6.c:409 eavrtiny.c:409 eavrxmega1.c:409 eavrxmega2.c:409
#: eavrxmega3.c:409 eavrxmega4.c:409 eavrxmega5.c:409 eavrxmega6.c:409
#: eavrxmega7.c:409 ecriself.c:201 ecrislinux.c:233 ecskyelf.c:445
#: ecskyelf_linux.c:502 ed10velf.c:186 eelf32_sparc.c:258
#: eelf32_sparc_sol2.c:389 eelf32_sparc_vxworks.c:295 eelf32_spu.c:919
#: eelf32_tic6x_be.c:369 eelf32_tic6x_elf_be.c:369 eelf32_tic6x_elf_le.c:369
#: eelf32_tic6x_le.c:369 eelf32_tic6x_linux_be.c:369
#: eelf32_tic6x_linux_le.c:369 eelf32_x86_64.c:5195 eelf32am33lin.c:232
#: eelf32b4300.c:473 eelf32bfin.c:250 eelf32bfinfd.c:275 eelf32bmip.c:473
#: eelf32bmipn32.c:487 eelf32bsmip.c:487 eelf32btsmip.c:473
#: eelf32btsmip_fbsd.c:473 eelf32btsmipn32.c:473 eelf32btsmipn32_fbsd.c:473
#: eelf32cr16.c:336 eelf32crx.c:223 eelf32ebmip.c:473 eelf32ebmipvxworks.c:508
#: eelf32elmip.c:473 eelf32elmipvxworks.c:508 eelf32epiphany.c:201
#: eelf32epiphany_4x4.c:188 eelf32frvfd.c:257 eelf32ip2k.c:201
#: eelf32l4300.c:473 eelf32lm32.c:201 eelf32lm32fd.c:257 eelf32lmip.c:473
#: eelf32lppc.c:521 eelf32lppclinux.c:521 eelf32lppcnto.c:521
#: eelf32lppcsim.c:521 eelf32lr5900.c:442 eelf32lr5900n32.c:441
#: eelf32lriscv.c:312 eelf32lriscv_ilp32.c:312 eelf32lriscv_ilp32f.c:312
#: eelf32lsmip.c:473 eelf32ltsmip.c:473 eelf32ltsmip_fbsd.c:473
#: eelf32ltsmipn32.c:473 eelf32ltsmipn32_fbsd.c:473 eelf32m32c.c:212
#: eelf32mb_linux.c:258 eelf32mbel_linux.c:258 eelf32mcore.c:207
#: eelf32mep.c:186 eelf32metag.c:507 eelf32microblaze.c:186
#: eelf32microblazeel.c:186 eelf32mipswindiss.c:416 eelf32moxie.c:201
#: eelf32or1k.c:202 eelf32or1k_linux.c:258 eelf32ppc.c:521
#: eelf32ppc_fbsd.c:521 eelf32ppclinux.c:521 eelf32ppcnto.c:521
#: eelf32ppcsim.c:521 eelf32ppcvxworks.c:495 eelf32ppcwindiss.c:521
#: eelf32rl78.c:201 eelf32rx.c:229 eelf32rx_linux.c:214 eelf32tilegx.c:258
#: eelf32tilegx_be.c:258 eelf32tilepro.c:258 eelf32vax.c:232
#: eelf32visium.c:186 eelf32xc16x.c:186 eelf32xc16xl.c:186 eelf32xc16xs.c:186
#: eelf32xstormy16.c:197 eelf32xtensa.c:2179 eelf32z80.c:213 eelf64_aix.c:232
#: eelf64_ia64.c:289 eelf64_ia64_fbsd.c:289 eelf64_s390.c:328
#: eelf64_sparc.c:258 eelf64_sparc_fbsd.c:258 eelf64_sparc_sol2.c:389
#: eelf64alpha.c:351 eelf64alpha_fbsd.c:351 eelf64alpha_nbsd.c:351
#: eelf64bmip.c:487 eelf64bpf.c:186 eelf64btsmip.c:473 eelf64btsmip_fbsd.c:473
#: eelf64hppa.c:202 eelf64lppc.c:952 eelf64lriscv.c:312
#: eelf64lriscv_lp64.c:312 eelf64lriscv_lp64f.c:312 eelf64ltsmip.c:473
#: eelf64ltsmip_fbsd.c:473 eelf64mmix.c:4009 eelf64ppc.c:952
#: eelf64ppc_fbsd.c:952 eelf64rdos.c:283 eelf64tilegx.c:258
#: eelf64tilegx_be.c:258 eelf_i386.c:4817 eelf_i386_be.c:256
#: eelf_i386_fbsd.c:292 eelf_i386_ldso.c:267 eelf_i386_sol2.c:423
#: eelf_i386_vxworks.c:319 eelf_iamcu.c:4795 eelf_k1om.c:5151
#: eelf_k1om_fbsd.c:5131 eelf_l1om.c:5151 eelf_l1om_fbsd.c:5131
#: eelf_s390.c:258 eelf_x86_64.c:5195 eelf_x86_64_cloudabi.c:292
#: eelf_x86_64_fbsd.c:292 eelf_x86_64_sol2.c:423 eh8300elf.c:201
#: eh8300elf_linux.c:201 eh8300helf.c:201 eh8300helf_linux.c:201
#: eh8300hnelf.c:201 eh8300self.c:201 eh8300self_linux.c:201 eh8300snelf.c:201
#: eh8300sxelf.c:201 eh8300sxelf_linux.c:201 eh8300sxnelf.c:201
#: ehppa64linux.c:232 ehppaelf.c:469 ehppalinux.c:541 ehppanbsd.c:541
#: ehppaobsd.c:541 ei386lynx.c:247 ei386moss.c:247 ei386nto.c:247
#: em32relf.c:201 em32relf_linux.c:257 em32rlelf.c:201 em32rlelf_linux.c:257
#: em68hc11elf.c:471 em68hc11elfb.c:471 em68hc12elf.c:471 em68hc12elfb.c:471
#: em68kelf.c:415 em68kelfnbsd.c:415 emn10300.c:232 ends32belf.c:322
#: ends32belf16m.c:322 ends32belf_linux.c:345 ends32elf.c:322
#: ends32elf16m.c:322 ends32elf_linux.c:345 enios2elf.c:488 enios2linux.c:519
#: eppclynx.c:521 epruelf.c:207 escore3_elf.c:253 escore7_elf.c:253
#: eshelf.c:232 eshelf_fd.c:258 eshelf_linux.c:258 eshelf_nbsd.c:232
#: eshelf_nto.c:232 eshelf_uclinux.c:232 eshelf_vxworks.c:269 eshlelf.c:232
#: eshlelf_fd.c:258 eshlelf_linux.c:258 eshlelf_nbsd.c:232 eshlelf_nto.c:232
#: eshlelf_vxworks.c:269 ev850.c:233 ev850_rh850.c:233
msgid "%F%P: invalid --compress-debug-sections option: `%s'\n"
msgstr "%F%P: opção --compress-debug-sections inválida: \"%s\"\n"
#: eaarch64cloudabi.c:621 eaarch64cloudabib.c:621 eaarch64elf.c:620
#: eaarch64elf32.c:620 eaarch64elf32b.c:620 eaarch64elfb.c:620
#: eaarch64fbsd.c:621 eaarch64fbsdb.c:621 eaarch64linux.c:621
#: eaarch64linux32.c:621 eaarch64linux32b.c:621 eaarch64linuxb.c:621
#: earcelf.c:253 earclinux.c:309 earclinux_nps.c:309 earmelf.c:863
#: earmelf_fbsd.c:863 earmelf_fuchsia.c:864 earmelf_linux.c:864
#: earmelf_linux_eabi.c:864 earmelf_linux_fdpiceabi.c:864 earmelf_nacl.c:864
#: earmelf_nbsd.c:863 earmelf_phoenix.c:864 earmelf_vxworks.c:899
#: earmelfb.c:863 earmelfb_fbsd.c:863 earmelfb_fuchsia.c:864
#: earmelfb_linux.c:864 earmelfb_linux_eabi.c:864
#: earmelfb_linux_fdpiceabi.c:864 earmelfb_nacl.c:864 earmelfb_nbsd.c:863
#: earmnto.c:838 earmsymbian.c:863 ecrislinux.c:284 ecskyelf_linux.c:553
#: eelf32_sparc.c:309 eelf32_sparc_sol2.c:440 eelf32_sparc_vxworks.c:346
#: eelf32_tic6x_be.c:420 eelf32_tic6x_elf_be.c:420 eelf32_tic6x_elf_le.c:420
#: eelf32_tic6x_le.c:420 eelf32_tic6x_linux_be.c:420
#: eelf32_tic6x_linux_le.c:420 eelf32_x86_64.c:5246 eelf32am33lin.c:283
#: eelf32b4300.c:524 eelf32bfin.c:301 eelf32bfinfd.c:326 eelf32bmip.c:524
#: eelf32bmipn32.c:538 eelf32bsmip.c:538 eelf32btsmip.c:524
#: eelf32btsmip_fbsd.c:524 eelf32btsmipn32.c:524 eelf32btsmipn32_fbsd.c:524
#: eelf32ebmip.c:524 eelf32ebmipvxworks.c:559 eelf32elmip.c:524
#: eelf32elmipvxworks.c:559 eelf32frvfd.c:308 eelf32l4300.c:524
#: eelf32lm32fd.c:308 eelf32lmip.c:524 eelf32lppc.c:572 eelf32lppclinux.c:572
#: eelf32lppcnto.c:572 eelf32lppcsim.c:572 eelf32lriscv.c:363
#: eelf32lriscv_ilp32.c:363 eelf32lriscv_ilp32f.c:363 eelf32lsmip.c:524
#: eelf32ltsmip.c:524 eelf32ltsmip_fbsd.c:524 eelf32ltsmipn32.c:524
#: eelf32ltsmipn32_fbsd.c:524 eelf32mb_linux.c:309 eelf32mbel_linux.c:309
#: eelf32metag.c:558 eelf32or1k_linux.c:309 eelf32ppc.c:572
#: eelf32ppc_fbsd.c:572 eelf32ppclinux.c:572 eelf32ppcnto.c:572
#: eelf32ppcsim.c:572 eelf32ppcvxworks.c:546 eelf32ppcwindiss.c:572
#: eelf32tilegx.c:309 eelf32tilegx_be.c:309 eelf32tilepro.c:309
#: eelf32vax.c:283 eelf32xtensa.c:2230 eelf64_aix.c:283 eelf64_ia64.c:340
#: eelf64_ia64_fbsd.c:340 eelf64_s390.c:379 eelf64_sparc.c:309
#: eelf64_sparc_fbsd.c:309 eelf64_sparc_sol2.c:440 eelf64alpha.c:402
#: eelf64alpha_fbsd.c:402 eelf64alpha_nbsd.c:402 eelf64bmip.c:538
#: eelf64btsmip.c:524 eelf64btsmip_fbsd.c:524 eelf64hppa.c:253
#: eelf64lppc.c:1003 eelf64lriscv.c:363 eelf64lriscv_lp64.c:363
#: eelf64lriscv_lp64f.c:363 eelf64ltsmip.c:524 eelf64ltsmip_fbsd.c:524
#: eelf64mmix.c:4060 eelf64ppc.c:1003 eelf64ppc_fbsd.c:1003 eelf64rdos.c:334
#: eelf64tilegx.c:309 eelf64tilegx_be.c:309 eelf_i386.c:4868
#: eelf_i386_be.c:307 eelf_i386_fbsd.c:343 eelf_i386_ldso.c:318
#: eelf_i386_sol2.c:474 eelf_i386_vxworks.c:370 eelf_iamcu.c:4846
#: eelf_k1om.c:5202 eelf_k1om_fbsd.c:5182 eelf_l1om.c:5202
#: eelf_l1om_fbsd.c:5182 eelf_s390.c:309 eelf_x86_64.c:5246
#: eelf_x86_64_cloudabi.c:343 eelf_x86_64_fbsd.c:343 eelf_x86_64_sol2.c:474
#: ehppa64linux.c:283 ehppalinux.c:592 ehppanbsd.c:592 ehppaobsd.c:592
#: ei386lynx.c:298 ei386moss.c:298 ei386nto.c:298 em32relf_linux.c:308
#: em32rlelf_linux.c:308 em68kelf.c:466 em68kelfnbsd.c:466 emn10300.c:283
#: ends32belf_linux.c:396 ends32elf_linux.c:396 enios2linux.c:570
#: eppclynx.c:572 escore3_elf.c:304 escore7_elf.c:304 eshelf.c:283
#: eshelf_fd.c:309 eshelf_linux.c:309 eshelf_nbsd.c:283 eshelf_nto.c:283
#: eshelf_uclinux.c:283 eshelf_vxworks.c:320 eshlelf.c:283 eshlelf_fd.c:309
#: eshlelf_linux.c:309 eshlelf_nbsd.c:283 eshlelf_nto.c:283
#: eshlelf_vxworks.c:320
msgid "%F%P: invalid hash style `%s'\n"
msgstr "%F%P: estilo de hash inválido \"%s\"\n"
#: eaarch64cloudabi.c:637 eaarch64cloudabib.c:637 eaarch64elf.c:636
#: eaarch64elf32.c:636 eaarch64elf32b.c:636 eaarch64elfb.c:636
#: eaarch64fbsd.c:637 eaarch64fbsdb.c:637 eaarch64linux.c:637
#: eaarch64linux32.c:637 eaarch64linux32b.c:637 eaarch64linuxb.c:637
#: earcelf.c:269 earclinux.c:325 earclinux_nps.c:325 earcv2elf.c:202
#: earcv2elfx.c:202 earmelf.c:879 earmelf_fbsd.c:879 earmelf_fuchsia.c:880
#: earmelf_linux.c:880 earmelf_linux_eabi.c:880 earmelf_linux_fdpiceabi.c:880
#: earmelf_nacl.c:880 earmelf_nbsd.c:879 earmelf_phoenix.c:880
#: earmelf_vxworks.c:915 earmelfb.c:879 earmelfb_fbsd.c:879
#: earmelfb_fuchsia.c:880 earmelfb_linux.c:880 earmelfb_linux_eabi.c:880
#: earmelfb_linux_fdpiceabi.c:880 earmelfb_nacl.c:880 earmelfb_nbsd.c:879
#: earmnto.c:854 earmsymbian.c:879 eavr1.c:425 eavr2.c:425 eavr25.c:425
#: eavr3.c:425 eavr31.c:425 eavr35.c:425 eavr4.c:425 eavr5.c:425 eavr51.c:425
#: eavr6.c:425 eavrtiny.c:425 eavrxmega1.c:425 eavrxmega2.c:425
#: eavrxmega3.c:425 eavrxmega4.c:425 eavrxmega5.c:425 eavrxmega6.c:425
#: eavrxmega7.c:425 ecriself.c:217 ecrislinux.c:300 ecskyelf.c:461
#: ecskyelf_linux.c:569 ed10velf.c:202 eelf32_sparc.c:325
#: eelf32_sparc_sol2.c:456 eelf32_sparc_vxworks.c:362 eelf32_spu.c:935
#: eelf32_tic6x_be.c:436 eelf32_tic6x_elf_be.c:436 eelf32_tic6x_elf_le.c:436
#: eelf32_tic6x_le.c:436 eelf32_tic6x_linux_be.c:436
#: eelf32_tic6x_linux_le.c:436 eelf32_x86_64.c:5262 eelf32am33lin.c:299
#: eelf32b4300.c:540 eelf32bfin.c:317 eelf32bfinfd.c:342 eelf32bmip.c:540
#: eelf32bmipn32.c:554 eelf32bsmip.c:554 eelf32btsmip.c:540
#: eelf32btsmip_fbsd.c:540 eelf32btsmipn32.c:540 eelf32btsmipn32_fbsd.c:540
#: eelf32cr16.c:352 eelf32crx.c:239 eelf32ebmip.c:540 eelf32ebmipvxworks.c:575
#: eelf32elmip.c:540 eelf32elmipvxworks.c:575 eelf32epiphany.c:217
#: eelf32epiphany_4x4.c:204 eelf32frvfd.c:324 eelf32ip2k.c:217
#: eelf32l4300.c:540 eelf32lm32.c:217 eelf32lm32fd.c:324 eelf32lmip.c:540
#: eelf32lppc.c:588 eelf32lppclinux.c:588 eelf32lppcnto.c:588
#: eelf32lppcsim.c:588 eelf32lr5900.c:458 eelf32lr5900n32.c:457
#: eelf32lriscv.c:379 eelf32lriscv_ilp32.c:379 eelf32lriscv_ilp32f.c:379
#: eelf32lsmip.c:540 eelf32ltsmip.c:540 eelf32ltsmip_fbsd.c:540
#: eelf32ltsmipn32.c:540 eelf32ltsmipn32_fbsd.c:540 eelf32m32c.c:228
#: eelf32mb_linux.c:325 eelf32mbel_linux.c:325 eelf32mcore.c:223
#: eelf32mep.c:202 eelf32metag.c:574 eelf32microblaze.c:202
#: eelf32microblazeel.c:202 eelf32mipswindiss.c:432 eelf32moxie.c:217
#: eelf32or1k.c:218 eelf32or1k_linux.c:325 eelf32ppc.c:588
#: eelf32ppc_fbsd.c:588 eelf32ppclinux.c:588 eelf32ppcnto.c:588
#: eelf32ppcsim.c:588 eelf32ppcvxworks.c:562 eelf32ppcwindiss.c:588
#: eelf32rl78.c:217 eelf32rx.c:245 eelf32rx_linux.c:230 eelf32tilegx.c:325
#: eelf32tilegx_be.c:325 eelf32tilepro.c:325 eelf32vax.c:299
#: eelf32visium.c:202 eelf32xc16x.c:202 eelf32xc16xl.c:202 eelf32xc16xs.c:202
#: eelf32xstormy16.c:213 eelf32xtensa.c:2246 eelf32z80.c:229 eelf64_aix.c:299
#: eelf64_ia64.c:356 eelf64_ia64_fbsd.c:356 eelf64_s390.c:395
#: eelf64_sparc.c:325 eelf64_sparc_fbsd.c:325 eelf64_sparc_sol2.c:456
#: eelf64alpha.c:418 eelf64alpha_fbsd.c:418 eelf64alpha_nbsd.c:418
#: eelf64bmip.c:554 eelf64bpf.c:202 eelf64btsmip.c:540 eelf64btsmip_fbsd.c:540
#: eelf64hppa.c:269 eelf64lppc.c:1019 eelf64lriscv.c:379
#: eelf64lriscv_lp64.c:379 eelf64lriscv_lp64f.c:379 eelf64ltsmip.c:540
#: eelf64ltsmip_fbsd.c:540 eelf64mmix.c:4076 eelf64ppc.c:1019
#: eelf64ppc_fbsd.c:1019 eelf64rdos.c:350 eelf64tilegx.c:325
#: eelf64tilegx_be.c:325 eelf_i386.c:4884 eelf_i386_be.c:323
#: eelf_i386_fbsd.c:359 eelf_i386_ldso.c:334 eelf_i386_sol2.c:490
#: eelf_i386_vxworks.c:386 eelf_iamcu.c:4862 eelf_k1om.c:5218
#: eelf_k1om_fbsd.c:5198 eelf_l1om.c:5218 eelf_l1om_fbsd.c:5198
#: eelf_s390.c:325 eelf_x86_64.c:5262 eelf_x86_64_cloudabi.c:359
#: eelf_x86_64_fbsd.c:359 eelf_x86_64_sol2.c:490 eh8300elf.c:217
#: eh8300elf_linux.c:217 eh8300helf.c:217 eh8300helf_linux.c:217
#: eh8300hnelf.c:217 eh8300self.c:217 eh8300self_linux.c:217 eh8300snelf.c:217
#: eh8300sxelf.c:217 eh8300sxelf_linux.c:217 eh8300sxnelf.c:217
#: ehppa64linux.c:299 ehppaelf.c:485 ehppalinux.c:608 ehppanbsd.c:608
#: ehppaobsd.c:608 ei386lynx.c:314 ei386moss.c:314 ei386nto.c:314
#: em32relf.c:217 em32relf_linux.c:324 em32rlelf.c:217 em32rlelf_linux.c:324
#: em68hc11elf.c:487 em68hc11elfb.c:487 em68hc12elf.c:487 em68hc12elfb.c:487
#: em68kelf.c:482 em68kelfnbsd.c:482 emn10300.c:299 ends32belf.c:338
#: ends32belf16m.c:338 ends32belf_linux.c:412 ends32elf.c:338
#: ends32elf16m.c:338 ends32elf_linux.c:412 enios2elf.c:504 enios2linux.c:586
#: eppclynx.c:588 epruelf.c:223 escore3_elf.c:320 escore7_elf.c:320
#: eshelf.c:299 eshelf_fd.c:325 eshelf_linux.c:325 eshelf_nbsd.c:299
#: eshelf_nto.c:299 eshelf_uclinux.c:299 eshelf_vxworks.c:336 eshlelf.c:299
#: eshlelf_fd.c:325 eshlelf_linux.c:325 eshlelf_nbsd.c:299 eshlelf_nto.c:299
#: eshlelf_vxworks.c:336 ev850.c:249 ev850_rh850.c:249
msgid "%F%P: invalid maximum page size `%s'\n"
msgstr "%F%P: tamanho máximo de página inválido \"%s\"\n"
#: eaarch64cloudabi.c:646 eaarch64cloudabib.c:646 eaarch64elf.c:645
#: eaarch64elf32.c:645 eaarch64elf32b.c:645 eaarch64elfb.c:645
#: eaarch64fbsd.c:646 eaarch64fbsdb.c:646 eaarch64linux.c:646
#: eaarch64linux32.c:646 eaarch64linux32b.c:646 eaarch64linuxb.c:646
#: earcelf.c:278 earclinux.c:334 earclinux_nps.c:334 earcv2elf.c:211
#: earcv2elfx.c:211 earmelf.c:888 earmelf_fbsd.c:888 earmelf_fuchsia.c:889
#: earmelf_linux.c:889 earmelf_linux_eabi.c:889 earmelf_linux_fdpiceabi.c:889
#: earmelf_nacl.c:889 earmelf_nbsd.c:888 earmelf_phoenix.c:889
#: earmelf_vxworks.c:924 earmelfb.c:888 earmelfb_fbsd.c:888
#: earmelfb_fuchsia.c:889 earmelfb_linux.c:889 earmelfb_linux_eabi.c:889
#: earmelfb_linux_fdpiceabi.c:889 earmelfb_nacl.c:889 earmelfb_nbsd.c:888
#: earmnto.c:863 earmsymbian.c:888 eavr1.c:434 eavr2.c:434 eavr25.c:434
#: eavr3.c:434 eavr31.c:434 eavr35.c:434 eavr4.c:434 eavr5.c:434 eavr51.c:434
#: eavr6.c:434 eavrtiny.c:434 eavrxmega1.c:434 eavrxmega2.c:434
#: eavrxmega3.c:434 eavrxmega4.c:434 eavrxmega5.c:434 eavrxmega6.c:434
#: eavrxmega7.c:434 ecriself.c:226 ecrislinux.c:309 ecskyelf.c:470
#: ecskyelf_linux.c:578 ed10velf.c:211 eelf32_sparc.c:334
#: eelf32_sparc_sol2.c:465 eelf32_sparc_vxworks.c:371 eelf32_spu.c:944
#: eelf32_tic6x_be.c:445 eelf32_tic6x_elf_be.c:445 eelf32_tic6x_elf_le.c:445
#: eelf32_tic6x_le.c:445 eelf32_tic6x_linux_be.c:445
#: eelf32_tic6x_linux_le.c:445 eelf32_x86_64.c:5271 eelf32am33lin.c:308
#: eelf32b4300.c:549 eelf32bfin.c:326 eelf32bfinfd.c:351 eelf32bmip.c:549
#: eelf32bmipn32.c:563 eelf32bsmip.c:563 eelf32btsmip.c:549
#: eelf32btsmip_fbsd.c:549 eelf32btsmipn32.c:549 eelf32btsmipn32_fbsd.c:549
#: eelf32cr16.c:361 eelf32crx.c:248 eelf32ebmip.c:549 eelf32ebmipvxworks.c:584
#: eelf32elmip.c:549 eelf32elmipvxworks.c:584 eelf32epiphany.c:226
#: eelf32epiphany_4x4.c:213 eelf32frvfd.c:333 eelf32ip2k.c:226
#: eelf32l4300.c:549 eelf32lm32.c:226 eelf32lm32fd.c:333 eelf32lmip.c:549
#: eelf32lppc.c:597 eelf32lppclinux.c:597 eelf32lppcnto.c:597
#: eelf32lppcsim.c:597 eelf32lr5900.c:467 eelf32lr5900n32.c:466
#: eelf32lriscv.c:388 eelf32lriscv_ilp32.c:388 eelf32lriscv_ilp32f.c:388
#: eelf32lsmip.c:549 eelf32ltsmip.c:549 eelf32ltsmip_fbsd.c:549
#: eelf32ltsmipn32.c:549 eelf32ltsmipn32_fbsd.c:549 eelf32m32c.c:237
#: eelf32mb_linux.c:334 eelf32mbel_linux.c:334 eelf32mcore.c:232
#: eelf32mep.c:211 eelf32metag.c:583 eelf32microblaze.c:211
#: eelf32microblazeel.c:211 eelf32mipswindiss.c:441 eelf32moxie.c:226
#: eelf32or1k.c:227 eelf32or1k_linux.c:334 eelf32ppc.c:597
#: eelf32ppc_fbsd.c:597 eelf32ppclinux.c:597 eelf32ppcnto.c:597
#: eelf32ppcsim.c:597 eelf32ppcvxworks.c:571 eelf32ppcwindiss.c:597
#: eelf32rl78.c:226 eelf32rx.c:254 eelf32rx_linux.c:239 eelf32tilegx.c:334
#: eelf32tilegx_be.c:334 eelf32tilepro.c:334 eelf32vax.c:308
#: eelf32visium.c:211 eelf32xc16x.c:211 eelf32xc16xl.c:211 eelf32xc16xs.c:211
#: eelf32xstormy16.c:222 eelf32xtensa.c:2255 eelf32z80.c:238 eelf64_aix.c:308
#: eelf64_ia64.c:365 eelf64_ia64_fbsd.c:365 eelf64_s390.c:404
#: eelf64_sparc.c:334 eelf64_sparc_fbsd.c:334 eelf64_sparc_sol2.c:465
#: eelf64alpha.c:427 eelf64alpha_fbsd.c:427 eelf64alpha_nbsd.c:427
#: eelf64bmip.c:563 eelf64bpf.c:211 eelf64btsmip.c:549 eelf64btsmip_fbsd.c:549
#: eelf64hppa.c:278 eelf64lppc.c:1028 eelf64lriscv.c:388
#: eelf64lriscv_lp64.c:388 eelf64lriscv_lp64f.c:388 eelf64ltsmip.c:549
#: eelf64ltsmip_fbsd.c:549 eelf64mmix.c:4085 eelf64ppc.c:1028
#: eelf64ppc_fbsd.c:1028 eelf64rdos.c:359 eelf64tilegx.c:334
#: eelf64tilegx_be.c:334 eelf_i386.c:4893 eelf_i386_be.c:332
#: eelf_i386_fbsd.c:368 eelf_i386_ldso.c:343 eelf_i386_sol2.c:499
#: eelf_i386_vxworks.c:395 eelf_iamcu.c:4871 eelf_k1om.c:5227
#: eelf_k1om_fbsd.c:5207 eelf_l1om.c:5227 eelf_l1om_fbsd.c:5207
#: eelf_s390.c:334 eelf_x86_64.c:5271 eelf_x86_64_cloudabi.c:368
#: eelf_x86_64_fbsd.c:368 eelf_x86_64_sol2.c:499 eh8300elf.c:226
#: eh8300elf_linux.c:226 eh8300helf.c:226 eh8300helf_linux.c:226
#: eh8300hnelf.c:226 eh8300self.c:226 eh8300self_linux.c:226 eh8300snelf.c:226
#: eh8300sxelf.c:226 eh8300sxelf_linux.c:226 eh8300sxnelf.c:226
#: ehppa64linux.c:308 ehppaelf.c:494 ehppalinux.c:617 ehppanbsd.c:617
#: ehppaobsd.c:617 ei386lynx.c:323 ei386moss.c:323 ei386nto.c:323
#: em32relf.c:226 em32relf_linux.c:333 em32rlelf.c:226 em32rlelf_linux.c:333
#: em68hc11elf.c:496 em68hc11elfb.c:496 em68hc12elf.c:496 em68hc12elfb.c:496
#: em68kelf.c:491 em68kelfnbsd.c:491 emn10300.c:308 ends32belf.c:347
#: ends32belf16m.c:347 ends32belf_linux.c:421 ends32elf.c:347
#: ends32elf16m.c:347 ends32elf_linux.c:421 enios2elf.c:513 enios2linux.c:595
#: eppclynx.c:597 epruelf.c:232 escore3_elf.c:329 escore7_elf.c:329
#: eshelf.c:308 eshelf_fd.c:334 eshelf_linux.c:334 eshelf_nbsd.c:308
#: eshelf_nto.c:308 eshelf_uclinux.c:308 eshelf_vxworks.c:345 eshlelf.c:308
#: eshlelf_fd.c:334 eshlelf_linux.c:334 eshlelf_nbsd.c:308 eshlelf_nto.c:308
#: eshlelf_vxworks.c:345 ev850.c:258 ev850_rh850.c:258
msgid "%F%P: invalid common page size `%s'\n"
msgstr "%F%P: tamanho comum de página inválido \"%s\"\n"
#: eaarch64cloudabi.c:654 eaarch64cloudabib.c:654 eaarch64elf.c:653
#: eaarch64elf32.c:653 eaarch64elf32b.c:653 eaarch64elfb.c:653
#: eaarch64fbsd.c:654 eaarch64fbsdb.c:654 eaarch64linux.c:654
#: eaarch64linux32.c:654 eaarch64linux32b.c:654 eaarch64linuxb.c:654
#: earcelf.c:286 earclinux.c:342 earclinux_nps.c:342 earcv2elf.c:219
#: earcv2elfx.c:219 earmelf.c:896 earmelf_fbsd.c:896 earmelf_fuchsia.c:897
#: earmelf_linux.c:897 earmelf_linux_eabi.c:897 earmelf_linux_fdpiceabi.c:897
#: earmelf_nacl.c:897 earmelf_nbsd.c:896 earmelf_phoenix.c:897
#: earmelf_vxworks.c:932 earmelfb.c:896 earmelfb_fbsd.c:896
#: earmelfb_fuchsia.c:897 earmelfb_linux.c:897 earmelfb_linux_eabi.c:897
#: earmelfb_linux_fdpiceabi.c:897 earmelfb_nacl.c:897 earmelfb_nbsd.c:896
#: earmnto.c:871 earmsymbian.c:896 eavr1.c:442 eavr2.c:442 eavr25.c:442
#: eavr3.c:442 eavr31.c:442 eavr35.c:442 eavr4.c:442 eavr5.c:442 eavr51.c:442
#: eavr6.c:442 eavrtiny.c:442 eavrxmega1.c:442 eavrxmega2.c:442
#: eavrxmega3.c:442 eavrxmega4.c:442 eavrxmega5.c:442 eavrxmega6.c:442
#: eavrxmega7.c:442 ecriself.c:234 ecrislinux.c:317 ecskyelf.c:478
#: ecskyelf_linux.c:586 ed10velf.c:219 eelf32_sparc.c:342
#: eelf32_sparc_sol2.c:473 eelf32_sparc_vxworks.c:379 eelf32_spu.c:952
#: eelf32_tic6x_be.c:453 eelf32_tic6x_elf_be.c:453 eelf32_tic6x_elf_le.c:453
#: eelf32_tic6x_le.c:453 eelf32_tic6x_linux_be.c:453
#: eelf32_tic6x_linux_le.c:453 eelf32_x86_64.c:5279 eelf32am33lin.c:316
#: eelf32b4300.c:557 eelf32bfin.c:334 eelf32bfinfd.c:359 eelf32bmip.c:557
#: eelf32bmipn32.c:571 eelf32bsmip.c:571 eelf32btsmip.c:557
#: eelf32btsmip_fbsd.c:557 eelf32btsmipn32.c:557 eelf32btsmipn32_fbsd.c:557
#: eelf32cr16.c:369 eelf32crx.c:256 eelf32ebmip.c:557 eelf32ebmipvxworks.c:592
#: eelf32elmip.c:557 eelf32elmipvxworks.c:592 eelf32epiphany.c:234
#: eelf32epiphany_4x4.c:221 eelf32frvfd.c:341 eelf32ip2k.c:234
#: eelf32l4300.c:557 eelf32lm32.c:234 eelf32lm32fd.c:341 eelf32lmip.c:557
#: eelf32lppc.c:605 eelf32lppclinux.c:605 eelf32lppcnto.c:605
#: eelf32lppcsim.c:605 eelf32lr5900.c:475 eelf32lr5900n32.c:474
#: eelf32lriscv.c:396 eelf32lriscv_ilp32.c:396 eelf32lriscv_ilp32f.c:396
#: eelf32lsmip.c:557 eelf32ltsmip.c:557 eelf32ltsmip_fbsd.c:557
#: eelf32ltsmipn32.c:557 eelf32ltsmipn32_fbsd.c:557 eelf32m32c.c:245
#: eelf32mb_linux.c:342 eelf32mbel_linux.c:342 eelf32mcore.c:240
#: eelf32mep.c:219 eelf32metag.c:591 eelf32microblaze.c:219
#: eelf32microblazeel.c:219 eelf32mipswindiss.c:449 eelf32moxie.c:234
#: eelf32or1k.c:235 eelf32or1k_linux.c:342 eelf32ppc.c:605
#: eelf32ppc_fbsd.c:605 eelf32ppclinux.c:605 eelf32ppcnto.c:605
#: eelf32ppcsim.c:605 eelf32ppcvxworks.c:579 eelf32ppcwindiss.c:605
#: eelf32rl78.c:234 eelf32rx.c:262 eelf32rx_linux.c:247 eelf32tilegx.c:342
#: eelf32tilegx_be.c:342 eelf32tilepro.c:342 eelf32vax.c:316
#: eelf32visium.c:219 eelf32xc16x.c:219 eelf32xc16xl.c:219 eelf32xc16xs.c:219
#: eelf32xstormy16.c:230 eelf32xtensa.c:2263 eelf32z80.c:246 eelf64_aix.c:316
#: eelf64_ia64.c:373 eelf64_ia64_fbsd.c:373 eelf64_s390.c:412
#: eelf64_sparc.c:342 eelf64_sparc_fbsd.c:342 eelf64_sparc_sol2.c:473
#: eelf64alpha.c:435 eelf64alpha_fbsd.c:435 eelf64alpha_nbsd.c:435
#: eelf64bmip.c:571 eelf64bpf.c:219 eelf64btsmip.c:557 eelf64btsmip_fbsd.c:557
#: eelf64hppa.c:286 eelf64lppc.c:1036 eelf64lriscv.c:396
#: eelf64lriscv_lp64.c:396 eelf64lriscv_lp64f.c:396 eelf64ltsmip.c:557
#: eelf64ltsmip_fbsd.c:557 eelf64mmix.c:4093 eelf64ppc.c:1036
#: eelf64ppc_fbsd.c:1036 eelf64rdos.c:367 eelf64tilegx.c:342
#: eelf64tilegx_be.c:342 eelf_i386.c:4901 eelf_i386_be.c:340
#: eelf_i386_fbsd.c:376 eelf_i386_ldso.c:351 eelf_i386_sol2.c:507
#: eelf_i386_vxworks.c:403 eelf_iamcu.c:4879 eelf_k1om.c:5235
#: eelf_k1om_fbsd.c:5215 eelf_l1om.c:5235 eelf_l1om_fbsd.c:5215
#: eelf_s390.c:342 eelf_x86_64.c:5279 eelf_x86_64_cloudabi.c:376
#: eelf_x86_64_fbsd.c:376 eelf_x86_64_sol2.c:507 eh8300elf.c:234
#: eh8300elf_linux.c:234 eh8300helf.c:234 eh8300helf_linux.c:234
#: eh8300hnelf.c:234 eh8300self.c:234 eh8300self_linux.c:234 eh8300snelf.c:234
#: eh8300sxelf.c:234 eh8300sxelf_linux.c:234 eh8300sxnelf.c:234
#: ehppa64linux.c:316 ehppaelf.c:502 ehppalinux.c:625 ehppanbsd.c:625
#: ehppaobsd.c:625 ei386lynx.c:331 ei386moss.c:331 ei386nto.c:331
#: em32relf.c:234 em32relf_linux.c:341 em32rlelf.c:234 em32rlelf_linux.c:341
#: em68hc11elf.c:504 em68hc11elfb.c:504 em68hc12elf.c:504 em68hc12elfb.c:504
#: em68kelf.c:499 em68kelfnbsd.c:499 emn10300.c:316 ends32belf.c:355
#: ends32belf16m.c:355 ends32belf_linux.c:429 ends32elf.c:355
#: ends32elf16m.c:355 ends32elf_linux.c:429 enios2elf.c:521 enios2linux.c:603
#: eppclynx.c:605 epruelf.c:240 escore3_elf.c:337 escore7_elf.c:337
#: eshelf.c:316 eshelf_fd.c:342 eshelf_linux.c:342 eshelf_nbsd.c:316
#: eshelf_nto.c:316 eshelf_uclinux.c:316 eshelf_vxworks.c:353 eshlelf.c:316
#: eshlelf_fd.c:342 eshlelf_linux.c:342 eshlelf_nbsd.c:316 eshlelf_nto.c:316
#: eshlelf_vxworks.c:353 ev850.c:266 ev850_rh850.c:266
msgid "%F%P: invalid stack size `%s'\n"
msgstr "%F%P: tamanho de pilha inválido \"%s\"\n"
#: eaarch64cloudabi.c:685 eaarch64cloudabib.c:685 eaarch64elf.c:684
#: eaarch64elf32.c:684 eaarch64elf32b.c:684 eaarch64elfb.c:684
#: eaarch64fbsd.c:685 eaarch64fbsdb.c:685 eaarch64linux.c:685
#: eaarch64linux32.c:685 eaarch64linux32b.c:685 eaarch64linuxb.c:685
#: earcelf.c:317 earclinux.c:373 earclinux_nps.c:373 earcv2elf.c:250
#: earcv2elfx.c:250 earmelf.c:927 earmelf_fbsd.c:927 earmelf_fuchsia.c:928
#: earmelf_linux.c:928 earmelf_linux_eabi.c:928 earmelf_linux_fdpiceabi.c:928
#: earmelf_nacl.c:928 earmelf_nbsd.c:927 earmelf_phoenix.c:928
#: earmelf_vxworks.c:963 earmelfb.c:927 earmelfb_fbsd.c:927
#: earmelfb_fuchsia.c:928 earmelfb_linux.c:928 earmelfb_linux_eabi.c:928
#: earmelfb_linux_fdpiceabi.c:928 earmelfb_nacl.c:928 earmelfb_nbsd.c:927
#: earmnto.c:902 earmsymbian.c:927 eavr1.c:473 eavr2.c:473 eavr25.c:473
#: eavr3.c:473 eavr31.c:473 eavr35.c:473 eavr4.c:473 eavr5.c:473 eavr51.c:473
#: eavr6.c:473 eavrtiny.c:473 eavrxmega1.c:473 eavrxmega2.c:473
#: eavrxmega3.c:473 eavrxmega4.c:473 eavrxmega5.c:473 eavrxmega6.c:473
#: eavrxmega7.c:473 ecriself.c:265 ecrislinux.c:348 ecskyelf.c:509
#: ecskyelf_linux.c:617 ed10velf.c:250 eelf32_sparc.c:373
#: eelf32_sparc_sol2.c:504 eelf32_sparc_vxworks.c:410 eelf32_spu.c:983
#: eelf32_tic6x_be.c:484 eelf32_tic6x_elf_be.c:484 eelf32_tic6x_elf_le.c:484
#: eelf32_tic6x_le.c:484 eelf32_tic6x_linux_be.c:484
#: eelf32_tic6x_linux_le.c:484 eelf32_x86_64.c:5310 eelf32am33lin.c:347
#: eelf32b4300.c:588 eelf32bfin.c:365 eelf32bfinfd.c:390 eelf32bmip.c:588
#: eelf32bmipn32.c:602 eelf32bsmip.c:602 eelf32btsmip.c:588
#: eelf32btsmip_fbsd.c:588 eelf32btsmipn32.c:588 eelf32btsmipn32_fbsd.c:588
#: eelf32cr16.c:400 eelf32crx.c:287 eelf32ebmip.c:588 eelf32ebmipvxworks.c:623
#: eelf32elmip.c:588 eelf32elmipvxworks.c:623 eelf32epiphany.c:265
#: eelf32epiphany_4x4.c:252 eelf32frvfd.c:372 eelf32ip2k.c:265
#: eelf32l4300.c:588 eelf32lm32.c:265 eelf32lm32fd.c:372 eelf32lmip.c:588
#: eelf32lppc.c:636 eelf32lppclinux.c:636 eelf32lppcnto.c:636
#: eelf32lppcsim.c:636 eelf32lr5900.c:506 eelf32lr5900n32.c:505
#: eelf32lriscv.c:427 eelf32lriscv_ilp32.c:427 eelf32lriscv_ilp32f.c:427
#: eelf32lsmip.c:588 eelf32ltsmip.c:588 eelf32ltsmip_fbsd.c:588
#: eelf32ltsmipn32.c:588 eelf32ltsmipn32_fbsd.c:588 eelf32m32c.c:276
#: eelf32mb_linux.c:373 eelf32mbel_linux.c:373 eelf32mcore.c:271
#: eelf32mep.c:250 eelf32metag.c:622 eelf32microblaze.c:250
#: eelf32microblazeel.c:250 eelf32mipswindiss.c:480 eelf32moxie.c:265
#: eelf32or1k.c:266 eelf32or1k_linux.c:373 eelf32ppc.c:636
#: eelf32ppc_fbsd.c:636 eelf32ppclinux.c:636 eelf32ppcnto.c:636
#: eelf32ppcsim.c:636 eelf32ppcvxworks.c:610 eelf32ppcwindiss.c:636
#: eelf32rl78.c:265 eelf32rx.c:293 eelf32rx_linux.c:278 eelf32tilegx.c:373
#: eelf32tilegx_be.c:373 eelf32tilepro.c:373 eelf32vax.c:347
#: eelf32visium.c:250 eelf32xc16x.c:250 eelf32xc16xl.c:250 eelf32xc16xs.c:250
#: eelf32xstormy16.c:261 eelf32xtensa.c:2294 eelf32z80.c:277 eelf64_aix.c:347
#: eelf64_ia64.c:404 eelf64_ia64_fbsd.c:404 eelf64_s390.c:443
#: eelf64_sparc.c:373 eelf64_sparc_fbsd.c:373 eelf64_sparc_sol2.c:504
#: eelf64alpha.c:466 eelf64alpha_fbsd.c:466 eelf64alpha_nbsd.c:466
#: eelf64bmip.c:602 eelf64bpf.c:250 eelf64btsmip.c:588 eelf64btsmip_fbsd.c:588
#: eelf64hppa.c:317 eelf64lppc.c:1067 eelf64lriscv.c:427
#: eelf64lriscv_lp64.c:427 eelf64lriscv_lp64f.c:427 eelf64ltsmip.c:588
#: eelf64ltsmip_fbsd.c:588 eelf64mmix.c:4124 eelf64ppc.c:1067
#: eelf64ppc_fbsd.c:1067 eelf64rdos.c:398 eelf64tilegx.c:373
#: eelf64tilegx_be.c:373 eelf_i386.c:4932 eelf_i386_be.c:371
#: eelf_i386_fbsd.c:407 eelf_i386_ldso.c:382 eelf_i386_sol2.c:538
#: eelf_i386_vxworks.c:434 eelf_iamcu.c:4910 eelf_k1om.c:5266
#: eelf_k1om_fbsd.c:5246 eelf_l1om.c:5266 eelf_l1om_fbsd.c:5246
#: eelf_s390.c:373 eelf_x86_64.c:5310 eelf_x86_64_cloudabi.c:407
#: eelf_x86_64_fbsd.c:407 eelf_x86_64_sol2.c:538 eh8300elf.c:265
#: eh8300elf_linux.c:265 eh8300helf.c:265 eh8300helf_linux.c:265
#: eh8300hnelf.c:265 eh8300self.c:265 eh8300self_linux.c:265 eh8300snelf.c:265
#: eh8300sxelf.c:265 eh8300sxelf_linux.c:265 eh8300sxnelf.c:265
#: ehppa64linux.c:347 ehppaelf.c:533 ehppalinux.c:656 ehppanbsd.c:656
#: ehppaobsd.c:656 ei386lynx.c:362 ei386moss.c:362 ei386nto.c:362
#: em32relf.c:265 em32relf_linux.c:372 em32rlelf.c:265 em32rlelf_linux.c:372
#: em68hc11elf.c:535 em68hc11elfb.c:535 em68hc12elf.c:535 em68hc12elfb.c:535
#: em68kelf.c:530 em68kelfnbsd.c:530 emn10300.c:347 ends32belf.c:386
#: ends32belf16m.c:386 ends32belf_linux.c:460 ends32elf.c:386
#: ends32elf16m.c:386 ends32elf_linux.c:460 enios2elf.c:552 enios2linux.c:634
#: eppclynx.c:636 epruelf.c:271 escore3_elf.c:368 escore7_elf.c:368
#: eshelf.c:347 eshelf_fd.c:373 eshelf_linux.c:373 eshelf_nbsd.c:347
#: eshelf_nto.c:347 eshelf_uclinux.c:347 eshelf_vxworks.c:384 eshlelf.c:347
#: eshlelf_fd.c:373 eshlelf_linux.c:373 eshlelf_nbsd.c:347 eshlelf_nto.c:347
#: eshlelf_vxworks.c:384 ev850.c:297 ev850_rh850.c:297
msgid "%F%P: invalid visibility in `-z %s'; must be default, internal, hidden, or protected"
msgstr "%F%P: visibilidade inválida em \"-z %s\"; deve ser default, internal, hidden ou protected"
#: eaarch64cloudabi.c:754 eaarch64cloudabib.c:754 eaarch64elf.c:749
#: eaarch64elf32.c:749 eaarch64elf32b.c:749 eaarch64elfb.c:749
#: eaarch64fbsd.c:754 eaarch64fbsdb.c:754 eaarch64linux.c:754
#: eaarch64linux32.c:754 eaarch64linux32b.c:754 eaarch64linuxb.c:754
#: earcelf.c:373 earclinux.c:433 earclinux_nps.c:433 earcv2elf.c:255
#: earcv2elfx.c:255 earmelf.c:983 earmelf_fbsd.c:983 earmelf_fuchsia.c:988
#: earmelf_linux.c:988 earmelf_linux_eabi.c:988 earmelf_linux_fdpiceabi.c:988
#: earmelf_nacl.c:988 earmelf_nbsd.c:983 earmelf_phoenix.c:988
#: earmelf_vxworks.c:1019 earmelfb.c:983 earmelfb_fbsd.c:983
#: earmelfb_fuchsia.c:988 earmelfb_linux.c:988 earmelfb_linux_eabi.c:988
#: earmelfb_linux_fdpiceabi.c:988 earmelfb_nacl.c:988 earmelfb_nbsd.c:983
#: earmnto.c:958 earmsymbian.c:983 eavr1.c:478 eavr2.c:478 eavr25.c:478
#: eavr3.c:478 eavr31.c:478 eavr35.c:478 eavr4.c:478 eavr5.c:478 eavr51.c:478
#: eavr6.c:478 eavrtiny.c:478 eavrxmega1.c:478 eavrxmega2.c:478
#: eavrxmega3.c:478 eavrxmega4.c:478 eavrxmega5.c:478 eavrxmega6.c:478
#: eavrxmega7.c:478 ecriself.c:270 ecrislinux.c:408 ecskyelf.c:514
#: ecskyelf_linux.c:677 ed10velf.c:255 eelf32_sparc.c:433
#: eelf32_sparc_sol2.c:564 eelf32_sparc_vxworks.c:470 eelf32_spu.c:988
#: eelf32_tic6x_be.c:540 eelf32_tic6x_elf_be.c:540 eelf32_tic6x_elf_le.c:540
#: eelf32_tic6x_le.c:540 eelf32_tic6x_linux_be.c:540
#: eelf32_tic6x_linux_le.c:540 eelf32_x86_64.c:5439 eelf32am33lin.c:403
#: eelf32b4300.c:648 eelf32bfin.c:421 eelf32bfinfd.c:446 eelf32bmip.c:648
#: eelf32bmipn32.c:662 eelf32bsmip.c:662 eelf32btsmip.c:648
#: eelf32btsmip_fbsd.c:648 eelf32btsmipn32.c:648 eelf32btsmipn32_fbsd.c:648
#: eelf32cr16.c:405 eelf32crx.c:292 eelf32ebmip.c:648 eelf32ebmipvxworks.c:683
#: eelf32elmip.c:648 eelf32elmipvxworks.c:683 eelf32epiphany.c:270
#: eelf32epiphany_4x4.c:257 eelf32frvfd.c:428 eelf32ip2k.c:270
#: eelf32l4300.c:648 eelf32lm32.c:270 eelf32lm32fd.c:428 eelf32lmip.c:648
#: eelf32lppc.c:702 eelf32lppclinux.c:702 eelf32lppcnto.c:702
#: eelf32lppcsim.c:702 eelf32lr5900.c:511 eelf32lr5900n32.c:510
#: eelf32lriscv.c:487 eelf32lriscv_ilp32.c:487 eelf32lriscv_ilp32f.c:487
#: eelf32lsmip.c:648 eelf32ltsmip.c:648 eelf32ltsmip_fbsd.c:648
#: eelf32ltsmipn32.c:648 eelf32ltsmipn32_fbsd.c:648 eelf32m32c.c:281
#: eelf32mb_linux.c:433 eelf32mbel_linux.c:433 eelf32mcore.c:276
#: eelf32mep.c:255 eelf32metag.c:682 eelf32microblaze.c:255
#: eelf32microblazeel.c:255 eelf32mipswindiss.c:485 eelf32moxie.c:270
#: eelf32or1k.c:271 eelf32or1k_linux.c:433 eelf32ppc.c:702
#: eelf32ppc_fbsd.c:702 eelf32ppclinux.c:702 eelf32ppcnto.c:702
#: eelf32ppcsim.c:702 eelf32ppcvxworks.c:676 eelf32ppcwindiss.c:702
#: eelf32rl78.c:270 eelf32rx.c:298 eelf32rx_linux.c:283 eelf32tilegx.c:433
#: eelf32tilegx_be.c:433 eelf32tilepro.c:433 eelf32vax.c:403
#: eelf32visium.c:255 eelf32xc16x.c:255 eelf32xc16xl.c:255 eelf32xc16xs.c:255
#: eelf32xstormy16.c:266 eelf32xtensa.c:2354 eelf32z80.c:282 eelf64_aix.c:403
#: eelf64_ia64.c:460 eelf64_ia64_fbsd.c:460 eelf64_s390.c:503
#: eelf64_sparc.c:433 eelf64_sparc_fbsd.c:433 eelf64_sparc_sol2.c:564
#: eelf64alpha.c:526 eelf64alpha_fbsd.c:526 eelf64alpha_nbsd.c:526
#: eelf64bmip.c:662 eelf64bpf.c:255 eelf64btsmip.c:648 eelf64btsmip_fbsd.c:648
#: eelf64hppa.c:373 eelf64lppc.c:1133 eelf64lriscv.c:487
#: eelf64lriscv_lp64.c:487 eelf64lriscv_lp64f.c:487 eelf64ltsmip.c:648
#: eelf64ltsmip_fbsd.c:648 eelf64mmix.c:4180 eelf64ppc.c:1133
#: eelf64ppc_fbsd.c:1133 eelf64rdos.c:458 eelf64tilegx.c:433
#: eelf64tilegx_be.c:433 eelf_i386.c:5058 eelf_i386_be.c:470
#: eelf_i386_fbsd.c:533 eelf_i386_ldso.c:485 eelf_i386_sol2.c:641
#: eelf_i386_vxworks.c:537 eelf_iamcu.c:5013 eelf_k1om.c:5369
#: eelf_k1om_fbsd.c:5349 eelf_l1om.c:5369 eelf_l1om_fbsd.c:5349
#: eelf_s390.c:433 eelf_x86_64.c:5442 eelf_x86_64_cloudabi.c:539
#: eelf_x86_64_fbsd.c:539 eelf_x86_64_sol2.c:670 eh8300elf.c:270
#: eh8300elf_linux.c:270 eh8300helf.c:270 eh8300helf_linux.c:270
#: eh8300hnelf.c:270 eh8300self.c:270 eh8300self_linux.c:270 eh8300snelf.c:270
#: eh8300sxelf.c:270 eh8300sxelf_linux.c:270 eh8300sxnelf.c:270
#: ehppa64linux.c:403 ehppaelf.c:538 ehppalinux.c:716 ehppanbsd.c:716
#: ehppaobsd.c:716 ei386lynx.c:418 ei386moss.c:418 ei386nto.c:418
#: em32relf.c:270 em32relf_linux.c:428 em32rlelf.c:270 em32rlelf_linux.c:428
#: em68hc11elf.c:540 em68hc11elfb.c:540 em68hc12elf.c:540 em68hc12elfb.c:540
#: em68kelf.c:590 em68kelfnbsd.c:590 emn10300.c:403 ends32belf.c:391
#: ends32belf16m.c:391 ends32belf_linux.c:520 ends32elf.c:391
#: ends32elf16m.c:391 ends32elf_linux.c:520 enios2elf.c:557 enios2linux.c:694
#: eppclynx.c:702 epruelf.c:276 escore3_elf.c:424 escore7_elf.c:424
#: eshelf.c:403 eshelf_fd.c:433 eshelf_linux.c:433 eshelf_nbsd.c:403
#: eshelf_nto.c:403 eshelf_uclinux.c:403 eshelf_vxworks.c:440 eshlelf.c:403
#: eshlelf_fd.c:433 eshlelf_linux.c:433 eshlelf_nbsd.c:403 eshlelf_nto.c:403
#: eshlelf_vxworks.c:440 ev850.c:302 ev850_rh850.c:302
msgid "%P: warning: -z %s ignored\n"
msgstr "%P: aviso: -z %s ignorada\n"
#: eaarch64cloudabi.c:788 eaarch64cloudabib.c:788 eaarch64elf.c:783
#: eaarch64elf32.c:783 eaarch64elf32b.c:783 eaarch64elfb.c:783
#: eaarch64fbsd.c:788 eaarch64fbsdb.c:788 eaarch64linux.c:788
#: eaarch64linux32.c:788 eaarch64linux32b.c:788 eaarch64linuxb.c:788
msgid "%P: error: unrecognized option for --fix-cortex-a53-843419: %s\n"
msgstr "%P: erro: opção não reconhecida para --fix-cortex-a53-843419: %s\n"
#: eaarch64cloudabi.c:817 eaarch64cloudabib.c:817 eaarch64elf.c:812
#: eaarch64elf32.c:812 eaarch64elf32b.c:812 eaarch64elfb.c:812
#: eaarch64fbsd.c:817 eaarch64fbsdb.c:817 eaarch64linux.c:817
#: eaarch64linux32.c:817 eaarch64linux32b.c:817 eaarch64linuxb.c:817
#: earmelf.c:1120 earmelf_fbsd.c:1120 earmelf_fuchsia.c:1125
#: earmelf_linux.c:1125 earmelf_linux_eabi.c:1125
#: earmelf_linux_fdpiceabi.c:1125 earmelf_nacl.c:1125 earmelf_nbsd.c:1120
#: earmelf_phoenix.c:1125 earmelf_vxworks.c:1160 earmelfb.c:1120
#: earmelfb_fbsd.c:1120 earmelfb_fuchsia.c:1125 earmelfb_linux.c:1125
#: earmelfb_linux_eabi.c:1125 earmelfb_linux_fdpiceabi.c:1125
#: earmelfb_nacl.c:1125 earmelfb_nbsd.c:1120 earmnto.c:1095 earmsymbian.c:1120
#, c-format
msgid ""
" --no-enum-size-warning Don't warn about objects with incompatible\n"
" enum sizes\n"
msgstr ""
" --no-enum-size-warning Não avisa sobre objetos com incompatibilidade\n"
" de tamanhos de enum\n"
#: eaarch64cloudabi.c:819 eaarch64cloudabib.c:819 eaarch64elf.c:814
#: eaarch64elf32.c:814 eaarch64elf32b.c:814 eaarch64elfb.c:814
#: eaarch64fbsd.c:819 eaarch64fbsdb.c:819 eaarch64linux.c:819
#: eaarch64linux32.c:819 eaarch64linux32b.c:819 eaarch64linuxb.c:819
#: earmelf.c:1122 earmelf_fbsd.c:1122 earmelf_fuchsia.c:1127
#: earmelf_linux.c:1127 earmelf_linux_eabi.c:1127
#: earmelf_linux_fdpiceabi.c:1127 earmelf_nacl.c:1127 earmelf_nbsd.c:1122
#: earmelf_phoenix.c:1127 earmelf_vxworks.c:1162 earmelfb.c:1122
#: earmelfb_fbsd.c:1122 earmelfb_fuchsia.c:1127 earmelfb_linux.c:1127
#: earmelfb_linux_eabi.c:1127 earmelfb_linux_fdpiceabi.c:1127
#: earmelfb_nacl.c:1127 earmelfb_nbsd.c:1122 earmnto.c:1097 earmsymbian.c:1122
#, c-format
msgid ""
" --no-wchar-size-warning Don't warn about objects with incompatible\n"
" wchar_t sizes\n"
msgstr ""
" --no-wchar-size-warning Não avisa sobre objetos com incompatibilidade\n"
" de tamanhos de wchar_t\n"
#: eaarch64cloudabi.c:821 eaarch64cloudabib.c:821 eaarch64elf.c:816
#: eaarch64elf32.c:816 eaarch64elf32b.c:816 eaarch64elfb.c:816
#: eaarch64fbsd.c:821 eaarch64fbsdb.c:821 eaarch64linux.c:821
#: eaarch64linux32.c:821 eaarch64linux32b.c:821 eaarch64linuxb.c:821
#: earmelf.c:1124 earmelf_fbsd.c:1124 earmelf_fuchsia.c:1129
#: earmelf_linux.c:1129 earmelf_linux_eabi.c:1129
#: earmelf_linux_fdpiceabi.c:1129 earmelf_nacl.c:1129 earmelf_nbsd.c:1124
#: earmelf_phoenix.c:1129 earmelf_vxworks.c:1164 earmelfb.c:1124
#: earmelfb_fbsd.c:1124 earmelfb_fuchsia.c:1129 earmelfb_linux.c:1129
#: earmelfb_linux_eabi.c:1129 earmelfb_linux_fdpiceabi.c:1129
#: earmelfb_nacl.c:1129 earmelfb_nbsd.c:1124 earmnto.c:1099 earmsymbian.c:1124
#, c-format
msgid " --pic-veneer Always generate PIC interworking veneers\n"
msgstr " --pic-veneer Sempre gera veneers de intertrabalho PIC\n"
#: eaarch64cloudabi.c:822 eaarch64cloudabib.c:822 eaarch64elf.c:817
#: eaarch64elf32.c:817 eaarch64elf32b.c:817 eaarch64elfb.c:817
#: eaarch64fbsd.c:822 eaarch64fbsdb.c:822 eaarch64linux.c:822
#: eaarch64linux32.c:822 eaarch64linux32b.c:822 eaarch64linuxb.c:822
#: earmelf.c:1131 earmelf_fbsd.c:1131 earmelf_fuchsia.c:1136
#: earmelf_linux.c:1136 earmelf_linux_eabi.c:1136
#: earmelf_linux_fdpiceabi.c:1136 earmelf_nacl.c:1136 earmelf_nbsd.c:1131
#: earmelf_phoenix.c:1136 earmelf_vxworks.c:1171 earmelfb.c:1131
#: earmelfb_fbsd.c:1131 earmelfb_fuchsia.c:1136 earmelfb_linux.c:1136
#: earmelfb_linux_eabi.c:1136 earmelfb_linux_fdpiceabi.c:1136
#: earmelfb_nacl.c:1136 earmelfb_nbsd.c:1131 earmnto.c:1106 earmsymbian.c:1131
#, 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 Tamanho máximo de um grupo de seções de entrada\n"
" que podem ser manipuladas por uma seção de\n"
" stub. Um valor negativo localiza todos os\n"
" stubs após seus ramos (com um tamanho de\n"
" grupo de -N), enquanto um valor positivo\n"
" permite dois grupos de seções de entrada,\n"
" um antes e um após cada seção de stub.\n"
" Valores de +/- 1 indicam que o vinculador\n"
" deve escolher o padrão adequado.\n"
#: eaarch64cloudabi.c:831 eaarch64cloudabib.c:831 eaarch64elf.c:826
#: eaarch64elf32.c:826 eaarch64elf32b.c:826 eaarch64elfb.c:826
#: eaarch64fbsd.c:831 eaarch64fbsdb.c:831 eaarch64linux.c:831
#: eaarch64linux32.c:831 eaarch64linux32b.c:831 eaarch64linuxb.c:831
#, c-format
msgid " --fix-cortex-a53-835769 Fix erratum 835769\n"
msgstr " --fix-cortex-a53-835769 Corrige errata 835769\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: eaarch64cloudabi.c:832 eaarch64cloudabib.c:832 eaarch64elf.c:827
#: eaarch64elf32.c:827 eaarch64elf32b.c:827 eaarch64elfb.c:827
#: eaarch64fbsd.c:832 eaarch64fbsdb.c:832 eaarch64linux.c:832
#: eaarch64linux32.c:832 eaarch64linux32b.c:832 eaarch64linuxb.c:832
#, 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]\n"
" Corrige errata 843419 e, opcionalmente,\n"
" especifica qual solução alternativa usará.\n"
" full (padrão): Usa ADRP as ADR como soluções,\n"
" aumentando o tamanho de seus binários.\n"
" adr: usa apenas a solução ADR, que não aumenta\n"
" o tamanho dos binários, mas a vinculação vai\n"
" falhar se o endereço de referência estiver\n"
" fora do intervalo de uma instrução ADR. Isso\n"
" vai remover a necessidade de usar um veneer\n"
" (folheado) e resulta em benefícios quanto a\n"
" desempenho e tamanho.\n"
" adrp: Usa apenas a solução ADRP, a qual nunca\n"
" reescreve sua inscrição ADRP para uma ADR.\n"
" Como tal, a solução alternativa sempre usará\n"
" um veneer e isso fornecerá uma sobrecarga de\n"
" desempenho e tamanho.\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: eaarch64cloudabi.c:843 eaarch64cloudabib.c:843 eaarch64elf.c:838
#: eaarch64elf32.c:838 eaarch64elf32b.c:838 eaarch64elfb.c:838
#: eaarch64fbsd.c:843 eaarch64fbsdb.c:843 eaarch64linux.c:843
#: eaarch64linux32.c:843 eaarch64linux32b.c:843 eaarch64linuxb.c:843
#, c-format
msgid " --no-apply-dynamic-relocs Do not apply link-time values for dynamic relocations\n"
msgstr ""
" --no-apply-dynamic-relocs Não aplica valores em tempo de vinculação\n"
" para realocações dinâmicas\n"
#: eaarch64cloudabi.c:844 eaarch64cloudabib.c:844 eaarch64elf.c:839
#: eaarch64elf32.c:839 eaarch64elf32b.c:839 eaarch64elfb.c:839
#: eaarch64fbsd.c:844 eaarch64fbsdb.c:844 eaarch64linux.c:844
#: eaarch64linux32.c:844 eaarch64linux32b.c:844 eaarch64linuxb.c:844
#, c-format
msgid " -z force-bti Turn on Branch Target Identification mechanism and generate PLTs with BTI. Generate warnings for missing BTI on inputs\n"
msgstr ""
" -z force-bti Ativa o mecanismo Branch Target Identification\n"
" e gera PLTs com BTI. Gera avisos para falta\n"
" de BTI nas entradas\n"
#: eaarch64cloudabi.c:845 eaarch64cloudabib.c:845 eaarch64elf.c:840
#: eaarch64elf32.c:840 eaarch64elf32b.c:840 eaarch64elfb.c:840
#: eaarch64fbsd.c:845 eaarch64fbsdb.c:845 eaarch64linux.c:845
#: eaarch64linux32.c:845 eaarch64linux32b.c:845 eaarch64linuxb.c:845
#, c-format
msgid " -z pac-plt Protect PLTs with Pointer Authentication.\n"
msgstr " -z pac-plt Protege PLTs com Pointer Authentication.\n"
#: eaix5ppc.c:317 eaix5rs6.c:317 eaixppc.c:317 eaixrs6.c:317 eppcmacos.c:317
msgid "%F%P: cannot open %s\n"
msgstr "%F%P: não foi possível abrir %s\n"
#: eaix5ppc.c:364 eaix5rs6.c:364 eaixppc.c:364 eaixrs6.c:364 eppcmacos.c:364
msgid "%F%P: cannot read %s\n"
msgstr "%F%P: não foi possível ler %s\n"
#: eaix5ppc.c:392 eaix5rs6.c:392 eaixppc.c:392 eaixrs6.c:392 eppcmacos.c:392
msgid "%P: warning: ignoring invalid -D number %s\n"
msgstr "%P: aviso: ignorando número de -D inválido %s\n"
#: eaix5ppc.c:400 eaix5rs6.c:400 eaixppc.c:400 eaixrs6.c:400 eppcmacos.c:400
msgid "%P: warning: ignoring invalid -H number %s\n"
msgstr "%P: aviso: ignorando número de -H inválido %s\n"
#: eaix5ppc.c:512 eaix5rs6.c:512 eaixppc.c:512 eaixrs6.c:512 eppcmacos.c:512
msgid "%P: warning: ignoring invalid -bmaxdata number %s\n"
msgstr "%P: aviso: ignorando número de -bmaxdata inválido %s\n"
#: eaix5ppc.c:521 eaix5rs6.c:521 eaixppc.c:521 eaixrs6.c:521 eppcmacos.c:521
msgid "%P: warning: ignoring invalid -bmaxstack number %s\n"
msgstr "%P: aviso: ignorando número de -bmaxstack inválido %s\n"
#: eaix5ppc.c:534 eaix5rs6.c:534 eaixppc.c:534 eaixrs6.c:534 eppcmacos.c:534
msgid "%P: warning: ignoring invalid module type %s\n"
msgstr "%P: aviso: ignorando tipo de módulo inválido %s\n"
#: eaix5ppc.c:564 eaix5rs6.c:564 eaixppc.c:564 eaixrs6.c:564 eppcmacos.c:564
msgid "%P: warning: ignoring invalid -pD number %s\n"
msgstr "%P: aviso: ignorando número de -pD inválido %s\n"
#: eaix5ppc.c:587 eaix5rs6.c:587 eaixppc.c:587 eaixrs6.c:587 eppcmacos.c:587
msgid "%P: warning: ignoring invalid -pT number %s\n"
msgstr "%P: aviso: ignorando número de -pT inválido %s\n"
#: eaix5ppc.c:716 eaix5rs6.c:716 eaixppc.c:716 eaixrs6.c:716 eppcmacos.c:716
msgid "%F%P: bfd_xcoff_link_record_set failed: %E\n"
msgstr "%F%P: bfd_xcoff_link_record_set falhou: %E\n"
#: eaix5ppc.c:746 eaix5rs6.c:746 eaixppc.c:746 eaixrs6.c:746 eppcmacos.c:746
msgid "%F%P: bfd_link_hash_lookup of export symbol failed: %E\n"
msgstr "%F%P: bfd_link_hash_lookup de símbolo de exportação falhou: %E\n"
#: eaix5ppc.c:748 eaix5rs6.c:748 eaixppc.c:748 eaixrs6.c:748 eppcmacos.c:748
msgid "%F%P: bfd_xcoff_export_symbol failed: %E\n"
msgstr "%F%P: bfd_xcoff_export_symbol falha: %E\n"
#: eaix5ppc.c:854 eaix5rs6.c:854 eaixppc.c:854 eaixrs6.c:854 eppcmacos.c:854
msgid "%F%P: can't find output section %s\n"
msgstr "%F%P: não foi possível localizar seção de saída %s\n"
#: eaix5ppc.c:891 eaix5rs6.c:891 eaixppc.c:891 eaixrs6.c:891 eppcmacos.c:891
msgid "%F%P: can't find %s in output section\n"
msgstr "%F%P: não foi possível localizar %s em seção de saída\n"
#: eaix5ppc.c:958 eaix5rs6.c:958 eaixppc.c:958 eaixrs6.c:958 eppcmacos.c:958
msgid "%P: can't find required output section %s\n"
msgstr "%P: não foi possível localizar seção de saída exigida %s\n"
#: eaix5ppc.c:1167 eaix5rs6.c:1167 eaixppc.c:1167 eaixrs6.c:1167
#: eppcmacos.c:1167
msgid "%F%P:%s:%d: #! ([member]) is not supported in import files\n"
msgstr "%F%P:%s:%d: #! ([member]) não tem suporte nos arquivos de importação\n"
#: eaix5ppc.c:1184 eaix5rs6.c:1184 eaixppc.c:1184 eaixrs6.c:1184
#: eppcmacos.c:1184
msgid "%F%P: could not parse import path: %E\n"
msgstr "%F%P: não foi possível analisar caminho de importação: %E\n"
#: eaix5ppc.c:1194 eaix5ppc.c:1206 eaix5rs6.c:1194 eaix5rs6.c:1206
#: eaixppc.c:1194 eaixppc.c:1206 eaixrs6.c:1194 eaixrs6.c:1206
#: eppcmacos.c:1194 eppcmacos.c:1206
msgid "%P:%s:%d: warning: syntax error in import file\n"
msgstr "%P:%s:%d: aviso: erro de sintaxe no arquivo de importação\n"
#: eaix5ppc.c:1241 eaix5rs6.c:1241 eaixppc.c:1241 eaixrs6.c:1241
#: eppcmacos.c:1241
msgid "%P:%s%d: warning: syntax error in import/export file\n"
msgstr "%P:%s%d: aviso: erro de sintaxe no arquivo de importação/exportação\n"
#: eaix5ppc.c:1259 eaix5rs6.c:1259 eaixppc.c:1259 eaixrs6.c:1259
#: eppcmacos.c:1259
msgid "%P:%s:%d: warning: syntax error in import/export file\n"
msgstr "%P:%s:%d: aviso: erro de sintaxe no arquivo de importação/exportação\n"
#: eaix5ppc.c:1294 eaix5rs6.c:1294 eaixppc.c:1294 eaixrs6.c:1294
#: eppcmacos.c:1294
msgid "%X%P:%s:%d: failed to import symbol %s: %E\n"
msgstr "%X%P:%s:%d: falha ao importar símbolos %s: %E\n"
#: eaix5ppc.c:1304 eaix5rs6.c:1304 eaixppc.c:1304 eaixrs6.c:1304
#: eppcmacos.c:1304
msgid "%P:%s:%d: warning: ignoring unterminated last line\n"
msgstr "%P:%s:%d: aviso: ignorando última linha não terminada\n"
#: eaix5ppc.c:1339 eaix5rs6.c:1339 eaixppc.c:1339 eaixrs6.c:1339
#: eppcmacos.c:1339
msgid "%F%P: only relocations against symbols are permitted\n"
msgstr "%F%P: apenas realocações com símbolos são permitidos\n"
#: eaix5ppc.c:1342 eaix5rs6.c:1342 eaixppc.c:1342 eaixrs6.c:1342
#: eppcmacos.c:1342
msgid "%F%P: bfd_xcoff_link_count_reloc failed: %E\n"
msgstr "%F%P: bfd_xcoff_link_count_reloc falhou: %E\n"
#: ealphavms.c:167 eelf64_ia64_vms.c:167
#, c-format
msgid " --identification <string> Set the identification of the output\n"
msgstr " --identification <string> Define a identificação da saída\n"
#: earm_wince_pe.c:378 earmpe.c:378 ei386pe.c:378 ei386pe_posix.c:378
#: ei386pep.c:361 emcorepe.c:378 eppcpe.c:378 eshpe.c:378
#, c-format
msgid " --base_file <basefile> Generate a base file for relocatable DLLs\n"
msgstr " --base_file <arquivobase> Gera arquivo base para DDLs realocáveis\n"
#: earm_wince_pe.c:379 earmpe.c:379 ei386pe.c:379 ei386pe_posix.c:379
#: ei386pep.c:362 emcorepe.c:379 eppcpe.c:379 eshpe.c:379
#, c-format
msgid " --dll Set image base to the default for DLLs\n"
msgstr ""
" --dll Define base de imagem para o padrão para\n"
" DLLs\n"
#: earm_wince_pe.c:380 earmpe.c:380 ei386pe.c:380 ei386pe_posix.c:380
#: ei386pep.c:363 emcorepe.c:380 eppcpe.c:380 eshpe.c:380
#, c-format
msgid " --file-alignment <size> Set file alignment\n"
msgstr " --file-alignment <tamanho> Define alinhamento de arquivo\n"
#: earm_wince_pe.c:381 earmpe.c:381 ei386pe.c:381 ei386pe_posix.c:381
#: ei386pep.c:364 emcorepe.c:381 eppcpe.c:381 eshpe.c:381
#, c-format
msgid " --heap <size> Set initial size of the heap\n"
msgstr " --heap <tamanho> Define o tamanho inicial da heap\n"
#: earm_wince_pe.c:382 earmpe.c:382 ei386pe.c:382 ei386pe_posix.c:382
#: ei386pep.c:365 emcorepe.c:382 eppcpe.c:382 eshpe.c:382
#, c-format
msgid " --image-base <address> Set start address of the executable\n"
msgstr " --image-base <endereço> Define o endereço inicial do executável\n"
#: earm_wince_pe.c:383 earmpe.c:383 ei386pe.c:383 ei386pe_posix.c:383
#: ei386pep.c:366 emcorepe.c:383 eppcpe.c:383 eshpe.c:383
#, c-format
msgid " --major-image-version <number> Set version number of the executable\n"
msgstr " --major-image-version <número> Define o número de versão do executável\n"
#: earm_wince_pe.c:384 earmpe.c:384 ei386pe.c:384 ei386pe_posix.c:384
#: ei386pep.c:367 emcorepe.c:384 eppcpe.c:384 eshpe.c:384
#, c-format
msgid " --major-os-version <number> Set minimum required OS version\n"
msgstr " --major-os-version <número> Define a versão mínima exigida do SO\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: earm_wince_pe.c:385 earmpe.c:385 ei386pe.c:385 ei386pe_posix.c:385
#: ei386pep.c:368 emcorepe.c:385 eppcpe.c:385 eshpe.c:385
#, c-format
msgid " --major-subsystem-version <number> Set minimum required OS subsystem version\n"
msgstr ""
" --major-subsystem-version <número> Define a versão mínima exibida do\n"
" subsistema do SO\n"
#: earm_wince_pe.c:386 earmpe.c:386 ei386pe.c:386 ei386pe_posix.c:386
#: ei386pep.c:369 emcorepe.c:386 eppcpe.c:386 eshpe.c:386
#, c-format
msgid " --minor-image-version <number> Set revision number of the executable\n"
msgstr " --minor-image-version <número> Define o número de revisão do executável\n"
#: earm_wince_pe.c:387 earmpe.c:387 ei386pe.c:387 ei386pe_posix.c:387
#: ei386pep.c:370 emcorepe.c:387 eppcpe.c:387 eshpe.c:387
#, c-format
msgid " --minor-os-version <number> Set minimum required OS revision\n"
msgstr " --minor-os-version <número> Define a revisão mínima exigida do SO\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: earm_wince_pe.c:388 earmpe.c:388 ei386pe.c:388 ei386pe_posix.c:388
#: ei386pep.c:371 emcorepe.c:388 eppcpe.c:388 eshpe.c:388
#, c-format
msgid " --minor-subsystem-version <number> Set minimum required OS subsystem revision\n"
msgstr ""
" --minor-subsystem-version <número> Define a revisão mínima exibida do\n"
" subsistema do SO\n"
#: earm_wince_pe.c:389 earmpe.c:389 ei386pe.c:389 ei386pe_posix.c:389
#: ei386pep.c:372 emcorepe.c:389 eppcpe.c:389 eshpe.c:389
#, c-format
msgid " --section-alignment <size> Set section alignment\n"
msgstr " --section-alignment <tamanho> Define alinhamento de seção\n"
#: earm_wince_pe.c:390 earmpe.c:390 ei386pe.c:390 ei386pe_posix.c:390
#: ei386pep.c:373 emcorepe.c:390 eppcpe.c:390 eshpe.c:390
#, c-format
msgid " --stack <size> Set size of the initial stack\n"
msgstr " --stack <tamanho> Define o tamanho da pilha inicial\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: earm_wince_pe.c:391 earmpe.c:391 ei386pe.c:391 ei386pe_posix.c:391
#: ei386pep.c:374 emcorepe.c:391 eppcpe.c:391 eshpe.c:391
#, c-format
msgid " --subsystem <name>[:<version>] Set required OS subsystem [& version]\n"
msgstr ""
" --subsystem <nome>[:<versão>] Define o subsistema [& versão] exigido\n"
" do sistema operacional\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: earm_wince_pe.c:392 earmpe.c:392 ei386pe.c:392 ei386pe_posix.c:392
#: ei386pep.c:375 emcorepe.c:392 eppcpe.c:392 eshpe.c:392
#, c-format
msgid " --support-old-code Support interworking with old code\n"
msgstr ""
" --support-old-code Suporte a interfuncionamento com código\n"
" antigo\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: earm_wince_pe.c:393 earmpe.c:393 ei386pe.c:393 ei386pe_posix.c:393
#: ei386pep.c:376 emcorepe.c:393 eppcpe.c:393 eshpe.c:393
#, c-format
msgid " --[no-]leading-underscore Set explicit symbol underscore prefix mode\n"
msgstr ""
" --[no-]leading-underscore Define o modo de prefixo sublinhado\n"
" explícito de símbolo\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: earm_wince_pe.c:394 earmpe.c:394 ei386pe.c:394 ei386pe_posix.c:394
#: emcorepe.c:394 eppcpe.c:394 eshpe.c:394
#, c-format
msgid " --thumb-entry=<symbol> Set the entry point to be Thumb <symbol>\n"
msgstr ""
" --thumb-entry=<símbolo> Define o ponto de entrada para ser\n"
" <símbolo> Thumb\n"
# Ponto retirado para padronizar com outras strings -- Rafael
#: earm_wince_pe.c:395 earmpe.c:395 ei386pe.c:395 ei386pe_posix.c:395
#: emcorepe.c:395 eppcpe.c:395 eshpe.c:395
#, c-format
msgid " --[no-]insert-timestamp Use a real timestamp rather than zero (default).\n"
msgstr " --[no-]insert-timestamp Usa uma marca de tempo em vez de zero (padrão)\n"
#: earm_wince_pe.c:396 earmpe.c:396 ei386pe.c:396 ei386pe_posix.c:396
#: ei386pep.c:378 emcorepe.c:396 eppcpe.c:396 eshpe.c:396
#, c-format
msgid " This makes binaries non-deterministic\n"
msgstr " Isso torna binários não-determinísticos\n"
#: earm_wince_pe.c:398 earmpe.c:398 ei386pe.c:398 ei386pe_posix.c:398
#: ei386pep.c:380 emcorepe.c:398 eppcpe.c:398 eshpe.c:398
#, c-format
msgid " --add-stdcall-alias Export symbols with and without @nn\n"
msgstr " --add-stdcall-alias Exporta símbolos com ou sem @nn\n"
#: earm_wince_pe.c:399 earmpe.c:399 ei386pe.c:399 ei386pe_posix.c:399
#: ei386pep.c:381 emcorepe.c:399 eppcpe.c:399 eshpe.c:399
#, c-format
msgid " --disable-stdcall-fixup Don't link _sym to _sym@nn\n"
msgstr " --disable-stdcall-fixup Não vincula _sym a _sym@nn\n"
#: earm_wince_pe.c:400 earmpe.c:400 ei386pe.c:400 ei386pe_posix.c:400
#: ei386pep.c:382 emcorepe.c:400 eppcpe.c:400 eshpe.c:400
#, c-format
msgid " --enable-stdcall-fixup Link _sym to _sym@nn without warnings\n"
msgstr " --enable-stdcall-fixup Vincula _sym a _sym@nn sem avisos\n"
#: earm_wince_pe.c:401 earmpe.c:401 ei386pe.c:401 ei386pe_posix.c:401
#: ei386pep.c:383 emcorepe.c:401 eppcpe.c:401 eshpe.c:401
#, c-format
msgid " --exclude-symbols sym,sym,... Exclude symbols from automatic export\n"
msgstr " --exclude-symbols sym,sym,... Exclui símbolos da exportação automática\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: earm_wince_pe.c:402 earmpe.c:402 ei386pe.c:402 ei386pe_posix.c:402
#: ei386pep.c:384 emcorepe.c:402 eppcpe.c:402 eshpe.c:402
#, c-format
msgid " --exclude-all-symbols Exclude all symbols from automatic export\n"
msgstr ""
" --exclude-all-symbols Exclui todos os símbolos da exportação\n"
" automática\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: earm_wince_pe.c:403 earmpe.c:403 ei386pe.c:403 ei386pe_posix.c:403
#: ei386pep.c:385 emcorepe.c:403 eppcpe.c:403 eshpe.c:403
#, c-format
msgid " --exclude-libs lib,lib,... Exclude libraries from automatic export\n"
msgstr ""
" --exclude-libs lib,lib,... Exclui bibliotecas da exportação \n"
" automática\n"
#: earm_wince_pe.c:404 earmpe.c:404 ei386pe.c:404 ei386pe_posix.c:404
#: ei386pep.c:386 emcorepe.c:404 eppcpe.c:404 eshpe.c:404
#, c-format
msgid " --exclude-modules-for-implib mod,mod,...\n"
msgstr " --exclude-modules-for-implib mod,mod,...\n"
# Continuação da descrição da opção "--exclude-modules-for-implib" -- Rafael
#: earm_wince_pe.c:405 earmpe.c:405 ei386pe.c:405 ei386pe_posix.c:405
#: ei386pep.c:387 emcorepe.c:405 eppcpe.c:405 eshpe.c:405
#, c-format
msgid " Exclude objects, archive members from auto\n"
msgstr ""
" Exclui objetos, arquiva membros da\n"
" exportação automática, colocando\n"
# Continuação da descrição da opção "--exclude-modules-for-implib" -- Rafael
# Espaço extra para promover alinhamento -- Rafael
#: earm_wince_pe.c:406 earmpe.c:406 ei386pe.c:406 ei386pe_posix.c:406
#: emcorepe.c:406 eppcpe.c:406 eshpe.c:406
#, c-format
msgid " export, place into import library instead.\n"
msgstr " na biblioteca de importação\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: earm_wince_pe.c:407 earmpe.c:407 ei386pe.c:407 ei386pe_posix.c:407
#: ei386pep.c:389 emcorepe.c:407 eppcpe.c:407 eshpe.c:407
#, c-format
msgid " --export-all-symbols Automatically export all globals to DLL\n"
msgstr ""
" --export-all-symbols Exporta automaticamente todos globais\n"
" para DLL\n"
#: earm_wince_pe.c:408 earmpe.c:408 ei386pe.c:408 ei386pe_posix.c:408
#: ei386pep.c:390 emcorepe.c:408 eppcpe.c:408 eshpe.c:408
#, c-format
msgid " --kill-at Remove @nn from exported symbols\n"
msgstr " --kill-at Remove @nn dos símbolos exportados\n"
#: earm_wince_pe.c:409 earmpe.c:409 ei386pe.c:409 ei386pe_posix.c:409
#: ei386pep.c:391 emcorepe.c:409 eppcpe.c:409 eshpe.c:409
#, c-format
msgid " --output-def <file> Generate a .DEF file for the built DLL\n"
msgstr " --output-def <arquivo> Gera um arquivo .DEF para a DLL compilada\n"
#: earm_wince_pe.c:410 earmpe.c:410 ei386pe.c:410 ei386pe_posix.c:410
#: ei386pep.c:392 emcorepe.c:410 eppcpe.c:410 eshpe.c:410
#, c-format
msgid " --warn-duplicate-exports Warn about duplicate exports\n"
msgstr " --warn-duplicate-exports Avisa sobre exportações duplicadas\n"
#: earm_wince_pe.c:411 earmpe.c:411 ei386pe.c:411 ei386pe_posix.c:411
#: emcorepe.c:411 eppcpe.c:411 eshpe.c:411
#, c-format
msgid ""
" --compat-implib Create backward compatible import libs;\n"
" create __imp_<SYMBOL> as well.\n"
msgstr ""
" --compat-implib Cria bibliotecas de importação com\n"
" compatibilidade reversa;\n"
" cria __imp_<SÍMBOLO> também.\n"
#: earm_wince_pe.c:412 earmpe.c:412 ei386pe.c:412 ei386pe_posix.c:412
#: emcorepe.c:412 eppcpe.c:412 eshpe.c:412
#, 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[=<endereço>]\n"
" Escolhe automaticamente a base de imagem\n"
" para DLLs (opcionalmente iniciando com\n"
" endereço) a menos que seja definida\n"
" especificamente com --image-base\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: earm_wince_pe.c:413 earmpe.c:413 ei386pe.c:413 ei386pe_posix.c:413
#: emcorepe.c:413 eppcpe.c:413 eshpe.c:413
#, c-format
msgid " --disable-auto-image-base Do not auto-choose image base. (default)\n"
msgstr ""
" --disable-auto-image-base Não escolhe automaticamente base de\n"
" imagem. (padrão)\n"
#: earm_wince_pe.c:414 earmpe.c:414 ei386pe.c:414 ei386pe_posix.c:414
#: ei386pep.c:396 emcorepe.c:414 eppcpe.c:414 eshpe.c:414
#, 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=<string> Ao vincular dinamicamente a uma dll sem\n"
" uma biblioteca de importação, use\n"
" <string><nomebase>.dll como preferência\n"
" sobre a lib<nomebase>.dll \n"
#: earm_wince_pe.c:415 earmpe.c:415 ei386pe.c:415 ei386pe_posix.c:415
#: ei386pep.c:397 emcorepe.c:415 eppcpe.c:415 eshpe.c:415
#, c-format
msgid ""
" --enable-auto-import Do sophisticated linking of _sym to\n"
" __imp_sym for DATA references\n"
msgstr ""
" --enable-auto-import Faz vinculação sofisticada de _sym a\n"
" __imp_sym para referências DATA\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: earm_wince_pe.c:416 earmpe.c:416 ei386pe.c:416 ei386pe_posix.c:416
#: ei386pep.c:398 emcorepe.c:416 eppcpe.c:416 eshpe.c:416
#, c-format
msgid " --disable-auto-import Do not auto-import DATA items from DLLs\n"
msgstr ""
" --disable-auto-import Não importa automaticamente itens DATA\n"
" de DLLs\n"
#: earm_wince_pe.c:417 earmpe.c:417 ei386pe.c:417 ei386pe_posix.c:417
#: emcorepe.c:417 eppcpe.c:417 eshpe.c:417
#, 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 Contorna limitações de autoimportação\n"
" adicionando pseudorrealocações\n"
" resolvidas em tempo de execução.\n"
#: earm_wince_pe.c:418 earmpe.c:418 ei386pe.c:418 ei386pe_posix.c:418
#: emcorepe.c:418 eppcpe.c:418 eshpe.c:418
#, c-format
msgid ""
" --disable-runtime-pseudo-reloc Do not add runtime pseudo-relocations for\n"
" auto-imported DATA.\n"
msgstr ""
" --disable-runtime-pseudo-reloc Não adiciona pseudorrealocações em tempo\n"
" de execução para DATA autoimportados.\n"
#: earm_wince_pe.c:419 earmpe.c:419 ei386pe.c:419 ei386pe_posix.c:419
#: emcorepe.c:419 eppcpe.c:419 eshpe.c:419
#, 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 Habilita saída de depuração verbosa ao\n"
" compilar ou vincular a DLLs\n"
" (autoimportação esp.)\n"
#: earm_wince_pe.c:421 earmpe.c:421 ei386pe.c:421 ei386pe_posix.c:421
#: emcorepe.c:421 eppcpe.c:421 eshpe.c:421
#, c-format
msgid ""
" --large-address-aware Executable supports virtual addresses\n"
" greater than 2 gigabytes\n"
msgstr ""
" --large-address-aware Executável oferece suporte a endereços\n"
" virtuais maiores que 2 gigabytes\n"
#: earm_wince_pe.c:422 earmpe.c:422 ei386pe.c:422 ei386pe_posix.c:422
#: emcorepe.c:422 eppcpe.c:422 eshpe.c:422
#, c-format
msgid ""
" --disable-large-address-aware Executable does not support virtual\n"
" addresses greater than 2 gigabytes\n"
msgstr ""
" --disable-large-address-aware Executável não oferece suporte endereços\n"
" virtuais maior que 2 gigabytes\n"
#: earm_wince_pe.c:423 earmpe.c:423 ei386pe.c:423 ei386pe_posix.c:423
#: ei386pep.c:402 emcorepe.c:423 eppcpe.c:423 eshpe.c:423
#, 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 nomes longos de seção COFF mesmo em\n"
" arquivos de imagem executável\n"
#: earm_wince_pe.c:424 earmpe.c:424 ei386pe.c:424 ei386pe_posix.c:424
#: ei386pep.c:403 emcorepe.c:424 eppcpe.c:424 eshpe.c:424
#, 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 nomes longos de seção COFF,\n"
" mesmo em arquivos objetos\n"
#: earm_wince_pe.c:425 earmpe.c:425 ei386pe.c:425 ei386pe_posix.c:425
#: ei386pep.c:405 emcorepe.c:425 eppcpe.c:425 eshpe.c:425
#, c-format
msgid ""
" --dynamicbase Image base address may be relocated using\n"
" address space layout randomization (ASLR)\n"
msgstr ""
" --dynamicbase Endereço de base de imagem pode ser\n"
" realocado usando personalização de\n"
" layout de espaço de endereço (ASLR)\n"
#: earm_wince_pe.c:426 earmpe.c:426 ei386pe.c:426 ei386pe_posix.c:426
#: ei386pep.c:406 emcorepe.c:426 eppcpe.c:426 eshpe.c:426
#, c-format
msgid " --enable-reloc-section Create the base relocation table\n"
msgstr " --enable-reloc-section Cria a tabela de realocações base\n"
#: earm_wince_pe.c:427 earmpe.c:427 ei386pe.c:427 ei386pe_posix.c:427
#: ei386pep.c:407 emcorepe.c:427 eppcpe.c:427 eshpe.c:427
#, c-format
msgid " --forceinteg Code integrity checks are enforced\n"
msgstr ""
" --forceinteg Verificações de integridade de código\n"
" são forçadas\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: earm_wince_pe.c:428 earmpe.c:428 ei386pe.c:428 ei386pe_posix.c:428
#: ei386pep.c:408 emcorepe.c:428 eppcpe.c:428 eshpe.c:428
#, c-format
msgid " --nxcompat Image is compatible with data execution prevention\n"
msgstr ""
" --nxcompat Imagem é compatível com prevenção de\n"
" execução de dados\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: earm_wince_pe.c:429 earmpe.c:429 ei386pe.c:429 ei386pe_posix.c:429
#: ei386pep.c:409 emcorepe.c:429 eppcpe.c:429 eshpe.c:429
#, c-format
msgid " --no-isolation Image understands isolation but do not isolate the image\n"
msgstr ""
" --no-isolation Imagem entender isolação, mas não isola\n"
" a imagem\n"
# Espaço extra para promover alinhamento -- Rafael
#: earm_wince_pe.c:430 earmpe.c:430 ei386pe.c:430 ei386pe_posix.c:430
#: emcorepe.c:430 eppcpe.c:430 eshpe.c:430
#, c-format
msgid ""
" --no-seh Image does not use SEH. No SE handler may\n"
" be called in this image\n"
msgstr ""
" --no-seh Imagem não usa SEH. Nenhum manipulador\n"
" de SE pode ser chamado nesta imagem\n"
# Espaço extra para promover alinhamento -- Rafael
#: earm_wince_pe.c:431 earmpe.c:431 ei386pe.c:431 ei386pe_posix.c:431
#: ei386pep.c:411 emcorepe.c:431 eppcpe.c:431 eshpe.c:431
#, c-format
msgid " --no-bind Do not bind this image\n"
msgstr " --no-bind Não associa (bind) essa imagem\n"
# Espaço extra para promover alinhamento -- Rafael
#: earm_wince_pe.c:432 earmpe.c:432 ei386pe.c:432 ei386pe_posix.c:432
#: ei386pep.c:412 emcorepe.c:432 eppcpe.c:432 eshpe.c:432
#, c-format
msgid " --wdmdriver Driver uses the WDM model\n"
msgstr " --wdmdriver O driver usa o modelo WDM\n"
# Espaço extra para promover alinhamento -- Rafael
#: earm_wince_pe.c:433 earmpe.c:433 ei386pe.c:433 ei386pe_posix.c:433
#: ei386pep.c:413 emcorepe.c:433 eppcpe.c:433 eshpe.c:433
#, c-format
msgid " --tsaware Image is Terminal Server aware\n"
msgstr " --tsaware Imagem tem ciência de Terminal Server\n"
# Espaço extra para promover alinhamento -- Rafael
#: earm_wince_pe.c:434 earmpe.c:434 ei386pe.c:434 ei386pe_posix.c:434
#: ei386pep.c:414 emcorepe.c:434 eppcpe.c:434 eshpe.c:434
#, c-format
msgid " --build-id[=STYLE] Generate build ID\n"
msgstr " --build-id[=ESTILO] Gera ID de compilação\n"
#: earm_wince_pe.c:562 earmpe.c:562 ei386beos.c:205 ei386pe.c:562
#: ei386pe_posix.c:562 ei386pep.c:539 emcorepe.c:562 eppcpe.c:562 eshpe.c:562
msgid "%P: warning: bad version number in -subsystem option\n"
msgstr "%P: aviso: número de versão inválida na opção --subsystem\n"
#: earm_wince_pe.c:587 earmpe.c:587 ei386beos.c:222 ei386pe.c:587
#: ei386pe_posix.c:587 ei386pep.c:564 emcorepe.c:587 eppcpe.c:587 eshpe.c:587
msgid "%F%P: invalid subsystem type %s\n"
msgstr "%F%P: tipo de subsistema inválido %s\n"
#: earm_wince_pe.c:608 earmpe.c:608 ei386beos.c:233 ei386pe.c:608
#: ei386pe_posix.c:608 ei386pep.c:585 emcorepe.c:608 eppcpe.c:608 eshpe.c:608
msgid "%F%P: invalid hex number for PE parameter '%s'\n"
msgstr "%F%P: número hexa inválido para o PE de parâmetro \"%s\"\n"
#: earm_wince_pe.c:625 earmpe.c:625 ei386beos.c:250 ei386pe.c:625
#: ei386pe_posix.c:625 ei386pep.c:602 emcorepe.c:625 eppcpe.c:625 eshpe.c:625
msgid "%F%P: strange hex info for PE parameter '%s'\n"
msgstr "%F%P: informação hexa estranha para o PE de parâmetro \"%s\"\n"
#: earm_wince_pe.c:641 earmpe.c:641 eelf32mcore.c:282 ei386beos.c:266
#: ei386pe.c:641 ei386pe_posix.c:641 ei386pep.c:619 emcorepe.c:641
#: eppcpe.c:641 eshpe.c:641
msgid "%F%P: cannot open base file %s\n"
msgstr "%F%P: não foi possível abrir o arquivo base %s\n"
#: earm_wince_pe.c:937 earmpe.c:937 ei386beos.c:362 ei386pe.c:937
#: ei386pe_posix.c:937 ei386pep.c:899 emcorepe.c:937 eppcpe.c:937 eshpe.c:937
msgid "%P: warning, file alignment > section alignment\n"
msgstr "%P: aviso, alinhamento de arquivo > alinhamento de seção\n"
#: earm_wince_pe.c:950 earmpe.c:950 ei386pe.c:950 ei386pe_posix.c:950
#: emcorepe.c:950 eppcpe.c:950 eshpe.c:950
msgid "%P: warning: --export-dynamic is not supported for PE targets, did you mean --export-all-symbols?\n"
msgstr "%P: aviso: --export-dynamic não oferece suporte para alvos PE; você quis dizer --export-all-symbols?\n"
#: earm_wince_pe.c:995 earmpe.c:995 ei386pe.c:995 ei386pe_posix.c:995
#: emcorepe.c:995 eppcpe.c:995 eshpe.c:995
msgid "%P: warning: resolving %s by linking to %s\n"
msgstr "%P: aviso: resolvendo %s por vinculação a %s\n"
#: earm_wince_pe.c:1000 earmpe.c:1000 ei386pe.c:1000 ei386pe_posix.c:1000
#: ei386pep.c:985 ei386pep.c:1012 emcorepe.c:1000 eppcpe.c:1000 eshpe.c:1000
msgid "Use --enable-stdcall-fixup to disable these warnings\n"
msgstr "Use --enable-stdcall-fixup para desabilitar esses avisos\n"
#: earm_wince_pe.c:1001 earmpe.c:1001 ei386pe.c:1001 ei386pe_posix.c:1001
#: ei386pep.c:986 ei386pep.c:1013 emcorepe.c:1001 eppcpe.c:1001 eshpe.c:1001
msgid "Use --disable-stdcall-fixup to disable these fixups\n"
msgstr "Use --disable-stdcall-fixup para desabilitar essas correções\n"
#: earm_wince_pe.c:1070 earmpe.c:1070 ei386pe.c:1070 ei386pe_posix.c:1070
#: ei386pep.c:1064 emcorepe.c:1070 eppcpe.c:1070 eshpe.c:1070
msgid "%P: %C: cannot get section contents - auto-import exception\n"
msgstr "%P: %C: não foi possível obter conteúdos de seção - excepção de autoimportação\n"
#: earm_wince_pe.c:1155 earmpe.c:1155 ei386pe.c:1155 ei386pe_posix.c:1155
#: ei386pep.c:1158 emcorepe.c:1155 eppcpe.c:1155 eshpe.c:1155
msgid "%P: warning: .buildid section discarded, --build-id ignored\n"
msgstr "%P: aviso: seção .buildid descartada, --build-id ignorada\n"
#: earm_wince_pe.c:1252 earmpe.c:1252 ei386pe.c:1252 ei386pe_posix.c:1252
#: ei386pep.c:1255 emcorepe.c:1252 eppcpe.c:1252 eshpe.c:1252
msgid "%P: warning: cannot create .buildid section, --build-id ignored\n"
msgstr "%P: aviso: não foi possível criar a seção .buildid, --build-id ignorada\n"
#: earm_wince_pe.c:1306 earmpe.c:1306 ei386pe.c:1306 ei386pe_posix.c:1306
#: ei386pep.c:1310 emcorepe.c:1306 eppcpe.c:1306 eshpe.c:1306
msgid "%F%P: cannot perform PE operations on non PE output file '%pB'\n"
msgstr "%F%P: não foi possível realizar operações de PO no arquivo de saída não PE \"%pB\"\n"
#: earm_wince_pe.c:1449 earmpe.c:1449 ei386pe.c:1449 ei386pe_posix.c:1449
#: ei386pep.c:1434 emcorepe.c:1449 eppcpe.c:1449 eshpe.c:1449
msgid "%X%P: unable to process relocs: %E\n"
msgstr "%X%P: não foi possível processar as realocações: %E\n"
#: earm_wince_pe.c:1687 earmelf.c:138 earmelf_fbsd.c:138 earmelf_fuchsia.c:139
#: earmelf_linux.c:139 earmelf_linux_eabi.c:139 earmelf_linux_fdpiceabi.c:139
#: earmelf_nacl.c:139 earmelf_nbsd.c:138 earmelf_phoenix.c:139
#: earmelf_vxworks.c:138 earmelfb.c:138 earmelfb_fbsd.c:138
#: earmelfb_fuchsia.c:139 earmelfb_linux.c:139 earmelfb_linux_eabi.c:139
#: earmelfb_linux_fdpiceabi.c:139 earmelfb_nacl.c:139 earmelfb_nbsd.c:138
#: earmnto.c:138 earmpe.c:1687 earmsymbian.c:138 ei386beos.c:610
#: ei386beos.c:631 ei386pe.c:1687 ei386pe_posix.c:1687 emcorepe.c:1687
#: eppcpe.c:1687 eshpe.c:1687
#, c-format
msgid "%P: errors encountered processing file %s\n"
msgstr "%P: encontrados erros de processamento do arquivo %s\n"
#: earm_wince_pe.c:1710 earmpe.c:1710 ei386pe.c:1710 ei386pe_posix.c:1710
#: emcorepe.c:1710 eppcpe.c:1710 eshpe.c:1710
#, c-format
msgid "%P: errors encountered processing file %s for interworking\n"
msgstr "%P: encontrados erros ao processar o arquivo %s para interfuncionalidade\n"
#: earm_wince_pe.c:1877 earmelf.c:520 earmelf_fbsd.c:520 earmelf_fuchsia.c:521
#: earmelf_linux.c:521 earmelf_linux_eabi.c:521 earmelf_linux_fdpiceabi.c:521
#: earmelf_nacl.c:521 earmelf_nbsd.c:520 earmelf_phoenix.c:521
#: earmelf_vxworks.c:520 earmelfb.c:520 earmelfb_fbsd.c:520
#: earmelfb_fuchsia.c:521 earmelfb_linux.c:521 earmelfb_linux_eabi.c:521
#: earmelfb_linux_fdpiceabi.c:521 earmelfb_nacl.c:521 earmelfb_nbsd.c:520
#: earmnto.c:520 earmpe.c:1877 earmsymbian.c:520 ei386pe.c:1877
#: ei386pe_posix.c:1877 emcorepe.c:1877 eppcpe.c:1877 eshpe.c:1877
msgid "%P: warning: '--thumb-entry %s' is overriding '-e %s'\n"
msgstr "%P: aviso: \"--thumb-entry %s\" é sobrepondo \"-e %s\"\n"
#: earm_wince_pe.c:1882 earmelf.c:525 earmelf_fbsd.c:525 earmelf_fuchsia.c:526
#: earmelf_linux.c:526 earmelf_linux_eabi.c:526 earmelf_linux_fdpiceabi.c:526
#: earmelf_nacl.c:526 earmelf_nbsd.c:525 earmelf_phoenix.c:526
#: earmelf_vxworks.c:525 earmelfb.c:525 earmelfb_fbsd.c:525
#: earmelfb_fuchsia.c:526 earmelfb_linux.c:526 earmelfb_linux_eabi.c:526
#: earmelfb_linux_fdpiceabi.c:526 earmelfb_nacl.c:526 earmelfb_nbsd.c:525
#: earmnto.c:525 earmpe.c:1882 earmsymbian.c:525 ei386pe.c:1882
#: ei386pe_posix.c:1882 emcorepe.c:1882 eppcpe.c:1882 eshpe.c:1882
msgid "%P: warning: cannot find thumb start symbol %s\n"
msgstr "%P: aviso: não foi possível localizar símbolo inicial %s Thumb\n"
#: earmelf.c:551 earmelf_fbsd.c:551 earmelf_fuchsia.c:552 earmelf_linux.c:552
#: earmelf_linux_eabi.c:552 earmelf_linux_fdpiceabi.c:552 earmelf_nacl.c:552
#: earmelf_nbsd.c:551 earmelf_phoenix.c:552 earmelf_vxworks.c:551
#: earmelfb.c:551 earmelfb_fbsd.c:551 earmelfb_fuchsia.c:552
#: earmelfb_linux.c:552 earmelfb_linux_eabi.c:552
#: earmelfb_linux_fdpiceabi.c:552 earmelfb_nacl.c:552 earmelfb_nbsd.c:551
#: earmnto.c:551 earmsymbian.c:551
msgid "%F%P: %s: can't open: %E\n"
msgstr "%F%P: %s: não foi possível abrir: %E\n"
#: earmelf.c:554 earmelf_fbsd.c:554 earmelf_fuchsia.c:555 earmelf_linux.c:555
#: earmelf_linux_eabi.c:555 earmelf_linux_fdpiceabi.c:555 earmelf_nacl.c:555
#: earmelf_nbsd.c:554 earmelf_phoenix.c:555 earmelf_vxworks.c:554
#: earmelfb.c:554 earmelfb_fbsd.c:554 earmelfb_fuchsia.c:555
#: earmelfb_linux.c:555 earmelfb_linux_eabi.c:555
#: earmelfb_linux_fdpiceabi.c:555 earmelfb_nacl.c:555 earmelfb_nbsd.c:554
#: earmnto.c:554 earmsymbian.c:554
msgid "%F%P: %s: not a relocatable file: %E\n"
msgstr "%F%P: %s: não é um arquivo realocável: %E\n"
#: earmelf.c:1030 earmelf_fbsd.c:1030 earmelf_fuchsia.c:1035
#: earmelf_linux.c:1035 earmelf_linux_eabi.c:1035
#: earmelf_linux_fdpiceabi.c:1035 earmelf_nacl.c:1035 earmelf_nbsd.c:1030
#: earmelf_phoenix.c:1035 earmelf_vxworks.c:1066 earmelfb.c:1030
#: earmelfb_fbsd.c:1030 earmelfb_fuchsia.c:1035 earmelfb_linux.c:1035
#: earmelfb_linux_eabi.c:1035 earmelfb_linux_fdpiceabi.c:1035
#: earmelfb_nacl.c:1035 earmelfb_nbsd.c:1030 earmnto.c:1005 earmsymbian.c:1030
msgid "%P: unrecognized VFP11 fix type '%s'\n"
msgstr "%P: tipo de correção VFP11 não reconhecida \"%s\"\n"
#: earmelf.c:1043 earmelf_fbsd.c:1043 earmelf_fuchsia.c:1048
#: earmelf_linux.c:1048 earmelf_linux_eabi.c:1048
#: earmelf_linux_fdpiceabi.c:1048 earmelf_nacl.c:1048 earmelf_nbsd.c:1043
#: earmelf_phoenix.c:1048 earmelf_vxworks.c:1079 earmelfb.c:1043
#: earmelfb_fbsd.c:1043 earmelfb_fuchsia.c:1048 earmelfb_linux.c:1048
#: earmelfb_linux_eabi.c:1048 earmelfb_linux_fdpiceabi.c:1048
#: earmelfb_nacl.c:1048 earmelfb_nbsd.c:1043 earmnto.c:1018 earmsymbian.c:1043
msgid "%P: unrecognized STM32L4XX fix type '%s'\n"
msgstr "%P: tipo de correção STM32L4XX não reconhecida \"%s\"\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: earmelf.c:1110 earmelf_fbsd.c:1110 earmelf_fuchsia.c:1115
#: earmelf_linux.c:1115 earmelf_linux_eabi.c:1115
#: earmelf_linux_fdpiceabi.c:1115 earmelf_nacl.c:1115 earmelf_nbsd.c:1110
#: earmelf_phoenix.c:1115 earmelf_vxworks.c:1150 earmelfb.c:1110
#: earmelfb_fbsd.c:1110 earmelfb_fuchsia.c:1115 earmelfb_linux.c:1115
#: earmelfb_linux_eabi.c:1115 earmelfb_linux_fdpiceabi.c:1115
#: earmelfb_nacl.c:1115 earmelfb_nbsd.c:1110 earmnto.c:1085 earmsymbian.c:1110
#, c-format
msgid " --thumb-entry=<sym> Set the entry point to be Thumb symbol <sym>\n"
msgstr ""
" --thumb-entry=<sym> Define o ponto de entrada para ser um\n"
" símbolo <sym> Thumb\n"
#: earmelf.c:1111 earmelf_fbsd.c:1111 earmelf_fuchsia.c:1116
#: earmelf_linux.c:1116 earmelf_linux_eabi.c:1116
#: earmelf_linux_fdpiceabi.c:1116 earmelf_nacl.c:1116 earmelf_nbsd.c:1111
#: earmelf_phoenix.c:1116 earmelf_vxworks.c:1151 earmelfb.c:1111
#: earmelfb_fbsd.c:1111 earmelfb_fuchsia.c:1116 earmelfb_linux.c:1116
#: earmelfb_linux_eabi.c:1116 earmelfb_linux_fdpiceabi.c:1116
#: earmelfb_nacl.c:1116 earmelfb_nbsd.c:1111 earmnto.c:1086 earmsymbian.c:1111
#, c-format
msgid " --be8 Output BE8 format image\n"
msgstr " --be8 Emite imagem no formato BE8\n"
#: earmelf.c:1112 earmelf_fbsd.c:1112 earmelf_fuchsia.c:1117
#: earmelf_linux.c:1117 earmelf_linux_eabi.c:1117
#: earmelf_linux_fdpiceabi.c:1117 earmelf_nacl.c:1117 earmelf_nbsd.c:1112
#: earmelf_phoenix.c:1117 earmelf_vxworks.c:1152 earmelfb.c:1112
#: earmelfb_fbsd.c:1112 earmelfb_fuchsia.c:1117 earmelfb_linux.c:1117
#: earmelfb_linux_eabi.c:1117 earmelfb_linux_fdpiceabi.c:1117
#: earmelfb_nacl.c:1117 earmelfb_nbsd.c:1112 earmnto.c:1087 earmsymbian.c:1112
#, 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:1113 earmelf_fbsd.c:1113 earmelf_fuchsia.c:1118
#: earmelf_linux.c:1118 earmelf_linux_eabi.c:1118
#: earmelf_linux_fdpiceabi.c:1118 earmelf_nacl.c:1118 earmelf_nbsd.c:1113
#: earmelf_phoenix.c:1118 earmelf_vxworks.c:1153 earmelfb.c:1113
#: earmelfb_fbsd.c:1113 earmelfb_fuchsia.c:1118 earmelfb_linux.c:1118
#: earmelfb_linux_eabi.c:1118 earmelfb_linux_fdpiceabi.c:1118
#: earmelfb_nacl.c:1118 earmelfb_nbsd.c:1113 earmnto.c:1088 earmsymbian.c:1113
#, 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:1114 earmelf_fbsd.c:1114 earmelf_fuchsia.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:1154 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:1089 earmsymbian.c:1114
#, c-format
msgid " --target2=<type> Specify definition of R_ARM_TARGET2\n"
msgstr " --target2=<tipo> Especifica definição de R_ARM_TARGET2\n"
#: earmelf.c:1115 earmelf_fbsd.c:1115 earmelf_fuchsia.c:1120
#: earmelf_linux.c:1120 earmelf_linux_eabi.c:1120
#: earmelf_linux_fdpiceabi.c:1120 earmelf_nacl.c:1120 earmelf_nbsd.c:1115
#: earmelf_phoenix.c:1120 earmelf_vxworks.c:1155 earmelfb.c:1115
#: earmelfb_fbsd.c:1115 earmelfb_fuchsia.c:1120 earmelfb_linux.c:1120
#: earmelfb_linux_eabi.c:1120 earmelfb_linux_fdpiceabi.c:1120
#: earmelfb_nacl.c:1120 earmelfb_nbsd.c:1115 earmnto.c:1090 earmsymbian.c:1115
#, c-format
msgid " --fix-v4bx Rewrite BX rn as MOV pc, rn for ARMv4\n"
msgstr " --fix-v4bx Reescreve BX rn como MOV pc, rn para ARMv4\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: earmelf.c:1116 earmelf_fbsd.c:1116 earmelf_fuchsia.c:1121
#: earmelf_linux.c:1121 earmelf_linux_eabi.c:1121
#: earmelf_linux_fdpiceabi.c:1121 earmelf_nacl.c:1121 earmelf_nbsd.c:1116
#: earmelf_phoenix.c:1121 earmelf_vxworks.c:1156 earmelfb.c:1116
#: earmelfb_fbsd.c:1116 earmelfb_fuchsia.c:1121 earmelfb_linux.c:1121
#: earmelfb_linux_eabi.c:1121 earmelfb_linux_fdpiceabi.c:1121
#: earmelfb_nacl.c:1121 earmelfb_nbsd.c:1116 earmnto.c:1091 earmsymbian.c:1116
#, c-format
msgid " --fix-v4bx-interworking Rewrite BX rn branch to ARMv4 interworking veneer\n"
msgstr ""
" --fix-v4bx-interworking Rescreve ramo BX rn para veneer de\n"
" interfuncionalidade ARMv4\n"
#: earmelf.c:1117 earmelf_fbsd.c:1117 earmelf_fuchsia.c:1122
#: earmelf_linux.c:1122 earmelf_linux_eabi.c:1122
#: earmelf_linux_fdpiceabi.c:1122 earmelf_nacl.c:1122 earmelf_nbsd.c:1117
#: earmelf_phoenix.c:1122 earmelf_vxworks.c:1157 earmelfb.c:1117
#: earmelfb_fbsd.c:1117 earmelfb_fuchsia.c:1122 earmelfb_linux.c:1122
#: earmelfb_linux_eabi.c:1122 earmelfb_linux_fdpiceabi.c:1122
#: earmelfb_nacl.c:1122 earmelfb_nbsd.c:1117 earmnto.c:1092 earmsymbian.c:1117
#, c-format
msgid " --use-blx Enable use of BLX instructions\n"
msgstr " --use-blx Permite use de instruções BLX\n"
#: earmelf.c:1118 earmelf_fbsd.c:1118 earmelf_fuchsia.c:1123
#: earmelf_linux.c:1123 earmelf_linux_eabi.c:1123
#: earmelf_linux_fdpiceabi.c:1123 earmelf_nacl.c:1123 earmelf_nbsd.c:1118
#: earmelf_phoenix.c:1123 earmelf_vxworks.c:1158 earmelfb.c:1118
#: earmelfb_fbsd.c:1118 earmelfb_fuchsia.c:1123 earmelfb_linux.c:1123
#: earmelfb_linux_eabi.c:1123 earmelfb_linux_fdpiceabi.c:1123
#: earmelfb_nacl.c:1123 earmelfb_nbsd.c:1118 earmnto.c:1093 earmsymbian.c:1118
#, c-format
msgid " --vfp11-denorm-fix Specify how to fix VFP11 denorm erratum\n"
msgstr " --vfp11-denorm-fix Especifica como corrigir errata denorm VFP11\n"
#: earmelf.c:1119 earmelf_fbsd.c:1119 earmelf_fuchsia.c:1124
#: earmelf_linux.c:1124 earmelf_linux_eabi.c:1124
#: earmelf_linux_fdpiceabi.c:1124 earmelf_nacl.c:1124 earmelf_nbsd.c:1119
#: earmelf_phoenix.c:1124 earmelf_vxworks.c:1159 earmelfb.c:1119
#: earmelfb_fbsd.c:1119 earmelfb_fuchsia.c:1124 earmelfb_linux.c:1124
#: earmelfb_linux_eabi.c:1124 earmelfb_linux_fdpiceabi.c:1124
#: earmelfb_nacl.c:1124 earmelfb_nbsd.c:1119 earmnto.c:1094 earmsymbian.c:1119
#, c-format
msgid " --fix-stm32l4xx-629360 Specify how to fix STM32L4XX 629360 erratum\n"
msgstr " --fix-stm32l4xx-629360 Especifica como corrigir errata STM32L4XX 629360\n"
#: earmelf.c:1125 earmelf_fbsd.c:1125 earmelf_fuchsia.c:1130
#: earmelf_linux.c:1130 earmelf_linux_eabi.c:1130
#: earmelf_linux_fdpiceabi.c:1130 earmelf_nacl.c:1130 earmelf_nbsd.c:1125
#: earmelf_phoenix.c:1130 earmelf_vxworks.c:1165 earmelfb.c:1125
#: earmelfb_fbsd.c:1125 earmelfb_fuchsia.c:1130 earmelfb_linux.c:1130
#: earmelfb_linux_eabi.c:1130 earmelfb_linux_fdpiceabi.c:1130
#: earmelfb_nacl.c:1130 earmelfb_nbsd.c:1125 earmnto.c:1100 earmsymbian.c:1125
#, c-format
msgid ""
" --long-plt Generate long .plt entries\n"
" to handle large .plt/.got displacements\n"
msgstr ""
" --long-plt Gera entradas .plt longas para lidar\n"
" com deslocamentos .plt/.got grandes\n"
#: earmelf.c:1127 earmelf_fbsd.c:1127 earmelf_fuchsia.c:1132
#: earmelf_linux.c:1132 earmelf_linux_eabi.c:1132
#: earmelf_linux_fdpiceabi.c:1132 earmelf_nacl.c:1132 earmelf_nbsd.c:1127
#: earmelf_phoenix.c:1132 earmelf_vxworks.c:1167 earmelfb.c:1127
#: earmelfb_fbsd.c:1127 earmelfb_fuchsia.c:1132 earmelfb_linux.c:1132
#: earmelfb_linux_eabi.c:1132 earmelfb_linux_fdpiceabi.c:1132
#: earmelfb_nacl.c:1132 earmelfb_nbsd.c:1127 earmnto.c:1102 earmsymbian.c:1127
#, 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 Cria bibliotecas de importação para ser uma\n"
" biblioteca de importação de gateway seguro\n"
" conforme Extensões de Segurança ARMv8-M\n"
#: earmelf.c:1129 earmelf_fbsd.c:1129 earmelf_fuchsia.c:1134
#: earmelf_linux.c:1134 earmelf_linux_eabi.c:1134
#: earmelf_linux_fdpiceabi.c:1134 earmelf_nacl.c:1134 earmelf_nbsd.c:1129
#: earmelf_phoenix.c:1134 earmelf_vxworks.c:1169 earmelfb.c:1129
#: earmelfb_fbsd.c:1129 earmelfb_fuchsia.c:1134 earmelfb_linux.c:1134
#: earmelfb_linux_eabi.c:1134 earmelfb_linux_fdpiceabi.c:1134
#: earmelfb_nacl.c:1134 earmelfb_nbsd.c:1129 earmnto.c:1104 earmsymbian.c:1129
#, c-format
msgid ""
" --in-implib Import library whose symbols address must\n"
" remain stable\n"
msgstr ""
" --in-implib Bibliotecas de importação cujo endereço de\n"
" símbolos deve permanecer estável\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: earmelf.c:1140 earmelf_fbsd.c:1140 earmelf_fuchsia.c:1145
#: earmelf_linux.c:1145 earmelf_linux_eabi.c:1145
#: earmelf_linux_fdpiceabi.c:1145 earmelf_nacl.c:1145 earmelf_nbsd.c:1140
#: earmelf_phoenix.c:1145 earmelf_vxworks.c:1180 earmelfb.c:1140
#: earmelfb_fbsd.c:1140 earmelfb_fuchsia.c:1145 earmelfb_linux.c:1145
#: earmelfb_linux_eabi.c:1145 earmelfb_linux_fdpiceabi.c:1145
#: earmelfb_nacl.c:1145 earmelfb_nbsd.c:1140 earmnto.c:1115 earmsymbian.c:1140
#, c-format
msgid " --[no-]fix-cortex-a8 Disable/enable Cortex-A8 Thumb-2 branch erratum fix\n"
msgstr ""
" --[no-]fix-cortex-a8 Desabilita/habilita correção de errata de ramo\n"
" Cortex-A8 Thumb-2\n"
#: earmelf.c:1141 earmelf_fbsd.c:1141 earmelf_fuchsia.c:1146
#: earmelf_linux.c:1146 earmelf_linux_eabi.c:1146
#: earmelf_linux_fdpiceabi.c:1146 earmelf_nacl.c:1146 earmelf_nbsd.c:1141
#: earmelf_phoenix.c:1146 earmelf_vxworks.c:1181 earmelfb.c:1141
#: earmelfb_fbsd.c:1141 earmelfb_fuchsia.c:1146 earmelfb_linux.c:1146
#: earmelfb_linux_eabi.c:1146 earmelfb_linux_fdpiceabi.c:1146
#: earmelfb_nacl.c:1146 earmelfb_nbsd.c:1141 earmnto.c:1116 earmsymbian.c:1141
#, c-format
msgid " --no-merge-exidx-entries Disable merging exidx entries\n"
msgstr " --no-merge-exidx-entries Desabilita entradas exidx de mesclagem\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: earmelf.c:1142 earmelf_fbsd.c:1142 earmelf_fuchsia.c:1147
#: earmelf_linux.c:1147 earmelf_linux_eabi.c:1147
#: earmelf_linux_fdpiceabi.c:1147 earmelf_nacl.c:1147 earmelf_nbsd.c:1142
#: earmelf_phoenix.c:1147 earmelf_vxworks.c:1182 earmelfb.c:1142
#: earmelfb_fbsd.c:1142 earmelfb_fuchsia.c:1147 earmelfb_linux.c:1147
#: earmelfb_linux_eabi.c:1147 earmelfb_linux_fdpiceabi.c:1147
#: earmelfb_nacl.c:1147 earmelfb_nbsd.c:1142 earmnto.c:1117 earmsymbian.c:1142
#, c-format
msgid " --[no-]fix-arm1176 Disable/enable ARM1176 BLX immediate erratum fix\n"
msgstr ""
" --[no-]fix-arm1176 Desabilita/habilita correção de errata de\n"
" ARM1176 BLX imediato\n"
#: earmelf_vxworks.c:600 eelf32_sparc_vxworks.c:71 eelf32ebmipvxworks.c:267
#: eelf32elmipvxworks.c:267 eelf32ppcvxworks.c:236 eelf_i386_vxworks.c:95
#: eshelf_vxworks.c:71 eshlelf_vxworks.c:71
msgid "%X%P: cannot create dynamic sections %E\n"
msgstr "%X%P: não foi possível criar seções dinâmicas %E\n"
#: earmelf_vxworks.c:606 eelf32_sparc_vxworks.c:77 eelf32ebmipvxworks.c:273
#: eelf32elmipvxworks.c:273 eelf32ppcvxworks.c:242 eelf_i386_vxworks.c:101
#: eshelf_vxworks.c:77 eshlelf_vxworks.c:77
msgid "%X%P: dynamic sections created in non-dynamic link\n"
msgstr "%X%P: seções dinâmicas criadas em vínculo não dinâmico\n"
#: earmelf_vxworks.c:1184 eelf32_sparc_vxworks.c:487 eelf32ebmipvxworks.c:745
#: eelf32elmipvxworks.c:745 eelf32ppcvxworks.c:810 eelf_i386_vxworks.c:564
#: eshelf_vxworks.c:457 eshlelf_vxworks.c:457
#, c-format
msgid " --force-dynamic Always create dynamic sections\n"
msgstr " --force-dynamic Sempre cria seções dinâmicas\n"
#: eavr1.c:122 eavr2.c:122 eavr25.c:122 eavr3.c:122 eavr31.c:122 eavr35.c:122
#: eavr4.c:122 eavr5.c:122 eavr51.c:122 eavr6.c:122 eavrtiny.c:122
#: eavrxmega1.c:122 eavrxmega2.c:122 eavrxmega3.c:122 eavrxmega4.c:122
#: eavrxmega5.c:122 eavrxmega6.c:122 eavrxmega7.c:122
msgid "%X%P: can not setup the input section list: %E\n"
msgstr "%X%P: não foi configurar a lista de seção de entrada: %E\n"
#: eavr1.c:157 eavr2.c:157 eavr25.c:157 eavr3.c:157 eavr31.c:157 eavr35.c:157
#: eavr4.c:157 eavr5.c:157 eavr51.c:157 eavr6.c:157 eavrtiny.c:157
#: eavrxmega1.c:157 eavrxmega2.c:157 eavrxmega3.c:157 eavrxmega4.c:157
#: eavrxmega5.c:157 eavrxmega6.c:157 eavrxmega7.c:157
msgid "%X%P: can not create stub BFD: %E\n"
msgstr "%X%P: não foi possível criar BFD stub: %E\n"
#: eavr1.c:527 eavr2.c:527 eavr25.c:527 eavr3.c:527 eavr31.c:527 eavr35.c:527
#: eavr4.c:527 eavr5.c:527 eavr51.c:527 eavr6.c:527 eavrtiny.c:527
#: eavrxmega1.c:527 eavrxmega2.c:527 eavrxmega3.c:527 eavrxmega4.c:527
#: eavrxmega5.c:527 eavrxmega6.c:527 eavrxmega7.c:527
#, 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> Faz a máquina de relaxamento do vinculador\n"
" considerar que um wrap-around do contador\n"
" de programa ocorre no endereço <val>.\n"
" Valores suportados: 8k, 16k, 32k e 64k.\n"
#: eavr1.c:533 eavr2.c:533 eavr25.c:533 eavr3.c:533 eavr31.c:533 eavr35.c:533
#: eavr4.c:533 eavr5.c:533 eavr51.c:533 eavr6.c:533 eavrtiny.c:533
#: eavrxmega1.c:533 eavrxmega2.c:533 eavrxmega3.c:533 eavrxmega4.c:533
#: eavrxmega5.c:533 eavrxmega6.c:533 eavrxmega7.c:533
#, 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 A máquina de relaxamento normalmente substituirá\n"
" duas instruções call/ret imediatamente seguintes\n"
" por uma única instrução de salto. Esta opção\n"
" desativa esta otimização.\n"
#: eavr1.c:541 eavr2.c:541 eavr25.c:541 eavr3.c:541 eavr31.c:541 eavr35.c:541
#: eavr4.c:541 eavr5.c:541 eavr51.c:541 eavr6.c:541 eavrtiny.c:541
#: eavrxmega1.c:541 eavrxmega2.c:541 eavrxmega3.c:541 eavrxmega4.c:541
#: eavrxmega5.c:541 eavrxmega6.c:541 eavrxmega7.c:541
#, 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 Se o vinculador detectar a tentativa de\n"
" acessar uma instrução além de 128k por\n"
" um reloc limitado a um máximo de 128k,\n"
" ele vai inserir um stub de salto.\n"
" Você pode desativá-lo com essa opção.\n"
#: eavr1.c:549 eavr2.c:549 eavr25.c:549 eavr3.c:549 eavr31.c:549 eavr35.c:549
#: eavr4.c:549 eavr5.c:549 eavr51.c:549 eavr6.c:549 eavrtiny.c:549
#: eavrxmega1.c:549 eavrxmega2.c:549 eavrxmega3.c:549 eavrxmega4.c:549
#: eavrxmega5.c:549 eavrxmega6.c:549 eavrxmega7.c:549
#, c-format
msgid " --debug-stubs Used for debugging avr-ld.\n"
msgstr " --debug-stubs Usado para depuração de avr-ld.\n"
#: eavr1.c:551 eavr2.c:551 eavr25.c:551 eavr3.c:551 eavr31.c:551 eavr35.c:551
#: eavr4.c:551 eavr5.c:551 eavr51.c:551 eavr6.c:551 eavrtiny.c:551
#: eavrxmega1.c:551 eavrxmega2.c:551 eavrxmega3.c:551 eavrxmega4.c:551
#: eavrxmega5.c:551 eavrxmega6.c:551 eavrxmega7.c:551
#, c-format
msgid " --debug-relax Used for debugging avr-ld.\n"
msgstr " --debug-relax Usado para depuração de avr-ld.\n"
#: ecskyelf.c:275 ecskyelf_linux.c:275
msgid "%X%P: cannot size stub section: %E\n"
msgstr "%X%P: não foi possível definir tamanho de seção stub: %E\n"
#: ecskyelf.c:292 ecskyelf_linux.c:292
msgid "%X%P: cannot build stubs: %E\n"
msgstr "%X%P: não foi possível compilar stubs: %E\n"
#: ecskyelf.c:544 ecskyelf_linux.c:707
#, 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 Desabilita/habilita uso de stubs para expandir\n"
" instruções do ramo que não conseguem alcançar\n"
" o alvo.\n"
#: ecskyelf.c:548 ecskyelf_linux.c:711
#, 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 Tamanho máximo de um grupo de seções de\n"
" entrada tratadas por uma seção 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:98
#: emsp430elf.c:98 epjelf.c:73 epjlelf.c:73 exgateelf.c:73
msgid "%X%P: can not size group sections: %E\n"
msgstr "%X%P: não foi possível dimensionar seções de grupo: %E\n"
#: eelf32_spu.c:255 ev850.c:73 ev850_rh850.c:73
msgid "%X%P: can not create note section: %E\n"
msgstr "%X%P: não foi possível criar seção de nota: %E\n"
#: eelf32_spu.c:344
msgid "%F%P: no built-in overlay manager\n"
msgstr "%F%P: nenhum gerenciador de sobreposição embutido\n"
#: eelf32_spu.c:354
msgid "%X%P: can not open built-in overlay manager: %E\n"
msgstr "%X%P: não foi possível abrir gerenciador de sobreposição embutido: %E\n"
#: eelf32_spu.c:360
msgid "%X%P: can not load built-in overlay manager: %E\n"
msgstr "%X%P: não foi possível carregar gerenciador de sobreposição embutido: %E\n"
#: eelf32_spu.c:420
msgid "%X%P: can not find overlays: %E\n"
msgstr "%X%P: não foi possível localizar sobreposições: %E\n"
#: eelf32_spu.c:427
msgid "%P: --auto-overlay ignored with user overlay script\n"
msgstr "%P: --auto-overlay ignorado com script de sobreposição do usuário\n"
#: eelf32_spu.c:448
msgid "%X%P: can not size overlay stubs: %E\n"
msgstr "%X%P: não foi possível dimensionar stubs de sobreposição: %E\n"
#: eelf32_spu.c:521
msgid "%F%P: can not open script: %E\n"
msgstr "%F%P: não foi abrir script: %E\n"
#: eelf32_spu.c:568
msgid "%X%P: %pA exceeds local store range\n"
msgstr "%X%P: %pA excede intervalo de armazenamento local\n"
#: eelf32_spu.c:571
msgid "%P: --auto-overlay ignored with zero local store range\n"
msgstr "%P: --auto-overlay ignorado com intervalo de armazenamento local zero\n"
#: eelf32_spu.c:675
#, c-format
msgid "running: %s \"%s\" \"%s\" \"%s\" \"%s\"\n"
msgstr "executando: %s \"%s\" \"%s\" \"%s\" \"%s\"\n"
#: eelf32_spu.c:1021
msgid "%F%P: invalid --local-store address range `%s'\n"
msgstr "%F%P: endereço de --local-store com intervalo inválido `%s'\n"
#: eelf32_spu.c:1057
msgid "%F%P: invalid --num-lines/--num-regions `%u'\n"
msgstr "%F%P: --num-lines/--num-regions inválido \"%u\"\n"
#: eelf32_spu.c:1062
msgid "%F%P: invalid --line-size/--region-size `%u'\n"
msgstr "%F%P: --line-size/--region-size inválido `%u'\n"
#: eelf32_spu.c:1083
msgid "%F%P: invalid --num-lines/--num-regions `%s'\n"
msgstr "%F%P: --num-lines/--num-regions inválido \"%s\"\n"
#: eelf32_spu.c:1096
msgid "%F%P: invalid --line-size/--region-size `%s'\n"
msgstr "%F%P: --line-size/--region-size inválido `%s'\n"
#: eelf32_spu.c:1105
msgid "%F%P: invalid --fixed-space value `%s'\n"
msgstr "%F%P: --fixed-space com valor inválido \"%s\"\n"
#: eelf32_spu.c:1114
msgid "%F%P: invalid --reserved-space value `%s'\n"
msgstr "%F%P: --reserved-space com valor inválido \"%s\"\n"
#: eelf32_spu.c:1123
msgid "%F%P: invalid --extra-stack-space value `%s'\n"
msgstr "%F%P: --extra-stack-space com valor inválido \"%s\"\n"
#: eelf32_spu.c:1160
#, c-format
msgid " --plugin Make SPU plugin\n"
msgstr " --plugin Faz o plug-in SPU\n"
#: eelf32_spu.c:1162
#, c-format
msgid " --no-overlays No overlay handling\n"
msgstr " --no-overlays Não lida com sobreposições\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: eelf32_spu.c:1164
#, c-format
msgid " --compact-stubs Use smaller and possibly slower call stubs\n"
msgstr ""
" --compact-stubs Usa stubs de chamada menores e possivelmente\n"
" mais lentos\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: eelf32_spu.c:1166
#, c-format
msgid " --emit-stub-syms Add symbols on overlay call stubs\n"
msgstr ""
" --emit-stub-syms Adiciona símbolos em stubs de chamadas\n"
" de sobreposição\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: eelf32_spu.c:1168
#, c-format
msgid " --extra-overlay-stubs Add stubs on all calls out of overlay regions\n"
msgstr ""
" --extra-overlay-stubs Adiciona stubs em todas as chamadas de\n"
" regiões de sobreposição\n"
#: eelf32_spu.c:1170
#, c-format
msgid " --local-store=lo:hi Valid address range\n"
msgstr " --local-store=lo:hi Intervalo de endereço válido\n"
#: eelf32_spu.c:1172
#, c-format
msgid " --stack-analysis Estimate maximum stack requirement\n"
msgstr " --stack-analysis Estima o requisito de pilha máxima\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: eelf32_spu.c:1174
#, c-format
msgid " --emit-stack-syms Add sym giving stack needed for each func\n"
msgstr ""
" --emit-stack-syms Adicione sym dando pilha necessário para\n"
" cada func\n"
#: eelf32_spu.c:1176
#, 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 [=arquivo] Cria um script de sobreposição no nome\n"
" do arquivo, se o executável não couber\n"
" no armazenamento local\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: eelf32_spu.c:1179
#, c-format
msgid " --auto-relink Rerun linker using auto-overlay script\n"
msgstr ""
" --auto-relink Executa novamente o vinculador usando o\n"
" script de sobreposição automática\n"
#: eelf32_spu.c:1181
#, c-format
msgid ""
" --overlay-rodata Place read-only data with associated function\n"
" code in overlays\n"
msgstr ""
" --overlay-rodata Coloca dados somente leitura com código\n"
" de função associado em sobreposições\n"
#: eelf32_spu.c:1184
#, c-format
msgid " --num-regions Number of overlay buffers (default 1)\n"
msgstr " --num-regions Número de buffers de sobreposição (padrão 1)\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: eelf32_spu.c:1186
#, c-format
msgid " --region-size Size of overlay buffers (default 0, auto)\n"
msgstr ""
" --region-size Tamanho de buffers de sobreposição\n"
" (padrão 0, auto)\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: eelf32_spu.c:1188
#, c-format
msgid " --fixed-space=bytes Local store for non-overlay code and data\n"
msgstr ""
" --fixed-space=bytes Armazenamento local para código e dados\n"
" não sobrepostos\n"
#: eelf32_spu.c:1190
#, 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 Armazenamento local para pilha e heap. Se não for\n"
" especificado, ld calculará o tamanho da pilha e\n"
" presumirá não heap\n"
#: eelf32_spu.c:1193
#, 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 Espaço para acesso negativo de sp (padrão 2000)\n"
" se --reserved-space não for passado\n"
#: eelf32_spu.c:1196
#, c-format
msgid " --soft-icache Generate software icache overlays\n"
msgstr " --soft-icache Gera sobreposições de icache software\n"
#: eelf32_spu.c:1198
#, c-format
msgid " --num-lines Number of soft-icache lines (default 32)\n"
msgstr " --num-lines Número de linhas icache de software (padrão 32)\n"
#: eelf32_spu.c:1200
#, c-format
msgid " --line-size Size of soft-icache lines (default 1k)\n"
msgstr " --line-size Tamanho de linhas icache de software (padrão 1k)\n"
#: eelf32_spu.c:1202
#, c-format
msgid " --non-ia-text Allow non-icache code in icache lines\n"
msgstr " --non-ia-text Permite código não icache em linha icache\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: eelf32_spu.c:1204
#, c-format
msgid " --lrlive-analysis Scan function prologue for lr liveness\n"
msgstr ""
" --lrlive-analysis Procura de prólogo de função para\n"
" vivacidade de lr\n"
#: eelf32_tic6x_be.c:88 eelf32_tic6x_elf_be.c:88 eelf32_tic6x_elf_le.c:88
#: eelf32_tic6x_le.c:88 eelf32_tic6x_linux_be.c:88 eelf32_tic6x_linux_le.c:88
msgid "%F%P: invalid --dsbt-index %d, outside DSBT size\n"
msgstr "%F%P: --dsbt-index inválido %d, fora do tamanho de DSBT\n"
#: eelf32_tic6x_be.c:550 eelf32_tic6x_elf_be.c:550 eelf32_tic6x_elf_le.c:550
#: eelf32_tic6x_le.c:550 eelf32_tic6x_linux_be.c:550
#: eelf32_tic6x_linux_le.c:550
msgid "%F%P: invalid --dsbt-index %s\n"
msgstr "%F%P: --dsbt-index inválido %s\n"
#: eelf32_tic6x_be.c:560 eelf32_tic6x_elf_be.c:560 eelf32_tic6x_elf_le.c:560
#: eelf32_tic6x_le.c:560 eelf32_tic6x_linux_be.c:560
#: eelf32_tic6x_linux_le.c:560
msgid "%F%P: invalid --dsbt-size %s\n"
msgstr "%F%P: --dsbt-size inválido %s\n"
#: eelf32_tic6x_be.c:576 eelf32_tic6x_elf_be.c:576 eelf32_tic6x_elf_le.c:576
#: eelf32_tic6x_le.c:576 eelf32_tic6x_linux_be.c:576
#: eelf32_tic6x_linux_le.c:576
#, c-format
msgid " --dsbt-index <index> Use this as the DSBT index for the output object\n"
msgstr " --dsbt-index <índice> Usa-o como o índice DSBT para o objeto de saída\n"
#: eelf32_tic6x_be.c:577 eelf32_tic6x_elf_be.c:577 eelf32_tic6x_elf_le.c:577
#: eelf32_tic6x_le.c:577 eelf32_tic6x_linux_be.c:577
#: eelf32_tic6x_linux_le.c:577
#, c-format
msgid " --dsbt-size <index> Use this as the number of entries in the DSBT table\n"
msgstr " --dsbt-size <índice> Usa-o como o número de entradas na tabela DSBT\n"
#: eelf32_tic6x_be.c:578 eelf32_tic6x_elf_be.c:578 eelf32_tic6x_elf_le.c:578
#: eelf32_tic6x_le.c:578 eelf32_tic6x_linux_be.c:578
#: eelf32_tic6x_linux_le.c:578
#, c-format
msgid " --no-merge-exidx-entries\n"
msgstr " --no-merge-exidx-entries\n"
# Descrição da opção "--no-merge-exidx-entries" -- Rafael
# Espaço extra para promover alinhamento -- Rafael
#: eelf32_tic6x_be.c:579 eelf32_tic6x_elf_be.c:579 eelf32_tic6x_elf_le.c:579
#: eelf32_tic6x_le.c:579 eelf32_tic6x_linux_be.c:579
#: eelf32_tic6x_linux_le.c:579
#, c-format
msgid " Disable merging exidx entries\n"
msgstr " Desabilita entradas exidx de mesclagem\n"
#: eelf32_x86_64.c:5398 eelf_i386.c:5017 eelf_i386_be.c:452
#: eelf_i386_fbsd.c:492 eelf_i386_ldso.c:467 eelf_i386_sol2.c:623
#: eelf_i386_vxworks.c:519 eelf_iamcu.c:4995 eelf_k1om.c:5351
#: eelf_k1om_fbsd.c:5331 eelf_l1om.c:5351 eelf_l1om_fbsd.c:5331
#: eelf_x86_64.c:5398 eelf_x86_64_cloudabi.c:495 eelf_x86_64_fbsd.c:495
#: eelf_x86_64_sol2.c:626
msgid "%F%P: invalid number for -z call-nop=prefix-: %s\n"
msgstr "%F%P: número inválido para -z call-nop=prefix-: %s\n"
#: eelf32_x86_64.c:5407 eelf_i386.c:5026 eelf_i386_be.c:461
#: eelf_i386_fbsd.c:501 eelf_i386_ldso.c:476 eelf_i386_sol2.c:632
#: eelf_i386_vxworks.c:528 eelf_iamcu.c:5004 eelf_k1om.c:5360
#: eelf_k1om_fbsd.c:5340 eelf_l1om.c:5360 eelf_l1om_fbsd.c:5340
#: eelf_x86_64.c:5407 eelf_x86_64_cloudabi.c:504 eelf_x86_64_fbsd.c:504
#: eelf_x86_64_sol2.c:635
msgid "%F%P: invalid number for -z call-nop=suffix-: %s\n"
msgstr "%F%P: número inválido para -z call-nop=suffix-: %s\n"
#: eelf32_x86_64.c:5412 eelf_i386.c:5031 eelf_i386_be.c:466
#: eelf_i386_fbsd.c:506 eelf_i386_ldso.c:481 eelf_i386_sol2.c:637
#: eelf_i386_vxworks.c:533 eelf_iamcu.c:5009 eelf_k1om.c:5365
#: eelf_k1om_fbsd.c:5345 eelf_l1om.c:5365 eelf_l1om_fbsd.c:5345
#: eelf_x86_64.c:5412 eelf_x86_64_cloudabi.c:509 eelf_x86_64_fbsd.c:509
#: eelf_x86_64_sol2.c:640
msgid "%F%P: unsupported option: -z %s\n"
msgstr "%F%P: opção sem suporte: -z %s\n"
#: eelf32_x86_64.c:5434 eelf_i386.c:5053 eelf_i386_fbsd.c:528
#: eelf_x86_64.c:5434 eelf_x86_64_cloudabi.c:531 eelf_x86_64_fbsd.c:531
#: eelf_x86_64_sol2.c:662
msgid "%F%P: invalid option for -z cet-report=: %s\n"
msgstr "%F%P: origem inválida para -z cet-report=: %s\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: eelf32_x86_64.c:5471 eelf_i386.c:5090 eelf_i386_be.c:482
#: eelf_i386_fbsd.c:565 eelf_i386_ldso.c:506 eelf_i386_sol2.c:662
#: eelf_i386_vxworks.c:554 eelf_iamcu.c:5034 eelf_k1om.c:5390
#: eelf_k1om_fbsd.c:5370 eelf_l1om.c:5390 eelf_l1om_fbsd.c:5370
#: eelf_x86_64.c:5474 eelf_x86_64_cloudabi.c:571 eelf_x86_64_fbsd.c:571
#: eelf_x86_64_sol2.c:702
#, c-format
msgid " -z noextern-protected-data Do not treat protected data symbol as external\n"
msgstr ""
" -z noextern-protected-data Não trata símbolo de dados protegidos\n"
" como externos\n"
#: eelf32_x86_64.c:5474 eelf32lppc.c:802 eelf32lppclinux.c:802
#: eelf32lppcnto.c:802 eelf32lppcsim.c:802 eelf32ppc.c:802
#: eelf32ppc_fbsd.c:802 eelf32ppclinux.c:802 eelf32ppcnto.c:802
#: eelf32ppcsim.c:802 eelf32ppcvxworks.c:780 eelf32ppcwindiss.c:802
#: eelf64lppc.c:1282 eelf64ppc.c:1282 eelf64ppc_fbsd.c:1282 eelf_i386.c:5093
#: eelf_i386_be.c:485 eelf_i386_fbsd.c:568 eelf_i386_ldso.c:509
#: eelf_i386_sol2.c:665 eelf_i386_vxworks.c:557 eelf_iamcu.c:5037
#: eelf_k1om.c:5393 eelf_k1om_fbsd.c:5373 eelf_l1om.c:5393
#: eelf_l1om_fbsd.c:5373 eelf_x86_64.c:5477 eelf_x86_64_cloudabi.c:574
#: eelf_x86_64_fbsd.c:574 eelf_x86_64_sol2.c:705 eppclynx.c:802
#, 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 Torna símbolos fracos indefinidos dinâmicos\n"
" -z nodynamic-undefined-weak Não torna símbolos fracos indefinidos dinâmicos\n"
#: eelf32_x86_64.c:5478 eelf_x86_64.c:5481 eelf_x86_64_cloudabi.c:578
#: eelf_x86_64_fbsd.c:578 eelf_x86_64_sol2.c:709
#, c-format
msgid " -z noreloc-overflow Disable relocation overflow check\n"
msgstr " -z noreloc-overflow Desabilita verificação de estouro de realocação\n"
#: eelf32_x86_64.c:5481 eelf_i386.c:5097 eelf_i386_be.c:489
#: eelf_i386_fbsd.c:572 eelf_i386_ldso.c:513 eelf_i386_sol2.c:669
#: eelf_i386_vxworks.c:561 eelf_iamcu.c:5041 eelf_k1om.c:5397
#: eelf_k1om_fbsd.c:5377 eelf_l1om.c:5397 eelf_l1om_fbsd.c:5377
#: eelf_x86_64.c:5484 eelf_x86_64_cloudabi.c:581 eelf_x86_64_fbsd.c:581
#: eelf_x86_64_sol2.c:712
#, c-format
msgid " -z call-nop=PADDING Use PADDING as 1-byte NOP for branch\n"
msgstr " -z call-nop=PREENCH Usa PREENCH como NOP de 1 byte para ramo\n"
#: eelf32_x86_64.c:5484 eelf_i386.c:5100 eelf_i386_fbsd.c:575
#: eelf_x86_64.c:5487 eelf_x86_64_cloudabi.c:584 eelf_x86_64_fbsd.c:584
#: eelf_x86_64_sol2.c:715
#, c-format
msgid " -z ibtplt Generate IBT-enabled PLT entries\n"
msgstr " -z ibtplt Gera entradas PLT habilitadas para IBT\n"
#: eelf32_x86_64.c:5486 eelf_i386.c:5102 eelf_i386_fbsd.c:577
#: eelf_x86_64.c:5489 eelf_x86_64_cloudabi.c:586 eelf_x86_64_fbsd.c:586
#: eelf_x86_64_sol2.c:717
#, c-format
msgid " -z ibt Generate GNU_PROPERTY_X86_FEATURE_1_IBT\n"
msgstr " -z ibt Gera GNU_PROPERTY_X86_FEATURE_1_IBT\n"
#: eelf32_x86_64.c:5488 eelf_i386.c:5104 eelf_i386_fbsd.c:579
#: eelf_x86_64.c:5491 eelf_x86_64_cloudabi.c:588 eelf_x86_64_fbsd.c:588
#: eelf_x86_64_sol2.c:719
#, c-format
msgid " -z shstk Generate GNU_PROPERTY_X86_FEATURE_1_SHSTK\n"
msgstr " -z shstk Gera GNU_PROPERTY_X86_FEATURE_1_SHSTK\n"
#: eelf32_x86_64.c:5490 eelf_i386.c:5106 eelf_i386_fbsd.c:581
#: eelf_x86_64.c:5493 eelf_x86_64_cloudabi.c:590 eelf_x86_64_fbsd.c:590
#: eelf_x86_64_sol2.c:721
#, 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] (padrão: none)\n"
" Relata falta das propriedades IBT e SHSTK\n"
#: eelf32b4300.c:685 eelf32bmip.c:685 eelf32bmipn32.c:699 eelf32bsmip.c:699
#: eelf32btsmip.c:685 eelf32btsmip_fbsd.c:685 eelf32btsmipn32.c:685
#: eelf32btsmipn32_fbsd.c:685 eelf32ebmip.c:685 eelf32ebmipvxworks.c:724
#: eelf32elmip.c:685 eelf32elmipvxworks.c:724 eelf32l4300.c:685
#: eelf32lmip.c:685 eelf32lr5900.c:548 eelf32lr5900n32.c:547 eelf32lsmip.c:685
#: eelf32ltsmip.c:685 eelf32ltsmip_fbsd.c:685 eelf32ltsmipn32.c:685
#: eelf32ltsmipn32_fbsd.c:685 eelf32mipswindiss.c:522 eelf64bmip.c:699
#: eelf64btsmip.c:685 eelf64btsmip_fbsd.c:685 eelf64ltsmip.c:685
#: eelf64ltsmip_fbsd.c:685
#, c-format
msgid " --insn32 Only generate 32-bit microMIPS instructions\n"
msgstr " --insn32 Gera apenas instruções microMIPS de 32 bits\n"
#: eelf32b4300.c:688 eelf32bmip.c:688 eelf32bmipn32.c:702 eelf32bsmip.c:702
#: eelf32btsmip.c:688 eelf32btsmip_fbsd.c:688 eelf32btsmipn32.c:688
#: eelf32btsmipn32_fbsd.c:688 eelf32ebmip.c:688 eelf32ebmipvxworks.c:727
#: eelf32elmip.c:688 eelf32elmipvxworks.c:727 eelf32l4300.c:688
#: eelf32lmip.c:688 eelf32lr5900.c:551 eelf32lr5900n32.c:550 eelf32lsmip.c:688
#: eelf32ltsmip.c:688 eelf32ltsmip_fbsd.c:688 eelf32ltsmipn32.c:688
#: eelf32ltsmipn32_fbsd.c:688 eelf32mipswindiss.c:525 eelf64bmip.c:702
#: eelf64btsmip.c:688 eelf64btsmip_fbsd.c:688 eelf64ltsmip.c:688
#: eelf64ltsmip_fbsd.c:688
#, c-format
msgid " --no-insn32 Generate all microMIPS instructions\n"
msgstr " --no-insn32 Gera todas as instruções microMIPS\n"
# Espaço extra para promover alinhamento -- Rafael
#: eelf32b4300.c:691 eelf32bmip.c:691 eelf32bmipn32.c:705 eelf32bsmip.c:705
#: eelf32btsmip.c:691 eelf32btsmip_fbsd.c:691 eelf32btsmipn32.c:691
#: eelf32btsmipn32_fbsd.c:691 eelf32ebmip.c:691 eelf32ebmipvxworks.c:730
#: eelf32elmip.c:691 eelf32elmipvxworks.c:730 eelf32l4300.c:691
#: eelf32lmip.c:691 eelf32lr5900.c:554 eelf32lr5900n32.c:553 eelf32lsmip.c:691
#: eelf32ltsmip.c:691 eelf32ltsmip_fbsd.c:691 eelf32ltsmipn32.c:691
#: eelf32ltsmipn32_fbsd.c:691 eelf32mipswindiss.c:528 eelf64bmip.c:705
#: eelf64btsmip.c:691 eelf64btsmip_fbsd.c:691 eelf64ltsmip.c:691
#: eelf64ltsmip_fbsd.c:691
#, c-format
msgid ""
" --ignore-branch-isa Accept invalid branch relocations requiring\n"
" an ISA mode switch\n"
msgstr ""
" --ignore-branch-isa Aceita realocações de ramo inválidas\n"
" que exijam uma opção de modo ISA\n"
# Espaço extra para promover alinhamento -- Rafael
#: eelf32b4300.c:695 eelf32bmip.c:695 eelf32bmipn32.c:709 eelf32bsmip.c:709
#: eelf32btsmip.c:695 eelf32btsmip_fbsd.c:695 eelf32btsmipn32.c:695
#: eelf32btsmipn32_fbsd.c:695 eelf32ebmip.c:695 eelf32ebmipvxworks.c:734
#: eelf32elmip.c:695 eelf32elmipvxworks.c:734 eelf32l4300.c:695
#: eelf32lmip.c:695 eelf32lr5900.c:558 eelf32lr5900n32.c:557 eelf32lsmip.c:695
#: eelf32ltsmip.c:695 eelf32ltsmip_fbsd.c:695 eelf32ltsmipn32.c:695
#: eelf32ltsmipn32_fbsd.c:695 eelf32mipswindiss.c:532 eelf64bmip.c:709
#: eelf64btsmip.c:695 eelf64btsmip_fbsd.c:695 eelf64ltsmip.c:695
#: eelf64ltsmip_fbsd.c:695
#, c-format
msgid ""
" --no-ignore-branch-isa Reject invalid branch relocations requiring\n"
" an ISA mode switch\n"
msgstr ""
" --no-ignore-branch-isa Rejeita realocações de ramo inválidas\n"
" que exijam uma opção de modo ISA\n"
#: eelf32b4300.c:699 eelf32bmip.c:699 eelf32bmipn32.c:713 eelf32bsmip.c:713
#: eelf32btsmip.c:699 eelf32btsmip_fbsd.c:699 eelf32btsmipn32.c:699
#: eelf32btsmipn32_fbsd.c:699 eelf32ebmip.c:699 eelf32ebmipvxworks.c:738
#: eelf32elmip.c:699 eelf32elmipvxworks.c:738 eelf32l4300.c:699
#: eelf32lmip.c:699 eelf32lr5900.c:562 eelf32lr5900n32.c:561 eelf32lsmip.c:699
#: eelf32ltsmip.c:699 eelf32ltsmip_fbsd.c:699 eelf32ltsmipn32.c:699
#: eelf32ltsmipn32_fbsd.c:699 eelf32mipswindiss.c:536 eelf64bmip.c:713
#: eelf64btsmip.c:699 eelf64btsmip_fbsd.c:699 eelf64ltsmip.c:699
#: eelf64ltsmip_fbsd.c:699
#, c-format
msgid " --compact-branches Generate compact branches/jumps for MIPS R6\n"
msgstr " --compact-branches Gera ramos/saltos compactos para MIPS R6\n"
#: eelf32b4300.c:702 eelf32bmip.c:702 eelf32bmipn32.c:716 eelf32bsmip.c:716
#: eelf32btsmip.c:702 eelf32btsmip_fbsd.c:702 eelf32btsmipn32.c:702
#: eelf32btsmipn32_fbsd.c:702 eelf32ebmip.c:702 eelf32ebmipvxworks.c:741
#: eelf32elmip.c:702 eelf32elmipvxworks.c:741 eelf32l4300.c:702
#: eelf32lmip.c:702 eelf32lr5900.c:565 eelf32lr5900n32.c:564 eelf32lsmip.c:702
#: eelf32ltsmip.c:702 eelf32ltsmip_fbsd.c:702 eelf32ltsmipn32.c:702
#: eelf32ltsmipn32_fbsd.c:702 eelf32mipswindiss.c:539 eelf64bmip.c:716
#: eelf64btsmip.c:702 eelf64btsmip_fbsd.c:702 eelf64ltsmip.c:702
#: eelf64ltsmip_fbsd.c:702
#, c-format
msgid " --no-compact-branches Generate delay slot branches/jumps for MIPS R6\n"
msgstr " --no-compact-branches Gera ramos/saltos de slot de atraso para MIPS R6\n"
#: eelf32bfin.c:441 eelf32bfinfd.c:466
#, c-format
msgid " --code-in-l1 Put code in L1\n"
msgstr " --code-in-l1 Coloca código em L1\n"
#: eelf32bfin.c:443 eelf32bfinfd.c:468
#, c-format
msgid " --data-in-l1 Put data in L1\n"
msgstr " --data-in-l1 Coloca dados em L1\n"
#: eelf32cr16.c:85
msgid "%F%P: %pB: all input objects must be COFF or ELF for --embedded-relocs\n"
msgstr "%F%P: %pB: todos os objetos de entrada devem ser COFF ou ELF para --embedded-relocs\n"
#: eelf32cr16.c:109 em68kelf.c:113 em68kelfnbsd.c:113
msgid "%F%P: %pB: can not create .emreloc section: %E\n"
msgstr "%F%P: %pB: não foi possível criar seção .emreloc: %E\n"
#: eelf32cr16.c:128 em68kelf.c:134 em68kelfnbsd.c:134
msgid "%X%P: %pB: section %s has relocs; can not use --embedded-relocs\n"
msgstr "%X%P: %pB: seção %s possui realocações; não é possível usar --embedded-relocs\n"
#: eelf32cr16.c:184 em68kelf.c:177 em68kelfnbsd.c:177
msgid "%X%P: %pB: can not create runtime reloc information: %E\n"
msgstr "%X%P: %pB: não foi possível criar informação de realocação de tempo de execução: %E\n"
#: eelf32cr16.c:187 em68kelf.c:181 em68kelfnbsd.c:181
msgid "%X%P: %pB: can not create runtime reloc information: %s\n"
msgstr "%X%P: %pB: não foi possível criar informação de realocação de tempo de execução: %s\n"
#: eelf32lppc.c:96 eelf32lppclinux.c:96 eelf32lppcnto.c:96 eelf32lppcsim.c:96
#: eelf32ppc.c:96 eelf32ppc_fbsd.c:96 eelf32ppclinux.c:96 eelf32ppcnto.c:96
#: eelf32ppcsim.c:96 eelf32ppcwindiss.c:96 eppclynx.c:96
msgid "%X%P: select_plt_layout problem %E\n"
msgstr "%X%P: programa de select_plt_layout %E\n"
#: eelf32lppc.c:160 eelf32lppclinux.c:160 eelf32lppcnto.c:160
#: eelf32lppcsim.c:160 eelf32ppc.c:160 eelf32ppc_fbsd.c:160
#: eelf32ppclinux.c:160 eelf32ppcnto.c:160 eelf32ppcsim.c:160
#: eelf32ppcvxworks.c:105 eelf32ppcwindiss.c:160 eelf64lppc.c:319
#: eelf64ppc.c:319 eelf64ppc_fbsd.c:319 eppclynx.c:160
msgid "%X%P: inline PLT: %E\n"
msgstr "%X%P: PLT em linha: %E\n"
#: eelf32lppc.c:168 eelf32lppclinux.c:168 eelf32lppcnto.c:168
#: eelf32lppcsim.c:168 eelf32ppc.c:168 eelf32ppc_fbsd.c:168
#: eelf32ppclinux.c:168 eelf32ppcnto.c:168 eelf32ppcsim.c:168
#: eelf32ppcvxworks.c:113 eelf32ppcwindiss.c:168 eelf64lppc.c:330
#: eelf64ppc.c:330 eelf64ppc_fbsd.c:330 eppclynx.c:168
msgid "%X%P: TLS problem %E\n"
msgstr "%X%P: problema de TLS %E\n"
#: eelf32lppc.c:255 eelf32lppclinux.c:255 eelf32lppcnto.c:255
#: eelf32lppcsim.c:255 eelf32ppc.c:255 eelf32ppc_fbsd.c:255
#: eelf32ppclinux.c:255 eelf32ppcnto.c:255 eelf32ppcsim.c:255
#: eelf32ppcvxworks.c:200 eelf32ppcwindiss.c:255 eppclynx.c:255
msgid "%X%P: ppc_finish_symbols problem %E\n"
msgstr "%X%P: problema de ppc_finish_symbols %E\n"
#: eelf32lppc.c:743 eelf32lppclinux.c:743 eelf32lppcnto.c:743
#: eelf32lppcsim.c:743 eelf32ppc.c:743 eelf32ppc_fbsd.c:743
#: eelf32ppclinux.c:743 eelf32ppcnto.c:743 eelf32ppcsim.c:743
#: eelf32ppcvxworks.c:717 eelf32ppcwindiss.c:743 eelf64lppc.c:1175
#: eelf64ppc.c:1175 eelf64ppc_fbsd.c:1175 eppclynx.c:743
msgid "%F%P: invalid --plt-align `%s'\n"
msgstr "%F%P: --plt-align inválido `%s'\n"
#: eelf32lppc.c:776 eelf32lppclinux.c:776 eelf32lppcnto.c:776
#: eelf32lppcsim.c:776 eelf32ppc.c:776 eelf32ppc_fbsd.c:776
#: eelf32ppclinux.c:776 eelf32ppcnto.c:776 eelf32ppcsim.c:776
#: eelf32ppcvxworks.c:750 eelf32ppcwindiss.c:776 eppclynx.c:776
msgid "%F%P: invalid pagesize `%s'\n"
msgstr "%F%P: tamanho de página inválido \"%s\"\n"
#: eelf32lppc.c:806 eelf32lppclinux.c:806 eelf32lppcnto.c:806
#: eelf32lppcsim.c:806 eelf32ppc.c:806 eelf32ppc_fbsd.c:806
#: eelf32ppclinux.c:806 eelf32ppcnto.c:806 eelf32ppcsim.c:806
#: eelf32ppcvxworks.c:784 eelf32ppcwindiss.c:806 eelf64lppc.c:1320
#: eelf64ppc.c:1320 eelf64ppc_fbsd.c:1320 eppclynx.c:806
#, c-format
msgid " --emit-stub-syms Label linker stubs with a symbol\n"
msgstr " --emit-stub-syms Rotula stubs de vinculador com um símbolo\n"
#: eelf32lppc.c:809 eelf32lppclinux.c:809 eelf32lppcnto.c:809
#: eelf32lppcsim.c:809 eelf32ppc.c:809 eelf32ppc_fbsd.c:809
#: eelf32ppclinux.c:809 eelf32ppcnto.c:809 eelf32ppcsim.c:809
#: eelf32ppcvxworks.c:787 eelf32ppcwindiss.c:809 eelf64lppc.c:1323
#: eelf64ppc.c:1323 eelf64ppc_fbsd.c:1323 eppclynx.c:809
#, c-format
msgid " --no-emit-stub-syms Don't label linker stubs with a symbol\n"
msgstr " --no-emit-stub-syms Não rotula stubs de vinculador com um símbolo\n"
#: eelf32lppc.c:812 eelf32lppclinux.c:812 eelf32lppcnto.c:812
#: eelf32lppcsim.c:812 eelf32ppc.c:812 eelf32ppc_fbsd.c:812
#: eelf32ppclinux.c:812 eelf32ppcnto.c:812 eelf32ppcsim.c:812
#: eelf32ppcvxworks.c:790 eelf32ppcwindiss.c:812 eelf64lppc.c:1343
#: eelf64ppc.c:1343 eelf64ppc_fbsd.c:1343 eppclynx.c:812
#, c-format
msgid " --no-tls-optimize Don't try to optimize TLS accesses\n"
msgstr " --no-tls-optimize Não tenta otimizar acessos TLS\n"
#: eelf32lppc.c:815 eelf32lppclinux.c:815 eelf32lppcnto.c:815
#: eelf32lppcsim.c:815 eelf32ppc.c:815 eelf32ppc_fbsd.c:815
#: eelf32ppclinux.c:815 eelf32ppcnto.c:815 eelf32ppcsim.c:815
#: eelf32ppcvxworks.c:793 eelf32ppcwindiss.c:815 eelf64lppc.c:1349
#: eelf64ppc.c:1349 eelf64ppc_fbsd.c:1349 eppclynx.c:815
#, c-format
msgid " --no-tls-get-addr-optimize Don't use a special __tls_get_addr call\n"
msgstr " --no-tls-get-addr-optimize Não usa uma chamada __tls_get_addr especial\n"
#: eelf32lppc.c:818 eelf32lppclinux.c:818 eelf32lppcnto.c:818
#: eelf32lppcsim.c:818 eelf32ppc.c:818 eelf32ppc_fbsd.c:818
#: eelf32ppclinux.c:818 eelf32ppcnto.c:818 eelf32ppcsim.c:818
#: eelf32ppcwindiss.c:818 eppclynx.c:818
#, c-format
msgid " --secure-plt Use new-style PLT if possible\n"
msgstr " --secure-plt Usa PLT de estilo novo, se possível\n"
#: eelf32lppc.c:821 eelf32lppclinux.c:821 eelf32lppcnto.c:821
#: eelf32lppcsim.c:821 eelf32ppc.c:821 eelf32ppc_fbsd.c:821
#: eelf32ppclinux.c:821 eelf32ppcnto.c:821 eelf32ppcsim.c:821
#: eelf32ppcwindiss.c:821 eppclynx.c:821
#, c-format
msgid " --bss-plt Force old-style BSS PLT\n"
msgstr " --bss-plt Força BSS PLT estilo antigo\n"
#: eelf32lppc.c:824 eelf32lppclinux.c:824 eelf32lppcnto.c:824
#: eelf32lppcsim.c:824 eelf32ppc.c:824 eelf32ppc_fbsd.c:824
#: eelf32ppclinux.c:824 eelf32ppcnto.c:824 eelf32ppcsim.c:824
#: eelf32ppcwindiss.c:824 eppclynx.c:824
#, c-format
msgid " --plt-align Align PLT call stubs to fit cache lines\n"
msgstr ""
" --plt-align Alinha stubs de chamada PLT para caber nas\n"
" linhas de cache\n"
#: eelf32lppc.c:827 eelf32lppclinux.c:827 eelf32lppcnto.c:827
#: eelf32lppcsim.c:827 eelf32ppc.c:827 eelf32ppc_fbsd.c:827
#: eelf32ppclinux.c:827 eelf32ppcnto.c:827 eelf32ppcsim.c:827
#: eelf32ppcwindiss.c:827 eelf64lppc.c:1311 eelf64ppc.c:1311
#: eelf64ppc_fbsd.c:1311 eppclynx.c:827
#, c-format
msgid " --no-plt-align Dont't align individual PLT call stubs\n"
msgstr " --no-plt-align Não alinha stubs de chamadas PLT individuais\n"
#: eelf32lppc.c:830 eelf32lppclinux.c:830 eelf32lppcnto.c:830
#: eelf32lppcsim.c:830 eelf32ppc.c:830 eelf32ppc_fbsd.c:830
#: eelf32ppclinux.c:830 eelf32ppcnto.c:830 eelf32ppcsim.c:830
#: eelf32ppcwindiss.c:830 eelf64lppc.c:1361 eelf64ppc.c:1361
#: eelf64ppc_fbsd.c:1361 eppclynx.c:830
#, c-format
msgid " --no-inline-optimize Don't convert inline PLT to direct calls\n"
msgstr " --no-inline-optimize Não converte PLT em linha para chamadas diretas\n"
#: eelf32lppc.c:833 eelf32lppclinux.c:833 eelf32lppcnto.c:833
#: eelf32lppcsim.c:833 eelf32ppc.c:833 eelf32ppc_fbsd.c:833
#: eelf32ppclinux.c:833 eelf32ppcnto.c:833 eelf32ppcsim.c:833
#: eelf32ppcwindiss.c:833 eppclynx.c:833
#, c-format
msgid " --sdata-got Force GOT location just before .sdata\n"
msgstr " --sdata-got Força localização GOT logo antes de .sdata\n"
#: eelf32lppc.c:836 eelf32lppclinux.c:836 eelf32lppcnto.c:836
#: eelf32lppcsim.c:836 eelf32ppc.c:836 eelf32ppc_fbsd.c:836
#: eelf32ppclinux.c:836 eelf32ppcnto.c:836 eelf32ppcsim.c:836
#: eelf32ppcvxworks.c:796 eelf32ppcwindiss.c:836 eppclynx.c:836
#, c-format
msgid ""
" --ppc476-workaround [=pagesize]\n"
" Avoid a cache bug on ppc476\n"
msgstr ""
" --ppc476-workaround [=tamanhopágina]\n"
" Evita um bug de cache em ppc476\n"
#: eelf32lppc.c:840 eelf32lppclinux.c:840 eelf32lppcnto.c:840
#: eelf32lppcsim.c:840 eelf32ppc.c:840 eelf32ppc_fbsd.c:840
#: eelf32ppclinux.c:840 eelf32ppcnto.c:840 eelf32ppcsim.c:840
#: eelf32ppcvxworks.c:800 eelf32ppcwindiss.c:840 eppclynx.c:840
#, c-format
msgid " --no-ppc476-workaround Disable workaround\n"
msgstr " --no-ppc476-workaround Desabilita solução de contorno\n"
#: eelf32lppc.c:843 eelf32lppclinux.c:843 eelf32lppcnto.c:843
#: eelf32lppcsim.c:843 eelf32ppc.c:843 eelf32ppc_fbsd.c:843
#: eelf32ppclinux.c:843 eelf32ppcnto.c:843 eelf32ppcsim.c:843
#: eelf32ppcvxworks.c:803 eelf32ppcwindiss.c:843 eppclynx.c:843
#, c-format
msgid " --no-pic-fixup Don't edit non-pic to pic\n"
msgstr " --no-pic-fixup Não edita não-pic para pic\n"
#: eelf32lppc.c:846 eelf32lppclinux.c:846 eelf32lppcnto.c:846
#: eelf32lppcsim.c:846 eelf32ppc.c:846 eelf32ppc_fbsd.c:846
#: eelf32ppclinux.c:846 eelf32ppcnto.c:846 eelf32ppcsim.c:846
#: eelf32ppcvxworks.c:806 eelf32ppcwindiss.c:846 eppclynx.c:846
#, c-format
msgid " --vle-reloc-fixup Correct old object file 16A/16D relocation\n"
msgstr ""
" --vle-reloc-fixup Corrige realocação 16A/16D de arquivo de\n"
" objeto antigo\n"
#: eelf32mcore.c:295
#, c-format
msgid " --base_file <basefile> Generate a base file for relocatable DLLs\n"
msgstr " --base_file <arquivobase> Gera um arquivo base para DDLs realocáveis\n"
#: eelf32metag.c:704 eelf64lppc.c:1286 eelf64ppc.c:1286 eelf64ppc_fbsd.c:1286
#: ehppaelf.c:568 ehppalinux.c:746 ehppanbsd.c:746 ehppaobsd.c:746
#, 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 Tamanho máximo de um grupo de seções de entrada\n"
" que podem ser manipuladas por uma seção de\n"
" stub. Um valor negativo localiza todos os\n"
" stubs antes das suas ramificações (com tamanho\n"
" de grupo de -N), enquanto um valor positivo\n"
" permite dois grupos de seções de entrada, um\n"
" antes e um após cada seção de stub. Valores\n"
" de +/- 1 indicam que o vinculador deve\n"
" escolher os padrões adequados.\n"
#: eelf32rx.c:327
#, 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 Não avisa sobre objetos com configurações\n"
" de endian ou dsp incompatíveis\n"
#: eelf32rx.c:329
#, c-format
msgid ""
" --flag-mismatch-warnings Warn about objects with incompatible\n"
" endian, dsp or ABI settings\n"
msgstr ""
" --flag-mismatch-warnings Avisa sobre objetos com configurações\n"
" de endian, dsp ou ABI incompatíveis\n"
#: eelf32rx.c:331
#, c-format
msgid ""
" --ignore-lma Ignore segment LMAs [default]\n"
" (for Renesas Tools compatibility)\n"
msgstr ""
" --ignore-lma Ignora LMAs de segmentos [padrão]\n"
" (para compatibilidade com Renesas Tools)\n"
#: eelf32rx.c:333
#, c-format
msgid " --no-ignore-lma Don't ignore segment LMAs\n"
msgstr " --no-ignore-lma Não ignora LMAs de segmentos\n"
#: eelf32xtensa.c:149
msgid "file already has property tables"
msgstr "arquivo já tem tabelas de propriedade"
#: eelf32xtensa.c:159
msgid "failed to read section contents"
msgstr "falha ao ler conteúdo da seção"
#: eelf32xtensa.c:171
msgid "could not create new section"
msgstr "não foi possível criar nova seção"
#: eelf32xtensa.c:187
msgid "could not allocate section contents"
msgstr "não foi possível alocar conteúdo de seção"
#: eelf32xtensa.c:206
msgid "out of memory"
msgstr "memória insuficiente"
#: eelf32xtensa.c:304
msgid "%P: warning: failed to convert %s table in %pB (%s); subsequent disassembly may be incomplete\n"
msgstr "%P: aviso: falha ao converter a tabela %s em %pB (%s); desmontagem subsequente pode ser incompleta\n"
#: eelf32xtensa.c:424
msgid "%F%P: %pB: cannot read contents of section %pA\n"
msgstr "%F%P: %pB: não foi possível ler conteúdo da seção %pA\n"
#: eelf32xtensa.c:435
msgid "%P: %pB: warning: incompatible Xtensa configuration (%s)\n"
msgstr "%P: %pB: aviso: configuração de Xtensa incompatível (%s)\n"
#: eelf32xtensa.c:439
msgid "%P: %pB: warning: cannot parse .xtensa.info section\n"
msgstr "%P: %pB: aviso: não foi possível analisar seção .xtensa.info\n"
#: eelf32xtensa.c:465
msgid "%F%P: little endian output does not match Xtensa configuration\n"
msgstr "%F%P: saída little endian não corresponde à configuração de Xtensa\n"
#: eelf32xtensa.c:471
msgid "%F%P: big endian output does not match Xtensa configuration\n"
msgstr "%F%P: saída big endian não corresponde à configuração de Xtensa\n"
#: eelf32xtensa.c:490
msgid "%F%P: cross-endian linking for %pB not supported\n"
msgstr "%F%P: não há suporte à vinculação endian cruzada para %pB\n"
#: eelf32xtensa.c:521
msgid "%F%P: failed to create .xtensa.info section\n"
msgstr "%F%P: falha ao criar seção .xtensa.info\n"
#: eelf32xtensa.c:1262
msgid "%F%P: Relaxation not supported with --enable-non-contiguous-regions.\n"
msgstr "%F%P: Relaxamento não suportado com --enable-non-contiguous-regions.\n"
#: eelf32xtensa.c:2383
#, c-format
msgid ""
" --size-opt When relaxing longcalls, prefer size\n"
" optimization over branch target alignment\n"
msgstr ""
" --size-opt Ao relaxar longcalls, prefere otimização de\n"
" tamanho a alinhamento de alvo de ramo\n"
#: eelf32xtensa.c:2386
#, c-format
msgid " --abi-windowed Choose windowed ABI for the output object\n"
msgstr " --abi-windowed Escolhe ABI janelada para o objeto de saída\n"
#: eelf32xtensa.c:2388
#, c-format
msgid " --abi-call0 Choose call0 ABI for the output object\n"
msgstr " --abi-call0 Escolhe ABI call0 para o objeto de saída\n"
#: eelf32z80.c:67 ez80.c:59
msgid "%F%P: %pB: Instruction sets of object files incompatible\n"
msgstr "%F%P: %pB: Conjunto de instruções incompatível dos arquivos objeto\n"
#: eelf64_ia64.c:477 eelf64_ia64_fbsd.c:477
#, c-format
msgid " --itanium Generate code for Intel Itanium processor\n"
msgstr " --itanium Gera código para processador Intel Itanium\n"
#: eelf64_s390.c:63 eelf64lppc.c:127 eelf64ppc.c:127 eelf64ppc_fbsd.c:127
msgid "%F%P: can not init BFD: %E\n"
msgstr "%F%P: não foi possível inicializar BFD: %E\n"
#: eelf64_s390.c:520
#, c-format
msgid " --s390-pgste Tell the kernel to allocate 4k page tables\n"
msgstr " --s390-pgste Diz ao kernel para alocar tabelas de página de 4k\n"
#: eelf64alpha.c:549 eelf64alpha_fbsd.c:549 eelf64alpha_nbsd.c:549
#, c-format
msgid ""
" --taso Load executable in the lower 31-bit addressable\n"
" virtual address range\n"
msgstr ""
" --taso Carrega executável no intervalo de endereço\n"
" virtual endereçável de 31 bits inferior\n"
#: eelf64alpha.c:552 eelf64alpha_fbsd.c:552 eelf64alpha_nbsd.c:552
#, c-format
msgid " --secureplt Force PLT in text segment\n"
msgstr " --secureplt Força PLT em segmento de texto\n"
#: eelf64alpha.c:554 eelf64alpha_fbsd.c:554 eelf64alpha_nbsd.c:554
#, c-format
msgid " --no-secureplt Force PLT in data segment\n"
msgstr " --no-secureplt Força PLT em segmento de dados\n"
#: eelf64lppc.c:311 eelf64lppc.c:339 eelf64ppc.c:311 eelf64ppc.c:339
#: eelf64ppc_fbsd.c:311 eelf64ppc_fbsd.c:339
msgid "%X%P: can not edit %s: %E\n"
msgstr "%X%P: não foi possível editar %s: %E\n"
#: eelf64lppc.c:504 eelf64ppc.c:504 eelf64ppc_fbsd.c:504
msgid "%X%P: linker script separates .got and .toc\n"
msgstr "%X%P: script vinculador separa .got e .toc\n"
#: eelf64lppc.c:565 eelf64ppc.c:565 eelf64ppc_fbsd.c:565
msgid "%P: .init/.fini fragments use differing TOC pointers\n"
msgstr "%P: fragmentos .init/.fini usam ponteiros TOC diferentes\n"
#: eelf64lppc.c:1296 eelf64ppc.c:1296
#, c-format
msgid " --plt-static-chain PLT call stubs should load r11 (default)\n"
msgstr " --plt-static-chain Stubs de chamada PLT devem carregar r11 (padrão)\n"
#: eelf64lppc.c:1299 eelf64ppc.c:1299
#, c-format
msgid " --no-plt-static-chain PLT call stubs should not load r11\n"
msgstr " --no-plt-static-chain Stubs de chamada PLT não devem carregar r11\n"
#: eelf64lppc.c:1302 eelf64ppc.c:1302 eelf64ppc_fbsd.c:1302
#, c-format
msgid " --plt-thread-safe PLT call stubs with load-load barrier\n"
msgstr " --plt-thread-safe Stubs de chamada PLT com barreira load-load\n"
#: eelf64lppc.c:1305 eelf64ppc.c:1305 eelf64ppc_fbsd.c:1305
#, c-format
msgid " --no-plt-thread-safe PLT call stubs without barrier\n"
msgstr " --no-plt-thread-safe Stubs de chamada PLT sem barreira\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: eelf64lppc.c:1308 eelf64ppc.c:1308 eelf64ppc_fbsd.c:1308
#, c-format
msgid " --plt-align [=<align>] Align PLT call stubs to fit cache lines\n"
msgstr ""
" --plt-align [=<alinha>] Alinha stubs de chamada PLT para caber nas\n"
" linhas de cache\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: eelf64lppc.c:1314 eelf64ppc.c:1314 eelf64ppc_fbsd.c:1314
#, c-format
msgid " --plt-localentry Optimize calls to ELFv2 localentry:0 functions\n"
msgstr ""
" --plt-localentry Otimiza chamadas para funções localentry:0\n"
" de ELFv2\n"
#: eelf64lppc.c:1317 eelf64ppc.c:1317 eelf64ppc_fbsd.c:1317
#, c-format
msgid " --no-plt-localentry Don't optimize ELFv2 calls\n"
msgstr " --no-plt-localentry Não otimiza chamadas ELFv2\n"
#: eelf64lppc.c:1326 eelf64ppc.c:1326 eelf64ppc_fbsd.c:1326
#, 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 padrão de versão \"foo\" em um script\n"
" de versão, adiciona \".foo\" de forma que os\n"
" símbolos do código de função sejam tratados\n"
" da mesma forma que os símbolos do descritor\n"
" de função. O padrões é estar ativado.\n"
#: eelf64lppc.c:1332 eelf64ppc.c:1332 eelf64ppc_fbsd.c:1332
#, c-format
msgid " --no-dotsyms Don't do anything special in version scripts\n"
msgstr " --no-dotsyms Não faz nada especial em scripts de versão\n"
#: eelf64lppc.c:1335 eelf64ppc.c:1335 eelf64ppc_fbsd.c:1335
#, 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 Fornece rotinas de salvamento e restauração de\n"
" registro usadas pelo código gcc -Os. O padrão é\n"
" para o link normalfinal, desativado para ld -r.\n"
#: eelf64lppc.c:1340 eelf64ppc.c:1340 eelf64ppc_fbsd.c:1340
#, c-format
msgid " --no-save-restore-funcs Don't provide these routines\n"
msgstr " --no-save-restore-funcs Não fornece essas rotinas\n"
#: eelf64lppc.c:1346 eelf64ppc.c:1346 eelf64ppc_fbsd.c:1346
#, c-format
msgid " --tls-get-addr-optimize Force use of special __tls_get_addr call\n"
msgstr " --tls-get-addr-optimize Força o uso de chamada de __tls_get_addr especial\n"
#: eelf64lppc.c:1352 eelf64ppc.c:1352 eelf64ppc_fbsd.c:1352
#, c-format
msgid " --tls-get-addr-regsave Force register save __tls_get_addr stub\n"
msgstr " --tls-get-addr-regsave Força o registro de salvamento de stub __tls_get_addr\n"
#: eelf64lppc.c:1355 eelf64ppc.c:1355 eelf64ppc_fbsd.c:1355
#, c-format
msgid " --no-tls-get-addr-regsave Don't use register save __tls_get_addr stub\n"
msgstr " --no-tls-get-addr-regsave Não usa registro de salvamento de stub __tls_get_addr\n"
#: eelf64lppc.c:1358 eelf64ppc.c:1358 eelf64ppc_fbsd.c:1358
#, c-format
msgid " --no-opd-optimize Don't optimize the OPD section\n"
msgstr " --no-opd-optimize Não otimiza a seção OPD\n"
#: eelf64lppc.c:1364 eelf64ppc.c:1364 eelf64ppc_fbsd.c:1364
#, c-format
msgid " --no-toc-optimize Don't optimize the TOC section\n"
msgstr " --no-toc-optimize Não otimiza a seção TOC\n"
#: eelf64lppc.c:1367 eelf64ppc.c:1367 eelf64ppc_fbsd.c:1367
#, c-format
msgid " --no-multi-toc Disallow automatic multiple toc sections\n"
msgstr " --no-multi-toc Não permite múltiplas seções automáticas de toc\n"
#: eelf64lppc.c:1370 eelf64ppc.c:1370 eelf64ppc_fbsd.c:1370
#, c-format
msgid " --no-toc-sort Don't sort TOC and GOT sections\n"
msgstr " --no-toc-sort Não ordena seções TOC e GOT\n"
#: eelf64lppc.c:1373 eelf64ppc.c:1373 eelf64ppc_fbsd.c:1373
#, c-format
msgid ""
" --non-overlapping-opd Canonicalize .opd, so that there are no\n"
" overlapping .opd entries\n"
msgstr ""
" --non-overlapping-opd Canoniza .opd, para que não haja entradas\n"
" .opd sobrepostas\n"
#: eelf64mmix.c:81 emmo.c:84
msgid "%X%P: internal problems setting up section %s"
msgstr "%X%P: problemas internos ao configurar a seção %s"
#: eelf64mmix.c:125 emmo.c:128
msgid "%X%P: too many global registers: %u, max 223\n"
msgstr "%X%P: muitos registros globais: %u, máx 223\n"
#. This is a fatal error; make einfo call not return.
#: eelf64mmix.c:143 emmo.c:146
msgid "%F%P: can't finalize linker-allocated global registers\n"
msgstr "%F%P: não foi possível finalizar os registradores globais alocados pelo vinculador\n"
#: eelf64ppc_fbsd.c:1296
#, c-format
msgid " --plt-static-chain PLT call stubs should load r111\n"
msgstr " --plt-static-chain Stubs de chamada PLT deve carregar r11\n"
#: eelf64ppc_fbsd.c:1299
#, c-format
msgid " --no-plt-static-chain PLT call stubs should not load r11 (default)\n"
msgstr " --no-plt-static-chain Stubs chamada PLT não deve carregar r11 (padrão)\n"
#: eelf_x86_64.c:5497 eelf_x86_64_cloudabi.c:594 eelf_x86_64_fbsd.c:594
#: eelf_x86_64_sol2.c:725
#, c-format
msgid " -z bndplt Always generate BND prefix in PLT entries\n"
msgstr " -z bndplt Sempre gera prefixo BND em entradas PLT\n"
#: ehppaelf.c:324 ehppalinux.c:324 ehppanbsd.c:324 ehppaobsd.c:324
msgid "%X%P: can not set gp\n"
msgstr "%X%P: não foi possível definir gp\n"
#: ehppaelf.c:564 ehppalinux.c:742 ehppanbsd.c:742 ehppaobsd.c:742
#, c-format
msgid ""
" --multi-subspace Generate import and export stubs to support\n"
" multiple sub-space shared libraries\n"
msgstr ""
" --multi-subspace Gera stubs de importação e exportação para\n"
" oferecer suporte a várias bibliotecas\n"
" compartilhadas de subespaço\n"
#: ei386beos.c:376
msgid "%F%P: PE operations on non PE file\n"
msgstr "%F%P: operações PO em arquivo não PE\n"
#: ei386beos.c:426 ei386beos.c:431
msgid "%F%P: %pB: can't read contents of section .idata: %E\n"
msgstr "%F%P: %pB: não foi possível ler conteúdos da seção .idata: %E\n"
#: ei386beos.c:680
msgid "%F%P: section %s has '$' as first character\n"
msgstr "%F%P: a seção %s tem \"$\" como primeiro caractere\n"
#: ei386beos.c:712
msgid "%F%P: *(%s$) missing from linker script\n"
msgstr "%F%P: *(%s$) faltando no scripts do vinculador\n"
#: ei386pep.c:377
#, c-format
msgid " --[no-]insert-timestamp Use a real timestamp rather than zero (default)\n"
msgstr " --[no-]insert-timestamp Usa marca de tempo em vez de zero (padrão)\n"
# Continuação da descrição da opção "--exclude-modules-for-implib" -- Rafael
# espaço extra para promover alinhamento -- Rafael
#: ei386pep.c:388
#, c-format
msgid " export, place into import library instead\n"
msgstr " na biblioteca de importação\n"
#: ei386pep.c:393
#, c-format
msgid ""
" --compat-implib Create backward compatible import libs;\n"
" create __imp_<SYMBOL> as well\n"
msgstr ""
" --compat-implib Cria bibliotecas de importação com\n"
" compatibilidade reversa;\n"
" cria __imp_<SÍMBOLO> também\n"
#: ei386pep.c:394
#, c-format
msgid ""
" --enable-auto-image-base Automatically choose image base for DLLs\n"
" unless user specifies one\n"
msgstr ""
" --enable-auto-image-base Escolhe automaticamente a base da imagem\n"
" para DLLs, a menos que o usuário\n"
" especifique uma\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: ei386pep.c:395
#, c-format
msgid " --disable-auto-image-base Do not auto-choose image base (default)\n"
msgstr ""
" --disable-auto-image-base Não escolhe automaticamente base de\n"
" imagem (padrão)\n"
#: ei386pep.c:399
#, 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 Contorna limitações de autoimportação\n"
" adicionando pseudorrealocações\n"
" resolvidas em tempo de execução\n"
#: ei386pep.c:400
#, c-format
msgid ""
" --disable-runtime-pseudo-reloc Do not add runtime pseudo-relocations for\n"
" auto-imported DATA\n"
msgstr ""
" --disable-runtime-pseudo-reloc Não adiciona pseudorrealocações em tempo\n"
" de execução para DATA autoimportados\n"
# Espaço removido para promover alinhamento -- Rafael
#: ei386pep.c:401
#, 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 Habilita saída de depuração verbosa ao\n"
" compilar ou vincular a DLLs\n"
" (autoimportação esp.)\n"
#: ei386pep.c:404
#, c-format
msgid ""
" --high-entropy-va Image is compatible with 64-bit address space\n"
" layout randomization (ASLR)\n"
msgstr ""
" --high-entropy-va Imagem é compatível com personalização de\n"
" layout de espaço de endereço de 64 bits\n"
" (ASLR)\n"
# Espaço extra para promover alinhamento -- Rafael
#: ei386pep.c:410
#, c-format
msgid ""
" --no-seh Image does not use SEH; no SE handler may\n"
" be called in this image\n"
msgstr ""
" --no-seh Imagem não usa SEH; nenhum manipulador\n"
" de SE pode ser chamado nesta imagem\n"
#: ei386pep.c:912
msgid "%P: warning: --export-dynamic is not supported for PE+ targets, did you mean --export-all-symbols?\n"
msgstr "%P: aviso: --export-dynamic não oferece suporte para alvos PE+; você quis dizer --export-all-symbols?\n"
#: ei386pep.c:980 ei386pep.c:1007
#, c-format
msgid "warning: resolving %s by linking to %s\n"
msgstr "aviso: resolvendo %s por vinculação a %s\n"
#: em68hc11elf.c:141 em68hc11elfb.c:141 em68hc12elf.c:141 em68hc12elfb.c:141
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: o tamanho da região de memória \"window\" não é uma potência de 2; seu tamanho %d está truncado para %d\n"
#: em68hc11elf.c:156 em68hc11elfb.c:156 em68hc12elf.c:156 em68hc12elfb.c:156
msgid "%X%P: changing output format whilst linking is not supported\n"
msgstr "%X%P: não há suporte à alteração do formato de saída durante vinculação\n"
#: em68hc11elf.c:561 em68hc11elfb.c:561 em68hc12elf.c:561 em68hc12elfb.c:561
#, 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 Não gera os trampolins distante usados para\n"
" chamar função distante usando jsr ou bsr\n"
#: em68hc11elf.c:564 em68hc11elfb.c:564 em68hc12elf.c:564 em68hc12elfb.c:564
#, 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 NOME Especifica o nome da região de memória que\n"
" descreve o layout da janela do banco de\n"
" memória\n"
#: em68kelf.c:89 em68kelfnbsd.c:89
msgid "%F%P: %pB: all input objects must be ELF for --embedded-relocs\n"
msgstr "%F%P: %pB: todos os objetos de entrada devem ser ELF para --embedded-relocs\n"
#: em68kelf.c:603 em68kelfnbsd.c:603
msgid "%P: unrecognized --got argument '%s'\n"
msgstr "%P: argumento de --got não reconhecido \"%s\"\n"
#: em68kelf.c:616 em68kelfnbsd.c:616
#, c-format
msgid " --got=<type> Specify GOT handling scheme\n"
msgstr " --got=<tipo> Especifica esquema de manipulação de GOT\n"
#: emmo.c:333
msgid "%X%P: internal problems scanning %pB after opening it"
msgstr "%X%P: problemas internos ao procurar em %pB após abri-lo"
#: emsp430X.c:159 emsp430elf.c:159
msgid "%P: error: unhandled data_statement size\n"
msgstr "%P: erro: tamanho de data_statement não manipulado\n"
#: emsp430X.c:300 emsp430elf.c:300
msgid "%P: error: no section named %s or %s in linker script\n"
msgstr "%P: erro: nenhuma seção com nome %s ou %s no script vinculador\n"
#: emsp430X.c:309 emsp430elf.c:309
msgid "%P: error: no section named %s in linker script\n"
msgstr "%P: erro: nenhuma seção com nome %s no script vinculador\n"
#: emsp430X.c:452 emsp430elf.c:452
#, 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 seções .text* para seções {either,lower,upper,none}.text*\n"
#: emsp430X.c:453 emsp430elf.c:453
#, 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 seções .data*, .rodata* e .bss* para\n"
" seções {either,lower,upper,none}.{bss,data,rodata}*\n"
#: emsp430X.c:454 emsp430elf.c:454
#, 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"
" Desabilita transformação de seções .{text,data,bss,rodata}* de\n"
" adição de prefixos {either,lower,upper,none}\n"
#: emsp430X.c:473 emsp430elf.c:473
msgid "%P: --code-region requires an argument: {upper,lower,either,none}\n"
msgstr "%P: --code-region exige um argumento: {upper,lower,either,none}\n"
#: emsp430X.c:479 emsp430elf.c:479
msgid "%P: error: unrecognized argument to --code-region= option: \"%s\"\n"
msgstr "%P: erro: argumento não reconhecido para a opção --code-region=: \"%s\"\n"
#: emsp430X.c:496 emsp430elf.c:496
msgid "%P: --data-region requires an argument: {upper,lower,either,none}\n"
msgstr "%P: --data-region exige um argumento: {upper,lower,either,none}\n"
#: emsp430X.c:502 emsp430elf.c:502
msgid "%P: error: unrecognized argument to --data-region= option: \"%s\"\n"
msgstr "%P: erro: argumento não reconhecido para a opção --data-region=: \"%s\"\n"
#. Incompatible objects.
#: ends32belf.c:126 ends32belf16m.c:126 ends32belf_linux.c:126 ends32elf.c:126
#: ends32elf16m.c:126 ends32elf_linux.c:126
msgid "%F%P: %pB: ABI version of object files mismatched\n"
msgstr "%F%P: %pB: versão incompatível de ABI dos arquivos objeto\n"
#: ends32belf.c:395 ends32belf16m.c:395 ends32belf_linux.c:524 ends32elf.c:395
#: ends32elf16m.c:395 ends32elf_linux.c:524
msgid "%P: --mbaseline is not used anymore\n"
msgstr "%P: --mbaseline não é usado mais\n"
#: ends32belf.c:406 ends32belf16m.c:406 ends32belf_linux.c:535 ends32elf.c:406
#: ends32elf16m.c:406 ends32elf_linux.c:535
msgid "%P: --relax-[no-]reduce-fp-updat is not used anymore\n"
msgstr "%P: --relax-[no-]reduce-fp-updat não é usado mais\n"
#: ends32belf.c:410 ends32belf16m.c:410 ends32belf_linux.c:539 ends32elf.c:410
#: ends32elf16m.c:410 ends32elf_linux.c:539
msgid "%P: missing file for --mexport-symbols\n"
msgstr "%P: faltando arquivo para --mexport-symbols\n"
#: ends32belf.c:423 ends32belf.c:432 ends32belf16m.c:423 ends32belf16m.c:432
#: ends32belf_linux.c:552 ends32belf_linux.c:561 ends32elf.c:423
#: ends32elf.c:432 ends32elf16m.c:423 ends32elf16m.c:432 ends32elf_linux.c:552
#: ends32elf_linux.c:561
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:452 ends32belf16m.c:452 ends32belf_linux.c:581 ends32elf.c:452
#: ends32elf16m.c:452 ends32elf_linux.c:581
#, c-format
msgid " --m[no-]fp-as-gp Disable/enable fp-as-gp relaxation\n"
msgstr " --m[no-]fp-as-gp Desabilita/habilita relaxamento fp-as-gp\n"
#: ends32belf.c:454 ends32belf16m.c:454 ends32belf_linux.c:583 ends32elf.c:454
#: ends32elf16m.c:454 ends32elf_linux.c:583
#, c-format
msgid " --mexport-symbols=FILE Exporting symbols in linker script\n"
msgstr " --mexport-symbols=ARQUIVO Exportando símbolos em script vinculador\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: ends32belf.c:456 ends32belf16m.c:456 ends32belf_linux.c:585 ends32elf.c:456
#: ends32elf16m.c:456 ends32elf_linux.c:585
#, c-format
msgid " --mhyper-relax=level Adjust relax level (low|medium|high). default: medium\n"
msgstr ""
" --mhyper-relax=nível Ajusta nível de relax (low|medium|high).\n"
" Padrão: medium\n"
#: ends32belf.c:458 ends32belf16m.c:458 ends32belf_linux.c:587 ends32elf.c:458
#: ends32elf16m.c:458 ends32elf_linux.c:587
#, c-format
msgid " --m[no-]tlsdesc-trampoline Disable/enable TLS DESC trampoline\n"
msgstr " --m[no-]tlsdesc-trampoline Desabilita/habilita trampolim de TLS DESC\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: epdp11.c:82
#, c-format
msgid " -N, --omagic Do not make text readonly, do not page align data (default)\n"
msgstr ""
" -N, --omagic Não torna texto somente leitura, não alinha paginação\n"
" de dados (padrão)\n"
#: epdp11.c:83
#, c-format
msgid " -n, --nmagic Make text readonly, align data to next page\n"
msgstr " -n, --nmagic Torna texto somente leitura, alinha dados da próxima página\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#: epdp11.c:84
#, c-format
msgid " -z, --imagic Make text readonly, separate instruction and data spaces\n"
msgstr ""
" -z, --imagic Torna texto somente leitura, separa espaços de\n"
" instruções e dados\n"
#: epdp11.c:85
#, c-format
msgid " --no-omagic Equivalent to --nmagic\n"
msgstr " --no-omagic Equivalente a --nmagic\n"
#: etic3xcoff.c:69 etic3xcoff_onchip.c:69 etic4xcoff.c:69 etic54xcoff.c:69
#, c-format
msgid " --format 0|1|2 Specify which COFF version to use\n"
msgstr " --format 0|1|2 Especifica qual versão COFF será usada\n"
#: etic3xcoff.c:91 etic3xcoff_onchip.c:91 etic4xcoff.c:91 etic54xcoff.c:91
msgid "%F%P: invalid COFF format version %s\n"
msgstr "%F%P: formato COFF inválido de versão %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: unknown machine type %u"
#~ msgstr "%P: aviso: tipo de módulo desconhecido %u"
#~ msgid "%P: warning: mixing ADL and Z80 mode binaries, objdump may generate invalid output"
#~ msgstr "%P: aviso: misturando binários de modo ADL e Z80, objdump pode gerar saída inválida"
#~ msgid "%P: warning: incompatible object files linked, result code might not work"
#~ msgstr "%P: aviso: arquivos de objetos incompatíveis vinculados, código resultante pode não funcionar"
#~ msgid " --fix-cortex-a53-843419 Fix erratum 843419\n"
#~ msgstr " --fix-cortex-a53-843419 Corrige errata 843419\n"
#~ msgid "%X%P: .gnu.hash is incompatible with the MIPS ABI\n"
#~ msgstr "%X%P: .gnu.hash é incompatível com a MIPS ABI\n"
#~ msgid " --no-wchar-size-warning Don't warn about objects with incompatible wchar_t sizes\n"
#~ msgstr ""
#~ " --no-wchar-size-warning Não avisa sobre objetos com incompatibilidade\n"
#~ " de tamanhos de wchar_t\n"
#~ msgid "%P: %pB: must use -fpic to compile this file for shared object or PIE\n"
#~ msgstr "%P: %pB: deve-se usar -fpic para compilar esse arquivo para objeto compartilhado ou PIE\n"
#~ msgid "%P: missing file for --mexport-ex9=<file>\n"
#~ msgstr "%P: faltando arquivo para --mexport-ex9=<arquivo>\n"
#~ msgid "%F%P: cannot open ex9 export file %s\n"
#~ msgstr "%F%P: não foi possível abrir o arquivo exportado ex9 %s\n"
#~ msgid "%P: missing file for --mimport-ex9=<file>\n"
#~ msgstr "%P: faltando arquivo para --mimport-ex9=<arquivo>\n"
#~ msgid "%F%P: cannot open ex9 import file %s\n"
#~ msgstr "%F%P: não foi possível abrir o arquivo importado ex9 %s\n"
#~ msgid "%F%P: the range of ex9_limit must between 1 and 511\n"
#~ msgstr "%F%P: o intervalo de ex9_limit deve estar entre 1 e 511\n"
#~ msgid " --m[no-]ex9 Disable/enable link-time EX9 relaxation\n"
#~ msgstr ""
#~ " --m[no-]ex9 Desabilita/habilita relaxamento EX9 em\n"
#~ " tempo de vinculação\n"
#~ msgid " --mexport-ex9=FILE Export EX9 table after linking\n"
#~ msgstr " --mexport-ex9=ARQUIVO Exporta tabela de EX9 após vinculação\n"
#~ msgid " --mimport-ex9=FILE Import Ex9 table for EX9 relaxation\n"
#~ msgstr " --mimport-ex9=ARQUIVO Importa tabela de Ex9 para relaxamento EX9\n"
#~ msgid " --mupdate-ex9 Update existing EX9 table\n"
#~ msgstr " --mupdate-ex9 Atualiza tabela EX9 existente\n"
#~ msgid " --mex9-limit=NUM Maximum number of entries in ex9 table\n"
#~ msgstr " --mex9-limit=NÚM Número máximo de entradas na tabela ex9\n"
#~ msgid " --mex9-loop-aware Avoid generate EX9 instruction inside loop\n"
#~ msgstr " --mex9-loop-aware Evita geração de instrução EX9 entro de loop\n"
# Quebra de linhas aplicada para promover alinhamento em 80 caracteres -- Rafael
#~ msgid " --m[no-]ifc Disable/enable link-time IFC optimization\n"
#~ msgstr ""
#~ " --m[no-]ifc Desabilita/habilita otimização IFC em\n"
#~ " tempo de vinculação\n"
#~ msgid " --mifc-loop-aware Avoid generate IFC instruction inside loop\n"
#~ msgstr " --mifc-loop-aware Evita geração de instrução IFC entro de loop\n"
#~ msgid " --support-old-code Support interworking with old code\n"
#~ msgstr " --support-old-code Suporte a interfuncionamento com código antigo\n"
#~ msgid "Errors encountered processing file %s"
#~ msgstr "Encontrados erros de processamento do arquivo %s"
#~ msgid "%B: file not recognized: %E\n"
#~ msgstr "%B: arquivo não reconhecido: %E\n"
#~ msgid "%B: matching formats:"
#~ msgstr "%B: formatos correspondentes:"
#~ msgid "%P%F: Failed to create hash table\n"
#~ msgstr "%P%F: Falha ao criar tabela hash\n"
#~ msgid "%P%F: unable to open for source of copy `%s'\n"
#~ msgstr "%P%F: não foi possível abrir para ordem da cópia \"%s\"\n"
#~ msgid "%P%F: unable to open for destination of copy `%s'\n"
#~ msgstr "%P%F: não foi possível abrir para destino da cópia \"%s\"\n"
#~ msgid "%B: warning: larger common is here\n"
#~ msgstr "%B: aviso: comum maior está aqui\n"
#~ msgid "%B: warning: smaller common is here\n"
#~ msgstr "%B: aviso: comum menor está aqui\n"
#~ msgid "%B: warning: previous common is here\n"
#~ msgstr "%B: aviso: comum anterior está aqui\n"
#~ msgid "%P%F: -r and -shared may not be used together\n"
#~ msgstr "%P%F: -r e -shared não podem ser usados juntos\n"
#~ msgid "%P%F: -r and -pie may not be used together\n"
#~ msgstr "%P%F: -r e -pie não podem ser usados juntos\n"
#~ msgid "%s: data size %ld\n"
#~ msgstr "%s: tamanho de dados %ld\n"
#~ msgid " --insert-timestamp Use a real timestamp rather than zero.\n"
#~ msgstr " --insert-timestamp Usa uma marca de tempo em vez de zero.\n"
#~ msgid " --warn-duplicate-exports Warn about duplicate exports.\n"
#~ msgstr " --warn-duplicate-exports Avisa sobre exportações duplicadas.\n"
#~ msgid "%P%F: output format %s cannot represent section called %s\n"
#~ msgstr "%P%F: o formato de saída %s não pode representar a seção chamada %s\n"
#~ msgid "%X%P: section %s loaded at [%V,%V] overlaps section %s loaded at [%V,%V]\n"
#~ msgstr "%X%P: a seção %s carregada em [%V,%V] sobrepõe a seção %s carregada em [%V,%V]\n"
#~ msgid "%P%F: invalid syntax in flags\n"
#~ msgstr "%P%F: sintaxe inválida nas flags\n"
#~ msgid "%P: internal error: aborting at %s line %d in %s\n"
#~ msgstr "%P: erro interno: abortando em %s linha %d em %s\n"
#~ msgid "%P: internal error: aborting at %s line %d\n"
#~ msgstr "%P: erro interno: abortando em %s linha %d\n"
#~ msgid "Copyright 2014 Free Software Foundation, Inc.\n"
#~ msgstr "Copyright 2014 Free Software Foundation, Inc.\n"
#~ msgid "%P%F: bad -rpath option\n"
#~ msgstr "%P%F: opção -rpath inválida\n"
#~ msgid "%XUnsupported PEI architecture: %s\n"
#~ msgstr "%XSem suporte à arquitetura PEI: %s\n"
#~ msgid "%XCannot export %s: invalid export name\n"
#~ msgstr "%XNão foi possível exportar %s: nome inválido de exportação\n"
#~ msgid "%XError, duplicate EXPORT with ordinals: %s (%d vs %d)\n"
#~ msgstr "%XErro, EXPORT duplicado com ordinais: %s (%d vs %d)\n"
#~ msgid "Warning, duplicate EXPORT: %s\n"
#~ msgstr "Aviso, EXPORT duplicado: %s\n"
#~ msgid "%XCannot export %s: symbol not defined\n"
#~ msgstr "%XNão foi possível exportar %s: símbolo não definido\n"
#~ msgid "%XCannot export %s: symbol wrong type (%d vs %d)\n"
#~ msgstr "%XNão foi possível exportar %s: tipo incorreto de símbolo (%d vs %d)\n"
#~ msgid "%XCannot export %s: symbol not found\n"
#~ msgstr "%XNão foi possível exportar %s: símbolo não localizado\n"
#~ msgid "%XError, ordinal used twice: %d (%s vs %s)\n"
#~ msgstr "%XErro, ordinal usado duas vezes: %d (%s vs %s)\n"
#~ msgid "%XError: %d-bit reloc in dll\n"
#~ msgstr "%XErro: realocação de %d bit na dll\n"
#~ msgid "%s: Can't open output def file %s\n"
#~ msgstr "%s: Não foi possível abrir arquivo def de saída %s\n"
#~ msgid "%C: variable '%T' can't be auto-imported. Please read the documentation for ld's --enable-auto-import for details.\n"
#~ msgstr "%C: a variável \"%T\" não pode ser importada automaticamente. Por favor, leia a documentação para --enable-auto-import do \"ld\" para detalhes.\n"
#~ msgid "%XCan't open .lib file: %s\n"
#~ msgstr "%XNão foi possível abrir o arquivo .lib: %s\n"
#~ msgid "%Xbfd_openr %s: %E\n"
#~ msgstr "%Xbfd_openr %s: %E\n"
#~ msgid "%X%s(%s): can't find member in non-archive file"
#~ msgstr "%X%s(%s): não foi possível localizar membro em arquivo não-pacote"
#~ msgid "%X%s(%s): can't find member in archive"
#~ msgstr "%X%s(%s): não foi possível localizar membro no pacote"
#~ msgid "%XError: can't use long section names on this arch\n"
#~ msgstr "%XErro: não foi possível usar nomes longos de seção nesta arquitetura\n"
|