1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127
|
# Messages français pour ld.
# Copyright © 2022 Free Software Foundation, Inc.
# This file is distributed under the same license as the binutils package.
# Michel Robitaille <robitail@IRO.UMontreal.CA>, 1996-2011
# Grégoire Scano <gregoire.scano@malloc.fr>, 2011-2012, 2015, 2018-2025
#
msgid ""
msgstr ""
"Project-Id-Version: ld 2.43.90\n"
"Report-Msgid-Bugs-To: https://sourceware.org/bugzilla/\n"
"POT-Creation-Date: 2025-01-19 12:28+0000\n"
"PO-Revision-Date: 2025-01-24 09:18+0800\n"
"Last-Translator: Grégoire Scano <gregoire.scano@malloc.fr>\n"
"Language-Team: French <traduc@traduc.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Bugs: Report translation errors to the Language-Team address.\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: ldcref.c:170
msgid "%X%P: bfd_hash_table_init of cref table failed: %E\n"
msgstr "%X%P : échec de bfd_hash_table_init sur la table cref : %E\n"
#: ldcref.c:176
msgid "%X%P: cref_hash_lookup failed: %E\n"
msgstr "%X%P : cref_hash_lookup en échec : %E\n"
#: ldcref.c:186
msgid "%X%P: cref alloc failed: %E\n"
msgstr "%X%P : cref alloc en échec : %E\n"
#: ldcref.c:371
#, c-format
msgid ""
"\n"
"Cross Reference Table\n"
"\n"
msgstr ""
"\n"
"Table de référence croisé\n"
"\n"
#: ldcref.c:372
msgid "Symbol"
msgstr "Symbole"
#: ldcref.c:380
#, c-format
msgid "File\n"
msgstr "Fichier\n"
#: ldcref.c:384
#, c-format
msgid "No symbols\n"
msgstr "Aucun symbol\n"
#: ldcref.c:413 ldcref.c:565
msgid "%P: symbol `%pT' missing from main hash table\n"
msgstr "%P : symbole « %pT » manquant dans la table de hachage principale\n"
#: ldcref.c:517 ldcref.c:628 ldmain.c:1357 ldmisc.c:327 pe-dll.c:780
#: pe-dll.c:1350 pe-dll.c:1471 pe-dll.c:1573 eaarch64pe.c:1580 earm64pe.c:1580
#: earm_wince_pe.c:1583 earm_wince_pe.c:1770 earmpe.c:1583 earmpe.c:1770
#: ei386pe.c:1583 ei386pe.c:1770 ei386pe_posix.c:1583 ei386pe_posix.c:1770
#: ei386pep.c:1580 emcorepe.c:1583 emcorepe.c:1770 eshpe.c:1583 eshpe.c:1770
msgid "%F%P: %pB: could not read symbols: %E\n"
msgstr "%B%F : %pB : impossible de lire les symboles : %E\n"
#: ldcref.c:690 ldcref.c:697 ldmain.c:1419 ldmain.c:1426
msgid "%F%P: %pB: could not read relocs: %E\n"
msgstr "%F%P : %pB : impossible de lire les relocalisations : %E\n"
#. We found a reloc for the symbol. The symbol is defined
#. in OUTSECNAME. This reloc is from a section which is
#. mapped into a section from which references to OUTSECNAME
#. are prohibited. We must report an error.
#: ldcref.c:724
msgid "%X%P: %H: prohibited cross reference from %s to `%pT' in %s\n"
msgstr "%X%P : %H : référence croisée de %s vers « %pT » prohibée dans %s\n"
#: ldctor.c:85
msgid "%X%P: different relocs used in set %s\n"
msgstr "%X%P : différentes relocalisations utilisées dans l'ensemble %s\n"
#: ldctor.c:103
msgid "%X%P: different object file formats composing set %s\n"
msgstr "%X%P : Différents format de fichiers objet composant l'ensemble %s\n"
#: ldctor.c:279 ldctor.c:300
msgid "%X%P: %s does not support reloc %s for set %s\n"
msgstr "%X%P : %s ne prend pas en charge la relocalisation %s pour l'ensemble %s\n"
#: ldctor.c:295
msgid "%X%P: special section %s does not support reloc %s for set %s\n"
msgstr "%X%P : la section spéciale %s ne prend pas en charge la relocalisation %s pour l'ensemble %s\n"
#: ldctor.c:321
msgid "%X%P: unsupported size %d for set %s\n"
msgstr "%X%P : taille %d non prise en charge pour l'ensemble %s\n"
#: ldctor.c:344
msgid ""
"\n"
"Set Symbol\n"
"\n"
msgstr ""
"\n"
"Ensemble Symbole\n"
"\n"
#: ldelf.c:98
msgid "%F%P: common page size (0x%v) > maximum page size (0x%v)\n"
msgstr "%F%P : taille usuelle de page (0x%v) > taille maximale de page (0x%v)\n"
#: ldelf.c:124
msgid "%F%P: %pB: --just-symbols may not be used on DSO\n"
msgstr "%F%P : %pB : --just-symbols ne peut être utilisé sur un DSO\n"
#: ldelf.c:226
msgid "%P: %pB: bfd_stat failed: %E\n"
msgstr "%P : %pB : bfd_stat en échec : %E\n"
#: ldelf.c:267
msgid "%P: warning: %s, needed by %pB, may conflict with %s\n"
msgstr "%P : warning : %s, requis par %pB, peut être en conflit avec %s\n"
#: ldelf.c:287 ldfile.c:356
#, c-format
msgid "attempt to open %s failed\n"
msgstr "échec de la tentative d'ouverture de %s\n"
#: ldelf.c:324
msgid "%F%P: %pB: bfd_elf_get_bfd_needed_list failed: %E\n"
msgstr "%F%P : %pB : bfd_elf_get_bfd_needed_list en échec : %E\n"
#: ldelf.c:372
msgid "%F%P: %pB: bfd_stat failed: %E\n"
msgstr "%F%P : %pB : bfd_stat en échec: %E\n"
#: ldelf.c:378
#, c-format
msgid "found %s at %s\n"
msgstr "%s trouvé à %s\n"
#: ldelf.c:411 ldlang.c:3177 ldlang.c:3191 ldlang.c:10994
msgid "%F%P: %pB: error adding symbols: %E\n"
msgstr "%F%P : %pB : erreur lors de l'ajout de symboles : %E\n"
#. We only issue an "unrecognised" message in verbose mode
#. as the $<foo> token might be a legitimate component of
#. a path name in the target's file system.
#: ldelf.c:601
#, c-format
msgid "unrecognised or unsupported token '%s' in search path\n"
msgstr "élément lexical « %s » non reconnu ou non pris en charge dans le chemin de recherche\n"
#: ldelf.c:1084
#, c-format
msgid "%s needed by %pB\n"
msgstr "%s requis par %pB\n"
#: ldelf.c:1193
msgid "%P: warning: %s, needed by %pB, not found (try using -rpath or -rpath-link)\n"
msgstr "%P : avertissement : %s, requis par %pB, non trouvé (essayez avec -rpath ou -rpath-link)\n"
#: ldelf.c:1209
msgid "%F%P: failed to add DT_NEEDED dynamic tag\n"
msgstr "%F%P : échec de l'ajout de l'étiquette dynamique DT_NEEDED\n"
#: ldelf.c:1261
msgid "%F%P: %s: can't open for writing: %E\n"
msgstr "%F%P : %s : impossible d'ouvrir en écriture : %E\n"
#: ldelf.c:1317
msgid "%F%P: cannot use executable file '%pB' as input to a link\n"
msgstr "%F%P : impossible d'utiliser le fichier exécutable « %pB » comme l'entrée d'un lien\n"
#: ldelf.c:1371
msgid "%F%P: compact frame descriptions incompatible with DWARF2 .eh_frame from %pB\n"
msgstr "%F%P : descriptions des cadres compacts incompatible avec DWARF2 .eh_frame depuis %pB\n"
#: ldelf.c:1407
msgid "%P: warning: cannot create .eh_frame_hdr section, --eh-frame-hdr ignored\n"
msgstr "%P : avertissement : impossible de créer la section .eh_frame_hdr, --eh-frame-hdr ignoré\n"
#: ldelf.c:1413
msgid "%F%P: failed to parse EH frame entries\n"
msgstr "%F%P : échec de l'analyse des entrées du cadre EH\n"
#: ldelf.c:1455
msgid "%P: warning: .note.gnu.build-id section discarded, --build-id ignored\n"
msgstr "%P : avertissement : section .note.gnu.build-id rejetée, --build-id ignoré\n"
#: ldelf.c:1505 eaarch64pe.c:1354 earm64pe.c:1354 earm_wince_pe.c:1339
#: earmpe.c:1339 ei386pe.c:1339 ei386pe_posix.c:1339 ei386pep.c:1354
#: emcorepe.c:1339 eshpe.c:1339
msgid "%P: warning: unrecognized --build-id style ignored\n"
msgstr "%P : avertissement : style --build-id non reconnu, ignoré\n"
#: ldelf.c:1524
msgid "%P: warning: cannot create .note.gnu.build-id section, --build-id ignored\n"
msgstr "%P : avertissement : impossible de créer la section .note.gnu.build-id, --build-id ignoré\n"
#: ldelf.c:1545
msgid "%P: warning: .note.package section discarded, --package-metadata ignored\n"
msgstr "%P : avertissement : section .note.package rejetée, --package-metadata ignoré\n"
#: ldelf.c:1601
msgid "%P: warning: --package-metadata is empty, ignoring\n"
msgstr "%P : avertissement : --package-metadata est vide, ignoré\n"
#: ldelf.c:1611
msgid "%P: warning: --package-metadata=%s does not contain valid JSON, ignoring: %s\n"
msgstr "%P : avertissement : --package-metadata=%s ne contient pas de JSON valable, ignoré : %s\n"
#: ldelf.c:1640
msgid "%P: warning: cannot create .note.package section, --package-metadata ignored\n"
msgstr "%P : avertissement : impossible de créer la section .note.package, --package-metadata ignoré\n"
#: ldelf.c:1672 eaix5ppc.c:1546 eaix5rs6.c:1546 eaixppc.c:1546 eaixrs6.c:1546
#: eppcmacos.c:1546
msgid "%F%P: failed to record assignment to %s: %E\n"
msgstr "%F%P : échec de l'enregistrement de l'affectation vers %s : %E\n"
#: ldelf.c:1850 ldelf.c:1915 eaix5ppc.c:816 eaix5rs6.c:816 eaixppc.c:816
#: eaixrs6.c:816 eelf64_ia64_vms.c:209 eppcmacos.c:816
msgid "%F%P: failed to set dynamic section sizes: %E\n"
msgstr "%F%P : impossible de fixer les tailles des sections dynamiques : %E\n"
#: ldelf.c:1887
msgid "%F%P: %pB: can't read contents of section .gnu.warning: %E\n"
msgstr "%F%P : %pB : impossible de lire les contenus de la section .gnu.warning : %E\n"
#: ldelfgen.c:285
msgid "%F%P: %pA has both ordered and unordered sections\n"
msgstr "%F%P : %pA contient des sections à la fois ordonnées et désordonnées\n"
#: ldelfgen.c:310 eelf32loongarch.c:106 eelf64loongarch.c:106
msgid "%F%P: map sections to segments failed: %E\n"
msgstr "%F%P : échec de l'association de sections à des segments : %E\n"
#: ldelfgen.c:330
msgid "%F%P: looping in map_segments\n"
msgstr "%F%P : boucle dans map_segments\n"
#: ldelfgen.c:342
msgid "%F%P: failed to strip zero-sized dynamic sections\n"
msgstr "%F%P : échec de la suppression des sections dynamiques de taille nulle\n"
#: ldelfgen.c:420
msgid "%F%P: warning: CTF strtab association failed; strings will not be shared: %s\n"
msgstr "%F%P : avertissement : l'association CTF strtab a échoué ; les chaînes de caractères ne seront pas partagées : %s\n"
#: ldelfgen.c:447
msgid "%F%P: warning: CTF symbol addition failed; CTF will not be tied to symbols: %s\n"
msgstr "%F%P : avertissement : l'addition de symbole CTF a échouée ; CTF ne sera pas lié aux symboles : %s\n"
#: ldelfgen.c:457
msgid "%F%P: warning: CTF symbol shuffling failed; CTF will not be tied to symbols: %s\n"
msgstr "%F%P : avertissement : le remaniement de symboles CTF a échoué ; CTF ne sera pas lié aux symboles : %s\n"
#: ldemul.c:323
#, c-format
msgid "%pS SYSLIB ignored\n"
msgstr "%pS SYSLIB ignoré\n"
#: ldemul.c:329
#, c-format
msgid "%pS HLL ignored\n"
msgstr "%pS HLL ignoré\n"
#: ldemul.c:349
msgid "%P: unrecognised emulation mode: %s\n"
msgstr "%P : mode d'émulation non reconnu : %s\n"
#: ldemul.c:350
msgid "Supported emulations: "
msgstr "Émulations prises en charge : "
#: ldemul.c:392
#, c-format
msgid " no emulation specific options.\n"
msgstr " aucune option spécifique d'émulation.\n"
#: ldexp.c:285
msgid "%F%P: bfd_hash_allocate failed creating symbol %s\n"
msgstr "%F%P : échec de bfd_hash_allocate lors de la création du symbole %s\n"
#: ldexp.c:316
msgid "%F%P: bfd_hash_lookup failed creating symbol %s\n"
msgstr "%F%P : échec de bfd_hash_lookup lors de la création du symbole %s\n"
#: ldexp.c:562
msgid "%P: warning: address of `%s' isn't multiple of maximum page size\n"
msgstr "%P : avertissement : l'adresse de «%s» n'est pas un multiple de la taille maximale des pages\n"
#: ldexp.c:641
msgid "%F%P:%pS %% by zero\n"
msgstr "%F%P : %pS %% par zéro\n"
#: ldexp.c:650
msgid "%F%P:%pS / by zero\n"
msgstr "%F%P : %pS : / par zéro\n"
#: ldexp.c:764 ldlang.c:4035 ldmain.c:1324 eaarch64pe.c:1168 eaarch64pe.c:1784
#: earm64pe.c:1168 earm64pe.c:1784 earm_wince_pe.c:1154 earm_wince_pe.c:1881
#: earmpe.c:1154 earmpe.c:1881 ei386pe.c:1154 ei386pe.c:1881
#: ei386pe_posix.c:1154 ei386pe_posix.c:1881 ei386pep.c:1168 ei386pep.c:1784
#: emcorepe.c:1154 emcorepe.c:1881 eshpe.c:1154 eshpe.c:1881
msgid "%F%P: bfd_link_hash_lookup failed: %E\n"
msgstr "%F%P : bfd_link_hash_lookup en échec : %E\n"
#: ldexp.c:777
msgid "%X%P:%pS: unresolvable symbol `%s' referenced in expression\n"
msgstr "%X%P : %pS : symbole non résolu « %s » référencé dans l'expression\n"
#: ldexp.c:792
msgid "%F%P:%pS: undefined symbol `%s' referenced in expression\n"
msgstr "%F%P : %pS : symbole non résolu « %s » référencé dans l'expression\n"
#: ldexp.c:830 ldexp.c:848 ldexp.c:876
msgid "%F%P:%pS: undefined section `%s' referenced in expression\n"
msgstr "%F%P : %pS : section non définie « %s » référencée dans l'expression\n"
#: ldexp.c:915 ldexp.c:929
msgid "%F%P:%pS: undefined MEMORY region `%s' referenced in expression\n"
msgstr "%F%P : %pS : région MÉMOIRE indéfinie « %s » référencé dans l'expression\n"
#: ldexp.c:941
msgid "%F%P:%pS: unknown constant `%s' referenced in expression\n"
msgstr "%F%P : %pS : constante inconnue « %s » référencée dans l'expression\n"
#: ldexp.c:1089
msgid "%F%P:%pS can not PROVIDE assignment to location counter\n"
msgstr "%F%P : %pS ne peut FOURNIR une assignation au compteur de localisation\n"
#: ldexp.c:1122
msgid "%F%P:%pS invalid assignment to location counter\n"
msgstr "%F%P : %pS affectation invalide au compteur de localisation\n"
#: ldexp.c:1126
msgid "%F%P:%pS assignment to location counter invalid outside of SECTIONS\n"
msgstr "%F%P : %pS affectation invalide au compteur de localisation en dehors des SECTIONS\n"
#: ldexp.c:1145
msgid "%F%P:%pS cannot move location counter backwards (from %V to %V)\n"
msgstr "%F%P : %pS ne peut déplacer le compteur de localisation par en arrière (de %V vers %V)\n"
#: ldexp.c:1205
msgid "%F%P:%s: hash creation failed\n"
msgstr "%F%P : %s : la création du hachage a échoué\n"
#: ldexp.c:1581 ldexp.c:1624 ldexp.c:1684
msgid "%F%P:%pS: nonconstant expression for %s\n"
msgstr "%F%P : %pS : expression non constante pour %s\n"
#: ldexp.c:1711 ldlang.c:1355 ldlang.c:3510 ldlang.c:8236
msgid "%F%P: can not create hash table: %E\n"
msgstr "%F%P : ne peut créer une table de hachage : %E\n"
#: ldfile.c:239
#, c-format
msgid "remap input file '%s' to '%s' based upon pattern '%s'\n"
msgstr "réassocie le fichier d'entrée « %s » vers « %s » en fonction de la règle « %s »\n"
#: ldfile.c:242
#, c-format
msgid "remove input file '%s' based upon pattern '%s'\n"
msgstr "supprime le fichier d'entrée « %s » en fonction de la règle « %s »\n"
#: ldfile.c:248
#, c-format
msgid "remap input file '%s' to '%s'\n"
msgstr "remappage du fichier d'entrée « %s » vers « %s »\n"
#: ldfile.c:251
#, c-format
msgid "remove input file '%s'\n"
msgstr "supprime le fichier d'entrée « %s »\n"
#: ldfile.c:269
msgid ""
"\n"
"Input File Remapping\n"
"\n"
msgstr ""
"\n"
"Remappage du fichier d'entrée\n"
"\n"
#: ldfile.c:274
#, c-format
msgid " Pattern: %s\tMaps To: %s\n"
msgstr " Motif : %s\tCorrespond à : %s\n"
#: ldfile.c:275
msgid "<discard>"
msgstr "<ignorer>"
#: ldfile.c:358
#, c-format
msgid "attempt to open %s succeeded\n"
msgstr "succès de la tentative d'ouverture de %s\n"
#: ldfile.c:364
msgid "%F%P: invalid BFD target `%s'\n"
msgstr "%F%P : cible BFD invalide « %s »\n"
#: ldfile.c:494 ldfile.c:524
msgid "%P: skipping incompatible %s when searching for %s\n"
msgstr "%P : %s ignoré car incompatible lors de la recherche de %s\n"
#: ldfile.c:507
msgid "%F%P: attempted static link of dynamic object `%s'\n"
msgstr "%F%P : tentative de liaison statique de l'objet dynamique `%s'\n"
#: ldfile.c:636
msgid "%P: cannot find %s (%s): %E\n"
msgstr "%P : ne peut pas trouver %s (%s) : %E\n"
#. We ignore the return status of the script
#. and always print the error message.
#: ldfile.c:639 ldfile.c:723 ldfile.c:727
msgid "%P: cannot find %s: %E\n"
msgstr "%P : ne peut pas trouver %s : %E\n"
#: ldfile.c:691
msgid "%P: cannot find %s inside %s\n"
msgstr "%P : ne peut trouver %s à l'intérieur de %s\n"
#: ldfile.c:706 ldmain.c:1504
msgid "%P: About to run error handling script '%s' with arguments: '%s' '%s'\n"
msgstr "%P : Sur le point d'exécuter le script de gestion d'erreur « %s » avec les arguments : « %s » « %s »\n"
#: ldfile.c:710 ldmain.c:1508
msgid "error handling script"
msgstr "erreur lors du traitement du script"
#: ldfile.c:716 ldmain.c:1514
msgid "%P: Failed to run error handling script '%s', reason: "
msgstr "%P : Échec du lancement du script de gestion d'erreur « %s », cause : "
#: ldfile.c:732
msgid "%P: have you installed the static version of the %s library ?\n"
msgstr "%P : avez-vous installé la version statique de la bibliothèque %s ?\n"
#: ldfile.c:743
msgid "%P: note to link with %s use -l:%s or rename it to lib%s\n"
msgstr "%P : notez que pour éditer les liens avec %s il faut utiliser -l:%s ou le renommer en lib%s\n"
#: ldfile.c:775
#, c-format
msgid "cannot find script file %s\n"
msgstr "impossible de repérer le fichier de scripts %s\n"
#: ldfile.c:777
#, c-format
msgid "opened script file %s\n"
msgstr "fichier de scripts ouvert %s\n"
#: ldfile.c:913
msgid "%F%P: error: linker script file '%s' appears multiple times\n"
msgstr "%F%P : erreur : le fichier de scripts de l'éditeur de liens « %s » apparaît plusieurs fois\n"
#: ldfile.c:932
msgid "%F%P: cannot open linker script file %s: %E\n"
msgstr "%F%P : ne peut ouvrir le fichier de scripts de l'éditeur de liens %s : %E\n"
#: ldfile.c:1026
msgid "%F%P: cannot represent machine `%s'\n"
msgstr "%F%P : ne peut représenter la machine « %s »\n"
#: ldlang.c:1446
msgid "%P:%pS: warning: redeclaration of memory region `%s'\n"
msgstr "%P : %pS : avertissement : redéclaration de la région mémoire « %s »\n"
#: ldlang.c:1452
msgid "%P:%pS: warning: memory region `%s' not declared\n"
msgstr "%P : %pS : avertissement : région mémoire %s non déclarée\n"
#: ldlang.c:1488
msgid "%F%P:%pS: error: alias for default memory region\n"
msgstr "%F%P : %pS : erreur : synonyme pour la région mémoire par défault\n"
#: ldlang.c:1499
msgid "%F%P:%pS: error: redefinition of memory region alias `%s'\n"
msgstr "%F%P : %pS : erreur : redéfinition du synonyme de la région mémoire « %s »\n"
#: ldlang.c:1506
msgid "%F%P:%pS: error: memory region `%s' for alias `%s' does not exist\n"
msgstr "%F%P : %pS : erreur : la région mémoire « %s » de synonyme « %s » n'existe pas\n"
#: ldlang.c:1567 ldlang.c:1610
msgid "%F%P: failed creating section `%s': %E\n"
msgstr "%F%P : ne peut créer la section « %s » : %E\n"
#: ldlang.c:2328
msgid ""
"\n"
"As-needed library included to satisfy reference by file (symbol)\n"
"\n"
msgstr ""
"\n"
"Bibliothèque requise inclue pour satisfaire la référence par fichier (symbole)\n"
"\n"
#: ldlang.c:2393
msgid ""
"\n"
"Discarded input sections\n"
"\n"
msgstr ""
"\n"
"Sections d'entrée éliminées\n"
"\n"
#: ldlang.c:2401
msgid ""
"\n"
"There are no discarded input sections\n"
msgstr ""
"\n"
"Aucune sections d'entrée éliminées\n"
#: ldlang.c:2403
msgid ""
"\n"
"Memory Configuration\n"
"\n"
msgstr ""
"\n"
"Configuration mémoire\n"
"\n"
#: ldlang.c:2405
msgid "Name"
msgstr "Nom"
#: ldlang.c:2405
msgid "Origin"
msgstr "Origine"
#: ldlang.c:2405
msgid "Length"
msgstr "Longueur"
#: ldlang.c:2405
msgid "Attributes"
msgstr "Attributs"
#: ldlang.c:2429
msgid ""
"\n"
"Linker script and memory map\n"
"\n"
msgstr ""
"\n"
"Script de l'éditeurs de liens and table de projection mémoire\n"
"\n"
#: ldlang.c:2482
msgid "%F%P: illegal use of `%s' section\n"
msgstr "%F%P : utilisation illégale de la section « %s »\n"
#: ldlang.c:2491
msgid "%F%P: output format %s cannot represent section called %s: %E\n"
msgstr "%F%P : le format de sortie %s ne peut pas représenter la section %s\n"
#: ldlang.c:2672
msgid "%P:%pS: warning: --enable-non-contiguous-regions makes section `%pA' from `%pB' match /DISCARD/ clause.\n"
msgstr "%P : %pS : avertissement : --enable-non-contiguous-regions fait correspondre la section « %pA » de « %pB » à la clause /DISCARD/.\n"
#: ldlang.c:2696
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 : avertissement : --enable-non-contiguous-regions peut changer le comportement de la section « %pA » de « %pB » (assigné à %pA, mais avec une correspondance supplémentaire : %pA)\n"
#: ldlang.c:3074
msgid "%P: %pB: file not recognized: %E; matching formats:"
msgstr "%P : %pB : fichier non reconnu : %E ; formats correspondants :"
#: ldlang.c:3083
msgid "%F%P: %pB: file not recognized: %E\n"
msgstr "%F%P : %pB : fichier non reconnu : %E\n"
#: ldlang.c:3156
msgid "%F%P: %pB: member %pB in archive is not an object\n"
msgstr "%F%P : %pB : membre %B dans l'archive n'est pas un objet\n"
#: ldlang.c:3432
msgid "%F%P: input file '%s' is the same as output file\n"
msgstr "%F%P : le fichier d'entrée « %s » est le même que le fichier de sortie\n"
#: ldlang.c:3480
msgid "%P: warning: could not find any targets that match endianness requirement\n"
msgstr "%P : avertissement : le repérage des cibles qui concordent avec le boutisme requis a échoué\n"
#: ldlang.c:3494
msgid "%F%P: target %s not found\n"
msgstr "%F%P : cible %s non trouvée\n"
#: ldlang.c:3496
msgid "%F%P: cannot open output file %s: %E\n"
msgstr "%F%P : ne peut ouvrir le fichier de sortie %s : %E\n"
#: ldlang.c:3502
msgid "%F%P: %s: can not make object file: %E\n"
msgstr "%F%P : %s : ne peut créer le fichier objet : %E\n"
#: ldlang.c:3506
msgid "%F%P: %s: can not set architecture: %E\n"
msgstr "%F%P : %s : ne peut initialiser l'architecture : %E\n"
#: ldlang.c:3693
msgid "%P: warning: %s contains output sections; did you forget -T?\n"
msgstr "%P : avertissement : %s contient des sections de sortie; avez-vous oublié -T?\n"
#: ldlang.c:3740
#, c-format
msgid "%s: %s\n"
msgstr "%s : %s\n"
#: ldlang.c:3740
msgid "CTF warning"
msgstr "avertissement CTF"
#: ldlang.c:3740
msgid "CTF error"
msgstr "erreur CTF"
#: ldlang.c:3746
#, c-format
msgid "CTF error: cannot get CTF errors: `%s'\n"
msgstr "erreur CTF : impossible d'obtenir les erreurs CTF : « %s »\n"
#: ldlang.c:3780
msgid "%P: warning: CTF section in %pB not loaded; its types will be discarded: %s\n"
msgstr "%P : avertissement : la section CTF dans « %pB » n'est pas chargée : ses types seront écartés : %s\n"
#: ldlang.c:3809
msgid "%P: warning: CTF output not created: `%s'\n"
msgstr "%P : avertissement : sortie CTF non créée : « %s »\n"
#: ldlang.c:3852
msgid "%P: warning: CTF section in %pB cannot be linked: `%s'\n"
msgstr "%P : avertissement : les liens de la section CTF dans « %pB » ne peuvent être édités : « %s »\n"
#: ldlang.c:3872
msgid "%P: warning: CTF linking failed; output will have no CTF section: %s\n"
msgstr "%P : avertissement : l'édition de liens CTF a échoué ; la sortie n'aura pas de section CTF : %s\n"
#: ldlang.c:3943
msgid "%P: warning: CTF section emission failed; output will have no CTF section: %s\n"
msgstr "%P : avertissement : la création de la section CTF a échoué ; la sortie n'aura pas de section CTF : %s\n"
#: ldlang.c:3982
msgid "%P: warning: CTF section in %pB not linkable: %P was built without support for CTF\n"
msgstr "%P : avertissement : l'édition de liens pour la section CTF dans « %pB » n'est pas possible : %P a été construit sans prise en charge des CTF.\n"
#: ldlang.c:4120
msgid "%X%P: required symbol `%s' not defined\n"
msgstr "%X%P : symbole requis « %s » non défini\n"
#: ldlang.c:4321 ldlang.c:4330
msgid "%F%P: invalid type for output section `%s'\n"
msgstr "%F%P : type non valable pour la section de sortie %s\n"
#: ldlang.c:4466
msgid "warning: INSERT statement in linker script is incompatible with --enable-non-contiguous-regions.\n"
msgstr "avertissement : la déclaration INSERT dans le script de l'éditeur de liens est incompatible avec --enable-non-contiguous-regions.\n"
#: ldlang.c:4479
msgid "%F%P: %s not found for insert\n"
msgstr "%F%P : %s pas trouvé pour insertion\n"
#: ldlang.c:4751
msgid " load address 0x%V"
msgstr " address de chargement 0x%V"
#: ldlang.c:5013
msgid "%W (size before relaxing)\n"
msgstr "%W (taille avant relaxe)\n"
#: ldlang.c:5142
#, c-format
msgid "Address of section %s set to "
msgstr "Adresse de la section %s initialisé à "
#: ldlang.c:5344
#, c-format
msgid "Fail with %d\n"
msgstr "Échec avec %d\n"
#: ldlang.c:5561
msgid "%F%P: Output section `%pA' not large enough for the linker-created stubs section `%pA'.\n"
msgstr "%F%P : la section de sortie « %s » n'est pas assez large pour la section de secteurs d'amorçages « %s » créée par l'éditeur de liens.\n"
#: ldlang.c:5566
msgid "%F%P: Relaxation not supported with --enable-non-contiguous-regions (section `%pA' would overflow `%pA' after it changed size).\n"
msgstr "%F%P : la relaxation n'est pas prise en charge avec --enable-non-contiguous-regions (la section « %pA » dépasserait « %pA » après son changement de taille)\n"
#: ldlang.c:5675
msgid "%X%P: section %s VMA wraps around address space\n"
msgstr "%X%P : la VMA de la section %s englobe l'espace d'adressage\n"
#: ldlang.c:5681
msgid "%X%P: section %s LMA wraps around address space\n"
msgstr "%X%P : la LMA de la section %s englobe l'espace d'adressage\n"
#: ldlang.c:5733
msgid "%X%P: section %s LMA [%V,%V] overlaps section %s LMA [%V,%V]\n"
msgstr "%X%P : la LMA de la section %s [%V,%V] chevauche la LMA de la section %s [%V,%V]\n"
#: ldlang.c:5777
msgid "%X%P: section %s VMA [%V,%V] overlaps section %s VMA [%V,%V]\n"
msgstr "%X%P: la VMA de la section %s [%V,%V] chevauche la VMA de la section %s [%V,%V]\n"
#: ldlang.c:5800
msgid "%X%P: region `%s' overflowed by %lu byte\n"
msgid_plural "%X%P: region `%s' overflowed by %lu bytes\n"
msgstr[0] "%X%P : la région « %s » est débordée de %lu octet\n"
msgstr[1] "%X%P : la région « %s » est débordée de %lu octets\n"
#: ldlang.c:5825
msgid "%X%P: address 0x%v of %pB section `%s' is not within region `%s'\n"
msgstr "%X%P : l'adresse 0x%v de %pB de la section «%s» n'est pas dans la région «%s»\n"
#: ldlang.c:5836
msgid "%X%P: %pB section `%s' will not fit in region `%s'\n"
msgstr "%X%P : %pB la section «%s» ne va pas s'adapter à la région «%s»\n"
#: ldlang.c:5922
msgid "%F%P:%pS: non constant or forward reference address expression for section %s\n"
msgstr "%F%P : %pS : référence d'adresse avant d'expression ou non constante pour la section %s\n"
#: ldlang.c:5947
msgid "%X%P: internal error on COFF shared library section %s\n"
msgstr "%X%P : erreur interne dans la section de bibliothèque partagée COFF %s\n"
#: ldlang.c:6005
msgid "%F%P: error: no memory region specified for loadable section `%s'\n"
msgstr "%F%P : erreur : aucune région mémoire spécifiée pour la section chargeable « %s »\n"
#: ldlang.c:6009
msgid "%P: warning: no memory region specified for loadable section `%s'\n"
msgstr "%P : avertissement : aucune région mémoire spécifiée pour la section chargeable « %s »\n"
#: ldlang.c:6043
msgid "%P: warning: start of section %s changed by %ld\n"
msgstr "%P : avertissement : modification du début de la section %s de %ld\n"
#: ldlang.c:6136
msgid "%P: warning: dot moved backwards before `%s'\n"
msgstr "%P : avertissement : point (.) déplacé avant « %s »\n"
#: ldlang.c:6312
msgid "%F%P: can't relax section: %E\n"
msgstr "%F%P : ne peut relâcher la section : %E\n"
#: ldlang.c:6721
msgid "%F%P: invalid data statement\n"
msgstr "%F%P : déclaration invalide de données\n"
#: ldlang.c:6754
msgid "%F%P: invalid reloc statement\n"
msgstr "%F%P : déclaration invalide de relocalisation\n"
#: ldlang.c:7172
msgid "%F%P: --gc-sections requires a defined symbol root specified by -e or -u\n"
msgstr "%F%P : --gc-sections requière un symbole racine défini spécifié par -e ou -u\n"
#: ldlang.c:7197
msgid "%F%P: %s: can't set start address\n"
msgstr "%F%P : %s : ne peut initialiser l'adresse de départ\n"
#: ldlang.c:7210 ldlang.c:7229
msgid "%F%P: can't set start address\n"
msgstr "%F%P : impossible d'initialiser l'adresse de départ\n"
#: ldlang.c:7223
msgid "%P: warning: cannot find entry symbol %s; defaulting to %V\n"
msgstr "%P : avertissement : le symbole d'entrée %s est introuvable ; utilise par défaut %V\n"
#: ldlang.c:7234 ldlang.c:7242
msgid "%P: warning: cannot find entry symbol %s; not setting start address\n"
msgstr "%P : avertissement : le symbole d'entrée %s est introuvable ; pas d'initialisation de l'adresse de départ\n"
#: ldlang.c:7298
msgid "%F%P: relocatable linking with relocations from format %s (%pB) to format %s (%pB) is not supported\n"
msgstr "%F%P : l'édition de liens relocalisables avec une relocalisation du format %s (%pB) vers le format %s (%pB) n'est pas prise en charge\n"
#: ldlang.c:7308
msgid "%X%P: %s architecture of input file `%pB' is incompatible with %s output\n"
msgstr "%X%P : architecture %s du fichier d'entrée « %B » est incompatible avec la sortie %s\n"
#: ldlang.c:7332
msgid "%X%P: failed to merge target specific data of file %pB\n"
msgstr "%X%P : échec de fusion des données spécifiques cibles du fichier %pB\n"
#: ldlang.c:7403
msgid "%F%P: could not define common symbol `%pT': %E\n"
msgstr "%F%P : Impossible de définir le symbole commun «%pT» : %E\n"
#: ldlang.c:7415
msgid ""
"\n"
"Allocating common symbols\n"
msgstr ""
"\n"
"Allocation des symboles communs\n"
#: ldlang.c:7416
msgid ""
"Common symbol size file\n"
"\n"
msgstr ""
"Symbole commun taille fichier\n"
"\n"
#: ldlang.c:7473
msgid "%X%P: error: unplaced orphan section `%pA' from `%pB'\n"
msgstr "%X%P : erreur : section orpheline « %pA » non placée depuis « %pB »\n"
#: ldlang.c:7491
msgid "%P: warning: orphan section `%pA' from `%pB' being placed in section `%s'\n"
msgstr "%P : avertissement : la section orpheline « %pA » de « %pB » est placée dans la section « %s »\n"
#: ldlang.c:7581
msgid "%F%P: invalid character %c (%d) in flags\n"
msgstr "%F%P : caractère %c (%d) invalide dans les fanions\n"
#. && in_section_ordering
#: ldlang.c:7675
msgid "%F%P:%pS: error: output section '%s' must already exist\n"
msgstr "%F%P : %pS : erreur : la section de sortie « %s » doit déjà exister\n"
#: ldlang.c:7699
msgid "%F%P:%pS: error: align with input and explicit align specified\n"
msgstr "%F%P : %pS : erreur : alignement avec l'entrée et alignement explicite défini\n"
#: ldlang.c:8170
msgid "%P: warning: --enable-non-contiguous-regions discards section `%pA' from `%pB'\n"
msgstr "%P : %pS : avertissement : --enable-non-contiguous-regions élimine la section « %pA » de « %pB »\n"
#: ldlang.c:8274
msgid "%F%P: %s: plugin reported error after all symbols read\n"
msgstr "%F%P : %s : le greffon a reporté une erreur après avoir lu tous les symboles\n"
#: ldlang.c:8399
msgid ""
"Object-only input files:\n"
" "
msgstr ""
"Fichiers d'entrée ne contenant que des objets :\n"
" "
#: ldlang.c:8511
msgid "%F%P: bfd_merge_sections failed: %E\n"
msgstr "%F%P : échec de bfd_merge_sections : %E\n"
#: ldlang.c:8888
msgid "%F%P: multiple STARTUP files\n"
msgstr "%F%P : fichiers DÉPART multiples\n"
#: ldlang.c:8934
msgid "%X%P:%pS: section has both a load address and a load region\n"
msgstr "%X%P : %pS : section a à la fois une adresse de chargement et une région de chargement\n"
#: ldlang.c:9043
msgid "%X%P:%pS: PHDRS and FILEHDR are not supported when prior PT_LOAD headers lack them\n"
msgstr "%X%P : %pS : PHDRS et FILEHDR ne sont pas pris en charge lorsque des en-têtes prioritaires PT_LOAD ne les ont pas\n"
#: ldlang.c:9116
msgid "%F%P: no sections assigned to phdrs\n"
msgstr "%F%P : aucune section n'est assignée à phdrs\n"
#: ldlang.c:9154
msgid "%F%P: bfd_record_phdr failed: %E\n"
msgstr "%F%P : bfd_record_phdr en échec : %E\n"
#: ldlang.c:9174
msgid "%X%P: section `%s' assigned to non-existent phdr `%s'\n"
msgstr "%X%P : section « %s » affectée à phdr inexistent « %s »\n"
#: ldlang.c:9590
msgid "%X%P: unknown language `%s' in version information\n"
msgstr "%X%P : langage inconnue « %s » dans l'information de la version\n"
#: ldlang.c:9735
msgid "%X%P: anonymous version tag cannot be combined with other version tags\n"
msgstr "%X%P : étiquette de version anonyme ne peut être combinée avec d'autres étiquettes de version\n"
#: ldlang.c:9744
msgid "%X%P: duplicate version tag `%s'\n"
msgstr "%X%P : duplication de l'étiquette de version « %s »\n"
#: ldlang.c:9765 ldlang.c:9774 ldlang.c:9792 ldlang.c:9802
msgid "%X%P: duplicate expression `%s' in version information\n"
msgstr "%X%P : duplication de l'expression « %s » dans l'information de version\n"
#: ldlang.c:9842
msgid "%X%P: unable to find version dependency `%s'\n"
msgstr "%X%P : incapable de repérer les dépendences de version « %s »\n"
#: ldlang.c:9865
msgid "%X%P: unable to read .exports section contents\n"
msgstr "%X%P : incapable de lire le contenu de la section .exports\n"
#: ldlang.c:9911
msgid "%P: invalid origin for memory region %s\n"
msgstr "%P : origine invalide pour la région mémoire %s\n"
#: ldlang.c:9923
msgid "%P: invalid length for memory region %s\n"
msgstr "%P : longueur invalide pour la région mémoire %s\n"
#: ldlang.c:10035
msgid "%X%P: unknown feature `%s'\n"
msgstr "%P%F : caractéristique inconnue «%s»\n"
#: ldlang.c:10401
msgid "failed to create output section"
msgstr "échec de la création de la section de sortie"
#: ldlang.c:10435
msgid "failed to copy private data"
msgstr "échec de la copie de données privées"
#: ldlang.c:10444
msgid "%P%F: setup_section: %s: %s\n"
msgstr "%P%F : setup_section : %s : %s\n"
#: ldlang.c:10507
msgid "relocation count is negative"
msgstr "le nombre de relocalisations est négatif"
#: ldlang.c:10539
msgid "%P%F: copy_section: %s: %s\n"
msgstr "%P%F : copy_section : %s : %s\n"
#: ldlang.c:10694
msgid "error setting up sections"
msgstr "erreur lors de l'assemblage des sections"
#: ldlang.c:10702
msgid "error copying private header data"
msgstr "erreur lors de la copie de données d'en-tête privées"
#: ldlang.c:10715
msgid "can't create object-only section"
msgstr "impossible de créer la section ne contenant que des objets"
#: ldlang.c:10721
msgid "can't set object-only section size"
msgstr "impossible de définir la taille de la section ne contenant que des objets"
#: ldlang.c:10752
msgid "error copying sections"
msgstr "erreur lors de la copie de sections"
#: ldlang.c:10759
msgid "error adding object-only section"
msgstr "erreur lors de l'ajout de la section ne contenant que des objets"
#: ldlang.c:10769
msgid "error copying private BFD data"
msgstr "erreur lors de la copie de donnée BFD privées"
#: ldlang.c:10776
msgid "%P%F: failed to finish output with object-only section\n"
msgstr "%P%F : impossible de terminer la sortie avec la section ne contenant que des objets\n"
#: ldlang.c:10786
msgid "%P%F: failed to rename output with object-only section\n"
msgstr "%P%F : échec du renommage de la sortie avec la section ne contenant que des objets\n"
#: ldlang.c:10802
msgid "%P%F: failed to add object-only section: %s\n"
msgstr "%P%F : échec de l'ajout de la section ne contenant que des objets : %s\n"
#: ldlang.c:10835
msgid "%P%F: Failed to create hash table\n"
msgstr "%F%P : Échec de la création d'une table de hachage\n"
#: ldlang.c:10899
msgid "%P%F:%s: final close failed on object-only output: %E\n"
msgstr "%F%P : %s : échec de la fermeture finale de la sortie ne contenant que des objets : %E\n"
#: ldlang.c:10909
msgid "%P%F:%s: cannot open object-only output: %E\n"
msgstr "%F%P : impossible d'ouvrir le fichier de sortie ne contenant que des objets : %E\n"
#: ldlang.c:10917
msgid "%P%F:%s: cannot stat object-only output: %E\n"
msgstr "%F%P : %s : impossible de récupérer les informations (stat) de la sortie ne contenant que des objets : %E\n"
#: ldlang.c:10932
msgid "%P%F:%s: read failed on object-only output: %E\n"
msgstr "%X%P : %s : %d : impossible de lire la sortie ne contenant que des objets : %E\n"
#: ldlang.c:10959
msgid "%P%F: cannot extract object-only section from %B: %E\n"
msgstr "%X%P : impossible d'extraire la section ne contenant que des objets depuis %B : %E\n"
#: ldmain.c:198
msgid "%F%P: cannot open dependency file %s: %E\n"
msgstr "%F%P : impossible d'ouvrir le fichier de dépendance %s : %E\n"
#: ldmain.c:291
msgid "%F%P: fatal error: libbfd ABI mismatch\n"
msgstr "%F%P : erreur fatale : l'ABI de libbfd ne concorde pas\n"
#: ldmain.c:330
msgid "%X%P: can't set BFD default target to `%s': %E\n"
msgstr "%X%P : impossible d'initialiser la cible par défaut de BFD à « %s » : %E\n"
#: ldmain.c:435
msgid "built in linker script"
msgstr "construit dans le script d'édition de liens"
#: ldmain.c:445
#, c-format
msgid "using external linker script: %s"
msgstr "utilisation du script externe d'édition de liens : %s"
#: ldmain.c:447
msgid "using internal linker script:"
msgstr "utilisation du script interne d'édition de liens :"
#: ldmain.c:497
msgid "%F%P: --no-define-common may not be used without -shared\n"
msgstr "%F%P : --no-define-common ne doit pas être utilisé sans -shared\n"
#: ldmain.c:504
msgid "%F%P: no input files\n"
msgstr "%F%P : aucun fichier d'entrée\n"
#: ldmain.c:508
msgid "%P: mode %s\n"
msgstr "%P : mode %s\n"
#: ldmain.c:526 ends32belf.c:473 ends32belf16m.c:473 ends32belf_linux.c:606
#: ends32elf.c:473 ends32elf16m.c:473 ends32elf_linux.c:606
msgid "%F%P: cannot open map file %s: %E\n"
msgstr "%F%P : impossible d'ouvrir le fichier de la table de projection %s : %E\n"
#: ldmain.c:590
msgid "%P: link errors found, deleting executable `%s'\n"
msgstr "%P : erreurs de lien trouvés, destruction de l'exécutable « %s »\n"
#: ldmain.c:601
msgid "%F%P: %s: final close failed: %E\n"
msgstr "%F%P : %s: fermeture finale en échec : %E\n"
#: ldmain.c:630
msgid "%F%P: unable to open for source of copy `%s'\n"
msgstr "%F%P : incapable d'ouvrir la copie source de « %s »\n"
#: ldmain.c:633
msgid "%F%P: unable to open for destination of copy `%s'\n"
msgstr "%F%P : incpapable d'ouvrir la copie destination de « %s »\n"
#: ldmain.c:640
msgid "%P: error writing file `%s'\n"
msgstr "%P : erreur lors de l'écriture du fichier « %s »\n"
#: ldmain.c:645 pe-dll.c:2009
#, c-format
msgid "%P: error closing file `%s'\n"
msgstr "%P : erreur lors de la fermeture du fichier « %s »\n"
#: ldmain.c:660
#, c-format
msgid "%s: total time in link: %ld.%06ld\n"
msgstr "%s : temps total d'édition de liens : %ld.%06ld\n"
#: ldmain.c:747
msgid "%F%P: missing argument to -m\n"
msgstr "%F%P : argument manquant pour -m\n"
#: ldmain.c:801 ldmain.c:818 ldmain.c:838 ldmain.c:870 pe-dll.c:1431
msgid "%F%P: bfd_hash_table_init failed: %E\n"
msgstr "%F%P : bfd_hash_table_init en échec : %E\n"
#: ldmain.c:805 ldmain.c:822 ldmain.c:842
msgid "%F%P: bfd_hash_lookup failed: %E\n"
msgstr "%F%P : bfd_hash_lookup en échec : %E\n"
#: ldmain.c:856
msgid "%X%P: error: duplicate retain-symbols-file\n"
msgstr "%X%P : erreur : duplication dans retain-symbols-file\n"
#: ldmain.c:900
msgid "%F%P: bfd_hash_lookup for insertion failed: %E\n"
msgstr "%F%P : échec de bfd_hash_lookup lors d'une insertion : %E\n"
#: ldmain.c:905
msgid "%P: `-retain-symbols-file' overrides `-s' and `-S'\n"
msgstr "%P : « -retain-symbols-file » écrase les options « -s » et « -S »\n"
#: ldmain.c:1026
msgid ""
"Archive member included to satisfy reference by file (symbol)\n"
"\n"
msgstr ""
"Membre d'archive inclu pour satisfaire la référence par fichier (symbole)\n"
"\n"
#: ldmain.c:1132
msgid "%P: %C: warning: multiple definition of `%pT'"
msgstr "%P : %C : avertissement : définitions multiples de « %pT »"
#: ldmain.c:1135
msgid "%X%P: %C: multiple definition of `%pT'"
msgstr "%X%P : %C : définitions multiples de « %pT »"
#: ldmain.c:1138
msgid "; %D: first defined here"
msgstr "; %D : défini pour la première fois ici"
#: ldmain.c:1143
msgid "%P: disabling relaxation; it will not work with multiple definitions\n"
msgstr "%P : désactivation de la relâche : il ne pourra pas travailler avec des définitions multiples\n"
#: ldmain.c:1196
msgid "%P: %pB: warning: definition of `%pT' overriding common from %pB\n"
msgstr "%B : %pB : avertissement : la définition de « %pT » écrase le commun de %pB\n"
#: ldmain.c:1200
msgid "%P: %pB: warning: definition of `%pT' overriding common\n"
msgstr "%P : %pB : avertissement : la définition de « %pT » écrase le commun\n"
#: ldmain.c:1209
msgid "%P: %pB: warning: common of `%pT' overridden by definition from %pB\n"
msgstr "%P : %pB : avertissement : le commun de « %pT » est écrasé par sa définition depuis %pB\n"
#: ldmain.c:1213
msgid "%P: %pB: warning: common of `%pT' overridden by definition\n"
msgstr "%P : %pB : avertissement : le commun de « %pT » est écrasé par une définition\n"
#: ldmain.c:1222
msgid "%P: %pB: warning: common of `%pT' overridden by larger common from %pB\n"
msgstr "%P : %pB : avertissement : le commun de « %pT » est écrasé par un commun de plus grande taille depuis %pB\n"
#: ldmain.c:1226
msgid "%P: %pB: warning: common of `%pT' overridden by larger common\n"
msgstr "%P : %pB : avertissement : le commun de « %pT » est écrasé par un commun de plus grande taille\n"
#: ldmain.c:1233
msgid "%P: %pB: warning: common of `%pT' overriding smaller common from %pB\n"
msgstr "%P : %pB : avertissement : le commun de « %pT » écrase un commun de plus petite taille\n"
#: ldmain.c:1237
msgid "%P: %pB: warning: common of `%pT' overriding smaller common\n"
msgstr "%P : %pB : avertissement : le commun de « %pT » écrase un commun de plus petite taille\n"
#: ldmain.c:1244
msgid "%P: %pB and %pB: warning: multiple common of `%pT'\n"
msgstr "%P : %pB et %pB : avertissement : communs multiples de « %pT »\n"
#: ldmain.c:1247
msgid "%P: %pB: warning: multiple common of `%pT'\n"
msgstr "%P : %pB : avertissement : communs multiples de « %pT »\n"
#: ldmain.c:1266 ldmain.c:1302
msgid "%P: warning: global constructor %s used\n"
msgstr "%P : avertissement : constructeur global %s est utilisé\n"
#: ldmain.c:1312
msgid "%F%P: BFD backend error: BFD_RELOC_CTOR unsupported\n"
msgstr "%F%P : erreur du moteur BFD : BFD_RELOC_CTOR non pris en charge\n"
#. We found a reloc for the symbol we are looking for.
#: ldmain.c:1384 ldmain.c:1386 ldmain.c:1388 ldmain.c:1396 ldmain.c:1439
msgid "warning: "
msgstr "avertissement : "
#: ldmain.c:1529
msgid "%X%P: %H: undefined reference to `%pT'\n"
msgstr "%X%P : %H : référence indéfinie vers « %pT »\n"
#: ldmain.c:1532
msgid "%P: %H: warning: undefined reference to `%pT'\n"
msgstr "%P : %H : avertissement : référence indéfinie vers « %pT »\n"
#: ldmain.c:1538
msgid "%X%P: %D: more undefined references to `%pT' follow\n"
msgstr "%X%P : %D : encore plus de références indéfinies suivent vers « %pT »\n"
#: ldmain.c:1541
msgid "%P: %D: warning: more undefined references to `%pT' follow\n"
msgstr "%P : %D : avertissement : encore plus de références indéfinies suivent vers « %pT »\n"
#: ldmain.c:1552
msgid "%X%P: %pB: undefined reference to `%pT'\n"
msgstr "%X%P : %pB : référence indéfinie vers « %pT »\n"
#: ldmain.c:1555
msgid "%P: %pB: warning: undefined reference to `%pT'\n"
msgstr "%P : %pB : avertissement : référence indéfinie vers « %pT »\n"
#: ldmain.c:1561
msgid "%X%P: %pB: more undefined references to `%pT' follow\n"
msgstr "%X%P : %pB : encore plus de références indéfinies suivent vers « %pT »\n"
#: ldmain.c:1564
msgid "%P: %pB: warning: more undefined references to `%pT' follow\n"
msgstr "%P : %pB : avertissement : encore plus de références indéfinies suivent vers « %pT »\n"
#: ldmain.c:1601
msgid " additional relocation overflows omitted from the output\n"
msgstr " débordement de relocalisation additionnelle omise à partir de la sortie\n"
#: ldmain.c:1614
#, c-format
msgid " relocation truncated to fit: %s against undefined symbol `%pT'"
msgstr " relocalisation tronquée pour concorder avec la taille : %s vers le symbole indéfini %pT"
#: ldmain.c:1620
#, c-format
msgid " relocation truncated to fit: %s against symbol `%pT' defined in %pA section in %pB"
msgstr " relocalisation tronquée pour concorder : %s vers le symbole « %pT » défini sans la section %pA dans %pB"
#: ldmain.c:1633
#, c-format
msgid " relocation truncated to fit: %s against `%pT'"
msgstr " relocalisation tronquée pour concorder : %s avec « %pT »"
#: ldmain.c:1649
msgid "%X%H: dangerous relocation: %s\n"
msgstr "%X%H : relocalisation dangereuse : %s\n"
#: ldmain.c:1663
msgid "%X%H: reloc refers to symbol `%pT' which is not being output\n"
msgstr "%X%H : la relocalisation réfère au symbole «%pT» qui n'est pas écrit\n"
#: ldmain.c:1697
msgid "%P: %pB: reference to %s\n"
msgstr "%P : %pB : référence vers %s\n"
#: ldmain.c:1699
msgid "%P: %pB: definition of %s\n"
msgstr "%P : %pB : définition de %s\n"
#: ldmisc.c:366
#, c-format
msgid "%pB: in function `%pT':\n"
msgstr "%pB : dans la fonction « %pT » :\n"
#: ldmisc.c:506
#, c-format
msgid "no symbol"
msgstr "aucun symbole"
#: ldmisc.c:688
msgid "%P: error: unsupported option: %s\n"
msgstr "%P : erreur : option non prise en charge : %s\n"
#: ldmisc.c:690
msgid "%P: warning: %s ignored\n"
msgstr "%P : avertissement : %s ignoré\n"
#: ldmisc.c:701
msgid "%F%P: internal error %s %d\n"
msgstr "%F%P : erreur interne %s %d\n"
#: ldmisc.c:765
msgid "%P: internal error: aborting at %s:%d in %s\n"
msgstr "%P : erreur interne : arrêt immédiat à %s:%d dans %s\n"
#: ldmisc.c:768
msgid "%P: internal error: aborting at %s:%d\n"
msgstr "%P : erreur interne : arrêt immédiat à %s:%d\n"
#: ldmisc.c:770
msgid "%F%P: please report this bug\n"
msgstr "%F%P : merci de signaler cette anomalie\n"
#. Output for noisy == 2 is intended to follow the GNU standards.
#: ldver.c:38
#, c-format
msgid "GNU ld %s\n"
msgstr "GNU ld %s\n"
#: ldver.c:42
#, c-format
msgid "Copyright (C) 2025 Free Software Foundation, Inc.\n"
msgstr "Copyright (C) 2025 Free Software Foundation, Inc.\n"
#: ldver.c:43
#, c-format
msgid ""
"This program is free software; you may redistribute it under the terms of\n"
"the GNU General Public License version 3 or (at your option) a later version.\n"
"This program has absolutely no warranty.\n"
msgstr ""
"Ce logiciel est libre; si vous le redistribuez, vous devez le faire selon les termes\n"
"de la licence GNU General Public License version 3 ou postérieure selon votre besoin.\n"
"Ce logiciel n'est couvert par aucune GARANTIE.\n"
#: ldver.c:53
#, c-format
msgid " Supported emulations:\n"
msgstr " Émulations prises en charge :\n"
#: ldwrite.c:60 ldwrite.c:67 ldwrite.c:173 ldwrite.c:181 ldwrite.c:227
#: ldwrite.c:268
msgid "%F%P: bfd_new_link_order failed: %E\n"
msgstr "%F%P : bfd_new_link_order en échec : %E\n"
#: ldwrite.c:337
msgid "%F%P: cannot create split section name for %s\n"
msgstr "%F%P : impossible de créer un nom de section scindé pour %s\n"
#: ldwrite.c:349
msgid "%F%P: clone section failed: %E\n"
msgstr "%F%P : section clone en échec : %E\n"
#: ldwrite.c:387
#, c-format
msgid "%8x something else\n"
msgstr "%8x quelque chose d'autre\n"
#: ldwrite.c:553
msgid "%F%P: final link failed: %E\n"
msgstr "%F%P : échec de l'édition de liens finale : %E\n"
#: ldwrite.c:555
msgid "%F%P: final link failed\n"
msgstr "%F%P : échec de l'édition de liens finale\n"
#: lexsup.c:105 lexsup.c:303
msgid "KEYWORD"
msgstr "MOT CLÉ"
#: lexsup.c:105
msgid "Shared library control for HP/UX compatibility"
msgstr "Bibliothèque partagée de contrôle pour compatibilité HP/UX"
#: lexsup.c:108
msgid "ARCH"
msgstr "ARCH"
#: lexsup.c:108
msgid "Set architecture"
msgstr "Initilisé l'architecture"
#: lexsup.c:110 lexsup.c:443
msgid "TARGET"
msgstr "CIBLE"
#: lexsup.c:110
msgid "Specify target for following input files"
msgstr "Spécifier la cible pour les règles suivantes pour les fichiers d'entrée"
#: lexsup.c:113 lexsup.c:119 lexsup.c:180 lexsup.c:184 lexsup.c:223
#: lexsup.c:227 lexsup.c:242 lexsup.c:244 lexsup.c:465 lexsup.c:491
#: lexsup.c:539 lexsup.c:552 lexsup.c:556
msgid "FILE"
msgstr "FICHIER"
#: lexsup.c:113
msgid "Read MRI format linker script"
msgstr "Lecture du format MRI du script de l'éditeur de liens"
#: lexsup.c:115
msgid "Force common symbols to be defined"
msgstr "Forcer les symboles communs à être définis"
#: lexsup.c:119
msgid "Write dependency file"
msgstr "Écrire le fichier de dépendance"
#: lexsup.c:122
msgid "Force group members out of groups"
msgstr "Forcer les membres de groupe en dehors des groupes"
#: lexsup.c:124 lexsup.c:514 lexsup.c:516 lexsup.c:518 lexsup.c:520
#: lexsup.c:522 lexsup.c:524 lexsup.c:526
msgid "ADDRESS"
msgstr "ADRESSE"
#: lexsup.c:124
msgid "Set start address"
msgstr "Initialiser l'adresse de début"
#: lexsup.c:126
msgid "Export all dynamic symbols"
msgstr "Exportation de tous les symboles dynamiques"
#: lexsup.c:128
msgid "Undo the effect of --export-dynamic"
msgstr "Annuler l'effet de --export-dynamic"
#: lexsup.c:130
msgid "Enable support of non-contiguous memory regions"
msgstr "Activer la prise en charge des régions mémoire non contigües"
#: lexsup.c:132
msgid "Enable warnings when --enable-non-contiguous-regions may cause unexpected behaviour"
msgstr "Activer les avertissements lors que --enable-non-contiguous-regions pourrait entrainer un comportement inattendu "
#: lexsup.c:134
msgid "Disable the LINKER_VERSION linker script directive"
msgstr "Désactiver la directive de script d'éditeur de liens LINKER_VERSION"
#: lexsup.c:136
msgid "Enable the LINKER_VERSION linker script directive"
msgstr "Activer la directive de script d'éditeur de liens LINKER_VERSION"
#: lexsup.c:138
msgid "Link big-endian objects"
msgstr "Lier les objets gros-boutistes"
#: lexsup.c:140
msgid "Link little-endian objects"
msgstr "Lier les objets petit-boutistes"
#: lexsup.c:142 lexsup.c:145
msgid "SHLIB"
msgstr "SHLIB"
#: lexsup.c:142
msgid "Auxiliary filter for shared object symbol table"
msgstr "Filtre auxiliaire de la table de symboles de l'objet partagé"
#: lexsup.c:145
msgid "Filter for shared object symbol table"
msgstr "Filtre de la table de symboles de l'objet partagé"
#: lexsup.c:148
msgid "Ignored"
msgstr "Ignoré"
#: lexsup.c:150
msgid "SIZE"
msgstr "TAILLE"
#: lexsup.c:150
msgid "Small data size (if no size, same as --shared)"
msgstr "Petite taille des données (si aucune taille spécifié, identique à --shared)"
#: lexsup.c:153
msgid "FILENAME"
msgstr "NOM DE FICHIER"
#: lexsup.c:153
msgid "Set internal name of shared library"
msgstr "Initialisé le nom interne de la bibliothèque partagée"
#: lexsup.c:155
msgid "PROGRAM"
msgstr "PROGRAMME"
#: lexsup.c:155
msgid "Set PROGRAM as the dynamic linker to use"
msgstr "Utiliser le PROGRAM comme éditeur de liens dynamique"
#: lexsup.c:158
msgid "Produce an executable with no program interpreter header"
msgstr "Produit un exécutable sans en-tête d'interpréteur"
#: lexsup.c:161
msgid "LIBNAME"
msgstr "LIBNAME"
#: lexsup.c:161
msgid "Search for library LIBNAME"
msgstr "Recherche de la bibliothèque LIBNAME"
#: lexsup.c:163
msgid "DIRECTORY"
msgstr "RÉPERTOIRE"
#: lexsup.c:163
msgid "Add DIRECTORY to library search path"
msgstr "Ajout du RÉPERTOIRE au chemin de recherche des bibliothèques"
#: lexsup.c:166
msgid "Override the default sysroot location"
msgstr "Localisation de sysroot par défaut est écrasée"
#: lexsup.c:168
msgid "EMULATION"
msgstr "ÉMULATION"
#: lexsup.c:168
msgid "Set emulation"
msgstr "Initialisation de l'émulation"
#: lexsup.c:170
msgid "Print map file on standard output"
msgstr "Afficher le fichier de projection sur la sortie standard"
#: lexsup.c:172
msgid "Do not page align data"
msgstr "Ne pas paginer l'alignement des données"
#: lexsup.c:174
msgid "Do not page align data, do not make text readonly"
msgstr "Ne pas paginer l'alignement des donnnées, ne pas faire de texte en lecture seulement"
#: lexsup.c:177
msgid "Page align data, make text readonly"
msgstr "Données d'alignement de page, texte en mis en mode lecture seulement"
#: lexsup.c:180
msgid "Set output file name"
msgstr "Initialisé le nom du fichier de sortie"
#: lexsup.c:182
msgid "Optimize output file"
msgstr "Optimisé le fichier de sortie"
#: lexsup.c:184
msgid "Generate import library"
msgstr "Génére une bibliothèque d'import"
#: lexsup.c:187 lexsup.c:201
msgid "PLUGIN"
msgstr "GREFFON"
#: lexsup.c:187
msgid "Load named plugin"
msgstr "Charger le greffon nommé"
#: lexsup.c:189 lexsup.c:203
msgid "ARG"
msgstr "ARGUMENT"
#: lexsup.c:189
msgid "Send arg to last-loaded plugin"
msgstr "Envoyer l'argument au dernier greffon chargé"
#: lexsup.c:191
msgid "Store plugin intermediate files permanently"
msgstr "Sauvegarder les fichiers intermédiaires de greffon de façon permanente"
#: lexsup.c:194 lexsup.c:197
msgid "Ignored for GCC LTO option compatibility"
msgstr "Ignoré pour la compatibilité avec l'option LTO de GCC"
#: lexsup.c:201
msgid "Load named plugin (ignored)"
msgstr "Charger le greffon nommé (ignoré)"
#: lexsup.c:203
msgid "Send arg to last-loaded plugin (ignored)"
msgstr "Envoyer l'argument au dernier greffon chargé (ignoré)"
#: lexsup.c:206
msgid "Ignored for GCC linker option compatibility"
msgstr "Ignoré pour la compatibilité avec l'option de l'éditeur de liens GCC"
#: lexsup.c:209 lexsup.c:212
msgid "Ignored for gold option compatibility"
msgstr "Ignoré par compatibilité avec les options de gold"
#: lexsup.c:215
msgid "Ignored for SVR4 compatibility"
msgstr "Ignoré pour la compatibilité avec SVR4"
#: lexsup.c:219
msgid "Generate relocatable output"
msgstr "Générer une sortie relocalisable"
#: lexsup.c:223
msgid "Just link symbols (if directory, same as --rpath)"
msgstr "Juste lier les symboles (si répertoire, identique à --rpath)"
#: lexsup.c:229
msgid "PATTERN=FILE"
msgstr "MOTIF=FICHIER"
#: lexsup.c:232
msgid "Strip all symbols"
msgstr "Élaguer tous les symboles"
#: lexsup.c:234
msgid "Strip debugging symbols"
msgstr "Élaguer tous les symboles de débug"
#: lexsup.c:236
msgid "Strip symbols in discarded sections"
msgstr "Éliminer les symboles des sections éliminées"
#: lexsup.c:238
msgid "Do not strip symbols in discarded sections"
msgstr "Ne pas éliminer les symboles des sections éliminées"
#: lexsup.c:240
msgid "Trace file opens"
msgstr "Ouverture des fichiers de trace"
#: lexsup.c:242
msgid "Read linker script"
msgstr "Lecture du script de l'éditeur de lien"
#: lexsup.c:244
msgid "Read default linker script"
msgstr "Lecture du script par défaut de l'éditeur de lien"
#: lexsup.c:248 lexsup.c:251 lexsup.c:269 lexsup.c:361 lexsup.c:385
#: lexsup.c:507 lexsup.c:542 lexsup.c:554 lexsup.c:613 lexsup.c:616
msgid "SYMBOL"
msgstr "SYMBOLE"
#: lexsup.c:248
msgid "Start with undefined reference to SYMBOL"
msgstr "Débuter avec une référence indéfinie au SYMBOLE"
#: lexsup.c:251
msgid "Require SYMBOL be defined in the final output"
msgstr "Nécessite que SYMBOL soit défini dans la sortie finale"
#: lexsup.c:254
msgid "[=SECTION]"
msgstr "[=SECTION]"
#: lexsup.c:255
msgid "Don't merge input [SECTION | orphan] sections"
msgstr "Ne pas fusionner les sections d'entrée [SECTION | orpheline]"
#: lexsup.c:257
msgid "Build global constructor/destructor tables"
msgstr "Bâtir les tables de constructeurs/destructeurs globaux"
#: lexsup.c:259
msgid "Print version information"
msgstr "Afficher les informations de version"
#: lexsup.c:261
msgid "Print version and emulation information"
msgstr "Afficher les information de version et d'émulation"
#: lexsup.c:263
msgid "Discard all local symbols"
msgstr "Ignorer tous les symboles locaux"
#: lexsup.c:265
msgid "Discard temporary local symbols (default)"
msgstr "Ignorer tous les symboles locaux temporaires (par défaut)"
#: lexsup.c:267
msgid "Don't discard any local symbols"
msgstr "Ne pas ignorer tous les symboles locaux"
#: lexsup.c:269
msgid "Trace mentions of SYMBOL"
msgstr "Tracer les mentions de SYMBOLE"
#: lexsup.c:271 lexsup.c:467 lexsup.c:469
msgid "PATH"
msgstr "CHEMIN"
#: lexsup.c:271
msgid "Default search path for Solaris compatibility"
msgstr "Chemin par défaut de recherche pour la compatibilité Solaris"
#: lexsup.c:274
msgid "Start a group"
msgstr "Débuter un groupe"
#: lexsup.c:276
msgid "End a group"
msgstr "Terminer un groupe"
#: lexsup.c:280
msgid "Accept input files whose architecture cannot be determined"
msgstr "Accepter les fichiers à l'entrée dont l'architecture ne peut être déterminée"
#: lexsup.c:284
msgid "Reject input files whose architecture is unknown"
msgstr "Rejeter les fichiers à l'entrée dont l'architecture est inconnue"
#: lexsup.c:296
msgid "Only set DT_NEEDED for following dynamic libs if used"
msgstr "Initialiser seulement DT_NEEDED pour les bibliothèques dynamiques suivantes si utilisées"
#: lexsup.c:299
msgid ""
"Always set DT_NEEDED for dynamic libraries mentioned on\n"
" the command line"
msgstr ""
"Toujours définir DT_NEEDED pour les bibliothèqes dynamiques mentionnées en\n"
" ligne de commande"
#: lexsup.c:303
msgid "Ignored for SunOS compatibility"
msgstr "Ignoré pour la compatibilité avec SunOS"
#: lexsup.c:305
msgid "Link against shared libraries"
msgstr "Établir des liens vis à vis des bibliothèques partagées"
#: lexsup.c:311
msgid "Do not link against shared libraries"
msgstr "Ne pas établir de liens vis à vis des bibliothèques partagées"
#: lexsup.c:319
msgid "Don't bind global references locally"
msgstr "Ne pas localement lier les référence globales"
#: lexsup.c:321
msgid "Bind global references locally"
msgstr "Lier localement les référence globales"
#: lexsup.c:323
msgid "Bind global function references locally"
msgstr "Lier localement les référence globales à des fonctions"
#: lexsup.c:325
msgid "Check section addresses for overlaps (default)"
msgstr "Vérifier les adresses de section pour le chevauchement (par défaut)"
#: lexsup.c:328
msgid "Do not check section addresses for overlaps"
msgstr "Ne pas vérifier les adresses des sections pour le chevauchement"
#: lexsup.c:332
msgid "Copy DT_NEEDED links mentioned inside DSOs that follow"
msgstr "Copier les liens DT_NEEDED mentionnés dans les DSO qui suivent"
#: lexsup.c:336
msgid "Do not copy DT_NEEDED links mentioned inside DSOs that follow"
msgstr "Ne pas copier les liens DT_NEEDED mentionnés dans les DSO qui suivent"
#: lexsup.c:340
msgid "Output cross reference table"
msgstr "Produire la table des références croisées"
#: lexsup.c:342
msgid "SYMBOL=EXPRESSION"
msgstr "SYMBOLE=EXPRESSION"
#: lexsup.c:342
msgid "Define a symbol"
msgstr "Définir un symbole"
#: lexsup.c:344
msgid "[=STYLE]"
msgstr "[=STYLE]"
#: lexsup.c:344
msgid "Demangle symbol names [using STYLE]"
msgstr "Recouvrir les noms des symboles encodés par mutilisation [utilisant le STYLE]"
#: lexsup.c:348
msgid ""
"Do not allow multiple definitions with symbols included\n"
" in filename invoked by -R or --just-symbols"
msgstr ""
"Ne pas autoriser les définitions multiples avec des symboles inclus\n"
" depuis des noms de fichier invoqués par -R ou --just-symbols"
#: lexsup.c:353
msgid "Generate embedded relocs"
msgstr "Générer des relocalisations imbriqués"
#: lexsup.c:355
msgid "Treat warnings as errors"
msgstr "Traiter les avertissements comme des erreurs"
#: lexsup.c:358
msgid "Do not treat warnings as errors (default)"
msgstr "Ne pas traiter les avertissements comme des erreurs (défaut)"
#: lexsup.c:361
msgid "Call SYMBOL at unload-time"
msgstr "Appeler le SYMBOLE au moment du déchargement"
#: lexsup.c:363
msgid "Force generation of file with .exe suffix"
msgstr "Force la génération de fichier avec le suffixe .exe"
#: lexsup.c:365
msgid "Remove unused sections (on some targets)"
msgstr "Enlever les sections inutilisées (sur quelques cibles)"
#: lexsup.c:368
msgid "Don't remove unused sections (default)"
msgstr "Ne pas enlever les sections inutilisées (par défaut)"
#: lexsup.c:371
msgid "List removed unused sections on stderr"
msgstr "Afficher sur stderr la liste des sections inutilisées et supprimées"
#: lexsup.c:374
msgid "Do not list removed unused sections"
msgstr "Ne pas afficher la liste des sections inutilisées supprimées"
#: lexsup.c:377
msgid "Keep exported symbols when removing unused sections"
msgstr "Conserver les symboles exportés lors de la suppression de sections inutilisées"
#: lexsup.c:380
msgid "Set default hash table size close to <NUMBER>"
msgstr "Initialiser la table de hachage par défaut près de <NUMÉRO>"
#: lexsup.c:383
msgid "Print option help"
msgstr "Afficher l'aide-mémoire"
#: lexsup.c:385
msgid "Call SYMBOL at load-time"
msgstr "Appeler le SYMBOLE au moment du chargement"
#: lexsup.c:387
msgid "FILE/DIR"
msgstr "FICHIER/RÉPERTOIRE"
#: lexsup.c:387
msgid "Write a linker map to FILE or DIR/<outputname>.map"
msgstr "Écrire une table d'édition de liens dans FICHIER ou RÉPERTOIRE/<outputname>.map"
#: lexsup.c:389
msgid "Do not define Common storage"
msgstr "Ne pas définir le stockage commun"
#: lexsup.c:391
msgid "Do not demangle symbol names"
msgstr "Ne pas recouvrir les noms des symboles encodés par mutilisation"
#: lexsup.c:393
msgid "Use less memory and more disk I/O"
msgstr "Utiliser moins de mémoire et plus d'espace disque"
#: lexsup.c:395
msgid "Do not allow unresolved references in object files"
msgstr "Ne pas permettre les références indéfinis dans les objets partagés"
#: lexsup.c:398
msgid "Do not display any warning or error messages"
msgstr "N'afficher auncun message d'avertissement ou d'erreur (défaut)"
#: lexsup.c:401
msgid "Allow unresolved references in shared libraries"
msgstr "Permettre les références non résolues dans les bibliothèques partagées"
#: lexsup.c:405
msgid "Do not allow unresolved references in shared libs"
msgstr "Ne pas permettre les références non résolues dans les bibliothèques partagés"
#: lexsup.c:409
msgid "Allow multiple definitions"
msgstr "Autoriser des définitions multiples"
#: lexsup.c:413
msgid "SCRIPT"
msgstr "SCRIPT"
#: lexsup.c:413
msgid "Provide a script to help with undefined symbol errors"
msgstr "Fournir un script pour aider avec les erreurs de symboles non définis"
#: lexsup.c:416
msgid "Allow undefined version"
msgstr "Permettre une version indéfinie"
#: lexsup.c:418
msgid "Disallow undefined version"
msgstr "Ne pas permettre de version indéfinie"
#: lexsup.c:420
msgid "Create default symbol version"
msgstr "Créer la version de symbole par défaut"
#: lexsup.c:423
msgid "Create default symbol version for imported symbols"
msgstr "Créer la version de symbole par défaut pour les symboles importés"
#: lexsup.c:426
msgid "Don't warn about mismatched input files"
msgstr "Ne pas avertir à propos des non-concordances dans les fichiers d'entrée"
#: lexsup.c:429
msgid "Don't warn on finding an incompatible library"
msgstr "Ne pas avertir lorsqu'une bibliothèque incompatible est trouvée"
#: lexsup.c:432
msgid "Turn off --whole-archive"
msgstr "Désactiver --whole-archive"
#: lexsup.c:434
msgid "Create an output file even if errors occur"
msgstr "Créer un fichier de sortie même si des erreurs surviennent"
#: lexsup.c:439
msgid ""
"Only use library directories specified on\n"
" the command line"
msgstr ""
"Utiliser seulement les répertoires de bibliothèques spécifiés sur\n"
" la ligne de commande"
#: lexsup.c:443
msgid "Specify target of output file"
msgstr "Spécifier un fichier cible de sortie"
#: lexsup.c:446
msgid "Print default output format"
msgstr "Afficher le format de sortie standard"
#: lexsup.c:448
msgid "Print current sysroot"
msgstr "Imprimer le sysroot courant"
#: lexsup.c:450
msgid "Ignored for Linux compatibility"
msgstr "Ignoré pour la compatibilité avec Linux"
#: lexsup.c:453
msgid "Reduce memory overheads, possibly taking much longer"
msgstr "Réduire la surcharge en mémoire, en prenant possiblement plus de temps"
#: lexsup.c:457
msgid "Set the maximum cache size to SIZE bytes"
msgstr "Fixer la taille maximale du cache à TAILLE octets"
#: lexsup.c:460
msgid "Reduce code size by using target specific optimizations"
msgstr "Réduire la taille du code en utilisant des optimisations spécifiques à la cible"
#: lexsup.c:462
msgid "Do not use relaxation techniques to reduce code size"
msgstr "Ne pas utiliser de technique de relaxation pour réduire la taille du code"
#: lexsup.c:465
msgid "Keep only symbols listed in FILE"
msgstr "Conserver uniquement les symboles listés dans le FICHIER"
#: lexsup.c:467
msgid "Set runtime shared library search path"
msgstr "Initialisé le chemin de recherche des bibliothèques partagées pour l'exécution"
#: lexsup.c:469
msgid "Set link time shared library search path"
msgstr "Initialisé le chemin de recherche des bibliothèques partagées pour l'édition de liens"
#: lexsup.c:472
msgid "Create a shared library"
msgstr "Créer une bibliothèque partagée"
#: lexsup.c:476
msgid "Create a position independent executable"
msgstr "Créer un exécutable à position indépendante"
#: lexsup.c:480
msgid "Create a position dependent executable (default)"
msgstr "Créer un exécutable dépendant de la position (défaut)"
#: lexsup.c:482
msgid "[=ascending|descending]"
msgstr "[=croissant|décroissant]"
#: lexsup.c:483
msgid "Sort common symbols by alignment [in specified order]"
msgstr "Trier les symboles communs par taille [dans l'ordre spécifié]"
#: lexsup.c:488
msgid "name|alignment"
msgstr "nom|alignement"
#: lexsup.c:489
msgid "Sort sections by name or maximum alignment"
msgstr "Trier les sections par le nom ou l'alignement maximal"
#: lexsup.c:492
msgid "Sort sections by statements in FILE"
msgstr "Trier les sections par déclarations dans FICHIER"
#: lexsup.c:494
msgid "COUNT"
msgstr "DÉCOMPTE"
#: lexsup.c:494
msgid "How many tags to reserve in .dynamic section"
msgstr "Combien d'étiquettes réservées dans la section .dynamic"
#: lexsup.c:497
msgid "[=SIZE]"
msgstr "[=TAILLE]"
#: lexsup.c:497
msgid "Split output sections every SIZE octets"
msgstr "Découper à la sortie les sections à chaque NOMBRE d'octets"
#: lexsup.c:500
msgid "[=COUNT]"
msgstr "[=DÉCOMPTE]"
#: lexsup.c:500
msgid "Split output sections every COUNT relocs"
msgstr "Découper à la sortie les sections à chaque NOMBRE de relocalisations"
#: lexsup.c:503
msgid "Print memory usage statistics"
msgstr "Afficher les statistiques de l'utilisation de la mémoire"
#: lexsup.c:505
msgid "Display target specific options"
msgstr "Afficher les options spécifiques cibles"
#: lexsup.c:507
msgid "Do task level linking"
msgstr "Composer des liens au niveau de l'exécution de la tache"
#: lexsup.c:509
msgid "Use same format as native linker"
msgstr "Utiliser le même format que l'éditeur de lien natif"
#: lexsup.c:511
msgid "SECTION=ADDRESS"
msgstr "SECTION=ADRESSE"
#: lexsup.c:511
msgid "Set address of named section"
msgstr "Établit l'adresse de la section nommé"
#: lexsup.c:514
msgid "Set image base address"
msgstr "Établit l'adresse de base de l'image"
#: lexsup.c:516
msgid "Set address of .bss section"
msgstr "Établit l'adresse de la section .bss"
#: lexsup.c:518
msgid "Set address of .data section"
msgstr "Établit l'adresse de la section .data"
#: lexsup.c:520
msgid "Set address of .text section"
msgstr "Établit l'adresse de la section .text"
#: lexsup.c:522
msgid "Set address of text segment"
msgstr "Établit l'adresse des segments de texte"
#: lexsup.c:524
msgid "Set address of rodata segment"
msgstr "Établit l'adresse des segments de données constantes en lecture seule"
#: lexsup.c:526
msgid "Set address of ldata segment"
msgstr "Établit l'adresse des segments de données (ldata)"
#: lexsup.c:529
msgid ""
"How to handle unresolved symbols. <method> is:\n"
" ignore-all, report-all, ignore-in-object-files,\n"
" ignore-in-shared-libs"
msgstr ""
"Comment traiter les symboles non résolus. <méthode> est:\n"
" ignore-all, report-all, ignore-in-object-files,\n"
" ignore-in-shared-libs"
#: lexsup.c:534
msgid "[=NUMBER]"
msgstr "[=NUMERO]"
#: lexsup.c:535
msgid "Output lots of information during link"
msgstr "Afficher des tas d'information durant l'édition de lien"
#: lexsup.c:539
msgid "Read version information script"
msgstr "Lire le script des informations de version"
#: lexsup.c:542
msgid ""
"Take export symbols list from .exports, using\n"
" SYMBOL as the version."
msgstr ""
"Prendre la liste des symboles exportés de .exports, en utilisant\n"
" SYMBOLE comme version."
#: lexsup.c:546
msgid "Add data symbols to dynamic list"
msgstr "Ajouter les symboles de données à la liste dynamique"
#: lexsup.c:548
msgid "Use C++ operator new/delete dynamic list"
msgstr "Utiliser la liste dynamique d'opérateur C++ new/delete"
#: lexsup.c:550
msgid "Use C++ typeinfo dynamic list"
msgstr "Utiliser la liste dynamique C++ typeinfo"
#: lexsup.c:552
msgid "Read dynamic list"
msgstr "Lire la liste dynamique"
#: lexsup.c:554
msgid "Export the specified symbol"
msgstr "Exporter les symboles spécifiés"
#: lexsup.c:556
msgid "Read export dynamic symbol list"
msgstr "Lire la liste des symboles dynamiques exportés"
#: lexsup.c:558
msgid "Warn about duplicate common symbols"
msgstr "Avertir au sujet des symboles communs dupliqués"
#: lexsup.c:560
msgid "Warn if global constructors/destructors are seen"
msgstr "Avertir si des constructeurs/destructeurs globaux sont détectés"
#: lexsup.c:584
msgid "Warn if the multiple GP values are used"
msgstr "Avertir si des valeurs GP multiples sont utilisées"
#: lexsup.c:586
msgid "Warn only once per undefined symbol"
msgstr "Avertir seulement une fois pour chaque symbole indéfini"
#: lexsup.c:588
msgid "Warn if start of section changes due to alignment"
msgstr "Avertir si le début de la section est modifié en raison de l'alignement"
#: lexsup.c:593
msgid "Warn if output has DT_TEXTREL (default)"
msgstr "Avertir si la sortie a DT_TEXTREL (défaut)"
#: lexsup.c:595
msgid "Warn if output has DT_TEXTREL"
msgstr "Avertir si la sortie a DT_TEXTREL"
#: lexsup.c:601
msgid "Warn if an object has alternate ELF machine code"
msgstr "Avertir si un objet a un un code machine ELF alternatif"
#: lexsup.c:605
msgid "Report unresolved symbols as warnings"
msgstr "Rapporter les symboles non résolus par avertissement"
#: lexsup.c:608
msgid "Report unresolved symbols as errors"
msgstr "Rapporter des symboles non résolus comme des errreurs"
#: lexsup.c:610
msgid "Include all objects from following archives"
msgstr "Inclure tous les objets des archives suivantes"
#: lexsup.c:613
msgid "Use wrapper functions for SYMBOL"
msgstr "Utiliser les fonctions d'emballage pour SYMBOLE"
#: lexsup.c:617
msgid "Unresolved SYMBOL will not cause an error or warning"
msgstr "Le SYMBOLE non résolu ne causera ni erreur ni avertissement"
#: lexsup.c:619
msgid "Push state of flags governing input file handling"
msgstr "Pousse l'état des drapeaux contrôlant la gestion des fichiers d'entrée"
#: lexsup.c:622
msgid "Pop state of flags governing input file handling"
msgstr "Retire l'état des drapeaux contrôlant la gestion des fichiers d'entrée"
#: lexsup.c:625
msgid "Report target memory usage"
msgstr "Rend compte de l'utilisation mémoire de la cible"
#: lexsup.c:627
msgid "=MODE"
msgstr "=MODE"
#: lexsup.c:627
msgid "Control how orphan sections are handled."
msgstr "Contrôle comment les sections orphelines sont gérées."
#: lexsup.c:630
msgid "Show discarded sections in map file output (default)"
msgstr "Montrer les sections écartées dans la sortie du fichier de mappage (défaut)"
#: lexsup.c:633
msgid "Do not show discarded sections in map file output"
msgstr "Ne pas afficher les sections écartées dans la sortie du fichier de mappage"
#: lexsup.c:636
msgid "Show local symbols in map file output"
msgstr "Afficher les symboles locaux dans la sortie du fichier de mappage"
#: lexsup.c:639
msgid "Do not show local symbols in map file output (default)"
msgstr "Ne pas afficher les symboles locaux dans la sortie du fichier de mappage (défaut)"
#: lexsup.c:642
msgid "Emit names and types of static variables in CTF"
msgstr "Émettre les noms et types des variables statiques dans CTF"
#: lexsup.c:645
msgid "Do not emit names and types of static variables in CTF"
msgstr "Ne pas émettre les noms et types des variables statiques dans CTF"
#: lexsup.c:649
msgid ""
"How to share CTF types between translation units.\n"
" <method> is: share-unconflicted (default),\n"
" share-duplicated"
msgstr ""
"Comment partager les types CTF entre les unités de compilation.\n"
" <method> est : share-unconflicted (default),\n"
" share-duplicated"
#: lexsup.c:813
msgid "%F%P: Error: unable to disambiguate: %s (did you mean -%s ?)\n"
msgstr "%F%P : Erreur : incapable de résoudre les ambigüités : %s (voulez-vous dire -%s ?)\n"
#: lexsup.c:816
msgid "%P: Warning: grouped short command line options are deprecated: %s\n"
msgstr "%P : avertissement : le groupement des options courtes de la ligne de commande est obsolète : %s\n"
#: lexsup.c:843
msgid "%P: %s: missing argument\n"
msgstr "%P : %s : argument manquant\n"
#: lexsup.c:848
msgid "%P: unrecognized option '%s'\n"
msgstr "%P : option « %s » non reconnue\n"
#: lexsup.c:853
msgid "%F%P: use the --help option for usage information\n"
msgstr "%F%P : utiliser --help pour afficher l'aide-mémoire\n"
#: lexsup.c:872
msgid "%F%P: unrecognized -a option `%s'\n"
msgstr "%F%P : -a option non reconnue « %s »\n"
#: lexsup.c:885
msgid "%F%P: unrecognized -assert option `%s'\n"
msgstr "%F%P : -assert option non reconnue « %s »\n"
#: lexsup.c:929
msgid "%F%P: unknown demangling style `%s'\n"
msgstr "%F%P : style inconnu de recouvrement du transcodage par mutilisation « %s »\n"
#: lexsup.c:1037 lexsup.c:1533 eaarch64cloudabi.c:986 eaarch64cloudabib.c:986
#: eaarch64elf.c:986 eaarch64elf32.c:986 eaarch64elf32b.c:986
#: eaarch64elfb.c:986 eaarch64fbsd.c:991 eaarch64fbsdb.c:991
#: eaarch64haiku.c:986 eaarch64linux.c:991 eaarch64linux32.c:991
#: eaarch64linux32b.c:991 eaarch64linuxb.c:991 eaarch64nto.c:1148
#: earmelf.c:1135 earmelf_fbsd.c:1135 earmelf_fuchsia.c:1140
#: earmelf_haiku.c:1140 earmelf_linux.c:1140 earmelf_linux_eabi.c:1140
#: earmelf_linux_fdpiceabi.c:1140 earmelf_nacl.c:1140 earmelf_nbsd.c:1135
#: earmelf_phoenix.c:1140 earmelf_vxworks.c:1167 earmelfb.c:1135
#: earmelfb_fbsd.c:1135 earmelfb_fuchsia.c:1140 earmelfb_linux.c:1140
#: earmelfb_linux_eabi.c:1140 earmelfb_linux_fdpiceabi.c:1140
#: earmelfb_nacl.c:1140 earmelfb_nbsd.c:1135 earmnto.c:1095 ecskyelf.c:602
#: ecskyelf_linux.c:789 eelf32metag.c:788 eelf64lppc.c:1225
#: eelf64lppc_fbsd.c:1225 eelf64ppc.c:1225 eelf64ppc_fbsd.c:1225 ehppaelf.c:613
#: ehppalinux.c:825 ehppanbsd.c:825 ehppaobsd.c:825
msgid "%F%P: invalid number `%s'\n"
msgstr "%F%P : nombre invalide « %s »\n"
#: lexsup.c:1133
msgid "%F%P: bad --unresolved-symbols option: %s\n"
msgstr "%F%P : option erronée de --unresolved-symbols : %s\n"
#: lexsup.c:1220
msgid "%F%P: bad -plugin-opt option\n"
msgstr "%F%P : mauvaise option -plugin-opt\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:1240
msgid "%F%P: unrecognised option: %s\n"
msgstr "%F%P : option non reconnue : %s\n"
#: lexsup.c:1243 lexsup.c:1353 lexsup.c:1374 lexsup.c:1502
msgid "%F%P: -r and %s may not be used together\n"
msgstr "%F%P : -r et %s ne peuvent être utilisés ensemble\n"
#: lexsup.c:1365
msgid "%F%P: -shared not supported\n"
msgstr "%F%P : -shared non pris en charge\n"
#: lexsup.c:1379
msgid "%F%P: -pie not supported\n"
msgstr "%F%P : -pie n'est pas prise en charge\n"
#: lexsup.c:1385
msgid "%P: SONAME must not be empty string; keeping previous one\n"
msgstr "%P: SONAME ne doit pas être une chaîne vide ; conservation de la précédente\n"
#: lexsup.c:1391
msgid "descending"
msgstr "décroissant"
#: lexsup.c:1393
msgid "ascending"
msgstr "croissant"
#: lexsup.c:1396
msgid "%F%P: invalid common section sorting option: %s\n"
msgstr "%F%P : option de trie de section invalide : %s\n"
#: lexsup.c:1400
msgid "name"
msgstr "nom"
#: lexsup.c:1402
msgid "alignment"
msgstr "alignement"
#: lexsup.c:1405
msgid "%F%P: invalid section sorting option: %s\n"
msgstr "%F%P : option de trie de section invalide : %s\n"
#: lexsup.c:1411
msgid "%P: warning: section ordering file changed. Ignoring earlier definition\n"
msgstr "%P : avertissement : le fichier d'ordonnacement de section a changé. Ne tient pas compte des définitions antérieures\n"
#: lexsup.c:1448
msgid "%F%P: invalid argument to option \"--section-start\"\n"
msgstr "%F%P : argument invalide pour l'option \"--section-start\"\n"
#: lexsup.c:1455
msgid "%F%P: missing argument(s) to option \"--section-start\"\n"
msgstr "%F%P : un ou plusieurs arguments manquants pour l'option \"--section-start\"\n"
#: lexsup.c:1728
msgid "%F%P: group ended before it began (--help for usage)\n"
msgstr "%F%P : fin du groupe avant son début (--help pour l'usage)\n"
#: lexsup.c:1744
msgid "%F%P: failed to add remap file %s\n"
msgstr "%F%P : échec de l'ajout du fichier de remappage %s\n"
#. FIXME: Should we allow --remap-inputs=@myfile as a synonym
#. for --remap-inputs-file=myfile ?
#: lexsup.c:1753
msgid "%F%P: invalid argument to option --remap-inputs\n"
msgstr "%F%P : argument invalide pour l'option \"--section-inputs\"\n"
#: lexsup.c:1774
msgid "%F%P: invalid cache memory size: %s\n"
msgstr "%F%P : taille de mémoire cache non valide : %s\n"
#: lexsup.c:1788
msgid "%X%P: --hash-size needs a numeric argument\n"
msgstr "%X%P : --hash-size a beoin d'un argument numérique\n"
#: lexsup.c:1800
msgid "%F%P: no state pushed before popping\n"
msgstr "%F%P : aucun état n'a été poussé avant le dépilage\n"
#: lexsup.c:1823
msgid "%F%P: invalid argument to option \"--orphan-handling\"\n"
msgstr "%F%P : argument invalide pour l'option \"--section-start\"\n"
#: lexsup.c:1861
msgid "%F%P: bad --ctf-share-types option: %s\n"
msgstr "%F%P : option erronée de --ctf-share-types : %s\n"
#: lexsup.c:1878
msgid "%P: no file/directory name provided for map output; ignored\n"
msgstr "%P : aucun nom de fichier/répertoire donné pour la sortie de la projection ; ignoré\n"
#: lexsup.c:1906
msgid "%P: cannot stat linker map file: %E\n"
msgstr "%P : ne peut trouver le fichier de projection de l'éditeur de liens : %E\n"
#: lexsup.c:1917
msgid "%P: linker map file is not a regular file\n"
msgstr "%P : le fichier de projection de l'éditeur de liens n'est pas un fichier normal\n"
#: lexsup.c:1932
msgid "%P: SONAME must not be empty string; ignored\n"
msgstr "%P : SONAME ne doit pas être une chaîne vide ; ignoré\n"
#: lexsup.c:1938
msgid "%P: missing --end-group; added as last command line option\n"
msgstr "%P : --end-group manquant ; ajouté comme dernière option de la ligne de commande\n"
#: lexsup.c:2047
msgid "%F%P: -r and -z nosectionheader may not be used together\n"
msgstr "%F%P : -r et -z nosectionheader ne peuvent être utilisés ensemble\n"
#: lexsup.c:2055
msgid "%F%P: -F may not be used without -shared\n"
msgstr "%F%P : -F ne peut être utilisé sans -shared\n"
#: lexsup.c:2057
msgid "%F%P: -f may not be used without -shared\n"
msgstr "%F%P : -f ne peut être utilisé sans -shared\n"
#: lexsup.c:2098 lexsup.c:2111
msgid "%F%P: invalid hex number `%s'\n"
msgstr "%F%P : nombre hexadécimal invalide « %s »\n"
#: lexsup.c:2141
#, c-format
msgid " --audit=AUDITLIB Specify a library to use for auditing\n"
msgstr " --audit=AUDITLIB Specifie une bibliothèque à utiliser pour l'audit\n"
#: lexsup.c:2143
#, c-format
msgid " -Bgroup Selects group name lookup rules for DSO\n"
msgstr " -Bgroup Selectionne les règles de recherche de nom de groupe pour le DSO\n"
#: lexsup.c:2145
#, c-format
msgid " --disable-new-dtags Disable new dynamic tags\n"
msgstr " --disable-new-dtags Désactiver les nouvelles étiquettes dynamiques\n"
#: lexsup.c:2147
#, c-format
msgid " --enable-new-dtags Enable new dynamic tags\n"
msgstr " --enable-new-dtags Activer les nouvelles étiquettes dynamiques\n"
#: lexsup.c:2149
#, c-format
msgid " --eh-frame-hdr Create .eh_frame_hdr section\n"
msgstr " --eh-frame-hdr Créer la section .eh_frame_hdr\n"
#: lexsup.c:2151
#, c-format
msgid " --no-eh-frame-hdr Do not create .eh_frame_hdr section\n"
msgstr " --no-eh-frame-hdr Ne pas créer la section .eh_frame_hdr\n"
#: lexsup.c:2153
#, c-format
msgid " --exclude-libs=LIBS Make all symbols in LIBS hidden\n"
msgstr " --exclude-libs=LIBS Rendre cachés tous les symboles dans LIBS\n"
#: lexsup.c:2155
#, c-format
msgid " --hash-style=STYLE Set hash style to sysv/gnu/both. Default: "
msgstr " --hash-style=STYLE Fixer le style de hachage à sysv/gnu/both. Défaut :"
#: lexsup.c:2174
#, c-format
msgid ""
" -P AUDITLIB, --depaudit=AUDITLIB\n"
" Specify a library to use for auditing dependencies\n"
msgstr ""
" -P AUDITLIB, --depaudit=AUDITLIB\n"
" Specifie une bibliothèque à utiliser pour auditionner les dépendences\n"
#: lexsup.c:2177
#, c-format
msgid " -z combreloc Merge dynamic relocs into one section and sort\n"
msgstr " -z combreloc Fusionner et trier les relocalisations dynamiques dans une seule section\n"
#: lexsup.c:2179
#, c-format
msgid " -z nocombreloc Don't merge dynamic relocs into one section\n"
msgstr " -z nocombreloc Ne pas fusionner les relocalisations dynamiques dans une seule section\n"
#: lexsup.c:2181
#, c-format
msgid ""
" -z global Make symbols in DSO available for subsequently\n"
" loaded objects\n"
msgstr ""
" -z global Rendre les symboles dans le DSO disponibles pour les objects\n"
" chargés par la suite\n"
#: lexsup.c:2184
#, c-format
msgid " -z initfirst Mark DSO to be initialized first at runtime\n"
msgstr " -z initfirst Marquer le DSO pour qu'il soit initialisé en premier à l'exécution\n"
#: lexsup.c:2186
#, c-format
msgid " -z interpose Mark object to interpose all DSOs but executable\n"
msgstr " -z interpose Marquer les objets pour qu'ils s'interposent à tous les DSOs mais pas aux exécutables\n"
#: lexsup.c:2188
#, c-format
msgid " -z unique Mark DSO to be loaded at most once by default, and only in the main namespace\n"
msgstr " -z unique Marquer le DSO pour n'être chargé qu'une seule fois par défaut et uniquement dans l'espace de noms principal\n"
#: lexsup.c:2190
#, c-format
msgid " -z nounique Don't mark DSO as a loadable at most once\n"
msgstr " -z nounique Ne pas marquer le DSO comme ne pouvant être chargé qu'une seule fois\n"
#: lexsup.c:2192
#, c-format
msgid " -z lazy Mark object lazy runtime binding (default)\n"
msgstr " -z lazy Marquer la liaison de l'objet paresseuse à l'exécution (défaut)\n"
#: lexsup.c:2194
#, c-format
msgid " -z loadfltr Mark object requiring immediate process\n"
msgstr " -z loadfltr Marquer les objets nécessitant un traitement immédiat\n"
#: lexsup.c:2196
#, c-format
msgid " -z nocopyreloc Don't create copy relocs\n"
msgstr " -z nocopyreloc Ne pas créer de copie de relocalisations\n"
#: lexsup.c:2198
#, c-format
msgid " -z nodefaultlib Mark object not to use default search paths\n"
msgstr " -z nodefaultlib Marquer les objets pour ne pas qu'ils utilisent les chemins de recherche par défaut\n"
#: lexsup.c:2200
#, c-format
msgid " -z nodelete Mark DSO non-deletable at runtime\n"
msgstr " -z nodelete Marquer le DSO comme non supprimable à l'exécution\n"
#: lexsup.c:2202
#, c-format
msgid " -z nodlopen Mark DSO not available to dlopen\n"
msgstr " -z nodlopen Marquer le DSO comme non accessible pour dlopen\n"
#: lexsup.c:2204
#, c-format
msgid " -z nodump Mark DSO not available to dldump\n"
msgstr " -z nodump Marquer le DSO comme non accessible pour dldump\n"
#: lexsup.c:2206
#, c-format
msgid " -z now Mark object non-lazy runtime binding\n"
msgstr " -z now Marquer la liaison de l'objet non paresseuse à l'exécution\n"
#: lexsup.c:2208
#, c-format
msgid ""
" -z origin Mark object requiring immediate $ORIGIN\n"
" processing at runtime\n"
msgstr ""
" -z origin Marquer l'objet comme nécessitant un traitement immédiat de\n"
" $ORIGIN à l'exécution\n"
#: lexsup.c:2212
#, c-format
msgid " -z relro Create RELRO program header (default)\n"
msgstr " -z relro Créer l'en-tête de programme RELRO (défaut)\n"
#: lexsup.c:2214
#, c-format
msgid " -z norelro Don't create RELRO program header\n"
msgstr " -z norelro Ne pas créer l'en-tête de programme RELRO\n"
#: lexsup.c:2217
#, c-format
msgid " -z relro Create RELRO program header\n"
msgstr " -z relro Créer l'en-tête de programme RELRO\n"
#: lexsup.c:2219
#, c-format
msgid " -z norelro Don't create RELRO program header (default)\n"
msgstr " -z norelro Ne pas créer l'en-tête de programme RELRO (défaut)\n"
#: lexsup.c:2223
#, c-format
msgid " -z separate-code Create separate code program header (default)\n"
msgstr " -z separate-code Créer l'en-tête de programme de code séparé (défaut)\n"
#: lexsup.c:2225
#, c-format
msgid " -z noseparate-code Don't create separate code program header\n"
msgstr " -z noseparate-code Ne pas créer l'en-tête de programme de code séparé\n"
#: lexsup.c:2228
#, c-format
msgid " -z separate-code Create separate code program header\n"
msgstr " -z separate-code Créer l'en-tête de programme de code séparé\n"
#: lexsup.c:2230
#, c-format
msgid " -z noseparate-code Don't create separate code program header (default)\n"
msgstr " -z noseparate-code Ne pas créer l'en-tête de programme de code séparé (défaut)\n"
#: lexsup.c:2234
#, c-format
msgid " --rosegment With -z separate-code, create a single read-only segment (default)\n"
msgstr " --rosegment Créer, avec -z separate-code, un unique segment en lecture seule (défaut)\n"
#: lexsup.c:2236
#, c-format
msgid " --no-rosegment With -z separate-code, creste two read-only segments\n"
msgstr " --no-rosegment Créer, avec -z separate-code, deux segments en lecture seule\n"
#: lexsup.c:2239
#, c-format
msgid " --rosegment With -z separate-code, create a single read-only segment\n"
msgstr " --secureplt Créer, avec -z separate-code, un unique segment en lecture seule\n"
#: lexsup.c:2241
#, c-format
msgid " --no-rosegment With -z separate-code, creste two read-only segments (default)\n"
msgstr " -z separate-code Créer, avec -z separate-code, deux segments en lecture seule (défaut)\n"
#: lexsup.c:2244
#, c-format
msgid " -z common Generate common symbols with STT_COMMON type\n"
msgstr " -z common Générer les symboles communs avec STT_COMMON pour type\n"
#: lexsup.c:2246
#, c-format
msgid " -z nocommon Generate common symbols with STT_OBJECT type\n"
msgstr " -z nocommon Générer les symboles communs avec STT_OBJECT pour type\n"
#: lexsup.c:2249
#, c-format
msgid " -z text Treat DT_TEXTREL in output as error (default)\n"
msgstr " -z text Traiter DT_TEXTREL dans la sortie comme une erreur (défaut)\n"
#: lexsup.c:2252
#, c-format
msgid " -z text Treat DT_TEXTREL in output as error\n"
msgstr " -z text Traiter DT_TEXTREL dans la sortie comme une erreur\n"
#: lexsup.c:2256
#, c-format
msgid " -z notext Don't treat DT_TEXTREL in output as error (default)\n"
msgstr " -z notext Ne pas traiter DT_TEXTREL dans la sortie comme une erreur (défaut)\n"
#: lexsup.c:2258
#, c-format
msgid " -z textoff Don't treat DT_TEXTREL in output as error (default)\n"
msgstr " -z textoff Ne pas traiter DT_TEXTREL dans la sortie comme une erreur (défaut)\n"
#: lexsup.c:2263
#, c-format
msgid " -z notext Don't treat DT_TEXTREL in output as error\n"
msgstr " -z notext Ne pas traiter DT_TEXTREL dans la sortie comme une erreur\n"
#: lexsup.c:2265
#, c-format
msgid " -z textoff Don't treat DT_TEXTREL in output as error\n"
msgstr " -z textoff Ne pas traiter DT_TEXTREL dans la sortie comme une erreur\n"
#: lexsup.c:2269
#, c-format
msgid " -z memory-seal Mark object be memory sealed (default)\n"
msgstr " -z memory-seal Marquer l'objet comme confiné en mémoire (défaut)\n"
#: lexsup.c:2271
#, c-format
msgid " -z nomemory-seal Don't mark oject to be memory sealed\n"
msgstr " -z nomemory-seal Ne pas marquer l'objet comme confiné en mémoire\n"
#: lexsup.c:2274
#, c-format
msgid " -z memory-seal Mark object be memory sealed\n"
msgstr " -z memory-seal Marquer l'object comme confiné en mémoire\n"
#: lexsup.c:2276
#, c-format
msgid " -z nomemory-seal Don't mark oject to be memory sealed (default)\n"
msgstr " -z nomemory-seal Ne par marquer l'objet comme confiné en mémoire (default)\n"
#: lexsup.c:2284
#, c-format
msgid " --build-id[=STYLE] Generate build ID note\n"
msgstr " --build-id[=STYLE] Générer la note de l'ID de contruction\n"
#: lexsup.c:2288
#, c-format
msgid " Styles: none,md5,sha1,xx,uuid,0xHEX\n"
msgstr " Styles : none,md5,sha1,xx,uuid,0xHEX\n"
#: lexsup.c:2292
#, c-format
msgid " Styles: none,md5,sha1,uuid,0xHEX\n"
msgstr " Styles : none,md5,sha1,uuid,0xHEX\n"
#: lexsup.c:2295
#, c-format
msgid " --package-metadata[=JSON] Generate package metadata note\n"
msgstr " --package-metadata[=JSON] Générer la note de métadonnées du paquet\n"
#: lexsup.c:2297
#, c-format
msgid ""
" --compress-debug-sections=[none|zlib|zlib-gnu|zlib-gabi|zstd]\n"
"\t\t\t Compress DWARF debug sections\n"
msgstr ""
" --compress-debug-sections=[none|zlib|zlib-gnu|zlib-gabi|zstd]\n"
"\t\t\t Compresser les sections de debogage DWARF\n"
#: lexsup.c:2300
#, c-format
msgid " Default: %s\n"
msgstr " Défaut: %s\n"
#: lexsup.c:2303
#, c-format
msgid " -z common-page-size=SIZE Set common page size to SIZE\n"
msgstr " -z common-page-size=TAILLE Fixe la taille courante des pages à TAILLE\n"
#: lexsup.c:2305
#, c-format
msgid " -z max-page-size=SIZE Set maximum page size to SIZE\n"
msgstr " -z max-page-size=TAILLE Fixe la taille maximale des pages à TAILLE\n"
#: lexsup.c:2307
#, c-format
msgid " -z defs Report unresolved symbols in object files\n"
msgstr " -z defs Signaler les symboles non résolus dans les fichiers objets\n"
#: lexsup.c:2309
#, c-format
msgid " -z undefs Ignore unresolved symbols in object files\n"
msgstr " -z undefs Signaler les symboles non résolus dans les fichiers objets\n"
#: lexsup.c:2311
#, c-format
msgid " -z muldefs Allow multiple definitions\n"
msgstr "-z muldefs Autoriser les définitions multiples\n"
#: lexsup.c:2313
#, c-format
msgid " -z stack-size=SIZE Set size of stack segment\n"
msgstr " -z stack-size=TAILLE Fixe la taille du segment de pile\n"
#: lexsup.c:2316
#, c-format
msgid " -z execstack Mark executable as requiring executable stack\n"
msgstr " -z execstack Marquer l'exécutable comme nécessitant une pile d'exécution\n"
#: lexsup.c:2318
#, c-format
msgid " -z noexecstack Mark executable as not requiring executable stack\n"
msgstr " -z noexecstack Marquer l'exécutable comme ne nécessitant pas d'une pile d'exécution\n"
#: lexsup.c:2320
#, c-format
msgid " --warn-execstack-objects Generate a warning if an object file requests an executable stack\n"
msgstr " --warn-execstack-objects Générer un avertissement si un fichier objet demande une pile exécutable\n"
#: lexsup.c:2323
#, c-format
msgid " --warn-execstack Generate a warning if creating an executable stack\n"
msgstr " --warn-execstack Générer un avertissement si une pile exécutable est créée\n"
#: lexsup.c:2326
#, c-format
msgid " --warn-execstack Generate a warning if creating an executable stack (default)\n"
msgstr " --warn-execstack Générer un avertissement si une pile exécutable est créée (défaut)\n"
#: lexsup.c:2330
#, c-format
msgid " --no-warn-execstack Do not generate a warning if creating an executable stack (default)\n"
msgstr " --no-warn-execstack Ne pas générer d'avertissement si une pile exécutable est créée (défaut)\n"
#: lexsup.c:2333
#, c-format
msgid " --no-warn-execstack Do not generate a warning if creating an executable stack\n"
msgstr " --no-warn-execstack Ne pas générer d'avertissement si une pile exécutable est créée\n"
#: lexsup.c:2336
#, c-format
msgid " --error-execstack Turn warnings about executable stacks into errors\n"
msgstr " --warn-execstack Transformer les avertissements à propos des piles exécutables en erreurs\n"
#: lexsup.c:2338
#, c-format
msgid " --no-error-execstack Do not turn warnings about executable stacks into errors\n"
msgstr " --no-warn-execstack Ne pas transformer les avertissements à propos des piles exécutables en erreurs\n"
#: lexsup.c:2342
#, c-format
msgid " --warn-rwx-segments Generate a warning if a LOAD segment has RWX permissions (default)\n"
msgstr " --warn-rwx-segments Générer un avertissement si un segment LOAD a les permissions RWX (défaut)\n"
#: lexsup.c:2344
#, c-format
msgid " --no-warn-rwx-segments Do not generate a warning if a LOAD segments has RWX permissions\n"
msgstr " --no-warn-rwx-segments Ne pas générer un avertissement si un segment LOAD a les permissions RWX\n"
#: lexsup.c:2347
#, c-format
msgid " --warn-rwx-segments Generate a warning if a LOAD segment has RWX permissions\n"
msgstr " --warn-rwx-segments Générer un avertissement si un segment LOAD a les permissions RWX\n"
#: lexsup.c:2349
#, c-format
msgid " --no-warn-rwx-segments Do not generate a warning if a LOAD segments has RWX permissions (default)\n"
msgstr " --no-warn-rwx-segments Ne pas générer un avertissement si un segment LOAD a les permissions RWX (défaut)\n"
#: lexsup.c:2352
#, c-format
msgid " --error-rwx-segments Turn warnings about loadable RWX segments into errors\n"
msgstr " --error-rwx-segments Transformer les avertissements à propos de segments RWX chargeables en erreurs\n"
#: lexsup.c:2354
#, c-format
msgid " --no-error-rwx-segments Do not turn warnings about loadable RWX segments into errors\n"
msgstr " --no-error-rwx-segments Ne pas transformer les avertissements à propos de segments RWX chargeables en erreurs\n"
#: lexsup.c:2357
#, c-format
msgid " -z unique-symbol Avoid duplicated local symbol names\n"
msgstr " -z unique-symbol Éviter les noms de symboles locaux dupliqués\n"
#: lexsup.c:2359
#, c-format
msgid " -z nounique-symbol Keep duplicated local symbol names (default)\n"
msgstr " -z nounique-symbol Conserver les noms de symboles locaux dupliqués (défaut)\n"
#: lexsup.c:2361
#, c-format
msgid " -z globalaudit Mark executable requiring global auditing\n"
msgstr " -z globalaudit Marquer l'exécutable comme nécessitant un audit global\n"
#: lexsup.c:2363
#, c-format
msgid " -z start-stop-gc Enable garbage collection on __start/__stop\n"
msgstr " -z start-stop-gc Activer le ramasse-miette pour __start/__stop\n"
#: lexsup.c:2365
#, c-format
msgid " -z nostart-stop-gc Don't garbage collect __start/__stop (default)\n"
msgstr " -z nostart-stop-gc Ne pas exécuter le ramasse-miettes pour __start/__stop (défaut)\n"
#: lexsup.c:2367
#, c-format
msgid ""
" -z start-stop-visibility=V Set visibility of built-in __start/__stop symbols\n"
" to DEFAULT, PROTECTED, HIDDEN or INTERNAL\n"
msgstr ""
" -z start-stop-visibility=V Établir la visibilité des symboles intégrés __start/__stop\n"
" à DEFAULT, PROTECTED, HIDDEN ou INTERNAL\n"
#: lexsup.c:2370
#, c-format
msgid " -z sectionheader Generate section header (default)\n"
msgstr " -z sectionheader Générer l'en-tête de section (default)\n"
#: lexsup.c:2372
#, c-format
msgid " -z nosectionheader Do not generate section header\n"
msgstr " -z nosectionheader Ne pas générer l'en-tête de section\n"
#: lexsup.c:2379
#, c-format
msgid " --ld-generated-unwind-info Generate exception handling info for PLT\n"
msgstr " --ld-generated-unwind-info Générer les informations de gestion des exception pour le PLT\n"
#: lexsup.c:2381
#, 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"
" Ne pas générer les informations de gestion des exception pour le PLT\n"
#: lexsup.c:2391
#, c-format
msgid "ELF emulations:\n"
msgstr "ELF émulations:\n"
#: lexsup.c:2409
#, c-format
msgid "Usage: %s [options] file...\n"
msgstr "Usage : %s [options] fichier...\n"
#: lexsup.c:2411
#, c-format
msgid "Options:\n"
msgstr "Options :\n"
#: lexsup.c:2489
#, c-format
msgid " @FILE"
msgstr " @FICHIER"
#: lexsup.c:2492
#, c-format
msgid "Read options from FILE\n"
msgstr "Lire les options à partir du FICHIER\n"
#. Note: Various tools (such as libtool) depend upon the
#. format of the listings below - do not change them.
#: lexsup.c:2497
#, c-format
msgid "%s: supported targets:"
msgstr "%s : cibles prises en charge :"
#: lexsup.c:2505
#, c-format
msgid "%s: supported emulations: "
msgstr "%s : émulations prises en charge : "
#: lexsup.c:2510
#, c-format
msgid "%s: emulation specific options:\n"
msgstr "%s : options spécifiques d'émulation :\n"
#: lexsup.c:2517
#, c-format
msgid "Report bugs to %s\n"
msgstr "Rapporter toutes anomalies à %s\n"
#: mri.c:291
msgid "%F%P: unknown format type %s\n"
msgstr "%F%P : type de format inconnu %s\n"
#: pdb.c:845 pdb.c:1136
msgid "%P: CodeView symbol references out of range type %v\n"
msgstr "%P : références de symbole CodeView en dehors de la plage de type %v\n"
#: pdb.c:1014
msgid "%P: warning: truncated CodeView record S_LDATA32/S_GDATA32/S_LTHREAD32/S_GTHREAD32\n"
msgstr "%P : avertissement : enregistrement CodeView S_LDATA32/S_GDATA32/S_LTHREAD32/S_GTHREAD32 tronqué\n"
#: pdb.c:1033
msgid "%P: warning: name for S_LDATA32/S_GDATA32/S_LTHREAD32/S_GTHREAD32 has no terminating zero\n"
msgstr "%P : avertissement : le nom pour S_LDATA32/S_GDATA32/S_LTHREAD32/S_GTHREAD32 ne se termine pas par zéro\n"
#: pdb.c:1081 pdb.c:1751
msgid "%P: warning: truncated CodeView record S_GPROC32/S_LPROC32\n"
msgstr "%P : avertissement : enregistrement CodeView S_GPROC32/S_LPROC32 tronqué\n"
#: pdb.c:1093 pdb.c:1768
msgid "%P: warning: could not find end of S_GPROC32/S_LPROC32 record\n"
msgstr "%P : avertissement : impossible de trouver la fin de l'enregistrement S_GPROC32/S_LPROC32\n"
#: pdb.c:1119
msgid "%P: warning: name for S_GPROC32/S_LPROC32 has no terminating zero\n"
msgstr "%P : avertissement : le nom pour S_GPROC32/S_LPROC32 ne se termine pas par zéro\n"
#: pdb.c:1175
msgid "%P: CodeView S_GPROC32_ID/S_LPROC32_ID symbol referenced unknown type as ID\n"
msgstr "%P : le symbole CodeView S_GPROC32_ID/S_LPROC32_ID a pour ID une référence inconnue\n"
#: pdb.c:1249
msgid "%P: warning: truncated CodeView record S_UDT\n"
msgstr "%P : avertissement : enregistrement CodeView S_UDT tronqué\n"
#: pdb.c:1260
msgid "%P: warning: name for S_UDT has no terminating zero\n"
msgstr "%P : avertissement : le nom pour S_UDT ne se termine pas par zéro\n"
#: pdb.c:1297
msgid "%P: warning: truncated CodeView record S_CONSTANT\n"
msgstr "%P : avertissment : enregistrement CodeView S_CONSTANT tronqué\n"
#: pdb.c:1314
msgid "%P: warning: unhandled type %v within S_CONSTANT\n"
msgstr "%P : avertissement : type %v non pris en charge dans S_CONSTANT\n"
#: pdb.c:1328
msgid "%P: warning: name for S_CONSTANT has no terminating zero\n"
msgstr "%P : avertissement : le nom pour S_CONSTANT ne se termine pas par zéro\n"
#: pdb.c:1388
msgid "%P: warning: unexpected CodeView scope start record %v\n"
msgstr "%P : avertissement : enregistrement de début de périmètre CodeView %v non attendu\n"
#: pdb.c:1410
msgid "%P: warning: truncated CodeView record S_BUILDINFO\n"
msgstr "%P : avertissement : enregistrement CodeView S_BUILDINFO tronqué\n"
#: pdb.c:1436
msgid "%P: warning: truncated CodeView record S_BLOCK32\n"
msgstr "%P : avertissement : enregistrement CodeView S_BLOCK32 tronqué\n"
#: pdb.c:1448
msgid "%P: warning: could not find end of S_BLOCK32 record\n"
msgstr "%P : avertissement : impossible de trouver la fin de l'enregistrement S_BLOCK32\n"
#: pdb.c:1473
msgid "%P: warning: truncated CodeView record S_BPREL32\n"
msgstr "%P : avertissement : enregistrement CodeView S_BPREL32 tronqué\n"
#: pdb.c:1497
msgid "%P: warning: truncated CodeView record S_REGISTER\n"
msgstr "%P : avertissement : enregistrement CodeView S_REGISTER tronqué\n"
#: pdb.c:1521
msgid "%P: warning: truncated CodeView record S_REGREL32\n"
msgstr "%P : avertissement : enregistrement CodeView S_REGREL32 tronqué\n"
#: pdb.c:1545
msgid "%P: warning: truncated CodeView record S_LOCAL\n"
msgstr "%P : avertissement : enregistrement CodeView S_LOCAL tronqué\n"
#: pdb.c:1571
msgid "%P: warning: truncated CodeView record S_INLINESITE\n"
msgstr "%P : avertissement : enregistrement CodeView S_INLINESITE tronqué\n"
#: pdb.c:1583
msgid "%P: warning: could not find end of S_INLINESITE record\n"
msgstr "%P : avertissement : impossible de trouver la fin de l'enregistrement S_INLINESITE\n"
#: pdb.c:1616
msgid "%P: warning: truncated CodeView record S_THUNK32\n"
msgstr "%P : avertissement : enregistrement CodeView S_THUNK32 tronqué\n"
#: pdb.c:1628
msgid "%P: warning: could not find end of S_THUNK32 record\n"
msgstr "%P : avertissement : impossible de trouver la fin de l'enregistrement S_THUNK32\n"
#: pdb.c:1653
msgid "%P: warning: truncated CodeView record S_HEAPALLOCSITE\n"
msgstr "%P : avertissement : enregistrement CodeView S_HEAPALLOCSITE tronqué\n"
#: pdb.c:1687 pdb.c:1831
msgid "%P: warning: unrecognized CodeView record %v\n"
msgstr "%P : avertissement : enregistrement CodeView %v non reconnu\n"
#: pdb.c:1723
msgid "%P: warning: truncated CodeView record S_LDATA32/S_LTHREAD32\n"
msgstr "%P : avertissement : enregistrement CodeView S_LDATA32/S_LTHREAD32 tronqué\n"
#: pdb.c:1879
msgid "%P: warning: truncated DEBUG_S_INLINEELINES data\n"
msgstr "%P : avertissement : donnée DEBUG_S_INLINEELINES tronquée\n"
#: pdb.c:1886
msgid "%P: warning: unexpected DEBUG_S_INLINEELINES version %u\n"
msgstr "%P : avertissement : version %u de DEBUG_S_INLINEELINES non attendue\n"
#: pdb.c:2239
msgid "%P: CodeView type %v references other type %v not yet declared\n"
msgstr "%P : le type CodeView %v référence un autre type %v qui n'est pas encore déclaré\n"
#: pdb.c:2246
msgid "%P: CodeView type %v references out of range type %v\n"
msgstr "% P: le type CodeView %v référence un type %v hors limites\n"
#: pdb.c:2306
msgid "%P: warning: truncated CodeView type record LF_UDT_SRC_LINE\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_UDT_SRC_LINE tronqué\n"
#: pdb.c:2319
msgid "%P: warning: CodeView type record LF_UDT_SRC_LINE referred to unknown type %v\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_UDT_SRC_LINE fait référene à un type inconnu %v\n"
#: pdb.c:2341
msgid "%P: warning: CodeView type record LF_UDT_SRC_LINE referred to unknown string %v\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_UDT_SRC_LINE fait référence à une chaîne inconnue %v\n"
#: pdb.c:2350
msgid "%P: warning: CodeView type record LF_UDT_SRC_LINE pointed to unexpected record type\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_UDT_SRC_LINE pointe vers un type d'enregistrement inattendu\n"
#: pdb.c:2399
msgid "%P: warning: duplicate CodeView type record LF_UDT_MOD_SRC_LINE\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_UDT_MOD_SRC_LINE dupliqué\n"
#: pdb.c:2448
msgid "%P: warning: truncated CodeView type record LF_MODIFIER\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_MODIFIER tronqué\n"
#: pdb.c:2466 pdb.c:2481
msgid "%P: warning: truncated CodeView type record LF_POINTER\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_POINTER tronqué\n"
#: pdb.c:2499
msgid "%P: warning: truncated CodeView type record LF_PROCEDURE\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_PROCEDURE tronqué\n"
#: pdb.c:2519
msgid "%P: warning: truncated CodeView type record LF_MFUNCTION\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_MFUNCTION tronqué\n"
#: pdb.c:2547 pdb.c:2557
msgid "%P: warning: truncated CodeView type record LF_ARGLIST\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_ARGLIST tronqué\n"
#: pdb.c:2582 pdb.c:2652 pdb.c:2789 pdb.c:2836 pdb.c:3054 pdb.c:3101
msgid "%P: warning: truncated CodeView type record LF_FIELDLIST\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_FIELDLIST tronqué\n"
#: pdb.c:2599 pdb.c:2627
msgid "%P: warning: truncated CodeView type record LF_MEMBER\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_MEMBER tronqué\n"
#: pdb.c:2618
msgid "%P: warning: unhandled type %v within LF_MEMBER\n"
msgstr "%P : avertissement : type %v non pris en charge dans LF_MEMBER\n"
#: pdb.c:2638
msgid "%P: warning: name for LF_MEMBER has no terminating zero\n"
msgstr "%P : avertissement : le nom pour LF_MEMBER ne se termine pas par zéro\n"
#: pdb.c:2671 pdb.c:2694 pdb.c:2721
msgid "%P: warning: truncated CodeView type record LF_ENUMERATE\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_ENUMERATE tronqué\n"
#: pdb.c:2687
msgid "%P: warning: unhandled type %v within LF_ENUMERATE\n"
msgstr "%P : avertissement : type %v non pris en charge dans LF_ENUMERATE\n"
#: pdb.c:2707
msgid "%P: warning: name for LF_ENUMERATE has no terminating zero\n"
msgstr "%P : avertissement : le nom pour LF_ENUMERATE ne se termine pas par zéro\n"
#: pdb.c:2738
msgid "%P: warning: truncated CodeView type record LF_INDEX\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_INDEX tronqué\n"
#: pdb.c:2759
msgid "%P: warning: truncated CodeView type record LF_ONEMETHOD\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_ONEMETHOD tronqué\n"
#: pdb.c:2774
msgid "%P: warning: name for LF_ONEMETHOD has no terminating zero\n"
msgstr "%P : avertissement : le nom pour LF_ONEMETHOD ne se termine pas par zéro\n"
#: pdb.c:2807
msgid "%P: warning: truncated CodeView type record LF_METHOD\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_METHOD tronqué\n"
#: pdb.c:2822
msgid "%P: warning: name for LF_METHOD has no terminating zero\n"
msgstr "%P : avertissement : le nom pour LF_METHOD ne se termine pas par zéro\n"
#: pdb.c:2855 pdb.c:2884 pdb.c:2895
msgid "%P: warning: truncated CodeView type record LF_BCLASS\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_BCLASS tronqué\n"
#: pdb.c:2875
msgid "%P: warning: unhandled type %v within LF_BCLASS\n"
msgstr "%P : avertissement : type %v non pris en charge dans LF_BCLASS\n"
#: pdb.c:2912
msgid "%P: warning: truncated CodeView type record LF_VFUNCTAB\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_VFUNCTAB tronqué\n"
#: pdb.c:2935 pdb.c:2969 pdb.c:2994 pdb.c:3005
msgid "%P: warning: truncated CodeView type record LF_VBCLASS/LF_IVBCLASS\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_VBCLASS/LF_IVBCLASS tronqué\n"
#: pdb.c:2960 pdb.c:2985
msgid "%P: warning: unhandled type %v within LF_VBCLASS/LF_IVBCLASS\n"
msgstr "%P : avertissement : type %v non pris en charge dans LF_VBCLASS/LF_IVBCLASS\n"
#: pdb.c:3024
msgid "%P: warning: truncated CodeView type record LF_STMEMBER\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_STMEMBER tronqué\n"
#: pdb.c:3039
msgid "%P: warning: name for LF_STMEMBER has no terminating zero\n"
msgstr "%P : avertissement : le nom pour LF_STMEMBER ne se termine pas par zéro\n"
#: pdb.c:3072
msgid "%P: warning: truncated CodeView type record LF_NESTTYPE\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_NESTTYPE tronqué\n"
#: pdb.c:3086
msgid "%P: warning: name for LF_NESTTYPE has no terminating zero\n"
msgstr "%P : avertissement : le nom pour LF_NESTTYPE ne se termine pas par zéro\n"
#: pdb.c:3113
msgid "%P: warning: unrecognized CodeView subtype %v\n"
msgstr "%P : avertissement : sous type CodeView %v non reconnu\n"
#: pdb.c:3128
msgid "%P: warning: truncated CodeView type record LF_BITFIELD\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_BITFIELD tronqué\n"
#: pdb.c:3146
msgid "%P: warning: truncated CodeView type record LF_METHODLIST\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_METHODLIST tronqué\n"
#: pdb.c:3154
msgid "%P: warning: malformed CodeView type record LF_METHODLIST\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_METHODLIST malformé\n"
#: pdb.c:3178
msgid "%P: warning: truncated CodeView type record LF_ARRAY\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_ARRAY tronqué\n"
#: pdb.c:3201 pdb.c:3235
msgid "%P: warning: truncated CodeView type record LF_CLASS/LF_STRUCTURE\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_CLASS/LF_STRUCTURE tronqué\n"
#: pdb.c:3226
msgid "%P: warning: unhandled type %v within LF_CLASS/LF_STRUCTURE\n"
msgstr "%P : avertissement : type %v non pris en charge dans LF_CLASS/LF_STRUCTURE\n"
#: pdb.c:3245
msgid "%P: warning: name for LF_CLASS/LF_STRUCTURE has no terminating zero\n"
msgstr "%P : avertissement : le nom pour LF_CLASS/LF_STRUCTURE ne se termine pas par zéro\n"
#: pdb.c:3264
msgid "%P: warning: unique name for LF_CLASS/LF_STRUCTURE has no terminating zero\n"
msgstr "%P : avertissement : le nom unique LF_CLASS/LF_STRUCTURE ne se termine pas par un zéro\n"
#: pdb.c:3288 pdb.c:3316
msgid "%P: warning: truncated CodeView type record LF_UNION\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_UNION tronqué\n"
#: pdb.c:3307
msgid "%P: warning: unhandled type %v within LF_UNION\n"
msgstr "%P : avertissement : type %v n'est pas pris en charge dans LF_UNION\n"
#: pdb.c:3326
msgid "%P: warning: name for LF_UNION has no terminating zero\n"
msgstr "%P : avertissement : le nom pour LF_UNION ne se termine pas par zéro\n"
#: pdb.c:3345
msgid "%P: warning: unique name for LF_UNION has no terminating zero\n"
msgstr "%P : avertissement : le nom unique pour LF_UNION ne se termine pas par zéro\n"
#: pdb.c:3369
msgid "%P: warning: truncated CodeView type record LF_ENUM\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_ENUM tronqué\n"
#: pdb.c:3384
msgid "%P: warning: name for LF_ENUM has no terminating zero\n"
msgstr "%P : avertissement : le nom pour LF_ENUM ne se termine pas par zéro\n"
#: pdb.c:3402
msgid "%P: warning: unique name for LF_ENUM has no terminating zero\n"
msgstr "%P : avertissement : le nom unique pour LF_ENUM ne se termine pas par zéro\n"
#: pdb.c:3421
msgid "%P: warning: truncated CodeView type record LF_VFTABLE\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_VFTABLE tronqué\n"
#: pdb.c:3442
msgid "%P: warning: truncated CodeView type record LF_STRING_ID\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_STRING_ID tronqué\n"
#: pdb.c:3455
msgid "%P: warning: string for LF_STRING_ID has no terminating zero\n"
msgstr "%P : avertissement : la chaine pour LF_STRING_ID ne se termine pas par zéro\n"
#: pdb.c:3472 pdb.c:3482
msgid "%P: warning: truncated CodeView type record LF_SUBSTR_LIST\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_SUBSTR_LIST tronqué\n"
#: pdb.c:3505 pdb.c:3515
msgid "%P: warning: truncated CodeView type record LF_BUILDINFO\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_BUILDINFO tronqué\n"
#: pdb.c:3538
msgid "%P: warning: truncated CodeView type record LF_FUNC_ID\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_FUNC_ID tronqué\n"
#: pdb.c:3554
msgid "%P: warning: string for LF_FUNC_ID has no terminating zero\n"
msgstr "%P : avertissement : la chaîne pour LF_FUNC_ID ne se termine pas par zéro\n"
#: pdb.c:3571
msgid "%P: warning: truncated CodeView type record LF_MFUNC_ID\n"
msgstr "%P : avertissement : enregistrement de type CodeView LF_MFUNC_ID tronqué\n"
#: pdb.c:3587
msgid "%P: warning: string for LF_MFUNC_ID has no terminating zero\n"
msgstr "%P : avertissement : la chaîne pour LF_MFUNC_ID ne se termine pas par zéro\n"
#: pdb.c:3602
msgid "%P: warning: unrecognized CodeView type %v\n"
msgstr "%P : avertissement : type CodeView %v non reconnu\n"
#: pdb.c:3776
msgid "%P: warning: unable to get working directory\n"
msgstr "%P : avertissement : impossible de récupérer le répertoire de travail\n"
#: pdb.c:3784
msgid "%P: warning: unable to get program name\n"
msgstr "%P : avertissement : impossible de récupérer le nom du programme\n"
#: pdb.c:3793
msgid "%P: warning: unable to get full path to PDB\n"
msgstr "%P : avertissement : impossible de récupérer le chemin complet vers le PDB\n"
#: pdb.c:5249
msgid "%P: warning: cannot create PDB file: %E\n"
msgstr "%F%P : ne peut créer le fichier PDB : %E\n"
#: pdb.c:5264
msgid "%P: warning: cannot create old directory stream in PDB file: %E\n"
msgstr "%P : avertissement : impossible de créer le flux de l'ancien répertoire dans le fichier PDB : %E\n"
#: pdb.c:5273
msgid "%P: warning: cannot create info stream in PDB file: %E\n"
msgstr "%P : avertissement : impossible de créer le flux d'information dans le fichier PDB : %E\n"
#: pdb.c:5282
msgid "%P: warning: cannot create TPI stream in PDB file: %E\n"
msgstr "%P : avertissement : impossible de créer le flux TPI dans le fichier PDB : %E\n"
#: pdb.c:5291
msgid "%P: warning: cannot create DBI stream in PDB file: %E\n"
msgstr "%P : avertissement : impossible de créer le flux DBI dans le fichier PDB : %E\n"
#: pdb.c:5300
msgid "%P: warning: cannot create IPI stream in PDB file: %E\n"
msgstr "%P : avertissement : impossible de créer le flux IPI dans le fichier PDB : %E\n"
#: pdb.c:5309
msgid "%P: warning: cannot create /names stream in PDB file: %E\n"
msgstr "%P : avertissement : impossible de créer le flux /names dans le fichier PDB : %E\n"
#: pdb.c:5318
msgid "%P: warning: cannot create symbol record stream in PDB file: %E\n"
msgstr "%P : avertissement : impossible de créer le flux d'enregistrement de symbole dans le fichier PDB : %E\n"
#: pdb.c:5327
msgid "%P: warning: cannot create publics stream in PDB file: %E\n"
msgstr "%P : avertissement : impossible de créer les flux publics dans le fichier PDB : %E\n"
#: pdb.c:5334
msgid "%P: warning: cannot create section header stream in PDB file: %E\n"
msgstr "%P : avertissement : impossible de créer le flux d'en-tête de section dans le fichier PDB : %E\n"
#: pdb.c:5353
msgid "%P: warning: cannot populate DBI stream in PDB file: %E\n"
msgstr "%P : avertissement : impossible de remplir le flux DBI dans le fichier PDB : %E\n"
#: pdb.c:5362
msgid "%P: warning: cannot populate TPI stream in PDB file: %E\n"
msgstr "%P : avertissement : impossible de remplir le flux TPI dans le fichier PDB : %E\n"
#: pdb.c:5373
msgid "%P: warning: cannot populate IPI stream in PDB file: %E\n"
msgstr "%P : avertissement : impossible de remplir le flux IPI dans le fichier PDB : %E\n"
#: pdb.c:5385
msgid "%P: warning: cannot populate names stream in PDB file: %E\n"
msgstr "%P : avertissement : impossible de remplir le flux de noms dans le fichier PDB : %E\n"
#: pdb.c:5392
msgid "%P: warning: cannot populate publics stream in PDB file: %E\n"
msgstr "%P : avertissement : impossible de remplir les flux publics dans le fichier PDB : %E\n"
#: pdb.c:5399
msgid "%P: warning: cannot populate info stream in PDB file: %E\n"
msgstr "%P : avertissement : impossible de remplir le flux d'information dans le fichier PDB : %E\n"
#: pe-dll.c:480
msgid "%X%P: unsupported PEI architecture: %s\n"
msgstr "%X%P : architecture PEI non prise en charge : %s\n"
#: pe-dll.c:869
msgid "%X%P: cannot export %s: invalid export name\n"
msgstr "%X%P : ne peut exporter %s : nom d'export invalide\n"
#: pe-dll.c:921
#, c-format
msgid "%X%P: error, duplicate EXPORT with ordinals: %s (%d vs %d)\n"
msgstr "%X%P : erreur, duplicattion EXPORT avec nombre ordinal : %s (%d vs %d)\n"
#: pe-dll.c:928
#, c-format
msgid "%P: warning, duplicate EXPORT: %s\n"
msgstr "%P : avertissement, duplication EXPORT : %s\n"
#: pe-dll.c:1035
#, c-format
msgid "%X%P: cannot export %s: symbol not defined\n"
msgstr "%X%P : ne peut exporter %s : symbole indéfini\n"
#: pe-dll.c:1041
#, c-format
msgid "%X%P: cannot export %s: symbol wrong type (%d vs %d)\n"
msgstr "%X%P : ne peut exporter %s : mauvais type de symbole (%d vs %d)\n"
#: pe-dll.c:1048
#, c-format
msgid "%X%P: cannot export %s: symbol not found\n"
msgstr "%X%P : ne peut exporter %s : symbole non repéré\n"
#: pe-dll.c:1072 eaarch64cloudabi.c:370 eaarch64cloudabib.c:370
#: eaarch64elf.c:369 eaarch64elf32.c:369 eaarch64elf32b.c:369
#: eaarch64elfb.c:369 eaarch64fbsd.c:370 eaarch64fbsdb.c:370
#: eaarch64haiku.c:370 eaarch64linux.c:370 eaarch64linux32.c:370
#: eaarch64linux32b.c:370 eaarch64linuxb.c:370 eaarch64nto.c:370
#: eaix5ppc.c:1632 eaix5ppc.c:1642 eaix5rs6.c:1632 eaix5rs6.c:1642
#: eaixppc.c:1632 eaixppc.c:1642 eaixrs6.c:1632 eaixrs6.c:1642 earmelf.c:572
#: earmelf_fbsd.c:572 earmelf_fuchsia.c:573 earmelf_haiku.c:573
#: earmelf_linux.c:573 earmelf_linux_eabi.c:573 earmelf_linux_fdpiceabi.c:573
#: earmelf_nacl.c:573 earmelf_nbsd.c:572 earmelf_phoenix.c:573
#: earmelf_vxworks.c:572 earmelfb.c:572 earmelfb_fbsd.c:572
#: earmelfb_fuchsia.c:573 earmelfb_linux.c:573 earmelfb_linux_eabi.c:573
#: earmelfb_linux_fdpiceabi.c:573 earmelfb_nacl.c:573 earmelfb_nbsd.c:572
#: earmnto.c:572 ecskyelf.c:166 ecskyelf_linux.c:166 eelf32b4300.c:175
#: eelf32bmip.c:175 eelf32bmipn32.c:189 eelf32bsmip.c:189 eelf32btsmip.c:175
#: eelf32btsmip_fbsd.c:175 eelf32btsmipn32.c:175 eelf32btsmipn32_fbsd.c:175
#: eelf32ebmip.c:175 eelf32ebmipvxworks.c:175 eelf32elmip.c:175
#: eelf32elmipvxworks.c:175 eelf32l4300.c:175 eelf32lmip.c:175
#: eelf32lr5900.c:175 eelf32lr5900n32.c:175 eelf32lsmip.c:175
#: eelf32ltsmip.c:175 eelf32ltsmip_fbsd.c:175 eelf32ltsmipn32.c:175
#: eelf32ltsmipn32_fbsd.c:175 eelf32metag.c:90 eelf32mipswindiss.c:175
#: eelf64bmip.c:189 eelf64btsmip.c:175 eelf64btsmip_fbsd.c:175 eelf64lppc.c:122
#: eelf64lppc_fbsd.c:122 eelf64ltsmip.c:175 eelf64ltsmip_fbsd.c:175
#: eelf64ppc.c:122 eelf64ppc_fbsd.c:122 eelf_mipsel_haiku.c:175 ehppaelf.c:113
#: ehppalinux.c:113 ehppanbsd.c:113 ehppaobsd.c:113 em68hc11elf.c:173
#: em68hc11elfb.c:173 em68hc12elf.c:173 em68hc12elfb.c:173 eppcmacos.c:1632
#: eppcmacos.c:1642
msgid "%F%P: can not create BFD: %E\n"
msgstr "%F%P : ne peut créer le BFD : %E\n"
#: pe-dll.c:1086
msgid "%X%P: can not create .edata section: %E\n"
msgstr "%X%P : ne peut créer la section .edata : %E\n"
#: pe-dll.c:1100
msgid "%X%P: can not create .reloc section: %E\n"
msgstr "%X%P: ne peut créer la section .reloc : %E\n"
#: pe-dll.c:1149
#, c-format
msgid "%X%P: error: ordinal used twice: %d (%s vs %s)\n"
msgstr "%X%P : erreur : ordinal utilisé 2 fois : %d (%s vs %s)\n"
#: pe-dll.c:1185
#, c-format
msgid "%X%P: error: export ordinal too large: %d\n"
msgstr "%X%P : erreur : export d'un ordinal trop grand : %d\n"
#: pe-dll.c:1511
#, c-format
msgid "Info: resolving %s by linking to %s (auto-import)\n"
msgstr "Info : résolution de %s par un lien vers %s (auto-importé)\n"
#: pe-dll.c:1517
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 : avertissement : auto-importing a été activé sans que --enable-auto-import n'ait été spécifié dans la ligne de commande.\n"
"Cela devrait fonctionner à moins que cela n'implique des structures de données constantes référençant des symboles depuis des DLL importées automatiquements\n"
#: pe-dll.c:1680
msgid "%P: base relocation for section `%s' above .reloc section\n"
msgstr "%P : relocalisation de base pour la section « %s » au dessus de la section .reloc\n"
#: pe-dll.c:1730
#, c-format
msgid "%X%P: error: %d-bit reloc in dll\n"
msgstr "%X%P : erreur : %d-bit relocalisation dans dll\n"
#: pe-dll.c:1856
#, c-format
msgid "%P: can't open output def file %s\n"
msgstr "%P : impossible d'ouvrir le fichier def %s\n"
#: pe-dll.c:2005
#, c-format
msgid "; no contents available\n"
msgstr "; aucun contenu disponible\n"
#: pe-dll.c:2364
msgid "%P: error: NULL decorated name for %s\n"
msgstr "%P : erreur : nom décoré NULL pour %s\n"
#: pe-dll.c:2899
msgid "%X%P: %H: variable '%pT' can't be auto-imported; please read the documentation for ld's --enable-auto-import for details\n"
msgstr "%X%P : %H : variable « %pT » ne peut être auto-importée ; merci de lire la documentation de ld --enable-auto-import pour plus de détails.\n"
#: pe-dll.c:2920
#, c-format
msgid "%X%P: can't open .lib file: %s\n"
msgstr "%X%P : impossible d'ouvrir le fichier .lib : %s\n"
#: pe-dll.c:2926
#, c-format
msgid "Creating library file: %s\n"
msgstr "Création du fichier de bibliothèque : %s\n"
#: pe-dll.c:2956
msgid "%X%P: bfd_openr %s: %E\n"
msgstr "%X%P : bfd_openr %s : %E\n"
#: pe-dll.c:2968
msgid "%X%P: %s(%s): can't find member in non-archive file"
msgstr "%X%P : %s (%s) : impossible de trouver le membre dans le fichier qui n'est pas une archive"
#: pe-dll.c:2982
msgid "%X%P: %s(%s): can't find member in archive"
msgstr "%X%P : %s (%s) : impossible de trouver le membre dans l'archive"
#: pe-dll.c:3239
msgid "%X%P: add symbols %s: %E\n"
msgstr "%X%P : ajout des symboles %s : %E\n"
#: pe-dll.c:3450
msgid "%X%P: open %s: %E\n"
msgstr "%X%P : ouvre %s : %E\n"
#: pe-dll.c:3460
msgid "%X%P: %s: this doesn't appear to be a DLL\n"
msgstr "%X%P : %s : cela ne semble pas être une DLL\n"
#: pe-dll.c:3680
msgid "%X%P: error: can't use long section names on this arch\n"
msgstr "%X%P : erreur : impossible d'utiliser de longs noms de section pour cette architecture\n"
#: plugin.c:240 plugin.c:286
msgid "<no plugin>"
msgstr "<no plugin>"
#: plugin.c:255 plugin.c:1137
msgid "%F%P: %s: error loading plugin: %s\n"
msgstr "%F%P : %s : erreur lors du chargement du greffon : %s\n"
#: plugin.c:262
msgid "%P: %s: duplicated plugin\n"
msgstr "%P : %s : greffon dupliqué\n"
#: plugin.c:346
msgid "%F%P: could not create dummy IR bfd: %E\n"
msgstr "%F%P : impossible de créer l'IR bfd factice : %E\n"
#: plugin.c:427
msgid "%F%P: %s: non-ELF symbol in ELF BFD!\n"
msgstr "%F%P : %s : symbole non conforme au format ELF dans ELF BFD !\n"
#: plugin.c:438
msgid "%F%P: unknown ELF symbol visibility: %d!\n"
msgstr "%F%P : symbole de visibilité ELF inconnu : %d !\n"
#: plugin.c:560
msgid "%F%P: unsupported input file size: %s (%ld bytes)\n"
msgstr "%F%P : taille de fichier d'entré non pris en charge : %s (%ld octets)\n"
#: plugin.c:705
#, c-format
msgid "unknown LTO kind value %x"
msgstr "valeur de type LTO non connue %x"
#: plugin.c:731
#, c-format
msgid "unknown LTO resolution value %x"
msgstr "valeur de résolution LTO non connue %x"
#: plugin.c:751
#, c-format
msgid "unknown LTO visibility value %x"
msgstr "valeur de visibilité LTO %x non connue"
#. We should not have a new, indirect or warning symbol here.
#: plugin.c:836
msgid "%F%P: %s: plugin symbol table corrupt (sym type %d)\n"
msgstr "%F%P : %s : table de symboles du greffon corrompue (type de symbole %d)\n"
#: plugin.c:901
msgid "%P: %pB: symbol `%s' definition: %s, visibility: %s, resolution: %s\n"
msgstr "%P : %pB : définition du symbole « %s » : %s, visibilité : %s, résolution : %s\n"
#: plugin.c:978
msgid "%P: warning: "
msgstr "%P : avertissement : "
#: plugin.c:989
msgid "%P: error: "
msgstr "%P : erreur : "
#: plugin.c:1144
msgid "%F%P: %s: plugin error: %d\n"
msgstr "%F%P : %s : erreur du greffon : %d\n"
#: plugin.c:1208
msgid "%F%P: plugin_strdup failed to allocate memory: %s\n"
msgstr "%F%P : échec de l'allocation mémoire de plugin_strdup : %s\n"
#: plugin.c:1250
msgid "%F%P: plugin failed to allocate memory for input: %s\n"
msgstr "%F%P : le greffon a échoué à allouer de la mémoire pour l'entrée : %s\n"
#: plugin.c:1279
msgid "%F%P: %s: plugin reported error claiming file\n"
msgstr "%F%P : %s : le greffon à signalé une erreur lors de la recherche d'un fichier\n"
#: plugin.c:1401
msgid "%P: %s: error in plugin cleanup: %d (ignored)\n"
msgstr "%P : %s : erreur lors du nettoyage du greffon : %d (ignoré)\n"
#: eaarch64cloudabi.c:237 eaarch64cloudabib.c:237 eaarch64elf.c:236
#: eaarch64elf32.c:236 eaarch64elf32b.c:236 eaarch64elfb.c:236
#: eaarch64fbsd.c:237 eaarch64fbsdb.c:237 eaarch64haiku.c:237
#: eaarch64linux.c:237 eaarch64linux32.c:237 eaarch64linux32b.c:237
#: eaarch64linuxb.c:237 eaarch64nto.c:237 eaix5ppc.c:1097 eaix5rs6.c:1097
#: eaixppc.c:1097 eaixrs6.c:1097 earmelf.c:299 earmelf_fbsd.c:299
#: earmelf_fuchsia.c:300 earmelf_haiku.c:300 earmelf_linux.c:300
#: earmelf_linux_eabi.c:300 earmelf_linux_fdpiceabi.c:300 earmelf_nacl.c:300
#: earmelf_nbsd.c:299 earmelf_phoenix.c:300 earmelf_vxworks.c:299
#: earmelfb.c:299 earmelfb_fbsd.c:299 earmelfb_fuchsia.c:300
#: earmelfb_linux.c:300 earmelfb_linux_eabi.c:300
#: earmelfb_linux_fdpiceabi.c:300 earmelfb_nacl.c:300 earmelfb_nbsd.c:299
#: earmnto.c:299 eavr1.c:182 eavr2.c:182 eavr25.c:182 eavr3.c:182 eavr31.c:182
#: eavr35.c:182 eavr4.c:182 eavr5.c:182 eavr51.c:182 eavr6.c:182 eavrtiny.c:182
#: eavrxmega1.c:182 eavrxmega2.c:182 eavrxmega2_flmap.c:182 eavrxmega3.c:182
#: eavrxmega4.c:182 eavrxmega4_flmap.c:182 eavrxmega5.c:182 eavrxmega6.c:182
#: eavrxmega7.c:182 ecskyelf.c:213 ecskyelf_linux.c:213 eelf32b4300.c:208
#: eelf32bmip.c:208 eelf32bmipn32.c:222 eelf32bsmip.c:222 eelf32btsmip.c:208
#: eelf32btsmip_fbsd.c:208 eelf32btsmipn32.c:208 eelf32btsmipn32_fbsd.c:208
#: eelf32ebmip.c:208 eelf32ebmipvxworks.c:208 eelf32elmip.c:208
#: eelf32elmipvxworks.c:208 eelf32l4300.c:208 eelf32lmip.c:208
#: eelf32lr5900.c:208 eelf32lr5900n32.c:208 eelf32lsmip.c:208
#: eelf32ltsmip.c:208 eelf32ltsmip_fbsd.c:208 eelf32ltsmipn32.c:208
#: eelf32ltsmipn32_fbsd.c:208 eelf32metag.c:209 eelf32mipswindiss.c:208
#: eelf64bmip.c:222 eelf64btsmip.c:208 eelf64btsmip_fbsd.c:208 eelf64lppc.c:485
#: eelf64lppc_fbsd.c:485 eelf64ltsmip.c:208 eelf64ltsmip_fbsd.c:208
#: eelf64ppc.c:485 eelf64ppc_fbsd.c:485 eelf_mipsel_haiku.c:208 ehppaelf.c:233
#: ehppalinux.c:233 ehppanbsd.c:233 ehppaobsd.c:233 em68hc11elf.c:298
#: em68hc11elfb.c:298 em68hc12elf.c:298 em68hc12elfb.c:298 eppcmacos.c:1097
msgid "%X%P: can not make stub section: %E\n"
msgstr "%X%P : impossible de créer une section d'amorçage : %E\n"
#: eaarch64cloudabi.c:280 eaarch64cloudabib.c:280 eaarch64elf.c:279
#: eaarch64elf32.c:279 eaarch64elf32b.c:279 eaarch64elfb.c:279
#: eaarch64fbsd.c:280 eaarch64fbsdb.c:280 eaarch64haiku.c:280
#: eaarch64linux.c:280 eaarch64linux32.c:280 eaarch64linux32b.c:280
#: eaarch64linuxb.c:280 eaarch64nto.c:280 earcelf.c:117 earclinux.c:118
#: earclinux_nps.c:118 earcv2elf.c:117 earcv2elfx.c:117 earmelf.c:411
#: earmelf_fbsd.c:411 earmelf_fuchsia.c:412 earmelf_haiku.c:412
#: earmelf_linux.c:412 earmelf_linux_eabi.c:412 earmelf_linux_fdpiceabi.c:412
#: earmelf_nacl.c:412 earmelf_nbsd.c:411 earmelf_phoenix.c:412
#: earmelf_vxworks.c:411 earmelfb.c:411 earmelfb_fbsd.c:411
#: earmelfb_fuchsia.c:412 earmelfb_linux.c:412 earmelfb_linux_eabi.c:412
#: earmelfb_linux_fdpiceabi.c:412 earmelfb_nacl.c:412 earmelfb_nbsd.c:411
#: earmnto.c:411 eavr1.c:321 eavr2.c:321 eavr25.c:321 eavr3.c:321 eavr31.c:321
#: eavr35.c:321 eavr4.c:321 eavr5.c:321 eavr51.c:321 eavr6.c:321 eavrtiny.c:321
#: eavrxmega1.c:321 eavrxmega2.c:321 eavrxmega2_flmap.c:321 eavrxmega3.c:321
#: eavrxmega4.c:321 eavrxmega4_flmap.c:321 eavrxmega5.c:321 eavrxmega6.c:321
#: eavrxmega7.c:321 ecriself.c:117 ecrislinux.c:118 ed10velf.c:117
#: eelf32_sparc.c:118 eelf32_sparc_sol2.c:250 eelf32_sparc_vxworks.c:147
#: eelf32_spu.c:651 eelf32_tic6x_be.c:184 eelf32_tic6x_elf_be.c:184
#: eelf32_tic6x_elf_le.c:184 eelf32_tic6x_le.c:184 eelf32_tic6x_linux_be.c:184
#: eelf32_tic6x_linux_le.c:184 eelf32_x86_64.c:150 eelf32am33lin.c:117
#: eelf32b4300.c:314 eelf32bfin.c:127 eelf32bfinfd.c:127 eelf32bmip.c:314
#: eelf32bmipn32.c:328 eelf32briscv.c:94 eelf32briscv_ilp32.c:94
#: eelf32briscv_ilp32f.c:94 eelf32bsmip.c:328 eelf32btsmip.c:314
#: eelf32btsmip_fbsd.c:314 eelf32btsmipn32.c:314 eelf32btsmipn32_fbsd.c:314
#: eelf32cr16.c:267 eelf32crx.c:154 eelf32ebmip.c:314 eelf32ebmipvxworks.c:343
#: eelf32elmip.c:314 eelf32elmipvxworks.c:343 eelf32epiphany.c:117
#: eelf32epiphany_4x4.c:119 eelf32frvfd.c:117 eelf32ip2k.c:117
#: eelf32l4300.c:314 eelf32lm32.c:117 eelf32lm32fd.c:117 eelf32lmip.c:314
#: eelf32loongarch.c:92 eelf32lppc.c:326 eelf32lppclinux.c:326
#: eelf32lppcnto.c:326 eelf32lppcsim.c:326 eelf32lr5900.c:314
#: eelf32lr5900n32.c:313 eelf32lriscv.c:94 eelf32lriscv_ilp32.c:94
#: eelf32lriscv_ilp32f.c:94 eelf32lsmip.c:314 eelf32ltsmip.c:314
#: eelf32ltsmip_fbsd.c:314 eelf32ltsmipn32.c:314 eelf32ltsmipn32_fbsd.c:314
#: eelf32m32c.c:128 eelf32mb_linux.c:118 eelf32mbel_linux.c:118
#: eelf32mcore.c:117 eelf32mep.c:117 eelf32metag.c:259 eelf32microblaze.c:117
#: eelf32microblazeel.c:117 eelf32mipswindiss.c:313 eelf32moxie.c:117
#: eelf32or1k.c:118 eelf32or1k_linux.c:118 eelf32ppc.c:326 eelf32ppc_fbsd.c:326
#: eelf32ppchaiku.c:326 eelf32ppclinux.c:326 eelf32ppcnto.c:326
#: eelf32ppcsim.c:326 eelf32ppcvxworks.c:300 eelf32ppcwindiss.c:326
#: eelf32rl78.c:117 eelf32rx.c:133 eelf32rx_linux.c:130 eelf32tilegx.c:118
#: eelf32tilegx_be.c:118 eelf32tilepro.c:118 eelf32vax.c:117 eelf32visium.c:117
#: eelf32xstormy16.c:128 eelf32xtensa.c:2014 eelf32z80.c:144 eelf64_aix.c:117
#: eelf64_ia64.c:143 eelf64_ia64_fbsd.c:143 eelf64_ia64_vms.c:220
#: eelf64_s390.c:133 eelf64_sparc.c:118 eelf64_sparc_fbsd.c:118
#: eelf64_sparc_sol2.c:250 eelf64alpha.c:201 eelf64alpha_fbsd.c:201
#: eelf64alpha_nbsd.c:201 eelf64bmip.c:328 eelf64bpf.c:117 eelf64briscv.c:94
#: eelf64briscv_lp64.c:94 eelf64briscv_lp64f.c:94 eelf64btsmip.c:314
#: eelf64btsmip_fbsd.c:314 eelf64hppa.c:117 eelf64loongarch.c:92
#: eelf64lppc.c:595 eelf64lppc_fbsd.c:595 eelf64lriscv.c:94
#: eelf64lriscv_lp64.c:94 eelf64lriscv_lp64f.c:94 eelf64ltsmip.c:314
#: eelf64ltsmip_fbsd.c:314 eelf64mmix.c:228 eelf64ppc.c:595
#: eelf64ppc_fbsd.c:595 eelf64rdos.c:133 eelf64tilegx.c:118
#: eelf64tilegx_be.c:118 eelf_i386.c:142 eelf_i386_be.c:141
#: eelf_i386_fbsd.c:142 eelf_i386_haiku.c:142 eelf_i386_ldso.c:142
#: eelf_i386_sol2.c:274 eelf_i386_vxworks.c:171 eelf_iamcu.c:142
#: eelf_mipsel_haiku.c:314 eelf_s390.c:118 eelf_x86_64.c:150
#: eelf_x86_64_cloudabi.c:150 eelf_x86_64_fbsd.c:150 eelf_x86_64_haiku.c:150
#: eelf_x86_64_sol2.c:282 eh8300elf.c:117 eh8300elf_linux.c:117
#: eh8300helf.c:117 eh8300helf_linux.c:117 eh8300hnelf.c:117 eh8300self.c:117
#: eh8300self_linux.c:117 eh8300snelf.c:117 eh8300sxelf.c:117
#: eh8300sxelf_linux.c:117 eh8300sxnelf.c:117 ehppa64linux.c:117 ehppaelf.c:283
#: ehppalinux.c:283 ehppanbsd.c:283 ehppaobsd.c:283 ei386lynx.c:132
#: ei386moss.c:132 ei386nto.c:132 em32relf.c:117 em32relf_linux.c:117
#: em32rlelf.c:117 em32rlelf_linux.c:117 em68hc11elf.c:394 em68hc11elfb.c:394
#: em68hc12elf.c:394 em68hc12elfb.c:394 em68kelf.c:269 em68kelfnbsd.c:269
#: emn10300.c:117 ends32belf.c:225 ends32belf16m.c:225 ends32belf_linux.c:225
#: ends32elf.c:225 ends32elf16m.c:225 ends32elf_linux.c:225 epruelf.c:138
#: escore3_elf.c:135 escore7_elf.c:135 eshelf.c:117 eshelf_fd.c:118
#: eshelf_linux.c:118 eshelf_nbsd.c:117 eshelf_nto.c:117 eshelf_uclinux.c:117
#: eshelf_vxworks.c:146 eshlelf.c:117 eshlelf_fd.c:118 eshlelf_linux.c:118
#: eshlelf_nbsd.c:117 eshlelf_nto.c:117 eshlelf_vxworks.c:146 ev850.c:164
#: ev850_rh850.c:164
msgid "%X%P: .eh_frame/.stab edit: %E\n"
msgstr "%X%P : édition de .eh_frame/.stab : %E\n"
#: eaarch64cloudabi.c:296 eaarch64cloudabib.c:296 eaarch64elf.c:295
#: eaarch64elf32.c:295 eaarch64elf32b.c:295 eaarch64elfb.c:295
#: eaarch64fbsd.c:296 eaarch64fbsdb.c:296 eaarch64haiku.c:296
#: eaarch64linux.c:296 eaarch64linux32.c:296 eaarch64linux32b.c:296
#: eaarch64linuxb.c:296 eaarch64nto.c:296 earmelf.c:426 earmelf_fbsd.c:426
#: earmelf_fuchsia.c:427 earmelf_haiku.c:427 earmelf_linux.c:427
#: earmelf_linux_eabi.c:427 earmelf_linux_fdpiceabi.c:427 earmelf_nacl.c:427
#: earmelf_nbsd.c:426 earmelf_phoenix.c:427 earmelf_vxworks.c:426
#: earmelfb.c:426 earmelfb_fbsd.c:426 earmelfb_fuchsia.c:427
#: earmelfb_linux.c:427 earmelfb_linux_eabi.c:427
#: earmelfb_linux_fdpiceabi.c:427 earmelfb_nacl.c:427 earmelfb_nbsd.c:426
#: earmnto.c:426 ecskyelf.c:263 ecskyelf_linux.c:263
msgid "%X%P: could not compute sections lists for stub generation: %E\n"
msgstr "%X%P : impossible de calculer les listes de sections pour la génération d'espace d'amorçage : %E\n"
#: eaarch64cloudabi.c:311 eaarch64cloudabib.c:311 eaarch64elf.c:310
#: eaarch64elf32.c:310 eaarch64elf32b.c:310 eaarch64elfb.c:310
#: eaarch64fbsd.c:311 eaarch64fbsdb.c:311 eaarch64haiku.c:311
#: eaarch64linux.c:311 eaarch64linux32.c:311 eaarch64linux32b.c:311
#: eaarch64linuxb.c:311 eaarch64nto.c:311 earmelf.c:441 earmelf_fbsd.c:441
#: earmelf_fuchsia.c:442 earmelf_haiku.c:442 earmelf_linux.c:442
#: earmelf_linux_eabi.c:442 earmelf_linux_fdpiceabi.c:442 earmelf_nacl.c:442
#: earmelf_nbsd.c:441 earmelf_phoenix.c:442 earmelf_vxworks.c:441
#: earmelfb.c:441 earmelfb_fbsd.c:441 earmelfb_fuchsia.c:442
#: earmelfb_linux.c:442 earmelfb_linux_eabi.c:442
#: earmelfb_linux_fdpiceabi.c:442 earmelfb_nacl.c:442 earmelfb_nbsd.c:441
#: earmnto.c:441 eavr1.c:132 eavr1.c:196 eavr2.c:132 eavr2.c:196 eavr25.c:132
#: eavr25.c:196 eavr3.c:132 eavr3.c:196 eavr31.c:132 eavr31.c:196 eavr35.c:132
#: eavr35.c:196 eavr4.c:132 eavr4.c:196 eavr5.c:132 eavr5.c:196 eavr51.c:132
#: eavr51.c:196 eavr6.c:132 eavr6.c:196 eavrtiny.c:132 eavrtiny.c:196
#: eavrxmega1.c:132 eavrxmega1.c:196 eavrxmega2.c:132 eavrxmega2.c:196
#: eavrxmega2_flmap.c:132 eavrxmega2_flmap.c:196 eavrxmega3.c:132
#: eavrxmega3.c:196 eavrxmega4.c:132 eavrxmega4.c:196 eavrxmega4_flmap.c:132
#: eavrxmega4_flmap.c:196 eavrxmega5.c:132 eavrxmega5.c:196 eavrxmega6.c:132
#: eavrxmega6.c:196 eavrxmega7.c:132 eavrxmega7.c:196 eelf32metag.c:274
#: eelf32metag.c:288 eelf64lppc.c:538 eelf64lppc.c:557 eelf64lppc.c:584
#: eelf64lppc_fbsd.c:538 eelf64lppc_fbsd.c:557 eelf64lppc_fbsd.c:584
#: eelf64ppc.c:538 eelf64ppc.c:557 eelf64ppc.c:584 eelf64ppc_fbsd.c:538
#: eelf64ppc_fbsd.c:557 eelf64ppc_fbsd.c:584 ehppaelf.c:298 ehppaelf.c:313
#: ehppalinux.c:298 ehppalinux.c:313 ehppanbsd.c:298 ehppanbsd.c:313
#: ehppaobsd.c:298 ehppaobsd.c:313 em68hc11elf.c:93 em68hc11elf.c:103
#: em68hc11elf.c:320 em68hc11elfb.c:93 em68hc11elfb.c:103 em68hc11elfb.c:320
#: em68hc12elf.c:93 em68hc12elf.c:103 em68hc12elf.c:320 em68hc12elfb.c:93
#: em68hc12elfb.c:103 em68hc12elfb.c:320
msgid "%X%P: can not size stub section: %E\n"
msgstr "%X%P : impossible de récupérer la taille de la section d'amorçage : %E\n"
#: eaarch64cloudabi.c:330 eaarch64cloudabib.c:330 eaarch64elf.c:329
#: eaarch64elf32.c:329 eaarch64elf32b.c:329 eaarch64elfb.c:329
#: eaarch64fbsd.c:330 eaarch64fbsdb.c:330 eaarch64haiku.c:330
#: eaarch64linux.c:330 eaarch64linux32.c:330 eaarch64linux32b.c:330
#: eaarch64linuxb.c:330 eaarch64nto.c:330 eaix5ppc.c:1137 eaix5rs6.c:1137
#: eaixppc.c:1137 eaixrs6.c:1137 earmelf.c:475 earmelf_fbsd.c:475
#: earmelf_fuchsia.c:476 earmelf_haiku.c:476 earmelf_linux.c:476
#: earmelf_linux_eabi.c:476 earmelf_linux_fdpiceabi.c:476 earmelf_nacl.c:476
#: earmelf_nbsd.c:475 earmelf_phoenix.c:476 earmelf_vxworks.c:475
#: earmelfb.c:475 earmelfb_fbsd.c:475 earmelfb_fuchsia.c:476
#: earmelfb_linux.c:476 earmelfb_linux_eabi.c:476
#: earmelfb_linux_fdpiceabi.c:476 earmelfb_nacl.c:476 earmelfb_nbsd.c:475
#: earmnto.c:475 eavr1.c:205 eavr2.c:205 eavr25.c:205 eavr3.c:205 eavr31.c:205
#: eavr35.c:205 eavr4.c:205 eavr5.c:205 eavr51.c:205 eavr6.c:205 eavrtiny.c:205
#: eavrxmega1.c:205 eavrxmega2.c:205 eavrxmega2_flmap.c:205 eavrxmega3.c:205
#: eavrxmega4.c:205 eavrxmega4_flmap.c:205 eavrxmega5.c:205 eavrxmega6.c:205
#: eavrxmega7.c:205 eelf32metag.c:303 eelf64lppc.c:634 eelf64lppc_fbsd.c:634
#: eelf64ppc.c:634 eelf64ppc_fbsd.c:634 ehppaelf.c:335 ehppalinux.c:335
#: ehppanbsd.c:335 ehppaobsd.c:335 em68hc11elf.c:324 em68hc11elfb.c:324
#: em68hc12elf.c:324 em68hc12elfb.c:324 eppcmacos.c:1137
msgid "%X%P: can not build stubs: %E\n"
msgstr "%X%P : impossible de construire les secteurs d'amorçage : %E\n"
#. The AArch64 backend needs special fields in the output hash structure.
#. These will only be created if the output format is an AArch64 format,
#. hence we do not support linking and changing output formats at the
#. same time. Use a link followed by objcopy to change output formats.
#. The arm backend needs special fields in the output hash structure.
#. These will only be created if the output format is an arm format,
#. hence we do not support linking and changing output formats at the
#. same time. Use a link followed by objcopy to change output formats.
#. The RISC-V backend needs special fields in the output hash structure.
#. These will only be created if the output format is a RISC-V format,
#. hence we do not support linking and changing output formats at the
#. same time. Use a link followed by objcopy to change output formats.
#. The arm backend needs special fields in the output hash structure.
#. These will only be created if the output format is an arm format,
#. hence we do not support linking and changing output formats at the
#. same time. Use a link followed by objcopy to change output formats.
#. Check the output target is nds32.
#. The score backend needs special fields in the output hash structure.
#. These will only be created if the output format is an score format,
#. hence we do not support linking and changing output formats at the
#. same time. Use a link followed by objcopy to change output formats.
#. The arm backend needs special fields in the output hash structure.
#. These will only be created if the output format is an arm format,
#. hence we do not support linking and changing output formats at the
#. same time. Use a link followed by objcopy to change output formats.
#. The V850 backend needs special fields in the output hash structure.
#. These will only be created if the output format is an arm format,
#. hence we do not support linking and changing output formats at the
#. same time. Use a link followed by objcopy to change output formats.
#: eaarch64cloudabi.c:348 eaarch64cloudabib.c:348 eaarch64elf.c:347
#: eaarch64elf32.c:347 eaarch64elf32b.c:347 eaarch64elfb.c:347
#: eaarch64fbsd.c:348 eaarch64fbsdb.c:348 eaarch64haiku.c:348
#: eaarch64linux.c:348 eaarch64linux32.c:348 eaarch64linux32b.c:348
#: eaarch64linuxb.c:348 eaarch64nto.c:348 earm_wince_pe.c:1523 earmelf.c:544
#: earmelf_fbsd.c:544 earmelf_fuchsia.c:545 earmelf_haiku.c:545
#: earmelf_linux.c:545 earmelf_linux_eabi.c:545 earmelf_linux_fdpiceabi.c:545
#: earmelf_nacl.c:545 earmelf_nbsd.c:544 earmelf_phoenix.c:545
#: earmelf_vxworks.c:544 earmelfb.c:544 earmelfb_fbsd.c:544
#: earmelfb_fuchsia.c:545 earmelfb_linux.c:545 earmelfb_linux_eabi.c:545
#: earmelfb_linux_fdpiceabi.c:545 earmelfb_nacl.c:545 earmelfb_nbsd.c:544
#: earmnto.c:544 earmpe.c:1523 eavr1.c:145 eavr2.c:145 eavr25.c:145 eavr3.c:145
#: eavr31.c:145 eavr35.c:145 eavr4.c:145 eavr5.c:145 eavr51.c:145 eavr6.c:145
#: eavrtiny.c:145 eavrxmega1.c:145 eavrxmega2.c:145 eavrxmega2_flmap.c:145
#: eavrxmega3.c:145 eavrxmega4.c:145 eavrxmega4_flmap.c:145 eavrxmega5.c:145
#: eavrxmega6.c:145 eavrxmega7.c:145 eelf32briscv.c:129
#: eelf32briscv_ilp32.c:129 eelf32briscv_ilp32f.c:129 eelf32lriscv.c:129
#: eelf32lriscv_ilp32.c:129 eelf32lriscv_ilp32f.c:129 eelf64briscv.c:129
#: eelf64briscv_lp64.c:129 eelf64briscv_lp64f.c:129 eelf64lriscv.c:129
#: eelf64lriscv_lp64.c:129 eelf64lriscv_lp64f.c:129 ei386pe.c:1523
#: ei386pe_posix.c:1523 emcorepe.c:1523 ends32belf.c:77 ends32belf16m.c:77
#: ends32belf_linux.c:77 ends32elf.c:77 ends32elf16m.c:77 ends32elf_linux.c:77
#: escore3_elf.c:82 escore7_elf.c:82 eshpe.c:1523 ev850.c:94 ev850_rh850.c:94
msgid "%F%P: error: cannot change output format whilst linking %s binaries\n"
msgstr "%F%P : erreur : impossible de changer le format de sortie lors de l'édition de liens de binaires %s\n"
#: eaarch64cloudabi.c:397 eaarch64cloudabi.c:457 eaarch64cloudabib.c:397
#: eaarch64cloudabib.c:457 eaarch64elf.c:396 eaarch64elf.c:456
#: eaarch64elf32.c:396 eaarch64elf32.c:456 eaarch64elf32b.c:396
#: eaarch64elf32b.c:456 eaarch64elfb.c:396 eaarch64elfb.c:456
#: eaarch64fbsd.c:397 eaarch64fbsd.c:457 eaarch64fbsdb.c:397
#: eaarch64fbsdb.c:457 eaarch64haiku.c:397 eaarch64haiku.c:457
#: eaarch64linux.c:397 eaarch64linux.c:457 eaarch64linux32.c:397
#: eaarch64linux32.c:457 eaarch64linux32b.c:397 eaarch64linux32b.c:457
#: eaarch64linuxb.c:397 eaarch64linuxb.c:457 eaarch64nto.c:397
#: eaarch64nto.c:457
msgid "%X%P: error: unrecognized value '-z %s'\n"
msgstr "%X%P : erreur : valeur « -z %s » non reconnue\n"
#: eaarch64cloudabi.c:713 eaarch64cloudabib.c:713 eaarch64elf.c:712
#: eaarch64elf32.c:712 eaarch64elf32b.c:712 eaarch64elfb.c:712
#: eaarch64fbsd.c:713 eaarch64fbsdb.c:713 eaarch64haiku.c:713
#: eaarch64linux.c:713 eaarch64linux32.c:713 eaarch64linux32b.c:713
#: eaarch64linuxb.c:713 eaarch64nto.c:875 earcelf.c:233 earclinux.c:324
#: earclinux_nps.c:324 earcv2elf.c:212 earcv2elfx.c:212 earmelf.c:848
#: earmelf_fbsd.c:848 earmelf_fuchsia.c:849 earmelf_haiku.c:849
#: earmelf_linux.c:849 earmelf_linux_eabi.c:849 earmelf_linux_fdpiceabi.c:849
#: earmelf_nacl.c:849 earmelf_nbsd.c:848 earmelf_phoenix.c:849
#: earmelf_vxworks.c:880 earmelfb.c:848 earmelfb_fbsd.c:848
#: earmelfb_fuchsia.c:849 earmelfb_linux.c:849 earmelfb_linux_eabi.c:849
#: earmelfb_linux_fdpiceabi.c:849 earmelfb_nacl.c:849 earmelfb_nbsd.c:848
#: earmnto.c:808 eavr1.c:428 eavr2.c:428 eavr25.c:428 eavr3.c:428 eavr31.c:428
#: eavr35.c:428 eavr4.c:428 eavr5.c:428 eavr51.c:428 eavr6.c:428 eavrtiny.c:428
#: eavrxmega1.c:428 eavrxmega2.c:428 eavrxmega2_flmap.c:428 eavrxmega3.c:428
#: eavrxmega4.c:428 eavrxmega4_flmap.c:428 eavrxmega5.c:428 eavrxmega6.c:428
#: eavrxmega7.c:428 ecriself.c:237 ecrislinux.c:284 ecskyelf.c:476
#: ecskyelf_linux.c:563 ed10velf.c:212 eelf32_sparc.c:324
#: eelf32_sparc_sol2.c:456 eelf32_sparc_vxworks.c:356 eelf32_spu.c:796
#: eelf32_tic6x_be.c:415 eelf32_tic6x_elf_be.c:415 eelf32_tic6x_elf_le.c:415
#: eelf32_tic6x_le.c:415 eelf32_tic6x_linux_be.c:415
#: eelf32_tic6x_linux_le.c:415 eelf32_x86_64.c:8364 eelf32am33lin.c:283
#: eelf32b4300.c:528 eelf32bfin.c:297 eelf32bfinfd.c:337 eelf32bmip.c:528
#: eelf32bmipn32.c:542 eelf32briscv.c:402 eelf32briscv_ilp32.c:402
#: eelf32briscv_ilp32f.c:402 eelf32bsmip.c:542 eelf32btsmip.c:528
#: eelf32btsmip_fbsd.c:528 eelf32btsmipn32.c:528 eelf32btsmipn32_fbsd.c:528
#: eelf32cr16.c:362 eelf32crx.c:249 eelf32ebmip.c:528 eelf32ebmipvxworks.c:559
#: eelf32elmip.c:528 eelf32elmipvxworks.c:559 eelf32epiphany.c:237
#: eelf32epiphany_4x4.c:214 eelf32frvfd.c:323 eelf32ip2k.c:237 eelf32kvx.c:549
#: eelf32l4300.c:528 eelf32lm32.c:237 eelf32lm32fd.c:323 eelf32lmip.c:528
#: eelf32loongarch.c:380 eelf32lppc.c:553 eelf32lppclinux.c:553
#: eelf32lppcnto.c:553 eelf32lppcsim.c:553 eelf32lr5900.c:482
#: eelf32lr5900n32.c:481 eelf32lriscv.c:402 eelf32lriscv_ilp32.c:402
#: eelf32lriscv_ilp32f.c:402 eelf32lsmip.c:528 eelf32ltsmip.c:528
#: eelf32ltsmip_fbsd.c:528 eelf32ltsmipn32.c:528 eelf32ltsmipn32_fbsd.c:528
#: eelf32m32c.c:248 eelf32mb_linux.c:324 eelf32mbel_linux.c:324
#: eelf32mcore.c:240 eelf32mep.c:212 eelf32metag.c:570 eelf32microblaze.c:212
#: eelf32microblazeel.c:212 eelf32mipswindiss.c:441 eelf32moxie.c:237
#: eelf32or1k.c:238 eelf32or1k_linux.c:324 eelf32ppc.c:553 eelf32ppc_fbsd.c:553
#: eelf32ppchaiku.c:553 eelf32ppclinux.c:553 eelf32ppcnto.c:553
#: eelf32ppcsim.c:553 eelf32ppcvxworks.c:523 eelf32ppcwindiss.c:553
#: eelf32rl78.c:237 eelf32rx.c:259 eelf32rx_linux.c:250 eelf32tilegx.c:324
#: eelf32tilegx_be.c:324 eelf32tilepro.c:324 eelf32vax.c:283 eelf32visium.c:212
#: eelf32xstormy16.c:223 eelf32xtensa.c:2227 eelf32z80.c:239 eelf64_aix.c:283
#: eelf64_ia64.c:352 eelf64_ia64_fbsd.c:352 eelf64_s390.c:421
#: eelf64_sparc.c:324 eelf64_sparc_fbsd.c:324 eelf64_sparc_sol2.c:456
#: eelf64alpha.c:412 eelf64alpha_fbsd.c:412 eelf64alpha_nbsd.c:412
#: eelf64bmip.c:542 eelf64bpf.c:212 eelf64briscv.c:402 eelf64briscv_lp64.c:402
#: eelf64briscv_lp64f.c:402 eelf64btsmip.c:528 eelf64btsmip_fbsd.c:528
#: eelf64hppa.c:233 eelf64kvx.c:549 eelf64kvx_linux.c:586 eelf64loongarch.c:380
#: eelf64lppc.c:988 eelf64lppc_fbsd.c:988 eelf64lriscv.c:402
#: eelf64lriscv_lp64.c:402 eelf64lriscv_lp64f.c:402 eelf64ltsmip.c:528
#: eelf64ltsmip_fbsd.c:528 eelf64mmix.c:394 eelf64ppc.c:988
#: eelf64ppc_fbsd.c:988 eelf64rdos.c:345 eelf64tilegx.c:324
#: eelf64tilegx_be.c:324 eelf_i386.c:7822 eelf_i386_be.c:307
#: eelf_i386_fbsd.c:354 eelf_i386_haiku.c:354 eelf_i386_ldso.c:314
#: eelf_i386_sol2.c:486 eelf_i386_vxworks.c:380 eelf_iamcu.c:354
#: eelf_mipsel_haiku.c:528 eelf_s390.c:324 eelf_x86_64.c:8364
#: eelf_x86_64_cloudabi.c:362 eelf_x86_64_fbsd.c:362 eelf_x86_64_haiku.c:362
#: eelf_x86_64_sol2.c:494 eh8300elf.c:237 eh8300elf_linux.c:237
#: eh8300helf.c:237 eh8300helf_linux.c:237 eh8300hnelf.c:237 eh8300self.c:237
#: eh8300self_linux.c:237 eh8300snelf.c:237 eh8300sxelf.c:237
#: eh8300sxelf_linux.c:237 eh8300sxnelf.c:237 ehppa64linux.c:283 ehppaelf.c:491
#: ehppalinux.c:603 ehppanbsd.c:603 ehppaobsd.c:603 ei386lynx.c:298
#: ei386moss.c:298 ei386nto.c:298 em32relf.c:237 em32relf_linux.c:323
#: em32rlelf.c:237 em32rlelf_linux.c:323 em68hc11elf.c:493 em68hc11elfb.c:493
#: em68hc12elf.c:493 em68hc12elfb.c:493 em68kelf.c:478 em68kelfnbsd.c:478
#: emn10300.c:283 ends32belf.c:336 ends32belf16m.c:336 ends32belf_linux.c:369
#: ends32elf.c:336 ends32elf16m.c:336 ends32elf_linux.c:369 epruelf.c:233
#: escore3_elf.c:301 escore7_elf.c:301 eshelf.c:283 eshelf_fd.c:324
#: eshelf_linux.c:324 eshelf_nbsd.c:283 eshelf_nto.c:283 eshelf_uclinux.c:283
#: eshelf_vxworks.c:315 eshlelf.c:283 eshlelf_fd.c:324 eshlelf_linux.c:324
#: eshlelf_nbsd.c:283 eshlelf_nto.c:283 eshlelf_vxworks.c:315 ev850.c:259
#: ev850_rh850.c:259
msgid "%F%P: --compress-debug-sections=zstd: ld is not built with zstd support\n"
msgstr "%F%P : --compress-debug-sections=zstd : ld n'a pas été construit avec la prise en charge de zstd\n"
#: eaarch64cloudabi.c:718 eaarch64cloudabib.c:718 eaarch64elf.c:717
#: eaarch64elf32.c:717 eaarch64elf32b.c:717 eaarch64elfb.c:717
#: eaarch64fbsd.c:718 eaarch64fbsdb.c:718 eaarch64haiku.c:718
#: eaarch64linux.c:718 eaarch64linux32.c:718 eaarch64linux32b.c:718
#: eaarch64linuxb.c:718 eaarch64nto.c:880 earcelf.c:238 earclinux.c:329
#: earclinux_nps.c:329 earcv2elf.c:217 earcv2elfx.c:217 earmelf.c:853
#: earmelf_fbsd.c:853 earmelf_fuchsia.c:854 earmelf_haiku.c:854
#: earmelf_linux.c:854 earmelf_linux_eabi.c:854 earmelf_linux_fdpiceabi.c:854
#: earmelf_nacl.c:854 earmelf_nbsd.c:853 earmelf_phoenix.c:854
#: earmelf_vxworks.c:885 earmelfb.c:853 earmelfb_fbsd.c:853
#: earmelfb_fuchsia.c:854 earmelfb_linux.c:854 earmelfb_linux_eabi.c:854
#: earmelfb_linux_fdpiceabi.c:854 earmelfb_nacl.c:854 earmelfb_nbsd.c:853
#: earmnto.c:813 eavr1.c:433 eavr2.c:433 eavr25.c:433 eavr3.c:433 eavr31.c:433
#: eavr35.c:433 eavr4.c:433 eavr5.c:433 eavr51.c:433 eavr6.c:433 eavrtiny.c:433
#: eavrxmega1.c:433 eavrxmega2.c:433 eavrxmega2_flmap.c:433 eavrxmega3.c:433
#: eavrxmega4.c:433 eavrxmega4_flmap.c:433 eavrxmega5.c:433 eavrxmega6.c:433
#: eavrxmega7.c:433 ecriself.c:242 ecrislinux.c:289 ecskyelf.c:481
#: ecskyelf_linux.c:568 ed10velf.c:217 eelf32_sparc.c:329
#: eelf32_sparc_sol2.c:461 eelf32_sparc_vxworks.c:361 eelf32_spu.c:801
#: eelf32_tic6x_be.c: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:8369 eelf32am33lin.c:288
#: eelf32b4300.c:533 eelf32bfin.c:302 eelf32bfinfd.c:342 eelf32bmip.c:533
#: eelf32bmipn32.c:547 eelf32briscv.c:407 eelf32briscv_ilp32.c:407
#: eelf32briscv_ilp32f.c:407 eelf32bsmip.c:547 eelf32btsmip.c:533
#: eelf32btsmip_fbsd.c:533 eelf32btsmipn32.c:533 eelf32btsmipn32_fbsd.c:533
#: eelf32cr16.c:367 eelf32crx.c:254 eelf32ebmip.c:533 eelf32ebmipvxworks.c:564
#: eelf32elmip.c:533 eelf32elmipvxworks.c:564 eelf32epiphany.c:242
#: eelf32epiphany_4x4.c:219 eelf32frvfd.c:328 eelf32ip2k.c:242 eelf32kvx.c:554
#: eelf32l4300.c:533 eelf32lm32.c:242 eelf32lm32fd.c:328 eelf32lmip.c:533
#: eelf32loongarch.c:385 eelf32lppc.c:558 eelf32lppclinux.c:558
#: eelf32lppcnto.c:558 eelf32lppcsim.c:558 eelf32lr5900.c:487
#: eelf32lr5900n32.c:486 eelf32lriscv.c:407 eelf32lriscv_ilp32.c:407
#: eelf32lriscv_ilp32f.c:407 eelf32lsmip.c:533 eelf32ltsmip.c:533
#: eelf32ltsmip_fbsd.c:533 eelf32ltsmipn32.c:533 eelf32ltsmipn32_fbsd.c:533
#: eelf32m32c.c:253 eelf32mb_linux.c:329 eelf32mbel_linux.c:329
#: eelf32mcore.c:245 eelf32mep.c:217 eelf32metag.c:575 eelf32microblaze.c:217
#: eelf32microblazeel.c:217 eelf32mipswindiss.c:446 eelf32moxie.c:242
#: eelf32or1k.c:243 eelf32or1k_linux.c:329 eelf32ppc.c:558 eelf32ppc_fbsd.c:558
#: eelf32ppchaiku.c:558 eelf32ppclinux.c:558 eelf32ppcnto.c:558
#: eelf32ppcsim.c:558 eelf32ppcvxworks.c:528 eelf32ppcwindiss.c:558
#: eelf32rl78.c:242 eelf32rx.c:264 eelf32rx_linux.c:255 eelf32tilegx.c:329
#: eelf32tilegx_be.c:329 eelf32tilepro.c:329 eelf32vax.c:288 eelf32visium.c:217
#: eelf32xstormy16.c:228 eelf32xtensa.c:2232 eelf32z80.c:244 eelf64_aix.c:288
#: eelf64_ia64.c:357 eelf64_ia64_fbsd.c:357 eelf64_s390.c:426
#: eelf64_sparc.c:329 eelf64_sparc_fbsd.c:329 eelf64_sparc_sol2.c:461
#: eelf64alpha.c:417 eelf64alpha_fbsd.c:417 eelf64alpha_nbsd.c:417
#: eelf64bmip.c:547 eelf64bpf.c:217 eelf64briscv.c:407 eelf64briscv_lp64.c:407
#: eelf64briscv_lp64f.c:407 eelf64btsmip.c:533 eelf64btsmip_fbsd.c:533
#: eelf64hppa.c:238 eelf64kvx.c:554 eelf64kvx_linux.c:591 eelf64loongarch.c:385
#: eelf64lppc.c:993 eelf64lppc_fbsd.c:993 eelf64lriscv.c:407
#: eelf64lriscv_lp64.c:407 eelf64lriscv_lp64f.c:407 eelf64ltsmip.c:533
#: eelf64ltsmip_fbsd.c:533 eelf64mmix.c:399 eelf64ppc.c:993
#: eelf64ppc_fbsd.c:993 eelf64rdos.c:350 eelf64tilegx.c:329
#: eelf64tilegx_be.c:329 eelf_i386.c:7827 eelf_i386_be.c:312
#: eelf_i386_fbsd.c:359 eelf_i386_haiku.c:359 eelf_i386_ldso.c:319
#: eelf_i386_sol2.c:491 eelf_i386_vxworks.c:385 eelf_iamcu.c:359
#: eelf_mipsel_haiku.c:533 eelf_s390.c:329 eelf_x86_64.c:8369
#: eelf_x86_64_cloudabi.c:367 eelf_x86_64_fbsd.c:367 eelf_x86_64_haiku.c:367
#: eelf_x86_64_sol2.c:499 eh8300elf.c:242 eh8300elf_linux.c:242
#: eh8300helf.c:242 eh8300helf_linux.c:242 eh8300hnelf.c:242 eh8300self.c:242
#: eh8300self_linux.c:242 eh8300snelf.c:242 eh8300sxelf.c:242
#: eh8300sxelf_linux.c:242 eh8300sxnelf.c:242 ehppa64linux.c:288 ehppaelf.c:496
#: ehppalinux.c:608 ehppanbsd.c:608 ehppaobsd.c:608 ei386lynx.c:303
#: ei386moss.c:303 ei386nto.c:303 em32relf.c:242 em32relf_linux.c:328
#: em32rlelf.c:242 em32rlelf_linux.c:328 em68hc11elf.c:498 em68hc11elfb.c:498
#: em68hc12elf.c:498 em68hc12elfb.c:498 em68kelf.c:483 em68kelfnbsd.c:483
#: emn10300.c:288 ends32belf.c:341 ends32belf16m.c:341 ends32belf_linux.c:374
#: ends32elf.c:341 ends32elf16m.c:341 ends32elf_linux.c:374 epruelf.c:238
#: escore3_elf.c:306 escore7_elf.c:306 eshelf.c:288 eshelf_fd.c:329
#: eshelf_linux.c:329 eshelf_nbsd.c:288 eshelf_nto.c:288 eshelf_uclinux.c:288
#: eshelf_vxworks.c:320 eshlelf.c:288 eshlelf_fd.c:329 eshlelf_linux.c:329
#: eshlelf_nbsd.c:288 eshlelf_nto.c:288 eshlelf_vxworks.c:320 ev850.c:264
#: ev850_rh850.c:264
msgid "%F%P: invalid --compress-debug-sections option: `%s'\n"
msgstr "%F%P : option --compress-debug-sections invalide : « %s »\n"
#: eaarch64cloudabi.c:776 eaarch64cloudabib.c:776 eaarch64elf.c:775
#: eaarch64elf32.c:775 eaarch64elf32b.c:775 eaarch64elfb.c:775
#: eaarch64fbsd.c:776 eaarch64fbsdb.c:776 eaarch64haiku.c:776
#: eaarch64linux.c:776 eaarch64linux32.c:776 eaarch64linux32b.c:776
#: eaarch64linuxb.c:776 eaarch64nto.c:938 earcelf.c:296 earclinux.c:387
#: earclinux_nps.c:387 earmelf.c:911 earmelf_fbsd.c:911 earmelf_fuchsia.c:912
#: earmelf_haiku.c:912 earmelf_linux.c:912 earmelf_linux_eabi.c:912
#: earmelf_linux_fdpiceabi.c:912 earmelf_nacl.c:912 earmelf_nbsd.c:911
#: earmelf_phoenix.c:912 earmelf_vxworks.c:943 earmelfb.c:911
#: earmelfb_fbsd.c:911 earmelfb_fuchsia.c:912 earmelfb_linux.c:912
#: earmelfb_linux_eabi.c:912 earmelfb_linux_fdpiceabi.c:912 earmelfb_nacl.c:912
#: earmelfb_nbsd.c:911 earmnto.c:871 ecrislinux.c:347 ecskyelf_linux.c:626
#: eelf32_sparc.c:387 eelf32_sparc_sol2.c:519 eelf32_sparc_vxworks.c:419
#: eelf32_tic6x_be.c:478 eelf32_tic6x_elf_be.c:478 eelf32_tic6x_elf_le.c:478
#: eelf32_tic6x_le.c:478 eelf32_tic6x_linux_be.c:478
#: eelf32_tic6x_linux_le.c:478 eelf32_x86_64.c:8427 eelf32am33lin.c:346
#: eelf32b4300.c:591 eelf32bfin.c:360 eelf32bfinfd.c:400 eelf32bmip.c:591
#: eelf32bmipn32.c:605 eelf32briscv.c:465 eelf32briscv_ilp32.c:465
#: eelf32briscv_ilp32f.c:465 eelf32bsmip.c:605 eelf32btsmip.c:591
#: eelf32btsmip_fbsd.c:591 eelf32btsmipn32.c:591 eelf32btsmipn32_fbsd.c:591
#: eelf32ebmip.c:591 eelf32ebmipvxworks.c:622 eelf32elmip.c:591
#: eelf32elmipvxworks.c:622 eelf32frvfd.c:386 eelf32kvx.c:612 eelf32l4300.c:591
#: eelf32lm32fd.c:386 eelf32lmip.c:591 eelf32loongarch.c:443 eelf32lppc.c:616
#: eelf32lppclinux.c:616 eelf32lppcnto.c:616 eelf32lppcsim.c:616
#: eelf32lriscv.c:465 eelf32lriscv_ilp32.c:465 eelf32lriscv_ilp32f.c:465
#: eelf32lsmip.c:591 eelf32ltsmip.c:591 eelf32ltsmip_fbsd.c:591
#: eelf32ltsmipn32.c:591 eelf32ltsmipn32_fbsd.c:591 eelf32mb_linux.c:387
#: eelf32mbel_linux.c:387 eelf32metag.c:633 eelf32or1k_linux.c:387
#: eelf32ppc.c:616 eelf32ppc_fbsd.c:616 eelf32ppchaiku.c:616
#: eelf32ppclinux.c:616 eelf32ppcnto.c:616 eelf32ppcsim.c:616
#: eelf32ppcvxworks.c:586 eelf32ppcwindiss.c:616 eelf32tilegx.c:387
#: eelf32tilegx_be.c:387 eelf32tilepro.c:387 eelf32vax.c:346
#: eelf32xtensa.c:2290 eelf64_aix.c:346 eelf64_ia64.c:415
#: eelf64_ia64_fbsd.c:415 eelf64_s390.c:484 eelf64_sparc.c:387
#: eelf64_sparc_fbsd.c:387 eelf64_sparc_sol2.c:519 eelf64alpha.c:475
#: eelf64alpha_fbsd.c:475 eelf64alpha_nbsd.c:475 eelf64bmip.c:605
#: eelf64briscv.c:465 eelf64briscv_lp64.c:465 eelf64briscv_lp64f.c:465
#: eelf64btsmip.c:591 eelf64btsmip_fbsd.c:591 eelf64hppa.c:296 eelf64kvx.c:612
#: eelf64kvx_linux.c:649 eelf64loongarch.c:443 eelf64lppc.c:1051
#: eelf64lppc_fbsd.c:1051 eelf64lriscv.c:465 eelf64lriscv_lp64.c:465
#: eelf64lriscv_lp64f.c:465 eelf64ltsmip.c:591 eelf64ltsmip_fbsd.c:591
#: eelf64mmix.c:457 eelf64ppc.c:1051 eelf64ppc_fbsd.c:1051 eelf64rdos.c:408
#: eelf64tilegx.c:387 eelf64tilegx_be.c:387 eelf_i386.c:7885 eelf_i386_be.c:370
#: eelf_i386_fbsd.c:417 eelf_i386_haiku.c:417 eelf_i386_ldso.c:377
#: eelf_i386_sol2.c:549 eelf_i386_vxworks.c:443 eelf_iamcu.c:417
#: eelf_mipsel_haiku.c:591 eelf_s390.c:387 eelf_x86_64.c:8427
#: eelf_x86_64_cloudabi.c:425 eelf_x86_64_fbsd.c:425 eelf_x86_64_haiku.c:425
#: eelf_x86_64_sol2.c:557 ehppa64linux.c:346 ehppalinux.c:666 ehppanbsd.c:666
#: ehppaobsd.c:666 ei386lynx.c:361 ei386moss.c:361 ei386nto.c:361
#: em32relf_linux.c:386 em32rlelf_linux.c:386 em68kelf.c:541 em68kelfnbsd.c:541
#: emn10300.c:346 ends32belf_linux.c:432 ends32elf_linux.c:432
#: escore3_elf.c:364 escore7_elf.c:364 eshelf.c:346 eshelf_fd.c:387
#: eshelf_linux.c:387 eshelf_nbsd.c:346 eshelf_nto.c:346 eshelf_uclinux.c:346
#: eshelf_vxworks.c:378 eshlelf.c:346 eshlelf_fd.c:387 eshlelf_linux.c:387
#: eshlelf_nbsd.c:346 eshlelf_nto.c:346 eshlelf_vxworks.c:378
msgid "%F%P: invalid hash style `%s'\n"
msgstr "%F%P : style de hachage « %s » invalide\n"
#: eaarch64cloudabi.c:793 eaarch64cloudabib.c:793 eaarch64elf.c:792
#: eaarch64elf32.c:792 eaarch64elf32b.c:792 eaarch64elfb.c:792
#: eaarch64fbsd.c:793 eaarch64fbsdb.c:793 eaarch64haiku.c:793
#: eaarch64linux.c:793 eaarch64linux32.c:793 eaarch64linux32b.c:793
#: eaarch64linuxb.c:793 eaarch64nto.c:955 earcelf.c:313 earclinux.c:404
#: earclinux_nps.c:404 earcv2elf.c:241 earcv2elfx.c:241 earmelf.c:928
#: earmelf_fbsd.c:928 earmelf_fuchsia.c:929 earmelf_haiku.c:929
#: earmelf_linux.c:929 earmelf_linux_eabi.c:929 earmelf_linux_fdpiceabi.c:929
#: earmelf_nacl.c:929 earmelf_nbsd.c:928 earmelf_phoenix.c:929
#: earmelf_vxworks.c:960 earmelfb.c:928 earmelfb_fbsd.c:928
#: earmelfb_fuchsia.c:929 earmelfb_linux.c:929 earmelfb_linux_eabi.c:929
#: earmelfb_linux_fdpiceabi.c:929 earmelfb_nacl.c:929 earmelfb_nbsd.c:928
#: earmnto.c:888 eavr1.c:457 eavr2.c:457 eavr25.c:457 eavr3.c:457 eavr31.c:457
#: eavr35.c:457 eavr4.c:457 eavr5.c:457 eavr51.c:457 eavr6.c:457 eavrtiny.c:457
#: eavrxmega1.c:457 eavrxmega2.c:457 eavrxmega2_flmap.c:457 eavrxmega3.c:457
#: eavrxmega4.c:457 eavrxmega4_flmap.c:457 eavrxmega5.c:457 eavrxmega6.c:457
#: eavrxmega7.c:457 ecriself.c:266 ecrislinux.c:364 ecskyelf.c:505
#: ecskyelf_linux.c:643 ed10velf.c:241 eelf32_sparc.c:404
#: eelf32_sparc_sol2.c:536 eelf32_sparc_vxworks.c:436 eelf32_spu.c:825
#: eelf32_tic6x_be.c:495 eelf32_tic6x_elf_be.c:495 eelf32_tic6x_elf_le.c:495
#: eelf32_tic6x_le.c:495 eelf32_tic6x_linux_be.c:495
#: eelf32_tic6x_linux_le.c:495 eelf32_x86_64.c:8444 eelf32am33lin.c:363
#: eelf32b4300.c:608 eelf32bfin.c:377 eelf32bfinfd.c:417 eelf32bmip.c:608
#: eelf32bmipn32.c:622 eelf32briscv.c:482 eelf32briscv_ilp32.c:482
#: eelf32briscv_ilp32f.c:482 eelf32bsmip.c:622 eelf32btsmip.c:608
#: eelf32btsmip_fbsd.c:608 eelf32btsmipn32.c:608 eelf32btsmipn32_fbsd.c:608
#: eelf32cr16.c:391 eelf32crx.c:278 eelf32ebmip.c:608 eelf32ebmipvxworks.c:639
#: eelf32elmip.c:608 eelf32elmipvxworks.c:639 eelf32epiphany.c:266
#: eelf32epiphany_4x4.c:243 eelf32frvfd.c:403 eelf32ip2k.c:266 eelf32kvx.c:629
#: eelf32l4300.c:608 eelf32lm32.c:266 eelf32lm32fd.c:403 eelf32lmip.c:608
#: eelf32loongarch.c:460 eelf32lppc.c:633 eelf32lppclinux.c:633
#: eelf32lppcnto.c:633 eelf32lppcsim.c:633 eelf32lr5900.c:511
#: eelf32lr5900n32.c:510 eelf32lriscv.c:482 eelf32lriscv_ilp32.c:482
#: eelf32lriscv_ilp32f.c:482 eelf32lsmip.c:608 eelf32ltsmip.c:608
#: eelf32ltsmip_fbsd.c:608 eelf32ltsmipn32.c:608 eelf32ltsmipn32_fbsd.c:608
#: eelf32m32c.c:277 eelf32mb_linux.c:404 eelf32mbel_linux.c:404
#: eelf32mcore.c:269 eelf32mep.c:241 eelf32metag.c:650 eelf32microblaze.c:241
#: eelf32microblazeel.c:241 eelf32mipswindiss.c:470 eelf32moxie.c:266
#: eelf32or1k.c:267 eelf32or1k_linux.c:404 eelf32ppc.c:633 eelf32ppc_fbsd.c:633
#: eelf32ppchaiku.c:633 eelf32ppclinux.c:633 eelf32ppcnto.c:633
#: eelf32ppcsim.c:633 eelf32ppcvxworks.c:603 eelf32ppcwindiss.c:633
#: eelf32rl78.c:266 eelf32rx.c:288 eelf32rx_linux.c:279 eelf32tilegx.c:404
#: eelf32tilegx_be.c:404 eelf32tilepro.c:404 eelf32vax.c:363 eelf32visium.c:241
#: eelf32xstormy16.c:252 eelf32xtensa.c:2307 eelf32z80.c:268 eelf64_aix.c:363
#: eelf64_ia64.c:432 eelf64_ia64_fbsd.c:432 eelf64_s390.c:501
#: eelf64_sparc.c:404 eelf64_sparc_fbsd.c:404 eelf64_sparc_sol2.c:536
#: eelf64alpha.c:492 eelf64alpha_fbsd.c:492 eelf64alpha_nbsd.c:492
#: eelf64bmip.c:622 eelf64bpf.c:241 eelf64briscv.c:482 eelf64briscv_lp64.c:482
#: eelf64briscv_lp64f.c:482 eelf64btsmip.c:608 eelf64btsmip_fbsd.c:608
#: eelf64hppa.c:313 eelf64kvx.c:629 eelf64kvx_linux.c:666 eelf64loongarch.c:460
#: eelf64lppc.c:1068 eelf64lppc_fbsd.c:1068 eelf64lriscv.c:482
#: eelf64lriscv_lp64.c:482 eelf64lriscv_lp64f.c:482 eelf64ltsmip.c:608
#: eelf64ltsmip_fbsd.c:608 eelf64mmix.c:474 eelf64ppc.c:1068
#: eelf64ppc_fbsd.c:1068 eelf64rdos.c:425 eelf64tilegx.c:404
#: eelf64tilegx_be.c:404 eelf_i386.c:7902 eelf_i386_be.c:387
#: eelf_i386_fbsd.c:434 eelf_i386_haiku.c:434 eelf_i386_ldso.c:394
#: eelf_i386_sol2.c:566 eelf_i386_vxworks.c:460 eelf_iamcu.c:434
#: eelf_mipsel_haiku.c:608 eelf_s390.c:404 eelf_x86_64.c:8444
#: eelf_x86_64_cloudabi.c:442 eelf_x86_64_fbsd.c:442 eelf_x86_64_haiku.c:442
#: eelf_x86_64_sol2.c:574 eh8300elf.c:266 eh8300elf_linux.c:266
#: eh8300helf.c:266 eh8300helf_linux.c:266 eh8300hnelf.c:266 eh8300self.c:266
#: eh8300self_linux.c:266 eh8300snelf.c:266 eh8300sxelf.c:266
#: eh8300sxelf_linux.c:266 eh8300sxnelf.c:266 ehppa64linux.c:363 ehppaelf.c:520
#: ehppalinux.c:683 ehppanbsd.c:683 ehppaobsd.c:683 ei386lynx.c:378
#: ei386moss.c:378 ei386nto.c:378 em32relf.c:266 em32relf_linux.c:403
#: em32rlelf.c:266 em32rlelf_linux.c:403 em68hc11elf.c:522 em68hc11elfb.c:522
#: em68hc12elf.c:522 em68hc12elfb.c:522 em68kelf.c:558 em68kelfnbsd.c:558
#: emn10300.c:363 ends32belf.c:365 ends32belf16m.c:365 ends32belf_linux.c:449
#: ends32elf.c:365 ends32elf16m.c:365 ends32elf_linux.c:449 epruelf.c:262
#: escore3_elf.c:381 escore7_elf.c:381 eshelf.c:363 eshelf_fd.c:404
#: eshelf_linux.c:404 eshelf_nbsd.c:363 eshelf_nto.c:363 eshelf_uclinux.c:363
#: eshelf_vxworks.c:395 eshlelf.c:363 eshlelf_fd.c:404 eshlelf_linux.c:404
#: eshlelf_nbsd.c:363 eshlelf_nto.c:363 eshlelf_vxworks.c:395 ev850.c:288
#: ev850_rh850.c:288
msgid "%F%P: invalid maximum page size `%s'\n"
msgstr "%F%P : taille maximale de page « %s » invalide\n"
#: eaarch64cloudabi.c:803 eaarch64cloudabib.c:803 eaarch64elf.c:802
#: eaarch64elf32.c:802 eaarch64elf32b.c:802 eaarch64elfb.c:802
#: eaarch64fbsd.c:803 eaarch64fbsdb.c:803 eaarch64haiku.c:803
#: eaarch64linux.c:803 eaarch64linux32.c:803 eaarch64linux32b.c:803
#: eaarch64linuxb.c:803 eaarch64nto.c:965 earcelf.c:323 earclinux.c:414
#: earclinux_nps.c:414 earcv2elf.c:251 earcv2elfx.c:251 earmelf.c:938
#: earmelf_fbsd.c:938 earmelf_fuchsia.c:939 earmelf_haiku.c:939
#: earmelf_linux.c:939 earmelf_linux_eabi.c:939 earmelf_linux_fdpiceabi.c:939
#: earmelf_nacl.c:939 earmelf_nbsd.c:938 earmelf_phoenix.c:939
#: earmelf_vxworks.c:970 earmelfb.c:938 earmelfb_fbsd.c:938
#: earmelfb_fuchsia.c:939 earmelfb_linux.c:939 earmelfb_linux_eabi.c:939
#: earmelfb_linux_fdpiceabi.c:939 earmelfb_nacl.c:939 earmelfb_nbsd.c:938
#: earmnto.c:898 eavr1.c:467 eavr2.c:467 eavr25.c:467 eavr3.c:467 eavr31.c:467
#: eavr35.c:467 eavr4.c:467 eavr5.c:467 eavr51.c:467 eavr6.c:467 eavrtiny.c:467
#: eavrxmega1.c:467 eavrxmega2.c:467 eavrxmega2_flmap.c:467 eavrxmega3.c:467
#: eavrxmega4.c:467 eavrxmega4_flmap.c:467 eavrxmega5.c:467 eavrxmega6.c:467
#: eavrxmega7.c:467 ecriself.c:276 ecrislinux.c:374 ecskyelf.c:515
#: ecskyelf_linux.c:653 ed10velf.c:251 eelf32_sparc.c:414
#: eelf32_sparc_sol2.c:546 eelf32_sparc_vxworks.c:446 eelf32_spu.c:835
#: eelf32_tic6x_be.c:505 eelf32_tic6x_elf_be.c:505 eelf32_tic6x_elf_le.c:505
#: eelf32_tic6x_le.c:505 eelf32_tic6x_linux_be.c:505
#: eelf32_tic6x_linux_le.c:505 eelf32_x86_64.c:8454 eelf32am33lin.c:373
#: eelf32b4300.c:618 eelf32bfin.c:387 eelf32bfinfd.c:427 eelf32bmip.c:618
#: eelf32bmipn32.c:632 eelf32briscv.c:492 eelf32briscv_ilp32.c:492
#: eelf32briscv_ilp32f.c:492 eelf32bsmip.c:632 eelf32btsmip.c:618
#: eelf32btsmip_fbsd.c:618 eelf32btsmipn32.c:618 eelf32btsmipn32_fbsd.c:618
#: eelf32cr16.c:401 eelf32crx.c:288 eelf32ebmip.c:618 eelf32ebmipvxworks.c:649
#: eelf32elmip.c:618 eelf32elmipvxworks.c:649 eelf32epiphany.c:276
#: eelf32epiphany_4x4.c:253 eelf32frvfd.c:413 eelf32ip2k.c:276 eelf32kvx.c:639
#: eelf32l4300.c:618 eelf32lm32.c:276 eelf32lm32fd.c:413 eelf32lmip.c:618
#: eelf32loongarch.c:470 eelf32lppc.c:643 eelf32lppclinux.c:643
#: eelf32lppcnto.c:643 eelf32lppcsim.c:643 eelf32lr5900.c:521
#: eelf32lr5900n32.c:520 eelf32lriscv.c:492 eelf32lriscv_ilp32.c:492
#: eelf32lriscv_ilp32f.c:492 eelf32lsmip.c:618 eelf32ltsmip.c:618
#: eelf32ltsmip_fbsd.c:618 eelf32ltsmipn32.c:618 eelf32ltsmipn32_fbsd.c:618
#: eelf32m32c.c:287 eelf32mb_linux.c:414 eelf32mbel_linux.c:414
#: eelf32mcore.c:279 eelf32mep.c:251 eelf32metag.c:660 eelf32microblaze.c:251
#: eelf32microblazeel.c:251 eelf32mipswindiss.c:480 eelf32moxie.c:276
#: eelf32or1k.c:277 eelf32or1k_linux.c:414 eelf32ppc.c:643 eelf32ppc_fbsd.c:643
#: eelf32ppchaiku.c:643 eelf32ppclinux.c:643 eelf32ppcnto.c:643
#: eelf32ppcsim.c:643 eelf32ppcvxworks.c:613 eelf32ppcwindiss.c:643
#: eelf32rl78.c:276 eelf32rx.c:298 eelf32rx_linux.c:289 eelf32tilegx.c:414
#: eelf32tilegx_be.c:414 eelf32tilepro.c:414 eelf32vax.c:373 eelf32visium.c:251
#: eelf32xstormy16.c:262 eelf32xtensa.c:2317 eelf32z80.c:278 eelf64_aix.c:373
#: eelf64_ia64.c:442 eelf64_ia64_fbsd.c:442 eelf64_s390.c:511
#: eelf64_sparc.c:414 eelf64_sparc_fbsd.c:414 eelf64_sparc_sol2.c:546
#: eelf64alpha.c:502 eelf64alpha_fbsd.c:502 eelf64alpha_nbsd.c:502
#: eelf64bmip.c:632 eelf64bpf.c:251 eelf64briscv.c:492 eelf64briscv_lp64.c:492
#: eelf64briscv_lp64f.c:492 eelf64btsmip.c:618 eelf64btsmip_fbsd.c:618
#: eelf64hppa.c:323 eelf64kvx.c:639 eelf64kvx_linux.c:676 eelf64loongarch.c:470
#: eelf64lppc.c:1078 eelf64lppc_fbsd.c:1078 eelf64lriscv.c:492
#: eelf64lriscv_lp64.c:492 eelf64lriscv_lp64f.c:492 eelf64ltsmip.c:618
#: eelf64ltsmip_fbsd.c:618 eelf64mmix.c:484 eelf64ppc.c:1078
#: eelf64ppc_fbsd.c:1078 eelf64rdos.c:435 eelf64tilegx.c:414
#: eelf64tilegx_be.c:414 eelf_i386.c:7912 eelf_i386_be.c:397
#: eelf_i386_fbsd.c:444 eelf_i386_haiku.c:444 eelf_i386_ldso.c:404
#: eelf_i386_sol2.c:576 eelf_i386_vxworks.c:470 eelf_iamcu.c:444
#: eelf_mipsel_haiku.c:618 eelf_s390.c:414 eelf_x86_64.c:8454
#: eelf_x86_64_cloudabi.c:452 eelf_x86_64_fbsd.c:452 eelf_x86_64_haiku.c:452
#: eelf_x86_64_sol2.c:584 eh8300elf.c:276 eh8300elf_linux.c:276
#: eh8300helf.c:276 eh8300helf_linux.c:276 eh8300hnelf.c:276 eh8300self.c:276
#: eh8300self_linux.c:276 eh8300snelf.c:276 eh8300sxelf.c:276
#: eh8300sxelf_linux.c:276 eh8300sxnelf.c:276 ehppa64linux.c:373 ehppaelf.c:530
#: ehppalinux.c:693 ehppanbsd.c:693 ehppaobsd.c:693 ei386lynx.c:388
#: ei386moss.c:388 ei386nto.c:388 em32relf.c:276 em32relf_linux.c:413
#: em32rlelf.c:276 em32rlelf_linux.c:413 em68hc11elf.c:532 em68hc11elfb.c:532
#: em68hc12elf.c:532 em68hc12elfb.c:532 em68kelf.c:568 em68kelfnbsd.c:568
#: emn10300.c:373 ends32belf.c:375 ends32belf16m.c:375 ends32belf_linux.c:459
#: ends32elf.c:375 ends32elf16m.c:375 ends32elf_linux.c:459 epruelf.c:272
#: escore3_elf.c:391 escore7_elf.c:391 eshelf.c:373 eshelf_fd.c:414
#: eshelf_linux.c:414 eshelf_nbsd.c:373 eshelf_nto.c:373 eshelf_uclinux.c:373
#: eshelf_vxworks.c:405 eshlelf.c:373 eshlelf_fd.c:414 eshlelf_linux.c:414
#: eshlelf_nbsd.c:373 eshlelf_nto.c:373 eshlelf_vxworks.c:405 ev850.c:298
#: ev850_rh850.c:298
msgid "%F%P: invalid common page size `%s'\n"
msgstr "%F%P : taille de page commune « %s » invalide\n"
#: eaarch64cloudabi.c:812 eaarch64cloudabib.c:812 eaarch64elf.c:811
#: eaarch64elf32.c:811 eaarch64elf32b.c:811 eaarch64elfb.c:811
#: eaarch64fbsd.c:812 eaarch64fbsdb.c:812 eaarch64haiku.c:812
#: eaarch64linux.c:812 eaarch64linux32.c:812 eaarch64linux32b.c:812
#: eaarch64linuxb.c:812 eaarch64nto.c:974 eaarch64nto.c:1157 earcelf.c:332
#: earclinux.c:423 earclinux_nps.c:423 earcv2elf.c:260 earcv2elfx.c:260
#: earmelf.c:947 earmelf_fbsd.c:947 earmelf_fuchsia.c:948 earmelf_haiku.c:948
#: earmelf_linux.c:948 earmelf_linux_eabi.c:948 earmelf_linux_fdpiceabi.c:948
#: earmelf_nacl.c:948 earmelf_nbsd.c:947 earmelf_phoenix.c:948
#: earmelf_vxworks.c:979 earmelfb.c:947 earmelfb_fbsd.c:947
#: earmelfb_fuchsia.c:948 earmelfb_linux.c:948 earmelfb_linux_eabi.c:948
#: earmelfb_linux_fdpiceabi.c:948 earmelfb_nacl.c:948 earmelfb_nbsd.c:947
#: earmnto.c:907 eavr1.c:476 eavr2.c:476 eavr25.c:476 eavr3.c:476 eavr31.c:476
#: eavr35.c:476 eavr4.c:476 eavr5.c:476 eavr51.c:476 eavr6.c:476 eavrtiny.c:476
#: eavrxmega1.c:476 eavrxmega2.c:476 eavrxmega2_flmap.c:476 eavrxmega3.c:476
#: eavrxmega4.c:476 eavrxmega4_flmap.c:476 eavrxmega5.c:476 eavrxmega6.c:476
#: eavrxmega7.c:476 ecriself.c:285 ecrislinux.c:383 ecskyelf.c:524
#: ecskyelf_linux.c:662 ed10velf.c:260 eelf32_sparc.c:423
#: eelf32_sparc_sol2.c:555 eelf32_sparc_vxworks.c:455 eelf32_spu.c:844
#: eelf32_tic6x_be.c:514 eelf32_tic6x_elf_be.c:514 eelf32_tic6x_elf_le.c:514
#: eelf32_tic6x_le.c:514 eelf32_tic6x_linux_be.c:514
#: eelf32_tic6x_linux_le.c:514 eelf32_x86_64.c:8463 eelf32am33lin.c:382
#: eelf32b4300.c:627 eelf32bfin.c:396 eelf32bfinfd.c:436 eelf32bmip.c:627
#: eelf32bmipn32.c:641 eelf32briscv.c:501 eelf32briscv_ilp32.c:501
#: eelf32briscv_ilp32f.c:501 eelf32bsmip.c:641 eelf32btsmip.c:627
#: eelf32btsmip_fbsd.c:627 eelf32btsmipn32.c:627 eelf32btsmipn32_fbsd.c:627
#: eelf32cr16.c:410 eelf32crx.c:297 eelf32ebmip.c:627 eelf32ebmipvxworks.c:658
#: eelf32elmip.c:627 eelf32elmipvxworks.c:658 eelf32epiphany.c:285
#: eelf32epiphany_4x4.c:262 eelf32frvfd.c:422 eelf32ip2k.c:285 eelf32kvx.c:648
#: eelf32l4300.c:627 eelf32lm32.c:285 eelf32lm32fd.c:422 eelf32lmip.c:627
#: eelf32loongarch.c:479 eelf32lppc.c:652 eelf32lppclinux.c:652
#: eelf32lppcnto.c:652 eelf32lppcsim.c:652 eelf32lr5900.c:530
#: eelf32lr5900n32.c:529 eelf32lriscv.c:501 eelf32lriscv_ilp32.c:501
#: eelf32lriscv_ilp32f.c:501 eelf32lsmip.c:627 eelf32ltsmip.c:627
#: eelf32ltsmip_fbsd.c:627 eelf32ltsmipn32.c:627 eelf32ltsmipn32_fbsd.c:627
#: eelf32m32c.c:296 eelf32mb_linux.c:423 eelf32mbel_linux.c:423
#: eelf32mcore.c:288 eelf32mep.c:260 eelf32metag.c:669 eelf32microblaze.c:260
#: eelf32microblazeel.c:260 eelf32mipswindiss.c:489 eelf32moxie.c:285
#: eelf32or1k.c:286 eelf32or1k_linux.c:423 eelf32ppc.c:652 eelf32ppc_fbsd.c:652
#: eelf32ppchaiku.c:652 eelf32ppclinux.c:652 eelf32ppcnto.c:652
#: eelf32ppcsim.c:652 eelf32ppcvxworks.c:622 eelf32ppcwindiss.c:652
#: eelf32rl78.c:285 eelf32rx.c:307 eelf32rx_linux.c:298 eelf32tilegx.c:423
#: eelf32tilegx_be.c:423 eelf32tilepro.c:423 eelf32vax.c:382 eelf32visium.c:260
#: eelf32xstormy16.c:271 eelf32xtensa.c:2326 eelf32z80.c:287 eelf64_aix.c:382
#: eelf64_ia64.c:451 eelf64_ia64_fbsd.c:451 eelf64_s390.c:520
#: eelf64_sparc.c:423 eelf64_sparc_fbsd.c:423 eelf64_sparc_sol2.c:555
#: eelf64alpha.c:511 eelf64alpha_fbsd.c:511 eelf64alpha_nbsd.c:511
#: eelf64bmip.c:641 eelf64bpf.c:260 eelf64briscv.c:501 eelf64briscv_lp64.c:501
#: eelf64briscv_lp64f.c:501 eelf64btsmip.c:627 eelf64btsmip_fbsd.c:627
#: eelf64hppa.c:332 eelf64kvx.c:648 eelf64kvx_linux.c:685 eelf64loongarch.c:479
#: eelf64lppc.c:1087 eelf64lppc_fbsd.c:1087 eelf64lriscv.c:501
#: eelf64lriscv_lp64.c:501 eelf64lriscv_lp64f.c:501 eelf64ltsmip.c:627
#: eelf64ltsmip_fbsd.c:627 eelf64mmix.c:493 eelf64ppc.c:1087
#: eelf64ppc_fbsd.c:1087 eelf64rdos.c:444 eelf64tilegx.c:423
#: eelf64tilegx_be.c:423 eelf_i386.c:7921 eelf_i386_be.c:406
#: eelf_i386_fbsd.c:453 eelf_i386_haiku.c:453 eelf_i386_ldso.c:413
#: eelf_i386_sol2.c:585 eelf_i386_vxworks.c:479 eelf_iamcu.c:453
#: eelf_mipsel_haiku.c:627 eelf_s390.c:423 eelf_x86_64.c:8463
#: eelf_x86_64_cloudabi.c:461 eelf_x86_64_fbsd.c:461 eelf_x86_64_haiku.c:461
#: eelf_x86_64_sol2.c:593 eh8300elf.c:285 eh8300elf_linux.c:285
#: eh8300helf.c:285 eh8300helf_linux.c:285 eh8300hnelf.c:285 eh8300self.c:285
#: eh8300self_linux.c:285 eh8300snelf.c:285 eh8300sxelf.c:285
#: eh8300sxelf_linux.c:285 eh8300sxnelf.c:285 ehppa64linux.c:382 ehppaelf.c:539
#: ehppalinux.c:702 ehppanbsd.c:702 ehppaobsd.c:702 ei386lynx.c:397
#: ei386moss.c:397 ei386nto.c:397 em32relf.c:285 em32relf_linux.c:422
#: em32rlelf.c:285 em32rlelf_linux.c:422 em68hc11elf.c:541 em68hc11elfb.c:541
#: em68hc12elf.c:541 em68hc12elfb.c:541 em68kelf.c:577 em68kelfnbsd.c:577
#: emn10300.c:382 ends32belf.c:384 ends32belf16m.c:384 ends32belf_linux.c:468
#: ends32elf.c:384 ends32elf16m.c:384 ends32elf_linux.c:468 epruelf.c:281
#: escore3_elf.c:400 escore7_elf.c:400 eshelf.c:382 eshelf_fd.c:423
#: eshelf_linux.c:423 eshelf_nbsd.c:382 eshelf_nto.c:382 eshelf_uclinux.c:382
#: eshelf_vxworks.c:414 eshlelf.c:382 eshlelf_fd.c:423 eshlelf_linux.c:423
#: eshlelf_nbsd.c:382 eshlelf_nto.c:382 eshlelf_vxworks.c:414 ev850.c:307
#: ev850_rh850.c:307
msgid "%F%P: invalid stack size `%s'\n"
msgstr "%F%P : taille de pile « %s » invalide\n"
#: eaarch64cloudabi.c:851 eaarch64cloudabib.c:851 eaarch64elf.c:850
#: eaarch64elf32.c:850 eaarch64elf32b.c:850 eaarch64elfb.c:850
#: eaarch64fbsd.c:851 eaarch64fbsdb.c:851 eaarch64haiku.c:851
#: eaarch64linux.c:851 eaarch64linux32.c:851 eaarch64linux32b.c:851
#: eaarch64linuxb.c:851 eaarch64nto.c:1013 earcelf.c:371 earclinux.c:462
#: earclinux_nps.c:462 earcv2elf.c:299 earcv2elfx.c:299 earmelf.c:986
#: earmelf_fbsd.c:986 earmelf_fuchsia.c:987 earmelf_haiku.c:987
#: earmelf_linux.c:987 earmelf_linux_eabi.c:987 earmelf_linux_fdpiceabi.c:987
#: earmelf_nacl.c:987 earmelf_nbsd.c:986 earmelf_phoenix.c:987
#: earmelf_vxworks.c:1018 earmelfb.c:986 earmelfb_fbsd.c:986
#: earmelfb_fuchsia.c:987 earmelfb_linux.c:987 earmelfb_linux_eabi.c:987
#: earmelfb_linux_fdpiceabi.c:987 earmelfb_nacl.c:987 earmelfb_nbsd.c:986
#: earmnto.c:946 eavr1.c:515 eavr2.c:515 eavr25.c:515 eavr3.c:515 eavr31.c:515
#: eavr35.c:515 eavr4.c:515 eavr5.c:515 eavr51.c:515 eavr6.c:515 eavrtiny.c:515
#: eavrxmega1.c:515 eavrxmega2.c:515 eavrxmega2_flmap.c:515 eavrxmega3.c:515
#: eavrxmega4.c:515 eavrxmega4_flmap.c:515 eavrxmega5.c:515 eavrxmega6.c:515
#: eavrxmega7.c:515 ecriself.c:324 ecrislinux.c:422 ecskyelf.c:563
#: ecskyelf_linux.c:701 ed10velf.c:299 eelf32_sparc.c:462
#: eelf32_sparc_sol2.c:594 eelf32_sparc_vxworks.c:494 eelf32_spu.c:883
#: eelf32_tic6x_be.c:553 eelf32_tic6x_elf_be.c:553 eelf32_tic6x_elf_le.c:553
#: eelf32_tic6x_le.c:553 eelf32_tic6x_linux_be.c:553
#: eelf32_tic6x_linux_le.c:553 eelf32_x86_64.c:8502 eelf32am33lin.c:421
#: eelf32b4300.c:666 eelf32bfin.c:435 eelf32bfinfd.c:475 eelf32bmip.c:666
#: eelf32bmipn32.c:680 eelf32briscv.c:540 eelf32briscv_ilp32.c:540
#: eelf32briscv_ilp32f.c:540 eelf32bsmip.c:680 eelf32btsmip.c:666
#: eelf32btsmip_fbsd.c:666 eelf32btsmipn32.c:666 eelf32btsmipn32_fbsd.c:666
#: eelf32cr16.c:449 eelf32crx.c:336 eelf32ebmip.c:666 eelf32ebmipvxworks.c:697
#: eelf32elmip.c:666 eelf32elmipvxworks.c:697 eelf32epiphany.c:324
#: eelf32epiphany_4x4.c:301 eelf32frvfd.c:461 eelf32ip2k.c:324 eelf32kvx.c:687
#: eelf32l4300.c:666 eelf32lm32.c:324 eelf32lm32fd.c:461 eelf32lmip.c:666
#: eelf32loongarch.c:518 eelf32lppc.c:691 eelf32lppclinux.c:691
#: eelf32lppcnto.c:691 eelf32lppcsim.c:691 eelf32lr5900.c:569
#: eelf32lr5900n32.c:568 eelf32lriscv.c:540 eelf32lriscv_ilp32.c:540
#: eelf32lriscv_ilp32f.c:540 eelf32lsmip.c:666 eelf32ltsmip.c:666
#: eelf32ltsmip_fbsd.c:666 eelf32ltsmipn32.c:666 eelf32ltsmipn32_fbsd.c:666
#: eelf32m32c.c:335 eelf32mb_linux.c:462 eelf32mbel_linux.c:462
#: eelf32mcore.c:327 eelf32mep.c:299 eelf32metag.c:708 eelf32microblaze.c:299
#: eelf32microblazeel.c:299 eelf32mipswindiss.c:528 eelf32moxie.c:324
#: eelf32or1k.c:325 eelf32or1k_linux.c:462 eelf32ppc.c:691 eelf32ppc_fbsd.c:691
#: eelf32ppchaiku.c:691 eelf32ppclinux.c:691 eelf32ppcnto.c:691
#: eelf32ppcsim.c:691 eelf32ppcvxworks.c:661 eelf32ppcwindiss.c:691
#: eelf32rl78.c:324 eelf32rx.c:346 eelf32rx_linux.c:337 eelf32tilegx.c:462
#: eelf32tilegx_be.c:462 eelf32tilepro.c:462 eelf32vax.c:421 eelf32visium.c:299
#: eelf32xstormy16.c:310 eelf32xtensa.c:2365 eelf32z80.c:326 eelf64_aix.c:421
#: eelf64_ia64.c:490 eelf64_ia64_fbsd.c:490 eelf64_s390.c:559
#: eelf64_sparc.c:462 eelf64_sparc_fbsd.c:462 eelf64_sparc_sol2.c:594
#: eelf64alpha.c:550 eelf64alpha_fbsd.c:550 eelf64alpha_nbsd.c:550
#: eelf64bmip.c:680 eelf64bpf.c:299 eelf64briscv.c:540 eelf64briscv_lp64.c:540
#: eelf64briscv_lp64f.c:540 eelf64btsmip.c:666 eelf64btsmip_fbsd.c:666
#: eelf64hppa.c:371 eelf64kvx.c:687 eelf64kvx_linux.c:724 eelf64loongarch.c:518
#: eelf64lppc.c:1126 eelf64lppc_fbsd.c:1126 eelf64lriscv.c:540
#: eelf64lriscv_lp64.c:540 eelf64lriscv_lp64f.c:540 eelf64ltsmip.c:666
#: eelf64ltsmip_fbsd.c:666 eelf64mmix.c:532 eelf64ppc.c:1126
#: eelf64ppc_fbsd.c:1126 eelf64rdos.c:483 eelf64tilegx.c:462
#: eelf64tilegx_be.c:462 eelf_i386.c:7960 eelf_i386_be.c:445
#: eelf_i386_fbsd.c:492 eelf_i386_haiku.c:492 eelf_i386_ldso.c:452
#: eelf_i386_sol2.c:624 eelf_i386_vxworks.c:518 eelf_iamcu.c:492
#: eelf_mipsel_haiku.c:666 eelf_s390.c:462 eelf_x86_64.c:8502
#: eelf_x86_64_cloudabi.c:500 eelf_x86_64_fbsd.c:500 eelf_x86_64_haiku.c:500
#: eelf_x86_64_sol2.c:632 eh8300elf.c:324 eh8300elf_linux.c:324
#: eh8300helf.c:324 eh8300helf_linux.c:324 eh8300hnelf.c:324 eh8300self.c:324
#: eh8300self_linux.c:324 eh8300snelf.c:324 eh8300sxelf.c:324
#: eh8300sxelf_linux.c:324 eh8300sxnelf.c:324 ehppa64linux.c:421 ehppaelf.c:578
#: ehppalinux.c:741 ehppanbsd.c:741 ehppaobsd.c:741 ei386lynx.c:436
#: ei386moss.c:436 ei386nto.c:436 em32relf.c:324 em32relf_linux.c:461
#: em32rlelf.c:324 em32rlelf_linux.c:461 em68hc11elf.c:580 em68hc11elfb.c:580
#: em68hc12elf.c:580 em68hc12elfb.c:580 em68kelf.c:616 em68kelfnbsd.c:616
#: emn10300.c:421 ends32belf.c:423 ends32belf16m.c:423 ends32belf_linux.c:507
#: ends32elf.c:423 ends32elf16m.c:423 ends32elf_linux.c:507 epruelf.c:320
#: escore3_elf.c:439 escore7_elf.c:439 eshelf.c:421 eshelf_fd.c:462
#: eshelf_linux.c:462 eshelf_nbsd.c:421 eshelf_nto.c:421 eshelf_uclinux.c:421
#: eshelf_vxworks.c:453 eshlelf.c:421 eshlelf_fd.c:462 eshlelf_linux.c:462
#: eshlelf_nbsd.c:421 eshlelf_nto.c:421 eshlelf_vxworks.c:453 ev850.c:346
#: ev850_rh850.c:346
msgid "%F%P: invalid visibility in `-z %s'; must be default, internal, hidden, or protected"
msgstr "%F%P : visibilité invalide dans « -z %s » ; doit être « default », « internal », « hidden » ou « protected »"
#: eaarch64cloudabi.c:971 eaarch64cloudabib.c:971 eaarch64elf.c:971
#: eaarch64elf32.c:971 eaarch64elf32b.c:971 eaarch64elfb.c:971
#: eaarch64fbsd.c:976 eaarch64fbsdb.c:976 eaarch64haiku.c:971
#: eaarch64linux.c:976 eaarch64linux32.c:976 eaarch64linux32b.c:976
#: eaarch64linuxb.c:976 eaarch64nto.c:1133
msgid "%P: error: unrecognized option for --fix-cortex-a53-843419: %s\n"
msgstr "%P : erreur : option non reconnue pour --fix-cortex-a53-843419 : %s\n"
#: eaarch64cloudabi.c:1000 eaarch64cloudabib.c:1000 eaarch64elf.c:1000
#: eaarch64elf32.c:1000 eaarch64elf32b.c:1000 eaarch64elfb.c:1000
#: eaarch64fbsd.c:1005 eaarch64fbsdb.c:1005 eaarch64haiku.c:1000
#: eaarch64linux.c:1005 eaarch64linux32.c:1005 eaarch64linux32b.c:1005
#: eaarch64linuxb.c:1005 eaarch64nto.c:1178 earmelf.c:1191 earmelf_fbsd.c:1191
#: earmelf_fuchsia.c:1196 earmelf_haiku.c:1196 earmelf_linux.c:1196
#: earmelf_linux_eabi.c:1196 earmelf_linux_fdpiceabi.c:1196 earmelf_nacl.c:1196
#: earmelf_nbsd.c:1191 earmelf_phoenix.c:1196 earmelf_vxworks.c:1227
#: earmelfb.c:1191 earmelfb_fbsd.c:1191 earmelfb_fuchsia.c:1196
#: earmelfb_linux.c:1196 earmelfb_linux_eabi.c:1196
#: earmelfb_linux_fdpiceabi.c:1196 earmelfb_nacl.c:1196 earmelfb_nbsd.c:1191
#: earmnto.c:1151
#, c-format
msgid ""
" --no-enum-size-warning Don't warn about objects with incompatible\n"
" enum sizes\n"
msgstr ""
" --no-enum-size-warning Ne pas avertir des objets avec des tailles\n"
" d'enumération non compatibles\n"
#: eaarch64cloudabi.c:1002 eaarch64cloudabib.c:1002 eaarch64elf.c:1002
#: eaarch64elf32.c:1002 eaarch64elf32b.c:1002 eaarch64elfb.c:1002
#: eaarch64fbsd.c:1007 eaarch64fbsdb.c:1007 eaarch64haiku.c:1002
#: eaarch64linux.c:1007 eaarch64linux32.c:1007 eaarch64linux32b.c:1007
#: eaarch64linuxb.c:1007 eaarch64nto.c:1180 earmelf.c:1193 earmelf_fbsd.c:1193
#: earmelf_fuchsia.c:1198 earmelf_haiku.c:1198 earmelf_linux.c:1198
#: earmelf_linux_eabi.c:1198 earmelf_linux_fdpiceabi.c:1198 earmelf_nacl.c:1198
#: earmelf_nbsd.c:1193 earmelf_phoenix.c:1198 earmelf_vxworks.c:1229
#: earmelfb.c:1193 earmelfb_fbsd.c:1193 earmelfb_fuchsia.c:1198
#: earmelfb_linux.c:1198 earmelfb_linux_eabi.c:1198
#: earmelfb_linux_fdpiceabi.c:1198 earmelfb_nacl.c:1198 earmelfb_nbsd.c:1193
#: earmnto.c:1153
#, c-format
msgid ""
" --no-wchar-size-warning Don't warn about objects with incompatible\n"
" wchar_t sizes\n"
msgstr ""
" --no-wchar-size-warning Ne pas avertir des objets avec des tailles de\n"
" wchar_t incompatibles\n"
#: eaarch64cloudabi.c:1004 eaarch64cloudabib.c:1004 eaarch64elf.c:1004
#: eaarch64elf32.c:1004 eaarch64elf32b.c:1004 eaarch64elfb.c:1004
#: eaarch64fbsd.c:1009 eaarch64fbsdb.c:1009 eaarch64haiku.c:1004
#: eaarch64linux.c:1009 eaarch64linux32.c:1009 eaarch64linux32b.c:1009
#: eaarch64linuxb.c:1009 eaarch64nto.c:1182 earmelf.c:1195 earmelf_fbsd.c:1195
#: earmelf_fuchsia.c:1200 earmelf_haiku.c:1200 earmelf_linux.c:1200
#: earmelf_linux_eabi.c:1200 earmelf_linux_fdpiceabi.c:1200 earmelf_nacl.c:1200
#: earmelf_nbsd.c:1195 earmelf_phoenix.c:1200 earmelf_vxworks.c:1231
#: earmelfb.c:1195 earmelfb_fbsd.c:1195 earmelfb_fuchsia.c:1200
#: earmelfb_linux.c:1200 earmelfb_linux_eabi.c:1200
#: earmelfb_linux_fdpiceabi.c:1200 earmelfb_nacl.c:1200 earmelfb_nbsd.c:1195
#: earmnto.c:1155
#, c-format
msgid " --pic-veneer Always generate PIC interworking veneers\n"
msgstr " --pic-veneer Toujours générer le vernissage d'inter opérabilité PIC\n"
#: eaarch64cloudabi.c:1005 eaarch64cloudabib.c:1005 eaarch64elf.c:1005
#: eaarch64elf32.c:1005 eaarch64elf32b.c:1005 eaarch64elfb.c:1005
#: eaarch64fbsd.c:1010 eaarch64fbsdb.c:1010 eaarch64haiku.c:1005
#: eaarch64linux.c:1010 eaarch64linux32.c:1010 eaarch64linux32b.c:1010
#: eaarch64linuxb.c:1010 eaarch64nto.c:1183 earmelf.c:1202 earmelf_fbsd.c:1202
#: earmelf_fuchsia.c:1207 earmelf_haiku.c:1207 earmelf_linux.c:1207
#: earmelf_linux_eabi.c:1207 earmelf_linux_fdpiceabi.c:1207 earmelf_nacl.c:1207
#: earmelf_nbsd.c:1202 earmelf_phoenix.c:1207 earmelf_vxworks.c:1238
#: earmelfb.c:1202 earmelfb_fbsd.c:1202 earmelfb_fuchsia.c:1207
#: earmelfb_linux.c:1207 earmelfb_linux_eabi.c:1207
#: earmelfb_linux_fdpiceabi.c:1207 earmelfb_nacl.c:1207 earmelfb_nbsd.c:1202
#: earmnto.c:1162
#, c-format
msgid ""
" --stub-group-size=N Maximum size of a group of input sections that\n"
" can be handled by one stub section. A negative\n"
" value locates all stubs after their branches\n"
" (with a group size of -N), while a positive\n"
" value allows two groups of input sections, one\n"
" before, and one after each stub section.\n"
" Values of +/-1 indicate the linker should\n"
" choose suitable defaults.\n"
msgstr ""
" --stub-group-size=N Taille maximale d'un groupe de sections d'entrées qui \n"
" peut être gérée par une section d'espace d'amorçage. Une valeur\n"
" négative situe tous les espaces d'amorçage après leurs branches\n"
" (avec une taille de groupe de -N), alors qu'une valeur\n"
" positive permet deux groupes de section d'entrée, un\n"
" avant, et un après chaque section d'espace d'amorçage.\n"
" Les valeurs +/-1 indiquent que l'éditeur de liens doit\n"
" choisir des règlages par défaut appropriés.\n"
#: eaarch64cloudabi.c:1014 eaarch64cloudabib.c:1014 eaarch64elf.c:1014
#: eaarch64elf32.c:1014 eaarch64elf32b.c:1014 eaarch64elfb.c:1014
#: eaarch64fbsd.c:1019 eaarch64fbsdb.c:1019 eaarch64haiku.c:1014
#: eaarch64linux.c:1019 eaarch64linux32.c:1019 eaarch64linux32b.c:1019
#: eaarch64linuxb.c:1019 eaarch64nto.c:1192
#, c-format
msgid " --fix-cortex-a53-835769 Fix erratum 835769\n"
msgstr " --fix-cortex-a53-835769 Corrige l'erratum 835769\n"
#: eaarch64cloudabi.c:1015 eaarch64cloudabib.c:1015 eaarch64elf.c:1015
#: eaarch64elf32.c:1015 eaarch64elf32b.c:1015 eaarch64elfb.c:1015
#: eaarch64fbsd.c:1020 eaarch64fbsdb.c:1020 eaarch64haiku.c:1015
#: eaarch64linux.c:1020 eaarch64linux32.c:1020 eaarch64linux32b.c:1020
#: eaarch64linuxb.c:1020 eaarch64nto.c:1193
#, 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] Corriger l'erratum 843419 et indiquer de façon optionnelle quelle solution utiliser.\n"
" full (défaut) : Utiliser les solutions ADRP et ADR, cela\n"
" augmente la taille des binaires.\n"
" adr : Utiliser la solution ADR uniquement, cela ne provoquera aucune augmentation\n"
" de la taille des binaires mais l'édition de liens échouera si l'adresse référencée est\n"
" hors de portée d'une instruction ADR. Cela évite d'avoir recours à\n"
" un veneer et resulte en un gain de performance et de taille.\n"
" adrp : Utiliser la solution ADRP uniquement, cela ne réécrira jamais d'instruction ADRP\n"
" en un ADR. Comme tel, la solution utilisera toujours un\n"
" veneer et aura un coût en termes de performance et de taille.\n"
#: eaarch64cloudabi.c:1026 eaarch64cloudabib.c:1026 eaarch64elf.c:1026
#: eaarch64elf32.c:1026 eaarch64elf32b.c:1026 eaarch64elfb.c:1026
#: eaarch64fbsd.c:1031 eaarch64fbsdb.c:1031 eaarch64haiku.c:1026
#: eaarch64linux.c:1031 eaarch64linux32.c:1031 eaarch64linux32b.c:1031
#: eaarch64linuxb.c:1031 eaarch64nto.c:1204
#, c-format
msgid " --no-apply-dynamic-relocs Do not apply link-time values for dynamic relocations\n"
msgstr " --no-apply-dynamic-relocs Ne pas appliquer de valeurs à l'édition de liens pour les relocalisations dynamiques\n"
#: eaarch64cloudabi.c:1027 eaarch64cloudabib.c:1027 eaarch64elf.c:1027
#: eaarch64elf32.c:1027 eaarch64elf32b.c:1027 eaarch64elfb.c:1027
#: eaarch64fbsd.c:1032 eaarch64fbsdb.c:1032 eaarch64haiku.c:1027
#: eaarch64linux.c:1032 eaarch64linux32.c:1032 eaarch64linux32b.c:1032
#: eaarch64linuxb.c:1032 eaarch64nto.c:1205
#, c-format
msgid ""
" -z force-bti Turn on Branch Target Identification mechanism and generate PLTs with BTI.\n"
" Generate warnings for missing BTI markings on inputs\n"
msgstr ""
" -z force-bti Activer le mécanisme d'Identification de Cible de Branche et générer des PLT avec des BTI.\n"
" Produire des avertissements pour des BTI manquantes sur des entrées\n"
#: eaarch64cloudabi.c:1030 eaarch64cloudabib.c:1030 eaarch64elf.c:1030
#: eaarch64elf32.c:1030 eaarch64elf32b.c:1030 eaarch64elfb.c:1030
#: eaarch64fbsd.c:1035 eaarch64fbsdb.c:1035 eaarch64haiku.c:1030
#: eaarch64linux.c:1035 eaarch64linux32.c:1035 eaarch64linux32b.c:1035
#: eaarch64linuxb.c:1035 eaarch64nto.c:1208
#, c-format
msgid ""
" -z bti-report[=none|warning|error] Emit warning/error on mismatch of BTI marking between input objects and ouput.\n"
" none: Does not emit any warning/error messages.\n"
" warning (default): Emit warning when the input objects are missing BTI markings\n"
" and output has BTI marking.\n"
" error: Emit error when the input objects are missing BTI markings\n"
" and output has BTI marking.\n"
msgstr ""
" -z bti-report[=none|warning|error] Émettre des avertissements/erreurs lors d'incohérences de marquage BTI entre les objets en entrée et la sortie.\n"
" none : Ne pas émettre de messages d'avertissements/erreurs.\n"
" warning (défaut) : Émettre des avertissements lorsqu'il manque des marqueurs BTI sur les objets d'entrée\n"
" et que la sortie comporte un marquage BTI.\n"
" error : Émettre des erreurs lorsqu'il manque des marqueurs BTI sur les objets d'entrée\n"
" et que la sortie comporte un marquage BTI.\n"
#: eaarch64cloudabi.c:1037 eaarch64cloudabib.c:1037 eaarch64elf.c:1037
#: eaarch64elf32.c:1037 eaarch64elf32b.c:1037 eaarch64elfb.c:1037
#: eaarch64fbsd.c:1042 eaarch64fbsdb.c:1042 eaarch64haiku.c:1037
#: eaarch64linux.c:1042 eaarch64linux32.c:1042 eaarch64linux32b.c:1042
#: eaarch64linuxb.c:1042 eaarch64nto.c:1215
#, c-format
msgid " -z pac-plt Protect PLTs with Pointer Authentication.\n"
msgstr " -z pac-plt Protège les PLT avec l'Authentification de Pointeur.\n"
#: eaarch64cloudabi.c:1039 eaarch64cloudabib.c:1039 eaarch64elf.c:1039
#: eaarch64elf32.c:1039 eaarch64elf32b.c:1039 eaarch64elfb.c:1039
#: eaarch64fbsd.c:1044 eaarch64fbsdb.c:1044 eaarch64haiku.c:1039
#: eaarch64linux.c:1044 eaarch64linux32.c:1044 eaarch64linux32b.c:1044
#: eaarch64linuxb.c:1044 eaarch64nto.c:1217
#, c-format
msgid ""
" -z gcs=[always|never|implicit] Controls whether the output supports the Guarded Control Stack (GCS) mechanism.\n"
" implicit (default if '-z gcs' is omitted): deduce GCS from input objects.\n"
" always: always marks the output with GCS.\n"
" never: never marks the output with GCS.\n"
msgstr ""
" -z gcs=[always|never|implicit] Contrôler si la sortie prend en charge le mécanisme de Guarded Control Stack (GCS).\n"
" implicit (défaut si '-z gcs' est omis) : déduire GCS depuis les objets d'entrée.\n"
" always : toujours marquer la sortie avec GCS.\n"
" never : ne jamais marquer la sortie avec GCS.\n"
#: eaarch64cloudabi.c:1044 eaarch64cloudabib.c:1044 eaarch64elf.c:1044
#: eaarch64elf32.c:1044 eaarch64elf32b.c:1044 eaarch64elfb.c:1044
#: eaarch64fbsd.c:1049 eaarch64fbsdb.c:1049 eaarch64haiku.c:1044
#: eaarch64linux.c:1049 eaarch64linux32.c:1049 eaarch64linux32b.c:1049
#: eaarch64linuxb.c:1049 eaarch64nto.c:1222
#, c-format
msgid ""
" -z gcs-report[=none|warning|error] Emit warning/error on mismatch of GCS marking between input objects and ouput.\n"
" none: Does not emit any warning/error messages.\n"
" warning (default): Emit warning when the input objects are missing GCS markings\n"
" and output have GCS marking.\n"
" error: Emit error when the input objects are missing GCS markings\n"
" and output have GCS marking.\n"
msgstr ""
" -z gcs-report[=none|warning|error] Émettre des avertissements/erreurs lors d'incohérences de marquage GCS entre les objets en entrée et la sortie.\n"
" none : Ne pas émettre de messages d'avertissements/erreurs.\n"
" warning (défaut) : Émettre des avertissements lorsqu'il manque des marqueurs GCS sur les objets d'entrée\n"
" et que la sortie comporte un marquage GCS.\n"
" error : Émettre des erreurs lorsqu'il manque des marqueurs GCS sur les objets d'entrée\n"
" et que la sortie comporte un marquage GCS.\n"
#: eaarch64cloudabi.c:1051 eaarch64cloudabib.c:1051 eaarch64elf.c:1051
#: eaarch64elf32.c:1051 eaarch64elf32b.c:1051 eaarch64elfb.c:1051
#: eaarch64fbsd.c:1056 eaarch64fbsdb.c:1056 eaarch64haiku.c:1051
#: eaarch64linux.c:1056 eaarch64linux32.c:1056 eaarch64linux32b.c:1056
#: eaarch64linuxb.c:1056 eaarch64nto.c:1229
#, c-format
msgid ""
" -z gcs-report-dynamic=none|warning|error Emit warning/error on mismatch of GCS marking between the current link\n"
" unit and input dynamic objects.\n"
" none: Does not emit any warning/error messages.\n"
" warning: Emit warning when the input objects are missing GCS markings\n"
" and output have GCS marking.\n"
" error: Emit error when the input objects are missing GCS markings\n"
" and output have GCS marking.\n"
msgstr ""
" -z gcs-report-dynamic=none|warning|error Émettre des avertissements/erreurs lors d'incohérences de marquage GCS entre l'unité de liens\n"
" courante et les objets dynamiques d'entrée.\n"
" none : Ne pas émettre de messages d'avertissements/erreurs.\n"
" warning : Émettre des avertissements lorsqu'il manque des marqueurs GCS sur les objets d'entrée\n"
" et que la sortie comporte un marquage GCS.\n"
" error : Émettre des erreurs lorsqu'il manque des marqueurs GCS sur les objets d'entrée\n"
" et que la sortie comporte un marquage GCS.\n"
#: eaarch64nto.c:490
msgid "%F%P: cannot create .note section in stub BFD.\n"
msgstr "%F%P : impossible de créer la section .note dans le secteur d'amorçage BFD.\n"
#: eaarch64nto.c:499
msgid "%F%P: failed to create .note section\n"
msgstr "%F%P : échec de la création de la section .note\n"
#: eaarch64nto.c:540
msgid "%F%P: %pB: can't read contents of section .note: %E\n"
msgstr "%F%P : %pB : impossible de lire les contenus de la section .node : %E\n"
#: eaarch64nto.c:550 eaarch64nto.c:554
msgid "%P: %pB: warning: duplicated QNX stack .note detected\n"
msgstr "%P : %pB : avertissement: détection de .note de pile QNX dupliquée\n"
#: eaarch64nto.c:583
msgid "%F%P: error: --lazy-stack must follow -zstack-size=<size>\n"
msgstr "%F%P : erreur : --lazy-stack doit suivre -zstack-size=<taille>\n"
#: eaarch64nto.c:1238
#, c-format
msgid ""
" --stack <size> Set size of the initial stack\n"
" --lazy-stack\t\t Set lazy allocation of stack\n"
msgstr ""
" --stack <size> Régler la taille de la pile initiale\n"
" --lazy-stack\t\t Utiliser l'allocation paresseuse de la pile\n"
#: eaarch64pe.c:350 earm64pe.c:350 earm_wince_pe.c:338 earmpe.c:338
#: ei386pe.c:338 ei386pe_posix.c:338 ei386pep.c:350 emcorepe.c:338 eshpe.c:338
#, c-format
msgid " --base_file <basefile> Generate a base file for relocatable DLLs\n"
msgstr " --base_file <fichier_de_base> Générer une fichier de base les les DLL relocalisables\n"
#: eaarch64pe.c:351 earm64pe.c:351 earm_wince_pe.c:339 earmpe.c:339
#: ei386pe.c:339 ei386pe_posix.c:339 ei386pep.c:351 emcorepe.c:339 eshpe.c:339
#, c-format
msgid " --dll Set image base to the default for DLLs\n"
msgstr " --dll Initialise l'image de base au DLL par défaut\n"
#: eaarch64pe.c:352 earm64pe.c:352 earm_wince_pe.c:340 earmpe.c:340
#: ei386pe.c:340 ei386pe_posix.c:340 ei386pep.c:352 emcorepe.c:340 eshpe.c:340
#, c-format
msgid " --file-alignment <size> Set file alignment\n"
msgstr " --file-alignment <taille> Initialiser l'alignement du fichier\n"
#: eaarch64pe.c:353 earm64pe.c:353 earm_wince_pe.c:341 earmpe.c:341
#: ei386pe.c:341 ei386pe_posix.c:341 ei386pep.c:353 emcorepe.c:341 eshpe.c:341
#, c-format
msgid " --heap <size> Set initial size of the heap\n"
msgstr " --heap <taille> Initialiser la taille initiale du monceau\n"
#: eaarch64pe.c:354 earm64pe.c:354 earm_wince_pe.c:342 earmpe.c:342
#: ei386pe.c:342 ei386pe_posix.c:342 ei386pep.c:354 emcorepe.c:342 eshpe.c:342
#, c-format
msgid " --image-base <address> Set start address of the executable\n"
msgstr " --image-base <adresse> Initialiser l'adresse de début de l'exécutable\n"
#: eaarch64pe.c:355 earm64pe.c:355 earm_wince_pe.c:343 earmpe.c:343
#: ei386pe.c:343 ei386pe_posix.c:343 ei386pep.c:355 emcorepe.c:343 eshpe.c:343
#, c-format
msgid " --major-image-version <number> Set version number of the executable\n"
msgstr " --major-image-version <nombre> Initialiser le numéro de version de l'exécutable\n"
#: eaarch64pe.c:356 earm64pe.c:356 earm_wince_pe.c:344 earmpe.c:344
#: ei386pe.c:344 ei386pe_posix.c:344 ei386pep.c:356 emcorepe.c:344 eshpe.c:344
#, c-format
msgid " --major-os-version <number> Set minimum required OS version\n"
msgstr " --major-os-version <nombre> Initialiser le numéro minimum de version du système d'exploitation\n"
#: eaarch64pe.c:357 earm64pe.c:357 earm_wince_pe.c:345 earmpe.c:345
#: ei386pe.c:345 ei386pe_posix.c:345 ei386pep.c:357 emcorepe.c:345 eshpe.c:345
#, c-format
msgid " --major-subsystem-version <number> Set minimum required OS subsystem version\n"
msgstr " --major-subsystem-version <nombre> Initialiser le numéro minimum de version du sous-système\n"
#: eaarch64pe.c:358 earm64pe.c:358 earm_wince_pe.c:346 earmpe.c:346
#: ei386pe.c:346 ei386pe_posix.c:346 ei386pep.c:358 emcorepe.c:346 eshpe.c:346
#, c-format
msgid " --minor-image-version <number> Set revision number of the executable\n"
msgstr " --minor-image-version <nombre> Initialiser le numéro de révision de l'exécutable\n"
#: eaarch64pe.c:359 earm64pe.c:359 earm_wince_pe.c:347 earmpe.c:347
#: ei386pe.c:347 ei386pe_posix.c:347 ei386pep.c:359 emcorepe.c:347 eshpe.c:347
#, c-format
msgid " --minor-os-version <number> Set minimum required OS revision\n"
msgstr " --minor-os-version <nombre> Initialiser le numéro minimum de version du système d'exploitation\n"
#: eaarch64pe.c:360 earm64pe.c:360 earm_wince_pe.c:348 earmpe.c:348
#: ei386pe.c:348 ei386pe_posix.c:348 ei386pep.c:360 emcorepe.c:348 eshpe.c:348
#, c-format
msgid " --minor-subsystem-version <number> Set minimum required OS subsystem revision\n"
msgstr " --minor-subsystem-version <nombre> Initialiser le numéro minimum de version du sous-système\n"
#: eaarch64pe.c:361 earm64pe.c:361 earm_wince_pe.c:349 earmpe.c:349
#: ei386pe.c:349 ei386pe_posix.c:349 ei386pep.c:361 emcorepe.c:349 eshpe.c:349
#, c-format
msgid " --section-alignment <size> Set section alignment\n"
msgstr " --section-alignment <taille> Initialiser l'alignement de section\n"
#: eaarch64pe.c:362 earm64pe.c:362 earm_wince_pe.c:350 earmpe.c:350
#: ei386pe.c:350 ei386pe_posix.c:350 ei386pep.c:362 emcorepe.c:350 eshpe.c:350
#, c-format
msgid " --stack <size> Set size of the initial stack\n"
msgstr " --stack <taille> Initialiser la taille initiale de la pile\n"
#: eaarch64pe.c:363 earm64pe.c:363 earm_wince_pe.c:351 earmpe.c:351
#: ei386pe.c:351 ei386pe_posix.c:351 ei386pep.c:363 emcorepe.c:351 eshpe.c:351
#, c-format
msgid " --subsystem <name>[:<version>] Set required OS subsystem [& version]\n"
msgstr " --subsystem <nom>[:<version>] Initialiser le sous-système de l'OS requis [&version]\n"
#: eaarch64pe.c:364 earm64pe.c:364 earm_wince_pe.c:352 earmpe.c:352
#: ei386pe.c:352 ei386pe_posix.c:352 ei386pep.c:364 emcorepe.c:352 eshpe.c:352
#, c-format
msgid " --support-old-code Support interworking with old code\n"
msgstr " --support-old-code Supporter l'inter-réseautage avec le vieux code\n"
#: eaarch64pe.c:365 earm64pe.c:365 earm_wince_pe.c:353 earmpe.c:353
#: ei386pe.c:353 ei386pe_posix.c:353 ei386pep.c:365 emcorepe.c:353 eshpe.c:353
#, c-format
msgid " --[no-]leading-underscore Set explicit symbol underscore prefix mode\n"
msgstr " --[no-]leading-underscore Activer le mode préfixe utilisant le souligné comme symbole explicite\n"
#: eaarch64pe.c:366 earm64pe.c:366 ei386pep.c:366
#, c-format
msgid " --[no-]insert-timestamp Use a real timestamp rather than zero (default)\n"
msgstr " --[no-]insert-timestamp Utiliser un horodatage existant plutôt que zéro (par défaut)\n"
#: eaarch64pe.c:367 earm64pe.c:367 earm_wince_pe.c:356 earmpe.c:356
#: ei386pe.c:356 ei386pe_posix.c:356 ei386pep.c:367 emcorepe.c:356 eshpe.c:356
#, c-format
msgid " This makes binaries non-deterministic\n"
msgstr " Rend les binaires non déterministes\n"
#: eaarch64pe.c:369 earm64pe.c:369 earm_wince_pe.c:358 earmpe.c:358
#: ei386pe.c:358 ei386pe_posix.c:358 ei386pep.c:369 emcorepe.c:358 eshpe.c:358
#, c-format
msgid " --add-stdcall-alias Export symbols with and without @nn\n"
msgstr " --add-stdcall-alias Exporter les symboles avec et sans @nn\n"
#: eaarch64pe.c:370 earm64pe.c:370 earm_wince_pe.c:359 earmpe.c:359
#: ei386pe.c:359 ei386pe_posix.c:359 ei386pep.c:370 emcorepe.c:359 eshpe.c:359
#, c-format
msgid " --disable-stdcall-fixup Don't link _sym to _sym@nn\n"
msgstr " --disable-stdcall-fixup Ne pas lier _sym à _sym@nn\n"
#: eaarch64pe.c:371 earm64pe.c:371 earm_wince_pe.c:360 earmpe.c:360
#: ei386pe.c:360 ei386pe_posix.c:360 ei386pep.c:371 emcorepe.c:360 eshpe.c:360
#, c-format
msgid " --enable-stdcall-fixup Link _sym to _sym@nn without warnings\n"
msgstr " --enable-stdcall-fixup Lier _sym à _sym@nn sans avertissement\n"
#: eaarch64pe.c:372 earm64pe.c:372 earm_wince_pe.c:361 earmpe.c:361
#: ei386pe.c:361 ei386pe_posix.c:361 ei386pep.c:372 emcorepe.c:361 eshpe.c:361
#, c-format
msgid " --exclude-symbols sym,sym,... Exclude symbols from automatic export\n"
msgstr " --exclude-symbols sym,sym,... Exclure les symboles de l'exportation automatique\n"
#: eaarch64pe.c:373 earm64pe.c:373 earm_wince_pe.c:362 earmpe.c:362
#: ei386pe.c:362 ei386pe_posix.c:362 ei386pep.c:373 emcorepe.c:362 eshpe.c:362
#, c-format
msgid " --exclude-all-symbols Exclude all symbols from automatic export\n"
msgstr " --exclude-all-symbols Exclure tous les symboles de l'exportation automatique\n"
#: eaarch64pe.c:374 earm64pe.c:374 earm_wince_pe.c:363 earmpe.c:363
#: ei386pe.c:363 ei386pe_posix.c:363 ei386pep.c:374 emcorepe.c:363 eshpe.c:363
#, c-format
msgid " --exclude-libs lib,lib,... Exclude libraries from automatic export\n"
msgstr " --exclude-libs bibli,... Exclure les bibliothèques lors l'exportation automatique\n"
#: eaarch64pe.c:375 earm64pe.c:375 earm_wince_pe.c:364 earmpe.c:364
#: ei386pe.c:364 ei386pe_posix.c:364 ei386pep.c:375 emcorepe.c:364 eshpe.c:364
#, c-format
msgid " --exclude-modules-for-implib mod,mod,...\n"
msgstr " --exclude-modules-for-implib mod,mod,...\n"
#: eaarch64pe.c:376 earm64pe.c:376 earm_wince_pe.c:365 earmpe.c:365
#: ei386pe.c:365 ei386pe_posix.c:365 ei386pep.c:376 emcorepe.c:365 eshpe.c:365
#, c-format
msgid " Exclude objects, archive members from auto\n"
msgstr " Exclure les objets, archiver les membres depuis auto\n"
#: eaarch64pe.c:377 earm64pe.c:377 ei386pep.c:377
#, c-format
msgid " export, place into import library instead\n"
msgstr " exporter, insère dans la bibliothèque importée.\n"
#: eaarch64pe.c:378 earm64pe.c:378 earm_wince_pe.c:367 earmpe.c:367
#: ei386pe.c:367 ei386pe_posix.c:367 ei386pep.c:378 emcorepe.c:367 eshpe.c:367
#, c-format
msgid " --export-all-symbols Automatically export all globals to DLL\n"
msgstr " --export-all-symbols Exporter automatiquement tous les globaux au DLL\n"
#: eaarch64pe.c:379 earm64pe.c:379 earm_wince_pe.c:368 earmpe.c:368
#: ei386pe.c:368 ei386pe_posix.c:368 ei386pep.c:379 emcorepe.c:368 eshpe.c:368
#, c-format
msgid " --kill-at Remove @nn from exported symbols\n"
msgstr " --kill-at Enlever les @nn des symboles exportés\n"
#: eaarch64pe.c:380 earm64pe.c:380 earm_wince_pe.c:369 earmpe.c:369
#: ei386pe.c:369 ei386pe_posix.c:369 ei386pep.c:380 emcorepe.c:369 eshpe.c:369
#, c-format
msgid " --output-def <file> Generate a .DEF file for the built DLL\n"
msgstr " --output-def <fichier> Générer le fichier .DEF pour le DLL construit\n"
#: eaarch64pe.c:381 earm64pe.c:381 earm_wince_pe.c:370 earmpe.c:370
#: ei386pe.c:370 ei386pe_posix.c:370 ei386pep.c:381 emcorepe.c:370 eshpe.c:370
#, c-format
msgid " --warn-duplicate-exports Warn about duplicate exports\n"
msgstr " --warn-duplicate-exports Avertir lors de l'exportation avec duplication\n"
#: eaarch64pe.c:382 earm64pe.c:382 ei386pep.c:382
#, c-format
msgid ""
" --compat-implib Create backward compatible import libs;\n"
" create __imp_<SYMBOL> as well\n"
msgstr ""
" --compat-implib Créer des bibliothèques d'importation avec compatibilité arrière; \n"
" créer également __imp_<SYMBOL>\n"
#: eaarch64pe.c:383 earm64pe.c:383 ei386pep.c:383
#, c-format
msgid ""
" --enable-auto-image-base Automatically choose image base for DLLs\n"
" unless user specifies one\n"
msgstr ""
" --enable-auto-image-base Automatiquement choisir l'image de base pour les DLL\n"
" à moins que l'usager en ait spécifié une\n"
#: eaarch64pe.c:384 earm64pe.c:384 ei386pep.c:384
#, c-format
msgid " --disable-auto-image-base Do not auto-choose image base (default)\n"
msgstr " --disable-auto-image-base Ne pas choisir automatiquement l'image de base (par défaut)\n"
#: eaarch64pe.c:385 earm64pe.c:385 earm_wince_pe.c:374 earmpe.c:374
#: ei386pe.c:374 ei386pe_posix.c:374 ei386pep.c:385 emcorepe.c:374 eshpe.c:374
#, c-format
msgid ""
" --dll-search-prefix=<string> When linking dynamically to a dll without\n"
" an importlib, use <string><basename>.dll\n"
" in preference to lib<basename>.dll \n"
msgstr ""
" --dll-search-prefix=<chaîne> Lors de l'édition dynamique de liens vers un DLL sans\n"
" importlib, utiliser <chaîne><basename>.dll \n"
" de préférence à lib<basename>.dll \n"
#: eaarch64pe.c:386 earm64pe.c:386 earm_wince_pe.c:375 earmpe.c:375
#: ei386pe.c:375 ei386pe_posix.c:375 ei386pep.c:386 emcorepe.c:375 eshpe.c:375
#, c-format
msgid ""
" --enable-auto-import Do sophisticated linking of _sym to\n"
" __imp_sym for DATA references\n"
msgstr ""
" --enable-auto-import Faire de l'édition sophitiquée de liens de _sym vers \n"
" __imp_sym pour les références DATA\n"
#: eaarch64pe.c:387 earm64pe.c:387 earm_wince_pe.c:376 earmpe.c:376
#: ei386pe.c:376 ei386pe_posix.c:376 ei386pep.c:387 emcorepe.c:376 eshpe.c:376
#, c-format
msgid " --disable-auto-import Do not auto-import DATA items from DLLs\n"
msgstr " --disable-auto-image-base Ne pas choisir des items DATA auto-importés à partir des DLLs\n"
#: eaarch64pe.c:388 earm64pe.c:388 ei386pep.c:388
#, c-format
msgid ""
" --enable-runtime-pseudo-reloc Work around auto-import limitations by\n"
" adding pseudo-relocations resolved at\n"
" runtime\n"
msgstr ""
" --enable-runtime-pseudo-reloc Traiter les limitation d'auto-importations en\n"
" ajoutant des pseudo-relocalisations résolues\n"
" lors de l'exécution\n"
#: eaarch64pe.c:389 earm64pe.c:389 ei386pep.c:389
#, c-format
msgid ""
" --disable-runtime-pseudo-reloc Do not add runtime pseudo-relocations for\n"
" auto-imported DATA\n"
msgstr ""
" --disable-runtime-pseudo-reloc Ne pas ajouter de pseudo-relocalisations lors\n"
" lors de l'exécution pour les données auto-importées\n"
#: eaarch64pe.c:390 earm64pe.c:390 ei386pep.c:390
#, c-format
msgid ""
" --enable-extra-pep-debug Enable verbose debug output when building\n"
" or linking to DLLs (esp. auto-import)\n"
msgstr ""
" --enable-extra-pep-debug Permettre le mode informatif durant la sortie\n"
" de mise au point lors de la construction ou du lien\n"
" vers un DLLs (particulièrement en auto-import)\n"
#: eaarch64pe.c:391 earm64pe.c:391 earm_wince_pe.c:383 earmpe.c:383
#: ei386pe.c:383 ei386pe_posix.c:383 ei386pep.c:391 emcorepe.c:383 eshpe.c:383
#, c-format
msgid ""
" --enable-long-section-names Use long COFF section names even in\n"
" executable image files\n"
msgstr ""
" --enable-long-section-names Utiliser de longs noms de section COFF même dans\n"
" des fichiers images exécutables\n"
#: eaarch64pe.c:392 earm64pe.c:392 earm_wince_pe.c:384 earmpe.c:384
#: ei386pe.c:384 ei386pe_posix.c:384 ei386pep.c:392 emcorepe.c:384 eshpe.c:384
#, c-format
msgid ""
" --disable-long-section-names Never use long COFF section names, even\n"
" in object files\n"
msgstr ""
" --disable-long-section-names Ne jamais utiliser de longs noms de section COFF, même\n"
" dans les fichiers objet\n"
#: eaarch64pe.c:393 earm64pe.c:393 ei386pep.c:393
#, c-format
msgid ""
" --[disable-]high-entropy-va Image is compatible with 64-bit address space\n"
" layout randomization (ASLR)\n"
msgstr ""
" --[disable-]high-entropy-va L'image est compatible avec la randomisation d'agencement d'un\n"
" espace d'adressage 64-bit (ASLR)\n"
#: eaarch64pe.c:394 earm64pe.c:394 earm_wince_pe.c:385 earmpe.c:385
#: ei386pe.c:385 ei386pe_posix.c:385 ei386pep.c:394 emcorepe.c:385 eshpe.c:385
#, c-format
msgid ""
" --[disable-]dynamicbase Image base address may be relocated using\n"
" address space layout randomization (ASLR)\n"
msgstr ""
" --[disable-]dynamicbase L'image de l'adresse de base devrait être translatée en utilsant\n"
" la gestion aléatoire de l'espace mémoire(ASLR)\n"
#: eaarch64pe.c:395 earm64pe.c:395 earm_wince_pe.c:386 earmpe.c:386
#: ei386pe.c:386 ei386pe_posix.c:386 ei386pep.c:395 emcorepe.c:386 eshpe.c:386
#, c-format
msgid " --enable-reloc-section Create the base relocation table\n"
msgstr " --enable-reloc-section Créer la table de relocalisation de base\n"
#: eaarch64pe.c:396 earm64pe.c:396 earm_wince_pe.c:387 earmpe.c:387
#: ei386pe.c:387 ei386pe_posix.c:387 ei386pep.c:396 emcorepe.c:387 eshpe.c:387
#, c-format
msgid " --disable-reloc-section Do not create the base relocation table\n"
msgstr " --disable-reloc-section Ne pas créer la table de relocalisation de base\n"
#: eaarch64pe.c:397 earm64pe.c:397 earm_wince_pe.c:388 earmpe.c:388
#: ei386pe.c:388 ei386pe_posix.c:388 ei386pep.c:397 emcorepe.c:388 eshpe.c:388
#, c-format
msgid " --[disable-]forceinteg Code integrity checks are enforced\n"
msgstr " --[disable-]forceinteg Les vérifications de l'intégrité du code sont imposées\n"
#: eaarch64pe.c:398 earm64pe.c:398 earm_wince_pe.c:389 earmpe.c:389
#: ei386pe.c:389 ei386pe_posix.c:389 ei386pep.c:398 emcorepe.c:389 eshpe.c:389
#, c-format
msgid ""
" --[disable-]nxcompat Image is compatible with data execution\n"
" prevention\n"
msgstr ""
" --[disable-]nxcompat L'image est compatible avec la vérification\n"
" de données d'exécution\n"
#: eaarch64pe.c:399 earm64pe.c:399 earm_wince_pe.c:390 earmpe.c:390
#: ei386pe.c:390 ei386pe_posix.c:390 ei386pep.c:399 emcorepe.c:390 eshpe.c:390
#, c-format
msgid ""
" --[disable-]no-isolation Image understands isolation but do not\n"
" isolate the image\n"
msgstr ""
" --[disable-]no-isolation L'image autorise l'isolation mais\n"
" n'isole pas l'image\n"
#: eaarch64pe.c:400 earm64pe.c:400 ei386pep.c:400
#, c-format
msgid ""
" --[disable-]no-seh Image does not use SEH; no SE handler may\n"
" be called in this image\n"
msgstr ""
" --[disable-]no-seh L'image n'utilise pas SEH ; Aucun gestionnaire de SE ne doit\n"
" être appelé dans cette image\n"
#: eaarch64pe.c:401 earm64pe.c:401 earm_wince_pe.c:392 earmpe.c:392
#: ei386pe.c:392 ei386pe_posix.c:392 ei386pep.c:401 emcorepe.c:392 eshpe.c:392
#, c-format
msgid " --[disable-]no-bind Do not bind this image\n"
msgstr " --[disable-]no-bind Ne pas lier cette image\n"
#: eaarch64pe.c:402 earm64pe.c:402 earm_wince_pe.c:393 earmpe.c:393
#: ei386pe.c:393 ei386pe_posix.c:393 ei386pep.c:402 emcorepe.c:393 eshpe.c:393
#, c-format
msgid " --[disable-]wdmdriver Driver uses the WDM model\n"
msgstr " --[disable-]wdmdriver Le pilote utilise le modèle WDM\n"
#: eaarch64pe.c:403 earm64pe.c:403 earm_wince_pe.c:394 earmpe.c:394
#: ei386pe.c:394 ei386pe_posix.c:394 ei386pep.c:403 emcorepe.c:394 eshpe.c:394
#, c-format
msgid " --[disable-]tsaware Image is Terminal Server aware\n"
msgstr " --[disable-]tsaware L'image est avisée du Server Terminal\n"
#: eaarch64pe.c:404 earm64pe.c:404 earm_wince_pe.c:395 earmpe.c:395
#: ei386pe.c:395 ei386pe_posix.c:395 ei386pep.c:404 emcorepe.c:395 eshpe.c:395
#, c-format
msgid " --build-id[=STYLE] Generate build ID\n"
msgstr " --build-id[=STYLE] Générer un ID de construction\n"
#: eaarch64pe.c:406 earm64pe.c:406 earm_wince_pe.c:397 earmpe.c:397
#: ei386pe.c:397 ei386pe_posix.c:397 ei386pep.c:406 emcorepe.c:397 eshpe.c:397
#, c-format
msgid " --pdb=[FILENAME] Generate PDB file\n"
msgstr " --pdb=[NOMDEFICHIER] Générer un fichier PDB\n"
#: eaarch64pe.c:535 earm64pe.c:535 earm_wince_pe.c:546 earmpe.c:546
#: ei386beos.c:188 ei386pe.c:546 ei386pe_posix.c:546 ei386pep.c:535
#: emcorepe.c:546 eshpe.c:546
msgid "%P: warning: bad version number in -subsystem option\n"
msgstr "%P : avertissement : mauvais numéro de version dans l'option -subsystem\n"
#: eaarch64pe.c:560 earm64pe.c:560 earm_wince_pe.c:571 earmpe.c:571
#: ei386beos.c:205 ei386pe.c:571 ei386pe_posix.c:571 ei386pep.c:560
#: emcorepe.c:571 eshpe.c:571
msgid "%F%P: invalid subsystem type %s\n"
msgstr "%F%P : type de sous-système invalide %s\n"
#: eaarch64pe.c:581 earm64pe.c:581 earm_wince_pe.c:592 earmpe.c:592
#: ei386beos.c:216 ei386pe.c:592 ei386pe_posix.c:592 ei386pep.c:581
#: emcorepe.c:592 eshpe.c:592
msgid "%F%P: invalid hex number for PE parameter '%s'\n"
msgstr "%F%P : nombre hexadécimal invalide pour un paramètre PE « %s »\n"
#: eaarch64pe.c:598 earm64pe.c:598 earm_wince_pe.c:609 earmpe.c:609
#: ei386beos.c:233 ei386pe.c:609 ei386pe_posix.c:609 ei386pep.c:598
#: emcorepe.c:609 eshpe.c:609
msgid "%F%P: strange hex info for PE parameter '%s'\n"
msgstr "%F%P : info étrange en hexadécimal pour un paramètre PE « %s »\n"
#: eaarch64pe.c:615 earm64pe.c:615 earm_wince_pe.c:625 earmpe.c:625
#: eelf32mcore.c:356 ei386beos.c:249 ei386pe.c:625 ei386pe_posix.c:625
#: ei386pep.c:615 emcorepe.c:625 eshpe.c:625
msgid "%F%P: cannot open base file %s\n"
msgstr "%F%P : impossible d'ouvrir le fichier de base %s\n"
#: eaarch64pe.c:932 earm64pe.c:932 earm_wince_pe.c:955 earmpe.c:955
#: ei386beos.c:345 ei386pe.c:955 ei386pe_posix.c:955 ei386pep.c:932
#: emcorepe.c:955 eshpe.c:955
msgid "%P: warning, file alignment > section alignment\n"
msgstr "%P : avertissement, alignement de fichier > alignement de section\n"
#: eaarch64pe.c:945 earm64pe.c:945 ei386pep.c:945
msgid "%P: warning: --export-dynamic is not supported for PE+ targets, did you mean --export-all-symbols?\n"
msgstr "%P : avertissement : --export-dynamic n'est pas pris en charge pour les cibles PE+, vouliez-vous dire --export-all-symbols?\n"
#: eaarch64pe.c:997 earm64pe.c:997 earm_wince_pe.c:1049 earmpe.c:1049
#: ei386pe.c:1049 ei386pe_posix.c:1049 ei386pep.c:997 emcorepe.c:1049
#: eshpe.c:1049
msgid "%P: warning: overwriting decorated name %s with %s\n"
msgstr "%P : avertissement : réécriture du nom décoré %s avec %s\n"
#: eaarch64pe.c:1042 eaarch64pe.c:1070 earm64pe.c:1042 earm64pe.c:1070
#: ei386pep.c:1042 ei386pep.c:1070
#, c-format
msgid "warning: resolving %s by linking to %s\n"
msgstr "avertissement : résolution de %s par un lien vers %s\n"
#: eaarch64pe.c:1047 eaarch64pe.c:1075 earm64pe.c:1047 earm64pe.c:1075
#: earm_wince_pe.c:1023 earmpe.c:1023 ei386pe.c:1023 ei386pe_posix.c:1023
#: ei386pep.c:1047 ei386pep.c:1075 emcorepe.c:1023 eshpe.c:1023
msgid "Use --enable-stdcall-fixup to disable these warnings\n"
msgstr "Utiliser --enable-stdcall-fixup pour inhiber les avertissements\n"
#: eaarch64pe.c:1048 eaarch64pe.c:1076 earm64pe.c:1048 earm64pe.c:1076
#: earm_wince_pe.c:1024 earmpe.c:1024 ei386pe.c:1024 ei386pe_posix.c:1024
#: ei386pep.c:1048 ei386pep.c:1076 emcorepe.c:1024 eshpe.c:1024
msgid "Use --disable-stdcall-fixup to disable these fixups\n"
msgstr "Utiliser --disable-stdcall-fixup pour inhiber les correctifs\n"
#: eaarch64pe.c:1131 earm64pe.c:1131 earm_wince_pe.c:1115 earmpe.c:1115
#: ei386pe.c:1115 ei386pe_posix.c:1115 ei386pep.c:1131 emcorepe.c:1115
#: eshpe.c:1115
msgid "%P: %H: cannot get section contents - auto-import exception\n"
msgstr "%P : %H : impossible d'obtenir le contenu de section - exception auto-import\n"
#: eaarch64pe.c:1261 earm64pe.c:1261 earm_wince_pe.c:1246 earmpe.c:1246
#: ei386pe.c:1246 ei386pe_posix.c:1246 ei386pep.c:1261 emcorepe.c:1246
#: eshpe.c:1246
msgid "%P: warning: .buildid section discarded, --build-id ignored\n"
msgstr "%P : avertissement : section .buildid rejetée, --build-id ignoré\n"
#: eaarch64pe.c:1382 earm64pe.c:1382 earm_wince_pe.c:1367 earmpe.c:1367
#: ei386pe.c:1367 ei386pe_posix.c:1367 ei386pep.c:1382 emcorepe.c:1367
#: eshpe.c:1367
msgid "%P: warning: cannot create .buildid section, --build-id ignored\n"
msgstr "%P : avertissement : impossible de créer la section .buildid, --build-id ignoré\n"
#: eaarch64pe.c:1468 earm64pe.c:1468 earm_wince_pe.c:1452 earmpe.c:1452
#: ei386pe.c:1452 ei386pe_posix.c:1452 ei386pep.c:1468 emcorepe.c:1452
#: eshpe.c:1452
msgid "%F%P: cannot perform PE operations on non PE output file '%pB'\n"
msgstr "%F%P : ne peut effectuer des opérations PE sur le fichier de sortie « %pB » qui n'est pas PE.\n"
#: eaarch64pe.c:1592 earm64pe.c:1592 earm_wince_pe.c:1595 earmpe.c:1595
#: ei386pe.c:1595 ei386pe_posix.c:1595 ei386pep.c:1592 emcorepe.c:1595
#: eshpe.c:1595
msgid "%X%P: unable to process relocs: %E\n"
msgstr "%X%P : incapable de traiter les relocalisations : %E\n"
#: eaix5ppc.c:302 eaix5rs6.c:302 eaixppc.c:302 eaixrs6.c:302 eppcmacos.c:302
msgid "%F%P: cannot open %s\n"
msgstr "%F%P : impossible d'ouvrir %s\n"
#: eaix5ppc.c:349 eaix5rs6.c:349 eaixppc.c:349 eaixrs6.c:349 eppcmacos.c:349
msgid "%F%P: cannot read %s\n"
msgstr "%F%P : ne peut lire %s\n"
#: eaix5ppc.c:377 eaix5rs6.c:377 eaixppc.c:377 eaixrs6.c:377 eppcmacos.c:377
msgid "%P: warning: ignoring invalid -D number %s\n"
msgstr "%P : avertissement : pas de prise en compte d'un nombre invalide %s pour -D\n"
#: eaix5ppc.c:385 eaix5rs6.c:385 eaixppc.c:385 eaixrs6.c:385 eppcmacos.c:385
msgid "%P: warning: ignoring invalid -H number %s\n"
msgstr "%P : avertissement : pas de prise en compte d'un nombre invalide %s pour -H\n"
#: eaix5ppc.c:497 eaix5rs6.c:497 eaixppc.c:497 eaixrs6.c:497 eppcmacos.c:497
msgid "%P: warning: ignoring invalid -bmaxdata number %s\n"
msgstr "%P : avertissement : pas de prise en compte d'un nombre invalide %s pour -bmaxdata\n"
#: eaix5ppc.c:506 eaix5rs6.c:506 eaixppc.c:506 eaixrs6.c:506 eppcmacos.c:506
msgid "%P: warning: ignoring invalid -bmaxstack number %s\n"
msgstr "%P : avertissement : pas de prise en compte d'un nombre invalide %s pour -bmaxstack\n"
#: eaix5ppc.c:519 eaix5rs6.c:519 eaixppc.c:519 eaixrs6.c:519 eppcmacos.c:519
msgid "%P: warning: ignoring invalid module type %s\n"
msgstr "%P : avertissement : pas de prise en compte d'un type de module invalide %s\n"
#: eaix5ppc.c:549 eaix5rs6.c:549 eaixppc.c:549 eaixrs6.c:549 eppcmacos.c:549
msgid "%P: warning: ignoring invalid -pD number %s\n"
msgstr "%P : avertissement : pas de prise en compte d'un nombre invalide %s pour -pD\n"
#: eaix5ppc.c:572 eaix5rs6.c:572 eaixppc.c:572 eaixrs6.c:572 eppcmacos.c:572
msgid "%P: warning: ignoring invalid -pT number %s\n"
msgstr "%P : avertissement : pas de prise en compte d'un nombre invalide %s pour -pT\n"
#: eaix5ppc.c:701 eaix5rs6.c:701 eaixppc.c:701 eaixrs6.c:701 eppcmacos.c:701
msgid "%F%P: bfd_xcoff_link_record_set failed: %E\n"
msgstr "%F%P : bfd_xcoff_link_record_set en échec : %E\n"
#: eaix5ppc.c:731 eaix5rs6.c:731 eaixppc.c:731 eaixrs6.c:731 eppcmacos.c:731
msgid "%F%P: bfd_link_hash_lookup of export symbol failed: %E\n"
msgstr "%F%P : bfd_link_hash_lookup de symboles exportés en échec : %E\n"
#: eaix5ppc.c:733 eaix5rs6.c:733 eaixppc.c:733 eaixrs6.c:733 eppcmacos.c:733
msgid "%F%P: bfd_xcoff_export_symbol failed: %E\n"
msgstr "%F%P : bfd_xcoff_export_symbol en échec : %E\n"
#: eaix5ppc.c:838 eaix5rs6.c:838 eaixppc.c:838 eaixrs6.c:838 eppcmacos.c:838
msgid "%F%P: can't find output section %s\n"
msgstr "%F%P : impossible de trouver la section de sortie %s\n"
#: eaix5ppc.c:875 eaix5rs6.c:875 eaixppc.c:875 eaixrs6.c:875 eppcmacos.c:875
msgid "%F%P: can't find %s in output section\n"
msgstr "%F%P : ne peut trouver %s dans la section de sortie\n"
#: eaix5ppc.c:942 eaix5rs6.c:942 eaixppc.c:942 eaixrs6.c:942 eppcmacos.c:942
msgid "%P: can't find required output section %s\n"
msgstr "%P : impossible de trouver la section de sortie require %s\n"
#: eaix5ppc.c:1124 eaix5rs6.c:1124 eaixppc.c:1124 eaixrs6.c:1124
#: eppcmacos.c:1124
msgid "%X%P: can not size stub sections: %E\n"
msgstr "%X%P : impossible d'estimer la taille des sections d'amorçage : %E\n"
#: eaix5ppc.c:1129 eaix5rs6.c:1129 eaixppc.c:1129 eaixrs6.c:1129
#: eppcmacos.c:1129
msgid "%F%P: failed to layout dynamic sections: %E\n"
msgstr "%F%P : impossible de structurer les sections dynamiques : %E\n"
#: eaix5ppc.c:1342 eaix5rs6.c:1342 eaixppc.c:1342 eaixrs6.c:1342
#: eppcmacos.c:1342
msgid "%F%P:%s:%d: #! ([member]) is not supported in import files\n"
msgstr "%F%P : %s : %d : #! ([membre]) non pris en chargé dans les fichiers d'import\n"
#: eaix5ppc.c:1359 eaix5rs6.c:1359 eaixppc.c:1359 eaixrs6.c:1359
#: eppcmacos.c:1359
msgid "%F%P: could not parse import path: %E\n"
msgstr "%F%P : impossible d'analyser le chemin d'importation : %E\n"
#: eaix5ppc.c:1369 eaix5ppc.c:1381 eaix5rs6.c:1369 eaix5rs6.c:1381
#: eaixppc.c:1369 eaixppc.c:1381 eaixrs6.c:1369 eaixrs6.c:1381 eppcmacos.c:1369
#: eppcmacos.c:1381
msgid "%P:%s:%d: warning: syntax error in import file\n"
msgstr "%P : %s : %d : avertissement : erreur de syntaxe dans le fichier d'import\n"
#: eaix5ppc.c:1416 eaix5rs6.c:1416 eaixppc.c:1416 eaixrs6.c:1416
#: eppcmacos.c:1416
msgid "%P:%s%d: warning: syntax error in import/export file\n"
msgstr "%P : %s%d : avertissement : erreur de syntaxe dans le fichier d'import/export\n"
#: eaix5ppc.c:1434 eaix5rs6.c:1434 eaixppc.c:1434 eaixrs6.c:1434
#: eppcmacos.c:1434
msgid "%P:%s:%d: warning: syntax error in import/export file\n"
msgstr "%P : %s : %d : avertissement : erreur de syntaxe dans le fichier d'import/export\n"
#: eaix5ppc.c:1469 eaix5rs6.c:1469 eaixppc.c:1469 eaixrs6.c:1469
#: eppcmacos.c:1469
msgid "%X%P:%s:%d: failed to import symbol %s: %E\n"
msgstr "%X%P : %s : %d : impossible d'importer le symbole %s : %E\n"
#: eaix5ppc.c:1479 eaix5rs6.c:1479 eaixppc.c:1479 eaixrs6.c:1479
#: eppcmacos.c:1479
msgid "%P:%s:%d: warning: ignoring unterminated last line\n"
msgstr "%P : %s : %d : avertissement : ignore la non terminaison de la dernière ligne\n"
#: eaix5ppc.c:1514 eaix5rs6.c:1514 eaixppc.c:1514 eaixrs6.c:1514
#: eppcmacos.c:1514
msgid "%F%P: only relocations against symbols are permitted\n"
msgstr "%F%P: seules les relocalisations vers des symboles sont autorisées\n"
#: eaix5ppc.c:1517 eaix5rs6.c:1517 eaixppc.c:1517 eaixrs6.c:1517
#: eppcmacos.c:1517
msgid "%F%P: bfd_xcoff_link_count_reloc failed: %E\n"
msgstr "%F%P : bfd_xcoff_link_count_reloc en échec : %E\n"
#: eaix5ppc.c:1605 eaix5rs6.c:1605 eaixppc.c:1605 eaixrs6.c:1605
#: eppcmacos.c:1605
msgid "%F%P: can not create stub BFD: %E\n"
msgstr "%F%P : impossible de créer l'espace d'amorçage BFD : %E\n"
#: eaix5ppc.c:1615 eaix5rs6.c:1615 eaixppc.c:1615 eaixrs6.c:1615
#: eelf64_s390.c:66 eelf64lppc.c:132 eelf64lppc_fbsd.c:132 eelf64ppc.c:132
#: eelf64ppc_fbsd.c:132 eppcmacos.c:1615
msgid "%F%P: can not init BFD: %E\n"
msgstr "%F%P : impossible d'initialiser le BFD : %E\n"
#: ealphavms.c:168 eelf64_ia64_vms.c:168
#, c-format
msgid " --identification <string> Set the identification of the output\n"
msgstr " --identification <chaîne> Fixe l'identification de la sortie\n"
#: earm_wince_pe.c:354 earmpe.c:354 ei386pe.c:354 ei386pe_posix.c:354
#: emcorepe.c:354 eshpe.c:354
#, c-format
msgid " --thumb-entry=<symbol> Set the entry point to be Thumb <symbol>\n"
msgstr " --thumb-entry=<symbole> Initialiser le point d'entrée de Thumb <symbole>\n"
#: earm_wince_pe.c:355 earmpe.c:355 ei386pe.c:355 ei386pe_posix.c:355
#: emcorepe.c:355 eshpe.c:355
#, c-format
msgid " --[no-]insert-timestamp Use a real timestamp rather than zero (default).\n"
msgstr " --[no-]insert-timestamp Utiliser un horodatage existant plutôt que zéro (défaut).\n"
#: earm_wince_pe.c:366 earmpe.c:366 ei386pe.c:366 ei386pe_posix.c:366
#: emcorepe.c:366 eshpe.c:366
#, c-format
msgid " export, place into import library instead.\n"
msgstr " exporter, insère dans la bibliothèque importée.\n"
#: earm_wince_pe.c:371 earmpe.c:371 ei386pe.c:371 ei386pe_posix.c:371
#: emcorepe.c:371 eshpe.c:371
#, c-format
msgid ""
" --compat-implib Create backward compatible import libs;\n"
" create __imp_<SYMBOL> as well.\n"
msgstr ""
" --compat-implib Créer des bibliothèques d'importation avec\n"
" compatibilité arrière; \n"
" créer __imp_<SYMBOL> aussi\n"
#: earm_wince_pe.c:372 earmpe.c:372 ei386pe.c:372 ei386pe_posix.c:372
#: emcorepe.c:372 eshpe.c:372
#, c-format
msgid ""
" --enable-auto-image-base[=<address>] Automatically choose image base for DLLs\n"
" (optionally starting with address) unless\n"
" specifically set with --image-base\n"
msgstr ""
" --enable-auto-image-base[=adresse] Automatiquement choisir l'image de base pour les DLLs\n"
" (commencant optionnellement avec adresse) à moins que\n"
" cela soit fixé spécifiquement avec --image-base\n"
#: earm_wince_pe.c:373 earmpe.c:373 ei386pe.c:373 ei386pe_posix.c:373
#: emcorepe.c:373 eshpe.c:373
#, c-format
msgid " --disable-auto-image-base Do not auto-choose image base. (default)\n"
msgstr " --disable-auto-image-base Ne pas choisir automatiquement l'image de base (par défaut)\n"
#: earm_wince_pe.c:377 earmpe.c:377 ei386pe.c:377 ei386pe_posix.c:377
#: emcorepe.c:377 eshpe.c:377
#, c-format
msgid ""
" --enable-runtime-pseudo-reloc Work around auto-import limitations by\n"
" adding pseudo-relocations resolved at\n"
" runtime.\n"
msgstr ""
" --dll-search-prefix=<chaîne> Traiter les limitation d'auto-importations en\n"
" ajoutant des pseudo-relocalisations résolues\n"
" lors de l'exécution\n"
#: earm_wince_pe.c:378 earmpe.c:378 ei386pe.c:378 ei386pe_posix.c:378
#: emcorepe.c:378 eshpe.c:378
#, c-format
msgid ""
" --disable-runtime-pseudo-reloc Do not add runtime pseudo-relocations for\n"
" auto-imported DATA.\n"
msgstr ""
" --enable-auto-import Ne pas ajouter de pseudo-relocalisations lors\n"
" lors de l'exécution pour les données auto-importées\n"
#: earm_wince_pe.c:379 earmpe.c:379 ei386pe.c:379 ei386pe_posix.c:379
#: emcorepe.c:379 eshpe.c:379
#, c-format
msgid ""
" --enable-extra-pe-debug Enable verbose debug output when building\n"
" or linking to DLLs (esp. auto-import)\n"
msgstr ""
" --enable-extra-pe-debug Permettre le mode informatif durant la sortie\n"
" de mise au point lors de la construction ou du lien\n"
" vers un DLLs (spécialement en auto-import)\n"
#: earm_wince_pe.c:381 earmpe.c:381 ei386pe.c:381 ei386pe_posix.c:381
#: emcorepe.c:381 eshpe.c:381
#, c-format
msgid ""
" --large-address-aware Executable supports virtual addresses\n"
" greater than 2 gigabytes\n"
msgstr ""
" --large-address-aware Supporter des adresses virtuelles pour les exécutables\n"
" plus grande que 2 gigaoctets\n"
#: earm_wince_pe.c:382 earmpe.c:382 ei386pe.c:382 ei386pe_posix.c:382
#: emcorepe.c:382 eshpe.c:382
#, c-format
msgid ""
" --disable-large-address-aware Executable does not support virtual\n"
" addresses greater than 2 gigabytes\n"
msgstr ""
" --disable-large-address-aware Ne pas prendre en charge des adresses virtuelles \n"
" plus grandes que 2 gigaoctets pour les exécutables\n"
#: earm_wince_pe.c:391 earmpe.c:391 ei386pe.c:391 ei386pe_posix.c:391
#: emcorepe.c:391 eshpe.c:391
#, c-format
msgid ""
" --[disable-]no-seh Image does not use SEH. No SE handler may\n"
" be called in this image\n"
msgstr ""
" --[disable-]no-seh L'image n'utilise pas SEH. Aucun gestionnaire de SE ne doit\n"
" appelé dans cette image\n"
#: earm_wince_pe.c:968 earmpe.c:968 ei386pe.c:968 ei386pe_posix.c:968
#: emcorepe.c:968 eshpe.c:968
msgid "%P: warning: --export-dynamic is not supported for PE targets, did you mean --export-all-symbols?\n"
msgstr "%P : avertissement : --export-dynamic n'est pas pris en charge pour les cibles PE, vouliez-vous dire --export-all-symbols?\n"
#: earm_wince_pe.c:1018 earmpe.c:1018 ei386pe.c:1018 ei386pe_posix.c:1018
#: emcorepe.c:1018 eshpe.c:1018
msgid "%P: warning: resolving %s by linking to %s\n"
msgstr "%P : avertissement : résolution de %s par un lien vers %s\n"
#: earm_wince_pe.c:1819 earmpe.c:1819 ei386pe.c:1819 ei386pe_posix.c:1819
#: emcorepe.c:1819 eshpe.c:1819
#, c-format
msgid "%P: errors encountered processing file %s for interworking\n"
msgstr "%P : erreurs rencontrées lors du traitement du fichier %s pour l'interfonctionnement\n"
#: earm_wince_pe.c:1987 earmelf.c:524 earmelf_fbsd.c:524 earmelf_fuchsia.c:525
#: earmelf_haiku.c:525 earmelf_linux.c:525 earmelf_linux_eabi.c:525
#: earmelf_linux_fdpiceabi.c:525 earmelf_nacl.c:525 earmelf_nbsd.c:524
#: earmelf_phoenix.c:525 earmelf_vxworks.c:524 earmelfb.c:524
#: earmelfb_fbsd.c:524 earmelfb_fuchsia.c:525 earmelfb_linux.c:525
#: earmelfb_linux_eabi.c:525 earmelfb_linux_fdpiceabi.c:525 earmelfb_nacl.c:525
#: earmelfb_nbsd.c:524 earmnto.c:524 earmpe.c:1987 ei386pe.c:1987
#: ei386pe_posix.c:1987 emcorepe.c:1987 eshpe.c:1987
msgid "%P: warning: '--thumb-entry %s' is overriding '-e %s'\n"
msgstr "%P : avertissement : « --thumb-entry %s » écrase « -e %s »\n"
#: earm_wince_pe.c:1992 earmelf.c:529 earmelf_fbsd.c:529 earmelf_fuchsia.c:530
#: earmelf_haiku.c:530 earmelf_linux.c:530 earmelf_linux_eabi.c:530
#: earmelf_linux_fdpiceabi.c:530 earmelf_nacl.c:530 earmelf_nbsd.c:529
#: earmelf_phoenix.c:530 earmelf_vxworks.c:529 earmelfb.c:529
#: earmelfb_fbsd.c:529 earmelfb_fuchsia.c:530 earmelfb_linux.c:530
#: earmelfb_linux_eabi.c:530 earmelfb_linux_fdpiceabi.c:530 earmelfb_nacl.c:530
#: earmelfb_nbsd.c:529 earmnto.c:529 earmpe.c:1992 ei386pe.c:1992
#: ei386pe_posix.c:1992 emcorepe.c:1992 eshpe.c:1992
msgid "%P: warning: cannot find thumb start symbol %s\n"
msgstr "%P : avertissement : ne peut repérer le symbole thumb de départ %s\n"
#: earmelf.c:145 earmelf_fbsd.c:145 earmelf_fuchsia.c:146 earmelf_haiku.c:146
#: earmelf_linux.c:146 earmelf_linux_eabi.c:146 earmelf_linux_fdpiceabi.c:146
#: earmelf_nacl.c:146 earmelf_nbsd.c:145 earmelf_phoenix.c:146
#: earmelf_vxworks.c:145 earmelfb.c:145 earmelfb_fbsd.c:145
#: earmelfb_fuchsia.c:146 earmelfb_linux.c:146 earmelfb_linux_eabi.c:146
#: earmelfb_linux_fdpiceabi.c:146 earmelfb_nacl.c:146 earmelfb_nbsd.c:145
#: earmnto.c:145 ei386beos.c:598
#, c-format
msgid "%P: errors encountered processing file %s\n"
msgstr "%P : erreurs rencontrées lors du traitement du fichier %s\n"
#: earmelf.c:555 earmelf_fbsd.c:555 earmelf_fuchsia.c:556 earmelf_haiku.c:556
#: earmelf_linux.c:556 earmelf_linux_eabi.c:556 earmelf_linux_fdpiceabi.c:556
#: earmelf_nacl.c:556 earmelf_nbsd.c:555 earmelf_phoenix.c:556
#: earmelf_vxworks.c:555 earmelfb.c:555 earmelfb_fbsd.c:555
#: earmelfb_fuchsia.c:556 earmelfb_linux.c:556 earmelfb_linux_eabi.c:556
#: earmelfb_linux_fdpiceabi.c:556 earmelfb_nacl.c:556 earmelfb_nbsd.c:555
#: earmnto.c:555
msgid "%F%P: %s: can't open: %E\n"
msgstr "%F%P : %s : impossible d'ouvrir : %E\n"
#: earmelf.c:558 earmelf_fbsd.c:558 earmelf_fuchsia.c:559 earmelf_haiku.c:559
#: earmelf_linux.c:559 earmelf_linux_eabi.c:559 earmelf_linux_fdpiceabi.c:559
#: earmelf_nacl.c:559 earmelf_nbsd.c:558 earmelf_phoenix.c:559
#: earmelf_vxworks.c:558 earmelfb.c:558 earmelfb_fbsd.c:558
#: earmelfb_fuchsia.c:559 earmelfb_linux.c:559 earmelfb_linux_eabi.c:559
#: earmelfb_linux_fdpiceabi.c:559 earmelfb_nacl.c:559 earmelfb_nbsd.c:558
#: earmnto.c:558
msgid "%F%P: %s: not a relocatable file: %E\n"
msgstr "%F%P : %s : n'st pas un fichier relocalisable : %E\n"
#: earmelf.c:1101 earmelf_fbsd.c:1101 earmelf_fuchsia.c:1106
#: earmelf_haiku.c:1106 earmelf_linux.c:1106 earmelf_linux_eabi.c:1106
#: earmelf_linux_fdpiceabi.c:1106 earmelf_nacl.c:1106 earmelf_nbsd.c:1101
#: earmelf_phoenix.c:1106 earmelf_vxworks.c:1133 earmelfb.c:1101
#: earmelfb_fbsd.c:1101 earmelfb_fuchsia.c:1106 earmelfb_linux.c:1106
#: earmelfb_linux_eabi.c:1106 earmelfb_linux_fdpiceabi.c:1106
#: earmelfb_nacl.c:1106 earmelfb_nbsd.c:1101 earmnto.c:1061
msgid "%P: unrecognized VFP11 fix type '%s'\n"
msgstr "%P : type VFP11 de réparation '%s' non reconnu\n"
#: earmelf.c:1114 earmelf_fbsd.c:1114 earmelf_fuchsia.c:1119
#: earmelf_haiku.c:1119 earmelf_linux.c:1119 earmelf_linux_eabi.c:1119
#: earmelf_linux_fdpiceabi.c:1119 earmelf_nacl.c:1119 earmelf_nbsd.c:1114
#: earmelf_phoenix.c:1119 earmelf_vxworks.c:1146 earmelfb.c:1114
#: earmelfb_fbsd.c:1114 earmelfb_fuchsia.c:1119 earmelfb_linux.c:1119
#: earmelfb_linux_eabi.c:1119 earmelfb_linux_fdpiceabi.c:1119
#: earmelfb_nacl.c:1119 earmelfb_nbsd.c:1114 earmnto.c:1074
msgid "%P: unrecognized STM32L4XX fix type '%s'\n"
msgstr "%P : type de réparation STM32L4XX '%s' non reconnu\n"
#: earmelf.c:1181 earmelf_fbsd.c:1181 earmelf_fuchsia.c:1186
#: earmelf_haiku.c:1186 earmelf_linux.c:1186 earmelf_linux_eabi.c:1186
#: earmelf_linux_fdpiceabi.c:1186 earmelf_nacl.c:1186 earmelf_nbsd.c:1181
#: earmelf_phoenix.c:1186 earmelf_vxworks.c:1217 earmelfb.c:1181
#: earmelfb_fbsd.c:1181 earmelfb_fuchsia.c:1186 earmelfb_linux.c:1186
#: earmelfb_linux_eabi.c:1186 earmelfb_linux_fdpiceabi.c:1186
#: earmelfb_nacl.c:1186 earmelfb_nbsd.c:1181 earmnto.c:1141
#, c-format
msgid " --thumb-entry=<sym> Set the entry point to be Thumb symbol <sym>\n"
msgstr " --thumb-entry=<sym> Initialiser le point d'entrée au symbole Thumb <sym>\n"
#: earmelf.c:1182 earmelf_fbsd.c:1182 earmelf_fuchsia.c:1187
#: earmelf_haiku.c:1187 earmelf_linux.c:1187 earmelf_linux_eabi.c:1187
#: earmelf_linux_fdpiceabi.c:1187 earmelf_nacl.c:1187 earmelf_nbsd.c:1182
#: earmelf_phoenix.c:1187 earmelf_vxworks.c:1218 earmelfb.c:1182
#: earmelfb_fbsd.c:1182 earmelfb_fuchsia.c:1187 earmelfb_linux.c:1187
#: earmelfb_linux_eabi.c:1187 earmelfb_linux_fdpiceabi.c:1187
#: earmelfb_nacl.c:1187 earmelfb_nbsd.c:1182 earmnto.c:1142
#, c-format
msgid " --be8 Output BE8 format image\n"
msgstr " --be8 Retourne une image au format BE8\n"
#: earmelf.c:1183 earmelf_fbsd.c:1183 earmelf_fuchsia.c:1188
#: earmelf_haiku.c:1188 earmelf_linux.c:1188 earmelf_linux_eabi.c:1188
#: earmelf_linux_fdpiceabi.c:1188 earmelf_nacl.c:1188 earmelf_nbsd.c:1183
#: earmelf_phoenix.c:1188 earmelf_vxworks.c:1219 earmelfb.c:1183
#: earmelfb_fbsd.c:1183 earmelfb_fuchsia.c:1188 earmelfb_linux.c:1188
#: earmelfb_linux_eabi.c:1188 earmelfb_linux_fdpiceabi.c:1188
#: earmelfb_nacl.c:1188 earmelfb_nbsd.c:1183 earmnto.c:1143
#, c-format
msgid " --target1-rel Interpret R_ARM_TARGET1 as R_ARM_REL32\n"
msgstr " --target1-rel Interprête R_ARM_TARGET1 comme R_ARM_REL32\n"
#: earmelf.c:1184 earmelf_fbsd.c:1184 earmelf_fuchsia.c:1189
#: earmelf_haiku.c:1189 earmelf_linux.c:1189 earmelf_linux_eabi.c:1189
#: earmelf_linux_fdpiceabi.c:1189 earmelf_nacl.c:1189 earmelf_nbsd.c:1184
#: earmelf_phoenix.c:1189 earmelf_vxworks.c:1220 earmelfb.c:1184
#: earmelfb_fbsd.c:1184 earmelfb_fuchsia.c:1189 earmelfb_linux.c:1189
#: earmelfb_linux_eabi.c:1189 earmelfb_linux_fdpiceabi.c:1189
#: earmelfb_nacl.c:1189 earmelfb_nbsd.c:1184 earmnto.c:1144
#, c-format
msgid " --target1-abs Interpret R_ARM_TARGET1 as R_ARM_ABS32\n"
msgstr " --target1-abs Interprête R_ARM_TARGET1 comme R_ARM_ABS32\n"
#: earmelf.c:1185 earmelf_fbsd.c:1185 earmelf_fuchsia.c:1190
#: earmelf_haiku.c:1190 earmelf_linux.c:1190 earmelf_linux_eabi.c:1190
#: earmelf_linux_fdpiceabi.c:1190 earmelf_nacl.c:1190 earmelf_nbsd.c:1185
#: earmelf_phoenix.c:1190 earmelf_vxworks.c:1221 earmelfb.c:1185
#: earmelfb_fbsd.c:1185 earmelfb_fuchsia.c:1190 earmelfb_linux.c:1190
#: earmelfb_linux_eabi.c:1190 earmelfb_linux_fdpiceabi.c:1190
#: earmelfb_nacl.c:1190 earmelfb_nbsd.c:1185 earmnto.c:1145
#, c-format
msgid " --target2=<type> Specify definition of R_ARM_TARGET2\n"
msgstr " --target2=<type> Specifie la définition de R_ARM_TARGET2\n"
#: earmelf.c:1186 earmelf_fbsd.c:1186 earmelf_fuchsia.c:1191
#: earmelf_haiku.c:1191 earmelf_linux.c:1191 earmelf_linux_eabi.c:1191
#: earmelf_linux_fdpiceabi.c:1191 earmelf_nacl.c:1191 earmelf_nbsd.c:1186
#: earmelf_phoenix.c:1191 earmelf_vxworks.c:1222 earmelfb.c:1186
#: earmelfb_fbsd.c:1186 earmelfb_fuchsia.c:1191 earmelfb_linux.c:1191
#: earmelfb_linux_eabi.c:1191 earmelfb_linux_fdpiceabi.c:1191
#: earmelfb_nacl.c:1191 earmelfb_nbsd.c:1186 earmnto.c:1146
#, c-format
msgid " --fix-v4bx Rewrite BX rn as MOV pc, rn for ARMv4\n"
msgstr " --fix-v4bx Réécrit BX rn en MOV pc, rn pour ARMv4\n"
#: earmelf.c:1187 earmelf_fbsd.c:1187 earmelf_fuchsia.c:1192
#: earmelf_haiku.c:1192 earmelf_linux.c:1192 earmelf_linux_eabi.c:1192
#: earmelf_linux_fdpiceabi.c:1192 earmelf_nacl.c:1192 earmelf_nbsd.c:1187
#: earmelf_phoenix.c:1192 earmelf_vxworks.c:1223 earmelfb.c:1187
#: earmelfb_fbsd.c:1187 earmelfb_fuchsia.c:1192 earmelfb_linux.c:1192
#: earmelfb_linux_eabi.c:1192 earmelfb_linux_fdpiceabi.c:1192
#: earmelfb_nacl.c:1192 earmelfb_nbsd.c:1187 earmnto.c:1147
#, c-format
msgid " --fix-v4bx-interworking Rewrite BX rn branch to ARMv4 interworking veneer\n"
msgstr " --fix-v4bx-interworking Réécrire les branches BX rn en vernis ARMv4 interopérable\n"
#: earmelf.c:1188 earmelf_fbsd.c:1188 earmelf_fuchsia.c:1193
#: earmelf_haiku.c:1193 earmelf_linux.c:1193 earmelf_linux_eabi.c:1193
#: earmelf_linux_fdpiceabi.c:1193 earmelf_nacl.c:1193 earmelf_nbsd.c:1188
#: earmelf_phoenix.c:1193 earmelf_vxworks.c:1224 earmelfb.c:1188
#: earmelfb_fbsd.c:1188 earmelfb_fuchsia.c:1193 earmelfb_linux.c:1193
#: earmelfb_linux_eabi.c:1193 earmelfb_linux_fdpiceabi.c:1193
#: earmelfb_nacl.c:1193 earmelfb_nbsd.c:1188 earmnto.c:1148
#, c-format
msgid " --use-blx Enable use of BLX instructions\n"
msgstr " --use-blx Activer l'utilisation d'instructions BLX\n"
#: earmelf.c:1189 earmelf_fbsd.c:1189 earmelf_fuchsia.c:1194
#: earmelf_haiku.c:1194 earmelf_linux.c:1194 earmelf_linux_eabi.c:1194
#: earmelf_linux_fdpiceabi.c:1194 earmelf_nacl.c:1194 earmelf_nbsd.c:1189
#: earmelf_phoenix.c:1194 earmelf_vxworks.c:1225 earmelfb.c:1189
#: earmelfb_fbsd.c:1189 earmelfb_fuchsia.c:1194 earmelfb_linux.c:1194
#: earmelfb_linux_eabi.c:1194 earmelfb_linux_fdpiceabi.c:1194
#: earmelfb_nacl.c:1194 earmelfb_nbsd.c:1189 earmnto.c:1149
#, c-format
msgid " --vfp11-denorm-fix Specify how to fix VFP11 denorm erratum\n"
msgstr " --vfp11-denorm-fix Specifie comment résoudre l'erratum de dénormalisation VFP11\n"
#: earmelf.c:1190 earmelf_fbsd.c:1190 earmelf_fuchsia.c:1195
#: earmelf_haiku.c:1195 earmelf_linux.c:1195 earmelf_linux_eabi.c:1195
#: earmelf_linux_fdpiceabi.c:1195 earmelf_nacl.c:1195 earmelf_nbsd.c:1190
#: earmelf_phoenix.c:1195 earmelf_vxworks.c:1226 earmelfb.c:1190
#: earmelfb_fbsd.c:1190 earmelfb_fuchsia.c:1195 earmelfb_linux.c:1195
#: earmelfb_linux_eabi.c:1195 earmelfb_linux_fdpiceabi.c:1195
#: earmelfb_nacl.c:1195 earmelfb_nbsd.c:1190 earmnto.c:1150
#, c-format
msgid " --fix-stm32l4xx-629360 Specify how to fix STM32L4XX 629360 erratum\n"
msgstr " --fix-stm32l4xx-629360 Spécifie comment corriger l'erratum STM32L4XX 629360\n"
#: earmelf.c:1196 earmelf_fbsd.c:1196 earmelf_fuchsia.c:1201
#: earmelf_haiku.c:1201 earmelf_linux.c:1201 earmelf_linux_eabi.c:1201
#: earmelf_linux_fdpiceabi.c:1201 earmelf_nacl.c:1201 earmelf_nbsd.c:1196
#: earmelf_phoenix.c:1201 earmelf_vxworks.c:1232 earmelfb.c:1196
#: earmelfb_fbsd.c:1196 earmelfb_fuchsia.c:1201 earmelfb_linux.c:1201
#: earmelfb_linux_eabi.c:1201 earmelfb_linux_fdpiceabi.c:1201
#: earmelfb_nacl.c:1201 earmelfb_nbsd.c:1196 earmnto.c:1156
#, c-format
msgid ""
" --long-plt Generate long .plt entries\n"
" to handle large .plt/.got displacements\n"
msgstr ""
" --long-plt Générer de longues entrées .plt\n"
" pour gérer de larges déplacements .plt/.got\n"
#: earmelf.c:1198 earmelf_fbsd.c:1198 earmelf_fuchsia.c:1203
#: earmelf_haiku.c:1203 earmelf_linux.c:1203 earmelf_linux_eabi.c:1203
#: earmelf_linux_fdpiceabi.c:1203 earmelf_nacl.c:1203 earmelf_nbsd.c:1198
#: earmelf_phoenix.c:1203 earmelf_vxworks.c:1234 earmelfb.c:1198
#: earmelfb_fbsd.c:1198 earmelfb_fuchsia.c:1203 earmelfb_linux.c:1203
#: earmelfb_linux_eabi.c:1203 earmelfb_linux_fdpiceabi.c:1203
#: earmelfb_nacl.c:1203 earmelfb_nbsd.c:1198 earmnto.c:1158
#, c-format
msgid ""
" --cmse-implib Make import library to be a secure gateway import\n"
" library as per ARMv8-M Security Extensions\n"
msgstr ""
" --cmse-implib Rendre la bibliothèque d'import comme étant une biliothèque passerelle d'import\n"
" sécurisée selon les extensions de sécurité ARMv8-M\n"
#: earmelf.c:1200 earmelf_fbsd.c:1200 earmelf_fuchsia.c:1205
#: earmelf_haiku.c:1205 earmelf_linux.c:1205 earmelf_linux_eabi.c:1205
#: earmelf_linux_fdpiceabi.c:1205 earmelf_nacl.c:1205 earmelf_nbsd.c:1200
#: earmelf_phoenix.c:1205 earmelf_vxworks.c:1236 earmelfb.c:1200
#: earmelfb_fbsd.c:1200 earmelfb_fuchsia.c:1205 earmelfb_linux.c:1205
#: earmelfb_linux_eabi.c:1205 earmelfb_linux_fdpiceabi.c:1205
#: earmelfb_nacl.c:1205 earmelfb_nbsd.c:1200 earmnto.c:1160
#, c-format
msgid ""
" --in-implib Import library whose symbols address must\n"
" remain stable\n"
msgstr ""
" --in-implib Importer des libraries dont les adresses des symboles doivent\n"
" rester stable\n"
#: earmelf.c:1211 earmelf_fbsd.c:1211 earmelf_fuchsia.c:1216
#: earmelf_haiku.c:1216 earmelf_linux.c:1216 earmelf_linux_eabi.c:1216
#: earmelf_linux_fdpiceabi.c:1216 earmelf_nacl.c:1216 earmelf_nbsd.c:1211
#: earmelf_phoenix.c:1216 earmelf_vxworks.c:1247 earmelfb.c:1211
#: earmelfb_fbsd.c:1211 earmelfb_fuchsia.c:1216 earmelfb_linux.c:1216
#: earmelfb_linux_eabi.c:1216 earmelfb_linux_fdpiceabi.c:1216
#: earmelfb_nacl.c:1216 earmelfb_nbsd.c:1211 earmnto.c:1171
#, c-format
msgid " --[no-]fix-cortex-a8 Disable/enable Cortex-A8 Thumb-2 branch erratum fix\n"
msgstr " --[no-]fix-cortex-a8 Désactiver/activer la résolution de l'erratum de branches Cortex-A8 Thumb-2\n"
#: earmelf.c:1212 earmelf_fbsd.c:1212 earmelf_fuchsia.c:1217
#: earmelf_haiku.c:1217 earmelf_linux.c:1217 earmelf_linux_eabi.c:1217
#: earmelf_linux_fdpiceabi.c:1217 earmelf_nacl.c:1217 earmelf_nbsd.c:1212
#: earmelf_phoenix.c:1217 earmelf_vxworks.c:1248 earmelfb.c:1212
#: earmelfb_fbsd.c:1212 earmelfb_fuchsia.c:1217 earmelfb_linux.c:1217
#: earmelfb_linux_eabi.c:1217 earmelfb_linux_fdpiceabi.c:1217
#: earmelfb_nacl.c:1217 earmelfb_nbsd.c:1212 earmnto.c:1172
#, c-format
msgid " --no-merge-exidx-entries Disable merging exidx entries\n"
msgstr " --no-merge-exidx-entries Désactive la fusions d'entrées exidx\n"
#: earmelf.c:1213 earmelf_fbsd.c:1213 earmelf_fuchsia.c:1218
#: earmelf_haiku.c:1218 earmelf_linux.c:1218 earmelf_linux_eabi.c:1218
#: earmelf_linux_fdpiceabi.c:1218 earmelf_nacl.c:1218 earmelf_nbsd.c:1213
#: earmelf_phoenix.c:1218 earmelf_vxworks.c:1249 earmelfb.c:1213
#: earmelfb_fbsd.c:1213 earmelfb_fuchsia.c:1218 earmelfb_linux.c:1218
#: earmelfb_linux_eabi.c:1218 earmelfb_linux_fdpiceabi.c:1218
#: earmelfb_nacl.c:1218 earmelfb_nbsd.c:1213 earmnto.c:1173
#, c-format
msgid " --[no-]fix-arm1176 Disable/enable ARM1176 BLX immediate erratum fix\n"
msgstr " --[no-]fix-arm1176 Désactive/active la résolution immédiate de l'erratum ARM1176 BLX\n"
#: earmelf_vxworks.c:604 eelf32_sparc_vxworks.c:74 eelf32ebmipvxworks.c:270
#: eelf32elmipvxworks.c:270 eelf32ppcvxworks.c:227 eelf_i386_vxworks.c:98
#: eshelf_vxworks.c:74 eshlelf_vxworks.c:74
msgid "%X%P: cannot create dynamic sections %E\n"
msgstr "%X%P : impossible de créer des sections dynamiques %E\n"
#: earmelf_vxworks.c:610 eelf32_sparc_vxworks.c:80 eelf32ebmipvxworks.c:276
#: eelf32elmipvxworks.c:276 eelf32ppcvxworks.c:233 eelf_i386_vxworks.c:104
#: eshelf_vxworks.c:80 eshlelf_vxworks.c:80
msgid "%X%P: dynamic sections created in non-dynamic link\n"
msgstr "%X%P : sections dynamiques créés dans un lien non dynamique\n"
#: earmelf_vxworks.c:1251 eelf32_sparc_vxworks.c:583 eelf32ebmipvxworks.c:831
#: eelf32elmipvxworks.c:831 eelf32ppcvxworks.c:873 eelf_i386_vxworks.c:668
#: eshelf_vxworks.c:538 eshlelf_vxworks.c:538
#, c-format
msgid " --force-dynamic Always create dynamic sections\n"
msgstr " --force-dynamic Toujours créer des sections dynamiques\n"
#: eavr1.c:125 eavr2.c:125 eavr25.c:125 eavr3.c:125 eavr31.c:125 eavr35.c:125
#: eavr4.c:125 eavr5.c:125 eavr51.c:125 eavr6.c:125 eavrtiny.c:125
#: eavrxmega1.c:125 eavrxmega2.c:125 eavrxmega2_flmap.c:125 eavrxmega3.c:125
#: eavrxmega4.c:125 eavrxmega4_flmap.c:125 eavrxmega5.c:125 eavrxmega6.c:125
#: eavrxmega7.c:125
msgid "%X%P: can not setup the input section list: %E\n"
msgstr "%X%P : impossible d'installer la liste des sections d'entrée : %E\n"
#: eavr1.c:160 eavr2.c:160 eavr25.c:160 eavr3.c:160 eavr31.c:160 eavr35.c:160
#: eavr4.c:160 eavr5.c:160 eavr51.c:160 eavr6.c:160 eavrtiny.c:160
#: eavrxmega1.c:160 eavrxmega2.c:160 eavrxmega2_flmap.c:160 eavrxmega3.c:160
#: eavrxmega4.c:160 eavrxmega4_flmap.c:160 eavrxmega5.c:160 eavrxmega6.c:160
#: eavrxmega7.c:160
msgid "%X%P: can not create stub BFD: %E\n"
msgstr "%X%P : impossible de créer l'espace d'amorçage BFD : %E\n"
#: eavr1.c:587 eavr2.c:587 eavr25.c:587 eavr3.c:587 eavr31.c:587 eavr35.c:587
#: eavr4.c:587 eavr5.c:587 eavr51.c:587 eavr6.c:587 eavrtiny.c:587
#: eavrxmega1.c:587 eavrxmega2.c:587 eavrxmega2_flmap.c:587 eavrxmega3.c:587
#: eavrxmega4.c:587 eavrxmega4_flmap.c:587 eavrxmega5.c:587 eavrxmega6.c:587
#: eavrxmega7.c:587
#, c-format
msgid ""
" --pmem-wrap-around=<val> Make the linker relaxation machine assume that a\n"
" program counter wrap-around occurs at address\n"
" <val>. Supported values: 8k, 16k, 32k and 64k.\n"
msgstr ""
" --pmem-wrap-around=<val> Faire supposer à la machine de relaxation de l'éditeur de lien qu'un\n"
" bouclage du compteur du programme survienne à l'adresse\n"
" <val>. Valeurs supportées: 8k, 16k, 32k et 64k.\n"
#: eavr1.c:593 eavr2.c:593 eavr25.c:593 eavr3.c:593 eavr31.c:593 eavr35.c:593
#: eavr4.c:593 eavr5.c:593 eavr51.c:593 eavr6.c:593 eavrtiny.c:593
#: eavrxmega1.c:593 eavrxmega2.c:593 eavrxmega2_flmap.c:593 eavrxmega3.c:593
#: eavrxmega4.c:593 eavrxmega4_flmap.c:593 eavrxmega5.c:593 eavrxmega6.c:593
#: eavrxmega7.c:593
#, c-format
msgid ""
" --no-call-ret-replacement The relaxation machine normally will\n"
" substitute two immediately following call/ret\n"
" instructions by a single jump instruction.\n"
" This option disables this optimization.\n"
msgstr ""
" --no-call-ret-replacement La machine de relaxations doit normalement\n"
" substituer deux instructions call/ret immédiatement\n"
" consécutives par une seule instruction de saut (jump).\n"
" Cette option désactive cette optimisation.\n"
#: eavr1.c:601 eavr2.c:601 eavr25.c:601 eavr3.c:601 eavr31.c:601 eavr35.c:601
#: eavr4.c:601 eavr5.c:601 eavr51.c:601 eavr6.c:601 eavrtiny.c:601
#: eavrxmega1.c:601 eavrxmega2.c:601 eavrxmega2_flmap.c:601 eavrxmega3.c:601
#: eavrxmega4.c:601 eavrxmega4_flmap.c:601 eavrxmega5.c:601 eavrxmega6.c:601
#: eavrxmega7.c:601
#, c-format
msgid ""
" --no-stubs If the linker detects to attempt to access\n"
" an instruction beyond 128k by a reloc that\n"
" is limited to 128k max, it inserts a jump\n"
" stub. You can de-active this with this switch.\n"
msgstr ""
" --no-stubs Si l'éditeur de liens détecte une tentative d'accès\n"
" à une instruction au delà de 128k par une relocalisation qui\n"
" est limitée à 128k maximum, il insère un espace d'amorçage\n"
" de saut. Vous pouvez désactiver cela avec cette option.\n"
#: eavr1.c:609 eavr2.c:609 eavr25.c:609 eavr3.c:609 eavr31.c:609 eavr35.c:609
#: eavr4.c:609 eavr5.c:609 eavr51.c:609 eavr6.c:609 eavrtiny.c:609
#: eavrxmega1.c:609 eavrxmega2.c:609 eavrxmega2_flmap.c:609 eavrxmega3.c:609
#: eavrxmega4.c:609 eavrxmega4_flmap.c:609 eavrxmega5.c:609 eavrxmega6.c:609
#: eavrxmega7.c:609
#, c-format
msgid " --debug-stubs Used for debugging avr-ld.\n"
msgstr " --debug-stubs Utilisé pour déboguer avr-ld.\n"
#: eavr1.c:611 eavr2.c:611 eavr25.c:611 eavr3.c:611 eavr31.c:611 eavr35.c:611
#: eavr4.c:611 eavr5.c:611 eavr51.c:611 eavr6.c:611 eavrtiny.c:611
#: eavrxmega1.c:611 eavrxmega2.c:611 eavrxmega2_flmap.c:611 eavrxmega3.c:611
#: eavrxmega4.c:611 eavrxmega4_flmap.c:611 eavrxmega5.c:611 eavrxmega6.c:611
#: eavrxmega7.c:611
#, c-format
msgid " --debug-relax Used for debugging avr-ld.\n"
msgstr " --debug-relax Utilisé pour déboguer avr-ld.\n"
#: ecskyelf.c:278 ecskyelf_linux.c:278
msgid "%X%P: cannot size stub section: %E\n"
msgstr "%X%P : impossible de récupérer la taille de la section d'amorçage : %E\n"
#: ecskyelf.c:295 ecskyelf_linux.c:295
msgid "%X%P: cannot build stubs: %E\n"
msgstr "%X%P : impossible de construire les secteurs d'amorçage : %E\n"
#: ecskyelf.c:616 ecskyelf_linux.c:803
#, c-format
msgid ""
" --[no-]branch-stub Disable/enable use of stubs to expand branch\n"
" instructions that cannot reach the target.\n"
msgstr ""
" --[no-]branch-stub Désactiver/activer l'utilisation des espaces d'amorçage pour développer\n"
" les instructions de branchement qui ne peuvent pas atteindre la cible.\n"
#: ecskyelf.c:620 ecskyelf_linux.c:807
#, c-format
msgid ""
" --stub-group-size=N Maximum size of a group of input sections\n"
" handled by one stub section.\n"
msgstr ""
" --stub-group-size=N Taille maximale d'un groupe de sections d'entrée\n"
" géré par un espace d'amorçage.\n"
#: ed30v_e.c:73 ed30v_o.c:73 ed30velf.c:73 eelf32_dlx.c:73 eelf32fr30.c:73
#: eelf32frv.c:73 eelf32ft32.c:73 eelf32iq10.c:73 eelf32iq2000.c:73
#: eelf32mt.c:73 em9s12zelf.c:73 emn10200.c:73 emoxiebox.c:73 emsp430X.c:99
#: emsp430elf.c:99 epjelf.c:73 epjlelf.c:73 exgateelf.c:73
msgid "%X%P: can not size group sections: %E\n"
msgstr "%X%P : impossible de déterminer la taill des sections de groupe : %E\n"
#: eelf32_spu.c:258 ev850.c:76 ev850_rh850.c:76
msgid "%X%P: can not create note section: %E\n"
msgstr "%X%P : impossible de créer une section de notes : %E\n"
#: eelf32_spu.c:347
msgid "%F%P: no built-in overlay manager\n"
msgstr "%F%P : pas d'agent de recouvrement intégré\n"
#: eelf32_spu.c:357
msgid "%X%P: can not open built-in overlay manager: %E\n"
msgstr "%X%P : impossible d'ouvrir l'agent de recouvrement intégré : %E\n"
#: eelf32_spu.c:363
msgid "%X%P: can not load built-in overlay manager: %E\n"
msgstr "%X%P : impossible de charger l'agent de recouvrement intégré : %E\n"
#: eelf32_spu.c:423
msgid "%X%P: can not find overlays: %E\n"
msgstr "%X%P : impossible de trouver les recouvrements : %E\n"
#: eelf32_spu.c:430
msgid "%P: --auto-overlay ignored with user overlay script\n"
msgstr "%P: --auto-overlay ignoré avec un script utilisateur de recouvrement\n"
#: eelf32_spu.c:451
msgid "%X%P: can not size overlay stubs: %E\n"
msgstr "%X%P : impossible de mesure la taille des espaces d'amorçage de recouvrement : %E\n"
#: eelf32_spu.c:524
msgid "%F%P: can not open script: %E\n"
msgstr "%F%P : impossible d'ouvrir le fichier de script : %E\n"
#: eelf32_spu.c:571
msgid "%X%P: %pA exceeds local store range\n"
msgstr "%X%P : %pA dépasse la limite de stockage local\n"
#: eelf32_spu.c:574
msgid "%P: --auto-overlay ignored with zero local store range\n"
msgstr "%P : --auto-overlay ignoré avec une limite de stockage local nul\n"
#: eelf32_spu.c:939
msgid "%F%P: invalid --local-store address range `%s'\n"
msgstr "%F%P : plage d'adresses --local-store « %s » invalide\n"
#: eelf32_spu.c:975
msgid "%F%P: invalid --num-lines/--num-regions `%u'\n"
msgstr "%F%P : --num-lines/--num-regions « %u » invalide\n"
#: eelf32_spu.c:980
msgid "%F%P: invalid --line-size/--region-size `%u'\n"
msgstr "%F%P : --line-size/--region-size « %u » invalide\n"
#: eelf32_spu.c:1001
msgid "%F%P: invalid --num-lines/--num-regions `%s'\n"
msgstr "%F%P : --num-lines/--num-regions « %s » invalide\n"
#: eelf32_spu.c:1014
msgid "%F%P: invalid --line-size/--region-size `%s'\n"
msgstr "%F%P : --line-size/--region-size « %s » invalide\n"
#: eelf32_spu.c:1023
msgid "%F%P: invalid --fixed-space value `%s'\n"
msgstr "%F%P : valeur de --fixed-space « %s » invalide\n"
#: eelf32_spu.c:1032
msgid "%F%P: invalid --reserved-space value `%s'\n"
msgstr "%F%P : valeur de --reserved-space « %s » invalide\n"
#: eelf32_spu.c:1041
msgid "%F%P: invalid --extra-stack-space value `%s'\n"
msgstr "%F%P : valeur de --extra-stack-space « %s » invalide\n"
#: eelf32_spu.c:1078
#, c-format
msgid " --plugin Make SPU plugin\n"
msgstr " --plugin Créer un greffon SPU\n"
#: eelf32_spu.c:1080
#, c-format
msgid " --no-overlays No overlay handling\n"
msgstr " --no-overlays Pas de gestion des recouvrements\n"
#: eelf32_spu.c:1082
#, c-format
msgid " --compact-stubs Use smaller and possibly slower call stubs\n"
msgstr " --compact-stubs utiliser des espaces d'amorçage d'appel plus petits mais possiblement plus lents\n"
#: eelf32_spu.c:1084
#, c-format
msgid " --emit-stub-syms Add symbols on overlay call stubs\n"
msgstr " --emit-stub-syms Ajouter les symboles sur les espace d'amorçage d'appel de recouvrement\n"
#: eelf32_spu.c:1086
#, c-format
msgid " --extra-overlay-stubs Add stubs on all calls out of overlay regions\n"
msgstr " --extra-overlay-stubs Ajouter des espaces d'amorçage pour tous les appels en dehors des régions de recouvrement\n"
#: eelf32_spu.c:1088
#, c-format
msgid " --local-store=lo:hi Valid address range\n"
msgstr " --local-store=bas:haut Plage d'adresses valides\n"
#: eelf32_spu.c:1090
#, c-format
msgid " --stack-analysis Estimate maximum stack requirement\n"
msgstr " --stack-analysis Estimer le besoin maximal de la pile\n"
#: eelf32_spu.c:1092
#, c-format
msgid " --emit-stack-syms Add sym giving stack needed for each func\n"
msgstr " --emit-stack-syms Ajouter un sym donnant la pile nécessaire à chaque fonction\n"
#: eelf32_spu.c:1094
#, c-format
msgid ""
" --auto-overlay [=filename] Create an overlay script in filename if\n"
" executable does not fit in local store\n"
msgstr ""
" --auto-overlay [=fichier] Créer un script de recouvrement dans le fichier si\n"
" l'exécutable ne rentre pas dans le stockage local\n"
#: eelf32_spu.c:1097
#, c-format
msgid " --auto-relink Rerun linker using auto-overlay script\n"
msgstr " --auto-relink Relancer l'éditeur de liens en utilisant un script de recouvrements automatiques\n"
#: eelf32_spu.c:1099
#, c-format
msgid ""
" --overlay-rodata Place read-only data with associated function\n"
" code in overlays\n"
msgstr ""
" --overlay-rodata Placer les données en lecture seule avec le code des fonctions\n"
" associées dans des recouvrements\n"
#: eelf32_spu.c:1102
#, c-format
msgid " --num-regions Number of overlay buffers (default 1)\n"
msgstr " --num-regions Nombre de tampons de recouvrements (défaut 1)\n"
#: eelf32_spu.c:1104
#, c-format
msgid " --region-size Size of overlay buffers (default 0, auto)\n"
msgstr " --region-size Taille des tampons de recouvrements (défaut 0, auto)\n"
#: eelf32_spu.c:1106
#, c-format
msgid " --fixed-space=bytes Local store for non-overlay code and data\n"
msgstr " --fixed-space=octets Stockage local pour du code et des données sans recouvrement\n"
#: eelf32_spu.c:1108
#, c-format
msgid ""
" --reserved-space=bytes Local store for stack and heap. If not specified\n"
" ld will estimate stack size and assume no heap\n"
msgstr ""
" --reserved-space=octets Stockage local pour la pile et le tas. Si non spécifié\n"
" ld estimera la taille de la pile et ne supposera aucun tas\n"
#: eelf32_spu.c:1111
#, c-format
msgid ""
" --extra-stack-space=bytes Space for negative sp access (default 2000) if\n"
" --reserved-space not given\n"
msgstr ""
" --extra-stack-space=octets Espace pour les accès sp négatifs (défaut 2000) si\n"
" --reserved-space n'est pas donné\n"
#: eelf32_spu.c:1114
#, c-format
msgid " --soft-icache Generate software icache overlays\n"
msgstr " --soft-icache Générer des recouvrements icache logiciels\n"
#: eelf32_spu.c:1116
#, c-format
msgid " --num-lines Number of soft-icache lines (default 32)\n"
msgstr " --num-lines Nombre de lignes de icache logiciel (défaut 32)\n"
#: eelf32_spu.c:1118
#, c-format
msgid " --line-size Size of soft-icache lines (default 1k)\n"
msgstr " --line-size Taille des lignes icache logiciel (défaut 1k)\n"
#: eelf32_spu.c:1120
#, c-format
msgid " --non-ia-text Allow non-icache code in icache lines\n"
msgstr " --non-ia-text Autorise du code non icache dans des lignes icache\n"
#: eelf32_spu.c:1122
#, c-format
msgid " --lrlive-analysis Scan function prologue for lr liveness\n"
msgstr " --lrlive-analysis Scanner le prologue des functions pour une exécution lr\n"
#: eelf32_tic6x_be.c:91 eelf32_tic6x_elf_be.c:91 eelf32_tic6x_elf_le.c:91
#: eelf32_tic6x_le.c:91 eelf32_tic6x_linux_be.c:91 eelf32_tic6x_linux_le.c:91
msgid "%F%P: invalid --dsbt-index %d, outside DSBT size\n"
msgstr "%F%P : invalide --dsbt-index %d, en dehors de la taille DSBT\n"
#: eelf32_tic6x_be.c:631 eelf32_tic6x_elf_be.c:631 eelf32_tic6x_elf_le.c:631
#: eelf32_tic6x_le.c:631 eelf32_tic6x_linux_be.c:631
#: eelf32_tic6x_linux_le.c:631
msgid "%F%P: invalid --dsbt-index %s\n"
msgstr "%F%P : --dsbt-index %s invalide\n"
#: eelf32_tic6x_be.c:641 eelf32_tic6x_elf_be.c:641 eelf32_tic6x_elf_le.c:641
#: eelf32_tic6x_le.c:641 eelf32_tic6x_linux_be.c:641
#: eelf32_tic6x_linux_le.c:641
msgid "%F%P: invalid --dsbt-size %s\n"
msgstr "%F%P : --dsbt-size %s invalide\n"
#: eelf32_tic6x_be.c:657 eelf32_tic6x_elf_be.c:657 eelf32_tic6x_elf_le.c:657
#: eelf32_tic6x_le.c:657 eelf32_tic6x_linux_be.c:657
#: eelf32_tic6x_linux_le.c:657
#, c-format
msgid " --dsbt-index <index> Use this as the DSBT index for the output object\n"
msgstr " --dsbt-index <index> Utilise cela comme index DSBT pour l'object en sortie\n"
#: eelf32_tic6x_be.c:658 eelf32_tic6x_elf_be.c:658 eelf32_tic6x_elf_le.c:658
#: eelf32_tic6x_le.c:658 eelf32_tic6x_linux_be.c:658
#: eelf32_tic6x_linux_le.c:658
#, c-format
msgid " --dsbt-size <index> Use this as the number of entries in the DSBT table\n"
msgstr " --dsbt-size <index> Utilise cela comme le nombre d'entrées dans la table DSBT\n"
#: eelf32_tic6x_be.c:659 eelf32_tic6x_elf_be.c:659 eelf32_tic6x_elf_le.c:659
#: eelf32_tic6x_le.c:659 eelf32_tic6x_linux_be.c:659
#: eelf32_tic6x_linux_le.c:659
#, c-format
msgid " --no-merge-exidx-entries\n"
msgstr " --no-merge-exidx-entries\n"
#: eelf32_tic6x_be.c:660 eelf32_tic6x_elf_be.c:660 eelf32_tic6x_elf_le.c:660
#: eelf32_tic6x_le.c:660 eelf32_tic6x_linux_be.c:660
#: eelf32_tic6x_linux_le.c:660
#, c-format
msgid " Disable merging exidx entries\n"
msgstr " Désactive la fusion d'entrées exidx\n"
#: eelf32_x86_64.c:8606 eelf_i386.c:8061 eelf_i386_be.c:542
#: eelf_i386_fbsd.c:593 eelf_i386_haiku.c:593 eelf_i386_ldso.c:553
#: eelf_i386_sol2.c:725 eelf_i386_vxworks.c:619 eelf_iamcu.c:593
#: eelf_x86_64.c:8606 eelf_x86_64_cloudabi.c:604 eelf_x86_64_fbsd.c:604
#: eelf_x86_64_haiku.c:604 eelf_x86_64_sol2.c:736
msgid "%F%P: invalid number for -z call-nop=prefix-: %s\n"
msgstr "%F%P : nombre invalide pour -z call-nop=prefix- : %s\n"
#: eelf32_x86_64.c:8615 eelf_i386.c:8070 eelf_i386_be.c:551
#: eelf_i386_fbsd.c:602 eelf_i386_haiku.c:602 eelf_i386_ldso.c:562
#: eelf_i386_sol2.c:734 eelf_i386_vxworks.c:628 eelf_iamcu.c:602
#: eelf_x86_64.c:8615 eelf_x86_64_cloudabi.c:613 eelf_x86_64_fbsd.c:613
#: eelf_x86_64_haiku.c:613 eelf_x86_64_sol2.c:745
msgid "%F%P: invalid number for -z call-nop=suffix-: %s\n"
msgstr "%F%P : nombre invalide pour -z call-nop=suffix- : %s\n"
#: eelf32_x86_64.c:8620 eelf_i386.c:8075 eelf_i386_be.c:556
#: eelf_i386_fbsd.c:607 eelf_i386_haiku.c:607 eelf_i386_ldso.c:567
#: eelf_i386_sol2.c:739 eelf_i386_vxworks.c:633 eelf_iamcu.c:607
#: eelf_x86_64.c:8620 eelf_x86_64_cloudabi.c:618 eelf_x86_64_fbsd.c:618
#: eelf_x86_64_haiku.c:618 eelf_x86_64_sol2.c:750
msgid "%F%P: unsupported option: -z %s\n"
msgstr "%F%P : option non prise en charge : -z %s\n"
#: eelf32_x86_64.c:8642 eelf_i386.c:8097 eelf_i386_fbsd.c:629
#: eelf_i386_haiku.c:629 eelf_x86_64.c:8642 eelf_x86_64_cloudabi.c:640
#: eelf_x86_64_fbsd.c:640 eelf_x86_64_haiku.c:640 eelf_x86_64_sol2.c:772
msgid "%F%P: invalid option for -z cet-report=: %s\n"
msgstr "%F%P : option invalide pour -z cet-report=: %s\n"
#: eelf32_x86_64.c:8656 eelf_i386.c:8111 eelf_i386_fbsd.c:643
#: eelf_i386_haiku.c:643 eelf_x86_64.c:8656 eelf_x86_64_cloudabi.c:654
#: eelf_x86_64_fbsd.c:654 eelf_x86_64_haiku.c:654 eelf_x86_64_sol2.c:786
msgid "%F%P: invalid x86-64 ISA level: %s\n"
msgstr "%F%P : niveau ISA x86-64 invalide : %s\n"
#: eelf32_x86_64.c:8672 eelf_i386.c:8127 eelf_i386_fbsd.c:659
#: eelf_i386_haiku.c:659 eelf_x86_64.c:8672 eelf_x86_64_cloudabi.c:670
#: eelf_x86_64_fbsd.c:670 eelf_x86_64_haiku.c:670 eelf_x86_64_sol2.c:802
msgid "%F%P: invalid option for -z isa-level-report=: %s\n"
msgstr "%F%P : option invalide pour -z isa-level-report=: %s\n"
#: eelf32_x86_64.c:8719 eelf_i386.c:8169 eelf_i386_be.c:572
#: eelf_i386_fbsd.c:701 eelf_i386_haiku.c:701 eelf_i386_ldso.c:592
#: eelf_i386_sol2.c:764 eelf_i386_vxworks.c:654 eelf_iamcu.c:632
#: eelf_x86_64.c:8769 eelf_x86_64_cloudabi.c:767 eelf_x86_64_fbsd.c:767
#: eelf_x86_64_haiku.c:767 eelf_x86_64_sol2.c:899
#, c-format
msgid " -z noextern-protected-data Do not treat protected data symbol as external\n"
msgstr " -z noextern-protected-data Ne pas traiter les symboles de données protégées comme externes\n"
#: eelf32_x86_64.c:8721 eelf_i386.c:8171 eelf_i386_be.c:574
#: eelf_i386_fbsd.c:703 eelf_i386_haiku.c:703 eelf_i386_ldso.c:594
#: eelf_i386_sol2.c:766 eelf_i386_vxworks.c:656 eelf_iamcu.c:634
#: eelf_x86_64.c:8771 eelf_x86_64_cloudabi.c:769 eelf_x86_64_fbsd.c:769
#: eelf_x86_64_haiku.c:769 eelf_x86_64_sol2.c:901
#, c-format
msgid " -z indirect-extern-access Enable indirect external access\n"
msgstr " -z indirect-extern-access Autorise l'accès externe indirect\n"
#: eelf32_x86_64.c:8723 eelf_i386.c:8173 eelf_i386_be.c:576
#: eelf_i386_fbsd.c:705 eelf_i386_haiku.c:705 eelf_i386_ldso.c:596
#: eelf_i386_sol2.c:768 eelf_i386_vxworks.c:658 eelf_iamcu.c:636
#: eelf_x86_64.c:8773 eelf_x86_64_cloudabi.c:771 eelf_x86_64_fbsd.c:771
#: eelf_x86_64_haiku.c:771 eelf_x86_64_sol2.c:903
#, c-format
msgid " -z noindirect-extern-access Disable indirect external access (default)\n"
msgstr " -z noindirect-extern-access N'autorise pas l'accès externe indirect (défaut)\n"
#: eelf32_x86_64.c:8726 eelf32lppc.c:869 eelf32lppclinux.c:869
#: eelf32lppcnto.c:869 eelf32lppcsim.c:869 eelf32ppc.c:869 eelf32ppc_fbsd.c:869
#: eelf32ppchaiku.c:869 eelf32ppclinux.c:869 eelf32ppcnto.c:869
#: eelf32ppcsim.c:869 eelf32ppcvxworks.c:843 eelf32ppcwindiss.c:869
#: eelf64lppc.c:1384 eelf64lppc_fbsd.c:1384 eelf64ppc.c:1384
#: eelf64ppc_fbsd.c:1384 eelf_i386.c:8176 eelf_i386_be.c:579
#: eelf_i386_fbsd.c:708 eelf_i386_haiku.c:708 eelf_i386_ldso.c:599
#: eelf_i386_sol2.c:771 eelf_i386_vxworks.c:661 eelf_iamcu.c:639
#: eelf_x86_64.c:8776 eelf_x86_64_cloudabi.c:774 eelf_x86_64_fbsd.c:774
#: eelf_x86_64_haiku.c:774 eelf_x86_64_sol2.c:906
#, 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 Rendre les symboles faibles non définis dynamiques\n"
" -z nodynamic-undefined-weak Ne pas rendre les symboles faibles non définis dynamiques\n"
#: eelf32_x86_64.c:8730 eelf_x86_64.c:8780 eelf_x86_64_cloudabi.c:778
#: eelf_x86_64_fbsd.c:778 eelf_x86_64_haiku.c:778 eelf_x86_64_sol2.c:910
#, c-format
msgid " -z noreloc-overflow Disable relocation overflow check\n"
msgstr " -z noreloc-overflow Désactiver la vérification de débordement des relocalisations\n"
#: eelf32_x86_64.c:8733 eelf_i386.c:8180 eelf_i386_be.c:583
#: eelf_i386_fbsd.c:712 eelf_i386_haiku.c:712 eelf_i386_ldso.c:603
#: eelf_i386_sol2.c:775 eelf_i386_vxworks.c:665 eelf_iamcu.c:643
#: eelf_x86_64.c:8783 eelf_x86_64_cloudabi.c:781 eelf_x86_64_fbsd.c:781
#: eelf_x86_64_haiku.c:781 eelf_x86_64_sol2.c:913
#, c-format
msgid " -z call-nop=PADDING Use PADDING as 1-byte NOP for branch\n"
msgstr " -z call-nop=REMBOURRAGE Utiliser REMBOURRAGE comme un NOP de 1 octet pour les branches\n"
#: eelf32_x86_64.c:8736 eelf_i386.c:8183 eelf_i386_fbsd.c:715
#: eelf_i386_haiku.c:715 eelf_x86_64.c:8786 eelf_x86_64_cloudabi.c:784
#: eelf_x86_64_fbsd.c:784 eelf_x86_64_haiku.c:784 eelf_x86_64_sol2.c:916
#, c-format
msgid " -z ibtplt Generate IBT-enabled PLT entries\n"
msgstr " -z ibtplt Générer des entrées PLT actives pour l'IBT\n"
#: eelf32_x86_64.c:8738 eelf_i386.c:8185 eelf_i386_fbsd.c:717
#: eelf_i386_haiku.c:717 eelf_x86_64.c:8788 eelf_x86_64_cloudabi.c:786
#: eelf_x86_64_fbsd.c:786 eelf_x86_64_haiku.c:786 eelf_x86_64_sol2.c:918
#, c-format
msgid " -z ibt Generate GNU_PROPERTY_X86_FEATURE_1_IBT\n"
msgstr " -z ibt Générer GNU_PROPERTY_X86_FEATURE_1_IBT\n"
#: eelf32_x86_64.c:8740 eelf_i386.c:8187 eelf_i386_fbsd.c:719
#: eelf_i386_haiku.c:719 eelf_x86_64.c:8790 eelf_x86_64_cloudabi.c:788
#: eelf_x86_64_fbsd.c:788 eelf_x86_64_haiku.c:788 eelf_x86_64_sol2.c:920
#, c-format
msgid " -z shstk Generate GNU_PROPERTY_X86_FEATURE_1_SHSTK\n"
msgstr " -z shstk Générer GNU_PROPERTY_X86_FEATURE_1_SHSTK\n"
#: eelf32_x86_64.c:8742 eelf_i386.c:8189 eelf_i386_fbsd.c:721
#: eelf_i386_haiku.c:721 eelf_x86_64.c:8792 eelf_x86_64_cloudabi.c:790
#: eelf_x86_64_fbsd.c:790 eelf_x86_64_haiku.c:790 eelf_x86_64_sol2.c:922
#, 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] (défaut : none)\n"
" Signaler les propriétés IBT et SHSTK manquantes\n"
#: eelf32_x86_64.c:8746 eelf_i386.c:8193 eelf_i386_fbsd.c:725
#: eelf_i386_haiku.c:725 eelf_x86_64.c:8796 eelf_x86_64_cloudabi.c:794
#: eelf_x86_64_fbsd.c:794 eelf_x86_64_haiku.c:794 eelf_x86_64_sol2.c:926
#, c-format
msgid " -z report-relative-reloc Report relative relocations\n"
msgstr " -z report-relative-reloc Signaler les relocalisations relatives\n"
#: eelf32_x86_64.c:8749 eelf_i386.c:8196 eelf_i386_fbsd.c:728
#: eelf_i386_haiku.c:728 eelf_x86_64.c:8799 eelf_x86_64_cloudabi.c:797
#: eelf_x86_64_fbsd.c:797 eelf_x86_64_haiku.c:797 eelf_x86_64_sol2.c:929
#, c-format
msgid " -z x86-64-{baseline|v[234]} Mark x86-64-{baseline|v[234]} ISA level as needed\n"
msgstr " -z x86-64-{baseline|v[234]} Marquer le niveau ISA x86-64-{baseline|v[234]} comme requis\n"
#: eelf32_x86_64.c:8752 eelf_i386.c:8199 eelf_i386_fbsd.c:731
#: eelf_i386_haiku.c:731 eelf_x86_64.c:8802 eelf_x86_64_cloudabi.c:800
#: eelf_x86_64_fbsd.c:800 eelf_x86_64_haiku.c:800 eelf_x86_64_sol2.c:932
#, c-format
msgid ""
" -z isa-level-report=[none|all|needed|used] (default: none)\n"
" Report x86-64 ISA level\n"
msgstr ""
" -z isa-level-report=[none|warning|error] (défaut : none)\n"
" Signaler les niveaux ISA x86-64\n"
#: eelf32_x86_64.c:8757 eelf_x86_64.c:8821 eelf_x86_64_cloudabi.c:819
#: eelf_x86_64_fbsd.c:819 eelf_x86_64_haiku.c:819 eelf_x86_64_sol2.c:951
#, c-format
msgid ""
" -z mark-plt Mark PLT with dynamic tags (default)\n"
" -z nomark-plt Do not mark PLT with dynamic tags\n"
msgstr ""
" -z mark-plt Marquer PLT avec des étiquettes dynamiques (défaut)\n"
" -z nomark-plt Ne pas marquer PLT avec des étiquettes dynamiques\n"
#: eelf32_x86_64.c:8761 eelf_x86_64.c:8825 eelf_x86_64_cloudabi.c:823
#: eelf_x86_64_fbsd.c:823 eelf_x86_64_haiku.c:823 eelf_x86_64_sol2.c:955
#, c-format
msgid ""
" -z mark-plt Mark PLT with dynamic tags\n"
" -z nomark-plt Do not mark PLT with dynamic tags (default)\n"
msgstr ""
" -z mark-plt Marquer PLT avec des étiquettes dynamiques\n"
" -z nomark-plt Ne pas marquer PLT avec des étiquettes dynamiques (défaut)\n"
#: eelf32_x86_64.c:8765 eelf64loongarch.c:619 eelf64lppc.c:1388
#: eelf64lppc_fbsd.c:1388 eelf64ppc.c:1388 eelf64ppc_fbsd.c:1388
#: eelf_i386.c:8203 eelf_i386_fbsd.c:735 eelf_i386_haiku.c:735
#: eelf_x86_64.c:8829 eelf_x86_64_cloudabi.c:827 eelf_x86_64_fbsd.c:827
#: eelf_x86_64_haiku.c:827 eelf_x86_64_sol2.c:959
#, c-format
msgid " -z pack-relative-relocs Pack relative relocations\n"
msgstr " -z pack-relative-relocs Inclure les relocalisations relatives\n"
#: eelf32_x86_64.c:8767 eelf64loongarch.c:621 eelf64lppc.c:1390
#: eelf64lppc_fbsd.c:1390 eelf64ppc.c:1390 eelf64ppc_fbsd.c:1390
#: eelf_i386.c:8205 eelf_i386_fbsd.c:737 eelf_i386_haiku.c:737
#: eelf_x86_64.c:8831 eelf_x86_64_cloudabi.c:829 eelf_x86_64_fbsd.c:829
#: eelf_x86_64_haiku.c:829 eelf_x86_64_sol2.c:961
#, c-format
msgid " -z nopack-relative-relocs Do not pack relative relocations (default)\n"
msgstr " -z nopack-relative-relocs Ne pas inclure les relocalisations relatives (défaut)\n"
#: eelf32b4300.c:775 eelf32bmip.c:775 eelf32bmipn32.c:789 eelf32bsmip.c:789
#: eelf32btsmip.c:775 eelf32btsmip_fbsd.c:775 eelf32btsmipn32.c:775
#: eelf32btsmipn32_fbsd.c:775 eelf32ebmip.c:775 eelf32ebmipvxworks.c:810
#: eelf32elmip.c:775 eelf32elmipvxworks.c:810 eelf32l4300.c:775
#: eelf32lmip.c:775 eelf32lr5900.c:629 eelf32lr5900n32.c:628 eelf32lsmip.c:775
#: eelf32ltsmip.c:775 eelf32ltsmip_fbsd.c:775 eelf32ltsmipn32.c:775
#: eelf32ltsmipn32_fbsd.c:775 eelf32mipswindiss.c:588 eelf64bmip.c:789
#: eelf64btsmip.c:775 eelf64btsmip_fbsd.c:775 eelf64ltsmip.c:775
#: eelf64ltsmip_fbsd.c:775 eelf_mipsel_haiku.c:775
#, c-format
msgid " --insn32 Only generate 32-bit microMIPS instructions\n"
msgstr " --insn32 Générer uniquement des instructions 32-bit microMIPS\n"
#: eelf32b4300.c:778 eelf32bmip.c:778 eelf32bmipn32.c:792 eelf32bsmip.c:792
#: eelf32btsmip.c:778 eelf32btsmip_fbsd.c:778 eelf32btsmipn32.c:778
#: eelf32btsmipn32_fbsd.c:778 eelf32ebmip.c:778 eelf32ebmipvxworks.c:813
#: eelf32elmip.c:778 eelf32elmipvxworks.c:813 eelf32l4300.c:778
#: eelf32lmip.c:778 eelf32lr5900.c:632 eelf32lr5900n32.c:631 eelf32lsmip.c:778
#: eelf32ltsmip.c:778 eelf32ltsmip_fbsd.c:778 eelf32ltsmipn32.c:778
#: eelf32ltsmipn32_fbsd.c:778 eelf32mipswindiss.c:591 eelf64bmip.c:792
#: eelf64btsmip.c:778 eelf64btsmip_fbsd.c:778 eelf64ltsmip.c:778
#: eelf64ltsmip_fbsd.c:778 eelf_mipsel_haiku.c:778
#, c-format
msgid " --no-insn32 Generate all microMIPS instructions\n"
msgstr " --no-insn32 Générer toutes les instructions microMIPS\n"
#: eelf32b4300.c:781 eelf32bmip.c:781 eelf32bmipn32.c:795 eelf32bsmip.c:795
#: eelf32btsmip.c:781 eelf32btsmip_fbsd.c:781 eelf32btsmipn32.c:781
#: eelf32btsmipn32_fbsd.c:781 eelf32ebmip.c:781 eelf32ebmipvxworks.c:816
#: eelf32elmip.c:781 eelf32elmipvxworks.c:816 eelf32l4300.c:781
#: eelf32lmip.c:781 eelf32lr5900.c:635 eelf32lr5900n32.c:634 eelf32lsmip.c:781
#: eelf32ltsmip.c:781 eelf32ltsmip_fbsd.c:781 eelf32ltsmipn32.c:781
#: eelf32ltsmipn32_fbsd.c:781 eelf32mipswindiss.c:594 eelf64bmip.c:795
#: eelf64btsmip.c:781 eelf64btsmip_fbsd.c:781 eelf64ltsmip.c:781
#: eelf64ltsmip_fbsd.c:781 eelf_mipsel_haiku.c:781
#, c-format
msgid ""
" --ignore-branch-isa Accept invalid branch relocations requiring\n"
" an ISA mode switch\n"
msgstr ""
" --ignore-branch-isa Accepter des relocalisation de branche invalides nécessitant\n"
" une option de mode ISA\n"
#: eelf32b4300.c:785 eelf32bmip.c:785 eelf32bmipn32.c:799 eelf32bsmip.c:799
#: eelf32btsmip.c:785 eelf32btsmip_fbsd.c:785 eelf32btsmipn32.c:785
#: eelf32btsmipn32_fbsd.c:785 eelf32ebmip.c:785 eelf32ebmipvxworks.c:820
#: eelf32elmip.c:785 eelf32elmipvxworks.c:820 eelf32l4300.c:785
#: eelf32lmip.c:785 eelf32lr5900.c:639 eelf32lr5900n32.c:638 eelf32lsmip.c:785
#: eelf32ltsmip.c:785 eelf32ltsmip_fbsd.c:785 eelf32ltsmipn32.c:785
#: eelf32ltsmipn32_fbsd.c:785 eelf32mipswindiss.c:598 eelf64bmip.c:799
#: eelf64btsmip.c:785 eelf64btsmip_fbsd.c:785 eelf64ltsmip.c:785
#: eelf64ltsmip_fbsd.c:785 eelf_mipsel_haiku.c:785
#, c-format
msgid ""
" --no-ignore-branch-isa Reject invalid branch relocations requiring\n"
" an ISA mode switch\n"
msgstr ""
" --no-ignore-branch-isa Rejeter des relocalisations de branche invalides nécessitant\n"
" une option de mode ISA\n"
#: eelf32b4300.c:789 eelf32bmip.c:789 eelf32bmipn32.c:803 eelf32bsmip.c:803
#: eelf32btsmip.c:789 eelf32btsmip_fbsd.c:789 eelf32btsmipn32.c:789
#: eelf32btsmipn32_fbsd.c:789 eelf32ebmip.c:789 eelf32ebmipvxworks.c:824
#: eelf32elmip.c:789 eelf32elmipvxworks.c:824 eelf32l4300.c:789
#: eelf32lmip.c:789 eelf32lr5900.c:643 eelf32lr5900n32.c:642 eelf32lsmip.c:789
#: eelf32ltsmip.c:789 eelf32ltsmip_fbsd.c:789 eelf32ltsmipn32.c:789
#: eelf32ltsmipn32_fbsd.c:789 eelf32mipswindiss.c:602 eelf64bmip.c:803
#: eelf64btsmip.c:789 eelf64btsmip_fbsd.c:789 eelf64ltsmip.c:789
#: eelf64ltsmip_fbsd.c:789 eelf_mipsel_haiku.c:789
#, c-format
msgid " --compact-branches Generate compact branches/jumps for MIPS R6\n"
msgstr " --compact-branches Générer des branches/sauts compacts pour MIPS R6\n"
#: eelf32b4300.c:792 eelf32bmip.c:792 eelf32bmipn32.c:806 eelf32bsmip.c:806
#: eelf32btsmip.c:792 eelf32btsmip_fbsd.c:792 eelf32btsmipn32.c:792
#: eelf32btsmipn32_fbsd.c:792 eelf32ebmip.c:792 eelf32ebmipvxworks.c:827
#: eelf32elmip.c:792 eelf32elmipvxworks.c:827 eelf32l4300.c:792
#: eelf32lmip.c:792 eelf32lr5900.c:646 eelf32lr5900n32.c:645 eelf32lsmip.c:792
#: eelf32ltsmip.c:792 eelf32ltsmip_fbsd.c:792 eelf32ltsmipn32.c:792
#: eelf32ltsmipn32_fbsd.c:792 eelf32mipswindiss.c:605 eelf64bmip.c:806
#: eelf64btsmip.c:792 eelf64btsmip_fbsd.c:792 eelf64ltsmip.c:792
#: eelf64ltsmip_fbsd.c:792 eelf_mipsel_haiku.c:792
#, c-format
msgid " --no-compact-branches Generate delay slot branches/jumps for MIPS R6\n"
msgstr " --no-compact-branches Générer des branches/sauts à instructions concomitantes (delay slot) pour MIPS R6\n"
#: eelf32bfin.c:523 eelf32bfinfd.c:563
#, c-format
msgid " --code-in-l1 Put code in L1\n"
msgstr " --code-in-l1 Mettre du code en L1\n"
#: eelf32bfin.c:525 eelf32bfinfd.c:565
#, c-format
msgid " --data-in-l1 Put data in L1\n"
msgstr " --data-in-l1 Mettre de la données en L1\n"
#: eelf32briscv.c:641 eelf32briscv_ilp32.c:641 eelf32briscv_ilp32f.c:641
#: eelf32lriscv.c:641 eelf32lriscv_ilp32.c:641 eelf32lriscv_ilp32f.c:641
#: eelf64briscv.c:641 eelf64briscv_lp64.c:641 eelf64briscv_lp64f.c:641
#: eelf64lriscv.c:641 eelf64lriscv_lp64.c:641 eelf64lriscv_lp64f.c:641
#, c-format
msgid " --relax-gp Perform GP relaxation\n"
msgstr " --relax-gp Exécuter la relaxation GP\n"
#: eelf32briscv.c:642 eelf32briscv_ilp32.c:642 eelf32briscv_ilp32f.c:642
#: eelf32lriscv.c:642 eelf32lriscv_ilp32.c:642 eelf32lriscv_ilp32f.c:642
#: eelf64briscv.c:642 eelf64briscv_lp64.c:642 eelf64briscv_lp64f.c:642
#: eelf64lriscv.c:642 eelf64lriscv_lp64.c:642 eelf64lriscv_lp64f.c:642
#, c-format
msgid " --no-relax-gp Don't perform GP relaxation\n"
msgstr " --no-relax-gp Ne pas exécuter la relaxation GP\n"
#: eelf32briscv.c:643 eelf32briscv_ilp32.c:643 eelf32briscv_ilp32f.c:643
#: eelf32lriscv.c:643 eelf32lriscv_ilp32.c:643 eelf32lriscv_ilp32f.c:643
#: eelf64briscv.c:643 eelf64briscv_lp64.c:643 eelf64briscv_lp64f.c:643
#: eelf64lriscv.c:643 eelf64lriscv_lp64.c:643 eelf64lriscv_lp64f.c:643
#, c-format
msgid " --check-uleb128 Check if SUB_ULEB128 has non-zero addend\n"
msgstr " --check-uleb128 Vérifier si SUB_ULEB128 a des suppléments non nuls\n"
#: eelf32briscv.c:644 eelf32briscv_ilp32.c:644 eelf32briscv_ilp32f.c:644
#: eelf32lriscv.c:644 eelf32lriscv_ilp32.c:644 eelf32lriscv_ilp32f.c:644
#: eelf64briscv.c:644 eelf64briscv_lp64.c:644 eelf64briscv_lp64f.c:644
#: eelf64lriscv.c:644 eelf64lriscv_lp64.c:644 eelf64lriscv_lp64f.c:644
#, c-format
msgid " --no-check-uleb128 Don't check if SUB_ULEB128 has non-zero addend\n"
msgstr " --no-check-uleb128 Ne pas vérifier si SUB_ULEB128 a des suppléments non nuls\n"
#: eelf32cr16.c:88
msgid "%F%P: %pB: all input objects must be COFF or ELF for --embedded-relocs\n"
msgstr "%F%P : %pB : tous les objets d'entrée doivent être COFF ou ELF pour --embedded-relocs\n"
#: eelf32cr16.c:112 em68kelf.c:116 em68kelfnbsd.c:116
msgid "%F%P: %pB: can not create .emreloc section: %E\n"
msgstr "%F%P : %pB : impossible de créer la section .emreloc : %E\n"
#: eelf32cr16.c:131 em68kelf.c:137 em68kelfnbsd.c:137
msgid "%X%P: %pB: section %s has relocs; can not use --embedded-relocs\n"
msgstr "%X%P : %pB : la section %s possède des relocalisations ; impossible d'utiliser --embedded-relocs\n"
#: eelf32cr16.c:187 em68kelf.c:180 em68kelfnbsd.c:180
msgid "%X%P: %pB: can not create runtime reloc information: %E\n"
msgstr "%X%P : %pB : impossible de créer des informations de relocalisation pour l'exécution : %E\n"
#: eelf32cr16.c:190 em68kelf.c:184 em68kelfnbsd.c:184
msgid "%X%P: %pB: can not create runtime reloc information: %s\n"
msgstr "%X%P : %pB : impossible de créer des informations de relocalisation pour l'exécution : %s\n"
#: eelf32kvx.c:64 eelf64kvx.c:64
msgid "%F:%P: -pie not supported\n"
msgstr "%F :%P : -pie n'est pas prise en charge\n"
#: eelf32lppc.c:99 eelf32lppclinux.c:99 eelf32lppcnto.c:99 eelf32lppcsim.c:99
#: eelf32ppc.c:99 eelf32ppc_fbsd.c:99 eelf32ppchaiku.c:99 eelf32ppclinux.c:99
#: eelf32ppcnto.c:99 eelf32ppcsim.c:99 eelf32ppcwindiss.c:99
msgid "%X%P: select_plt_layout problem %E\n"
msgstr "%X%P: problème select_plt_layout %E\n"
#: eelf32lppc.c:163 eelf32lppclinux.c:163 eelf32lppcnto.c:163
#: eelf32lppcsim.c:163 eelf32ppc.c:163 eelf32ppc_fbsd.c:163
#: eelf32ppchaiku.c:163 eelf32ppclinux.c:163 eelf32ppcnto.c:163
#: eelf32ppcsim.c:163 eelf32ppcvxworks.c:108 eelf32ppcwindiss.c:163
#: eelf64lppc.c:324 eelf64lppc_fbsd.c:324 eelf64ppc.c:324 eelf64ppc_fbsd.c:324
msgid "%X%P: inline PLT: %E\n"
msgstr "%X%P : PLT en ligne : %E\n"
#: eelf32lppc.c:171 eelf32lppclinux.c:171 eelf32lppcnto.c:171
#: eelf32lppcsim.c:171 eelf32ppc.c:171 eelf32ppc_fbsd.c:171
#: eelf32ppchaiku.c:171 eelf32ppclinux.c:171 eelf32ppcnto.c:171
#: eelf32ppcsim.c:171 eelf32ppcvxworks.c:116 eelf32ppcwindiss.c:171
#: eelf64lppc.c:328 eelf64lppc.c:347 eelf64lppc_fbsd.c:328
#: eelf64lppc_fbsd.c:347 eelf64ppc.c:328 eelf64ppc.c:347 eelf64ppc_fbsd.c:328
#: eelf64ppc_fbsd.c:347
msgid "%X%P: TLS problem %E\n"
msgstr "%X%P : problème TLS %E\n"
#: eelf32lppc.c:258 eelf32lppclinux.c:258 eelf32lppcnto.c:258
#: eelf32lppcsim.c:258 eelf32ppc.c:258 eelf32ppc_fbsd.c:258
#: eelf32ppchaiku.c:258 eelf32ppclinux.c:258 eelf32ppcnto.c:258
#: eelf32ppcsim.c:258 eelf32ppcvxworks.c:203 eelf32ppcwindiss.c:258
msgid "%X%P: ppc_finish_symbols problem %E\n"
msgstr "%X%P : problème ppc_finish_symbols %E\n"
#: eelf32lppc.c:810 eelf32lppclinux.c:810 eelf32lppcnto.c:810
#: eelf32lppcsim.c:810 eelf32ppc.c:810 eelf32ppc_fbsd.c:810
#: eelf32ppchaiku.c:810 eelf32ppclinux.c:810 eelf32ppcnto.c:810
#: eelf32ppcsim.c:810 eelf32ppcvxworks.c:780 eelf32ppcwindiss.c:810
#: eelf64lppc.c:1251 eelf64lppc_fbsd.c:1251 eelf64ppc.c:1251
#: eelf64ppc_fbsd.c:1251
msgid "%F%P: invalid --plt-align `%s'\n"
msgstr "%F%P : --plt-align « %s » invalide\n"
#: eelf32lppc.c:843 eelf32lppclinux.c:843 eelf32lppcnto.c:843
#: eelf32lppcsim.c:843 eelf32ppc.c:843 eelf32ppc_fbsd.c:843
#: eelf32ppchaiku.c:843 eelf32ppclinux.c:843 eelf32ppcnto.c:843
#: eelf32ppcsim.c:843 eelf32ppcvxworks.c:813 eelf32ppcwindiss.c:843
msgid "%F%P: invalid pagesize `%s'\n"
msgstr "%F%P : taille de page « %s » invalide\n"
#: eelf32lppc.c:873 eelf32lppclinux.c:873 eelf32lppcnto.c:873
#: eelf32lppcsim.c:873 eelf32ppc.c:873 eelf32ppc_fbsd.c:873
#: eelf32ppchaiku.c:873 eelf32ppclinux.c:873 eelf32ppcnto.c:873
#: eelf32ppcsim.c:873 eelf32ppcvxworks.c:847 eelf32ppcwindiss.c:873
#: eelf64lppc.c:1436 eelf64lppc_fbsd.c:1436 eelf64ppc.c:1436
#: eelf64ppc_fbsd.c:1436
#, c-format
msgid " --emit-stub-syms Label linker stubs with a symbol\n"
msgstr " --emit-stub-syms Etiqueter les espaces d'amorçage de l'éditeur de liens avec un symbole\n"
#: eelf32lppc.c:876 eelf32lppclinux.c:876 eelf32lppcnto.c:876
#: eelf32lppcsim.c:876 eelf32ppc.c:876 eelf32ppc_fbsd.c:876
#: eelf32ppchaiku.c:876 eelf32ppclinux.c:876 eelf32ppcnto.c:876
#: eelf32ppcsim.c:876 eelf32ppcvxworks.c:850 eelf32ppcwindiss.c:876
#: eelf64lppc.c:1439 eelf64lppc_fbsd.c:1439 eelf64ppc.c:1439
#: eelf64ppc_fbsd.c:1439
#, c-format
msgid " --no-emit-stub-syms Don't label linker stubs with a symbol\n"
msgstr " --no-emit-stub-syms Ne pas étiqueter les espaces d'amorçage de l'éditeur de liens avec un symbole\n"
#: eelf32lppc.c:879 eelf32lppclinux.c:879 eelf32lppcnto.c:879
#: eelf32lppcsim.c:879 eelf32ppc.c:879 eelf32ppc_fbsd.c:879
#: eelf32ppchaiku.c:879 eelf32ppclinux.c:879 eelf32ppcnto.c:879
#: eelf32ppcsim.c:879 eelf32ppcvxworks.c:853 eelf32ppcwindiss.c:879
#: eelf64lppc.c:1459 eelf64lppc_fbsd.c:1459 eelf64ppc.c:1459
#: eelf64ppc_fbsd.c:1459
#, c-format
msgid " --no-tls-optimize Don't try to optimize TLS accesses\n"
msgstr " --no-tls-optimize Ne pas essayer d'optimiser les accès TLS\n"
#: eelf32lppc.c:882 eelf32lppclinux.c:882 eelf32lppcnto.c:882
#: eelf32lppcsim.c:882 eelf32ppc.c:882 eelf32ppc_fbsd.c:882
#: eelf32ppchaiku.c:882 eelf32ppclinux.c:882 eelf32ppcnto.c:882
#: eelf32ppcsim.c:882 eelf32ppcvxworks.c:856 eelf32ppcwindiss.c:882
#: eelf64lppc.c:1465 eelf64lppc_fbsd.c:1465 eelf64ppc.c:1465
#: eelf64ppc_fbsd.c:1465
#, c-format
msgid " --no-tls-get-addr-optimize Don't use a special __tls_get_addr call\n"
msgstr " --no-tls-get-addr-optimize Ne pas utiliser d'appel special __tls_get_addr\n"
#: eelf32lppc.c:885 eelf32lppclinux.c:885 eelf32lppcnto.c:885
#: eelf32lppcsim.c:885 eelf32ppc.c:885 eelf32ppc_fbsd.c:885
#: eelf32ppchaiku.c:885 eelf32ppclinux.c:885 eelf32ppcnto.c:885
#: eelf32ppcsim.c:885 eelf32ppcwindiss.c:885
#, c-format
msgid " --secure-plt Use new-style PLT if possible\n"
msgstr " --secure-plt Utiliser un style de PLT moderne si possible\n"
#: eelf32lppc.c:888 eelf32lppclinux.c:888 eelf32lppcnto.c:888
#: eelf32lppcsim.c:888 eelf32ppc.c:888 eelf32ppc_fbsd.c:888
#: eelf32ppchaiku.c:888 eelf32ppclinux.c:888 eelf32ppcnto.c:888
#: eelf32ppcsim.c:888 eelf32ppcwindiss.c:888
#, c-format
msgid " --bss-plt Force old-style BSS PLT\n"
msgstr " --bss-plt Forcer un style ancien de PLT BSS\n"
#: eelf32lppc.c:891 eelf32lppclinux.c:891 eelf32lppcnto.c:891
#: eelf32lppcsim.c:891 eelf32ppc.c:891 eelf32ppc_fbsd.c:891
#: eelf32ppchaiku.c:891 eelf32ppclinux.c:891 eelf32ppcnto.c:891
#: eelf32ppcsim.c:891 eelf32ppcwindiss.c:891
#, c-format
msgid " --plt-align Align PLT call stubs to fit cache lines\n"
msgstr " --plt-align Aligner les espaces d'amorçage d'appel PLT pour tenir dans les lignes de cache\n"
#: eelf32lppc.c:894 eelf32lppclinux.c:894 eelf32lppcnto.c:894
#: eelf32lppcsim.c:894 eelf32ppc.c:894 eelf32ppc_fbsd.c:894
#: eelf32ppchaiku.c:894 eelf32ppclinux.c:894 eelf32ppcnto.c:894
#: eelf32ppcsim.c:894 eelf32ppcwindiss.c:894 eelf64lppc.c:1418
#: eelf64lppc_fbsd.c:1418 eelf64ppc.c:1418 eelf64ppc_fbsd.c:1418
#, c-format
msgid " --no-plt-align Dont't align individual PLT call stubs\n"
msgstr " --no-plt-align Ne pas algner les espaces d'amorçage d'appel PLT individuels\n"
#: eelf32lppc.c:897 eelf32lppclinux.c:897 eelf32lppcnto.c:897
#: eelf32lppcsim.c:897 eelf32ppc.c:897 eelf32ppc_fbsd.c:897
#: eelf32ppchaiku.c:897 eelf32ppclinux.c:897 eelf32ppcnto.c:897
#: eelf32ppcsim.c:897 eelf32ppcwindiss.c:897 eelf64lppc.c:1477
#: eelf64lppc_fbsd.c:1477 eelf64ppc.c:1477 eelf64ppc_fbsd.c:1477
#, c-format
msgid " --no-inline-optimize Don't convert inline PLT to direct calls\n"
msgstr " --no-inline-optimize Ne pas convertir les PLT en ligne en appels directs\n"
#: eelf32lppc.c:900 eelf32lppclinux.c:900 eelf32lppcnto.c:900
#: eelf32lppcsim.c:900 eelf32ppc.c:900 eelf32ppc_fbsd.c:900
#: eelf32ppchaiku.c:900 eelf32ppclinux.c:900 eelf32ppcnto.c:900
#: eelf32ppcsim.c:900 eelf32ppcwindiss.c:900
#, c-format
msgid " --sdata-got Force GOT location just before .sdata\n"
msgstr " --sdata-got Forcer la position GOT juste avant .sdata\n"
#: eelf32lppc.c:903 eelf32lppclinux.c:903 eelf32lppcnto.c:903
#: eelf32lppcsim.c:903 eelf32ppc.c:903 eelf32ppc_fbsd.c:903
#: eelf32ppchaiku.c:903 eelf32ppclinux.c:903 eelf32ppcnto.c:903
#: eelf32ppcsim.c:903 eelf32ppcvxworks.c:859 eelf32ppcwindiss.c:903
#, c-format
msgid ""
" --ppc476-workaround [=pagesize]\n"
" Avoid a cache bug on ppc476\n"
msgstr ""
" --ppc476-workaround [=taille-de-page]\n"
" Evite un bogue de cache sur ppc476\n"
#: eelf32lppc.c:907 eelf32lppclinux.c:907 eelf32lppcnto.c:907
#: eelf32lppcsim.c:907 eelf32ppc.c:907 eelf32ppc_fbsd.c:907
#: eelf32ppchaiku.c:907 eelf32ppclinux.c:907 eelf32ppcnto.c:907
#: eelf32ppcsim.c:907 eelf32ppcvxworks.c:863 eelf32ppcwindiss.c:907
#, c-format
msgid " --no-ppc476-workaround Disable workaround\n"
msgstr " --no-ppc476-workaround Désactiver le contournement\n"
#: eelf32lppc.c:910 eelf32lppclinux.c:910 eelf32lppcnto.c:910
#: eelf32lppcsim.c:910 eelf32ppc.c:910 eelf32ppc_fbsd.c:910
#: eelf32ppchaiku.c:910 eelf32ppclinux.c:910 eelf32ppcnto.c:910
#: eelf32ppcsim.c:910 eelf32ppcvxworks.c:866 eelf32ppcwindiss.c:910
#, c-format
msgid " --no-pic-fixup Don't edit non-pic to pic\n"
msgstr " --no-pic-fixup Ne pas éditer non-pic en pic\n"
#: eelf32lppc.c:913 eelf32lppclinux.c:913 eelf32lppcnto.c:913
#: eelf32lppcsim.c:913 eelf32ppc.c:913 eelf32ppc_fbsd.c:913
#: eelf32ppchaiku.c:913 eelf32ppclinux.c:913 eelf32ppcnto.c:913
#: eelf32ppcsim.c:913 eelf32ppcvxworks.c:869 eelf32ppcwindiss.c:913
#, c-format
msgid " --vle-reloc-fixup Correct old object file 16A/16D relocation\n"
msgstr " --vle-reloc-fixup Corrige les relocalisations d'anciens fichiers objet 16A/16D\n"
#: eelf32mcore.c:369
#, c-format
msgid " --base_file <basefile> Generate a base file for relocatable DLLs\n"
msgstr " --base_file <fichier_de_base> Générer un fichier de base pour les DLL relocalisables\n"
#: eelf32metag.c:802 eelf64lppc.c:1393 eelf64lppc_fbsd.c:1393 eelf64ppc.c:1393
#: eelf64ppc_fbsd.c:1393 ehppaelf.c:631 ehppalinux.c:843 ehppanbsd.c:843
#: ehppaobsd.c:843
#, c-format
msgid ""
" --stub-group-size=N Maximum size of a group of input sections that\n"
" can be handled by one stub section. A negative\n"
" value locates all stubs before their branches\n"
" (with a group size of -N), while a positive\n"
" value allows two groups of input sections, one\n"
" before, and one after each stub section.\n"
" Values of +/-1 indicate the linker should\n"
" choose suitable defaults.\n"
msgstr ""
" --stub-group-size=N Taille maximale d'un groupe de sections d'entrées qui\n"
" peut être gérée par une section d'espace d'amorçage. Une valeur\n"
" négative situe tous les espaces d'amorçage après leurs branches\n"
" (avec une taille de groupe de -N), alors qu'une valeur\n"
" positive permet deux groupes de section d'entrée, un\n"
" avant, et un après chaque section d'espace d'amorçage.\n"
" Les valeurs +/-1 indiquent que l'éditeur de liens doit\n"
" choisir des règlages par défaut appropriés.\n"
#: eelf32rx.c:398
#, c-format
msgid ""
" --no-flag-mismatch-warnings Don't warn about objects with incompatible\n"
" endian or dsp settings\n"
msgstr ""
" --no-flag-mismatch-warnings Ne pas avertir des objets ayant des paramètres\n"
" de boutisme ou de dsp incompatibles\n"
#: eelf32rx.c:400
#, c-format
msgid ""
" --flag-mismatch-warnings Warn about objects with incompatible\n"
" endian, dsp or ABI settings\n"
msgstr ""
" --flag-mismatch-warnings Avertir des objets ayant des paramètres\n"
" de boutisme, dsp ou ABI incompatibles\n"
#: eelf32rx.c:402
#, c-format
msgid ""
" --ignore-lma Ignore segment LMAs [default]\n"
" (for Renesas Tools compatibility)\n"
msgstr ""
" --ignore-lma Ignorer les LMAs de segment [défaut]\n"
" (par compatibilité avec Renesas Tools)\n"
#: eelf32rx.c:404
#, c-format
msgid " --no-ignore-lma Don't ignore segment LMAs\n"
msgstr " --no-ignore-lma Ne pas ignorer les LMAs de segment\n"
#: eelf32xtensa.c:147
msgid "file already has property tables"
msgstr "le fichier contient déjà des tables de propriétés"
#: eelf32xtensa.c:157
msgid "failed to read section contents"
msgstr "impossible de lire les contenus de la section"
#: eelf32xtensa.c:169
msgid "could not create new section"
msgstr "impossible de créer une nouvelle section"
#: eelf32xtensa.c:185
msgid "could not allocate section contents"
msgstr "impossible d'allouer les contenus de section"
#: eelf32xtensa.c:204
msgid "out of memory"
msgstr "plus de mémoire"
#: eelf32xtensa.c:301
msgid "%P: warning: failed to convert %s table in %pB (%s); subsequent disassembly may be incomplete\n"
msgstr "%P : avertissement : échec de conversion de la table %s dans %pB (%s) ; les désassemblage ultérieurs pourraient être incomplets\n"
#: eelf32xtensa.c:421
msgid "%F%P: %pB: cannot read contents of section %pA\n"
msgstr "%F%P : %pB : impossible de lire les contenus de la section %pA\n"
#: eelf32xtensa.c:432
msgid "%P: %pB: warning: incompatible Xtensa configuration (%s)\n"
msgstr "%P : %pB : avertissement : configuration Xtensa (%s) incompatible\n"
#: eelf32xtensa.c:436
msgid "%P: %pB: warning: cannot parse .xtensa.info section\n"
msgstr "%P : %pB : avertissement: impossible d'analyser la section .xtensa.info\n"
#: eelf32xtensa.c:462
msgid "%F%P: little endian output does not match Xtensa configuration\n"
msgstr "%F%P : la sortie petit-boutiste ne correspond pas à la configuration Xtensa\n"
#: eelf32xtensa.c:468
msgid "%F%P: big endian output does not match Xtensa configuration\n"
msgstr "%F%P: le sortie gros-boutiste ne correspond pas à la configuration Xtensa\n"
#: eelf32xtensa.c:487
msgid "%F%P: cross-endian linking for %pB not supported\n"
msgstr "%F%P : l'édition de liens inter-boutiste pour %pB n'est pas prise en charge\n"
#: eelf32xtensa.c:518
msgid "%F%P: failed to create .xtensa.info section\n"
msgstr "%F%P : échec de la création de la section .xtensa.info\n"
#: eelf32xtensa.c:1257
msgid "%F%P: Relaxation not supported with --enable-non-contiguous-regions.\n"
msgstr "%F%P : la relaxation n'est pas prise en charge avec --enable-non-contiguous-regions.\n"
#: eelf32xtensa.c:2466
#, c-format
msgid ""
" --size-opt When relaxing longcalls, prefer size\n"
" optimization over branch target alignment\n"
msgstr ""
" --size-opt Lors de la relaxation d'appels longs, préfèrer l'optimisation\n"
" de la taille à l'alignement de branche cible\n"
#: eelf32xtensa.c:2469
#, c-format
msgid " --abi-windowed Choose windowed ABI for the output object\n"
msgstr " --abi-windowed Utilise l'ABI fenêtré pour l'object en sortie\n"
#: eelf32xtensa.c:2471
#, c-format
msgid " --abi-call0 Choose call0 ABI for the output object\n"
msgstr " --abi-call0 Utilise l'ABI call0 pour l'objet en sortie\n"
#: eelf32z80.c:70 ez80.c:59
msgid "%F%P: %pB: Instruction sets of object files incompatible\n"
msgstr "%F%P : %pB : jeu d'instructions des fichiers objet incompatibles\n"
#: eelf64_ia64.c:575 eelf64_ia64_fbsd.c:575
#, c-format
msgid " --itanium Generate code for Intel Itanium processor\n"
msgstr " --itanium Générer du code pour les processeurs Itanium d'Intel\n"
#: eelf64_s390.c:648
#, c-format
msgid " --s390-pgste Tell the kernel to allocate 4k page tables\n"
msgstr " --s390-pgste Dire au noyau d'allouer des tables de page de 4k\n"
#: eelf64alpha.c:645 eelf64alpha_fbsd.c:645 eelf64alpha_nbsd.c:645
#, c-format
msgid ""
" --taso Load executable in the lower 31-bit addressable\n"
" virtual address range\n"
msgstr ""
" --taso Charger l'exécutable dans les 31-bit bas de la plage\n"
" d'adresses virtuelles addressables\n"
#: eelf64alpha.c:648 eelf64alpha_fbsd.c:648 eelf64alpha_nbsd.c:648
#, c-format
msgid " --secureplt Force PLT in text segment\n"
msgstr " --secureplt Force le PLT dans le segment texte\n"
#: eelf64alpha.c:650 eelf64alpha_fbsd.c:650 eelf64alpha_nbsd.c:650
#, c-format
msgid " --no-secureplt Force PLT in data segment\n"
msgstr " --no-secureplt Force le PLT dans le segment de données\n"
#: eelf64lppc.c:316 eelf64lppc.c:356 eelf64lppc_fbsd.c:316
#: eelf64lppc_fbsd.c:356 eelf64ppc.c:316 eelf64ppc.c:356 eelf64ppc_fbsd.c:316
#: eelf64ppc_fbsd.c:356
msgid "%X%P: can not edit %s: %E\n"
msgstr "%X%P : impossible d'éditer %s : %E\n"
#: eelf64lppc.c:519 eelf64lppc_fbsd.c:519 eelf64ppc.c:519 eelf64ppc_fbsd.c:519
msgid "%X%P: linker script separates .got and .toc\n"
msgstr "%X%P : le script de l'éditeur de liens sépare .got et .toc\n"
#: eelf64lppc.c:580 eelf64lppc_fbsd.c:580 eelf64ppc.c:580 eelf64ppc_fbsd.c:580
msgid "%P: .init/.fini fragments use differing TOC pointers\n"
msgstr "%P : les fragments .init/.fini utilisent des pointeurs TOC différents\n"
#: eelf64lppc.c:1280 eelf64lppc_fbsd.c:1280 eelf64ppc.c:1280
#: eelf64ppc_fbsd.c:1280
msgid "%F%P: invalid --power10-stubs argument `%s'\n"
msgstr "%F%P : l'argument « %s » de --power10-stubs n'est pas valable\n"
#: eelf64lppc.c:1403 eelf64ppc.c:1403
#, c-format
msgid " --plt-static-chain PLT call stubs should load r11 (default)\n"
msgstr " --plt-static-chain Les espace d'amorçage d'appel PLT doivent charger r11 (défaut)\n"
#: eelf64lppc.c:1406 eelf64ppc.c:1406
#, c-format
msgid " --no-plt-static-chain PLT call stubs should not load r11\n"
msgstr " --no-plt-static-chain Les espace d'amorçage d'appel PLT ne doivent pas charger r11\n"
#: eelf64lppc.c:1409 eelf64lppc_fbsd.c:1409 eelf64ppc.c:1409
#: eelf64ppc_fbsd.c:1409
#, c-format
msgid " --plt-thread-safe PLT call stubs with load-load barrier\n"
msgstr " --plt-thread-safe Espace d'amorçage d'appel PLT avec des barrières chargement-chargement\n"
#: eelf64lppc.c:1412 eelf64lppc_fbsd.c:1412 eelf64ppc.c:1412
#: eelf64ppc_fbsd.c:1412
#, c-format
msgid " --no-plt-thread-safe PLT call stubs without barrier\n"
msgstr " --no-plt-thread-safe Espaces d'amorçage d'appel PLT sans barrières\n"
#: eelf64lppc.c:1415 eelf64lppc_fbsd.c:1415 eelf64ppc.c:1415
#: eelf64ppc_fbsd.c:1415
#, c-format
msgid " --plt-align [=<align>] Align PLT call stubs to fit cache lines\n"
msgstr " --plt-align [=<align>] Aligner les espaces d'amorçage d'appel PLT pour tenir dans les lignes de cache\n"
#: eelf64lppc.c:1421 eelf64lppc_fbsd.c:1421 eelf64ppc.c:1421
#: eelf64ppc_fbsd.c:1421
#, c-format
msgid " --plt-localentry Optimize calls to ELFv2 localentry:0 functions\n"
msgstr " --plt-localentry Optimise les appels aux fonctions ELFv2 localentry:0\n"
#: eelf64lppc.c:1424 eelf64lppc_fbsd.c:1424 eelf64ppc.c:1424
#: eelf64ppc_fbsd.c:1424
#, c-format
msgid " --no-plt-localentry Don't optimize ELFv2 calls\n"
msgstr " --no-plt-localentry Ne pas optimiser les appels ELFv2\n"
#: eelf64lppc.c:1427 eelf64lppc_fbsd.c:1427 eelf64ppc.c:1427
#: eelf64ppc_fbsd.c:1427
#, c-format
msgid " --power10-stubs [=auto] Use Power10 PLT call stubs (default auto)\n"
msgstr " --power10-stubs [=auto] Utiliser les espaces d'amorçage d'appel PLT Power10 (défaut auto)\n"
#: eelf64lppc.c:1430 eelf64lppc_fbsd.c:1430 eelf64ppc.c:1430
#: eelf64ppc_fbsd.c:1430
#, c-format
msgid " --no-pcrel-optimize Don't perform R_PPC64_PCREL_OPT optimization\n"
msgstr " --no-pcrel-optimize Ne pas effectuer l'optimisation R_PPC64_PCREL_OPT\n"
#: eelf64lppc.c:1433 eelf64lppc_fbsd.c:1433 eelf64ppc.c:1433
#: eelf64ppc_fbsd.c:1433
#, c-format
msgid " --no-power10-stubs Don't use Power10 PLT call stubs\n"
msgstr " --no-power10-stubs Ne pas utilser les espaces d'amorçage d'appel Power10\n"
#: eelf64lppc.c:1442 eelf64lppc_fbsd.c:1442 eelf64ppc.c:1442
#: eelf64ppc_fbsd.c:1442
#, 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 Pour tout motif de version \"foo\" dans un script de\n"
" version, ajouter \".foo\" de façon à ce que les symboles codant\n"
" de fonction soient traités identiquement aux symboles de description \n"
" de fonction. Activé pas défauts.\n"
#: eelf64lppc.c:1448 eelf64lppc_fbsd.c:1448 eelf64ppc.c:1448
#: eelf64ppc_fbsd.c:1448
#, c-format
msgid " --no-dotsyms Don't do anything special in version scripts\n"
msgstr " --no-dotsyms Ne rien faire de spécial dans les scripts de version\n"
#: eelf64lppc.c:1451 eelf64lppc_fbsd.c:1451 eelf64ppc.c:1451
#: eelf64ppc_fbsd.c:1451
#, 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 Fournir les routines de sauvegarde et de restauration de registre utilisées\n"
" par le code produit avec gcc -Os. Activé par défault pour les liens\n"
" finaux normaux, désactivé pour ld -r.\n"
#: eelf64lppc.c:1456 eelf64lppc_fbsd.c:1456 eelf64ppc.c:1456
#: eelf64ppc_fbsd.c:1456
#, c-format
msgid " --no-save-restore-funcs Don't provide these routines\n"
msgstr " --no-save-restore-funcs Ne pas fournir ces routines\n"
#: eelf64lppc.c:1462 eelf64lppc_fbsd.c:1462 eelf64ppc.c:1462
#: eelf64ppc_fbsd.c:1462
#, c-format
msgid " --tls-get-addr-optimize Force use of special __tls_get_addr call\n"
msgstr " --tls-get-addr-optimize Force l'utilisation d'un appel spécial à __tls_get_addr\n"
#: eelf64lppc.c:1468 eelf64lppc_fbsd.c:1468 eelf64ppc.c:1468
#: eelf64ppc_fbsd.c:1468
#, c-format
msgid " --tls-get-addr-regsave Force register save __tls_get_addr stub\n"
msgstr " --tls-get-addr-regsave Forcer la sauvegarde dans un registre de l'espace d'amorçage __tls_get_addr\n"
#: eelf64lppc.c:1471 eelf64lppc_fbsd.c:1471 eelf64ppc.c:1471
#: eelf64ppc_fbsd.c:1471
#, c-format
msgid " --no-tls-get-addr-regsave Don't use register save __tls_get_addr stub\n"
msgstr " --no-tls-get-addr-regsave Ne pas forcer la sauvegarde dans un registre de l'espace d'amorçage __tls_get_addr\\n\n"
#: eelf64lppc.c:1474 eelf64lppc_fbsd.c:1474 eelf64ppc.c:1474
#: eelf64ppc_fbsd.c:1474
#, c-format
msgid " --no-opd-optimize Don't optimize the OPD section\n"
msgstr " --no-opd-optimize Ne pas optimiser la section OPD\n"
#: eelf64lppc.c:1480 eelf64lppc_fbsd.c:1480 eelf64ppc.c:1480
#: eelf64ppc_fbsd.c:1480
#, c-format
msgid " --no-toc-optimize Don't optimize the TOC section\n"
msgstr " --no-toc-optimize Ne pas optimiser la section TOC\n"
#: eelf64lppc.c:1483 eelf64lppc_fbsd.c:1483 eelf64ppc.c:1483
#: eelf64ppc_fbsd.c:1483
#, c-format
msgid " --no-multi-toc Disallow automatic multiple toc sections\n"
msgstr " --no-multi-toc Empêcher de multiples sections toc automatiques\n"
#: eelf64lppc.c:1486 eelf64lppc_fbsd.c:1486 eelf64ppc.c:1486
#: eelf64ppc_fbsd.c:1486
#, c-format
msgid " --no-toc-sort Don't sort TOC and GOT sections\n"
msgstr " --no-toc-sort Ne pas trier les sections TOC et GOT\n"
#: eelf64lppc.c:1489 eelf64lppc_fbsd.c:1489 eelf64ppc.c:1489
#: eelf64ppc_fbsd.c:1489
#, c-format
msgid ""
" --non-overlapping-opd Canonicalize .opd, so that there are no\n"
" overlapping .opd entries\n"
msgstr ""
" --non-overlapping-opd Canoniser .opd, pour que les entrées\n"
" .opd ne se superposent pas.\n"
#: eelf64lppc_fbsd.c:1403 eelf64ppc_fbsd.c:1403
#, c-format
msgid " --plt-static-chain PLT call stubs should load r111\n"
msgstr " --plt-static-chain Les espaces d'amorçage d'appel PLT doivent charger r111\n"
#: eelf64lppc_fbsd.c:1406 eelf64ppc_fbsd.c:1406
#, c-format
msgid " --no-plt-static-chain PLT call stubs should not load r11 (default)\n"
msgstr " --no-plt-static-chain Les espaces d'amorçage d'appel PLT ne doivent pas charger r11 (défaut)\n"
#: eelf64mmix.c:84 emmo.c:84
msgid "%X%P: internal problems setting up section %s"
msgstr "%X%P : problèmes internes lors de l'assemblage de la section %s"
#: eelf64mmix.c:128 emmo.c:128
msgid "%X%P: too many global registers: %u, max 223\n"
msgstr "%X%P : trop de registres généraux : %u, maximum 223\n"
#. This is a fatal error; make einfo call not return.
#: eelf64mmix.c:146 emmo.c:146
msgid "%F%P: can't finalize linker-allocated global registers\n"
msgstr "%F%P : impossible de terminer les registres globaux alloués par l'éditeur de liens\n"
#: eelf_x86_64.c:8687 eelf_x86_64_cloudabi.c:685 eelf_x86_64_fbsd.c:685
#: eelf_x86_64_haiku.c:685 eelf_x86_64_sol2.c:817
msgid "%F%P: invalid option for -z lam-u48-report=: %s\n"
msgstr "%F%P : option non valable pour -z lam-u48-report=: %s\n"
#: eelf_x86_64.c:8701 eelf_x86_64_cloudabi.c:699 eelf_x86_64_fbsd.c:699
#: eelf_x86_64_haiku.c:699 eelf_x86_64_sol2.c:831
msgid "%F%P: invalid option for -z lam-u57-report=: %s\n"
msgstr "%F%P : option non valable pour -z lam-u57-report=: %s\n"
#: eelf_x86_64.c:8722 eelf_x86_64_cloudabi.c:720 eelf_x86_64_fbsd.c:720
#: eelf_x86_64_haiku.c:720 eelf_x86_64_sol2.c:852
msgid "%F%P: invalid option for -z lam-report=: %s\n"
msgstr "%F%P : option non valable pour -z lam-report=: %s\n"
#: eelf_x86_64.c:8806 eelf_x86_64_cloudabi.c:804 eelf_x86_64_fbsd.c:804
#: eelf_x86_64_haiku.c:804 eelf_x86_64_sol2.c:936
#, c-format
msgid " -z lam-u48 Generate GNU_PROPERTY_X86_FEATURE_1_LAM_U48\n"
msgstr " -z lam-u48 Générer GNU_PROPERTY_X86_FEATURE_1_LAM_U48\n"
#: eelf_x86_64.c:8808 eelf_x86_64_cloudabi.c:806 eelf_x86_64_fbsd.c:806
#: eelf_x86_64_haiku.c:806 eelf_x86_64_sol2.c:938
#, c-format
msgid ""
" -z lam-u48-report=[none|warning|error] (default: none)\n"
" Report missing LAM_U48 property\n"
msgstr ""
" -z lam-u48-report=[none|warning|error] (défaut : none)\n"
" Signaler les propriétés LAM_U48 manquantes\n"
#: eelf_x86_64.c:8811 eelf_x86_64_cloudabi.c:809 eelf_x86_64_fbsd.c:809
#: eelf_x86_64_haiku.c:809 eelf_x86_64_sol2.c:941
#, c-format
msgid " -z lam-u57 Generate GNU_PROPERTY_X86_FEATURE_1_LAM_U57\n"
msgstr " -z lam-u57 Générer GNU_PROPERTY_X86_FEATURE_1_LAM_U57\n"
#: eelf_x86_64.c:8813 eelf_x86_64_cloudabi.c:811 eelf_x86_64_fbsd.c:811
#: eelf_x86_64_haiku.c:811 eelf_x86_64_sol2.c:943
#, c-format
msgid ""
" -z lam-u57-report=[none|warning|error] (default: none)\n"
" Report missing LAM_U57 property\n"
msgstr ""
" -z lam-u57-report=[none|warning|error] (défaut : none)\n"
" Signaler les propriétés LAM_U57 manquantes\n"
#: eelf_x86_64.c:8816 eelf_x86_64_cloudabi.c:814 eelf_x86_64_fbsd.c:814
#: eelf_x86_64_haiku.c:814 eelf_x86_64_sol2.c:946
#, c-format
msgid ""
" -z lam-report=[none|warning|error] (default: none)\n"
" Report missing LAM_U48 and LAM_U57 properties\n"
msgstr ""
" -z lam-report=[none|warning|error] (défaut : none)\n"
" Signaler les propriétés LAM_U48 et LAM_U57 manquantes\n"
#: ehppaelf.c:327 ehppalinux.c:327 ehppanbsd.c:327 ehppaobsd.c:327
msgid "%X%P: can not set gp\n"
msgstr "%X%P : impossible de fixer\n"
#: ehppaelf.c:627 ehppalinux.c:839 ehppanbsd.c:839 ehppaobsd.c:839
#, c-format
msgid ""
" --multi-subspace Generate import and export stubs to support\n"
" multiple sub-space shared libraries\n"
msgstr ""
" --multi-subspace Générer les espaces d'amorçage d'import et d'export pour prendre en charge\n"
" plusieurs bibliothèques partagées à sous espace\n"
#: ei386beos.c:359
msgid "%F%P: PE operations on non PE file\n"
msgstr "%F%P : opérations PE sur un fichier qui n'est pas PE.\n"
#: ei386beos.c:409 ei386beos.c:414
msgid "%F%P: %pB: can't read contents of section .idata: %E\n"
msgstr "%F%P : %pB : impossible de lire les contenus de la section .idata : %E\n"
#: ei386beos.c:646
msgid "%F%P: section %s has '$' as first character\n"
msgstr "%F%P : la section %s a '$' comme premier caractère\n"
#: ei386beos.c:676
msgid "%F%P: *(%s$) missing from linker script\n"
msgstr "%F%P : *(%s$) manquant dans le script d'édition de liens\n"
#: em68hc11elf.c:144 em68hc11elfb.c:144 em68hc12elf.c:144 em68hc12elfb.c:144
msgid "%P: warning: the size of the 'window' memory region is not a power of 2; its size %d is truncated to %d\n"
msgstr "%P : avertissement : la taille de la région mémoire 'fenêtre' n'est pas une puissance de 2̃ ; sa taille de %d est tronquée à %d\n"
#: em68hc11elf.c:159 em68hc11elfb.c:159 em68hc12elf.c:159 em68hc12elfb.c:159
msgid "%X%P: changing output format whilst linking is not supported\n"
msgstr "%X%P : changer le format de la sortie lors de l'édition de liens n'est pas pris en charge\n"
#: em68hc11elf.c:624 em68hc11elfb.c:624 em68hc12elf.c:624 em68hc12elfb.c:624
#, c-format
msgid ""
" --no-trampoline Do not generate the far trampolines used to call\n"
" a far function using jsr or bsr\n"
msgstr ""
" --no-trampoline Ne pas générer les trampolines lointains utilisés pour appeler\n"
" une fonction éloignée utilisant jsr ou bsr\n"
#: em68hc11elf.c:627 em68hc11elfb.c:627 em68hc12elf.c:627 em68hc12elfb.c:627
#, c-format
msgid ""
" --bank-window NAME Specify the name of the memory region describing\n"
" the layout of the memory bank window\n"
msgstr ""
" --bank-window NOM Specifie le nom de la région mémoire décrivant\n"
" l'agencement de la fenêtre de banque mémoire\n"
#: em68kelf.c:92 em68kelfnbsd.c:92
msgid "%F%P: %pB: all input objects must be ELF for --embedded-relocs\n"
msgstr "%F%P : %pB : tous les objets d'entrée doivent être ELF pour --embedded-relocs\n"
#: em68kelf.c:701 em68kelfnbsd.c:701
msgid "%P: unrecognized --got argument '%s'\n"
msgstr "%P : argument --got non reconnue\n"
#: em68kelf.c:714 em68kelfnbsd.c:714
#, c-format
msgid " --got=<type> Specify GOT handling scheme\n"
msgstr " --got=<type> Specifie le mécanisme de gestion GOT\n"
#: emmo.c:333
msgid "%X%P: internal problems scanning %pB after opening it"
msgstr "%X%P : problèmes internes lors de l'analyse de %pB après l'avoir ouvert"
#: emsp430X.c:160 emsp430elf.c:160
msgid "%P: error: unhandled data_statement size\n"
msgstr "%P : erreur : taille de data_statement non gérée\n"
#: emsp430X.c:300 emsp430elf.c:300
msgid "%P: error: no section named %s or %s in linker script\n"
msgstr "%P : erreur : pas de section nommée %s ou %s dans le script de l'éditeur de liens\n"
#: emsp430X.c:309 emsp430elf.c:309
msgid "%P: error: no section named %s in linker script\n"
msgstr "%P : erreur : pas de section dénommée %s dans le script de l'éditeur de liens\n"
#: emsp430X.c:456 emsp430elf.c:456
#, c-format
msgid ""
" --code-region={either,lower,upper,none}\n"
" Transform .text* sections to {either,lower,upper,none}.text* sections\n"
msgstr ""
" --code-region={either,lower,upper,none}\n"
" Transforme les sections .text* en sections {either,lower,upper,none}.text*\n"
#: emsp430X.c:457 emsp430elf.c:457
#, c-format
msgid ""
" --data-region={either,lower,upper,none}\n"
" Transform .data*, .rodata* and .bss* sections to\n"
" {either,lower,upper,none}.{bss,data,rodata}* sections\n"
msgstr ""
" --data-region={either,lower,upper,none}\n"
" Transforme les sections .data*, .rodata* and .bss* end\n"
" sections {either,lower,upper,none}.{bss,data,rodata}*\n"
#: emsp430X.c:458 emsp430elf.c:458
#, c-format
msgid ""
" --disable-sec-transformation\n"
" Disable transformation of .{text,data,bss,rodata}* sections to\n"
" add the {either,lower,upper,none} prefixes\n"
msgstr ""
" --disable-sec-transformation\n"
" Désactive la transformation des sections .{text,data,bss,rodata}* pour\n"
" ajouter les prefixes {either,lower,upper,none}\n"
#: emsp430X.c:477 emsp430elf.c:477
msgid "%P: --code-region requires an argument: {upper,lower,either,none}\n"
msgstr "%P : --code-region nécessite un argument : {upper,lower,either,none}\n"
#: emsp430X.c:483 emsp430elf.c:483
msgid "%P: error: unrecognized argument to --code-region= option: \"%s\"\n"
msgstr "%P : erreur : argument non reconnu pour --code-region= option : \"%s\"\n"
#: emsp430X.c:500 emsp430elf.c:500
msgid "%P: --data-region requires an argument: {upper,lower,either,none}\n"
msgstr "%P : --data-region nécessite un argument : {upper,lower,either,none}\n"
#: emsp430X.c:506 emsp430elf.c:506
msgid "%P: error: unrecognized argument to --data-region= option: \"%s\"\n"
msgstr "%P : erreur : argument non reconnu pour --data-region= option : \"%s\"\n"
#. Incompatible objects.
#: ends32belf.c:129 ends32belf16m.c:129 ends32belf_linux.c:129 ends32elf.c:129
#: ends32elf16m.c:129 ends32elf_linux.c:129
msgid "%F%P: %pB: ABI version of object files mismatched\n"
msgstr "%F%P : %pB : versions ABI des fichiers objets non concordantes\n"
#: ends32belf.c:450 ends32belf16m.c:450 ends32belf_linux.c:583 ends32elf.c:450
#: ends32elf16m.c:450 ends32elf_linux.c:583
msgid "%P: --mbaseline is not used anymore\n"
msgstr "%P : --mbaseline n'est désormais plus utilisé\n"
#: ends32belf.c:461 ends32belf16m.c:461 ends32belf_linux.c:594 ends32elf.c:461
#: ends32elf16m.c:461 ends32elf_linux.c:594
msgid "%P: --relax-[no-]reduce-fp-updat is not used anymore\n"
msgstr "%P : --relax-[no-]reduce-fp-updat n'est désormais plus utilisé\n"
#: ends32belf.c:465 ends32belf16m.c:465 ends32belf_linux.c:598 ends32elf.c:465
#: ends32elf16m.c:465 ends32elf_linux.c:598
msgid "%P: missing file for --mexport-symbols\n"
msgstr "%P : fichier manquant pour --mexport-symbols\n"
#: ends32belf.c:478 ends32belf.c:487 ends32belf16m.c:478 ends32belf16m.c:487
#: ends32belf_linux.c:611 ends32belf_linux.c:620 ends32elf.c:478
#: ends32elf.c:487 ends32elf16m.c:478 ends32elf16m.c:487 ends32elf_linux.c:611
#: ends32elf_linux.c:620
msgid "%P: valid arguments to --mhyper-relax=(low|medium|high)\n"
msgstr "%P : arguments valides de --mhyper-relax=(low|medium|high)\n"
#: ends32belf.c:507 ends32belf16m.c:507 ends32belf_linux.c:640 ends32elf.c:507
#: ends32elf16m.c:507 ends32elf_linux.c:640
#, c-format
msgid " --m[no-]fp-as-gp Disable/enable fp-as-gp relaxation\n"
msgstr " --m[no-]fp-as-gp Désactiver/activer la relaxation fp-as-gp\n"
#: ends32belf.c:509 ends32belf16m.c:509 ends32belf_linux.c:642 ends32elf.c:509
#: ends32elf16m.c:509 ends32elf_linux.c:642
#, c-format
msgid " --mexport-symbols=FILE Exporting symbols in linker script\n"
msgstr " --mexport-symbols=FILE Exporter les symboles dans le script de l'éditeur de liens\n"
#: ends32belf.c:511 ends32belf16m.c:511 ends32belf_linux.c:644 ends32elf.c:511
#: ends32elf16m.c:511 ends32elf_linux.c:644
#, c-format
msgid " --mhyper-relax=level Adjust relax level (low|medium|high). default: medium\n"
msgstr " --mhyper-relax=level Ajuster le niveau de relaxation (low|medium|high). défaut : medium\n"
#: ends32belf.c:513 ends32belf16m.c:513 ends32belf_linux.c:646 ends32elf.c:513
#: ends32elf16m.c:513 ends32elf_linux.c:646
#, c-format
msgid " --m[no-]tlsdesc-trampoline Disable/enable TLS DESC trampoline\n"
msgstr " --m[no-]tlsdesc-trampoline Désactiver/activer les trampolines TLS DESC\n"
#: epdp11.c:83
#, c-format
msgid " -N, --omagic Do not make text readonly, do not page align data (default)\n"
msgstr " -N, --omagic Ne pas mettre le texte en lecture seule, ne pas aligner les données sur les pages (défaut)\n"
#: epdp11.c:84
#, c-format
msgid " -n, --nmagic Make text readonly, align data to next page\n"
msgstr " -n, --nmagic Mettre le texte en lecture seule, aligner les données à la prochaine page\n"
#: epdp11.c:85
#, c-format
msgid " -z, --imagic Make text readonly, separate instruction and data spaces\n"
msgstr " -z, --imagic Mettre le texte en lecture seule, séparer les espaces d'instructions et de données\n"
#: epdp11.c:86
#, c-format
msgid " --no-omagic Equivalent to --nmagic\n"
msgstr " --no-omagic Équivalent à --nmagic\n"
#: etic3xcoff.c:70 etic3xcoff_onchip.c:70 etic4xcoff.c:70 etic54xcoff.c:70
#, c-format
msgid " --format 0|1|2 Specify which COFF version to use\n"
msgstr " --format 0|1|2 Précise quelle version de COFF utiliser\n"
#: etic3xcoff.c:92 etic3xcoff_onchip.c:92 etic4xcoff.c:92 etic54xcoff.c:92
msgid "%F%P: invalid COFF format version %s\n"
msgstr "%F%P : la version de format %s pour COOF est invalide\n"
|