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
|
gcc-3.3 (1:3.3.6ds1-32) unstable; urgency=medium
* Orphan the package.
-- Philipp Kern <pkern@debian.org> Wed, 12 Aug 2020 20:41:21 +0200
gcc-3.3 (1:3.3.6ds1-31) unstable; urgency=medium
* Bump debhelper compat level to 7.
-- Philipp Kern <pkern@debian.org> Sun, 12 Jul 2020 10:40:17 +0200
gcc-3.3 (1:3.3.6ds1-30) unstable; urgency=medium
* Use ucontext_t instead of struct ucontext. (Closes: #887782)
* Clarify that libstdc++5 is only still around for proprietary
binaries that cannot be recompiled in the package's description.
(Closes: #887783, #855851)
-- Philipp Kern <pkern@debian.org> Sun, 04 Feb 2018 16:11:34 +0100
gcc-3.3 (1:3.3.6ds1-29) unstable; urgency=medium
* Stop build-depending on realpath, as it has been replaced with
coreutils, which is essential. (Closes: #877815)
* Drop Marc from Uploaders. (Closes: #873347)
-- Philipp Kern <pkern@debian.org> Sat, 07 Oct 2017 22:58:20 +0200
gcc-3.3 (1:3.3.6ds1-28) unstable; urgency=medium
* Use debhelper compat level 5 instead of 2, 3, and 5. (Closes: #800267)
-- Philipp Kern <pkern@debian.org> Sun, 22 Nov 2015 20:18:09 +0000
gcc-3.3 (1:3.3.6ds1-27.2) unstable; urgency=medium
* Non-maintainer upload.
* Use a nonempty default target architecture as dpkg-architecture no
longer supports "-a" without argument. (Closes: #770352)
-- Simon Richter <sjr@debian.org> Sun, 23 Nov 2014 18:58:06 +0100
gcc-3.3 (1:3.3.6ds1-27.1) unstable; urgency=medium
* Non-maintainer upload.
* Drop all references to automake1.4 this time. (Closes: #724009)
-- Eric Dorland <eric@debian.org> Tue, 25 Feb 2014 15:42:55 -0500
gcc-3.3 (1:3.3.6ds1-27) unstable; urgency=low
* Fix compilation on i386 and powerpc by using siginfo_t instead of
struct siginfo.
-- Philipp Kern <pkern@debian.org> Sat, 16 Nov 2013 23:42:31 +0100
gcc-3.3 (1:3.3.6ds1-26) unstable; urgency=low
* Stop build-depending on automake1.4. Patch by Eric Dorland.
(Closes: #724009)
* Use debhelper compat level 5 to avoid FTBFS due to removal of
ancient compatibility levels.
-- Philipp Kern <pkern@debian.org> Wed, 13 Nov 2013 01:23:15 +0100
gcc-3.3 (1:3.3.6ds1-25) unstable; urgency=low
* Multiarch'ify libstdc++5.
Thanks to Felix Geyer <debfx-pkg@fobos.de> for the full patch!
(Closes: #636277)
* Drop lpia everywhere.
-- Philipp Kern <pkern@debian.org> Mon, 10 Oct 2011 22:26:38 +0200
gcc-3.3 (1:3.3.6ds1-24) unstable; urgency=low
* Fix FTBFS with multiarch. (Closes: #629665)
-- Philipp Kern <pkern@debian.org> Mon, 01 Aug 2011 22:53:10 +0200
gcc-3.3 (1:3.3.6ds1-23) unstable; urgency=low
* Fix FTBFS with -D_FORTIFY_SOURCE=2. (Closes: #620158)
-- Philipp Kern <pkern@debian.org> Thu, 05 May 2011 23:01:54 +0200
gcc-3.3 (1:3.3.6ds1-22) unstable; urgency=low
* Export SHELL from debian/rules.defs, to override any wrong variable
content inherited from the outside environment. (Closes: #614114)
* Drop the alternative automake build-dependency and stick to automake1.4
only.
-- Philipp Kern <pkern@debian.org> Sun, 20 Mar 2011 14:35:31 +0100
gcc-3.3 (1:3.3.6ds1-21) unstable; urgency=low
* Drop explicit build dependency on gcc-4.1. (Closes: #613660)
-- Philipp Kern <pkern@debian.org> Wed, 16 Feb 2011 23:02:56 +0100
gcc-3.3 (1:3.3.6ds1-20) unstable; urgency=low
* rules.defs: Set GFDL_INVARIANT_FREE unconditionally to `yes'.
(Closes: #586011)
-- Philipp Kern <pkern@debian.org> Sun, 20 Jun 2010 13:12:54 +0200
gcc-3.3 (1:3.3.6ds1-19) unstable; urgency=low
* New maintainer.
* Reintroduce the package into Debian unstable to be released with
Debian squeeze.
* Build with gcc-4.1 instead of gcc-3.4 because the latter is no longer
available.
* Add symbol files as generated by mole for amd64, i386 and powerpc.
* Drop lpia for missing symbol files.
-- Philipp Kern <pkern@debian.org> Thu, 25 Feb 2010 12:03:31 +0100
gcc-3.3 (1:3.3.6ds1-18) unstable; urgency=low
* Build libstdc++5 on powerpc again, needed by some JVM's.
* Remove build dependency on expect-tcl8.3 (package is not built anymore
on hppa). Closes: #472984.
-- Matthias Klose <doko@debian.org> Tue, 15 Jul 2008 21:08:10 +0200
gcc-3.3 (1:3.3.6ds1-17) unstable; urgency=low
* libstdc++5: Remove dependency on gcc-3.3-base. Closes: #473366.
-- Matthias Klose <doko@debian.org> Sun, 30 Mar 2008 10:58:08 +0200
gcc-3.3 (1:3.3.6ds1-16) unstable; urgency=low
* Don't build compiler packages from the gcc-3.3 source. The only package
built is libstdc++5 (amd64, i386).
* Build-depend on gcc-3.4 instead of gcc-3.3.
-- Matthias Klose <doko@debian.org> Sat, 29 Mar 2008 15:11:54 +0100
gcc-3.3 (1:3.3.6ds1-15) unstable; urgency=medium
* Fix biarch related build failure on s390.
* Don't build the gcc-3.3-hppa64 package on hppa.
-- Matthias Klose <doko@debian.org> Wed, 3 Jan 2007 18:51:06 +0100
gcc-3.3 (1:3.3.6ds1-14) unstable; urgency=low
* Build without GFDL licensed docs. Closes: #193787.
- debian/*.texi, debian/porting.html: Add dummy documentation.
- debian/rules.unpack, debian/rules.patch: Update for non-gfdl build.
* Don't build cpp-3.3-doc, gcc-3.3-doc, packages.
* Merge from Ubuntu:
- Backport the biarch-include patches from gcc-3.4,
adding /usr/include/<target_alias> to the standard include path.
Fixes build failure on sparc.
- Remove the multilib part from the multiarch-include patch.
* libgcc1: Provide libgcc1-TARGET-dcv1 when cross-compiling (Pjotr
Kourzanov). Closes: #357629.
-- Matthias Klose <doko@debian.org> Mon, 1 Jan 2007 16:10:47 +0100
gcc-3.3 (1:3.3.6-13) unstable; urgency=low
* Remove packages built from newer GCC versions from the control file.
* Fix duplicate provides line in control file (closes: #356898).
* Configure --with-cpu=v8 on sparc.
* Honour -fPIC on GNU/kFreeBSD (Aurelian Jarno). Closes: #339934.
* Add big-endian arm (armeb) support (Lennert Buytenhek). Closes: #331220.
-- Matthias Klose <doko@debian.org> Sat, 18 Mar 2006 15:21:03 +0100
gcc-3.3 (1:3.3.6-12) unstable; urgency=low
* Disable building the gnat-3.3 compiler (Ludvic Brenta).
-- Matthias Klose <doko@debian.org> Sat, 24 Dec 2005 01:33:44 +0000
gcc-3.3 (1:3.3.6-11) unstable; urgency=low
* Build-depend on expect-tcl8.3 on hppa.
-- Matthias Klose <doko@debian.org> Sat, 17 Sep 2005 07:46:44 +0000
gcc-3.3 (1:3.3.6-10) unstable; urgency=low
* ppc64 build fixes (Andreas Jochens). Closes: #324243.
- debian/rules.defs: add 'ppc64' to ada_no_archs (gcc-4.0 has ada
support on ppc64 but gnat-3.3 does not build with gnat-4.0).
- debian/rules2: use '--disable-multilib' for 'ppc64'
* Change section of libstdc++ libs from 'base' to 'libs'.
* Fix some lintian warnings.
-- Matthias Klose <doko@debian.org> Fri, 16 Sep 2005 08:50:11 +0200
gcc-3.3 (1:3.3.6-9) unstable; urgency=low
* Use gcc-3.3 as bootstrap compiler, fixes FTBFS on m68k.
* debian/patches/gcc-mips-update.dpatch: Fix FTBFS on mips,
backport from the 3.4 branch (Thiemo Seufer).
-- Matthias Klose <doko@debian.org> Thu, 18 Aug 2005 23:11:40 +0200
gcc-3.3 (1:3.3.6-8) unstable; urgency=low
* Disable building the f77, java, objc, pascal, treelang and ffi packages
from the gcc-3.3 source.
* Drop the build dependencies for java (xlibs-dev), pascal (libncurses5-dev,
libgmp3-dev, tetex-bin, help2man).
* Downgrade gcc-3.3-base and libstdc++5's priority to optional.
* Add patch for PR rtl-optimization/23241.
* Add support for GNU/k*BSD (Aurelien Jarno <aurel32@debian.org>).
Closes: #318929.
* Tighten the dependencies between the compiler packages to the same
version and release.
-- Matthias Klose <doko@debian.org> Sat, 13 Aug 2005 23:34:02 +0200
gcc-3.3 (1:3.3.6-7) unstable; urgency=low
* Build depend on dpkg-dev (>= 1.13.9), not dpkg (>= 1.13.7).
* Don't rely on DEB_*_GNU_* conditionals in the rules files.
* (Build-)depend on binutils (>= 2.15-7).
-- Matthias Klose <doko@debian.org> Mon, 20 Jun 2005 12:30:20 +0200
gcc-3.3 (1:3.3.6-6ubuntu1) breezy; urgency=low
* Add build dependency on dpkg (>= 1.13.7).
* On linux systems, configure for <cpu>-linux-gnu.
* Configure the hppa64 cross compiler to target hppa64-linux-gnu.
* (Build-)depend on binutils-2.16.1.
* gij-3.3: Provide an rmiregistry alternative (using rmiregistry-3.3).
* gcj-3.3: Provide an rmic alternative (using rmic-3.3).
* Do build g77-3.3 and g77-3.3-doc again, but not libg2c-dev.
-- Matthias Klose <doko@ubuntu.com> Mon, 13 Jun 2005 20:47:48 +0200
gcc-3.3 (1:3.3.6-6) unstable; urgency=low
* Disable building packages now built from the gcc-3.4 and gcc-4.0
sources.
-- Matthias Klose <doko@debian.org> Tue, 7 Jun 2005 01:24:08 +0200
gcc-3.3 (1:3.3.6-5ubuntu3) breezy; urgency=low
* Fix build failures for builds with disabled testsuite.
* Adjust debian/rules conditionals to work with all dpkg versions.
* libgcj4-dev: Don't provide libgcj-dev.
* debian/*: Remove the conditionals building from the hammer branch.
* Use <cpu>-linux as the target alias for the linux architecture,
independent of the dpkg-architecture version used for the build.
* Loosen dependencies on packages of architecture `all' to not break
binary only uploads.
* g++-3.3 provides c++abi1-dev.
-- Matthias Klose <doko@ubuntu.com> Sun, 22 May 2005 09:45:51 +0000
gcc-3.3 (1:3.3.6-5ubuntu2) breezy; urgency=low
* libgcj4-dev: Do not provide libgcj-dev.
-- Matthias Klose <doko@ubuntu.com> Wed, 18 May 2005 00:40:42 +0000
gcc-3.3 (1:3.3.6-5ubuntu1) breezy; urgency=low
* Build libg2c-dev and libg2c0 from the gcc-3.4 sources.
* Synchronise with Debian.
-- Matthias Klose <doko@ubuntu.com> Wed, 11 May 2005 13:52:19 +0200
gcc-3.3 (1:3.3.6-5) unstable; urgency=low
* Disable running the boehm-gc testsuite on hppa. Hangs the buildd's
on some builds.
* Remove the autoconf dependency for mips and mipsel, now obsolete.
Dropping the autoreconf patch.
* Call autoconf2.13 instead of autoconf after applying the patches.
* debian/rules2: Remove the bison-1.35 bits from the path.
* Replace the build dependency flex-old with flex, not needed anymore
with the updated gpc sources.
-- Matthias Klose <doko@debian.org> Wed, 11 May 2005 00:59:19 +0200
gcc-3.3 (1:3.3.6-4) unstable; urgency=medium
* Manually patch all `configure' files for libraries to use
deplibs_check_method=pass_all unconditionally for all linux architectures;
disable the autoreconf patch.
* Fix spurious range-check failure in the gpc runtime (Waldek Hebisch).
* Renable gpc on all architectures, where it was disabled before.
* Don't call dh_shlibdeps on 64bit libraries, fixing FTBFS on sparc,
which couldn't be observed before (addresses: #307625).
-- Matthias Klose <doko@debian.org> Fri, 6 May 2005 22:56:55 +0200
gcc-3.3 (1:3.3.6-3ubuntu3) breezy; urgency=low
* Fix spurious range-check failure in the gpc runtime (Waldek Hebisch).
* Renable gpc on all architectures, where it was disabled before.
-- Matthias Klose <doko@ubuntu.com> Sat, 7 May 2005 06:59:35 +0200
gcc-3.3 (1:3.3.6-3ubuntu2) breezy; urgency=low
* Regenerate control file.
-- Matthias Klose <doko@ubuntu.com> Fri, 6 May 2005 01:26:06 +0200
gcc-3.3 (1:3.3.6-3ubuntu1) breezy; urgency=low
* Synchronise with Debian
* Temporarly disable gpc on hppa and sparc.
-- Matthias Klose <doko@ubuntu.com> Thu, 5 May 2005 22:06:35 +0200
gcc-3.3 (1:3.3.6-3.0.1) unstable; urgency=low
* Binary NMU.
* Loosen dependencies for binary independent packages, so that they
can be installed without a 3.3.6 build for an architecture.
-- Matthias Klose <doko@debian.org> Fri, 6 May 2005 21:26:09 +0200
gcc-3.3 (1:3.3.6-3) unstable; urgency=low
* Fix gcc-3.3-hppa64, gij-3.3 and gcj-3.3 postinst, to not ignore errors
from update-alternatives.
* Fix gcc-3.3-hppa64, fastjar, gij-3.3 and gcj-3.3 prerm,
to not ignore errors from update-alternatives.
* Remove gcc/system.h patch from gpc patch.
-- Matthias Klose <doko@debian.org> Thu, 5 May 2005 22:04:44 +0200
gcc-3.3 (1:3.3.6-2) unstable; urgency=low
* Fix typo in build dependencies.
-- Matthias Klose <doko@debian.org> Wed, 4 May 2005 17:07:15 +0200
gcc-3.3 (1:3.3.6-1) unstable; urgency=low
* GCC 3.3.6 release.
* Updated to gpc-20050331.
-- Matthias Klose <doko@debian.org> Tue, 3 May 2005 20:01:17 +0200
gcc-3.3 (1:3.3.5-12) unstable; urgency=low
* Regenerate debian/control.
-- Matthias Klose <doko@debian.org> Sun, 13 Mar 2005 00:39:10 +0100
gcc-3.3 (1:3.3.5-11) unstable; urgency=low
* Fix build dependencies (empty []), after removing the last architecture,
which didn't build pascal.
-- Matthias Klose <doko@debian.org> Tue, 8 Mar 2005 01:56:57 +0100
gcc-3.3 (1:3.3.5-10) unstable; urgency=high
* Include {,e,p,x}mmintrin.h headers for amd64 as well.
* Fix fallout from NetBSD patch, build using --enable-__cxa_atexit.
-- Matthias Klose <doko@debian.org> Mon, 7 Mar 2005 22:02:02 +0100
gcc-3.3 (1:3.3.5-9) unstable; urgency=medium
* Add two m68k specfic patches concerning wrong code
generation (Richard Zidlicky).
* Update to gcc-3_3-branch CVS 20050304.
- PR middle-end/19697, hppa64 specific fix.
- libstdc++ backport from mainline (include/bits/istream.tcc)
-- Matthias Klose <doko@debian.org> Fri, 4 Mar 2005 01:15:45 +0100
gcc-3.3 (1:3.3.5-8.0nienna1) unstable; urgency=low
* NMU (porting, sourceful)
* NetBSD libc 2.0 includes __cxa_atexit support.
* NetBSD ports now use a shared libgcc.
* NetBSD ports now build libffi.
* NetBSD ports now build pascal.
* NetBSD ports now build java.
* Adjust LINK_SPEC on NetBSD ports to support -symbolic properly.
-- Joel Aelwyn <fenton@debian.org> Tue, 22 Feb 2005 18:59:49 +0000
gcc-3.3 (1:3.3.5-8) unstable; urgency=medium
* Loosen dependency of libgcj-common on gcc-3.3-base. gettext (a gcc-3.3
build dependency) started to depend on gcj, so gcc-3.3 must be buildable
with the new binary-all and the previous binary-any packages, or else
the buildd's will fail.
* Update to gcc-3_3-branch CVS 20050130.
-- Matthias Klose <doko@debian.org> Sun, 30 Jan 2005 18:32:34 +0100
gcc-3.3 (1:3.3.5-7) unstable; urgency=low
* Build-depend on graphviz (moved to main), remove the pregenerated
libstdc++ docs from the diff.
* Remove the hammer-branch patch, not used in the past.
* Update to gcc-3_3-branch CVS 20050127.
- Fixes PR17565 (wrong-code on mips).
- Fixes PR19296 (wrong code generation). Closes: #288721.
-- Matthias Klose <doko@debian.org> Thu, 27 Jan 2005 22:49:08 +0100
gcc-3.3 (1:3.3.5-6) unstable; urgency=low
* Fix PR10692, wrong code generation on m68k (closes: #187564).
* Fix PR18987, wrong code generation on ia64 (closes: #286840).
* Update to gcc-3_3-branch CVS 20050107.
* Update cross build patches (Nikita V. Youshchenko).
* Add debian/patches/pie.dpatch: GCC Position Independent Executables patch.
Not applied by default (Lorenzo Hernandez Garcia-Hierro).
-- Matthias Klose <doko@debian.org> Fri, 7 Jan 2005 06:47:45 +0100
gcc-3.3 (1:3.3.5-5) unstable; urgency=medium
* Add build dependency on libatomic-ops-dev [ia64].
* Tighten libunwind build dependency / dependency on ia64.
* On ia64, configure --with-system-libunwind.
* Update to gcc-3_3-branch CVS 20041219.
- Fix ICE on m68k, PR18590. Closes: #262658.
-- Matthias Klose <doko@debian.org> Sun, 19 Dec 2004 14:27:43 +0100
gcc-3.3 (1:3.3.5-4) unstable; urgency=medium
* Backport patches for libunwind based exception support on ia64
from the gcc-3.4 branch (PR14925, PR17684, PR18153, PR18380, PR18508).
* Fix ia64-unwind patch to include unwind-sjlj.c, unwind-c.c in libgcc_eh.a.
Addresses: #284583.
* Update to gcc-3_3-branch CVS 20041214 to fix wrong-code generation bugs
on some targets.
* Update cross build patches (Nikita V. Youshchenko).
-- Matthias Klose <doko@debian.org> Tue, 14 Dec 2004 16:48:18 +0000
gcc-3.3 (1:3.3.5-3) unstable; urgency=medium
* On ia64-linux, configure using --enable-libunwind-exceptions, add
ia64-unwind patch by David Mosberger. Closes: #278835.
Add build dependency on libunwind7-dev (>= 0.98.3-1.1) [ia64],
add libunwind7-dev dependency on gcc-3.3.
* Tighten binutils dependency.
* Fix atomic stdc++ operations are broken on some MIPS machines. Patch
by Thiemo Seufer. Closes: #278379.
* Fix example for locale name in docs (closes: #277833).
* Update to gcc-3_3-branch CVS 20041204.
- Applies patch to fix PR 14838, ICE on hppa. Closes: #272673.
- Fix PR 18577, wrong code generation.
-- Matthias Klose <doko@debian.org> Tue, 30 Nov 2004 06:59:42 +0100
gcc-3.3 (1:3.3.5-2) unstable; urgency=low
* Tightened dependencies on the gcc-3.3-base package.
* Move libstdc++ upstream changelog into a subdirectory, as it is
done in the gcc-3.4 package. Avoids apt-listchanges confusion.
Closes: #161325, #203402.
* Post-3.3.5 update to fix PR14454: C++ code using virtual vararg methods
in the context of multiple inheritance will fail on the SPARC.
-- Matthias Klose <doko@debian.org> Fri, 22 Oct 2004 19:11:52 +0200
gcc-3.3 (1:3.3.5-1) unstable; urgency=medium
* Final gcc-3.3.5 release.
* alpha-update.dpatch: Two post-3.3.5 updates for alpha-linux.
* Update cross build patches (Nikita V. Youshchenko).
-- Matthias Klose <doko@debian.org> Sat, 2 Oct 2004 08:17:26 +0200
gcc-3.3 (1:3.3.4-13) unstable; urgency=low
* gcc-3.3.5 second prerelease, updated to 20040926.
- Fix gcc not terminating compilation of some files at -O2.
Closes: #269209.
-- Matthias Klose <doko@debian.org> Sun, 26 Sep 2004 11:34:03 +0200
gcc-3.3 (1:3.3.4-12) unstable; urgency=low
* gcc-3.3.5 second prerelease (20040919).
- fixing kernel miscompilation on ia64.
* libgcj4-dev: Add conflict to libgcj0 (closes: #251494).
-- Matthias Klose <doko@debian.org> Sun, 19 Sep 2004 14:11:47 +0200
gcc-3.3 (1:3.3.4-11) unstable; urgency=medium
* Tighten binutils build-dependency/dependency to (>= 2.15-2).
* Update to gcc-3_3-branch CVS 20040827:
- Fix bootstrap error on alpha-linux with default GNATLIBCFLAGS.
- Fix references in cpp-3.3(1) and gcc-3.3(1) manpages (closes: #267656).
- Remove duplicate -fbranch-probabilities entry in gcc docs.
Closes: #267426.
* Update to cross build files (Nikita V. Youshchenko).
* Correctly normalize pathes in .la and .lai files (closes: #268929).
* Fix archive name in stack protector patch (closes: #269522).
-- Matthias Klose <doko@debian.org> Wed, 1 Sep 2004 23:07:41 +0200
gcc-3.3 (1:3.3.4-9) unstable; urgency=high
* Tighten binutils build-dependency/dependency to (>= 2.15).
Closes: #263426.
* Tighten glibc dependency, needed at least for m68k to avoid
regressions with new binutils.
* Fix typo for libgcj-awt suggestions (closes: #261563).
* Update i386-mtune patch to fix regressions (James Troup).
* Reenable the testsuite.
* For gcj-3.3 add a dependency on libgcj4-common (closes: #265522).
* Fix libgcj4-common doc dir symlink (closes: #265649).
-- Matthias Klose <doko@debian.org> Fri, 13 Aug 2004 12:53:36 +0200
gcc-3.3 (1:3.3.4-6sarge1) testing-proposed-updates; urgency=high
* Upload to testing-proposed-updates to avoid the dependency on
binutils-2.15.
* Fix build failure in libffi on hppa with binutils-2.15.
* Update to gcc-3_3-branch CVS 20040804. Updates:
- Fix build failure using bash-3.0 as Bourne compatible shell.
- S390 update (backport of strcmp fixes).
-- Matthias Klose <doko@debian.org> Wed, 4 Aug 2004 22:33:02 +0200
gcc-3.3 (1:3.3.4-7) unstable; urgency=high
* Fix build failure for the hppa cross compiler.
* The gpc testsuite on mips doesn't produce enough test failures
to keep the buildd running on slow machines. Add some dummy output.
* Fix build failure using bash-3.0 as Bourne compatible shell.
* Disable the testsuite, locales is currently not installable while
libc and libc-dev are out of date on many architectures.
-- Matthias Klose <doko@debian.org> Sun, 1 Aug 2004 09:30:34 +0200
gcc-3.3 (1:3.3.4-6) unstable; urgency=high
* Fix FTBFS on sparc and s390, leftover from the multiarch merge.
* Update to gcc-3_3-branch CVS 20040728. Remove patches applied upstream.
- libstdc++-v3 LSB 2.0 conformance updates.
* Update gpc driver to recognize new specs options, fixing about 1200
test suite failures on mips/mipsel.
-- Matthias Klose <doko@debian.org> Wed, 28 Jul 2004 07:39:44 +0200
gcc-3.3 (1:3.3.4-5) unstable; urgency=high
* Fix libstdc++.so symlink (closes: #260514).
-- Matthias Klose <doko@debian.org> Wed, 21 Jul 2004 09:02:05 +0200
gcc-3.3 (1:3.3.4-4) unstable; urgency=medium
* Disable the libgcc1 package for all architectures except hppa and m68k.
Built from the gcc-3.4 source.
* Build fastjar from gcc-3.4 source.
* Update to gcc-3_3-branch CVS 20040710.
* Integrate multiarch support by Tollef Heen.
* Update libobjc to the version found in the 3.4.1 release.
* Adjust priorities, when gcc-3.3 is not built as the default compiler.
* Build libg2c0-dev package for coexistance of g77-3.3 and g77-3.4.
* Split libgcj into libgcj4, libgcj4-common (jar file), libgcj4-awt (AWT
peers).
* Update stack protector patch to 3.3.2-2 (not applied by default).
* Apply fixes for cross build (Nikita V. Youshchenko).
-- Matthias Klose <doko@debian.org> Sat, 17 Jul 2004 08:24:54 +0200
gcc-3.3 (1:3.3.4-3) unstable; urgency=medium
* Update to gcc-3_3-branch CVS 20040707.
* Really fix build logic to build libffi on mips/mipsel.
* For alpha-linux set GNATLIBCFLAGS to "-g -O".
* Fix PR14700, ICE with global registers (closes: #239569).
* Replace /usr/lib/. with /usr/lib in .la files (closes: #257240).
* Fixes for generating cross compiler packages (Jeff Bailey).
Closes: #257475.
* Update libf2c to the version found in the 3.4.1 release.
-- Matthias Klose <doko@debian.org> Wed, 7 Jul 2004 23:59:42 +0200
gcc-3.3 (1:3.3.4-2) unstable; urgency=low
* debian/patches/pr14782.dpatch:
Fix PR14782, unaligned data access at -O2 on parisc64 (closes: #253883).
* On alpha-linux build gnatlib with CFLAGS set to -O1 to work around
bootstrap failure.
* Enable gnat on amd64 (closes: #252699, 252742).
* Update Hurd patch (Jeff Bailey). Closes: #255107.
* Don't use gcc-2.95 as bootstrap compiler on m68k anymore.
* Fix build logic to build libffi on mips/mipsel.
-- Matthias Klose <doko@debian.org> Sat, 26 Jun 2004 08:07:18 +0200
gcc-3.3 (1:3.3.4-1) unstable; urgency=medium
* Final 3.3.4 release.
- Fix ICE building the kernel on sparc (closes: #250899).
* Build libstdc++-dbg package for powerpc as well.
* Build the shared libs passing -O1 to the linker.
* Apply fixes for cross build (Nikita V. Youshchenko).
-- Matthias Klose <doko@debian.org> Mon, 31 May 2004 22:09:51 -0300
gcc-3.3 (1:3.3.3ds7-9) unstable; urgency=medium
* Fix build failure on s390, removing an absolete patch.
* Finally fix FTBFS for libstdc++-doc (finally closes: #248216).
* Fix FTBFS for gpc on powerpc.
* Add missing doc-base files to -doc packages.
-- Matthias Klose <doko@debian.org> Sun, 23 May 2004 13:05:29 +0200
gcc-3.3 (1:3.3.3ds7-8) unstable; urgency=low
* Update to gcc-3_3-branch CVS 20040517 (first 3.3.4 prerelease).
- Adds missing exception clause in libstdc++-v3's source files.
* Update to gpc-20040516 beta release.
* debian/copyright: Add libstdc++-v3's exception clause (closes: #247204).
* Fix FTBFS for libstdc++-doc (closes: #248216).
* Reference Debian specific bug reporting instructions (closes: #247345).
* Update README.Bugs.
* On amd64-linux, configure --without-multilib, disable Ada.
* Update stack protector patch to 3.3.2-1 (not applied by default).
-- Matthias Klose <doko@debian.org> Tue, 18 May 2004 00:01:14 +0200
gcc-3.3 (1:3.3.3ds6-7) unstable; urgency=low
* Update to gcc-3_3-branch CVS 20040429.
- Fix PR14235, ICE in verify_local_live_at start.
- Remove patches integrated upstream.
* Update sparc64-build patch, fixing FTBFS.
* Do not provide the /usr/hppa64-linux/include in the gcc-hppa64 package,
migrated to libc6-dev. Adjust dependencies.
* Integrate gpc test results into the GCC test summary.
* Update generation of locales needed for testsuites.
* gnatchop calls gcc-3.3.
* Correctly #define ffi_type_[us]long on 32bit archs (closes: #217541).
-- Matthias Klose <doko@debian.org> Thu, 29 Apr 2004 06:56:52 +0200
gcc-3.3 (1:3.3.3ds6-6) unstable; urgency=medium
* Update to gcc-3_3-branch CVS 20040401.
- Fixed ICE in emit_move_insn_1 on legal code (closed: #223215).
- Fix PR 14755, miscompilation of loops with bitfield counter.
Closes: #241255.
- Fix PR 16040, crash in function initializing const data with
reinterpret_cast-ed pointer-to-member function crashes (closes: #238621).
- Remove patches integrated upstream.
* Reenable build of gpidump on powerpc and s390.
-- Matthias Klose <doko@debian.org> Thu, 1 Apr 2004 23:51:54 +0200
gcc-3.3 (1:3.3.3ds6-5) unstable; urgency=medium
* Update to gcc-3_3-branch CVS 20040321.
- Fix PR target/13889 (ICE on valid code on m68k).
* Fix FTFBS on s390. Do not build gpc's gpidump on s390.
* Reenable gpc on arm.
-- Matthias Klose <doko@debian.org> Mon, 22 Mar 2004 07:37:26 +0100
gcc-3.3 (1:3.3.3ds6-4) unstable; urgency=low
* Update to gcc-3_3-branch CVS 20040320.
- Revert patch for PR14640 (with this, at least mozilla-firefox was
miscompiled on x86 (closes: #238621).
* Update the gpc tarball (there were two releases with the same name ...).
* Reenable gpc on alpha and ia64.
-- Matthias Klose <doko@debian.org> Sat, 20 Mar 2004 07:39:24 +0100
gcc-3.3 (1:3.3.3ds5-3) unstable; urgency=low
* Update to gcc-3_3-branch CVS 20040314.
- Fixes miscompilation with -O -funroll-loops on powerpc (closes: #229567).
- Fix ICE in dwarf-2 on code using altivec (closes: #203835).
* Update hurd-changes patch.
* Add libgcj4-dev as a recommendation for gcj (closes: #236547).
* debian/copyright: Added exemption to static linking of libgcc.
* Phil Blundell:
- debian/patches/arm-ldm.dpatch, debian/patches/arm-gotoff.dpatch: Update.
-- Matthias Klose <doko@debian.org> Sun, 14 Mar 2004 09:56:06 +0100
gcc-3.3 (1:3.3.3ds5-2) unstable; urgency=low
* Update to gcc-3_3-branch CVS 20040306.
- Fixes bootstrap comparision error on ia64.
- Allows ghc build with gcc-3.3.
- On amd64, don't imply 3DNow! for -m64 by default.
- Some arm specific changes
- Fix C++/13944: exception in constructor of a class to be thrown is not
caught. Closes: #228099.
* Enable the build of gcc-3.3-hppa64 on hppa.
Add symlinks for as and ld to point to hppa64-linux-{as,ld}.
* gcj-3.3 depends on g++-3.3, recommends gij-3.3. gij-3.3 suggests gcj-3.3.
* Fix libgc2c-pic compatibility links (closes: #234333).
The link will be removed for gcc-3.4.
* g77-3.3: Conflict with other g77-x.y packages.
* Tighten shlibs dependencies to latest released versions.
* Phil Blundell:
- debian/patches/arm-233633.dpatch: New Fixes problems with half-word
loads on ARMv3 architecture. (Closes: #233633)
- debian/patches/arm-ldm.dpatch: New. Avoids inefficient epilogue for
leaf functions in PIC code on ARM.
-- Matthias Klose <doko@debian.org> Sat, 6 Mar 2004 10:57:14 +0100
gcc-3.3 (1:3.3.3ds5-1) unstable; urgency=medium
* gcc-3.3.3 final release.
See /usr/share/doc/gcc-3.3/NEWS.{gcc,html}.
-- Matthias Klose <doko@debian.org> Mon, 16 Feb 2004 08:59:52 +0100
gcc-3.3 (1:3.3.3ds4-0pre4) unstable; urgency=low
* Update to gcc-3.3.3 CVS 20040214 (2nd gcc-3.3.3 prerelease).
* Fix title of libstdc++'s html main index (closes: #196381).
* Move libg2c libraray files out of the gcc specific libdir to /usr/lib.
For g77-3.3 add conflicts to other g77 packages. Closes: #224848.
* Update the stack protector patch to 3.3-7, but don't apply it by default.
Closes: #230338.
* On arm, use arm6 as the cpu default (backport from mainline, PR12527).
* Add libffi and libjava support for hppa (Randolph Chung). Closes: #232615.
-- Matthias Klose <doko@debian.org> Sat, 14 Feb 2004 09:26:15 +0100
gcc-3.3 (1:3.3.3ds3-0pre3) unstable; urgency=low
* Update to gcc-3.3.3 CVS 20040125.
- Fixed PR11350, undefined labels with -Os -fPIC (closes: #195911).
- Fixed PR11793, ICE in extract_insn, at recog.c (closes: #203835).
- Fixed PR13544, removed backport for PR12862.
- Integrated backport for PR12441.
* Fixed since 3.3: java: not implemented interface methods of abstract
classes not found (closes: #225438).
* Disable pascal on arm architecture (currently broken).
* Update the build files to build a cross compiler (Nikita V. Youshchenko).
See debian/README.cross in the source package.
* Apply revised patch to make -mieee the default on alpha-linux,
and add -mieee-disable switch to turn the default off (closes: #212912).
(Tyson Whitehead)
-- Matthias Klose <doko@debian.org> Sun, 25 Jan 2004 17:41:04 +0100
gcc-3.3 (1:3.3.3ds2-0pre2) unstable; urgency=medium
* Update to gcc-3.3.3 CVS 20040110.
- Fixes compilation not terminating at -O1 on hppa (closes: #207516).
* Add backport to fix PR12441 (closes: #224576).
* Revert backport to 3.3 branch to fix PR12862, which introduced another
regression (PR13544). Closes: #225663.
* Tighten dependency of gnat-3.3 on gcc-3.3 (closes: #226273).
* Disable treelang build for cross compiler build.
* Disable pascal on alpha and ia64 architectures (currently broken).
-- Matthias Klose <doko@debian.org> Sat, 10 Jan 2004 12:33:59 +0100
gcc-3.3 (1:3.3.3ds1-0pre1) unstable; urgency=low
* Update to gcc-3.3.3 CVS 20031229.
- Fixes bootstrap error on ia64-linux.
- Fix -pthread on mips{,el}-linux (closes: #224875).
- Fix -Wformat for C++ (closes: #217075).
* Backport from mainline: Preserve inline-ness when redeclaring
a function template (closes: #195264).
* Add missing intrinsics headers on ix86 (closes: #224593).
* Fix location of libg2c libdir in libg2c.la file (closes: #224848).
-- Matthias Klose <doko@debian.org> Mon, 29 Dec 2003 10:36:29 +0100
gcc-3.3 (1:3.3.3ds0-0pre0.1) unstable; urgency=high
* NMU
* Fixed mips(el) spec file for -pthread: (Closes: #224875)
* [debian/patches/mips-pthread.dpatch] New.
* [debian/rules.patch] Added it to debian_patches.
-- J.H.M. Dassen (Ray) <jdassen@debian.org> Sat, 27 Dec 2003 15:51:47 +0100
gcc-3.3 (1:3.3.3ds0-0pre0) unstable; urgency=low
* Update to gcc-3.3.3 CVS 20031206.
- Fixes ICE in verify_local_live_at_start (hppa). Closes: #201550.
- Fixes miscompilation of linux-2.6/sound/core/oss/rate.c.
Closes: #219949.
* Add missing unwind.h to gcc package (closes: #220846).
* Regenerate control file to fix build dependencies for m68k.
* More gpc only patches to fix test failures on m68k.
* Reenable gpc for the Hurd (closes: #189851).
-- Matthias Klose <doko@debian.org> Sat, 6 Dec 2003 10:29:07 +0100
gcc-3.3 (1:3.3.2ds5-4) unstable; urgency=low
* Update libffi-dev package description (closes: #219508).
* For gij and libgcj fix dependency on the libstdc++ package, if
the latter isn't installed during the build.
* Apply patch to emit .note.GNU-stack section on linux arches
which by default need executable stack.
* Prefer gnat-3.3 over gnat-3.2 as a build dependency.
* Update the pascal tarball (different version released with the
same name).
* Add pascal patches to address various gpc testsuite failures.
On alpha and ia64, build gpc from the 20030830 version. Reenable
the build on m68k.
Remove the 20030507 gpc version from the tarball.
* Apply patch to build the shared ada libs and link the ada tools
against the shared libs. Not enabled by default, because gnat
and gnatlib are rebuilt during install. (Ludovic Brenta)
-- Matthias Klose <doko@debian.org> Sun, 9 Nov 2003 22:34:33 +0100
gcc-3.3 (1:3.3.2ds4-3) unstable; urgency=low
* Fix rules to omit inclusion of gnatpsta in mips(el) gnat package.
-- Matthias Klose <doko@debian.org> Sun, 2 Nov 2003 14:29:59 +0100
gcc-3.3 (1:3.3.2ds4-2) unstable; urgency=medium
* s390-ifcvt patch added. Fixes gcl miscompilation (closes: #217240).
(Gerhard Tonn)
* Fix an infinite loop in g++ compiling lufs, regression from 3.3.1.
* Fix a wrong code generation bug on alpha.
(Falk Hueffner)
* Update NEWS files.
* Add Falk Hueffner to the Debian GCC maintainers.
* Enable ada on mips and mipsel, but don't build the gnatpsta tool.
-- Matthias Klose <doko@debian.org> Wed, 29 Oct 2003 00:12:37 +0100
gcc-3.3 (1:3.3.2ds4-1) unstable; urgency=medium
* Update to gcc-3.3.2.
* Update NEWS files.
* Miscompilation in the pari package at -O3 fixed (closes: #198172).
* On alpha-linux, revert -mieee as the default (Falk Hueffner).
Reopens: #212912.
* Add ia64-unwind patch (Jeff Bailey).
* Closed reports reported against gcc-2.96 (ia64), fixed at least in gcc-3.3:
- ICE in verify_local_live_at_start, at flow.c:2733 (closes: #135404).
- Compilation failure of stlport (closes: #135224).
- Infinite loop compiling cssc's pfile.cc with -O2 (closes: #115390).
- Added missing some string::compare() members (closes: #141199).
- <cmath> header declares std::pow (closes: #161853).
- <vector> does have at() method (closes: #59776).
- Fixed error in stl_deque.h (closes: #69530).
- Fixed problem with bastring (closes: #75759, #96539).
- bad_alloc and std:: namespace problem (closes: #75120).
- Excessive warnings from headers with -Weffc++ (closes: #76827).
-- Matthias Klose <doko@debian.org> Fri, 17 Oct 2003 08:07:01 +0200
gcc-3.3 (1:3.3.2ds3-0pre5) unstable; urgency=low
* Update to gcc-3.3.2 CVS 20031005.
- Fixes cpp inserting a spurious newline (closes: #210478, #210482).
- Fixes generation of unrecognizable insn compiling kernel source
on alpha (closes: #202762).
- Fixes ICE in add_abstract_origin_attribute (closes: #212406).
- Fixes forward declaration in libstdc++ (closes: #209386).
- Fixes ICE in in extract_insn, at recog.c on alpha (closes: #207564).
* Make libgcj-common architecture all (closes: #211909).
* Build depend on: flex-old | flex (<< 2.5.31).
* Fix spec linking libraries with -pthread on powerpc (closes: #211054).
* debian/patches/arm-gotoff.dpatch: fix two kinds of PIC lossage.
(Phil Blundell)
* debian/patches/arm-common.dpatch: fix excessive alignment of common
blocks causing binutils testsuite failures.
(Phil Blundell)
* Update priorities in debian/control to match the archive.
(Ryan Murray)
* s390-nonlocal-goto patch added. Fixes some pascal testcase failures.
(Gerhard Tonn)
* On alpha-linux, make -mieee default and add -mieee-disable switch
to turn default off (closes: #212912).
(Tyson Whitehead)
* Add gpc upstream patch for memory corruption fix.
-- Matthias Klose <doko@debian.org> Sun, 5 Oct 2003 19:53:49 +0200
gcc-3.3 (1:3.3.2ds2-0pre4) unstable; urgency=low
* Add gcc-unsharing_lhs patch (closes: #210848)
-- Ryan Murray <rmurray@debian.org> Fri, 19 Sep 2003 22:51:19 -0600
gcc-3.3 (1:3.3.2ds2-0pre3) unstable; urgency=low
* Update to gcc-3.3.2 CVS 20030908.
* PR11716 (Michael Eager, Dan Jacobowitz):
Make GCC think that the maximum length of a short branch is
64K instead of 128K. It's a big hammer, but it works.
Closes: #207915.
* Downgrade gpc to 20030507 on alpha and ia64 (closes: #208717).
-- Matthias Klose <doko@debian.org> Mon, 8 Sep 2003 21:49:52 +0200
gcc-3.3 (1:3.3.2ds1-0pre2) unstable; urgency=low
* Update to gcc-3.3.2 CVS 20030831.
- Fix java NullPointerException detection with 2.6 kernels.
Closes: #206377.
- Fix bug in C++ typedef handling (closes: #205402).
- Fix -Wunreachable-code giving false complaints (closes: #196600).
* Update to gpc-20030830.
* Don't include /usr/share/java/repository into the class path according
to the new version of th Debian Java policy (closes: #205643).
* Build-Depend/Depend on libgc-dev.
-- Matthias Klose <doko@debian.org> Sun, 31 Aug 2003 08:56:53 +0200
gcc-3.3 (1:3.3.2ds0-0pre1) unstable; urgency=low
* Remove the build dependency on locales for now.
-- Matthias Klose <doko@debian.org> Fri, 15 Aug 2003 07:48:18 +0200
gcc-3.3 (1:3.3.2ds0-0pre0) unstable; urgency=medium
* Update to gcc-3.3.2 CVS 20030812.
- Fixes generation of wrong code for XDM-AUTHORIZATION-1 key generation
and/or validation. Closes: #196090.
* Update NEWS files.
* Change ix86 default CPU type for code generation:
- i386-linux -> i486-linux
- i386-gnu -> i586-gnu
- i386-freebsd-gnu -> i486-freebsd-gnu
Use -march=i386 to target i386 CPUs.
-- Matthias Klose <doko@debian.org> Tue, 12 Aug 2003 10:31:28 +0200
gcc-3.3 (1:3.3.1ds3-1) unstable; urgency=low
* gcc-3.3.1 (taken from CVS 20030805).
- C++: Fix declaration conflicts (closes: #203351).
- Fix ICE on ia64 (closes: #203840).
-- Matthias Klose <doko@debian.org> Tue, 5 Aug 2003 20:38:02 +0200
gcc-3.3 (1:3.3.1ds2-0rc2) unstable; urgency=low
* Update to gcc-3.3.1 CVS 20030728.
- Fix ICE in extract_insn, at recog.c:2148 on m68k.
Closes: #177840, #180375, #190818.
- Fix ICE while building libquicktime on alpha (closes: #192576).
- Fix failure to deal with using and private inheritance (closes: #202696).
* On sparc, /usr/lib was added to the library search path. Fix it.
* Closed reports reported against gcc-3.2.x and fixed in gcc-3.3:
- Fix error building the gcl package on arm (closes: #199835).
-- Matthias Klose <doko@debian.org> Mon, 28 Jul 2003 20:39:07 +0200
gcc-3.3 (1:3.3.1ds1-0rc1) unstable; urgency=low
* Update to gcc-3.3.1 CVS 20030722 (3.3.1 release candidate 1).
- Fix ICE in copy_to_mode_reg on 64-bit targets (closes: #189365).
- Remove documentation about multi-line strings (closes: #194391).
- Correctly document -falign-* parameters (closes: #198269).
- out-of-class specialization of a private nested template class.
Closes: #193830.
- Tighten shlibs dependency due to new symbols in libgcc.
* README.Debian for libg2c0, describing the need for g77-x.y when
working with the g2c header and library (closes: #189059).
* Call make with -j<number of CPU's>, if USE_NJOBS is set and non-empty
in the environment.
* Add another two m68k patches, partly replacing the workarounds provided
by Roman Zippel.
* Add the stack protector patch, but don't apply it by default. Edit
debian/rules.patch to apply it (closes: #171699, #189494).
* Remove wrong symlinks from gnat package (closes: #201882).
* Closed reports reported against gcc-2.95 and fixed in newer versions:
- SMP kernel compilation on alpha (closes: #134197, #146883).
- ICE on arm while building imagemagick (closes: #173475).
* Closed reports reported against gcc-3.2.x and fixed in gcc-3.3:
- Miscompilation of octave2.1 on hppa (closes: #192296, #193804).
-- Matthias Klose <doko@debian.org> Sun, 13 Jul 2003 10:26:30 +0200
gcc-3.3 (1:3.3.1ds0-0pre0) unstable; urgency=medium
* Update to gcc-3.3.1 CVS 20030626.
- Fix ICE on arm compiling xfree86 (closes: #195424).
- Fix ICE on arm compiling fftw (closes: #186185).
- Fix ICE on arm in change_address_1, affecting a few packages.
Closes: #197099.
- Fix ICE in merge_assigned_reloads building Linux 2.4.2x sched.c.
Closes: #195237.
- Do not warn about failing to inline functions declared in system headers.
Closes: #193049.
- Fix ICE on mips{,el} in propagate_one_insn (closes: #194330, #196091).
- Fix ICE on m68k in reg_overlap_mentioned_p (closes: #194749).
- Build crtbeginT.o on m68k (closes: #197613).
* Fix g++ man page symlink (closes: #196271).
* mips/mipsel: Depend on binutils (>= 2.14.90.0.4). Closes: #196744.
* Disable treelang on powerpc (again). Closes: #196915.
* Pass -encoding in gcj-wrapper.
-- Matthias Klose <doko@debian.org> Fri, 27 Jun 2003 00:14:43 +0200
gcc-3.3 (1:3.3ds9-3) unstable; urgency=low
* Closing more reports, fixed in 3.2/3.3:
- ICE building texmacs on m68k (closes: #177433).
- libstdc++: <cmath> doesn't define trunc(...) (closes: #105285).
- libstdc++: setw is ignored for strings output (closes: #52382, #76645).
* Add build support to omit the manual pages and info docs from the
packages, disabled by default. Wait for a Debian statement, which can
be cited. Adresses: #193787.
* Reenable the m68k-const patch, don't run the g77 testsuite on m68k.
Addresses ICEs (#177840, #190818).
* Update arm-xscale patch.
* libstdc++: use __attribute__(__unknown__), instead of (unknown).
Closes: #195796.
* Build-Depend on glibc (>= 2.3.1) to prevent incorrect builds on woody.
Request from Adrian Bunk.
* Add treelang-update patch (Tim Josling), reenable treelang on powerpc.
* Add <GNU_TYPE>-{cpp,gcc,g++,gcj,g77} symlinks (addresses: #189466).
* Make sure not to build using binutils-2.14.90.0.[12].
-- Matthias Klose <doko@debian.org> Mon, 2 Jun 2003 22:35:45 +0200
gcc-3.3 (1:3.3ds9-2) unstable; urgency=medium
* Correct autoconf-related snafu in newly added ARM patches (Phil Blundell).
* Correct libgcc1 dependency (closes: #193689).
* Work around ldd/dpkg-shlibs failure on s390x.
-- Matthias Klose <doko@debian.org> Sun, 18 May 2003 09:40:15 +0200
gcc-3.3 (1:3.3ds9-1) unstable; urgency=low
* gcc-3.3 final release.
See /usr/share/doc/gcc-3.3/NEWS.{gcc,html}.
* First merge of i386/x86-64 biarch support (Arnd Bergmann).
Disabled by default. Closes: #190066.
* New gpc-20030507 version.
* Upstream gpc update to fix netbsd build failure (closes: #191407).
* Add arm-xscale.dpatch, arm-10730.dpatch, arm-tune.dpatch, copied
from gcc-3.2 (Phil Blundell).
* Closing bug reports reported against older gcc versions (some of them
still present in Debian, but not anymore as the default compiler).
Usually, forwarded bug reports are linked to
http://gcc.gnu.org/PR<upstream bug number>
The upstream bug number usually can be found in the Debian reports.
* Closed reports reported against gcc-3.1.x, gcc-3.2.x and fixed in gcc-3.3:
- General:
+ GCC accepts multi-line strings without \ or " " &c (closes: #2910).
+ -print-file-name sometimes fails (closes: #161615).
+ ICE: reporting routines re-entered (closes: #179597, #180937).
+ Misplaced paragraph in gcc documentation (closes: #179363).
+ Error: suffix or operands invalid for `div' (closes: #150558).
+ builtin memcmp() could be optimised (closes: #85535).
- Ada:
+ Preelaborate, exceptions, and -gnatN (closes: #181679).
- C:
+ Duplicate loop conditions even with -Os (closes: #94701).
+ ICE (signal 11) (closes: #65686).
- C++:
+ C++ error on virtual function which uses ... (closes: #165829).
+ ICE when warning about cleanup nastiness in switch statements
(closes: #184108).
+ Fails to compile virtual inheritance with variable number of
argument method (closes: #151357).
+ xmmintrin.h broken for c++ (closes: #168310).
+ Stack corruption with variable-length automatic arrays and virtual
destructors (closes: #188527).
+ ICE on illegal code (closes: #184862).
+ _attribute__((unused)) is ignored in C++ (closes: #45440).
+ g++ handles &(void *)foo bizzarely (closes: #79225).
+ ICE (with wrong code, though) (closes: #81122).
- Java:
+ Broken zip file handling (closes: #180567).
- ObjC:
+ @protocol forward definitions do not work (closes: #80468).
- Architecture specific:
- alpha
+ va_start is off by one (closes: #186139).
+ ICE while building kseg/ddd (closes: #184753).
+ g++ -O2 optimization error (closes: #70743).
- arm
+ ICE with -O2 in change_address_1 (closes: #180750).
+ gcc optimization error with -O2, affecting bison (closes: #185903).
- hppa
+ ICE in insn_default_length (closes: #186447).
- ia64
+ gcc-3.2 fails w/ optimization (closes: #178830).
- i386
+ unnecessary generation of instruction cwtl (closes: #95318).
+ {athlon} ICE building mplayer (closes: #184800).
+ {pentium4} ICE while compiling mozilla with -march=pentium4
(closes: #187910).
+ i386 optimisation: joining tests (closes: #105309).
- m68k
+ ICE in instantiate_virtual_regs_1 (closes: #180493).
+ gcc optimizer bug on m68k (closes: #64832).
- powerpc
+ ICE in extract_insn, at recog.c:2175 building php3 (closes: #186299).
+ ICE with -O -Wunreachable-code (closes: #189702).
- s390
+ Operand out of range at assembly time when using -O2
(closes: #178596).
- sparc
+ gcc-3.2 regression (wrong code) (closes: #176387).
+ ICE in mem_loc_descriptor when optimizing (closes: #178909).
+ ICE in gen_reg_rtx when optimizing (closes: #178965).
+ Optimisation leads to unaligned access in memcpy (closes: #136659).
* Closed reports reported against gcc-3.0 and fixed in gcc-3.2.x:
- General:
+ Use mkstemp instead of mktemp (closed: #127802).
- Preprocessor:
+ Fix redundant error message from cpp (closed: #100722).
- C:
+ Optimization issue on ix86 (pointless moving) (closed: #97904).
+ Miscompilation of allegro on ix86 (closed: #105741).
+ Fix generation of ..ng references for static aliases (alpha-linux).
(closed: #108036).
+ ICE compiling pari on hppa (closed: #111613).
+ ICE on ia64 in instantiate_virtual_regs_1 (closed: #121668).
+ ICE in c-typeck.c (closed: #123687).
+ ICE in gen_subprogram_die on alpha (closed: #127890).
+ SEGV in initialization of flexible char array member (closed: #131399).
+ ICE on arm compiling lapack (closed: #135967).
+ ICE in incomplete_type_error (closed: #140606).
+ Fix -Wswitch (also part of -Wall) (closed: #140995).
+ Wrong code in mke2fs on hppa (closed: #150232).
+ sin(a) * sin(b) gives wrong result (closed: #164135).
- C++:
+ Error in std library headers on arm (closed: #107633).
+ ICE nr. 19970302 (closed: #119635).
+ std::wcout does not perform encoding conversions (closed: #128026).
+ SEGV, when compiling iostream.h with -fPIC (closed: #134315).
+ Fixed segmentation fault in included code for <rope> (closed: #137017).
+ Fix with exception handling and -O (closed: #144232).
+ Fix octave-2.1 build failure on ia64 (closed: #144584).
+ nonstandard overloads in num_get facet (closed: #155900).
+ ICE in expand_end_loop with -O (closed: #158371).
- Fortran:
+ Fix blas build failure on arm (closed: #137959).
- Java:
+ Interface members are public by default (closed: #94974).
+ Strange message with -fno-bounds-check in combination with -W.
(closed: #102353).
+ Crash in FileWriter using IOException (closed: #116128).
+ Fix ObjectInputStream.readObject() calling constructors.
(closed: #121636).
+ gij: better error reporting on `class not found' (closed: #125649).
+ Lockup during .java->.class compilation (closed: #141899).
+ Compile breaks using temporary inner class instance (closed: #141900).
+ Default constructor for inner class causes broken bytecode.
(closed: #141902).
+ gij-3.2 linked against libgcc1 (closed: #165180).
+ gij-wrapper understands -classpath parameter (closed: #146634).
+ gij-3.2 doesn't ignore -jar when run as "java" (closed: #167673).
- ObjC:
+ ICE on alpha (closed: #172353).
* Closed reports reported against gcc-2.95 and fixed in newer versions:
- General:
+ Undocumented option -pthread (closes: #165110).
+ stdbool.h broken (closes: #167439).
+ regparm/profiling breakage (closes: #20695).
+ another gcc optimization error (closes: #51456).
+ ICE in `output_fix_trunc' (closes: #55967).
+ Fix "Unable to generate reloads for" (closes: #58219, #131890).
+ gcc -c -MD x/y.c -o x/y.o leaves y.d in cwd (closes: #59232).
+ Compiler error with -O2 (closes: #67631).
+ ICE (unrecognizable insn) compiling php4 (closes: #83550, #84969).
+ Another ICE (closes: #90666).
+ man versus info inconsistency (-W and -Wall) (closes: #93708).
+ ICE on invalid extended asm (closes: #136630).
+ ICE in `emit_no_conflict_block' compiling perl (closes: #154599).
+ ICE in `gen_tagged_type_instantiation_die'(closes: #166766).
+ ICE on __builtin_memset(s, 0, -1) (closes: #170994).
+ -Q option to gcc appears twice in the documentation (closes: #137382).
+ New options for specifying targets:- -MQ and -MT (closes: #27878).
+ Configure using --enable-nls (closes: #51651).
+ gcc -dumpspecs undocumented (closes: #65406).
- Preprocessor:
+ cpp fails to parse macros with varargs correctly(closes: #154767).
+ __VA_ARGS__ stringification crashes preprocessor if __VA_ARGS__ is
empty (closes: #152709).
+ gcc doesn't handle empty args in macro function if there is only
one arg(closes: #156450).
- C:
+ Uncaught floating point exception causes ICE (closes: #33786).
+ gcc -fpack-struct doesn't pack structs (closes: #64628).
+ ICE in kernel (matroxfb) code (closes: #151196).
+ gcc doesn't warn about unreachable code (closes: #158704).
+ Fix docs for __builtin_return_address(closes: #165992).
+ C99 symbols in limits.h not defined (closes: #168346).
+ %zd printf spec generates warning, even in c9x mode (closes: #94891).
+ Update GCC attribute syntax (closes: #12253, #43119).
- C++ & libstdc++-v3:
+ template and virtual inheritance bug (closes: #152315).
+ g++ has some troubles with nested templates (closes: #21255).
+ vtable thunks implementation is broken (closes: #34876, #35477).
+ ICE for templated friend (closes: #42662).
+ ICE compiling mnemonic (closes: #42989).
+ Deprecated: result naming doesn't work for functions defined in a
class (closes: #43170).
+ volatile undefined ... (closes: #50529).
+ ICE concerning templates (closes: #53698).
+ Program compiled -O3 -malign-double segfaults in ofstream::~ofstream
(closes: #56867).
+ __attribute__ ((constructor)) doesn't work with C++ (closes: #61806).
+ Another ICE (closes: #65687).
+ ICE in `const_hash' (closes: #72933).
+ ICE on illegal code (closes: #83221).
+ Wrong code with -O2 (closes: #83363).
+ ICE on template class (closes: #85934).
+ No warning for missing return in non-void member func (closes: #88260).
+ Not a bug/fixed in libgcc1: libgcc.a symbols end up exported by
shared libraries (closes: #118670).
+ ICE using nested templates (closes: #118781).
+ Another ICE with templates (closes: #127489).
+ More ICEs (closes: #140427, #141797).
+ ICE when template declared after use(closes: #148603).
+ template function default arguments are not handled (closes: #157292).
+ Warning when including stl.h (closes: #162074).
+ g++ -pedantic-errors -D_GNU_SOURCE cannot #include <complex>
(closes: #151671).
+ c++ error message improvement suggestion (closes: #46181).
+ Compilation error in stl_alloc.h with -fhonor-std (closes: #59005).
+ libstdc++ has no method at() in stl_= (closes: #68963).
- Fortran:
+ g77 crash (closes: #130415).
- ObjC:
+ ICE: program cc1obj got fatal signal 11 (closes: #62309).
+ Interface to garbage collector is undocumented. (closes: #68987).
- Architecture specific:
- alpha
+ Can't compile with define gnu_source with stdio and curses
(closes: #97603).
+ Header conflicts on alpha (closes: #134558).
+ lapack-dev: cannot link on alpha (closes: #144602).
+ ICE `fixup_var_refs_1' (closes: #43001).
+ Mutt segv on viewing list of attachments (closes: #47981).
+ ICE building open-amulet (closes: #48530).
+ ICE compiling hatman (closes: #55291).
+ dead code removal in switch() broken (closes: #142844).
- arm
+ Miscompilation using -fPIC on arm (closes: #90363).
+ infinite loop with -O on arm (closes: #151675).
- i386
+ ICE when using -mno-ieee-fp and -march=i686 (closes: #87540).
- m68k
+ Optimization (-O2) broken on m68k (closes: #146006).
- mips
+ g++ exception catching does not work... (closes: #105569).
+ update-menus gets Bus Error (closes: #120333).
- mipsel
+ aspell: triggers ICE on mipsel (closes: #128367).
- powerpc
+ -O2 produces wrong code (gnuchess example) (closes: #131454).
- sparc
+ Misleading documentation for -malign-{jump,loop,function}s
(closes: #114029).
+ Sparc GCC issue with -mcpu=ultrasparc (closes: #172956).
+ flightgear: build failure on sparc (closes: #88694).
-- Matthias Klose <doko@debian.org> Fri, 16 May 2003 07:13:57 +0200
gcc-3.3 (1:3.3ds8-0pre9) unstable; urgency=high
* gcc-3.3 second prerelease.
- Fixing exception handling on s390 (urgency high).
* Reenabled gpc build (I had it disabled ...). Closes: #192347.
-- Matthias Klose <doko@debian.org> Fri, 9 May 2003 07:32:14 +0200
gcc-3.3 (1:3.3ds8-0pre8) unstable; urgency=low
* gcc-3.3 prerelease.
- Fixes gcj ICE (closes: #189545).
* For libstdc++ use the i486 atomicity implementation, introduced with
0pre6, left out in 0pre7 (closes: #191684).
* Add README.Debian for treelang (closes: #190812).
* Apply NetBSD changes (Joel Baker). Closes: #191551.
* New symbols in libgcc1, tighten the shlibs dependency.
* Disable testsuite run on mips/mipsel because of an outdated libc-dev
package.
* Do not build libffi with debug information, although configuring
with --enable-debug.
-- Matthias Klose <doko@debian.org> Tue, 6 May 2003 06:53:49 +0200
gcc-3.3 (1:3.3ds7-0pre7) unstable; urgency=low
* gcc-3.3 prerelease taken from the gcc-3_3-branch (CVS 20030429).
* Revert upstream libstdc++ change (closes: #191145, #191147, #191148,
#191149, #149159, #149151, and other reports).
Sorry for not detecting this before the upload, seems to be
broken on i386 "only".
* hurd-i386: Use /usr/include, not /include.
* Disable gpc on hurd-i386 (closes: #189851).
* Disable building the debug version of libstdc++ on powerpc-linux
(fixes about 200 java test cases).
* Install libstdc++v3 man pages (closes: #127263).
-- Matthias Klose <doko@debian.org> Tue, 29 Apr 2003 23:28:44 +0200
gcc-3.3 (1:3.3ds6-0pre6) unstable; urgency=high
* gcc-3.3 prerelease taken from the gcc-3_3-branch (CVS 20030426).
* libstdc++-doc: Fix index.html link (closes: #189424).
* Revert back to the i486 atomicity implementation, that was used
for gcc-3.2 as well. Reopens: #184446, #185662. Closes: #189983.
For this reason, tighten the libstdc++5 shlibs dependency. See
http://lists.debian.org/debian-devel/2003/debian-devel-200304/msg01895.html
Don't build the ix86 specfic libstdc++ libs anymore.
-- Matthias Klose <doko@debian.org> Sun, 27 Apr 2003 19:47:54 +0200
gcc-3.3 (1:3.3ds5-0pre5) unstable; urgency=low
* gcc-3.3 prerelease taken from the gcc-3_3-branch (CVS 20030415).
* Disable treelang on powerpc.
* Disable gpc on m68k.
* Install locale data. Conflict with gcc-3.2 (<= 1:3.2.3-0pre8).
* Fix generated bits/atomicity.h (closes: #189183).
* Tighten libgcc1 shlibs dependency (new symbol _Unwind_Backtrace).
-- Matthias Klose <doko@debian.org> Wed, 16 Apr 2003 00:37:05 +0200
gcc-3.3 (1:3.3ds4-0pre4) unstable; urgency=low
* gcc-3.3 prerelease taken from the gcc-3_3-branch (CVS 20030412).
* Avoid sparc64 dependencies for libgcc1 on sparc (Clint Adams).
* Make the default sparc 32bit target v8 instead of v7. This mainly
enables hardmul, which should speed up v8 and v9 systems by a large
margin (Ben Collins).
* Tighten binutils dependency for sparc.
* On i386, build libstdc++ optimized for i486 and above. The library
in /usr/lib is built for i386. Closes: #184446, #185662.
* Add gpc build (from gcc-snapshot package).
* debian/control: Include all packages, that _can_ be built from
this source package (except the cross packages).
* Add m68k patches: m68k-const, m68k-subreg, m68k-loop.
* Run the 3.3 testsuite a second time with the installed gcc-3.2
to check for regressions (promised, only this time, and for the
final release ;). Add build dependencies (gobjc-3.2, g77-3.2, g++-3.2).
-- Matthias Klose <doko@debian.org> Sat, 12 Apr 2003 10:11:11 +0200
gcc-3.3 (1:3.3ds3-0pre3) unstable; urgency=low
* gcc-3.3 prerelease taken from the gcc-3_3-branch (CVS 20030331).
* Reenable java on arm.
* Build-Depend on binutils-2.13.90.0.18-1.3 on m68k. Fixes all
bprob/gcov testsuite failures.
* Enable C++ build on arm.
* Enable the sparc64 build.
-- Matthias Klose <doko@debian.org> Mon, 31 Mar 2003 23:24:54 +0200
gcc-3.3 (1:3.3ds2-0pre2) unstable; urgency=low
* gcc-3.3 prerelease taken from the gcc-3_3-branch (CVS 20030317).
* Disable building the gcc-3.3-nof package.
* Disable Ada on mips and mipsel.
* Remove the workaround to build Ada on powerpc.
* Add GNU Free documentation license to copyright file.
* Update the sparc64 build patches (Clint Adams). Not yet enabled.
* Disable C++ on arm (Not yet tested).
* Add fix for ICE on powerpc (see: #184684).
-- Matthias Klose <doko@debian.org> Sun, 16 Mar 2003 21:40:57 +0100
gcc-3.3 (1:3.3ds1-0pre1) unstable; urgency=low
* gcc-3.3 prerelease taken from the gcc-3_3-branch (CVS 20030310).
* Add gccbug manpage.
* Don't build libgnat package (no shared library).
* Configure with --enable-sjlj-exceptions on hppa and m68k for
binary compatibility with libstdc++ built with gcc-3.2.
* Disable Java on arm-linux (never seen it sucessfully bootstrap).
* Install non-conflicting baseline README.
* multilib *.so and *.a moved to /usr/lib/gcc-lib/... , so that several
compiler versions can be installed concurrently.
* Remove libstdc++-incdir patch applied upstream.
* libstdc++ 64 bit development files now handled in -dev target.
(Gerhard Tonn)
* Drop build dependencies for gpc (tetex-bin, help2man, libncurses5-dev).
* Add libstdc++5-3.3-dev confict to libstdc++5-dev (<= 1:3.2.3-0pre3).
* Enable builds on m68k (all but C++ for the moment). gcc-3.3 bootstraps,
while gcc-3.2 doesn't.
-- Matthias Klose <doko@debian.org> Mon, 10 Mar 2003 23:41:00 +0100
gcc-3.3 (1:3.3ds0-0pre0) unstable; urgency=low
* First gcc-3.3 package, built for s390 only. All other architectures
build the gcc-3.3-base package only.
To build the package on other architectures, edit debian/rules.defs
(macro no_dummy_archs).
* gcc-3.3 prerelease taken from the gcc-3_3-branch (CVS 20030301).
* Don't include the gcc locale files (would conflict with 3.2).
* Remove libffi-install-fix patch.
* Fix netbsd-i386 patches.
* Change priority of libstdc++5 and gcc-3.2-base to important.
* Install gcjh-wrapper for javah.
* gij suggests fastjar, gcj recommends fastjar.
* Allow builds using automake1.4 | automake (<< 1.5).
* Backport fix for to output more correct line numbers.
* Add help2man to build dependencies needed for some gpc man pages.
* gpc: Install binobj and gpidump binaries and man pages.
* Apply cross compilation patches submitted by Bastian Blank.
* Replace s390-biarch patch and copy s390-config-ml patch from 3.2
(Gerhard Tonn).
* Configure using --enable-debug.
* Add infrastructure to only build a subset of binary packages.
* Rename libstdc++-{dev,dbg,pic,doc} packages.
* Build treelang compiler.
-- Matthias Klose <doko@debian.org> Sat, 1 Mar 2003 12:56:42 +0100
gcc-3.2 (1:3.2.3ds2-0pre3) unstable; urgency=low
* gcc-3.2.3 prerelease (CVS 20030228)
- Fixes bootstrap failure on alpha-linux.
- Fixes ICE on m68k (closes: #177016).
* Build Pascal with -O1 on powerpc, disable Pascal on arm, m68k and
sparc (due to wrong code generation for fwrite in glibc,
see PR optimization/9279).
* Apply cross compilation patches submitted by Bastian Blank.
-- Matthias Klose <doko@debian.org> Fri, 28 Feb 2003 20:26:30 +0100
gcc-3.2 (1:3.2.3ds1-0pre2) unstable; urgency=medium
* gcc-3.2.3 prerelease (CVS 20030221)
- Fixes ICE on hppa (closes: #181813).
* Patch for ffitest in s390-java.dpatch deleted, since already fixed
upstream. (Gerhard Tonn)
* Build crtbeginT.o on m68k-linux (closes: #179807).
* Install gcjh-wrapper for javah (closes: #180218).
* gij suggests fastjar, gcj recommends fastjar (closes: #179298).
* Allow builds using automake1.4 | automake (<< 1.5) (closes: #180048).
* Backport fix for to output more correct line numbers (closes: #153965).
* Add help2man to build dependencies needed for some gpc man pages.
* gpc: Install binobj and gpidump binaries and man pages.
* Disable gpc on arm due to wrong code generation for fwrite in
glibc (see PR optimization/9279).
-- Matthias Klose <doko@debian.org> Sat, 22 Feb 2003 19:58:20 +0100
gcc-3.2 (1:3.2.3ds0-0pre1) unstable; urgency=low
* gcc-3.2.3 prerelease (CVS 20030210)
- Fixes long millicode calls on hppa (closes: #180520)
* New gpc-20030209 version. Remove gpc-update.dpatch and gpc-testsuite.dptch
as they are no longer needed.
* Fix netbsd-i386 patches (closes: #180129, #179931)
* m68k-bootstrap.dpatch: backport gcse.c changes from 3.3/MAIN to 3.2
* Change priority of libstdc++5 and gcc-3.2-base to important.
-- Ryan Murray <rmurray@debian.org> Tue, 11 Feb 2003 06:18:09 -0700
gcc-3.2 (1:3.2.2ds8-1) unstable; urgency=low
* gcc-3.2.2 release.
- Fixes ICE, regression from 2.95 (closes: #176117).
- Fixes ICE, regression from 2.95 (closes: #179161).
* libstdc++ for biarch installs now upstream to usr/lib64,
therefore mv usr/lib/64 usr/lib64 no longer necessary. (Gerhard Tonn)
-- Ryan Murray <rmurray@debian.org> Wed, 5 Feb 2003 01:35:29 -0700
gcc-3.2 (1:3.2.2ds7-0pre8) unstable; urgency=low
* gcc-3.2.2 prerelease (CVS 20030130).
* update s390 libffi patch
* debian/control: add myself to uploaders and change libc12-dev depends to
libc-dev on i386 (closes: #179128)
* Build-Depend on procps so that ps is available for logwatch
-- Ryan Murray <rmurray@debian.org> Fri, 31 Jan 2003 04:00:15 -0700
gcc-3.2 (1:3.2.2ds6-0pre7) unstable; urgency=low
* gcc-3.2.2 prerelease (CVS 20030128).
- Update needed for hppa.
- Fixes ICE on arm, regression from 2.95.x (closes: #168086).
- Can use default bison (1.875).
* Apply netbsd build patches (closes: #177674, #178328, #178325,
#178326, #178327).
* Run the logwatch script on "slow" architectures (arm, m68k) only.
* autoreconf.dpatch: Only update libtool.m4, which is newer conceptually
than libtool 1.4 (Ryan Murray).
* Apply autoreconf patch universally (Ryan Murray).
* More robust gij/gcj wrapper scripts, include /usr/lib/jni in default
JNI search path (Ben Burton). Closes: #167932.
* Build crtbeginT.o on m68k (closes: #177036).
* Fixed libc-dev source dependency (closes: #178602).
* Tighten shlib dependency to the current package version; should be
1:3.2.2-1 for the final release (closes: #178867).
-- Matthias Klose <doko@debian.org> Tue, 28 Jan 2003 21:59:30 +0100
gcc-3.2 (1:3.2.2ds5-0pre6) unstable; urgency=low
* gcc-3.2 snapshot taken from the gcc-3_2-branch (CVS 20030123).
* Build locales needed by the libstdc++ testsuite.
* Update config.{guess,sub} files from autotools-dev (closes: #177674).
* Disable Ada and Java on netbsd-i386 (closes: #177679).
* gnat: Add suggests for gnat-doc and ada-reference-manual.
-- Matthias Klose <doko@debian.org> Thu, 23 Jan 2003 22:16:53 +0100
gcc-3.2 (1:3.2.2ds4-0pre5.1) unstable; urgency=low
* Readd build dependency `locales' on arm. locales is now installable
* Add autoreconf patch for mips{,el}. (closes: #176311)
-- Ryan Murray <rmurray@debian.org> Wed, 22 Jan 2003 14:31:14 -0800
gcc-3.2 (1:3.2.2ds4-0pre5) unstable; urgency=low
* Remove build dependency `libc6-dev-sparc64 [sparc]' for now.
* Remove build dependency `locales' on arm. locales is uninstallable
on arm due to the missing glibc-2.3.
* Use bison-1.35. bison-1.875 causes an hard error on the reduce/reduce
conflict in objc-parse.y.
-- Matthias Klose <doko@debian.org> Fri, 10 Jan 2003 10:10:43 +0100
gcc-3.2 (1:3.2.2ds4-0pre4) unstable; urgency=low
* Try building with gcc-2.95 on m68k-linux. Building gcc-3.2 with gcc-3.2
does not work for me. m68k-linux doesn't look good at all ...
* Fix s390 build error.
* Add locales to build dependencies. A still unsolved issue is the
presence of the locales de_DE, en_PH, en_US, es_MX, fr_FR and it_IT,
or else some tests in the libstdc++ testsuite will fail.
* Put all -nof files in the -nof package (closes: #175253).
* Correctly exit logwatch script (closes: #175251).
* Install linker-map.gnu file for libstdc++_pic (closes: #175144).
* Install versioned gpcs docs only (closes: #173844).
* Include gpc test results in gpc package.
* Link local libstdc++ documentation to local source-level documentation.
* Clarify libstdc++ description (so version and library version).
Closes: #175799.
* Include library in libstdc++-dbg package (closes: #176005).
-- Matthias Klose <doko@debian.org> Wed, 8 Jan 2003 23:39:50 +0100
gcc-3.2 (1:3.2.2ds3-0pre3) unstable; urgency=low
* gcc-3.2 snapshot taken from the gcc-3_2-branch (CVS 20021231).
- Fix loop count computation for preconditioned unrolled loops.
Closes: #162919.
- Fix xmmintrin.h (_MM_TRANSPOSE4_PS) CVS 20021027 (closes: #163647).
- Fix [PR 8601] strlen/template interaction causes ICE CVS 20021201.
Closes: #166143.
* Watch the log files, which are written during the testsuite runs and print
out a message, if there is still activity. No more buildd timeouts on arm
and m68k ...
* Remove gpc's reference to librx1g-dev package (closes: #172953).
* Remove trailing dots on package descriptions.
* Fix external reference to cpp.info in gcc.info (closes: #174598).
-- Matthias Klose <doko@debian.org> Tue, 31 Dec 2002 13:47:52 +0100
gcc-3.2 (1:3.2.2ds2-0pre2) unstable; urgency=medium
* Friday, 13th upload, so what do you expect ...
* gcc-3.2 snapshot taken from the gcc-3_2-branch (CVS 20021212).
* Fix gnat build (autobuild maintainers: please revert back to gnat-3.2
(<= 1:3.2.1ds6-1) for building gnat-3.2, if the build fails building
gnatlib and gnattools).
* Really disable sparc64 support.
-- Matthias Klose <doko@debian.org> Fri, 13 Dec 2002 00:26:37 +0100
gcc-3.2 (1:3.2.2ds1-0pre1) unstable; urgency=low
* A candidate for the transition ...
* gcc-3.2 snapshot taken from the gcc-3_2-branch (CVS 20021210).
- doc/invoke.texi: Remove last reference to -a (closes: #171748).
* Disable sparc64 support. For now please use egcs64 to build sparc64
kernels.
* Disable Pascal on the sparc architecture (doesn't bootstrap).
-- Matthias Klose <doko@debian.org> Tue, 10 Dec 2002 22:33:13 +0100
gcc-3.2 (1:3.2.2ds0-0pre0) unstable; urgency=low
* gcc-3.2 snapshot taken from the gcc-3_2-branch (CVS 20021202).
- Should fix _Pragma expansion within macros (closes: #157416).
* New gpc-20021128 version. Run check using EXTRA_TEST_PFLAGS=-g0
* Add tetex-bin to build dependencies (gpc needs it). Closes: #171203.
-- Matthias Klose <doko@debian.org> Tue, 3 Dec 2002 08:22:33 +0100
gcc-3.2 (1:3.2.1ds6-1) unstable; urgency=low
* gcc-3.2.1 final release.
* Build gpc-20021111 for all architectures. hppa and i386 are
known to work. For the other architectures, send the usual FTBFS ...
WARNING: this gpc version is an alpha version, especially debug info
doesn't work well, so use -g0 for compiling. If you need a stable
gpc compiler, use gpc-2.95.
* Encode the gpc upstream version in the package name, the gpc release
date in the version number (requested by gpc upstream).
* Added libncurses5-dev and libgmp3-dev as build dependencies for the
gpc tests and runtime.
* Clean CVS files as well (closes: #169101).
* s390-biarch.dpatch added, backported from CVS (Gerhard Tonn).
* s390-config-ml.dpatch added, disables biarch for java,
libffi and boehm-gc on s390. They need a 64 bit runtime
during build which is not yet available on s390 (Gerhard Tonn).
* Biarch support for packaging adapted (Gerhard Tonn).
biarch variable added and with-sparc64 variable substituted in
most places by biarch.
dh_shlibdeps is applied only to 32 bit libraries on s390, since
ldd for 64 bit libraries don't work on 32 bit runtime.
Build dependency to libc6-dev-s390x added.
-- Matthias Klose <doko@debian.org> Wed, 20 Nov 2002 00:20:58 +0100
gcc-3.2 (1:3.2.1ds5-0pre6) unstable; urgency=medium
* gcc-3.2.1 prerelease.
* Removed arm patch integrated upstream.
* Adjust gnat build dependency (closes: #167116).
* Always configure with --enable-clocale=gnu. The autobuilders do have
locales installed, but not generated the "de_DE" locale needed for
the autoconf test in libstdcc++-v3/aclocal.m4.
* libstdc++ documentaion: Don't compresss '*.txt' referenced by html pages.
-- Matthias Klose <doko@debian.org> Tue, 12 Nov 2002 07:19:44 +0100
gcc-3.2 (1:3.2.1ds4-0pre5) unstable; urgency=medium
* gcc-3.2.1 snapshot (CVS 20021103).
* sparc64-build.dpatch: Updated. Lets sparc boostrap again.
* s390-loop.dpatch removed, already fixed upstream (Gerhard Tonn).
* bison.dpatch: Removed, patch submitted upstream.
* backport-java-6865.dpatch: Apply again during build.
* Tighten glibc dependency (closes: #166703).
-- Matthias Klose <doko@debian.org> Sun, 3 Nov 2002 12:22:02 +0100
gcc-3.2 (1:3.2.1ds3-0pre4) unstable; urgency=high
* gcc-3.2.1 snapshot (CVS 20021020).
- Expansion of _Pragma within macros fixed (closes: #157416).
* FTBFS: With the switch to bison-1.50 (and 1.75), gcc-3.2 fails to build from
source on Debian unstable systems. This is fixed in gcc HEAD, but not on
the current release branch.
HELP NEEDED:
- check what is missing from the patches in debian/patches/bison.dpatch.
This is a backport of the bison related patches, but showing regressions
in the gcc testsuite, so it cannot be applied.
- build gcc using byacc (bootstrap currently fails using byacc).
- build bison-1.35 in it's own package (the current 1.35-3 package fails
to build form source).
- and finally ask upstream to backport the patch to the branch. It's not
helpful not beeing able to follow the stable branch. Maybe we should
just switch to gcc HEAD as BSD does ...
As a terrible workaround, build the sources from CVS first on a machine,
with bison-1.35 installed, then package the tarball, so the bison
generated files are not rebuilt.
* re-add lost patch: configure with --enable-__cxa_atexit (closes: #163422),
Therefore urgency high.
* gcj-wrapper, gij-wrapper: Accept names starting with `.' (closes: #163172,
#164009).
* Point g++ manpage to correct g++ version (closes: #162843).
* Support for i386-freebsd-gnu (closes: #163883).
* s390-java.dpatch replaced with backport from cvs head (Gerhard Tonn).
* Disable the testsuite run on the Hurd (closes: #159650).
* s390-loop.dpatch added, fixes runtime problem (Gerhard Tonn).
* debian/patches/bison.dpatch: Backport for bison-1.75 compatibility.
Don't use it due to regressions.
* debian/patches/backport-java-6865.dpatch: Directly applied in the
included tarball because of bison problems.
* Make fixincludes priority optional, so linda can depend on it.
* Tighten binutils dependency.
-- Matthias Klose <doko@debian.org> Sun, 20 Oct 2002 10:52:49 +0200
gcc-3.2 (1:3.2.1ds2-0pre3) unstable; urgency=low
* gcc-3.2.1 snapshot (CVS 20020923).
* Run the libstdc++ check-abi script. Results are put into the file
/usr/share/doc/libstdc++5/README.libstdc++-baseline in the libstdc++5-dev
package. This file contains a new baseline, if no baseline for this
architecture is included in the gcc sources.
* gcj-wrapper: Accept files starting with an underscore, accept
path names (closes: #160859, #161517).
* Explicitely call automake-1.4 when rebuilding Makefiles (closes: #161438).
* Let installed fixincludes script find files in /usr/lib/fixincludes.
* debian/rules.patch: Add .NOTPARALLEL as target, so that patches are
applied sequentially (closes: #159395).
-- Matthias Klose <doko@debian.org> Tue, 24 Sep 2002 07:36:56 +0200
gcc-3.2 (1:3.2.1ds1-0pre2) unstable; urgency=low
* gcc-3.2.1 snapshot (CVS 20020913). Welcome back m68k in bootstrap land!
* Fix arm-tune.dpatch (closes: #159354).
* Don't overwrite LD_LIBRARY_PATH in build (closes: #158459).
* --disable-__cxa_atexit on NetBSD (closes: #159620).
* Reenable installation of message catalogs (disabled in 3.2-0pre2).
Closes: #160175.
* Ben Collins
- Re-enable sparc64 build. This time, it's part of the default compiler.
I have disabled 64/alt libraries as they are too much overhead. All
libraries build 64bit, but currently only libgcc/libstdc++ include the
64bit libraries.
Closes: #160404.
* Depend on autoconf2.13, instead of autoconf.
* Phil Blundell
- debian/patches/arm-update.dpatch: Fix python2.2 build failure.
-- Matthias Klose <doko@debian.org> Sat, 7 Sep 2002 08:05:02 +0200
gcc-3.2 (1:3.2.1ds0-0pre1) unstable; urgency=medium
* gcc-3.2.1 snapshot (CVS 20020829).
New g++ option -Wabi:
Warn when G++ generates code that is probably not compatible with the
vendor-neutral C++ ABI. Although an effort has been made to warn about
all such cases, there are probably some cases that are not warned about,
even though G++ is generating incompatible code. There may also be
cases where warnings are emitted even though the code that is generated
will be compatible.
The current version of the ABI is 102, defined by the __GXX_ABI_VERSION
macro.
* debian/NEWS.*: Updated.
* Fix libstdc++-dev dependency on libc-dev for the Hurd (closes: #157004).
* Add versioned expect build dependency.
* Tighten binutils dependency to 2.13.90.0.4.
* debian/patches/arm-tune.dpatch: Increase stack limit for configure.
* 3.2-0pre4 did build gnat-3.2 compilers for all architectures. Build-Depend
on gnat-3.2 now (closes: #156734).
* Remove bashism's in gcj-wrapper (closes: #157982).
* Add -cp and -classpath options to gij(1). Backport from HEAD (#146634).
* Add fastjar documentation.
-- Matthias Klose <doko@debian.org> Fri, 30 Aug 2002 10:35:00 +0200
gcc-3.2 (1:3.2ds0-0pre4) unstable; urgency=low
* Correct build dependency on gnat-3.1.
-- Matthias Klose <doko@debian.org> Mon, 12 Aug 2002 01:21:58 +0200
gcc-3.2 (1:3.2ds0-0pre3) unstable; urgency=low
* gcc-3.2 upstream prerelease.
* Disable all configure options, which are standard:
--enable-threads=posix --enable-long-long, --enable-clocale=gnu
-- Matthias Klose <doko@debian.org> Fri, 9 Aug 2002 21:59:08 +0200
gcc-3.2 (1:3.2ds0-0pre2) unstable; urgency=low
* gcc-3.2 snapshot (CVS 20020802).
* Fix g++-include dir.
* Don't install the locale files (temporarily, until we don't build
gcc-3.1 anymore).
* New package libgcj-common to avoid conflict with classpath package.
-- Matthias Klose <doko@debian.org> Sat, 3 Aug 2002 09:08:34 +0200
gcc-3.2 (1:3.2ds0-0pre1) unstable; urgency=low
* gcc-3.2 snapshot (CVS 20020729).
-- Matthias Klose <doko@debian.org> Mon, 29 Jul 2002 20:36:54 +0200
gcc-3.1 (1:3.1.1ds3-1) unstable; urgency=low
* gcc-3.1.1 release. Following this release we will have a gcc-3.2
release soon, which is gcc-3.1.1 plus some C++ ABI changes. Once
gcc-3.2 hits the archives, gcc-3.1.1 will go away.
* Don't build the sparc64 compiler. The packaging/patches are
currently broken.
* Add missing headers on m68k and powerpc.
* Install libgcc_s_nof on powerpc.
* Install libffi's copyright and doc files (closes: #152198).
* Remove dangling symlink (closes: #149002).
* libgcj3: Add a conflict to the classpath package (closes: #148664).
* README.C++: Fix URLs.
* libstdc++-dbg: Install into /usr/lib/debug, document it.
* backport-java-6865.dpatch: backport from HEAD.
* Fix typo in gcj docs (closes: #148890).
* Change libstdc++ include dir: /usr/include/c++/3.1.
* libstdc++-codecvt.dpatch: New patch (closes: #149776).
* Build libstdc++-pic package.
* Move 64bit libgcc in its own package libgcc1-64 (closes: #147249).
* Tighten glibc dependency.
-- Matthias Klose <doko@debian.org> Mon, 29 Jul 2002 00:34:49 +0200
gcc-3.1 (1:3.1.1ds2-0pre3) unstable; urgency=low
* Updated to CVS 2002-06-06 (gcc-3_1-branch).
* Updated s390-java patch (Gerhard Tonn).
* Don't use -O in STAGE1_FLAGS on m68k.
* Fix `-classpath' option in gcj-wrapper script (closes: #150142).
* Remove g++-cxa-atexit patch, use --enable-__cxa_atexit configure option.
-- Matthias Klose <doko@debian.org> Wed, 3 Jul 2002 23:52:58 +0200
gcc-3.1 (1:3.1.1ds1-0pre2) unstable; urgency=low
* Updated to CVS 2002-06-06 (gcc-3_1-branch), fixing an ObjC regression.
* Welcome m68k to bootstrap land (thanks to Andreas Schwab).
* Add javac wrapper for gcj-3.1 (Michael Koch).
* Remove dangling symlink in /usr/share/doc/gcc-3.1 (closes: #149002).
-- Matthias Klose <doko@debian.org> Fri, 7 Jun 2002 00:26:05 +0200
gcc-3.1 (1:3.1.1ds0-0pre1) unstable; urgency=low
* Updated to CVS 2002-05-31 (gcc-3_1-branch).
* Change priorities from fastjar and gij-wrapper-3.1 from 30 to 31.
* Update arm-tune patch.
* Install xmmintrin.h header on i386 (closes: #148181).
* Install altivec.h header on powerpc.
* Call correct gij in gij-wrapper (closes: #148662, #148682).
-- Matthias Klose <doko@debian.org> Wed, 29 May 2002 22:47:40 +0200
gcc-3.1 (1:3.1ds2-2) unstable; urgency=low
* Tighten binutils dependency.
* Fix libstdc include dir for multilibs (Dan Jacobowitz).
-- Matthias Klose <doko@debian.org> Tue, 21 May 2002 08:03:49 +0200
gcc-3.1 (1:3.1ds2-1) unstable; urgency=low
* GCC 3.1 release.
* Ada cannot be built by the autobuilders for the first time. Do it by hand.
gnatgcc and gnatbind need to be in the PATH.
* Build with CC=gnatgcc, when building the Ada compiler.
* Hurd fixes.
* Don't build the sparc64 compiler; the hack isn't up to date and glibc
isn't converted to use /lib64 and /usr/lib64.
* m68k-linux shows bootstrap comparision failures. If you want to build
the compiler anyway and ignore the bootstrap comparision failure, edit
debian/rules.patch and uncomment the patch to ignore the failure. See
/usr/share/doc/gcc-3.1/BOOTSTRAP_COMPARISION_FAILURE for the differences.
-- Matthias Klose <doko@debian.org> Wed, 15 May 2002 09:53:00 +0200
gcc-3.1 (1:3.1ds1-0pre6) unstable; urgency=low
* Build from the "final prerelease" tarball (gcc-3.1-20020508.tar.gz).
* Build gnat-3.1-doc package.
* Build fastjar package without building java packages.
* Hurd fixes.
* Updated sparc64-build patch.
* Add s390-ada patch (Gerhard Tonn).
* Undo the dwarf2 support for hppa from -0pre5.
-- Matthias Klose <doko@debian.org> Thu, 9 May 2002 17:21:09 +0200
gcc-3.1 (1:3.1ds0-0pre5) unstable; urgency=low
* Use /usr/include/g++-v3-3.1 as C++ include dir.
* Update s390-java patch (Gerhard Tonn).
* Tighten binutils dependency (gas patch for m68k-linux).
* Use gnat-3.1 as the gnat package name (as found in gcc/ada/gnatvsn.ads).
* dwarf2 support hppa: a snapshot of the gcc/config/pa directory
from the trunk dated 2002-05-02.
-- Matthias Klose <doko@debian.org> Fri, 3 May 2002 22:51:37 +0200
gcc-3.1 (1:3.1ds0-0pre4) unstable; urgency=low
* Use gnat-5.00w as the gnat package name (as found in gcc/ada/gnatvsn.ads).
* Don't build the shared libgnat library. It assumes an existing shared
libiberty library.
* Don't install the libgcjgc library.
-- Matthias Klose <doko@debian.org> Thu, 25 Apr 2002 08:48:04 +0200
gcc-3.1 (1:3.1ds0-0pre3) unstable; urgency=low
* Build fastjar on all architectures.
* Update m68k patches.
* Update s390-java patch (Gerhard Tonn).
-- Matthias Klose <doko@debian.org> Sun, 14 Apr 2002 15:34:47 +0200
gcc-3.1 (1:3.1ds0-0pre2) unstable; urgency=low
* Add Ada support. To successfully build, a working gnatbind and gcc
driver with Ada support is needed.
* Apply needed arm patches from 3.0.4.
-- Matthias Klose <doko@debian.org> Sat, 6 Apr 2002 13:17:08 +0200
gcc-3.1 (1:3.1ds0-0pre1) unstable; urgency=low
* First try for gcc-3.1.
-- Matthias Klose <doko@debian.org> Mon, 1 Apr 2002 23:39:30 +0200
gcc-3.0 (1:3.0.4ds3-6) unstable; urgency=medium
* Second try at fixing sparc build problems.
-- Phil Blundell <pb@debian.org> Sun, 24 Mar 2002 14:49:26 +0000
gcc-3.0 (1:3.0.4ds3-5) unstable; urgency=medium
* Enable java on ARM.
* Create missing directory to fix sparc build.
-- Phil Blundell <pb@debian.org> Fri, 22 Mar 2002 20:21:59 +0000
gcc-3.0 (1:3.0.4ds3-4) unstable; urgency=low
* Link with system zlib (closes: #136359).
-- Matthias Klose <doko@debian.org> Tue, 12 Mar 2002 20:47:59 +0100
gcc-3.0 (1:3.0.4ds3-3) unstable; urgency=low
* Build libf2c (pic and non-pic) with -mieee on alpha-linux.
-- Matthias Klose <doko@debian.org> Sun, 10 Mar 2002 00:37:24 +0100
gcc-3.0 (1:3.0.4ds3-2) unstable; urgency=medium
* Apply hppa-build patch (Randolph Chung). Closes: #136731.
* Make libgcc1 conflict/replace with libgcc1-sparc64. Closes: #135709.
* gij-3.0 provides the `java' command. Closes: #128947.
* Depend on binutils (>= 2.11.93.0.2-2), allows stripping of libgcj.a
again. Closes: #99307.
* Update README.cross pointing to the README of the toolchain-source
package.
-- Matthias Klose <doko@debian.org> Wed, 6 Mar 2002 21:53:34 +0100
gcc-3.0 (1:3.0.4ds3-1) unstable; urgency=low
* Final gcc-3.0.4 release.
* debian/rules.d/binary-java.mk: Fix dormant typo, exposed by removing the
duplicate libgcj dependency and adding the gij-3.0 package.
Closes: #134005.
* New patch by Phil Blundell to fix scalapack build error on m68k.
-- Matthias Klose <doko@debian.org> Wed, 20 Feb 2002 23:59:43 +0100
gcc-3.0 (1:3.0.4ds2-0pre020210) unstable; urgency=low
* Make the base package dependent on the binary-arch target. Closes: #133433.
* Get libstdc++ on arm woring (define _GNU_SOURCE). Closes: #133435.
-- Matthias Klose <doko@debian.org> Mon, 11 Feb 2002 20:31:12 +0100
gcc-3.0 (1:3.0.4ds2-0pre020209) unstable; urgency=high
* Update to CVS sources (20020209 gcc-3_0-branch).
* Apply patch to fix bootstrap error on arm-linux (submitted upstream
by Phil Blundell). Closes: #130422.
* Make base package architecture any.
* Decouple versioned shlib dependencies from release number for
libobjc as well.
-- Matthias Klose <doko@debian.org> Sat, 9 Feb 2002 01:30:11 +0100
gcc-3.0 (1:3.0.4ds1-0pre020203) unstable; urgency=medium
* One release critical bug outstanding:
- bootstrap error on arm.
* Update to CVS sources (20020203 gcc-3_0-branch).
* Fixed upstream: PR c/3504: Correct documentation of __alignof__.
Closes: #85445.
* Remove libgcc-powerpc patch, integrated upstream (closes: #131977).
* Tighten binutils build dependency (to address #126162).
* Move jv-convert to gcj package (closes: #131985).
-- Matthias Klose <doko@debian.org> Sun, 3 Feb 2002 14:47:14 +0100
gcc-3.0 (1:3.0.4ds0-0pre020127) unstable; urgency=low
* Two release critical bugs outstanding:
- bootstrap error on arm.
- bus errors for C++ and java executables on sparc (see the testsuite
results).
* Update to CVS sources (20020125 gcc-3_0-branch).
* Enable java support for s390 architecture (patch from Gerhard Tonn).
* Updated NEWS file for 3.0.3.
* Disable building the gcc-sparc64, but build a multilibbed compiler
for sparc as the default.
* Disabled the subreg-byte patch for sparc (request from Ben Collins).
* Fixed reference to libgcc1 package in README (closes: #126218).
* Do recommend libc-dev, not depend on it. For low-end or embedded systems
the dependency on libc-dev can make the difference between
having enough or having too little space to build a kernel.
* README.cross: Updated by Hakan Ardo.
* Decouple versioned shlib dependencies from release number. Closes: #118391.
* Fix diversions for gcc-3.0-sparc64 package (closes: #128178),
unconditionally remove `sparc64-linux-gcc' alternative.
* g77/README.libg2c.Debian: New file mentioning `libg2c-pic'. The next
g77 version (3.1) does build a static and shared library (closes: #104250).
* Fix formatting errors in the synopsis of the java man pages. Maybe the
reason for #127571. Closes: #127571.
* fastjar: Fail for the (currently incorrect) -u option. Addresses: #116145.
Add alternative for `jar' using priority 30 (closes: #118648).
* jv-convert: Add --help option and man page. Backport from HEAD branch.
* libgcj2-dev: Remove duplicate dependency (closes: #127805).
* Giving up and make just another new package gij-X.Y with only the gij-X.Y
binary for policy conformance (closes: #127111).
* gij: Provides an alternative for `java' (priority 30) using a wrapper
script (Stephen Zander) (closes: #128974). Added simple manpage.
-- Matthias Klose <doko@debian.org> Sun, 27 Jan 2002 13:33:41 +0100
gcc-3.0 (1:3.0.3ds3-1) unstable; urgency=low
* Final gcc-3.0.3 release.
* Do not compress .txt files in libstdc++ docs referenced from html
pages (closes: #124136).
* libstdc++-dev suggests libstdc++-doc.
* debian/patches/gcc-ia64-NaT.dpatch: Update (closes: #123685).
-- Matthias Klose <doko@debian.org> Fri, 21 Dec 2001 02:54:11 +0100
gcc-3.0 (1:3.0.3ds2-0pre011215) unstable; urgency=low
* Update to CVS sources (011215).
* libstdc++ documentation updated upstream (closes: #123790).
* debian/patches/gcc-ia64-NaT.dpatch: Disable. Fixes bootstrap error
on ia64 (#123685).
-- Matthias Klose <doko@debian.org> Sat, 15 Dec 2001 14:43:21 +0100
gcc-3.0 (1:3.0.3ds1-0pre011210) unstable; urgency=medium
* Update to CVS sources (011208).
* Supposed to fix powerpc build error (closes: #123155).
-- Matthias Klose <doko@debian.org> Thu, 13 Dec 2001 07:26:05 +0100
gcc-3.0 (1:3.0.3ds0-0pre011209) unstable; urgency=medium
* Update to CVS sources (011208). Frozen for upstream 3.0.3 release.
* Apply contrib/PR3145.patch, a backport of Nathan Sidwell's patch to
fix PR c++/3145, the infamous "virtual inheritance" bug. This affected
especially KDE2 (eg. artsd). Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
* cc1plus segfault in strength reduction fixed upstream. Closes: #122547.
* debian/patches/gcc-ia64-NaT.dpatch: Add patch to avoid a bug that can
cause miscompiled userapps to crash the kernel. Closes: #121924.
* Reenable shared libgcc for powerpc. Fixed upstream.
http://gcc.gnu.org/ml/gcc-patches/2001-11/msg00340.html
debian/patches/libgcc-powerpc.dpatch: New patch.
* Add upstream changelogs.
* Remove gij alternative. Move to gij package.
-- Matthias Klose <doko@debian.org> Sun, 9 Dec 2001 09:36:48 +0100
gcc-3.0 (1:3.0.2ds4-4) unstable; urgency=medium
* Disable building of libffi on mips and mipsel.
(closes: #117503).
* Enable building of shared libgcc on s390
(closes: #120452).
-- Christopher C. Chimelis <chris@debian.org> Sat, 1 Dec 2001 06:15:29 -0500
gcc-3.0 (1:3.0.2ds4-3) unstable; urgency=medium
* Fix logic to build libffi without java (closes: #117503).
-- Matthias Klose <doko@debian.org> Sun, 4 Nov 2001 14:34:50 +0100
gcc-3.0 (1:3.0.2ds4-2) unstable; urgency=medium
* Enable java for ia64 (Jeff Licquia). Closes: #116798.
* Allow building of libffi without gcj (Jeff Licquia).
New libffi packages for arm hurd-i386 mips mipsel,
still missing: hppa, s390.
* debian/NEWS.gcc: Add 3.0.2 release notes.
* debian/patches/hppa-align.dpatch: New patch from Alan Modra,
submitted by Randolph Tausq.
-- Matthias Klose <doko@debian.org> Thu, 25 Oct 2001 23:59:31 +0200
gcc-3.0 (1:3.0.2ds4-1) unstable; urgency=medium
* Final gcc-3.0.2 release. The source tarball is not the released
tarball, but taken from CVS 011024).
* Remove patch for s390, included upstream.
-- Matthias Klose <doko@debian.org> Wed, 24 Oct 2001 00:49:40 +0200
gcc-3.0 (1:3.0.2ds3-0pre011014) unstable; urgency=low
* Update to CVS sources (011014). Frozen for upstream 3.0.2 release.
Closes: #109351, #114099, #114216, #105741 (allegro3938).
* Added debian/patches/fastjar.dpatch, which makes fastjar extract
filenames correctly (previously, some had incorrect names on extract).
Closes: #113236.
* Priorities fixed in the past (closes: #94404).
-- Matthias Klose <doko@debian.org> Sun, 14 Oct 2001 13:19:43 +0200
gcc-3.0 (1:3.0.2ds2-0pre010923) unstable; urgency=low
* Bootstraps on powerpc again (closes: #112777).
-- Matthias Klose <doko@debian.org> Sun, 23 Sep 2001 01:32:11 +0200
gcc-3.0 (1:3.0.2ds2-0pre010922) unstable; urgency=low
* Update to CVS sources (010922).
* Fixed upstream (closes: #111801). #105569 on hppa.
* Update hppa patch (Matt Taggart).
* Fix libstdc++-dev package description (closes: #112758).
* debian/rules.d/binary-objc.mk: Fix build error (closes: #112462).
* Make gobjc-3.0 conflict with gcc-3.0-sparc64 (closes: #111772).
-- Matthias Klose <doko@debian.org> Sat, 22 Sep 2001 09:34:49 +0200
gcc-3.0 (1:3.0.2ds1-0pre010908) unstable; urgency=low
* Update to CVS sources (010908).
* Update hppa patch (Matt Taggart).
* Depend on libgc6-dev, not libgc5-dev, which got obsolete (during
the freeze ...). However adds s390 support (closes: #110189).
* debian/patches/m68k-reload.dpatch: New patch (Roman Zippel).
Fixes #89023.
* debian/patches/gcc-sparc.dpatch: New patch ("David S. Miller").
Fixes libstdc++ testsuite failures on sparc.
-- Matthias Klose <doko@debian.org> Sat, 8 Sep 2001 14:26:20 +0200
gcc-3.0 (1:3.0.2ds0-0pre010826) unstable; urgency=low
* gcc-3.0-nof: Fix symlink to gcc-3.0-base doc directory.
* debian/patches/gcj-without-rpath: New patch.
* Remove self dependency on libgcj package.
* Handle diversions for upgrades from 3.0 and 3.0.1 -> 3.0.2
in gcc-3.0-sparc64 package.
* Build libg2c.a with -fPIC -DPIC and name the result libg2c-pic.a.
Link with this library to avoid linking with non-pic code.
Use this library when building dynamically loadable objects (python
modules, gimp plugins, ...), which need to be linked against g2c or
a library which is linked against g2c (i.e. lapack).
Packages needing '-lg2c-pic' must have a build dependency on
'g77-3.0 (>= 1:3.0.2-0pre010826).
-- Matthias Klose <doko@debian.org> Sun, 26 Aug 2001 13:59:03 +0200
gcc-3.0 (1:3.0.2ds0-0pre010825) unstable; urgency=low
* Update to CVS sources (010825).
* Add libc6-dev-sparc64 to gcc-3.0-sparc64 and to sparc build dependencies.
* Remove conflicts on egcc package (closes: #109718).
* Fix gcc-3.0-nof dependency.
* s390 patches against gcc-3.0.1 (Gerhard Tonn).
* debian/control: Require binutils (>= 2.11.90.0.27)
-- Matthias Klose <doko@debian.org> Sat, 25 Aug 2001 10:59:15 +0200
gcc-3.0 (1:3.0.1ds3-1) unstable; urgency=low
* Final gcc-3.0.1 release.
* Changed upstream: default of -flimit-inline is 600 (closes: #106716).
* Add fastjar man page (submitted by "The Missing Man Pages Project",
http://www.netmeister.org/misc/m2p2i/) (closes: #103051).
* Fixed in last upload as well: #105246.
* debian/patches/cpp-memory-leak.dpatch: New patch
* Disable installation of shared libgcc on s390 (Gerhard Tonn).
-- Matthias Klose <doko@debian.org> Mon, 20 Aug 2001 20:47:13 +0200
gcc-3.0 (1:3.0.1ds2-0pre010811) unstable; urgency=high
* Update to CVS sources (010811). Includes s390 support.
* Add xlibs-dev to Build-Depends (libgcj).
* Enable java for powerpc, disable java for ia64.
* Enable ObjC garbage collection for all archs, which have a libgc5-dev
package.
* New patch libstdc++-codecvt (Michael Piefel) (closes: #104614).
* Don't strip static libgcj library (work around binutils bug #107812).
* Handle diversions for upgrade 3.0 -> 3.0.1 in gcc-3.0-sparc64 package
(closes: #107569).
-- Matthias Klose <doko@debian.org> Sat, 11 Aug 2001 20:42:15 +0200
gcc-3.0 (1:3.0.1ds1-0pre010801) unstable; urgency=high
* Update to CVS sources (010801). (closes: #107012).
* Remove build dependency on non-free graphviz and include pregenerated
docs (closes: #107124).
* Fixed in 3.0.1 (closes: #99307).
* Updated m68k-updates patch (Roman Zippel).
* Another fix for ia64 packaging bits (Randolph Chung).
-- Matthias Klose <doko@debian.org> Tue, 31 Jul 2001 21:52:55 +0200
gcc-3.0 (1:3.0.1ds0-0pre010727) unstable; urgency=high
* Update to CVS sources (010727).
* Add epoch to source version. Change '.dsx' to 'dsx', so that
3.1.1ds0 gt 3.1ds7 (closes: #106538).
-- Matthias Klose <doko@debian.org> Sat, 28 Jul 2001 09:56:29 +0200
gcc-3.0 (3.0.1.ds0-0pre010723) unstable; urgency=high
* ia64 packaging bits (Randolph Chung) (closes: #106252).
-- Matthias Klose <doko@debian.org> Mon, 23 Jul 2001 23:02:03 +0200
gcc-3.0 (3.0.1.ds0-0pre010721) unstable; urgency=high
* Update to CVS sources (010721).
- Remove patches applied upstream: libstdc++-limits.dpatch,
objc-data-references
- Updated other patches.
* Fix gij alternative (closes: #103468, #103883).
* Patch to fix bootstrap on sparc (closes: #103568).
* Corrected (closes: #105371) and updated README.Debian.
* m68k patches for sucessful bootstrap (Roman Zippel).
* Add libstdc++v3 porting hints to README.Debian and README.C++.
* m68k md fix (#105622) (Roman Zippel).
* debian/rules2: Disable non-functional ulimit on Hurd (#105884).
* debian/control: Require binutils (>= 2.11.90.0.24)
* Java is enabled for alpha (closes: #87300).
-- Matthias Klose <doko@debian.org> Sun, 22 Jul 2001 08:24:04 +0200
gcc-3.0 (3.0.ds9-4) unstable; urgency=high
* Move this version to testing ASAP. testing still has a prerelease
version with now incompatible ABI's. If sparc doesn't build,
then IMHO it's better to remove it from testing.
* debian/control.m4: Set uploaders field. Adjust description of
gcc-3.0 (binary) package (closes: #102271, #102620).
* Separate gij.1 in it's own pseudo man page (closes: #99523).
* debian/patches/java-manpages.dpatch: New patch.
* libgcj: Install unversioned gij.
-- Matthias Klose <doko@debian.org> Tue, 3 Jul 2001 07:38:08 +0200
gcc-3.0 (3.0.ds9-3) unstable; urgency=high
* Reenable configuration with posix threads on i386 (lost in hurd-i386
merge).
-- Matthias Klose <doko@debian.org> Sun, 24 Jun 2001 22:21:45 +0200
gcc-3.0 (3.0.ds9-2) unstable; urgency=medium
* Move this version to testing ASAP. testing still has a prerelease
version with now incompatible ABI's.
* Add libgcc0 and libgcc300 to the build conflicts (#102041).
* debian/README.FIRST: Removed (#101534).
* Updated subreg-byte patch (doc files).
* Disable java for the Hurd, mips and mipsel (#101570).
* Patch for building on the Hurd (#101708) (Jeff Bailey <jbailey@nisa.net>).
* Packaging fixes for the Hurd (#101711) (Jeff Bailey <jbailey@nisa.net>).
* Include pregenerated doxygen (1.2.6) docs for libstdc++-v3 (#101557).
The current doxygen-1.2.8.1 segaults.
* C++: Enable -fuse-cxa-atexit by default (#101901).
* Correct mail address in gccbug (#101743).
* Make rules resumable after failure in binary-xxx targets (#101637).
-- Matthias Klose <doko@debian.org> Sun, 24 Jun 2001 16:04:53 +0200
gcc-3.0 (3.0.ds9-1) unstable; urgency=low
* Final 3.0 release.
* Update libgcc version number (#100983, #100988, #101069, #101115, #101328).
* Updated hppa-build patch (Matt Taggart <taggart@carmen.fc.hp.com>).
* Disable java for hppa.
* Updated subreg-byte patch for sparc (Ben Collins).
-- Matthias Klose <doko@debian.org> Mon, 18 Jun 2001 18:26:04 +0200
gcc-3.0 (3.0.ds8-0pre010613) unstable; urgency=low
* Update patches for recent (010613 23:13 +0200) CVS sources.
* Fix packaging bugs (#100459, #100447, #100483).
* Build-Depend on gawk, mawk doesn't work well with test_summary.
-- Matthias Klose <doko@debian.org> Wed, 13 Jun 2001 23:13:38 +0200
gcc-3.0 (3.0.ds7-0pre010609) unstable; urgency=low
* Fix build dependency for the hurd (#99164).
* Update patches for recent (010609) CVS sources.
* Disable java on powerpc (link error in libjava).
* gcc-3.0-base.postinst: Don't prompt for non-interactive installs (#100110).
-- Matthias Klose <doko@debian.org> Sun, 10 Jun 2001 09:45:57 +0200
gcc-3.0 (3.0.ds6-0pre010526) unstable; urgency=high
* Urgency "high" for replacing the gcc-3.0 snapshots in testing, which
now are incompatile due to the changed ABIs.
* Upstream begins tagging with "gcc-3_0_pre_2001mmdd".
* Tighten dependencies to install only binary packages derived from
one source (#98851). Tighten libc6-dev dependency to match libc6.
-- Matthias Klose <doko@debian.org> Sun, 27 May 2001 11:35:31 +0200
gcc-3.0 (3.0.ds6-0pre010525) unstable; urgency=low
* ATTENTION: The ABI (exception handling) changed. No upgrade path from
earlier snapshots (you had been warned in the postinst ...)
Closing #93597, #94576, #96448, #96461.
You have to rebuild
* HELP is appreciated for scanning the Debian BTS and sending followups
to bug reports!!!
* Should we name debian gcc uploads? What about a "still seeking
g++ maintainer" upload?
* Fixed in gcc-3.0: #97030
* Update patches for recent (010525) CVS sources.
* Make check depend on build target (fakeroot problmes).
* debian/rules.d/binary-libgcc.mk: new file, build first.
* Free memory detection on the hurd for running the testsuite.
* Update debhelper build dependency.
* libstdc++-doc: Include doxygen generated docs.
* Fix boring packaging bugs, too tired for appropriate changelogs ...
#93343, #96348, #96262, #97134, #97905, #96451, #95812, #93157
* Fixed bugs: #87000.
-- Matthias Klose <doko@debian.org> Sat, 26 May 2001 23:10:42 +0200
gcc-3.0 (3.0.ds5-0pre010510) unstable; urgency=low
* Update patches for recent (010506) CVS sources.
* New version of source, as of 2001-05-10
* New version of gpc source, as of 2001-05-06 (disabled by default).
* Make gcc-3.0-sparc64 provide an alternative for sparc64-linux-gcc,
since it can build kernels just fine (it seems)
* Add hppa patch from Matt Taggart
* Fix objc info inclusion...now merged with gcc info
* Do not install the .la for libstdc++, since it confuses libtool linked
applications when libstdc++3-dev and libstdc++2.10-dev are both
installed (closes #97905).
* Fixed gcc-base and libgcc section/prio to match overrides
-- Ben Collins <bcollins@debian.org> Mon, 7 May 2001 00:08:52 +0200
gcc-3.0 (3.0.ds5-0pre010427) unstable; urgency=low
* Fixed priority for fastjar from optional to extra
* New version of source, as of 2001-04-27
* Fix description of libgcj-dev
* libffi-install: Make libffi installable
* Add libffi and libffi-dev packages. libffi is only enabled for java
targets right now. Perhaps more will be enabled later.
* Fixes to build cross compiler package (for avr)
(Hakan Ardo <hakan@debian.org>).
* Better fixincludes description (#93157).
* Remove all remnants of libg++
* Remove all hacks around libstdc++ version. Since we are strictly v3 now,
we can treat it like a normal shared lib, and not worry about all those
ABI changes.
* Remove all cruft control scripts. Note, debhelper will create scripts
that it needs to. It will do the doc link stuff and the ldconfig stuff
explicitly.
* Clean up the SONAME parsing stuff, make it a little more cleaner over
all the lib packages
* Make libffi install when built (IOW, whenever java is enabled). This
should obsolete the libffi package, which is old and broken
* Revert to normal sonames, except for ia64 (for now)
* Remove all references to dh_testversion, since they are deprecated for
Build-Depends
* Fix powerpc nof build
* Remove all references to the MULTILIB stuff, since the arches are
using specialized builds anyway (nof, softfloat).
* Added 64bit sparc64 package (gcc-3.0-sparc64, libgcc0-sparc64)
* Removed obsolete shlibs.local file
-- Ben Collins <bcollins@debian.org> Sun, 15 Apr 2001 21:33:15 -0400
gcc-3.0 (3.0.ds4-0pre010403) unstable; urgency=low
* debian/README: Updated for gcc-3.0
* debian/rules.patch: Added subreg-byte patch for sparc
* debian/rules.unpack: Update to current CVS for gcc tarball name
* debian/patches/subreg-byte.dpatch: sparc subreg-byte support
* debian/patches/gcc-rawhide.dpatch: Removed
debian/patches/gpc-2.95.dpatch: Removed
debian/patches/sparc32-rfi.dpatch: Removed
debian/patches/temporary.dpatch: Removed
* Moving to unstable now
* debian/patches/gcc-ppc-disable-shared-libgcc.dpatch: New patch,
disables shared libgcc for powerpc target, since it isn't compatible
with the EABI objects.
* Create $(with_shared_libgcc) var
* debian/rules.d/binary-gcc.mk: Use this new variable to determine if
the libgcc package actually has any files
-- Ben Collins <bcollins@debian.org> Tue, 3 Apr 2001 23:00:55 -0400
gcc-3.0 (3.0.ds2-0pre010223) experimental; urgency=low
* New snapshot. Use distinct shared object names for shared libraries:
we don't know if binary API's still change until the final release.
* Versioned package names.
* debian/control.m4: New file. Add gcc-base, libgcc0, libobjc1,
libstdc++-doc, libgcj1, libgcj1-dev, fastjar, fixincludes packages.
Remove gcc-docs package.
* debian/gcov.1: Remove.
* debian/*: Remove 2.95.x support. Prepare for 3.0.
* debian/patches: Remove 2.95.x patches.
* Changed source package name. It's not allowed anymore to overwrite
source packages with different content. Introducing a 'debian source
element' (.ds<num>), which is stripped again from the version number
for the binary packages.
* Fixed bugs and added functionality:
#26436, #27878, #33786, #34876, #35477, #42662, #46181, #42989,
#47981, #48530, #50529, #51227, #51456, #51651, #52382, #53698,
#55291, #55967, #56867, #58219, #59005, #59232, #59776, #64628,
#65687, #67631, #68632, #68963, #68987, #69530, #72933, #75120,
#75759, #76645, #76827, #83221, #87540
* libgcj fixes: 42894, #51266, #68560, #71187, #79984
-- Matthias Klose <doko@debian.org> Sat, 24 Feb 2001 13:41:11 +0100
gcc-2.95 (2.95.3-2.001222) experimental; urgency=low
* New upstream version 2.95.3 experimental (CVS 20001222).
* debian/control.in: Versioned package names, removal of snapshot logic.
Remove fake gcc-docs package.
* Reserve -1 release numbers for woody.
* Updated to gpc-20001218.
-- Matthias Klose <doko@debian.org> Fri, 22 Dec 2000 19:53:03 +0100
gcc (2.95.2-20) unstable; urgency=low
* Apply patch from gcc-2_95-branch; remove ulimit for make check.
-- Matthias Klose <doko@debian.org> Sun, 10 Dec 2000 17:01:13 +0100
gcc (2.95.2-19) unstable; urgency=low
* Added testsuite-20001207 from current snapshots. We'll need results
for 2.95.2 to make sure there are no regressions against that release.
Dear build daemons and porters to other architectures, please send an
email to gcc-testresults@gcc.gnu.org.
You can do this by running "debian/rules mail-summary".
* Updated to gpc-20001206.
* Added S/390 patch prepared by Chu-yeon Park <kokids@debian.org> (#78983).
* debian/patches/libio.dpatch: Fix iostream doc (fixes #77647).
* debian/patches/gcc-doc.dpatch: Update URL (fixes #77542).
* debian/patches/gcc-reload1.dpatch Patch from the gcc-bug list which
fixes a problem in "long long" on i[345]86 (i686 was not affected).
-- Matthias Klose <doko@debian.org> Sat, 9 Dec 2000 12:30:32 +0100
gcc (2.95.2-18) unstable; urgency=low
* debian/control.in: Fix syntax errors (fixes #76146, #76458).
Disable gpc on the hurd by request (#75686).
* debian/patches/arm-various.dpatch: Patches from Philip Blundell
for ARM arch (fixes #75801).
* debian/patches/gcc-alpha-mi-thunk.dpatch: Patches from Chris Chimelis
for alpha arch.
* debian/patches/g77-docs.dpatch: Adjust g77 docs (fixes #72594).
* Update gpc to gpc-20001118.
* Reenable gpc for alpha.
* debian/README.C++: Merge debian/README.libstdc++ and C++ FAQ information
provided by Matt Zimmermann.
* Build gcj only on architectures, where libgcj-2.95.1 can be built as well.
Probably needs some adjustments ...
* Conditionalize for chill, fortran, java, objc and chill.
* NOT APPLIED:
debian/patches/libstdc++-bastring.dpatch: Apply fix (fixes #75759).
-- Matthias Klose <doko@debian.org> Sun, 19 Nov 2000 10:40:41 +0100
gcc (2.95.2-17) unstable; urgency=low
* Disable gpc for alpha.
* Include gpc-cpp in gpc package (fixes #74492).
* Don't build gcc-docs compatibility package anymore.
-- Matthias Klose <doko@debian.org> Wed, 11 Oct 2000 06:16:53 +0200
gcc (2.95.2-16) unstable; urgency=low
* Applied the emdebian/cross compiler patch and documentation
(Frank Smith <smith@amirix.com>).
* Applied patch for avr target (Hakan Ardo <hakan@debian.org>).
* debian/control.in: Add awk to Build-Depends.
Tighten libc6-dev dependency for libstdc++-dev (fixes #73031,
#72531, #72534).
* Disable libobjc_gc for m68k again (fixes #74380).
* debian/patches/arm-namespace.dpatch: Apply patch from Philip
Blundell <pb@futuretv.com> to fix name space pollution on arm
(fixes #70937).
* Fix more warnings in STL headers (fixes #69352, #71943).
-- Matthias Klose <doko@debian.org> Mon, 9 Oct 2000 21:51:41 +0200
gcc (2.95.2-15) unstable; urgency=low
* debian/control.in: Add libgc5-dev to build depends (fixes #67015).
* debian/rules.def: Build GC enabled ObjC runtime for sparc.
* Bug #58741 fixed (in some version since 2.95.2-5).
* debian/control.in: Recommend librx1g-dev, libgmp2-dev, libncurses5-dev
(unit dependencies).
* Patches from Marcus Brinkmann for the hurd (fixes #67763):
- debian/rules.defs: Disable objc_gc on hurd-i386.
Disable libg++ on GNU systems.
- debian/rules2: Set correct names of libstdc++/libg++
libraries on GNU systems.
Write out correct shlibs and shlibs.local file content.
- Keep _G_config.h for the Hurd.
* Apply patch for ObjC linker warnings.
* Don't apply gcj backport patch for sparc.
* Apply libio compatability patch
* debian/glibcver.sh: generate appropriate version for glibc
* debian/rules.conf: for everything after glibc 2.1, we always append
"-glibc$(ver)" to the C++ libs for linux.
* Back down gpc to -13 version (-14 wont compile on anything but i386
and m68k becuase of gpc).
* Remove extraneous and obsolete sparc64 patches/files from debian/*
-- Ben Collins <bcollins@debian.org> Thu, 21 Sep 2000 08:08:35 -0400
gcc-snapshot (20000901-2.2) experimental; urgency=low
* New snapshot.
* debian/rules2: Move tradcpp0 to cpp package.
-- Matthias Klose <doko@debian.org> Sat, 2 Sep 2000 01:14:28 +0200
gcc-snapshot (20000802-2.1) experimental; urgency=low
* New snapshot.
* debian/rules2: Fixes. tradcpp0 is in gcc package, not cpp.
-- Matthias Klose <doko@debian.org> Thu, 3 Aug 2000 07:40:05 +0200
gcc-snapshot (20000720-2) experimental; urgency=low
* New snapshot.
* Enable libstdc++-v3.
* debian/rules2: Don't use -D for /usr/bin/install.
-- Matthias Klose <doko@debian.org> Thu, 20 Jul 2000 22:33:37 +0200
gcc (2.95.2-14) unstable; urgency=low
* Update gpc patch.
-- Matthias Klose <doko@debian.org> Wed, 5 Jul 2000 20:51:16 +0200
gcc (2.95.2-13) frozen unstable; urgency=low
* Update debian/README: document how to compile 2.0.xx kernels; don't
register gcc272 as an alternative for gcc (closes #62419).
Clarify compiler setup (closes #65548).
* debian/control.in: Make libstdc++-dev depend on current version of g++.
* Undo CVS update from release -8 (problems on alpha, #55263).
-- Matthias Klose <doko@debian.org> Mon, 19 Jun 2000 23:06:48 +0200
gcc (2.95.2-12) frozen unstable; urgency=low
* debian/gpc.postinst: Correct typo introduced with -11 (fixes #64193).
* debian/patches/gcc-rs600.dpatch: ppc codegen fix (fixes #63933).
-- Matthias Klose <doko@debian.org> Sun, 21 May 2000 15:56:05 +0200
gcc (2.95.2-11) frozen unstable; urgency=medium
* Upload to unstable again (fixes critical #63784).
* Fix doc-base files (fixes important #63810).
* gpc wasn't built in -10 (fixes #63977).
* Make /usr/bin/pc an alternative (fixes #63888).
* Add SYSCALLS.c.X to gcc package.
-- Matthias Klose <doko@debian.org> Sun, 14 May 2000 22:17:44 +0200
gcc (2.95.2-10) frozen; urgency=low
* debian/control.in: make gcc conflict on any version of egcc
(slink to potato upgrade problem, fixes grave #62084).
* Build protoize programs, separate out in new package (fixes #59436,
#62911).
* Create dummy gcc-docs package for smooth update from slink (fixes #62537).
* Add doc-base support for all -doc packages (fixes #63380).
-- Matthias Klose <doko@debian.org> Mon, 1 May 2000 22:24:28 +0200
gcc (2.95.2-9) frozen unstable; urgency=low
* Disable the sparc-bi-arch.dpatch (patch from Ben Collins, built
for sparc as NMU 8.1) (fixes critical #61529 and #61511).
"Seems that when you compile gcc 2.95.x for sparc64-linux and compile
sparc32 programs, the code is not the same as sparc-linux compile for
sparc32 (this is a bug, and is fixed in gcc 2.96 CVS)."
* debian/patches/gcj-vs-iconv.dpatch: Option '--encoding' for
encoding of input files. Patch from Tom Tromey <tromey@cygnus.com>
backported to 2.95.2 (fixes #42895).
Compile a Latin-1 encoded file with `gcj --encoding=Latin1 ...'.
* debian/control.in: gcc, g++ and gobjc suggest their corresponding
task packages (fixes #59623).
-- Matthias Klose <doko@debian.org> Sat, 8 Apr 2000 20:19:15 +0200
gcc (2.95.2-8) frozen unstable; urgency=low
* Post-2.95.2 CVS updates of the gcc-2_95-branch until 20000313.
* debian/rules2: configure with --enable-java-gc=no for sparc. Fixes
gcj side of #60535.
* debian/rules.patch: Disable gcc-emit-rtl patch for all archs but
alpha. Disable g++-is-tree patch ("just for 2.95.1").
* debian/README: Update for gcc-2.95.
-- Matthias Klose <doko@debian.org> Mon, 27 Mar 2000 00:03:16 +0200
gcc (2.95.2-7) frozen unstable; urgency=low
* debian/patches/gcc-empty-struct-init.dpatch; Apply patch from
http://gcc.gnu.org/ml/gcc-patches/2000-02/msg00637.html. Fixes
compilation of 2.3.4x kernels.
* debian/patches/gcc-emit-rtl.dpatch: Apply patch from David Huggins-Daines
<dhuggins@linuxcare.com> (backport from 2.96 CVS to fix #55263).
* debian/patches/gcc-pointer-arith.dpatch: Apply patch from Jim Kingdon
<kingdon@redhat.com> (backport from 2.96 CVS to fix #54951).
-- Matthias Klose <doko@debian.org> Thu, 2 Mar 2000 23:16:43 +0100
gcc (2.95.2-6) frozen unstable; urgency=low
* Post-2.95.2 CVS updates of the gcc-2_95-branch until 20000220.
* Remove dangling symlink probably left over from libstdc++2.9
package (fixes #53661).
* debian/patches/gcc-alpha-complex-float.dpatch: Fixed patch by
David Huggins-Daines (fixes #58486).
* debian/g++.{postinst,prerm}: Remove outdated g++FAQ registration
(fixes #58253).
* debian/control.in: gcc-doc replaces gcc-docs (fixes #58108).
* debian/rules2: Include some fixed headers (asm, bits, linux, ...).
* debian/patches/{gcc-alpha-ev5-fix,libstdc++-valarray}.dpatch: Remove.
Applied upstream.
* debian/patches/libstdc++-bastring.dpatch: Add patch from
sicard@bigruth.solsoft.fr (fixes #56715).
-- Matthias Klose <doko@debian.org> Sun, 20 Feb 2000 15:08:13 +0100
gcc (2.95.2-5) frozen unstable; urgency=low
* Post-2.95.2 CVS updates of the gcc-2_95-branch until 20000116.
* Add more build dependencies (fixes #53204).
* debian/patches/gcc-alpha-complex-float.dpatch: Patch from
Joel Klecker <jk@espy.org> to compile glibc correctly on alpha.
"Should fix the g77 problems too."
* debian/patches/{libio,libstdc++-wall2}.dpatch. Remove patches
applied upstream.
-- Matthias Klose <doko@debian.org> Sun, 16 Jan 2000 19:16:54 +0100
gcc (2.95.2-4) unstable; urgency=low
* debian/patches/libio.dpatch: Patch from Martin v. Loewis.
(fixes: #35628).
* debian/patches/libstdc++-deque.dpatch: Patch from Martin v. Loewis.
(fixes: #52689).
* debian/control.in: Updated Build-Depends, removed outdated README.build.
Fixes #51246.
* Tighten dependencies to cpp (>= 2.95.2-4) (closes: #50294).
* debian/rules.patch: Really do not apply patches/gcj-backport.dpatch.
Fixes #51636.
* Apply updated sparc-bi-arch.dpatch from Ben Collins.
* libstdc++: Define wstring type, if __ENABLE_WSTRING is defined. Request
from the author of the War FTP Daemon for Linux ("Jarle Aase"
<jgaa@jgaa.com>).
* debain/g++.preinst: Remove dangling sysmlinks (fixes #52359).
-- Matthias Klose <doko@debian.org> Sun, 19 Dec 1999 21:53:48 +0100
gcc (2.95.2-3) unstable; urgency=low
* debian/rules2: Don't install $(gcc_lib_dir)/include/asm; these are
headers fixed for glibc-1.x (closes: #49434).
* debian/patches/cpp-dos-newlines.dpatch: Keep CR's without
following LF (closes: #49186).
* Bug #37358 (internal compiler errors when building vdk_0.6.0-5)
fixed in gcc-2.95.? (closes: #37358).
* Apply patch gcc-alpha-ev5-fix from Richard Henderson <rth@cygnus.com>
(should fix #48527 and #46963).
* debian/README.Bugs: Documented non bug #44554.
* Applied patch from Alexandre Oliva to fix gpc boostrap on alpha.
Reenabled gpc on all architectures.
* Post-2.95.2 CVS updates of the gcc-2_95-branch until 19991108.
* Explicitely generate postinst/prerm chunks for usr/doc transition.
debhelper currently doesn't handle generation for packages with
symlinked directories.
* debian/patches/libstdc++-wall3.dpatch: Fix warnings in stl_deque.h
and stl_rope.h (closes: #46444, #46720).
* debian/patches/gcj-backport.dpatch: Add file, don't apply (yet).
-- Matthias Klose <doko@debian.org> Wed, 10 Nov 1999 18:58:45 +0100
gcc (2.95.2-2) unstable; urgency=low
* New gpc-19991030 snapshot.
* Post-2.95.2 CVS updates of the gcc-2_95-branch until 19991103.
* Reintegrated sparc patches (bcollins@debian.org), which were lost
in 2.95.2-1.
* debian/rules2: Only install $(gcc_lib_dir)/include/asm, when existing.
* debian/patches/gpc-2.95.{dpatch,diff}: updated patch to drop
initialization in stor-layout.c.
* debian/NEWS.gcc: Updated for gcc-2.95.2.
* debian/bugs/bug-...: Removed testcases for fixed bugs.
* debian/patches/...dpatch: Removed patches applied upstream.
* debian/{rules2,g++.postinst,g++.prerm}: Handle c++ alternative.
* debian/changelog: Merged gcc272, egcs and snapshot changelogs.
-- Matthias Klose <doko@debian.org> Tue, 2 Nov 1999 23:09:23 +0200
gcc (2.95.2-1.1) unstable; urgency=low
* Most of the powerpc patches have been applied upstream. Remove all
but ppc-ice, ppc-andrew-dwarf-eh, and ppc-descriptions.
* mulilib-install.dpatch was definitely a bad idea. Fix it properly
by using install -D.
* Also, don't make directories before installing any more. Simplifies
rules a (tiny) bit.
* Do not build with LDFLAGS=-s. Everything gets stripped out anyway by
dh_strip -a -X_debug; so leave the binaries in the build tree with
debugging symbols for simplified debugging of the packages.
-- Daniel Jacobowitz <dan@debian.org> Sat, 30 Oct 1999 12:40:12 -0400
gcc (2.95.2-1) unstable; urgency=low
* gcc-2.95.2 release (taken from the CVS archive). -fstrict-aliasing
is disabled upstream.
-- Matthias Klose <doko@debian.org> Mon, 25 Oct 1999 10:26:19 +0200
gcc (2.95.2-0pre4) unstable; urgency=low
* Updated to cvs updates of the gcc-2_95-branch until 19991021.
* Updated gpc to gpc-19991018 snapshot (closes: #33037, #47453).
Enable gpc for all architectures ...
* Document gcc exit codes (closes: #43863).
* According to the bug submitter (Sergey V Kovalyov <sqk0316@scires.nyu.edu>)
the original source of these CERN librarties is outdated now. The latest
version of cernlibs compiles and works fine with slink (closes #31546).
* According to the bug submitter (Gergely Madarasz <gorgo@sztaki.hu>),
the problem triggered on i386 cannot be reproduced with the current
jade and php3 versions anymore (closes: #35215).
* Replace corrupted m68k-pic.dpatch (from Roman Hodek and Andreas Schwab
<Roman.Hodek@informatik.uni-erlangen.de> <schwab@suse.de> and apply to
all architectures (closes: #48011).
* According to the bug submitter (Herbert Xu <herbert@gondor.apana.org.au>)
this bug "probably has been fixed". Setting it to severity "fixed"
(fixes: #39616), will close it later ...
* debian/README.Bugs: Document throwing C++ exceptions "through" C
libraries (closes: #22769).
-- Matthias Klose <doko@debian.org> Fri, 22 Oct 1999 20:33:00 +0200
gcc (2.95.2-0pre3) unstable; urgency=low
* Updated to cvs updates of the gcc-2_95-branch until 19991019.
* Apply NMU patches (closes: #46217).
* debian/control.in: Fix egcs64 conflict-dependency for sparc
architecture (closes: #47088).
* debian/rules2: dbg-packages share doc dir with lib packages
(closes #45067).
* debian/patches/gcj-debian-policy.dpatch: Patch from Stephane
Bortzmeyer to conform to Debian policy (closes: #44463).
* debian/bugs/bug-*: Added test cases for new bug reports.
* debian/patches/libstdc++-bastring.dpatch: Patch by Richard Kettlewell
(closes #46550).
* debian/rules.patch: Apply libstdc++-wall2 patch (closes #46609).
* debian/README: Fix typo (closes: #45253).
* debian/control.in: Remove primary/secondary distinction;
dbg-packages don't provide their normal counterparts (closes #45206).
* debian/rules.patch: gcc-combine patch applied upstream.
* debian/rules2: Only use mail if with_check is set (off by default).
* debian/rules.conf: Tighten binutils dependency to 2.9.5.0.12.
-- Matthias Klose <doko@debian.org> Tue, 19 Oct 1999 20:33:00 +0200
gcc (2.95.2-0pre2.0.2) unstable; urgency=HIGH (for m68k)
* Binary-only NMU for m68k as quick fix for another bug; the patch
is in CVS already, too.
* Applied another patch by Andreas Schwab to fix %a5 restauration in
some cases.
-- Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de> Thu, 30 Sep 1999 16:09:15 +0200
gcc (2.95.2-0pre2.0.1) unstable; urgency=HIGH (for m68k)
* Binary-only NMU for m68k as quick fix for serious bugs; the patches
are already checked into gcc CVS and should be in the next official
version, too.
* Applied two patches by Andreas Schwab to fix -fpic and loop optimization.
-- Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de> Mon, 27 Sep 1999 15:32:49 +0200
gcc (2.95.2-0pre2) unstable; urgency=low
* Fixed in 2.95.2 (closes: #43478).
* Previous version had Pascal examples missing in doc directory.
-- Matthias Klose <doko@debian.org> Wed, 8 Sep 1999 22:18:17 +0200
gcc (2.95.2-0pre1) unstable; urgency=low
* Updated to cvs updates of the gcc-2_95-branch until 19990828.
* Apply work around memory corruption (just for 2.95.1) by
Daniel Jacobowitz <dan@debian.org>.
* debian/patches/libstdc++-wall2.dpatch: Patch from Franck Sicard
<sicard@miniruth.solsoft.fr> to fix some warnings (closes: #44670).
* debian/patches/libstdc++-valarray.dpatch: Patch from Hideaki Fujitani
<fjtani@flab.fujitsu.co.jp> to fix a bug in valarray_array.h.
* Applied NMU from Jim Pick minus the jump.c and fold-const.c patches
already in the gcc-2_95-branch (closes: #44690).
* Conform to debian-java policy (closes: #44463).
* Move docs to /usr/share/doc (closes: #44782).
* Remove debian/patches/gcc-align.dpatch applied upstream.
* debian/*.postinst: Call install-info only, when configuring.
* debian/*.{postinst,prerm}: Add #DEBHELPER# comments to handle
/usr/doc -> /usr/share/doc transition.
-- Matthias Klose <doko@debian.org> Wed, 8 Sep 1999 22:18:17 +0200
gcc (2.95.1-2.1) unstable; urgency=low
* Non-maintainer upload.
* ARM platform no longer needs library-prefix patch.
* Updated patches from Philip Blundell.
-- Jim Pick <jim@jimpick.com> Wed, 8 Sep 1999 20:14:07 -0700
gcc (2.95.1-2) unstable; urgency=low
* debian/gcc.{postinst,prerm}: gcc provides an alternative for
sparc64-linux-gcc.
* Applied patch from Ben Collins to enable bi-architecture (32/64)
support for sparc.
* Rebuild debian/control and debian/rules.parameters after unpacking.
* debian/rules2: binary-indep. Conditionalize on with_pascal.
-- Matthias Klose <doko@debian.org> Sat, 4 Sep 1999 13:47:30 +0200
gcc (2.95.1-1) unstable; urgency=low
* Updated to release gcc-2.95.1 and cvs updates of the gcc-2_95-branch
until 19990828.
* debian/README.gcc: Updated NEWS file to include 2.95 and 2.95.1 news.
* debian/README.java: New file.
* debian/rules.defs: Disabled gpc for alpha, arm. Disabled ObjC-GC
for alpha.
* debian/rules [clean]: Remove debian/rules.parameters.
* debian/rules2 [binary-arch]: Call dh_shlibdeps with LD_LIBRARY_PATH set
to installation dir of libstdc++. Why isn't this the default?
* debian/control.in: *-dev packages do not longer conflict with
libg++272-dev package.
* Apply http://egcs.cygnus.com/ml/gcc-patches/1999-08/msg00599.html.
* Only define BAD_THROW_ALLOC, when using exceptions (fixes #43462).
* For ObjC (when configured with GC) recommend libgc4-dev, not libgc4.
* New version of 68060 build patch.
* debian/rules.conf: For m68k, depend on binutils version 2.9.1.
-- Matthias Klose <doko@debian.org> Sat, 28 Aug 1999 18:16:31 +0200
gcc (2.95.1-0pre2) unstable; urgency=medium
* gpc is back again (fixes grave #43022).
* debian/patches/gpc-updates.dpatch: Patches sent to upstream authors.
* Work around the fatal dependtry assertion failure bug in dpkg (hint
from "Antti-Juhani Kaijanaho" <ajk@debian.org>, fixes important #43072).
-- Matthias Klose <doko@debian.org> Mon, 16 Aug 1999 19:34:14 +0200
gcc (2.95.1-0pre1) unstable; urgency=low
* Updated to cvs 19990815 gcc-2_95-branch; included install docs and
FAQ from 2.95 release; upload source package as well.
* Source package contains tarballs only (gcc, libg++, installdocs).
* debian/rules: Splitted into debian/rules{,.unpack,.patch,.conf,2}.
* debian/gcc.postinst: s/any key/RETURN; warn only when upgrading from
pre 2.95 version; reference /usr/doc, not /usr/share/doc.
* Checked syntax for attributes of functions; checked for #35068;
checked for bad gmon.out files (at least with libc6 2.1.2-0pre5 and
binutils 2.9.1.0.25-2 the problem doesn't show up anymore).
* debian/patches/cpp-macro-doc.dpatch: Document macro varargs in cpp.texi.
* gcc is primary compiler for all platforms but m68k. Setting
severity of #22513 to fixed.
* debian/patches/gcc-default-arch.dpatch: New patch to enable generation
of i386 instruction as default (fixes #42743).
* debian/rules: Removed outdated gcc NEWS file (fixes #42742).
* debian/patches/libstdc++-out-of-mem.dpatch: Throw exception instead
of aborting when out of memory (fixes #42622).
* debian/patches/cpp-dos-newlines.dpatch: Handle ibackslashes after
DOS newlines (fixes #29240).
* Fixed in gcc-2.95.1: #43001.
* Bugs closed in this version:
Closes: #11525, #12253, #22513, #29240, #35068, #36182, #42584, #42585,
#42602, #42622, #42742 #42743, #43001, #43002.
-- Matthias Klose <doko@debian.org> Sun, 15 Aug 1999 10:31:50 +0200
gcc (2.95-3) unstable; urgency=high
* Provide /lib/cpp again (fixes important bug #42524).
* Updated to cvs 19990805 gcc-2_95-branch.
* Build with the default scheduler.
* Apply install-multilib patch from Dan Jacobowitz.
* Apply revised cpp-A- patch from Dan Jacobowitz.
-- Matthias Klose <doko@debian.org> Fri, 6 Aug 1999 07:25:19 +0200
gcc (2.95-2) unstable; urgency=low
* Remove /lib/cpp. This driver uses files from /usr/lib/gcc-lib anyway.
* The following bugs are fixed (compared to egcs-1.1.2).
Closes: #4429, #20889, #21122, #26369, #28417, #28261, #31416, #35261,
#35900, #35906, #38246, #38872, #39098, #39526, #40659, #40991, #41117,
#41290, #41302, #41313.
* The following by Joel Klecker:
- Adopt dpkg-architecture variables.
- Go back to SHELL = bash -e or it breaks where /bin/sh is not bash.
- Disabled the testsuite, it is not included in the gcc 2.95 release.
-- Matthias Klose <doko@debian.org> Sat, 31 Jul 1999 18:00:42 +0200
gcc (2.95-1) unstable; urgency=low
* Update for official gcc-2.95 release.
* Built without gpc.
* debian/rules: Remove g++FAQ from rules, which is outdated.
For ix86, build for i386, not i486.
* Apply patch from Jim Pick for building multilib package on arm.
-- Matthias Klose <doko@debian.org> Sat, 31 Jul 1999 16:38:21 +0200
gcc (2.95-0pre10) unstable; urgency=low
* Use ../builddir-gcc-$(VER) by default instead of ./builddir; upstream
strongly advises configuring outside of the source tree, and it makes
some things much easier.
* Add patch to prevent @local branches to weak symbols on powerpc (fixes
apt compilation).
* Add patch to make cpp -A- work as expected.
* Renamed debian/patches/ppc-library-prefix.dpatch to library-prefix.dpatch;
apply on all architectures.
* debian/control.in: Remove snapshot dependencies.
* debian/*.postinst: Reflect use of /usr/share/{info,man}.
-- Daniel Jacobowitz <dan@debian.org> Thu, 22 Jul 1999 19:27:12 -0400
gcc (2.95-0pre9) unstable; urgency=low
* The following bugs are fixed (compared to egcs-1.1.2): #4429, #20889,
#21122, #26369, #28417, #28261, #35261, #38246, #38872, #39526, #40659,
#40991, #41117, #41290.
* Updated to CVS gcc-19990718 snapshot.
* debian/control.in: Removed references to egcs in descriptions.
Changed gcj's Recommends libgcj-dev to Depends.
* debian/rules: Apply ppc-library-prefix for alpha as well.
* debian/patches/arm-config.dpatch: Updated patch sent by Jim Pick.
-- Matthias Klose <doko@debian.org> Sun, 18 Jul 1999 12:21:07 +0200
gcc (2.95-0pre8) unstable; urgency=low
* Updated CVS.
* debian/copyright: s%doc/copyright%share/common-licenses%
* debian/README.Bugs: s/egcs.cygnus.com/gcc.gnu.org/ s/egcs-bugs/gcc-bugs/
* debian/patches/reporting.dpatch: Remake diff for current sources.
* debian/libstdc++-dev.postinst: It's /usr/share/info/iostream.info.
* debian/rules: Current dejagnu snapshot reports a framework version
of 1.3.1.
-- Joel Klecker <espy@debian.org> Sun, 18 Jul 1999 02:09:57 -0700
gcc-snapshot (19990714-0pre6) experimental; urgency=low
* Updated to CVS gcc-19990714 snapshot.
* Applied ARM patch (#40515).
* Converted DOS style linefeeds in debian/patches/ppc-* files.
* debian/rules: Reflect change in gcc/version.c; use sh -e as shell:
for some obscure reason, bash -e doesn't work.
* Reflect version change for libstdc++ (2.10). Remove libg++-name
patch; libg++ now has version 2.8.1.3. Removed libc version from
the package name.
-- Matthias Klose <doko@debian.org> Wed, 14 Jul 1999 18:43:57 +0200
gcc-snapshot (19990625-0pre5.1) experimental; urgency=low
* Non-maintainer upload.
* Added ARM specific patch.
-- Jim Pick <jim@jimpick.com> Tue, 29 Jun 1999 22:36:08 -0700
gcc-snapshot (19990625-0pre5) experimental; urgency=low
* Updated to CVS gcc-19990625 snapshot.
-- Matthias Klose <doko@debian.org> Fri, 25 Jun 1999 16:11:53 +0200
gcc-snapshot (19990609-0pre4.1) experimental; urgency=low
* Added and re-added a few last PPC patches.
-- Daniel Jacobowitz <dan@debian.org> Sat, 12 Jun 1999 16:48:01 -0500
gcc-snapshot (19990609-0pre4) experimental; urgency=low
* Updated to CVS egcs-19990611 snapshot.
-- Matthias Klose <doko@debian.org> Fri, 11 Jun 1999 10:20:09 +0200
gcc-snapshot (19990609-0pre3) experimental; urgency=low
* CVS gcc-19990609 snapshot.
* New gpc-19990607 snapshot.
-- Matthias Klose <doko@debian.org> Wed, 9 Jun 1999 19:40:44 +0200
gcc-snapshot (19990524-0pre1) experimental; urgency=low
* egcs-19990524 snapshot.
* First snapshot of the gcc-2_95-branch. egcs-1.2 is renamed to gcc-2.95,
which is now the "official" successor to gcc-2.8.1. The full version
name is: gcc-2.95 19990521 (prerelease).
* debian/control.in: Changed maintainers to `Debian GCC maintainers'.
* Moved all version numbers to epoch 1.
* debian/rules: Major changes. The support for secondary compilers
was already removed for the egcs-1.2 snapshots. Many fixes by
Joel Klecker <espy@debian.org>.
- Send mail to Debian maintainers for successful builds.
- Fix VER and VERNO sed expressions.
- Replace remaining GNUARCH occurrences.
* New gpc snapshot (but don't build).
* debian/patches/valarray.dpatch: Backport from libstdc++-v3.
* debian/gcc-doc.*: Info is now gcc.info* (Joel Klecker <espy@debian.org>).
* Use cpp driver provided by the package.
* New script c89 (fixes #28261).
-- Matthias Klose <doko@debian.org> Sat, 22 May 1999 16:10:36 +0200
egcs (1.1.2-2) unstable; urgency=low
* Integrate NMU's for arm and sparc (fixes #37582, #36857).
* Apply patch for the Hurd (fixes #37753).
* Describe open bugs in TODO.Debian. Please have a look if you can help.
* Update README / math functions section (fixes #35906).
* Done by J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl>:
- At Richard Braakman's request, made -dbg packages for libstdc++
and libg++.
- Provide egcc(1) (fixes lintian error).
-- Matthias Klose <doko@debian.org> Sun, 16 May 1999 14:30:56 +0200
egcs-snapshot (19990502-1) experimental; urgency=low
* New snapshot.
-- Matthias Klose <doko@debian.org> Thu, 6 May 1999 11:51:02 +0200
egcs-snapshot (19990418-2) experimental; urgency=low
* Merged Rays changes to build debug packages.
-- Matthias Klose <doko@debian.org> Wed, 21 Apr 1999 16:54:56 +0200
egcs-snapshot (19990418-1) experimental; urgency=low
* New snapshot.
* Disable cpplib.
-- Matthias Klose <doko@debian.org> Mon, 19 Apr 1999 11:32:19 +0200
egcs (1.1.2-1.2) unstable; urgency=low
* NMU for arm
* Added arm-optimizer.dpatch with optimizer workaround for ARM
-- Jim Pick <jim@jimpick.com> Mon, 19 Apr 1999 06:17:13 -0700
egcs (1.1.2-1.1) unstable; urgency=low
* NMU for sparc
* Included dpatch to modify the references to gcc/crtstuff.c so that
__register_frame_info is not a weak reference. This allows potato to
remain binary compatible with slink, while still retaining compatibility
with other sparc/egcs1.1.2 distributions. Diff in .dpatch format has
been sent to the maintainer with a note it may not be needed for 1.1.3.
-- Ben Collins <bcollins@debian.org> Tue, 27 Apr 1999 10:15:03 -0600
egcs (1.1.2-1) unstable; urgency=low
* Final egcs-1.1.2 release built for potato as primary compiler
for all architectures except m68k.
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Thu, 8 Apr 1999 13:14:29 +0200
egcs-snapshot (19990321-1) experimental; urgency=low
* New snapshot.
* Disable gpc.
* debian/rules: Simplified (no secondary compiler, bumped all versions
to same epoch, libapi patch is included upstream).
* Separated out cpp documentation to cpp-doc package.
* Fixed in this version: #28417.
-- Matthias Klose <doko@debian.org> Tue, 23 Mar 1999 02:11:18 +0100
egcs (1.1.2-0slink2) stable; urgency=low
* Applied H.J.Lu's egcs-19990315.linux patch.
* Install faq.html and egcs-1.1.2 announcment.
-- Matthias Klose <doko@debian.org> Tue, 23 Mar 1999 01:14:54 +0100
egcs (1.1.2-0slink1) stable; urgency=low
* Final egcs-1.1.2 release; compiled with glibc-2.0 for slink on i386.
* debian/control.in: gcc provides egcc, when FIRST_PRIMARY defined.
* Fixes #30767, #32278, #34252, #34352.
* Don't build the libstdc++.so.2.9 library on architectures, which have
switched to glibc-2.1.
-- Matthias Klose <doko@debian.org> Wed, 17 Mar 1999 12:55:59 +0100
egcs (1.1.1.63-2.2) unstable; urgency=low
* Non-maintainer upload.
* Incorporate patch from Joel Klecker to fix snapshot packages
by moving/removing the application of libapi.
* Disable the new libstdc++-dev-config and the postinst message in
glibc 2.1 versions.
-- Daniel Jacobowitz <dan@debian.org> Mon, 12 Mar 1999 14:16:02 -0500
egcs (1.1.1.63-2.1) unstable; urgency=low
* Non-maintainer upload.
* Compile with glibc 2.1 release version.
* New upstream version egcs-1.1.2 pre3.
* Miscellaneous rules updates (see changelog.snapshot).
* New set of powerpc-related patches from Franz Sirl,
<fsirl@kernel.crashing.org>.
* Disable libgcc.dpatch (new solution implemented upstream). Remove it.
* Also pass $target to config.if.
* Enable Dwarf2 EH for powerpc. Bump the C++ binary version. No
loss in -backwards- compatibility as far as I can tell, so add a
compatibility symlink, and add to shlibs file.
* Add --no-backup-if-mismatch to the debian/patches/*.dpatch files,
to prevent bogus .orig's in diffs.
* Merged with (unreleased) 1.1.1.62-1 and 1.1.1.63-{1,2} packages from
Matthias Klose <doko@debian.org>.
* Stop adding a backwards compatibility link for egcs-nof on powerpc.
To my knowledge, nothing uses it. Do add the libstdc++ API change
link, though.
-- Daniel Jacobowitz <dan@debian.org> Mon, 8 Mar 1999 14:24:01 -0500
egcs (1.1.1.63-2) stable; urgency=low
* Provide a libstdc++ with a shared object name, which is compatible
to other distributions. Documented the change in README.Debian,
the libstdc++-2.9.postinst and the libstdc++-dev-config script.
-- Matthias Klose <doko@debian.org> Fri, 12 Mar 1999 00:36:20 +0100
egcs (1.1.1.63-1.1) unstable; urgency=low
* Non-Maintainer release.
* Build against glibc 2.1.
* Make egcs the primary compiler on i386.
* Also confilct with egcc (<< FIRST_PRIMARY)
if FIRST_PRIMARY is defined.
(this tells dpkg that gcc completely obsoletes egcc)
* Remove hjl-12 patch again, HJL says it should not be
necessary with egcs 1.1.2.
(as per forwarded reply from Christopher Chimelis)
* Apply libapi patch in clean target before regenerating debian/control
and remove the patch afterward. Otherwise, the libstdc++ and libg++
package names are generated wrong on a glibc 2.1 system.
-- Joel Klecker <espy@debian.org> Tue, 9 Mar 1999 15:31:02 -0800
egcs (1.1.1.63-1) unstable; urgency=low
* New upstream version egcs-1.1.1-pre3.
* Applied improved libstdc++ warning patch from Rob Browning.
-- Matthias Klose <doko@debian.org> Tue, 9 Mar 1999 16:14:07 +0100
egcs (1.1.1.62-1) unstable; urgency=low
* New upstream version egcs-1.1.1-pre2.
* New upstream version libg++-2.8.1.3.
* Readded ARM support
* Readded hjl-12 per request from Christopher C Chimelis
<chris@classnet.med.miami.edu>
-- Matthias Klose <doko@debian.org> Fri, 26 Feb 1999 09:54:01 +0100
egcs-snapshot (19990224-0.1) experimental; urgency=low
* New snapshot.
* Add the ability to disable CPPLIB by setting CPPLIB=no in
the environment.
* Disable gpc for powerpc; I spent a long time getting it to
make correctly, and then it goes and ICEs.
-- Daniel Jacobowitz <dan@debian.org> Tue, 24 Feb 1999 23:34:12 -0500
egcs (1.1.1.61-1) unstable; urgency=low
* New upstream version egcs-1.1.1-pre1.
* debian/control.in: Applied patch from bug report #32987.
* Split up H.J.Lu's hjl-19990115-linux patch into several small
chunks: libapi, arm-mips, libgcc, hjl-other. The changelog.Linux
aren't included in the separate chunks. Please refer to the
unmodified hjl-19990115-linux patch file in the egcs source pkg.
* Apply warning patch to fix the annoying spew you get if you try to
use ropes or deques with -Wall (which makes -Wall mostly useless for
spotting errors in your own code). Fixes #32996.
* debian/rules: Unapply patches in the exact reverse order they were
applied.
-- Matthias Klose <doko@debian.org> Sat, 20 Feb 1999 22:06:21 +0100
egcs (1.1.1-5) frozen unstable; urgency=medium
* Move libgcc.map file to g++ package, where gcc is the secondary
compiler (fixes #32329, #32605, #32631).
* Prepare to rename libstdc++2.9 package for glibc-2.1 (fixes #32148).
* Apply NMU patch for arm architecure (fixes #32367).
* Don't apply hjl-12 patch for alpha architectures (requested by the
alpha developers, Christopher C Chimelis <chris@classnet.med.miami.edu>).
* Call makeinfo with --no-validate to fix obscure build failure on alpha.
* Build gpc info files in doc subdirectory.
* Remove c++filt diversion (C++ name demangling patch is now in binutils,
fixes #30820 and #32502).
-- Matthias Klose <doko@debian.org> Sun, 31 Jan 1999 23:19:35 +0100
egcs (1.1.1-4.1) unstable; urgency=low
* Non-maintainer upload.
* Pascal doesn't build for ARM.
-- Jim Pick <jim@jimpick.com> Sun, 24 Jan 1999 16:13:34 -0800
egcs (1.1.1-4) frozen unstable; urgency=high
* Don't strip compiler libraries libgcc.a libobjc.a libg2c.a libgpc.a
* Move Pascal examples to the right place (fixes #32149, part 1).
* Add dependencies for switching from secondary to primary compiler,
if FIRST_PRIMARY is defined (fixes #32149, part 2).
-- Matthias Klose <doko@debian.org> Wed, 20 Jan 1999 16:51:30 +0100
egcs (1.1.1-3) frozen unstable; urgency=low
* Updated with the H.J.Lu's hjl-19990115-linux patch (fixes the
__register_frame_info problems, mips and arm port included).
* Update gpc to 19990118 (beta release candidate).
* Strip static libraries (fixes #31247 and #31248).
* Changed maintainer address.
-- Matthias Klose <doko@debian.org> Tue, 19 Jan 1999 16:34:28 +0100
egcs (1.1.1-2) frozen unstable; urgency=low
* Moved egcs-docs, g77-doc and gpc-doc packages to doc section.
* Downgraded Recommends: egcs-docs to Suggests: egcs-docs dependencies
(for archs, where egcs is the primary compiler).
* Add 'Suggests: stl-manual' dependency to libstdc++2.9-dev.
* Applied one more alpha patch:
ftp://ftp.yggdrasil.com/private/hjl/egcs/1.1.1/egcs-1.1.1.diff.12.gz
* Applied PPro optimization patch.
* Apply emit-rtl-nan patch.
* Upgraded to libg++-2.8.1.2a-19981218.tar.gz.
* Upgraded to gpc-19981218.
* Make symlinks for gobjc, libstdc++2.9-dev and libg++2.8.2 doc directories.
-- Matthias Klose <doko@debian.org> Wed, 23 Dec 1998 18:04:53 +0200
egcs-snapshot (19981211-1) experimental; urgency=low
* New snapshot.
* Adapted gpc to egcs-2.92.x (BOOT_CFLAGS must include -g).
* New libg++-2.8.1.2a-19981209.tar.gz.
* debian/rules: new target mail-summary.
-- Matthias Klose <doko@debian.org> Fri, 11 Dec 1998 18:14:53 +0200
egcs (1.1.1-1) frozen unstable; urgency=high
* Final egcs-1.1.1 release.
* The last version depended on a versioned libc6 again.
* Add lost dependency for libg++ on libstdc++.
* Added debian-libstdc++.sh script to generate a libstdc++ on a Linux
system, which doesn't use the libapi patch.
-- Matthias Klose <doko@cs.tu-berlin.de> Wed, 2 Dec 1998 12:06:15 +0200
egcs (1.1.0.91.59-2) frozen unstable; urgency=high
* Fixes bugs from libc6 2.0.7u-6 upload without dependency line
Conflicts: libstdc++-2.9 (<< 2.91.59): #30019, #30066, #30078.
* debian/copyright: Updated URLs.
* gcc --help now mentions /usr/doc/debian/bug-reporting.txt.
* Install README.Debian and include information about patches applied.
* Depend on unversioned libc6 on i386, such that libstdc++2.9 can be used
on a hamm system.
-- Matthias Klose <doko@cs.tu-berlin.de> Fri, 27 Nov 1998 18:32:02 +0200
egcs (1.1.0.91.59-1) frozen unstable; urgency=low
* This is egcs-1.1.1 prerelease #3, compiled with libc6 2.0.7u-6.
* Added dependency for libstdc++2.9-dev on g++ (fixes #29631).
* Package g77 provides f77 (fixes #29817).
* Already fixed in earlier egcs-1.1 releases: #2493, #25271, #10620.
* Bugs reported for gcc-2.7.x and fixed in the egcs version of gcc:
#2493, #4430, #4954, #5367, #6047, #10612, #12375, #20606, #24788, #26100.
* Upgraded libg++ to libg++-2.8.1.2a-19981114.
* Upgraded gpc to gpc-19981124.
* Close #25869: egcs and splay maintainers are unable to reproduce this
bug with the current Debian packages. Bug submitter doesn't respond.
* Close #25407: egcs maintainer cannot reproduce this bug with the current
Debian compiler. Bug submitter doesn't respond.
* Use debhelper 1.2.7 for building.
* Replace the libstdc++ and libg++ compatibility links with fake libraries.
-- Matthias Klose <doko@cs.tu-berlin.de> Wed, 25 Nov 1998 12:11:42 +0200
egcs (1.1.0.91.58-5) frozen unstable; urgency=low
* Applied patch to build on the m68060.
* Added c++filt and c++filt.1 to the g++ package.
* Updated gpc to gpc-981105; fixes some regressions compared to egcs-1.1.
* Separated out g77 and gpc doumentation to new packages g77-doc and gpc-doc.
* Closed bugs (#22158).
* Close #20248; on platforms where gas and gld are the default versions,
it makes no difference to configure with or without enable-ld.
* Close #24349. The bugs are in the amulet source.
See http://www.cs.cmu.edu/afs/cs/project/amulet/www/FAQ.html#GCC28x
* Rename gcc.info* files to egcs.info* (fixes #24088).
* Documented known bugs (and workarounds) in BUGS.Debian.
* Fixed demangling of C++ names (fixes #28787).
* Applied patch form aspell to libstdc++/stl/stl_rope.h.
* Updated from cvs 16 Nov 1998.
-- Matthias Klose <doko@cs.tu-berlin.de> Tue, 17 Nov 1998 09:41:24 +0200
egcs-snapshot (19981115-2) experimental; urgency=low
* New snapshot. Disabled gpc.
* New packages g77-doc and gpc-doc.
-- Matthias Klose <doko@debian.org> Mon, 16 Nov 1998 12:48:09 +0200
egcs (1.1.0.91.58-3) frozen unstable; urgency=low
* Previous version installed in potato, not slink.
* Updated from cvs 3 Nov 1998.
-- Matthias Klose <doko@cs.tu-berlin.de> Tue, 3 Nov 1998 18:34:44 +0200
egcs (1.1.0.91.58-2) unstable; urgency=low
* [debian/rules]: added targets to apply and unapply patches.
* [debian/README.patches]: New file.
* Moved patches dir to debian/patches. debian/rules has to select
the patches to apply.
* Manual pages for genclass and gcov (fixes #5995, #20950, #22196).
* Apply egcs-1.1-reload patch needed for powerpc architecture.
* Fixed bugs (#17768, #20252, #25508, #27788).
* Reapplied alpha patch (#20875).
* Fixes first part of #22513, extended README.Debian (combining C & C++).
* Already fixed in earlier egcs-1.1 releases: #17963, #20252, #20524,
#20640, #22450, #24244, #24288, #28520.
-- Matthias Klose <doko@cs.tu-berlin.de> Fri, 30 Oct 1998 13:41:45 +0200
egcs (1.1.0.91.58-1) experimental; urgency=low
* New upstream version. That's the egcs-1.1.1 prerelease plus patches from
the cvs archive upto 29 Oct 1998.
* Merged files from the egcs and snapshot packages.
* Updated libg++ to libg++-2.8.1.2 (although the Debian package name is still
2.8.2).
* Moved patches dir to patches-1.1.
* Dan Jacobowitz:
* This is a snapshot from the egcs_1_1_branch, with
libapi, reload, builtin-apply, and egcs patches from
the debian/patches/ dir applied, along with the egcs-gpc-patches
and gcc/p/diffs/gcc-egcs-2.91.55.diff.
* Conditionalize gcj and chill (since they aren't in this branch).
* Fake snapshots drop the -snap-main.
-- Matthias Klose <doko@cs.tu-berlin.de> Thu, 29 Oct 1998 15:15:19 +0200
egcs-snapshot (1.1-19981019-5.1) experimental; urgency=low
* This is a snapshot from the egcs_1_1_branch, with
libapi, reload, builtin-apply, and egcs patches from
the debian/patches/ dir applied, along with the egcs-gpc-patches
and gcc/p/diffs/gcc-egcs-2.91.55.diff.
* Conditionalize gcj and chill (since they aren't in this
branch).
* Fake snapshots drop the -snap-main.
-- Daniel Jacobowitz <dan@debian.org> Mon, 19 Oct 1998 22:19:23 -0400
egcs (1.1b-5) unstable; urgency=low
* [debian/control.in] Fixed typo in dependencies (#28076, #28087, #28092).
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Sun, 18 Oct 1998 22:56:51 +0200
egcs (1.1b-4) unstable; urgency=low
* Strengthened g++ dependency on libstdc++_LIB_SO_-dev from
`Recommends' to `Depends'.
* Updated README.Debian for egcs-1.1.
* Updated TODO.
-- Matthias Klose <doko@cs.tu-berlin.de> Thu, 15 Oct 1998 12:38:47 +0200
egcs-snapshot (19981005-0.1) experimental; urgency=low
* Make libstdc++2.9-snap-main and libg++-snap-main provide
their mainstream equivalents and put those equivalents into
their shlibs file.
* Package gcj, the GNU Compiler for Java(TM).
* New upstream version of egcs (The -regcs_latest_snapshot branch).
* Build without libg++ entirely.
* Leave out gpc for now - the internals are sufficiently different
that it does not trivially compile.
* Include an experimental reload patch for powerpc - this is,
in the words of its author, not release quality, but it allows
powerpc linuxthreads to function.
* On architectures where we are the primary compiler, let snapshots
build with --prefix=/usr and conflict with the stable versions.
* Package chill, a front end for the language Chill.
* Other applied patches from debian/patches/: egcs-patches and
builtin-apply-patch.
* Use reload.c revision 1.43 to avoid a nasty bug.
-- Daniel Jacobowitz <dan@debian.org> Wed, 7 Oct 1998 00:27:42 -0400
egcs (1.1b-3.1) unstable; urgency=low
* NMU to fix the egcc -> gcc link once and for all
-- Christopher C. Chimelis <chris@classnet.med.miami.edu> Tue, 22 Sep 1998 16:11:19 -0500
egcs (1.1b-3) unstable; urgency=low
* Oops. The egcc -> gcc link on archs where gcc is egcc was broken.
Thanks to Chris Chimelis for pointing this out.
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Mon, 21 Sep 1998 20:51:35 +0200
egcs (1.1b-2) unstable; urgency=low
* New upstream spellfix release (Debian revision is 2 as the internal
version numbers didn't change).
* Added egcc -> gcc symlink on architectures where egcc is the primary C
compiler. Thus, maintainers of packages that require egcc, can now
simply use "egcc" without conditionals.
* Porters: we hope/plan to make egcs's gcc the default C compiler on all
platforms once the 2.2.x kernels are available. Please test this version
thoroughly, and give us a GO / NO GO for your architecture.
* Some symbols cpp used to predefine were removed upstream in order to clean
up the cpp namespace, but imake requires them for determining the proper
settings for LinuxMachineDefines (see /usr/X11R6/lib/X11/{Imake,linux}.cf),
thus we put them back. Thanks to Paul Slootman for reporting his imake
problems on Alpha.
* [gcc/config/alpha/linux.h] Added -D__alpha to CPP_PREDEFINES .
Thanks to Chris Chimelis for the alpha-only 1.1a-1.1 NMU which fixed
this already.
* [gcc/config/i386/linux.h] Added -D__i386__ to CPP_PREDEFINES .
* [gcc/config/sparc/linux.h] Has -Dsparc in CPP_PREDEFINES .
* [gcc/config/sparc/linux64.h] Has -Dsparc in CPP_PREDEFINES .
* [gcc/config/m68k/linux.h] Has -Dmc68000 in CPP_PREDEFINES .
* [gcc/config/rs6000/linux.h] Has -Dpowerpc in CPP_PREDEFINES .
* [gcc/config/arm/linux.h] Has -Darm in CPP_PREDEFINES .
* [gcc/config/i386/gnu.h] Has -Di386 in CPP_PREDEFINES .
* Small fixes and updates in README.
* Changes affecting the source package only:
* [gcc/Makefile.in, gcc/cp/Make-lang.in, gcc/p/Make-lang.in]
Daniel Jacobowitz: Ugly hacks of various kinds to make cplib2.txt get
properly regenerated with multilib.
* [debian/TODO] Created.
* [INSTALL/index.html] Fixed broken link.
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Sun, 20 Sep 1998 14:05:15 +0200
egcs (1.1a-1) unstable; urgency=low
* New upstream release.
* Added README.libstdc++ .
* Updated Standards-Version.
* Matthias:
* Downgraded gobjc dependency on egcs-docs from Recommends: to Suggests: .
* [libg++/Makefile.in] Patched not to rely on a `-f' flag of `ln'.
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Wed, 2 Sep 1998 19:57:43 +0200
egcs (1.1-1) unstable; urgency=low
* egcs-1.1 prerelease (from the last Debian package only the version file
changed).
* "Final" gpc Beta 2.1 gpc-19980830.
* Included libg++ and gpc in the .orig tarball. so that diffs are getting
smaller.
* debian/control.in: Changed maintainer address to galenh-egcs@debian.org.
* debian/copyright: Updated URLs.
-- Matthias Klose <doko@cs.tu-berlin.de> Mon, 31 Aug 1998 12:43:13 +0200
egcs (1.0.99.56-0.1) unstable; urgency=low
* New upstream snapshot 19980830 from CVS (called egcs-1.1 19980830).
* New libg++ snapshot 980828.
* Put all patches patches subdirectory; see patches/README in the source.
* debian/control.in: readded for libg++2.8.2-dev:
Replaces: libstdc++2.8-dev (<= 2.90.29-0.5)
* Renamed libg++2.9 package to libg++2.8.2.
* gcc/p/gpc-decl.c: Fix from Peter@Gerwinski.de; fixes optimization errors.
* patches/gpc-patch2: Fix from Peter@Gerwinski.de; fixes alpha errors.
* debian/rules: New configuration flag for building with and without
libstdc++api patch; untested without ...
-- Matthias Klose <doko@cs.tu-berlin.de> Sun, 30 Aug 1998 12:04:22 +0200
egcs (1.0.99-0.6) unstable; urgency=low
* PowerPC fixes.
* On powerpc, generate the -msoft-float libs and package them
as egcs-nof.
* Fix signed char error in gpc.
* Create a libg++.so.2.9 compatibility symlink.
-- Daniel Jacobowitz <dan@debian.org> Tue, 25 Aug 1998 11:44:09 -0400
egcs (1.0.99-0.5) unstable; urgency=low
* New upstream snapshot 19980824.
* New gpc snapshot gpc-980822; reenabled gpc for alpha.
-- Matthias Klose <doko@cs.tu-berlin.de> Tue, 25 Aug 1998 01:21:08 +0200
egcs (1.0.99-0.4) unstable; urgency=low
* New upstream snapshot 19980819. Should build glibc 2.0.9x on PPC.
-- Matthias Klose <doko@cs.tu-berlin.de> Wed, 19 Aug 1998 14:18:07 +0200
egcs (1.0.99-0.3) unstable; urgency=low
* New upstream snapshot 19980816.
* debian/rules: build correct debian/control and debian/*.shlibs
* Enabled Haifa scheduler for ix86.
-- Matthias Klose <doko@cs.tu-berlin.de> Mon, 17 Aug 1998 16:29:35 +0200
egcs (1.0.99-0.2) unstable; urgency=low
* New upstream snapshot: egcs-19980812, minor changes only.
* Fixes for building on `primary' targets.
* Disabled gpc on `alpha' architecture.
* Uses debhelper 1.1.6
* debian/control.in: Replace older snapshot versions in favor of newer
normal versions.
* debian/rules: Fixes building of binary-arch target only.
-- Matthias Klose <doko@cs.tu-berlin.de> Thu, 13 Aug 1998 11:59:41 +0200
egcs (1.0.99-0.1) unstable; urgency=low
* New upstream version: pre egcs-1.1 version.
* Many changes ... for details see debian/changelog.snapshot in the
source package.
* New packages libstdc++2.9 and libstdc++2.9-dev.
* New libg++ snapshot 980731: new packages libg++2.9 and libg++2.9-dev.
* New gpc snapshot gpc-980729: new package gpc.
* Uses debhelper 1.1
-- Matthias Klose <doko@cs.tu-berlin.de> Mon, 10 Aug 1998 13:00:27 +0200
egcs-snapshot (19980803-4) experimental; urgency=low
* rebuilt debian/control.
-- Matthias Klose <doko@debian.org> Wed, 5 Aug 1998 08:51:47 +0200
egcs-snapshot (19980803-3) experimental; urgency=low
* debian/rules: fix installation locations of NEWS, header and
`undocumented' files.
* man pages aren't compressed for the snapshot package.
-- Matthias Klose <doko@debian.org> Tue, 4 Aug 1998 17:34:31 +0200
egcs-snapshot (19980803-2) experimental; urgency=low
* debian/rules: Uses debhelper. Old in debian/rules.old.
renamed postinst, prerm files for use with debhelper.
* debian/{libg++2.9,libstdc++2.9}/postinst: call ldconfig only,
when called for configure.
* egcs-docs is architecture independent package.
* new libg++ snapshot 980731.
* installed libstdc++ api patch (still buggy).
-- Matthias Klose <doko@debian.org> Mon, 3 Aug 1998 13:20:59 +0200
egcs-snapshot (19980729-1) experimental; urgency=low
* New snapshot version 19980729 from CVS archive.
* New gpc snapshot gpc-980729.
* Let gcc/configure decide about using the Haifa scheduler.
* Remove -DDEBIAN. That was needed for the security improvements with
regard to the /tmp problem. egcs-1.1 chooses another approach.
* Save test-protocol and extract gpc errors to gpc-test-summary.
* Tighten binutils dependency to 2.9.1.
* debian/rules: new build-info target
* debian/{control.in,rules}: _SO_ and BINUTILSV substitution.
* debian/rules: add dependency for debian/control.
* debian/rules: remove bin/c++filt
* TODO: next version will use debhelper; the unorganized moving of
files becomes unmanageable ...
* TODO: g++ headers in stdc++ package? check!
-- Matthias Klose <doko@debian.org> Thu, 30 Jul 1998 12:10:20 +0200
egcs-snapshot (19980721-1) experimental; urgency=low
* Unreleased. Infinite loops in executables made by gpc.
-- Matthias Klose <doko@debian.org> Wed, 22 Jul 1998 18:07:20 +0200
egcs-snapshot (19980715-1) experimental; urgency=low
* New snapshot version from CVS archive.
* New gpc snapshot gpc-980715.
* New libg++ version libg++-2.8.2-980708. Changed versioning
schema for library. The major versions of libc, libstdc++ and the
g++ interface are coded in the library name. Use this new schema,
but provide a symlink to our previous schema, since the library
seems to be binary compatible.
* [debian/rules]: Fixed bug in build target, when bootstrap returns
with an error
-- Matthias Klose <doko@debian.org> Wed, 15 Jul 1998 10:55:05 +0200
egcs-snapshot (19980701-1) experimental; urgency=low
* New snapshot version from CVS archive.
Two check programs in libg++ had to be manually killed to finish the
testsuite (tBag and tSet).
* New gpc snapshot gpc-980629.
* Incorporated debian/rules changes from egcs-1.0.3a-0.5 (but don't remove
gcc/cp/parse.c gcc/c-parse.c gcc/c-parse.y gcc/objc/objc-parse.c
gcc/objc/objc-parse.y, since these files are part of the release).
* Disable the -DMKTEMP_EACH_FILE -DHAVE_MKSTEMP -DDEBIAN flags for the
snapshot. egcs-1.1 will have another solution.
* Don't bootstrap the snapshot with -fno-force-mem. Internal compiler
error :-(
* libf2c.a and f2c.h have changed names to libg2c.a and g2c.h and
have moved again into the gcc-lib dir. They are installed under
libg2c.a and g2c.h. Is it necessary to provide links f2c -> g2c ?
* debian/rules: reflect change of build dir of libraries.
-- Matthias Klose <doko@debian.org> Wed, 2 Jul 1998 13:15:28 +0200
egcs-snapshot (19980628-0.1) experimental; urgency=low
* New upstream snapshot version.
* Non-maintainer upload; Matthias appears to be absent currently.
* Updated shlibs.
* Merged changes from regular egcs:
* [debian/control] Tightened dependency on binutils to 2.8.1.0.23 or
newer, as according to INSTALL/SPECIFIC PowerPC (and possibly Sparc)
need this.
* [debian/rules] Clean up some generated files outside builddir,
so the .diff.gz becomes smaller.
* [debian/rules] Partial sync/update with the one for the regular egcs
version.
* [debian/rules] Make gcc/p/configure executable.
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Wed, 1 Jul 1998 07:12:15 +0200
egcs (1.0.3a-0.6) frozen unstable; urgency=low
* Some libg++ development files were in libstdc++2.8-dev rather than
libg++2.8-dev. Fixed this and dealt with upgrading from the earlier
versions (fixes #23908; this bug is not marked release-critical, but
is annoying and can be quite confusing for users. Therefore, I think
this fix should go in 2.0).
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Tue, 30 Jun 1998 11:10:14 +0200
egcs (1.0.3a-0.5) frozen unstable; urgency=low
* Fixed location of .hP files (Fixes #23448).
* [debian/rules] simplified extraction of the files for libg++2.8-dev.
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Wed, 17 Jun 1998 09:33:41 +0200
egcs (1.0.3a-0.4) frozen unstable; urgency=low
* [gcc/gcc.c] There is one call to choose_temp_base for determining the
tempdir to be used only; #ifdef HAVE_MKSTEMP delete the tempfile created
as a side effect. (fixes #23123 for egcs).
* [gcc/collect2.c] There's still a vulnerability here; I don't see how
I can fix it without leaving behind tempfiles though.
* [debian/control] Tightened dependency on binutils to 2.8.1.0.23 or
newer, as according to INSTALL/SPECIFIC PowerPC (and possibly Sparc)
need this.
* [debian/rules] Clean up some generated files outside builddir, so the
.diff.gz becomes smaller.
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Sat, 13 Jun 1998 09:06:52 +0200
egcs-snapshot (19980608-1) experimental; urgency=low
* New snapshot version.
-- Matthias Klose <doko@debian.org> Tue, 9 Jun 1998 14:07:44 +0200
egcs (1.0.3a-0.3) frozen unstable; urgency=high (security fixes)
* [gcc/toplev.c] set flag_force_mem to 1 at optimisation level 3 or higher.
This works around #17768 which is considered release-critical.
* Changes by Matthias:
* [debian/README] Documentation of the compiler situation for Objective C.
* [debian/rules, debian/control.*] Generate control file from a master
file.
* [debian/rules] Updates for Pascal and Fortran parts; brings it in sync
with the one for the egcs snapshots.
* Use the recommended settings LDFLAGS=-s CFLAGS= BOOT_CFLAGS='-O2'.
* Really compile -DMKTEMP_EACH_FILE -DHAVE_MKSTEMP (really fixes #19453
for egcs).
* [gcc/gcc.c] A couple of temp files weren't marked for deletion.
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Sun, 31 May 1998 22:56:22 +0200
egcs (1.0.3a-0.2) frozen unstable; urgency=high (security fixes)
* Security improvements with regard to the /tmp problem
(gcc opens predictably named files in TMPDIR which can be abused via
symlinks) (Fixes #19453 for egcs).
* Compile -DMKTEMP_EACH_FILE to ensure the %u name is generated randomly
every time; affects gcc/gcc.c .
* [gcc/choose-temp.c, libiberty/choose-temp.c]: use mktemp(3) if compiled
-DUSE_MKSTEMP .
* Security improvements: don't use the result of choose_temp_base in a
predictable fashion.
[gcc/gcc.c]:
* @c, @objective-c: use random name rather then tempbasename.i for
intermediate preprocessor output (%g.i -> %d%u).
* @c, @objective-c: use random name rather then tempbasename.s for
intermediate compiler output (%g.s -> %d%u).
* @c, @objective-c, @cpp-output, @assembler-with-cpp: switched
"as [-o output file] <input file>" to
"as <input file> [-o output file]".
* @c, @objective-c, @assembler-with-cpp: use previous random name
(cc1|cpp output) rather then tempbasename.s for intermediate assembler
input (%g.s -> %U)
[gcc/f/lang-specs.h]:
* @f77-cpp-input: use random name rather then tempbasename.i for
intermediate cpp output (%g.i -> %d%u).
* @f77-cpp-input: use previous random name (cpp output) rather than
tempbasename.i for f771 input (%g.i -> %U).
* @f77-cpp-input: switched
"as [-o output file] <input file>" to
"as <input file> [-o output file]".
* @f77-cpp-input: use random name rather then tempbasename.s for
intermediate compiler output (%g.s -> %d%u).
* @ratfor: use random name rather then tempbasename.i for
intermediate ratfor output (%g.f -> %d%u).
* @ratfor: use previous random name (ratfor output) rather than
tempbasename.i for f771 input (%g.f -> %U).
* @ratfor: use random name rather then tempbasename.s for
intermediate compiler output (%g.s -> %d%u).
* @ratfor: switched
"as [-o output file] <input file>" to
"as <input file> [-o output file]".
* @ratfor: use previous random name
(ratfor output) rather then tempbasename.s for intermediate assembler
input (%g.s -> %U).
* @f77: use random name rather then tempbasename.s for
intermediate ratfor output (%g.f -> %d%u).
* @ratfor: use previous random name (ratfor output) rather than
tempbasename.i for f771 input (%g.f -> %U).
* @ratfor: use random name rather then tempbasename.s for
intermediate compiler output (%g.s -> %d%u).
* @ratfor: switched
"as [-o output file] <input file>" to
"as <input file> [-o output file]".
* @ratfor: use previous random name
(ratfor output) rather then tempbasename.s for intermediate assembler
input (%g.s -> %U).
* @f77: use random name rather then tempbasename.s for
intermediate compiler output (%g.s -> %d%u).
* @f77: switched
"as [-o output file] <input file>" to
"as <input file> [-o output file]".
* @ratfor: use random name rather then tempbasename.s for
intermediate compiler output (%g.s -> %U).
* Run the testsuite (this requires the dejagnu package in experimental;
unfortunately, it is difficult to distinguish this version from the one
in frozen).
if possible, and log the results in warn_summary and bootstrap-summary.
* [gcc/choose-temp.c, libiberty/choose-temp.c]: s|returh|return| in
comment.
* Added notes on the Debian compiler setup [debian/README] to the
development packages.
* Matthias:
* [libg++/etc/lf/Makefile.in] Replaced "-ltermcap" by "-lncurses".
* [debian/rules] Updated so it can be used for both egcs releases and
snapshots easily; added support for the GNU Pascal Compiler gpc.
* [contrib/test_summary, contrib/warn_summary] Added from CVS.
* Run compiler checks and include results in /usr/doc/<package>.
* Updates to the README.
* [debian/rules] Use assignments to speed up startup.
* [debian/rules] Show the important variables at the start of the build
process.
* [debian/control.secondary] Added a dependency of gobjc on egcc on
architectures where egcs provides the secondary compiler, as
/usr/bin/egcc is the compiler driver for gobjc. (Fixes #22829).
* [debian/control.*] Bumped Standards-Version; used shorter version
numbers in the dependency relationships (esthetic difference only);
fixed typo.
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Tue, 26 May 1998 21:47:41 +0200
egcs-snapshot (19980525-1) experimental; urgency=low
* New snapshot version.
-- Matthias Klose <doko@debian.org> Tue, 26 May 1998 18:04:06 +0200
egcs-snapshot (19980517-1) experimental; urgency=low
* "Initial" release of the egcs-snapshot package; many debian/* files
derived from the egcs-1.0.3a-0.1 package (maintained by Galen Hazelwood
<galenh@micron.net>, NMU's by J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl>)
* The egcs-snapshot packages can coexist with the packages of the
egcs release. Package names have a '-ss' appended.
* All packages are installed in a separate tree (/usr/lib/egcs-ss following
the FHSS).
* Made all snapshot packages extra, all snapshot packages conflict
with correspondent egcs packages, which are newer than the snapshot.
* Included libg++-2.8.1-980505.
* Included GNU Pascal (gpc-980511).
* Haifa scheduler enabled for all snapshot packages.
* Run compiler checks and include results in /usr/doc/<package>.
* Further information in /usr/doc/<package>/README.snapshot.
-- Matthias Klose <doko@debian.org> Wed, 20 May 1998 11:14:06 +0200
egcs (1.0.3a-0.1) frozen unstable; urgency=low
* New upstream release egcs-2.90.29 980515 (egcs-1.0.3 release)
(we were using 1.0.3-prerelease). This includes the Haifa patches
we had since 1.0.3-0.2 and the gcc/objc/thr-posix.c patch we had
since 1.0.3-0.1; the differences with 1.0.3-prerelease + patches
we had is negligable.
* iostream info documentation was in the wrong package (libg++2.8-dev).
Now it's in libstdc++2.8-dev. (Thanks to Jens Rosenboom for bringing
this to my attention). As 1.0.3-0.3 didn't make it out of Incoming,
I'm not adding "Replaces:" for this; folks who had 1.0.3-0.3 installed
already know enough to use --force-overwrite.
* [gcc/objc/objc-act.c] Applied patch Matthias Klose supplied me with that
demangles Objective C method names in gcc error messages.
* Explicitly disable Haifa scheduling on Alpha, to make it easier to use
this package's diff with egcs snapshots, which may turn on Haifa
scheduling even though it is still unstable. (Requested by Chris Chimelis)
* Don't run "configure" again if builddir already exists (makes it faster
to restart builds in case one is hacking internals). Requested by
Johnnie Ingram.
* [gcc/gbl-ctors.h] Don't use extern declaration for atexit on glibc 2.1
and higher (the prototype has probably changed; having the declaration
broke Sparc compiles).
* [debian/rules] Determine all version number automatically (from the
version string in gcc/version.c).
* [debian/copyright] Updated FTP locations; added text about libg++ (fixes
#22465).
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Sat, 16 May 1998 17:41:44 +0200
egcs (1.0.3-0.3) frozen unstable; urgency=low
* Made an "egcs-doc" package containing documentation for egcs (e)gcc,
g++, gobjc, so that administrators can choose whether to have this
documenation or the documentation that comes with the GNU gcc package.
Dependency on this is Recommends: on architectures where egcs provides
the primary C compiler; Suggests: on the others (where GNU gcc is still
the primary C compiler).
* Use the g++ FAQ from gcc/cp rather than libg++, as that version is more
up to date.
* Added iostream info documentation to libstdc++2.8-dev.
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Wed, 13 May 1998 08:46:10 +0200
egcs (1.0.3-0.2) frozen unstable; urgency=low
* Added libg++ that works with egcs, found at
ftp://ftp.yggdrasil.com/private/hjl/libg++-2.8.1-980505.tar.gz
(fixes #20587 (Severity: important)).
* The "libg++" and "libg++-dev" virtual packages now refer to the GNU
extensions.
* Added the g++ FAQ that comes with libg++ to the g++ package.
* libg++/Makefile.in: added $(srcdir) to rule for g++FAQ.info so that it
builds OK in builddir.
* Added -D__i386__ to the cpp predefines on intel.
* Patches Matthias supplied me with:
* Further 1.0.3 prerelease patches from CVS.
This includes patches to the Haifa scheduler. Alpha porters, please
check if this makes the Haifa scheduler OK again.
* Objective C patches from CVS.
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Fri, 8 May 1998 14:43:20 +0200
egcs (1.0.3-0.1) frozen unstable; urgency=low (high for maintainers that use objc)
* bug fixes only in new upstream version
* Applied patches from egcs CVS archive (egcs_1_03_prerelease)
(see gcc/ChangeLog in the egcs source package).
* libstdc++2.8-dev no longer Provides: libg++-dev (fixes #21153).
* libstdc++2.8-dev now Conflicts: libg++27-dev (bo),
libg++272-dev (hamm) [regular packages] rather than
Conflicts: libg++-dev [virtual package] to prepare the way for "libg++"
to be used as a virtual package for a new libg++ package (i.e. an up to
date one, which not longer contains libstdc++, but only the GNU
extensions) that is compatible with the egcs g++ packages. Such a package
isn't available yet. Joel Klecker tried building libg++2.8.1.1a within
egcs's libstdc++ setup, but it appears to need true gcc 2.8.1 .
* Filed Severity: important bugs against wxxt1-dev (#21707) because these
still depend on libg++-dev, which is removed in this version.
A fixed libsidplay1-dev has already been uploaded.
* libstdc++2.8 is now Section: base and Priority: required (as dselect is
linked against it).
* Disabled Haifa scheduling on Alpha again; Chris Chimelis reported
that this caused problems on some machines.
* [gcc/extend.texi]
ftp://maya.idiap.ch/pub/tmb/usenix88-lexic.ps.Z is no longer available;
use http://master.debian.org/~karlheg/Usenix88-lexic.pdf .
(fixes the egcs part of #20002).
* Updated Standards-Version.
* Changed chmod in debian/rules at Johnie Ingram's request.
* Rather than hardwire the Debian part of the packages' version number,
extract it from debian/changelog .
* Use gcc/objc/thr-posix.c from 980418 egcs snapshot to make objc work.
(Fixes #21192).
* Applied workaround for the GNUstep packages on sparc systems.
See README.sparc (on sparc packages only) in the doc directory.
This affects the other compilers as well.
* Already done in 1.0.2-0.7: the gobjc package now provides a virtual
package objc-compiler.
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Tue, 28 Apr 1998 12:05:28 +0200
egcs (1.0.2-0.7) frozen unstable; urgency=low
* Separated out Objective-C compiler.
* Applied patch from http://www.cygnus.com/ml/egcs/1998-Apr/0614.html
-- Matthias Klose <doko@debian.org> Fri, 17 Apr 1998 10:25:48 +0200
egcs (1.0.2-0.6) frozen unstable; urgency=low
* Due to upstream changes (libg++ is now only the GNU specific C++
classes, and is no longer maintained; libstdc++ contains the C++
standard library, including STL), the virtual "libg++-dev"
package's meaning has become confusing. Therefore, new or updated
packages should no longer use the virtual "libg++-dev" package.
* Corrected g++'s Recommends to libstdc++2.8-dev (>=2.90.27-0.1).
The previous version had Recommends: libstdc++-dev (>=2.90.27-0.1)
which doesn't work, as libstc++-dev is a virtual package.
* Bumped Standards-Version.
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Tue, 14 Apr 1998 11:52:08 +0200
egcs (1.0.2-0.5) frozen unstable; urgency=low (high for maintainers of packages that use libstdc++)
* Modified shlibs file for libstdc++ to generate versioned dependencies,
as it is not link compatible with the 1.0.1-x versions in
project/experimental. (Fixes #20247, #20033)
Packages depending on libstd++ should be recompiled to fix their
dependencies.
* Strenghtened g++'s Recommends: libstdc++-dev to the 1.0.2 version or
newer.
* Fixed problems with the unknown(7) symlink for gcov.
* Reordering links now works.
-- Adam Heath <adam.heath@usa.net> Sun, 12 Apr 1998 13:09:30 -0400
egcs (1.0.2-0.4) frozen unstable; urgency=low
* Unreleased. This is the version Adam Heath received from me.
* Replaces: gcc (<= 2.7.2.3-3) so that the overlap with the older gcc
packages (including bo's gcc_2.7.2.1-8) is handled properly
(fixes #19931, #19672, #20217, #20593).
* Alpha architecture (fixes #20875):
* Patched gcc/config/alpha/linux.h for the gmon functions to operate
properly.
* Made egcs the primary C compiler.
* Enabled Hafia scheduling.
* Lintian-detected problems:
* E: libstdc++2.8: ldconfig-symlink-before-shlib-in-deb usr/lib/libstdc++.so.2.8
* E: egcc: binary-without-manpage gcov
Reported as wishlist bug; added link to undocumented(7).
* W: libstdc++2.8: non-standard-executable-perm usr/lib/libstdc++.so.2.8.0 0555
* E: libstdc++2.8: shlib-with-executable-bit usr/lib/libstdc++.so.2.8.0 0555
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Fri, 10 Apr 1998 14:46:46 +0200
egcs (1.0.2-0.3) frozen unstable; urgency=low
* Really fixed dependencies.
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Mon, 30 Mar 1998 11:30:26 +0200
egcs (1.0.2-0.2) frozen unstable; urgency=low
* Fixed dependencies.
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Sat, 28 Mar 1998 13:58:58 +0100
egcs (1.0.2-0.1) frozen unstable; urgency=low
* New upstream version; it now has -Di386 in CPP_PREDEFINES.
* Only used the debian/* patches from 1.0.1-2; the rest of it appears
to be in 1.0.2 already.
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Fri, 27 Mar 1998 11:47:14 +0100
egcs (1.0.1-2) unstable; urgency=low
* Integrated pre-release 1.0.2 patches
* Split out g++
* egcs may now provide either the primary or secondary C compiler
-- Galen Hazelwood <galenh@micron.net> Sat, 14 Mar 1998 14:15:32 -0700
egcs (1.0.1-1) unstable; urgency=low
* New upstream version
* egcs is now the standard Debian gcc!
* gcc now provides c-compiler (#15248 et al.)
* g77 now provides fortran77-compiler
* g77 dependencies now correct (#16991)
* /usr/doc/gcc/changelog.gz now has correct permissions (#16139)
-- Galen Hazelwood <galenh@micron.net> Sat, 7 Feb 1998 19:22:30 -0700
egcs (1.0-1) experimental; urgency=low
* First official release
-- Galen Hazelwood <galenh@micron.net> Thu, 4 Dec 1997 16:30:11 -0700
egcs (970917-1) experimental; urgency=low
* New upstream snapshot (There's a lot of stuff here as well, including
a new libstdc++, but it _still_ won't build...)
* eg77 driver now works properly
-- Galen Hazelwood <galenh@micron.net> Wed, 17 Sep 1997 20:44:29 -0600
egcs (970904-1) experimental; urgency=low
* New upstream snapshot
-- Galen Hazelwood <galenh@micron.net> Sun, 7 Sep 1997 18:25:06 -0600
egcs (ss-970814-1) experimental; urgency=low
* Initial packaging (of initial snapshot!)
-- Galen Hazelwood <galenh@micron.net> Wed, 20 Aug 1997 00:36:28 +0000
gcc272 (2.7.2.3-12) unstable; urgency=low
* Compiled on a glibc-2.0 based system.
* Reflect move of manpage to /usr/share in gcc.postinst as well.
* Moved gcc272-docs to section doc, priority optional.
-- Matthias Klose <doko@cs.tu-berlin.de> Sat, 28 Aug 1999 13:42:13 +0200
gcc272 (2.7.2.3-11) unstable; urgency=low
* Follow Debian policy for GNU system type (fixes #42657).
* config/i386/linux.h: Remove %[cpp_cpu] from CPP_SPEC. Stops gcc-2.95
complaining about obsolete spec operators (using gcc -V 2.7.2.3).
Patch suggested by Zack Weinberg <zack@bitmover.com>.
-- Matthias Klose <doko@cs.tu-berlin.de> Sun, 15 Aug 1999 20:12:21 +0200
gcc272 (2.7.2.3-10) unstable; urgency=low
* Renamed source package to gcc272. The egcs source package is renamed
to gcc, because it's now the "official" GNU C compiler.
* Changed maintainer address to "Debian GCC maintainers".
* Install info and man stuff to /usr/share.
-- Matthias Klose <doko@cs.tu-berlin.de> Thu, 27 May 1999 12:29:23 +0200
gcc (2.7.2.3-9) unstable; urgency=low
* debian/{postinst,prerm}-doc: handle gcc272.info, not gcc.info.
Fixes #36306.
-- Matthias Klose <doko@cs.tu-berlin.de> Tue, 20 Apr 1999 07:32:58 +0200
gcc (2.7.2.3-8) unstable; urgency=low
* Make gcc-2.7 the secondary compiler. Rename gcc package to gcc272.
On i386, sparc and m68k, this package is compiled against glibc2.0.
* The cpp package is built from the egcs source package.
-- Matthias Klose <doko@cs.tu-berlin.de> Mon, 29 Mar 1999 22:48:50 +0200
gcc (2.7.2.3-7) frozen unstable; urgency=low
* Separated out ObjC compiler to gobjc27 package.
* Changed maintainer address.
* Synchronized README.Debian with egcs-1.1.1-3.
-- Matthias Klose <doko@cs.tu-berlin.de> Tue, 29 Dec 1998 19:05:26 +0100
gcc (2.7.2.3-6) frozen unstable; urgency=low
* Link with -lc on i386, m68k, sparc, when building shared libraries
(fixes #25122).
-- Matthias Klose <doko@cs.tu-berlin.de> Thu, 3 Dec 1998 12:12:12 +0200
gcc (2.7.2.3-5) frozen unstable; urgency=low
* Updated maintainer info.
* Updated Standards-Version; made lintian-clean.
* gcc-docs can coexist with the latest egcs-docs, so added (<= version) to
the Conflicts.
* Updated the README and renamed it to README.Debian .
* Put a reference to /usr/doc/gcc/README.Debian in the info docs.
* Updated description of g++272 .
* Clean up generated info files, to keep the diff small.
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Tue, 17 Nov 1998 20:05:59 +0100
gcc (2.7.2.3-4.8) frozen unstable; urgency=high
* Non-maintainer release
* Fix type in extended description
* Removed wrong test in postinst
* Add preinst to clean up some stuff from an older gcc package properly
and stop man complaining about dangling symlinks
-- Wichert Akkerman <wakkerma@debian.org> Fri, 17 Jul 1998 18:48:32 +0200
gcc (2.7.2.3-4.7) frozen unstable; urgency=high
* Really fixed gcc-docs postinst (Fixes #23470), so that `gcc-docs'
becomes installable.
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Mon, 15 Jun 1998 07:53:40 +0200
gcc (2.7.2.3-4.6) frozen unstable; urgency=high
* [gcc.c] There is one call to choose_temp_base for determining the
tempdir to be used only;
#ifdef HAVE_MKSTEMP delete the tempfile created as a side effect.
(fixes #23123 for gcc).
* gcc-docs postinst was broken (due to a broken line) (fixes #23391, #23401).
* [debian/control] description for gcc-docs said `egcs' where it should have
said `gcc' (fixes #23396).
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Thu, 11 Jun 1998 12:48:50 +0200
gcc (2.7.2.3-4.5) frozen unstable; urgency=high
* The previous version left temporary files behind, as they were not
marked for deletion afterwards.
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Sun, 31 May 1998 22:49:14 +0200
gcc (2.7.2.3-4.4) frozen unstable; urgency=high (security fixes)
* Security improvements with regard to the /tmp problem
(gcc opens predictably named files in TMPDIR which can be abused via
symlinks) (Fixes #19453 for gcc):
* Compile -DMKTEMP_EACH_FILE to ensure the %u name is generated randomly
every time; affects gcc/gcc.c .
* [cp/g++.c, collect2.c, gcc.c] If compiled -DHAVE_MKSTEMP use mkstemp(3)
rather than mktemp(3).
* Security improvements: don't use the result of choose_temp_base in a
predictable fashion.
[gcc.c]:
* @c, @objective-c: use random name rather then tempbasename.i for
intermediate preprocessor output (%g.i -> %d%u).
* @c, @objective-c: use random name rather then tempbasename.s for
intermediate compiler output (%g.s -> %d%u).
* @c, @objective-c, @cpp-output, @assembler-with-cpp: switched
"as [-o output file] <input file>" to
"as <input file> [-o output file]".
* @c, @objective-c, @assembler-with-cpp: use previous random name
(cc1|cpp output) rather then tempbasename.s for intermediate assembler
input (%g.s -> %U)
[f/lang-specs.h]:
* @f77-cpp-input: use random name rather then tempbasename.i for
intermediate cpp output (%g.i -> %d%u).
* @f77-cpp-input: use previous random name (cpp output) rather than
tempbasename.i for f771 input (%g.i -> %U).
* @f77-cpp-input: switched
"as [-o output file] <input file>" to
"as <input file> [-o output file]".
* @f77-cpp-input: use random name rather then tempbasename.s for
intermediate compiler output (%g.s -> %d%u).
* @ratfor: use random name rather then tempbasename.i for
intermediate ratfor output (%g.f -> %d%u).
* @ratfor: use previous random name (ratfor output) rather than
tempbasename.i for f771 input (%g.f -> %U).
* @ratfor: use random name rather then tempbasename.s for
intermediate compiler output (%g.s -> %d%u).
* @ratfor: switched
"as [-o output file] <input file>" to
"as <input file> [-o output file]".
* @ratfor: use previous random name
(ratfor output) rather then tempbasename.s for intermediate assembler
input (%g.s -> %U).
* @f77: use random name rather then tempbasename.s for
intermediate ratfor output (%g.f -> %d%u).
* @ratfor: use previous random name (ratfor output) rather than
tempbasename.i for f771 input (%g.f -> %U).
* @ratfor: use random name rather then tempbasename.s for
intermediate compiler output (%g.s -> %d%u).
* @ratfor: switched
"as [-o output file] <input file>" to
"as <input file> [-o output file]".
* @ratfor: use previous random name
(ratfor output) rather then tempbasename.s for intermediate assembler
input (%g.s -> %U).
* @f77: use random name rather then tempbasename.s for
intermediate compiler output (%g.s -> %d%u).
* @f77: switched
"as [-o output file] <input file>" to
"as <input file> [-o output file]".
* @ratfor: use random name rather then tempbasename.s for
intermediate compiler output (%g.s -> %U).
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Sat, 30 May 1998 17:27:03 +0200
gcc (2.7.2.3-4.3) frozen unstable; urgency=high
* The "alpha" patches from -4 affected a lot more than alpha support,
and in all likeliness broke compilation of libc6 2.0.7pre3-1
and 2.0.7pre1-4 . I removed them by selective application of the
diff between -4 and -4. (should fix #22292).
* Fixed reference to the trampolines paper (fixes #20002 for Debian;
this still needs to be forwarded).
* This is for frozen too. (obsoletes #22390 (request to move -4.2 to
frozen)).
* Split of gcc-docs package, so that the gcc can be succesfully installed
on systems that have egcs-docs installed.
* Added the README on the compiler situation that's already in the egcs
packages.
* Use the recommended settings LDFLAGS=-s CFLAGS= BOOT_CFLAGS='-O2'.
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Thu, 28 May 1998 20:03:59 +0200
gcc (2.7.2.3-4.2) unstable; urgency=low
* Still for unstable, as I have received no feedback about the g++272
package yet.
* gcc now Provides: objc-compiler .
* Clean up /etc/alternatives/{g++,g++.1.gz} if they are dangling.
(fixes #19765, #20563)
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Wed, 22 Apr 1998 12:40:45 +0200
gcc (2.7.2.3-4.1) unstable; urgency=low
* Bumped Standards-Version.
* Forked off a g++272 package (e.g. for code that uses the GNU extensions
in libg++); for now this is in "unstable" only; feedback appreciated.
* Some cleanup (lintian): permissions, absolute link, gzip manpage.
-- J.H.M. Dassen (Ray) <jdassen@wi.LeidenUniv.nl> Fri, 17 Apr 1998 13:05:25 +0200
gcc (2.7.2.3-4) unstable; urgency=low
* Added alpha patches
* Only build C and objective-c compilers, split off g++
-- Galen Hazelwood <galenh@micron.net> Sun, 8 Mar 1998 21:16:39 -0700
gcc (2.7.2.3-3) unstable; urgency=low
* Added patches for m68k
* Added patches for sparc (#13968)
-- Galen Hazelwood <galenh@micron.net> Fri, 17 Oct 1997 18:25:21 -0600
gcc (2.7.2.3-2) unstable; urgency=low
* Added g77 support (g77 0.5.21)
-- Galen Hazelwood <galenh@micron.net> Wed, 10 Sep 1997 18:44:54 -0600
gcc (2.7.2.3-1) unstable; urgency=low
* New upstream version
* Now using pristine source
* Removed misplaced paragraph in cpp.texi (#10877)
* Fix security bug for temporary files (#5298)
* Added Suggests: libg++-dev (#12335)
* Patched objc/thr-posix.c to support conditions (#12502)
-- Galen Hazelwood <galenh@micron.net> Mon, 8 Sep 1997 12:20:07 -0600
gcc (2.7.2.2-7) unstable; urgency=low
* Made cc and c++ managed through alternates mechanism (for egcs)
-- Galen Hazelwood <galenh@micron.net> Tue, 19 Aug 1997 22:37:03 +0000
gcc (2.7.2.2-6) unstable; urgency=low
* Tweaked Objective-C thread support (#11069)
-- Galen Hazelwood <galenh@micron.net> Wed, 9 Jul 1997 11:56:57 -0600
gcc (2.7.2.2-5) unstable; urgency=low
* More updated m68k patches
* Now conflicts with libc5-dev (#10006, #10112)
* More strict Depends: cpp, prevents version mismatch (#9954)
-- Galen Hazelwood <galenh@micron.net> Thu, 19 Jun 1997 01:29:02 -0600
gcc (2.7.2.2-4) unstable; urgency=low
* Moved to unstable
* Temporarily removed fortran support (waiting for new g77)
* Updated m68k patches
-- Galen Hazelwood <galenh@micron.net> Fri, 9 May 1997 13:35:14 -0600
gcc (2.7.2.2-3) experimental; urgency=low
* Built against libc6 (fixes bug #8511)
-- Galen Hazelwood <galenh@micron.net> Fri, 4 Apr 1997 13:30:10 -0700
gcc (2.7.2.2-2) experimental; urgency=low
* Fixed configure to build crt{begin,end}S.o on i386
-- Galen Hazelwood <galenh@micron.net> Tue, 11 Mar 1997 16:15:02 -0700
gcc (2.7.2.2-1) experimental; urgency=low
* Built for use with libc6-dev (experimental purposes only!)
* Added m68k patches from Andreas Schwab
-- Galen Hazelwood <galenh@micron.net> Fri, 7 Mar 1997 12:44:17 -0700
gcc (2.7.2.1-7) unstable; urgency=low
* Patched to support g77 0.5.20
-- Galen Hazelwood <galenh@micron.net> Thu, 6 Mar 1997 22:20:23 -0700
gcc (2.7.2.1-6) unstable; urgency=low
* Added (small) manpage for protoize/unprotoize (fixes bug #6904)
* Removed -lieee from specs file (fixes bug #7741)
* No longer builds aout-gcc
-- Galen Hazelwood <galenh@micron.net> Mon, 3 Mar 1997 11:10:20 -0700
gcc (2.7.2.1-5) unstable; urgency=low
* debian/control now lists cpp in section "interpreters"
* Re-added Objective-c patches for unstable
-- Galen Hazelwood <galenh@micron.net> Wed, 22 Jan 1997 10:27:52 -0700
gcc (2.7.2.1-4) stable unstable; urgency=low
* Changed original source file so dpkg-source -x works
* Removed Objective-c patches (unsafe for stable)
* Built against rex's libc, so fixes placed in -3 are available to
those still using rex
-- Galen Hazelwood <galenh@micron.net> Tue, 21 Jan 1997 11:11:53 -0700
gcc (2.7.2.1-3) unstable; urgency=low
* New (temporary) maintainer
* Updated to new standards and source format
* Integrated aout-gcc into gcc source package
* Demoted aout-gcc to Priority "extra"
* cpp package description more clear (fixes bug #5428)
* Removed cpp "Replaces: gcc" (fixes bug #5762)
* Minor fix to invoke.texi (fixes bug #2909)
* Added latest Objective-C patches for GNUstep people (fixes bug #4657)
-- Galen Hazelwood <galenh@micron.net> Sun, 5 Jan 1997 09:57:36 -0700
|