ubuntuusers.de

build.log

Datum:
4. September 2010 11:12
Code:
   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
Calculating dependencies  ..... ... ..... done!

>>> Verifying ebuild manifests

>>> Starting parallel fetch

>>> Emerging (1 of 2) dev-lang/python-2.6.5-r3
 * Python-2.6.5.tar.bz2 RMD160 SHA1 SHA256 size ;-) ...                  [ ok ]
 * python-gentoo-patches-2.6.5-r5.tar.bz2 RMD160 SHA1 SHA256 size ;-) ...[ ok ]
 * checking ebuild checksums ;-) ...                                     [ ok ]
 * checking auxfile checksums ;-) ...                                    [ ok ]
 * checking miscfile checksums ;-) ...                                   [ ok ]
 * CPV:  dev-lang/python-2.6.5-r3
 * REPO: gentoo
 * USE:  berkdb elibc_glibc gdbm ipv6 kernel_linux ncurses readline sqlite ssl threads tk userland_GNU wide-unicode x86 xml
 * "bsddb" module is out-of-date and no longer maintained inside dev-lang/python. It has
 * been additionally removed in Python 3. You should use external, still maintained "bsddb3"
 * module provided by dev-python/bsddb3 which supports both Python 2 and Python 3.
>>> Unpacking source...
>>> Unpacking Python-2.6.5.tar.bz2 to /var/tmp/portage/dev-lang/python-2.6.5-r3/work
>>> Unpacking python-gentoo-patches-2.6.5-r5.tar.bz2 to /var/tmp/portage/dev-lang/python-2.6.5-r3/work
>>> Source unpacked in /var/tmp/portage/dev-lang/python-2.6.5-r3/work
>>> Preparing source in /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 ...
 * Applying various patches (bugfixes/updates) ...
 *   00_all_branch_backports.patch ...
  [ ok ]
 *   01_all_static_library_location.patch ...
  [ ok ]
 *   02_all_disable_modules_and_ssl.patch ...
  [ ok ]
 *   03_all_add_portage_search_path.patch ...
  [ ok ]
 *   04_all_libdir.patch ...
  [ ok ]
 *   05_all_verbose_building_of_extensions.patch ...
  [ ok ]
 *   06_all_dbm_automagic.patch ...
  [ ok ]
 *   07_all_internal_expat.patch ...
  [ ok ]
 *   08_all_non-zero_exit_status_on_failure.patch ...
  [ ok ]
 *   09_all_use_external_libffi.patch ...
  [ ok ]
 *   21_all_distutils_c++.patch ...
  [ ok ]
 *   22_all_turkish_locale.patch ...
  [ ok ]
 *   23_all_arm_OABI.patch ...
  [ ok ]
 *   61_all_process_data.patch ...
  [ ok ]
 * Done with patching
 * Running eautoreconf in '/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5' ...
 * Running aclocal ...
  [ ok ]
 * Running autoconf ...
  [ ok ]
 * Running autoheader ...
  [ ok ]
>>> Source prepared.
>>> Configuring source in /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 ...
./configure --prefix=/usr --build=i686-pc-linux-gnu --host=i686-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --with-fpectl --enable-shared --enable-ipv6 --with-threads --enable-unicode=ucs4 --infodir=${prefix}/share/info --mandir=${prefix}/share/man --with-libc= --with-system-ffi
checking for --enable-universalsdk... no
checking for --with-universal-archs... 32-bit
checking MACHDEP... linux2
checking EXTRAPLATDIR... 
checking machine type as reported by uname -m... i686
checking for --without-gcc... no
checking for i686-pc-linux-gnu-gcc... i686-pc-linux-gnu-gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether i686-pc-linux-gnu-gcc accepts -g... yes
checking for i686-pc-linux-gnu-gcc option to accept ISO C89... none needed
checking for --with-cxx-main=<compiler>... no
checking how to run the C preprocessor... i686-pc-linux-gnu-gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for --with-suffix... 
checking for case-insensitive build directory... no
checking LIBRARY... libpython$(VERSION).a
checking LINKCC... $(PURIFY) $(MAINCC)
checking for --enable-shared... yes
checking for --enable-profiling... 
checking LDLIBRARY... libpython$(VERSION).so
checking for i686-pc-linux-gnu-ranlib... i686-pc-linux-gnu-ranlib
checking for ar... ar
checking for svnversion... found
checking for a BSD-compatible install... /usr/bin/install -c
checking for --with-pydebug... no
checking whether i686-pc-linux-gnu-gcc accepts -fno-strict-aliasing... yes
checking whether i686-pc-linux-gnu-gcc accepts -OPT:Olimit=0... no
checking whether i686-pc-linux-gnu-gcc accepts -Olimit 1500... no
checking whether gcc supports ParseTuple __format__... no
checking whether pthreads are available without options... no
checking whether i686-pc-linux-gnu-gcc accepts -Kpthread... no
checking whether i686-pc-linux-gnu-gcc accepts -Kthread... no
checking whether i686-pc-linux-gnu-gcc accepts -pthread... yes
checking whether i686-pc-linux-gnu-g++ also accepts flags for thread support... yes
checking for ANSI C header files... (cached) yes
checking asm/types.h usability... yes
checking asm/types.h presence... yes
checking for asm/types.h... yes
checking conio.h usability... no
checking conio.h presence... no
checking for conio.h... no
checking curses.h usability... yes
checking curses.h presence... yes
checking for curses.h... yes
checking direct.h usability... no
checking direct.h presence... no
checking for direct.h... no
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking grp.h usability... yes
checking grp.h presence... yes
checking for grp.h... yes
checking ieeefp.h usability... no
checking ieeefp.h presence... no
checking for ieeefp.h... no
checking io.h usability... no
checking io.h presence... no
checking for io.h... no
checking langinfo.h usability... yes
checking langinfo.h presence... yes
checking for langinfo.h... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking ncurses.h usability... yes
checking ncurses.h presence... yes
checking for ncurses.h... yes
checking poll.h usability... yes
checking poll.h presence... yes
checking for poll.h... yes
checking process.h usability... no
checking process.h presence... no
checking for process.h... no
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking shadow.h usability... yes
checking shadow.h presence... yes
checking for shadow.h... yes
checking signal.h usability... yes
checking signal.h presence... yes
checking for signal.h... yes
checking for stdint.h... (cached) yes
checking stropts.h usability... yes
checking stropts.h presence... yes
checking for stropts.h... yes
checking termios.h usability... yes
checking termios.h presence... yes
checking for termios.h... yes
checking thread.h usability... no
checking thread.h presence... no
checking for thread.h... no
checking for unistd.h... (cached) yes
checking utime.h usability... yes
checking utime.h presence... yes
checking for utime.h... yes
checking sys/audioio.h usability... no
checking sys/audioio.h presence... no
checking for sys/audioio.h... no
checking sys/bsdtty.h usability... no
checking sys/bsdtty.h presence... no
checking for sys/bsdtty.h... no
checking sys/epoll.h usability... yes
checking sys/epoll.h presence... yes
checking for sys/epoll.h... yes
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/file.h usability... yes
checking sys/file.h presence... yes
checking for sys/file.h... yes
checking sys/loadavg.h usability... no
checking sys/loadavg.h presence... no
checking for sys/loadavg.h... no
checking sys/lock.h usability... no
checking sys/lock.h presence... no
checking for sys/lock.h... no
checking sys/mkdev.h usability... no
checking sys/mkdev.h presence... no
checking for sys/mkdev.h... no
checking sys/modem.h usability... no
checking sys/modem.h presence... no
checking for sys/modem.h... no
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/poll.h usability... yes
checking sys/poll.h presence... yes
checking for sys/poll.h... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/statvfs.h usability... yes
checking sys/statvfs.h presence... yes
checking for sys/statvfs.h... yes
checking for sys/stat.h... (cached) yes
checking sys/termio.h usability... no
checking sys/termio.h presence... no
checking for sys/termio.h... no
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking sys/times.h usability... yes
checking sys/times.h presence... yes
checking for sys/times.h... yes
checking for sys/types.h... (cached) yes
checking sys/un.h usability... yes
checking sys/un.h presence... yes
checking for sys/un.h... yes
checking sys/utsname.h usability... yes
checking sys/utsname.h presence... yes
checking for sys/utsname.h... yes
checking sys/wait.h usability... yes
checking sys/wait.h presence... yes
checking for sys/wait.h... yes
checking pty.h usability... yes
checking pty.h presence... yes
checking for pty.h... yes
checking libutil.h usability... no
checking libutil.h presence... no
checking for libutil.h... no
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking netpacket/packet.h usability... yes
checking netpacket/packet.h presence... yes
checking for netpacket/packet.h... yes
checking sysexits.h usability... yes
checking sysexits.h presence... yes
checking for sysexits.h... yes
checking bluetooth.h usability... no
checking bluetooth.h presence... no
checking for bluetooth.h... no
checking bluetooth/bluetooth.h usability... yes
checking bluetooth/bluetooth.h presence... yes
checking for bluetooth/bluetooth.h... yes
checking linux/tipc.h usability... yes
checking linux/tipc.h presence... yes
checking for linux/tipc.h... yes
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking whether sys/types.h defines makedev... yes
checking for term.h... yes
checking for linux/netlink.h... yes
checking for clock_t in time.h... yes
checking for makedev... yes
checking Solaris LFS bug... no
checking for mode_t... yes
checking for off_t... yes
checking for pid_t... yes
checking return type of signal handlers... void
checking for size_t... yes
checking for uid_t in sys/types.h... yes
checking for ssize_t... yes
checking size of int... 4
checking size of long... 4
checking size of void *... 4
checking size of short... 2
checking size of float... 4
checking size of double... 8
checking size of fpos_t... 16
checking size of size_t... 4
checking size of pid_t... 4
checking for long long support... yes
checking size of long long... 8
checking for long double support... yes
checking size of long double... 12
checking for _Bool support... yes
checking size of _Bool... 1
checking for uintptr_t... yes
checking size of uintptr_t... 4
checking size of off_t... 8
checking whether to enable large file support... yes
checking size of time_t... 4
checking for pthread_t... yes
checking size of pthread_t... 4
checking for --enable-toolbox-glue... no
checking for --enable-framework... no
checking for dyld... no
checking SO... .so
checking LDSHARED... $(CC) -shared
checking CCSHARED... -fPIC
checking LINKFORSHARED... -Xlinker -export-dynamic
checking CFLAGSFORSHARED... $(CCSHARED)
checking SHLIBS... $(LIBS)
checking for dlopen in -ldl... yes
checking for shl_load in -ldld... no
checking for library containing sem_init... -lpthread
checking for textdomain in -lintl... no
checking for t_open in -lnsl... no
checking for socket in -lsocket... no
checking for --with-libs... no
checking for i686-pc-linux-gnu-pkg-config... no
checking for pkg-config... /usr/bin/pkg-config
checking for --with-system-ffi... yes
checking for --with-signal-module... yes
checking for --with-dec-threads... no
checking for --with-threads... yes
checking if PTHREAD_SCOPE_SYSTEM is supported... yes
checking for pthread_sigmask... yes
checking if --enable-ipv6 is specified... yes
checking ipv6 stack type... linux-glibc
checking for OSX 10.5 SDK or later... no
checking for --with-doc-strings... yes
checking for --with-tsc... no
checking for --with-pymalloc... yes
checking for --with-wctype-functions... no
checking for dlopen... yes
checking DYNLOADFILE... dynload_shlib.o
checking MACHDEP_OBJS... MACHDEP_OBJS
checking for alarm... yes
checking for setitimer... yes
checking for getitimer... yes
checking for bind_textdomain_codeset... yes
checking for chown... yes
checking for clock... yes
checking for confstr... yes
checking for ctermid... yes
checking for execv... yes
checking for fchmod... yes
checking for fchown... yes
checking for fork... yes
checking for fpathconf... yes
checking for ftime... yes
checking for ftruncate... yes
checking for gai_strerror... yes
checking for getgroups... yes
checking for getlogin... yes
checking for getloadavg... yes
checking for getpeername... yes
checking for getpgid... yes
checking for getpid... yes
checking for getpriority... yes
checking for getpwent... yes
checking for getspnam... yes
checking for getspent... yes
checking for getsid... yes
checking for getwd... yes
checking for kill... yes
checking for killpg... yes
checking for lchmod... no
checking for lchown... yes
checking for lstat... yes
checking for mkfifo... yes
checking for mknod... yes
checking for mktime... yes
checking for mremap... yes
checking for nice... yes
checking for pathconf... yes
checking for pause... yes
checking for plock... no
checking for poll... yes
checking for pthread_init... no
checking for putenv... yes
checking for readlink... yes
checking for realpath... yes
checking for select... yes
checking for setegid... yes
checking for seteuid... yes
checking for setgid... yes
checking for setlocale... yes
checking for setregid... yes
checking for setreuid... yes
checking for setsid... yes
checking for setpgid... yes
checking for setpgrp... yes
checking for setuid... yes
checking for setvbuf... yes
checking for snprintf... yes
checking for sigaction... yes
checking for siginterrupt... yes
checking for sigrelse... yes
checking for strftime... yes
checking for sysconf... yes
checking for tcgetpgrp... yes
checking for tcsetpgrp... yes
checking for tempnam... yes
checking for timegm... yes
checking for times... yes
checking for tmpfile... yes
checking for tmpnam... yes
checking for tmpnam_r... yes
checking for truncate... yes
checking for uname... yes
checking for unsetenv... yes
checking for utimes... yes
checking for waitpid... yes
checking for wait3... yes
checking for wait4... yes
checking for wcscoll... yes
checking for _getpty... no
checking for chroot... yes
checking for link... yes
checking for symlink... yes
checking for fchdir... yes
checking for fsync... yes
checking for fdatasync... yes
checking for epoll... yes
checking for kqueue... no
checking for ctermid_r... no
checking for flock... yes
checking for getpagesize... yes
checking for true... true
checking for inet_aton in -lc... yes
checking for chflags... no
checking for lchflags... no
checking for inflateCopy in -lz... yes
checking for hstrerror... yes
checking for inet_aton... yes
checking for inet_pton... yes
checking for setgroups... yes
checking for openpty... no
checking for openpty in -lutil... yes
checking for forkpty... yes
checking for memmove... yes
checking for fseek64... no
checking for fseeko... yes
checking for fstatvfs... yes
checking for ftell64... no
checking for ftello... yes
checking for statvfs... yes
checking for dup2... yes
checking for getcwd... yes
checking for strdup... yes
checking for getpgrp... yes
checking for setpgrp... (cached) yes
checking for gettimeofday... yes
checking for major... yes
checking for getaddrinfo... yes
checking getaddrinfo bug... good
checking for getnameinfo... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for struct stat.st_rdev... yes
checking for struct stat.st_blksize... yes
checking for struct stat.st_flags... no
checking for struct stat.st_gen... no
checking for struct stat.st_birthtime... no
checking for struct stat.st_blocks... yes
checking for time.h that defines altzone... no
checking whether sys/select.h and sys/time.h may both be included... yes
checking for addrinfo... yes
checking for sockaddr_storage... yes
checking whether char is unsigned... no
checking for an ANSI C-conforming const... yes
checking for working volatile... yes
checking for working signed char... yes
checking for prototypes... yes
checking for variable length prototypes and stdarg.h... yes
checking for socketpair... yes
checking if sockaddr has sa_len member... no
checking whether va_list is an array... no
checking for gethostbyname_r... yes
checking gethostbyname_r with 6 args... yes
checking for __fpu_control... yes
checking for --with-fpectl... yes
checking for --with-libm=STRING... default LIBM="-lm"
checking for --with-libc=STRING... set LIBC=""
checking for x87-style double rounding... yes
checking whether tanh preserves the sign of zero... yes
checking for acosh... yes
checking for asinh... yes
checking for atanh... yes
checking for copysign... yes
checking for expm1... yes
checking for finite... yes
checking for hypot... yes
checking for log1p... yes
checking whether isinf is declared... yes
checking whether isnan is declared... yes
checking whether isfinite is declared... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking size of wchar_t... 4
checking for UCS-4 tcl... no
checking whether wchar_t is signed... yes
checking what type to use for unicode... unsigned long
checking whether byte ordering is bigendian... no
checking whether right shift extends the sign bit... yes
checking for getc_unlocked() and friends... yes
checking how to link readline libs... -lreadline
checking for rl_callback_handler_install in -lreadline... yes
checking for rl_pre_input_hook in -lreadline... yes
checking for rl_completion_display_matches_hook in -lreadline... yes
checking for rl_completion_matches in -lreadline... yes
checking for broken nice()... no
checking for broken poll()... no
checking for struct tm.tm_zone... (cached) yes
checking for working tzset()... yes
checking for tv_nsec in struct stat... yes
checking for tv_nsec2 in struct stat... no
checking whether mvwdelch is an expression... yes
checking whether WINDOW has _flags... yes
checking for is_term_resized... yes
checking for resize_term... yes
checking for resizeterm... yes
checking for /dev/ptmx... yes
checking for /dev/ptc... no
checking for %zd printf() format support... yes
checking for socklen_t... yes
checking for build directories... done
configure: creating ./config.status
config.status: creating Makefile.pre
config.status: creating Modules/Setup.config
config.status: creating pyconfig.h
creating Modules/Setup
creating Modules/Setup.local
creating Makefile
>>> Source configured.
>>> Compiling source in /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 ...
make -j2 
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Modules/python.o ./Modules/python.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/acceler.o Parser/acceler.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/grammar1.o Parser/grammar1.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/listnode.o Parser/listnode.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/node.o Parser/node.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/parser.o Parser/parser.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/parsetok.o Parser/parsetok.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/bitset.o Parser/bitset.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/metagrammar.o Parser/metagrammar.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/firstsets.o Parser/firstsets.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/grammar.o Parser/grammar.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/pgen.o Parser/pgen.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/myreadline.o Parser/myreadline.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/tokenizer.o Parser/tokenizer.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/abstract.o Objects/abstract.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/boolobject.o Objects/boolobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/bufferobject.o Objects/bufferobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/bytes_methods.o Objects/bytes_methods.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/bytearrayobject.o Objects/bytearrayobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/cellobject.o Objects/cellobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/classobject.o Objects/classobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/cobject.o Objects/cobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/codeobject.o Objects/codeobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/complexobject.o Objects/complexobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/descrobject.o Objects/descrobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/enumobject.o Objects/enumobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/exceptions.o Objects/exceptions.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/genobject.o Objects/genobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/fileobject.o Objects/fileobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/floatobject.o Objects/floatobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/frameobject.o Objects/frameobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/funcobject.o Objects/funcobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/intobject.o Objects/intobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/iterobject.o Objects/iterobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/listobject.o Objects/listobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/longobject.o Objects/longobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/dictobject.o Objects/dictobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/methodobject.o Objects/methodobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/moduleobject.o Objects/moduleobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/object.o Objects/object.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/obmalloc.o Objects/obmalloc.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/rangeobject.o Objects/rangeobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/setobject.o Objects/setobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/sliceobject.o Objects/sliceobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/stringobject.o Objects/stringobject.c
Objects/stringobject.c: In function ‘string_print’:
Objects/stringobject.c:822: warning: ignoring return value of ‘fwrite’, declared with attribute warn_unused_result
Objects/stringobject.c:829: warning: ignoring return value of ‘fwrite’, declared with attribute warn_unused_result
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/structseq.o Objects/structseq.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/tupleobject.o Objects/tupleobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/typeobject.o Objects/typeobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/weakrefobject.o Objects/weakrefobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/unicodeobject.o Objects/unicodeobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/unicodectype.o Objects/unicodectype.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/_warnings.o Python/_warnings.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/Python-ast.o Python/Python-ast.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/asdl.o Python/asdl.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/ast.o Python/ast.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/bltinmodule.o Python/bltinmodule.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/ceval.o Python/ceval.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/mysnprintf.o Python/mysnprintf.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/tokenizer_pgen.o Parser/tokenizer_pgen.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/printgrammar.o Parser/printgrammar.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/pgenmain.o Parser/pgenmain.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/codecs.o Python/codecs.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/errors.o Python/errors.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/frozen.o Python/frozen.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/frozenmain.o Python/frozenmain.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/future.o Python/future.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/getargs.o Python/getargs.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/getcompiler.o Python/getcompiler.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/getcopyright.o Python/getcopyright.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/getmtime.o Python/getmtime.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -DPLATFORM='"linux2"' -o Python/getplatform.o ./Python/getplatform.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/getversion.o Python/getversion.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/import.o Python/import.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -I. -o Python/importdl.o ./Python/importdl.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/marshal.o Python/marshal.c
Python/marshal.c: In function ‘w_string’:
Python/marshal.c:87: warning: ignoring return value of ‘fwrite’, declared with attribute warn_unused_result
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/modsupport.o Python/modsupport.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/mystrtoul.o Python/mystrtoul.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/peephole.o Python/peephole.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/pyarena.o Python/pyarena.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/pyfpe.o Python/pyfpe.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/pymath.o Python/pymath.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/pystate.o Python/pystate.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/pythonrun.o Python/pythonrun.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/structmember.o Python/structmember.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/sysmodule.o Python/sysmodule.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/traceback.o Python/traceback.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/getopt.o Python/getopt.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/pystrcmp.o Python/pystrcmp.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/pystrtod.o Python/pystrtod.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/formatter_unicode.o Python/formatter_unicode.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/formatter_string.o Python/formatter_string.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/dynload_shlib.o Python/dynload_shlib.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/thread.o Python/thread.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Modules/config.o Modules/config.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -DPYTHONPATH='":plat-linux2:lib-tk:lib-old"' \
		-DPREFIX='"/usr"' \
		-DEXEC_PREFIX='"/usr"' \
		-DVERSION='"2.6"' \
		-DVPATH='""' \
		-o Modules/getpath.o ./Modules/getpath.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Modules/main.o Modules/main.c
./Modules/getpath.c: In function ‘copy_absolute’:
./Modules/getpath.c:235: warning: ignoring return value of ‘getcwd’, declared with attribute warn_unused_result
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Modules/gcmodule.o Modules/gcmodule.c
i686-pc-linux-gnu-gcc -pthread -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/threadmodule.c -o Modules/threadmodule.o
i686-pc-linux-gnu-gcc -pthread -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/signalmodule.c -o Modules/signalmodule.o
./Modules/signalmodule.c: In function ‘signal_handler’:
./Modules/signalmodule.c:182: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result
i686-pc-linux-gnu-gcc -pthread -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/posixmodule.c -o Modules/posixmodule.o
i686-pc-linux-gnu-gcc -pthread -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/errnomodule.c -o Modules/errnomodule.o
i686-pc-linux-gnu-gcc -pthread -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/pwdmodule.c -o Modules/pwdmodule.o
i686-pc-linux-gnu-gcc -pthread -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/_sre.c -o Modules/_sre.o
i686-pc-linux-gnu-gcc -pthread -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/_codecsmodule.c -o Modules/_codecsmodule.o
i686-pc-linux-gnu-gcc -pthread -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/zipimport.c -o Modules/zipimport.o
i686-pc-linux-gnu-gcc -pthread -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/symtablemodule.c -o Modules/symtablemodule.o
i686-pc-linux-gnu-gcc -pthread -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/xxsubtype.c -o Modules/xxsubtype.o
i686-pc-linux-gnu-gcc -pthread -DNDEBUG  -Wl,-O1 -Wl,--as-needed -L.  Parser/acceler.o Parser/grammar1.o Parser/listnode.o Parser/node.o Parser/parser.o Parser/parsetok.o Parser/bitset.o Parser/metagrammar.o Parser/firstsets.o Parser/grammar.o Parser/pgen.o Objects/obmalloc.o Python/mysnprintf.o Parser/tokenizer_pgen.o Parser/printgrammar.o Parser/pgenmain.o -lpthread -ldl  -lutil -o Parser/pgen
Parser/pgen ./Grammar/Grammar ./Include/graminit.h ./Python/graminit.c
Parser/pgen ./Grammar/Grammar ./Include/graminit.h ./Python/graminit.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/symtable.o Python/symtable.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/compile.o Python/compile.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/graminit.o Python/graminit.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -DSVNVERSION="\"`LC_ALL=C svnversion .`\"" -o Modules/getbuildinfo.o ./Modules/getbuildinfo.c
rm -f libpython2.6.a
ar cr libpython2.6.a Modules/getbuildinfo.o
if test libpython2.6.so.1.0 != libpython2.6.so; then \
		i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -Wl,-hlibpython2.6.so.1.0 -o libpython2.6.so.1.0 Modules/getbuildinfo.o Parser/acceler.o Parser/grammar1.o Parser/listnode.o Parser/node.o Parser/parser.o Parser/parsetok.o Parser/bitset.o Parser/metagrammar.o Parser/firstsets.o Parser/grammar.o Parser/pgen.o Parser/myreadline.o Parser/tokenizer.o Objects/abstract.o Objects/boolobject.o Objects/bufferobject.o Objects/bytes_methods.o Objects/bytearrayobject.o Objects/cellobject.o Objects/classobject.o Objects/cobject.o Objects/codeobject.o Objects/complexobject.o Objects/descrobject.o Objects/enumobject.o Objects/exceptions.o Objects/genobject.o Objects/fileobject.o Objects/floatobject.o Objects/frameobject.o Objects/funcobject.o Objects/intobject.o Objects/iterobject.o Objects/listobject.o Objects/longobject.o Objects/dictobject.o Objects/methodobject.o Objects/moduleobject.o Objects/object.o Objects/obmalloc.o Objects/rangeobject.o Objects/setobject.o Objects/sliceobject.o Objects/stringobject.o Objects/structseq.o Objects/tupleobject.o Objects/typeobject.o Objects/weakrefobject.o Objects/unicodeobject.o Objects/unicodectype.o Python/_warnings.o Python/Python-ast.o Python/asdl.o Python/ast.o Python/bltinmodule.o Python/ceval.o Python/compile.o Python/codecs.o Python/errors.o Python/frozen.o Python/frozenmain.o Python/future.o Python/getargs.o Python/getcompiler.o Python/getcopyright.o Python/getmtime.o Python/getplatform.o Python/getversion.o Python/graminit.o Python/import.o Python/importdl.o Python/marshal.o Python/modsupport.o Python/mystrtoul.o Python/mysnprintf.o Python/peephole.o Python/pyarena.o Python/pyfpe.o Python/pymath.o Python/pystate.o Python/pythonrun.o Python/structmember.o Python/symtable.o Python/sysmodule.o Python/traceback.o Python/getopt.o Python/pystrcmp.o Python/pystrtod.o Python/formatter_unicode.o Python/formatter_string.o Python/dynload_shlib.o   Python/thread.o Modules/config.o Modules/getpath.o Modules/main.o Modules/gcmodule.o  Modules/threadmodule.o  Modules/signalmodule.o  Modules/posixmodule.o  Modules/errnomodule.o  Modules/pwdmodule.o  Modules/_sre.o  Modules/_codecsmodule.o  Modules/zipimport.o  Modules/symtablemodule.o  Modules/xxsubtype.o   -lpthread -ldl  -lutil  -lm ; \
		ln -f libpython2.6.so.1.0 libpython2.6.so; \
	else \
		i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -o libpython2.6.so Modules/getbuildinfo.o Parser/acceler.o Parser/grammar1.o Parser/listnode.o Parser/node.o Parser/parser.o Parser/parsetok.o Parser/bitset.o Parser/metagrammar.o Parser/firstsets.o Parser/grammar.o Parser/pgen.o Parser/myreadline.o Parser/tokenizer.o Objects/abstract.o Objects/boolobject.o Objects/bufferobject.o Objects/bytes_methods.o Objects/bytearrayobject.o Objects/cellobject.o Objects/classobject.o Objects/cobject.o Objects/codeobject.o Objects/complexobject.o Objects/descrobject.o Objects/enumobject.o Objects/exceptions.o Objects/genobject.o Objects/fileobject.o Objects/floatobject.o Objects/frameobject.o Objects/funcobject.o Objects/intobject.o Objects/iterobject.o Objects/listobject.o Objects/longobject.o Objects/dictobject.o Objects/methodobject.o Objects/moduleobject.o Objects/object.o Objects/obmalloc.o Objects/rangeobject.o Objects/setobject.o Objects/sliceobject.o Objects/stringobject.o Objects/structseq.o Objects/tupleobject.o Objects/typeobject.o Objects/weakrefobject.o Objects/unicodeobject.o Objects/unicodectype.o Python/_warnings.o Python/Python-ast.o Python/asdl.o Python/ast.o Python/bltinmodule.o Python/ceval.o Python/compile.o Python/codecs.o Python/errors.o Python/frozen.o Python/frozenmain.o Python/future.o Python/getargs.o Python/getcompiler.o Python/getcopyright.o Python/getmtime.o Python/getplatform.o Python/getversion.o Python/graminit.o Python/import.o Python/importdl.o Python/marshal.o Python/modsupport.o Python/mystrtoul.o Python/mysnprintf.o Python/peephole.o Python/pyarena.o Python/pyfpe.o Python/pymath.o Python/pystate.o Python/pythonrun.o Python/structmember.o Python/symtable.o Python/sysmodule.o Python/traceback.o Python/getopt.o Python/pystrcmp.o Python/pystrtod.o Python/formatter_unicode.o Python/formatter_string.o Python/dynload_shlib.o   Python/thread.o Modules/config.o Modules/getpath.o Modules/main.o Modules/gcmodule.o  Modules/threadmodule.o  Modules/signalmodule.o  Modules/posixmodule.o  Modules/errnomodule.o  Modules/pwdmodule.o  Modules/_sre.o  Modules/_codecsmodule.o  Modules/zipimport.o  Modules/symtablemodule.o  Modules/xxsubtype.o   -lpthread -ldl  -lutil  -lm ; \
	fi
ar cr libpython2.6.a Parser/acceler.o Parser/grammar1.o Parser/listnode.o Parser/node.o Parser/parser.o Parser/parsetok.o Parser/bitset.o Parser/metagrammar.o Parser/firstsets.o Parser/grammar.o Parser/pgen.o Parser/myreadline.o Parser/tokenizer.o
ar cr libpython2.6.a Objects/abstract.o Objects/boolobject.o Objects/bufferobject.o Objects/bytes_methods.o Objects/bytearrayobject.o Objects/cellobject.o Objects/classobject.o Objects/cobject.o Objects/codeobject.o Objects/complexobject.o Objects/descrobject.o Objects/enumobject.o Objects/exceptions.o Objects/genobject.o Objects/fileobject.o Objects/floatobject.o Objects/frameobject.o Objects/funcobject.o Objects/intobject.o Objects/iterobject.o Objects/listobject.o Objects/longobject.o Objects/dictobject.o Objects/methodobject.o Objects/moduleobject.o Objects/object.o Objects/obmalloc.o Objects/rangeobject.o Objects/setobject.o Objects/sliceobject.o Objects/stringobject.o Objects/structseq.o Objects/tupleobject.o Objects/typeobject.o Objects/weakrefobject.o Objects/unicodeobject.o Objects/unicodectype.o
ar cr libpython2.6.a Python/_warnings.o Python/Python-ast.o Python/asdl.o Python/ast.o Python/bltinmodule.o Python/ceval.o Python/compile.o Python/codecs.o Python/errors.o Python/frozen.o Python/frozenmain.o Python/future.o Python/getargs.o Python/getcompiler.o Python/getcopyright.o Python/getmtime.o Python/getplatform.o Python/getversion.o Python/graminit.o Python/import.o Python/importdl.o Python/marshal.o Python/modsupport.o Python/mystrtoul.o Python/mysnprintf.o Python/peephole.o Python/pyarena.o Python/pyfpe.o Python/pymath.o Python/pystate.o Python/pythonrun.o Python/structmember.o Python/symtable.o Python/sysmodule.o Python/traceback.o Python/getopt.o Python/pystrcmp.o Python/pystrtod.o Python/formatter_unicode.o Python/formatter_string.o Python/dynload_shlib.o   Python/thread.o
ar cr libpython2.6.a Modules/config.o Modules/getpath.o Modules/main.o Modules/gcmodule.o 
ar cr libpython2.6.a Modules/threadmodule.o  Modules/signalmodule.o  Modules/posixmodule.o  Modules/errnomodule.o  Modules/pwdmodule.o  Modules/_sre.o  Modules/_codecsmodule.o  Modules/zipimport.o  Modules/symtablemodule.o  Modules/xxsubtype.o
i686-pc-linux-gnu-ranlib libpython2.6.a
i686-pc-linux-gnu-gcc -pthread -Wl,-O1 -Wl,--as-needed -L. -Xlinker -export-dynamic -o python \
			Modules/python.o \
			-L. -lpython2.6 -lpthread -ldl  -lutil   -lm  
running build
running build_ext
building '_struct' extension
creating build
creating build/temp.linux-i686-2.6
creating build/temp.linux-i686-2.6/var
creating build/temp.linux-i686-2.6/var/tmp
creating build/temp.linux-i686-2.6/var/tmp/portage
creating build/temp.linux-i686-2.6/var/tmp/portage/dev-lang
creating build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3
creating build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work
creating build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5
creating build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_struct.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_struct.o
creating build/lib.linux-i686-2.6
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_struct.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_struct.so
building '_ctypes_test' extension
creating build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/_ctypes_test.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/_ctypes_test.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/_ctypes_test.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_ctypes_test.so
building '_weakref' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_weakref.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_weakref.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_weakref.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_weakref.so
building 'array' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/arraymodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/arraymodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/arraymodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/array.so
building 'cmath' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cmathmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cmathmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cmathmodule.o -L/usr/local/lib -L. -lm -lpython2.6 -o build/lib.linux-i686-2.6/cmath.so
building 'math' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/mathmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/mathmodule.o
/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/mathmodule.c: In function ‘math_fsum’:
/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/mathmodule.c:574: warning: passing argument 1 of ‘PyFPE_dummy’ discards qualifiers from pointer target type
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/mathmodule.o -L/usr/local/lib -L. -lm -lpython2.6 -o build/lib.linux-i686-2.6/math.so
building 'strop' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/stropmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/stropmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/stropmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/strop.so
building 'time' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/timemodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/timemodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/timemodule.o -L/usr/local/lib -L. -lm -lpython2.6 -o build/lib.linux-i686-2.6/time.so
building 'datetime' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/datetimemodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/datetimemodule.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/timemodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/timemodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/datetimemodule.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/timemodule.o -L/usr/local/lib -L. -lm -lpython2.6 -o build/lib.linux-i686-2.6/datetime.so
building 'itertools' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/itertoolsmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/itertoolsmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/itertoolsmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/itertools.so
building 'future_builtins' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/future_builtins.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/future_builtins.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/future_builtins.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/future_builtins.so
building '_random' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_randommodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_randommodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_randommodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_random.so
building '_collections' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_collectionsmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_collectionsmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_collectionsmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_collections.so
building '_bisect' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_bisectmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_bisectmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_bisectmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_bisect.so
building '_heapq' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_heapqmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_heapqmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_heapqmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_heapq.so
building 'operator' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/operator.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/operator.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/operator.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/operator.so
building '_fileio' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_fileio.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_fileio.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_fileio.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_fileio.so
building '_bytesio' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_bytesio.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_bytesio.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_bytesio.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_bytesio.so
building '_functools' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_functoolsmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_functoolsmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_functoolsmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_functools.so
building '_json' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_json.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_json.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_json.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_json.so
building '_testcapi' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_testcapimodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_testcapimodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_testcapimodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_testcapi.so
building '_hotshot' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_hotshot.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_hotshot.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_hotshot.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_hotshot.so
building '_lsprof' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_lsprof.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_lsprof.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/rotatingtree.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/rotatingtree.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_lsprof.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/rotatingtree.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_lsprof.so
building 'unicodedata' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/unicodedata.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/unicodedata.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/unicodedata.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/unicodedata.so
building '_locale' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_localemodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_localemodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_localemodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_locale.so
building 'fcntl' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/fcntlmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/fcntlmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/fcntlmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/fcntl.so
building 'grp' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/grpmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/grpmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/grpmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/grp.so
building 'spwd' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/spwdmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/spwdmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/spwdmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/spwd.so
building 'select' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/selectmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/selectmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/selectmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/select.so
building 'parser' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/parsermodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/parsermodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/parsermodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/parser.so
building 'cStringIO' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cStringIO.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cStringIO.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cStringIO.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/cStringIO.so
building 'cPickle' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cPickle.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cPickle.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cPickle.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/cPickle.so
building 'mmap' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/mmapmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/mmapmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/mmapmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/mmap.so
building 'syslog' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/syslogmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/syslogmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/syslogmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/syslog.so
building 'audioop' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/audioop.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/audioop.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/audioop.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/audioop.so
building 'imageop' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/imageop.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/imageop.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/imageop.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/imageop.so
building 'readline' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/readline.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/readline.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/readline.o -L/usr/lib/termcap -L/usr/local/lib -L. -lreadline -lncursesw -lpython2.6 -o build/lib.linux-i686-2.6/readline.so
[?1034hbuilding 'crypt' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cryptmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cryptmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cryptmodule.o -L/usr/local/lib -L. -lcrypt -lpython2.6 -o build/lib.linux-i686-2.6/crypt.so
building '_csv' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_csv.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_csv.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_csv.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_csv.so
building '_socket' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/socketmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/socketmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/socketmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_socket.so
building '_ssl' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ssl.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ssl.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ssl.o -L/usr/local/lib -L. -lssl -lcrypto -lpython2.6 -o build/lib.linux-i686-2.6/_ssl.so
building '_hashlib' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_hashopenssl.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_hashopenssl.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_hashopenssl.o -L/usr/local/lib -L. -lssl -lcrypto -lpython2.6 -o build/lib.linux-i686-2.6/_hashlib.so
building '_sha' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/shamodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/shamodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/shamodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_sha.so
building '_md5' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/md5module.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/md5module.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/md5.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/md5.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/md5module.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/md5.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_md5.so
building '_sha256' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/sha256module.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/sha256module.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/sha256module.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_sha256.so
building '_sha512' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/sha512module.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/sha512module.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/sha512module.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_sha512.so
building '_bsddb' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I/usr/include/db4.7 -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_bsddb.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_bsddb.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_bsddb.o -L/usr/lib -L/usr/local/lib -L. -Wl,-R/usr/lib -ldb-4.7 -lpython2.6 -o build/lib.linux-i686-2.6/_bsddb.so
building '_sqlite3' extension
creating build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DMODULE_NAME="sqlite3" -IModules/_sqlite -I/usr/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/cache.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/cache.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DMODULE_NAME="sqlite3" -IModules/_sqlite -I/usr/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/connection.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/connection.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DMODULE_NAME="sqlite3" -IModules/_sqlite -I/usr/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/cursor.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/cursor.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DMODULE_NAME="sqlite3" -IModules/_sqlite -I/usr/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/microprotocols.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/microprotocols.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DMODULE_NAME="sqlite3" -IModules/_sqlite -I/usr/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/module.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/module.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DMODULE_NAME="sqlite3" -IModules/_sqlite -I/usr/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/prepare_protocol.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/prepare_protocol.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DMODULE_NAME="sqlite3" -IModules/_sqlite -I/usr/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/row.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/row.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DMODULE_NAME="sqlite3" -IModules/_sqlite -I/usr/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/statement.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/statement.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DMODULE_NAME="sqlite3" -IModules/_sqlite -I/usr/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/util.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/util.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/cache.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/connection.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/cursor.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/microprotocols.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/module.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/prepare_protocol.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/row.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/statement.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/util.o -L/usr/lib -L/usr/local/lib -L. -Wl,-R/usr/lib -lsqlite3 -lpython2.6 -o build/lib.linux-i686-2.6/_sqlite3.so
building 'dbm' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DHAVE_GDBM_NDBM_H -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/dbmmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/dbmmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/dbmmodule.o -L/usr/local/lib -L. -lgdbm -lgdbm_compat -lpython2.6 -o build/lib.linux-i686-2.6/dbm.so
building 'gdbm' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/gdbmmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/gdbmmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/gdbmmodule.o -L/usr/local/lib -L. -lgdbm -lpython2.6 -o build/lib.linux-i686-2.6/gdbm.so
building 'termios' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/termios.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/termios.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/termios.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/termios.so
building 'resource' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/resource.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/resource.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/resource.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/resource.so
building 'nis' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/nismodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/nismodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/nismodule.o -L/usr/local/lib -L. -lnsl -lpython2.6 -o build/lib.linux-i686-2.6/nis.so
building '_curses' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_cursesmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_cursesmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_cursesmodule.o -L/usr/local/lib -L. -lncursesw -lpython2.6 -o build/lib.linux-i686-2.6/_curses.so
building '_curses_panel' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_curses_panel.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_curses_panel.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_curses_panel.o -L/usr/local/lib -L. -lpanelw -lncursesw -lpython2.6 -o build/lib.linux-i686-2.6/_curses_panel.so
building 'zlib' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/zlibmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/zlibmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/zlibmodule.o -L/usr/local/lib -L. -lz -lpython2.6 -o build/lib.linux-i686-2.6/zlib.so
building 'binascii' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/binascii.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/binascii.o -DUSE_ZLIB_CRC32
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/binascii.o -L/usr/local/lib -L. -lz -lpython2.6 -o build/lib.linux-i686-2.6/binascii.so
building 'bz2' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/bz2module.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/bz2module.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/bz2module.o -L/usr/local/lib -L. -lbz2 -lpython2.6 -o build/lib.linux-i686-2.6/bz2.so
building 'pyexpat' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I/usr/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/pyexpat.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/pyexpat.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/pyexpat.o -L/usr/local/lib -L. -lexpat -lpython2.6 -o build/lib.linux-i686-2.6/pyexpat.so
building '_elementtree' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DUSE_PYEXPAT_CAPI -I/usr/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_elementtree.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_elementtree.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_elementtree.o -L/usr/local/lib -L. -lexpat -lpython2.6 -o build/lib.linux-i686-2.6/_elementtree.so
building '_multibytecodec' extension
creating build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/multibytecodec.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/multibytecodec.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/multibytecodec.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_multibytecodec.so
building '_codecs_kr' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_kr.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_kr.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_kr.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_codecs_kr.so
building '_codecs_jp' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_jp.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_jp.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_jp.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_codecs_jp.so
building '_codecs_cn' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_cn.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_cn.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_cn.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_codecs_cn.so
building '_codecs_tw' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_tw.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_tw.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_tw.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_codecs_tw.so
building '_codecs_hk' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_hk.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_hk.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_hk.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_codecs_hk.so
building '_codecs_iso2022' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_iso2022.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_iso2022.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_iso2022.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_codecs_iso2022.so
building 'dl' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/dlmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/dlmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/dlmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/dl.so
building '_multiprocessing' extension
creating build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_multiprocessing
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DHAVE_SEM_OPEN=1 -DHAVE_FD_TRANSFER=1 -DHAVE_SEM_TIMEDWAIT=1 -IModules/_multiprocessing -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_multiprocessing/multiprocessing.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_multiprocessing/multiprocessing.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DHAVE_SEM_OPEN=1 -DHAVE_FD_TRANSFER=1 -DHAVE_SEM_TIMEDWAIT=1 -IModules/_multiprocessing -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_multiprocessing/socket_connection.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_multiprocessing/socket_connection.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DHAVE_SEM_OPEN=1 -DHAVE_FD_TRANSFER=1 -DHAVE_SEM_TIMEDWAIT=1 -IModules/_multiprocessing -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_multiprocessing/semaphore.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_multiprocessing/semaphore.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_multiprocessing/multiprocessing.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_multiprocessing/socket_connection.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_multiprocessing/semaphore.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_multiprocessing.so
building 'linuxaudiodev' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/linuxaudiodev.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/linuxaudiodev.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/linuxaudiodev.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/linuxaudiodev.so
building 'ossaudiodev' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/ossaudiodev.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/ossaudiodev.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/ossaudiodev.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/ossaudiodev.so
building '_tkinter' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DWITH_APPINIT=1 -I/usr/X11/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_tkinter.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_tkinter.o
In file included from /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_tkinter.c:67:
/usr/local/include/tk.h:23:3: error: #error Tk 8.4 must be compiled with tcl.h from Tcl 8.4
building '_ctypes' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I/usr/lib/libffi-3.0.9/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/_ctypes.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/_ctypes.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I/usr/lib/libffi-3.0.9/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/callbacks.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/callbacks.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I/usr/lib/libffi-3.0.9/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/callproc.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/callproc.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I/usr/lib/libffi-3.0.9/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/stgdict.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/stgdict.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I/usr/lib/libffi-3.0.9/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/cfield.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/cfield.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I/usr/lib/libffi-3.0.9/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/malloc_closure.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/malloc_closure.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/_ctypes.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/callbacks.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/callproc.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/stgdict.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/cfield.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/malloc_closure.o -L/usr/local/lib -L. -lffi -lpython2.6 -o build/lib.linux-i686-2.6/_ctypes.so

Failed to find the necessary bits to build these modules:
bsddb185           sunaudiodev                        
To find the necessary bits, look in setup.py in detect_modules() for the module's name.


Failed to build these modules:
_tkinter                                              

running build_scripts
creating build/scripts-2.6
copying and adjusting /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Tools/scripts/pydoc -> build/scripts-2.6
copying and adjusting /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Tools/scripts/idle -> build/scripts-2.6
copying and adjusting /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Tools/scripts/2to3 -> build/scripts-2.6
copying and adjusting /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Lib/smtpd.py -> build/scripts-2.6
changing mode of build/scripts-2.6/pydoc from 644 to 755
changing mode of build/scripts-2.6/idle from 644 to 755
changing mode of build/scripts-2.6/2to3 from 644 to 755
changing mode of build/scripts-2.6/smtpd.py from 644 to 755
make: *** [sharedmods] Error 1
 * ERROR: dev-lang/python-2.6.5-r3 failed:
 *   emake failed
 * 
 * Call stack:
 *     ebuild.sh, line   54:  Called src_compile
 *   environment, line 5489:  Called _eapi2_src_compile
 *     ebuild.sh, line  646:  Called die
 * The specific snippet of code:
 *   		emake || die "emake failed"
 * 
 * If you need support, post the output of 'emerge --info =dev-lang/python-2.6.5-r3',
 * the complete build log and the output of 'emerge -pqv =dev-lang/python-2.6.5-r3'.
 * The cCalculating dependencies  ..... ... ..... done!

>>> Verifying ebuild manifests

>>> Starting parallel fetch

>>> Emerging (1 of 2) dev-lang/python-2.6.5-r3
 * Python-2.6.5.tar.bz2 RMD160 SHA1 SHA256 size ;-) ...                  [ ok ]
 * python-gentoo-patches-2.6.5-r5.tar.bz2 RMD160 SHA1 SHA256 size ;-) ...[ ok ]
 * checking ebuild checksums ;-) ...                                     [ ok ]
 * checking auxfile checksums ;-) ...                                    [ ok ]
 * checking miscfile checksums ;-) ...                                   [ ok ]
 * CPV:  dev-lang/python-2.6.5-r3
 * REPO: gentoo
 * USE:  berkdb elibc_glibc gdbm ipv6 kernel_linux ncurses readline sqlite ssl threads tk userland_GNU wide-unicode x86 xml
 * "bsddb" module is out-of-date and no longer maintained inside dev-lang/python. It has
 * been additionally removed in Python 3. You should use external, still maintained "bsddb3"
 * module provided by dev-python/bsddb3 which supports both Python 2 and Python 3.
>>> Unpacking source...
>>> Unpacking Python-2.6.5.tar.bz2 to /var/tmp/portage/dev-lang/python-2.6.5-r3/work
>>> Unpacking python-gentoo-patches-2.6.5-r5.tar.bz2 to /var/tmp/portage/dev-lang/python-2.6.5-r3/work
>>> Source unpacked in /var/tmp/portage/dev-lang/python-2.6.5-r3/work
>>> Preparing source in /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 ...
 * Applying various patches (bugfixes/updates) ...
 *   00_all_branch_backports.patch ...
  [ ok ]
 *   01_all_static_library_location.patch ...
  [ ok ]
 *   02_all_disable_modules_and_ssl.patch ...
  [ ok ]
 *   03_all_add_portage_search_path.patch ...
  [ ok ]
 *   04_all_libdir.patch ...
  [ ok ]
 *   05_all_verbose_building_of_extensions.patch ...
  [ ok ]
 *   06_all_dbm_automagic.patch ...
  [ ok ]
 *   07_all_internal_expat.patch ...
  [ ok ]
 *   08_all_non-zero_exit_status_on_failure.patch ...
  [ ok ]
 *   09_all_use_external_libffi.patch ...
  [ ok ]
 *   21_all_distutils_c++.patch ...
  [ ok ]
 *   22_all_turkish_locale.patch ...
  [ ok ]
 *   23_all_arm_OABI.patch ...
  [ ok ]
 *   61_all_process_data.patch ...
  [ ok ]
 * Done with patching
 * Running eautoreconf in '/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5' ...
 * Running aclocal ...
  [ ok ]
 * Running autoconf ...
  [ ok ]
 * Running autoheader ...
  [ ok ]
>>> Source prepared.
>>> Configuring source in /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 ...
./configure --prefix=/usr --build=i686-pc-linux-gnu --host=i686-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --with-fpectl --enable-shared --enable-ipv6 --with-threads --enable-unicode=ucs4 --infodir=${prefix}/share/info --mandir=${prefix}/share/man --with-libc= --with-system-ffi
checking for --enable-universalsdk... no
checking for --with-universal-archs... 32-bit
checking MACHDEP... linux2
checking EXTRAPLATDIR... 
checking machine type as reported by uname -m... i686
checking for --without-gcc... no
checking for i686-pc-linux-gnu-gcc... i686-pc-linux-gnu-gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether i686-pc-linux-gnu-gcc accepts -g... yes
checking for i686-pc-linux-gnu-gcc option to accept ISO C89... none needed
checking for --with-cxx-main=<compiler>... no
checking how to run the C preprocessor... i686-pc-linux-gnu-gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for --with-suffix... 
checking for case-insensitive build directory... no
checking LIBRARY... libpython$(VERSION).a
checking LINKCC... $(PURIFY) $(MAINCC)
checking for --enable-shared... yes
checking for --enable-profiling... 
checking LDLIBRARY... libpython$(VERSION).so
checking for i686-pc-linux-gnu-ranlib... i686-pc-linux-gnu-ranlib
checking for ar... ar
checking for svnversion... found
checking for a BSD-compatible install... /usr/bin/install -c
checking for --with-pydebug... no
checking whether i686-pc-linux-gnu-gcc accepts -fno-strict-aliasing... yes
checking whether i686-pc-linux-gnu-gcc accepts -OPT:Olimit=0... no
checking whether i686-pc-linux-gnu-gcc accepts -Olimit 1500... no
checking whether gcc supports ParseTuple __format__... no
checking whether pthreads are available without options... no
checking whether i686-pc-linux-gnu-gcc accepts -Kpthread... no
checking whether i686-pc-linux-gnu-gcc accepts -Kthread... no
checking whether i686-pc-linux-gnu-gcc accepts -pthread... yes
checking whether i686-pc-linux-gnu-g++ also accepts flags for thread support... yes
checking for ANSI C header files... (cached) yes
checking asm/types.h usability... yes
checking asm/types.h presence... yes
checking for asm/types.h... yes
checking conio.h usability... no
checking conio.h presence... no
checking for conio.h... no
checking curses.h usability... yes
checking curses.h presence... yes
checking for curses.h... yes
checking direct.h usability... no
checking direct.h presence... no
checking for direct.h... no
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking grp.h usability... yes
checking grp.h presence... yes
checking for grp.h... yes
checking ieeefp.h usability... no
checking ieeefp.h presence... no
checking for ieeefp.h... no
checking io.h usability... no
checking io.h presence... no
checking for io.h... no
checking langinfo.h usability... yes
checking langinfo.h presence... yes
checking for langinfo.h... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking ncurses.h usability... yes
checking ncurses.h presence... yes
checking for ncurses.h... yes
checking poll.h usability... yes
checking poll.h presence... yes
checking for poll.h... yes
checking process.h usability... no
checking process.h presence... no
checking for process.h... no
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking shadow.h usability... yes
checking shadow.h presence... yes
checking for shadow.h... yes
checking signal.h usability... yes
checking signal.h presence... yes
checking for signal.h... yes
checking for stdint.h... (cached) yes
checking stropts.h usability... yes
checking stropts.h presence... yes
checking for stropts.h... yes
checking termios.h usability... yes
checking termios.h presence... yes
checking for termios.h... yes
checking thread.h usability... no
checking thread.h presence... no
checking for thread.h... no
checking for unistd.h... (cached) yes
checking utime.h usability... yes
checking utime.h presence... yes
checking for utime.h... yes
checking sys/audioio.h usability... no
checking sys/audioio.h presence... no
checking for sys/audioio.h... no
checking sys/bsdtty.h usability... no
checking sys/bsdtty.h presence... no
checking for sys/bsdtty.h... no
checking sys/epoll.h usability... yes
checking sys/epoll.h presence... yes
checking for sys/epoll.h... yes
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/file.h usability... yes
checking sys/file.h presence... yes
checking for sys/file.h... yes
checking sys/loadavg.h usability... no
checking sys/loadavg.h presence... no
checking for sys/loadavg.h... no
checking sys/lock.h usability... no
checking sys/lock.h presence... no
checking for sys/lock.h... no
checking sys/mkdev.h usability... no
checking sys/mkdev.h presence... no
checking for sys/mkdev.h... no
checking sys/modem.h usability... no
checking sys/modem.h presence... no
checking for sys/modem.h... no
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/poll.h usability... yes
checking sys/poll.h presence... yes
checking for sys/poll.h... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/statvfs.h usability... yes
checking sys/statvfs.h presence... yes
checking for sys/statvfs.h... yes
checking for sys/stat.h... (cached) yes
checking sys/termio.h usability... no
checking sys/termio.h presence... no
checking for sys/termio.h... no
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking sys/times.h usability... yes
checking sys/times.h presence... yes
checking for sys/times.h... yes
checking for sys/types.h... (cached) yes
checking sys/un.h usability... yes
checking sys/un.h presence... yes
checking for sys/un.h... yes
checking sys/utsname.h usability... yes
checking sys/utsname.h presence... yes
checking for sys/utsname.h... yes
checking sys/wait.h usability... yes
checking sys/wait.h presence... yes
checking for sys/wait.h... yes
checking pty.h usability... yes
checking pty.h presence... yes
checking for pty.h... yes
checking libutil.h usability... no
checking libutil.h presence... no
checking for libutil.h... no
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking netpacket/packet.h usability... yes
checking netpacket/packet.h presence... yes
checking for netpacket/packet.h... yes
checking sysexits.h usability... yes
checking sysexits.h presence... yes
checking for sysexits.h... yes
checking bluetooth.h usability... no
checking bluetooth.h presence... no
checking for bluetooth.h... no
checking bluetooth/bluetooth.h usability... yes
checking bluetooth/bluetooth.h presence... yes
checking for bluetooth/bluetooth.h... yes
checking linux/tipc.h usability... yes
checking linux/tipc.h presence... yes
checking for linux/tipc.h... yes
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking whether sys/types.h defines makedev... yes
checking for term.h... yes
checking for linux/netlink.h... yes
checking for clock_t in time.h... yes
checking for makedev... yes
checking Solaris LFS bug... no
checking for mode_t... yes
checking for off_t... yes
checking for pid_t... yes
checking return type of signal handlers... void
checking for size_t... yes
checking for uid_t in sys/types.h... yes
checking for ssize_t... yes
checking size of int... 4
checking size of long... 4
checking size of void *... 4
checking size of short... 2
checking size of float... 4
checking size of double... 8
checking size of fpos_t... 16
checking size of size_t... 4
checking size of pid_t... 4
checking for long long support... yes
checking size of long long... 8
checking for long double support... yes
checking size of long double... 12
checking for _Bool support... yes
checking size of _Bool... 1
checking for uintptr_t... yes
checking size of uintptr_t... 4
checking size of off_t... 8
checking whether to enable large file support... yes
checking size of time_t... 4
checking for pthread_t... yes
checking size of pthread_t... 4
checking for --enable-toolbox-glue... no
checking for --enable-framework... no
checking for dyld... no
checking SO... .so
checking LDSHARED... $(CC) -shared
checking CCSHARED... -fPIC
checking LINKFORSHARED... -Xlinker -export-dynamic
checking CFLAGSFORSHARED... $(CCSHARED)
checking SHLIBS... $(LIBS)
checking for dlopen in -ldl... yes
checking for shl_load in -ldld... no
checking for library containing sem_init... -lpthread
checking for textdomain in -lintl... no
checking for t_open in -lnsl... no
checking for socket in -lsocket... no
checking for --with-libs... no
checking for i686-pc-linux-gnu-pkg-config... no
checking for pkg-config... /usr/bin/pkg-config
checking for --with-system-ffi... yes
checking for --with-signal-module... yes
checking for --with-dec-threads... no
checking for --with-threads... yes
checking if PTHREAD_SCOPE_SYSTEM is supported... yes
checking for pthread_sigmask... yes
checking if --enable-ipv6 is specified... yes
checking ipv6 stack type... linux-glibc
checking for OSX 10.5 SDK or later... no
checking for --with-doc-strings... yes
checking for --with-tsc... no
checking for --with-pymalloc... yes
checking for --with-wctype-functions... no
checking for dlopen... yes
checking DYNLOADFILE... dynload_shlib.o
checking MACHDEP_OBJS... MACHDEP_OBJS
checking for alarm... yes
checking for setitimer... yes
checking for getitimer... yes
checking for bind_textdomain_codeset... yes
checking for chown... yes
checking for clock... yes
checking for confstr... yes
checking for ctermid... yes
checking for execv... yes
checking for fchmod... yes
checking for fchown... yes
checking for fork... yes
checking for fpathconf... yes
checking for ftime... yes
checking for ftruncate... yes
checking for gai_strerror... yes
checking for getgroups... yes
checking for getlogin... yes
checking for getloadavg... yes
checking for getpeername... yes
checking for getpgid... yes
checking for getpid... yes
checking for getpriority... yes
checking for getpwent... yes
checking for getspnam... yes
checking for getspent... yes
checking for getsid... yes
checking for getwd... yes
checking for kill... yes
checking for killpg... yes
checking for lchmod... no
checking for lchown... yes
checking for lstat... yes
checking for mkfifo... yes
checking for mknod... yes
checking for mktime... yes
checking for mremap... yes
checking for nice... yes
checking for pathconf... yes
checking for pause... yes
checking for plock... no
checking for poll... yes
checking for pthread_init... no
checking for putenv... yes
checking for readlink... yes
checking for realpath... yes
checking for select... yes
checking for setegid... yes
checking for seteuid... yes
checking for setgid... yes
checking for setlocale... yes
checking for setregid... yes
checking for setreuid... yes
checking for setsid... yes
checking for setpgid... yes
checking for setpgrp... yes
checking for setuid... yes
checking for setvbuf... yes
checking for snprintf... yes
checking for sigaction... yes
checking for siginterrupt... yes
checking for sigrelse... yes
checking for strftime... yes
checking for sysconf... yes
checking for tcgetpgrp... yes
checking for tcsetpgrp... yes
checking for tempnam... yes
checking for timegm... yes
checking for times... yes
checking for tmpfile... yes
checking for tmpnam... yes
checking for tmpnam_r... yes
checking for truncate... yes
checking for uname... yes
checking for unsetenv... yes
checking for utimes... yes
checking for waitpid... yes
checking for wait3... yes
checking for wait4... yes
checking for wcscoll... yes
checking for _getpty... no
checking for chroot... yes
checking for link... yes
checking for symlink... yes
checking for fchdir... yes
checking for fsync... yes
checking for fdatasync... yes
checking for epoll... yes
checking for kqueue... no
checking for ctermid_r... no
checking for flock... yes
checking for getpagesize... yes
checking for true... true
checking for inet_aton in -lc... yes
checking for chflags... no
checking for lchflags... no
checking for inflateCopy in -lz... yes
checking for hstrerror... yes
checking for inet_aton... yes
checking for inet_pton... yes
checking for setgroups... yes
checking for openpty... no
checking for openpty in -lutil... yes
checking for forkpty... yes
checking for memmove... yes
checking for fseek64... no
checking for fseeko... yes
checking for fstatvfs... yes
checking for ftell64... no
checking for ftello... yes
checking for statvfs... yes
checking for dup2... yes
checking for getcwd... yes
checking for strdup... yes
checking for getpgrp... yes
checking for setpgrp... (cached) yes
checking for gettimeofday... yes
checking for major... yes
checking for getaddrinfo... yes
checking getaddrinfo bug... good
checking for getnameinfo... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for struct stat.st_rdev... yes
checking for struct stat.st_blksize... yes
checking for struct stat.st_flags... no
checking for struct stat.st_gen... no
checking for struct stat.st_birthtime... no
checking for struct stat.st_blocks... yes
checking for time.h that defines altzone... no
checking whether sys/select.h and sys/time.h may both be included... yes
checking for addrinfo... yes
checking for sockaddr_storage... yes
checking whether char is unsigned... no
checking for an ANSI C-conforming const... yes
checking for working volatile... yes
checking for working signed char... yes
checking for prototypes... yes
checking for variable length prototypes and stdarg.h... yes
checking for socketpair... yes
checking if sockaddr has sa_len member... no
checking whether va_list is an array... no
checking for gethostbyname_r... yes
checking gethostbyname_r with 6 args... yes
checking for __fpu_control... yes
checking for --with-fpectl... yes
checking for --with-libm=STRING... default LIBM="-lm"
checking for --with-libc=STRING... set LIBC=""
checking for x87-style double rounding... yes
checking whether tanh preserves the sign of zero... yes
checking for acosh... yes
checking for asinh... yes
checking for atanh... yes
checking for copysign... yes
checking for expm1... yes
checking for finite... yes
checking for hypot... yes
checking for log1p... yes
checking whether isinf is declared... yes
checking whether isnan is declared... yes
checking whether isfinite is declared... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking size of wchar_t... 4
checking for UCS-4 tcl... no
checking whether wchar_t is signed... yes
checking what type to use for unicode... unsigned long
checking whether byte ordering is bigendian... no
checking whether right shift extends the sign bit... yes
checking for getc_unlocked() and friends... yes
checking how to link readline libs... -lreadline
checking for rl_callback_handler_install in -lreadline... yes
checking for rl_pre_input_hook in -lreadline... yes
checking for rl_completion_display_matches_hook in -lreadline... yes
checking for rl_completion_matches in -lreadline... yes
checking for broken nice()... no
checking for broken poll()... no
checking for struct tm.tm_zone... (cached) yes
checking for working tzset()... yes
checking for tv_nsec in struct stat... yes
checking for tv_nsec2 in struct stat... no
checking whether mvwdelch is an expression... yes
checking whether WINDOW has _flags... yes
checking for is_term_resized... yes
checking for resize_term... yes
checking for resizeterm... yes
checking for /dev/ptmx... yes
checking for /dev/ptc... no
checking for %zd printf() format support... yes
checking for socklen_t... yes
checking for build directories... done
configure: creating ./config.status
config.status: creating Makefile.pre
config.status: creating Modules/Setup.config
config.status: creating pyconfig.h
creating Modules/Setup
creating Modules/Setup.local
creating Makefile
>>> Source configured.
>>> Compiling source in /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 ...
make -j2 
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Modules/python.o ./Modules/python.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/acceler.o Parser/acceler.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/grammar1.o Parser/grammar1.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/listnode.o Parser/listnode.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/node.o Parser/node.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/parser.o Parser/parser.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/parsetok.o Parser/parsetok.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/bitset.o Parser/bitset.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/metagrammar.o Parser/metagrammar.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/firstsets.o Parser/firstsets.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/grammar.o Parser/grammar.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/pgen.o Parser/pgen.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/myreadline.o Parser/myreadline.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/tokenizer.o Parser/tokenizer.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/abstract.o Objects/abstract.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/boolobject.o Objects/boolobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/bufferobject.o Objects/bufferobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/bytes_methods.o Objects/bytes_methods.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/bytearrayobject.o Objects/bytearrayobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/cellobject.o Objects/cellobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/classobject.o Objects/classobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/cobject.o Objects/cobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/codeobject.o Objects/codeobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/complexobject.o Objects/complexobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/descrobject.o Objects/descrobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/enumobject.o Objects/enumobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/exceptions.o Objects/exceptions.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/genobject.o Objects/genobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/fileobject.o Objects/fileobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/floatobject.o Objects/floatobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/frameobject.o Objects/frameobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/funcobject.o Objects/funcobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/intobject.o Objects/intobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/iterobject.o Objects/iterobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/listobject.o Objects/listobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/longobject.o Objects/longobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/dictobject.o Objects/dictobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/methodobject.o Objects/methodobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/moduleobject.o Objects/moduleobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/object.o Objects/object.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/obmalloc.o Objects/obmalloc.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/rangeobject.o Objects/rangeobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/setobject.o Objects/setobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/sliceobject.o Objects/sliceobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/stringobject.o Objects/stringobject.c
Objects/stringobject.c: In function ‘string_print’:
Objects/stringobject.c:822: warning: ignoring return value of ‘fwrite’, declared with attribute warn_unused_result
Objects/stringobject.c:829: warning: ignoring return value of ‘fwrite’, declared with attribute warn_unused_result
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/structseq.o Objects/structseq.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/tupleobject.o Objects/tupleobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/typeobject.o Objects/typeobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/weakrefobject.o Objects/weakrefobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/unicodeobject.o Objects/unicodeobject.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/unicodectype.o Objects/unicodectype.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/_warnings.o Python/_warnings.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/Python-ast.o Python/Python-ast.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/asdl.o Python/asdl.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/ast.o Python/ast.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/bltinmodule.o Python/bltinmodule.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/ceval.o Python/ceval.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/mysnprintf.o Python/mysnprintf.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/tokenizer_pgen.o Parser/tokenizer_pgen.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/printgrammar.o Parser/printgrammar.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/pgenmain.o Parser/pgenmain.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/codecs.o Python/codecs.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/errors.o Python/errors.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/frozen.o Python/frozen.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/frozenmain.o Python/frozenmain.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/future.o Python/future.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/getargs.o Python/getargs.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/getcompiler.o Python/getcompiler.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/getcopyright.o Python/getcopyright.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/getmtime.o Python/getmtime.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -DPLATFORM='"linux2"' -o Python/getplatform.o ./Python/getplatform.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/getversion.o Python/getversion.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/import.o Python/import.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -I. -o Python/importdl.o ./Python/importdl.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/marshal.o Python/marshal.c
Python/marshal.c: In function ‘w_string’:
Python/marshal.c:87: warning: ignoring return value of ‘fwrite’, declared with attribute warn_unused_result
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/modsupport.o Python/modsupport.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/mystrtoul.o Python/mystrtoul.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/peephole.o Python/peephole.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/pyarena.o Python/pyarena.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/pyfpe.o Python/pyfpe.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/pymath.o Python/pymath.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/pystate.o Python/pystate.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/pythonrun.o Python/pythonrun.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/structmember.o Python/structmember.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/sysmodule.o Python/sysmodule.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/traceback.o Python/traceback.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/getopt.o Python/getopt.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/pystrcmp.o Python/pystrcmp.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/pystrtod.o Python/pystrtod.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/formatter_unicode.o Python/formatter_unicode.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/formatter_string.o Python/formatter_string.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/dynload_shlib.o Python/dynload_shlib.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/thread.o Python/thread.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Modules/config.o Modules/config.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -DPYTHONPATH='":plat-linux2:lib-tk:lib-old"' \
		-DPREFIX='"/usr"' \
		-DEXEC_PREFIX='"/usr"' \
		-DVERSION='"2.6"' \
		-DVPATH='""' \
		-o Modules/getpath.o ./Modules/getpath.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Modules/main.o Modules/main.c
./Modules/getpath.c: In function ‘copy_absolute’:
./Modules/getpath.c:235: warning: ignoring return value of ‘getcwd’, declared with attribute warn_unused_result
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Modules/gcmodule.o Modules/gcmodule.c
i686-pc-linux-gnu-gcc -pthread -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/threadmodule.c -o Modules/threadmodule.o
i686-pc-linux-gnu-gcc -pthread -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/signalmodule.c -o Modules/signalmodule.o
./Modules/signalmodule.c: In function ‘signal_handler’:
./Modules/signalmodule.c:182: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result
i686-pc-linux-gnu-gcc -pthread -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/posixmodule.c -o Modules/posixmodule.o
i686-pc-linux-gnu-gcc -pthread -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/errnomodule.c -o Modules/errnomodule.o
i686-pc-linux-gnu-gcc -pthread -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/pwdmodule.c -o Modules/pwdmodule.o
i686-pc-linux-gnu-gcc -pthread -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/_sre.c -o Modules/_sre.o
i686-pc-linux-gnu-gcc -pthread -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/_codecsmodule.c -o Modules/_codecsmodule.o
i686-pc-linux-gnu-gcc -pthread -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/zipimport.c -o Modules/zipimport.o
i686-pc-linux-gnu-gcc -pthread -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/symtablemodule.c -o Modules/symtablemodule.o
i686-pc-linux-gnu-gcc -pthread -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/xxsubtype.c -o Modules/xxsubtype.o
i686-pc-linux-gnu-gcc -pthread -DNDEBUG  -Wl,-O1 -Wl,--as-needed -L.  Parser/acceler.o Parser/grammar1.o Parser/listnode.o Parser/node.o Parser/parser.o Parser/parsetok.o Parser/bitset.o Parser/metagrammar.o Parser/firstsets.o Parser/grammar.o Parser/pgen.o Objects/obmalloc.o Python/mysnprintf.o Parser/tokenizer_pgen.o Parser/printgrammar.o Parser/pgenmain.o -lpthread -ldl  -lutil -o Parser/pgen
Parser/pgen ./Grammar/Grammar ./Include/graminit.h ./Python/graminit.c
Parser/pgen ./Grammar/Grammar ./Include/graminit.h ./Python/graminit.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/symtable.o Python/symtable.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/compile.o Python/compile.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/graminit.o Python/graminit.c
i686-pc-linux-gnu-gcc -pthread -c -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG   -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -DSVNVERSION="\"`LC_ALL=C svnversion .`\"" -o Modules/getbuildinfo.o ./Modules/getbuildinfo.c
rm -f libpython2.6.a
ar cr libpython2.6.a Modules/getbuildinfo.o
if test libpython2.6.so.1.0 != libpython2.6.so; then \
		i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -Wl,-hlibpython2.6.so.1.0 -o libpython2.6.so.1.0 Modules/getbuildinfo.o Parser/acceler.o Parser/grammar1.o Parser/listnode.o Parser/node.o Parser/parser.o Parser/parsetok.o Parser/bitset.o Parser/metagrammar.o Parser/firstsets.o Parser/grammar.o Parser/pgen.o Parser/myreadline.o Parser/tokenizer.o Objects/abstract.o Objects/boolobject.o Objects/bufferobject.o Objects/bytes_methods.o Objects/bytearrayobject.o Objects/cellobject.o Objects/classobject.o Objects/cobject.o Objects/codeobject.o Objects/complexobject.o Objects/descrobject.o Objects/enumobject.o Objects/exceptions.o Objects/genobject.o Objects/fileobject.o Objects/floatobject.o Objects/frameobject.o Objects/funcobject.o Objects/intobject.o Objects/iterobject.o Objects/listobject.o Objects/longobject.o Objects/dictobject.o Objects/methodobject.o Objects/moduleobject.o Objects/object.o Objects/obmalloc.o Objects/rangeobject.o Objects/setobject.o Objects/sliceobject.o Objects/stringobject.o Objects/structseq.o Objects/tupleobject.o Objects/typeobject.o Objects/weakrefobject.o Objects/unicodeobject.o Objects/unicodectype.o Python/_warnings.o Python/Python-ast.o Python/asdl.o Python/ast.o Python/bltinmodule.o Python/ceval.o Python/compile.o Python/codecs.o Python/errors.o Python/frozen.o Python/frozenmain.o Python/future.o Python/getargs.o Python/getcompiler.o Python/getcopyright.o Python/getmtime.o Python/getplatform.o Python/getversion.o Python/graminit.o Python/import.o Python/importdl.o Python/marshal.o Python/modsupport.o Python/mystrtoul.o Python/mysnprintf.o Python/peephole.o Python/pyarena.o Python/pyfpe.o Python/pymath.o Python/pystate.o Python/pythonrun.o Python/structmember.o Python/symtable.o Python/sysmodule.o Python/traceback.o Python/getopt.o Python/pystrcmp.o Python/pystrtod.o Python/formatter_unicode.o Python/formatter_string.o Python/dynload_shlib.o   Python/thread.o Modules/config.o Modules/getpath.o Modules/main.o Modules/gcmodule.o  Modules/threadmodule.o  Modules/signalmodule.o  Modules/posixmodule.o  Modules/errnomodule.o  Modules/pwdmodule.o  Modules/_sre.o  Modules/_codecsmodule.o  Modules/zipimport.o  Modules/symtablemodule.o  Modules/xxsubtype.o   -lpthread -ldl  -lutil  -lm ; \
		ln -f libpython2.6.so.1.0 libpython2.6.so; \
	else \
		i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -o libpython2.6.so Modules/getbuildinfo.o Parser/acceler.o Parser/grammar1.o Parser/listnode.o Parser/node.o Parser/parser.o Parser/parsetok.o Parser/bitset.o Parser/metagrammar.o Parser/firstsets.o Parser/grammar.o Parser/pgen.o Parser/myreadline.o Parser/tokenizer.o Objects/abstract.o Objects/boolobject.o Objects/bufferobject.o Objects/bytes_methods.o Objects/bytearrayobject.o Objects/cellobject.o Objects/classobject.o Objects/cobject.o Objects/codeobject.o Objects/complexobject.o Objects/descrobject.o Objects/enumobject.o Objects/exceptions.o Objects/genobject.o Objects/fileobject.o Objects/floatobject.o Objects/frameobject.o Objects/funcobject.o Objects/intobject.o Objects/iterobject.o Objects/listobject.o Objects/longobject.o Objects/dictobject.o Objects/methodobject.o Objects/moduleobject.o Objects/object.o Objects/obmalloc.o Objects/rangeobject.o Objects/setobject.o Objects/sliceobject.o Objects/stringobject.o Objects/structseq.o Objects/tupleobject.o Objects/typeobject.o Objects/weakrefobject.o Objects/unicodeobject.o Objects/unicodectype.o Python/_warnings.o Python/Python-ast.o Python/asdl.o Python/ast.o Python/bltinmodule.o Python/ceval.o Python/compile.o Python/codecs.o Python/errors.o Python/frozen.o Python/frozenmain.o Python/future.o Python/getargs.o Python/getcompiler.o Python/getcopyright.o Python/getmtime.o Python/getplatform.o Python/getversion.o Python/graminit.o Python/import.o Python/importdl.o Python/marshal.o Python/modsupport.o Python/mystrtoul.o Python/mysnprintf.o Python/peephole.o Python/pyarena.o Python/pyfpe.o Python/pymath.o Python/pystate.o Python/pythonrun.o Python/structmember.o Python/symtable.o Python/sysmodule.o Python/traceback.o Python/getopt.o Python/pystrcmp.o Python/pystrtod.o Python/formatter_unicode.o Python/formatter_string.o Python/dynload_shlib.o   Python/thread.o Modules/config.o Modules/getpath.o Modules/main.o Modules/gcmodule.o  Modules/threadmodule.o  Modules/signalmodule.o  Modules/posixmodule.o  Modules/errnomodule.o  Modules/pwdmodule.o  Modules/_sre.o  Modules/_codecsmodule.o  Modules/zipimport.o  Modules/symtablemodule.o  Modules/xxsubtype.o   -lpthread -ldl  -lutil  -lm ; \
	fi
ar cr libpython2.6.a Parser/acceler.o Parser/grammar1.o Parser/listnode.o Parser/node.o Parser/parser.o Parser/parsetok.o Parser/bitset.o Parser/metagrammar.o Parser/firstsets.o Parser/grammar.o Parser/pgen.o Parser/myreadline.o Parser/tokenizer.o
ar cr libpython2.6.a Objects/abstract.o Objects/boolobject.o Objects/bufferobject.o Objects/bytes_methods.o Objects/bytearrayobject.o Objects/cellobject.o Objects/classobject.o Objects/cobject.o Objects/codeobject.o Objects/complexobject.o Objects/descrobject.o Objects/enumobject.o Objects/exceptions.o Objects/genobject.o Objects/fileobject.o Objects/floatobject.o Objects/frameobject.o Objects/funcobject.o Objects/intobject.o Objects/iterobject.o Objects/listobject.o Objects/longobject.o Objects/dictobject.o Objects/methodobject.o Objects/moduleobject.o Objects/object.o Objects/obmalloc.o Objects/rangeobject.o Objects/setobject.o Objects/sliceobject.o Objects/stringobject.o Objects/structseq.o Objects/tupleobject.o Objects/typeobject.o Objects/weakrefobject.o Objects/unicodeobject.o Objects/unicodectype.o
ar cr libpython2.6.a Python/_warnings.o Python/Python-ast.o Python/asdl.o Python/ast.o Python/bltinmodule.o Python/ceval.o Python/compile.o Python/codecs.o Python/errors.o Python/frozen.o Python/frozenmain.o Python/future.o Python/getargs.o Python/getcompiler.o Python/getcopyright.o Python/getmtime.o Python/getplatform.o Python/getversion.o Python/graminit.o Python/import.o Python/importdl.o Python/marshal.o Python/modsupport.o Python/mystrtoul.o Python/mysnprintf.o Python/peephole.o Python/pyarena.o Python/pyfpe.o Python/pymath.o Python/pystate.o Python/pythonrun.o Python/structmember.o Python/symtable.o Python/sysmodule.o Python/traceback.o Python/getopt.o Python/pystrcmp.o Python/pystrtod.o Python/formatter_unicode.o Python/formatter_string.o Python/dynload_shlib.o   Python/thread.o
ar cr libpython2.6.a Modules/config.o Modules/getpath.o Modules/main.o Modules/gcmodule.o 
ar cr libpython2.6.a Modules/threadmodule.o  Modules/signalmodule.o  Modules/posixmodule.o  Modules/errnomodule.o  Modules/pwdmodule.o  Modules/_sre.o  Modules/_codecsmodule.o  Modules/zipimport.o  Modules/symtablemodule.o  Modules/xxsubtype.o
i686-pc-linux-gnu-ranlib libpython2.6.a
i686-pc-linux-gnu-gcc -pthread -Wl,-O1 -Wl,--as-needed -L. -Xlinker -export-dynamic -o python \
			Modules/python.o \
			-L. -lpython2.6 -lpthread -ldl  -lutil   -lm  
running build
running build_ext
building '_struct' extension
creating build
creating build/temp.linux-i686-2.6
creating build/temp.linux-i686-2.6/var
creating build/temp.linux-i686-2.6/var/tmp
creating build/temp.linux-i686-2.6/var/tmp/portage
creating build/temp.linux-i686-2.6/var/tmp/portage/dev-lang
creating build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3
creating build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work
creating build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5
creating build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_struct.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_struct.o
creating build/lib.linux-i686-2.6
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_struct.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_struct.so
building '_ctypes_test' extension
creating build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/_ctypes_test.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/_ctypes_test.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/_ctypes_test.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_ctypes_test.so
building '_weakref' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_weakref.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_weakref.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_weakref.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_weakref.so
building 'array' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/arraymodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/arraymodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/arraymodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/array.so
building 'cmath' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cmathmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cmathmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cmathmodule.o -L/usr/local/lib -L. -lm -lpython2.6 -o build/lib.linux-i686-2.6/cmath.so
building 'math' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/mathmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/mathmodule.o
/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/mathmodule.c: In function ‘math_fsum’:
/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/mathmodule.c:574: warning: passing argument 1 of ‘PyFPE_dummy’ discards qualifiers from pointer target type
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/mathmodule.o -L/usr/local/lib -L. -lm -lpython2.6 -o build/lib.linux-i686-2.6/math.so
building 'strop' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/stropmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/stropmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/stropmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/strop.so
building 'time' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/timemodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/timemodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/timemodule.o -L/usr/local/lib -L. -lm -lpython2.6 -o build/lib.linux-i686-2.6/time.so
building 'datetime' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/datetimemodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/datetimemodule.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/timemodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/timemodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/datetimemodule.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/timemodule.o -L/usr/local/lib -L. -lm -lpython2.6 -o build/lib.linux-i686-2.6/datetime.so
building 'itertools' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/itertoolsmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/itertoolsmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/itertoolsmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/itertools.so
building 'future_builtins' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/future_builtins.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/future_builtins.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/future_builtins.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/future_builtins.so
building '_random' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_randommodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_randommodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_randommodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_random.so
building '_collections' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_collectionsmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_collectionsmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_collectionsmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_collections.so
building '_bisect' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_bisectmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_bisectmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_bisectmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_bisect.so
building '_heapq' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_heapqmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_heapqmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_heapqmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_heapq.so
building 'operator' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/operator.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/operator.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/operator.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/operator.so
building '_fileio' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_fileio.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_fileio.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_fileio.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_fileio.so
building '_bytesio' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_bytesio.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_bytesio.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_bytesio.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_bytesio.so
building '_functools' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_functoolsmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_functoolsmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_functoolsmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_functools.so
building '_json' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_json.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_json.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_json.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_json.so
building '_testcapi' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_testcapimodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_testcapimodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_testcapimodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_testcapi.so
building '_hotshot' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_hotshot.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_hotshot.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_hotshot.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_hotshot.so
building '_lsprof' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_lsprof.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_lsprof.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/rotatingtree.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/rotatingtree.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_lsprof.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/rotatingtree.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_lsprof.so
building 'unicodedata' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/unicodedata.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/unicodedata.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/unicodedata.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/unicodedata.so
building '_locale' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_localemodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_localemodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_localemodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_locale.so
building 'fcntl' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/fcntlmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/fcntlmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/fcntlmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/fcntl.so
building 'grp' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/grpmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/grpmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/grpmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/grp.so
building 'spwd' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/spwdmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/spwdmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/spwdmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/spwd.so
building 'select' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/selectmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/selectmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/selectmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/select.so
building 'parser' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/parsermodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/parsermodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/parsermodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/parser.so
building 'cStringIO' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cStringIO.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cStringIO.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cStringIO.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/cStringIO.so
building 'cPickle' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cPickle.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cPickle.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cPickle.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/cPickle.so
building 'mmap' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/mmapmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/mmapmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/mmapmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/mmap.so
building 'syslog' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/syslogmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/syslogmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/syslogmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/syslog.so
building 'audioop' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/audioop.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/audioop.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/audioop.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/audioop.so
building 'imageop' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/imageop.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/imageop.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/imageop.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/imageop.so
building 'readline' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/readline.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/readline.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/readline.o -L/usr/lib/termcap -L/usr/local/lib -L. -lreadline -lncursesw -lpython2.6 -o build/lib.linux-i686-2.6/readline.so
[?1034hbuilding 'crypt' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cryptmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cryptmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cryptmodule.o -L/usr/local/lib -L. -lcrypt -lpython2.6 -o build/lib.linux-i686-2.6/crypt.so
building '_csv' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_csv.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_csv.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_csv.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_csv.so
building '_socket' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/socketmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/socketmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/socketmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_socket.so
building '_ssl' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ssl.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ssl.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ssl.o -L/usr/local/lib -L. -lssl -lcrypto -lpython2.6 -o build/lib.linux-i686-2.6/_ssl.so
building '_hashlib' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_hashopenssl.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_hashopenssl.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_hashopenssl.o -L/usr/local/lib -L. -lssl -lcrypto -lpython2.6 -o build/lib.linux-i686-2.6/_hashlib.so
building '_sha' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/shamodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/shamodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/shamodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_sha.so
building '_md5' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/md5module.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/md5module.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/md5.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/md5.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/md5module.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/md5.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_md5.so
building '_sha256' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/sha256module.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/sha256module.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/sha256module.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_sha256.so
building '_sha512' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/sha512module.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/sha512module.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/sha512module.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_sha512.so
building '_bsddb' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I/usr/include/db4.7 -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_bsddb.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_bsddb.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_bsddb.o -L/usr/lib -L/usr/local/lib -L. -Wl,-R/usr/lib -ldb-4.7 -lpython2.6 -o build/lib.linux-i686-2.6/_bsddb.so
building '_sqlite3' extension
creating build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DMODULE_NAME="sqlite3" -IModules/_sqlite -I/usr/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/cache.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/cache.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DMODULE_NAME="sqlite3" -IModules/_sqlite -I/usr/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/connection.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/connection.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DMODULE_NAME="sqlite3" -IModules/_sqlite -I/usr/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/cursor.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/cursor.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DMODULE_NAME="sqlite3" -IModules/_sqlite -I/usr/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/microprotocols.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/microprotocols.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DMODULE_NAME="sqlite3" -IModules/_sqlite -I/usr/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/module.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/module.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DMODULE_NAME="sqlite3" -IModules/_sqlite -I/usr/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/prepare_protocol.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/prepare_protocol.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DMODULE_NAME="sqlite3" -IModules/_sqlite -I/usr/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/row.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/row.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DMODULE_NAME="sqlite3" -IModules/_sqlite -I/usr/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/statement.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/statement.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DMODULE_NAME="sqlite3" -IModules/_sqlite -I/usr/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/util.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/util.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/cache.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/connection.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/cursor.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/microprotocols.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/module.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/prepare_protocol.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/row.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/statement.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_sqlite/util.o -L/usr/lib -L/usr/local/lib -L. -Wl,-R/usr/lib -lsqlite3 -lpython2.6 -o build/lib.linux-i686-2.6/_sqlite3.so
building 'dbm' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DHAVE_GDBM_NDBM_H -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/dbmmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/dbmmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/dbmmodule.o -L/usr/local/lib -L. -lgdbm -lgdbm_compat -lpython2.6 -o build/lib.linux-i686-2.6/dbm.so
building 'gdbm' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/gdbmmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/gdbmmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/gdbmmodule.o -L/usr/local/lib -L. -lgdbm -lpython2.6 -o build/lib.linux-i686-2.6/gdbm.so
building 'termios' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/termios.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/termios.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/termios.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/termios.so
building 'resource' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/resource.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/resource.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/resource.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/resource.so
building 'nis' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/nismodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/nismodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/nismodule.o -L/usr/local/lib -L. -lnsl -lpython2.6 -o build/lib.linux-i686-2.6/nis.so
building '_curses' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_cursesmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_cursesmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_cursesmodule.o -L/usr/local/lib -L. -lncursesw -lpython2.6 -o build/lib.linux-i686-2.6/_curses.so
building '_curses_panel' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_curses_panel.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_curses_panel.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_curses_panel.o -L/usr/local/lib -L. -lpanelw -lncursesw -lpython2.6 -o build/lib.linux-i686-2.6/_curses_panel.so
building 'zlib' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/zlibmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/zlibmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/zlibmodule.o -L/usr/local/lib -L. -lz -lpython2.6 -o build/lib.linux-i686-2.6/zlib.so
building 'binascii' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/binascii.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/binascii.o -DUSE_ZLIB_CRC32
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/binascii.o -L/usr/local/lib -L. -lz -lpython2.6 -o build/lib.linux-i686-2.6/binascii.so
building 'bz2' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/bz2module.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/bz2module.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/bz2module.o -L/usr/local/lib -L. -lbz2 -lpython2.6 -o build/lib.linux-i686-2.6/bz2.so
building 'pyexpat' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I/usr/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/pyexpat.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/pyexpat.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/pyexpat.o -L/usr/local/lib -L. -lexpat -lpython2.6 -o build/lib.linux-i686-2.6/pyexpat.so
building '_elementtree' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DUSE_PYEXPAT_CAPI -I/usr/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_elementtree.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_elementtree.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_elementtree.o -L/usr/local/lib -L. -lexpat -lpython2.6 -o build/lib.linux-i686-2.6/_elementtree.so
building '_multibytecodec' extension
creating build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/multibytecodec.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/multibytecodec.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/multibytecodec.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_multibytecodec.so
building '_codecs_kr' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_kr.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_kr.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_kr.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_codecs_kr.so
building '_codecs_jp' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_jp.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_jp.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_jp.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_codecs_jp.so
building '_codecs_cn' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_cn.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_cn.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_cn.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_codecs_cn.so
building '_codecs_tw' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_tw.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_tw.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_tw.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_codecs_tw.so
building '_codecs_hk' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_hk.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_hk.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_hk.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_codecs_hk.so
building '_codecs_iso2022' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_iso2022.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_iso2022.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/cjkcodecs/_codecs_iso2022.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_codecs_iso2022.so
building 'dl' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/dlmodule.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/dlmodule.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/dlmodule.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/dl.so
building '_multiprocessing' extension
creating build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_multiprocessing
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DHAVE_SEM_OPEN=1 -DHAVE_FD_TRANSFER=1 -DHAVE_SEM_TIMEDWAIT=1 -IModules/_multiprocessing -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_multiprocessing/multiprocessing.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_multiprocessing/multiprocessing.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DHAVE_SEM_OPEN=1 -DHAVE_FD_TRANSFER=1 -DHAVE_SEM_TIMEDWAIT=1 -IModules/_multiprocessing -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_multiprocessing/socket_connection.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_multiprocessing/socket_connection.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DHAVE_SEM_OPEN=1 -DHAVE_FD_TRANSFER=1 -DHAVE_SEM_TIMEDWAIT=1 -IModules/_multiprocessing -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_multiprocessing/semaphore.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_multiprocessing/semaphore.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_multiprocessing/multiprocessing.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_multiprocessing/socket_connection.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_multiprocessing/semaphore.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/_multiprocessing.so
building 'linuxaudiodev' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/linuxaudiodev.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/linuxaudiodev.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/linuxaudiodev.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/linuxaudiodev.so
building 'ossaudiodev' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/ossaudiodev.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/ossaudiodev.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/ossaudiodev.o -L/usr/local/lib -L. -lpython2.6 -o build/lib.linux-i686-2.6/ossaudiodev.so
building '_tkinter' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -DWITH_APPINIT=1 -I/usr/X11/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_tkinter.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_tkinter.o
In file included from /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_tkinter.c:67:
/usr/local/include/tk.h:23:3: error: #error Tk 8.4 must be compiled with tcl.h from Tcl 8.4
building '_ctypes' extension
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I/usr/lib/libffi-3.0.9/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/_ctypes.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/_ctypes.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I/usr/lib/libffi-3.0.9/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/callbacks.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/callbacks.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I/usr/lib/libffi-3.0.9/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/callproc.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/callproc.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I/usr/lib/libffi-3.0.9/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/stgdict.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/stgdict.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I/usr/lib/libffi-3.0.9/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/cfield.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/cfield.o
i686-pc-linux-gnu-gcc -pthread -fPIC -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I/usr/lib/libffi-3.0.9/include -I. -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/./Include -I. -IInclude -I./Include -I/usr/local/include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Include -I/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5 -c /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/malloc_closure.c -o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/malloc_closure.o
i686-pc-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,--as-needed -L. -fno-strict-aliasing -march=i686 -O2 -pipe -fwrapv -DNDEBUG -I. -IInclude -I./Include build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/_ctypes.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/callbacks.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/callproc.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/stgdict.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/cfield.o build/temp.linux-i686-2.6/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Modules/_ctypes/malloc_closure.o -L/usr/local/lib -L. -lffi -lpython2.6 -o build/lib.linux-i686-2.6/_ctypes.so

Failed to find the necessary bits to build these modules:
bsddb185           sunaudiodev                        
To find the necessary bits, look in setup.py in detect_modules() for the module's name.


Failed to build these modules:
_tkinter                                              

running build_scripts
creating build/scripts-2.6
copying and adjusting /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Tools/scripts/pydoc -> build/scripts-2.6
copying and adjusting /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Tools/scripts/idle -> build/scripts-2.6
copying and adjusting /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Tools/scripts/2to3 -> build/scripts-2.6
copying and adjusting /var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5/Lib/smtpd.py -> build/scripts-2.6
changing mode of build/scripts-2.6/pydoc from 644 to 755
changing mode of build/scripts-2.6/idle from 644 to 755
changing mode of build/scripts-2.6/2to3 from 644 to 755
changing mode of build/scripts-2.6/smtpd.py from 644 to 755
make: *** [sharedmods] Error 1
 * ERROR: dev-lang/python-2.6.5-r3 failed:
 *   emake failed
 * 
 * Call stack:
 *     ebuild.sh, line   54:  Called src_compile
 *   environment, line 5489:  Called _eapi2_src_compile
 *     ebuild.sh, line  646:  Called die
 * The specific snippet of code:
 *   		emake || die "emake failed"
 * 
 * If you need support, post the output of 'emerge --info =dev-lang/python-2.6.5-r3',
 * the complete build log and the output of 'emerge -pqv =dev-lang/python-2.6.5-r3'.
 * The complete build log is located at '/var/tmp/portage/dev-lang/python-2.6.5-r3/temp/build.log'.
 * The ebuild environment file is located at '/var/tmp/portage/dev-lang/python-2.6.5-r3/temp/environment'.
 * S: '/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5'

>>> Failed to emerge dev-lang/python-2.6.5-r3, Log file:

>>>  '/var/tmp/portage/dev-lang/python-2.6.5-r3/temp/build.log'

 * Messages for package dev-lang/python-2.6.5-r3:

omplete build log is located at '/var/tmp/portage/dev-lang/python-2.6.5-r3/temp/build.log'.
 * The ebuild environment file is located at '/var/tmp/portage/dev-lang/python-2.6.5-r3/temp/environment'.
 * S: '/var/tmp/portage/dev-lang/python-2.6.5-r3/work/Python-2.6.5'

>>> Failed to emerge dev-lang/python-2.6.5-r3, Log file:

>>>  '/var/tmp/portage/dev-lang/python-2.6.5-r3/temp/build.log'

 * Messages for package dev-lang/python-2.6.5-r3: