summaryrefslogtreecommitdiff
path: root/binutils/kepler.SCHWINGE/log_build
blob: 6a150744f3aebbd2ed0bff72754d95adea92ab4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether ln works... yes
checking whether ln -s works... yes
checking for a sed that does not truncate output... /bin/sed
checking for gawk... gawk
checking for gcc... gcc-4.8
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc-4.8 accepts -g... yes
checking for gcc-4.8 option to accept ISO C89... none needed
checking whether we are using the GNU C++ compiler... yes
checking whether g++-4.8 accepts -g... yes
checking whether g++ accepts -static-libstdc++ -static-libgcc... yes
checking for gnatbind... gnatbind
checking for gnatmake... gnatmake
checking whether compiler driver understands Ada... no
checking how to compare bootstrapped objects... cmp --ignore-initial=16 $$f1 $$f2
checking for objdir... .libs
checking for version 0.10 of ISL... no
checking for version 0.11 of ISL... yes
checking for version 0.17.0 of CLooG... no
checking for version 0.18.0 of CLooG... yes
checking for default BUILD_CONFIG... 
checking for bison... bison -y
checking for bison... bison
checking for gm4... no
checking for gnum4... no
checking for m4... m4
checking for flex... flex
checking for flex... flex
checking for makeinfo... makeinfo
checking for expect... expect
checking for runtest... runtest
checking for ar... ar
checking for as... as
checking for dlltool... no
checking for ld... ld
checking for lipo... no
checking for nm... nm
checking for ranlib... ranlib
checking for strip... strip
checking for windres... no
checking for windmc... no
checking for objcopy... objcopy
checking for objdump... objdump
checking for readelf... readelf
checking for cc... cc
checking for c++... c++
checking for gcc... gcc
checking for gcj... gcj
checking for gfortran... gfortran
checking for gccgo... no
checking for ar... ar
checking for as... as
checking for dlltool... no
checking for ld... ld
checking for lipo... no
checking for nm... nm
checking for objdump... objdump
checking for ranlib... ranlib
checking for readelf... readelf
checking for strip... strip
checking for windres... no
checking for windmc... no
checking where to find the target ar... just compiled
checking where to find the target as... just compiled
checking where to find the target cc... host tool
checking where to find the target c++... host tool
checking where to find the target c++ for libstdc++... host tool
checking where to find the target dlltool... just compiled
checking where to find the target gcc... host tool
checking where to find the target gcj... host tool
checking where to find the target gfortran... host tool
checking where to find the target gccgo... host tool
checking where to find the target ld... just compiled
checking where to find the target lipo... host tool
checking where to find the target nm... just compiled
checking where to find the target objdump... just compiled
checking where to find the target ranlib... just compiled
checking where to find the target readelf... just compiled
checking where to find the target strip... just compiled
checking where to find the target windres... just compiled
checking where to find the target windmc... just compiled
checking whether to enable maintainer-specific portions of Makefiles... no
configure: creating ./config.status
config.status: creating Makefile
make[1]: Entering directory `[...]/tschwinge/Paul_Desmond.build'
mkdir -p -- ./intl
Configuring in ./intl
configure: creating cache ./config.cache
checking whether make sets $(MAKE)... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for i686-pc-linux-gnu-gcc... gcc-4.8
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc-4.8 accepts -g... yes
checking for gcc-4.8 option to accept ISO C89... none needed
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for i686-pc-linux-gnu-ranlib... ranlib
checking for library containing strerror... none required
checking how to run the C preprocessor... gcc-4.8 -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 an ANSI C-conforming const... yes
checking for inline... inline
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 for off_t... yes
checking for size_t... yes
checking for working alloca.h... yes
checking for alloca... yes
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... yes
checking for working mmap... yes
checking whether we are using the GNU C Library 2.1 or newer... yes
checking whether integer division by zero raises SIGFPE... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unsigned long long... yes
checking for inttypes.h... yes
checking whether the inttypes.h PRIxNN macros are broken... no
checking for ld used by GCC... ld
checking if the linker (ld) is GNU ld... yes
checking for shared library run path origin... done
checking argz.h usability... yes
checking argz.h presence... yes
checking for argz.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking nl_types.h usability... yes
checking nl_types.h presence... yes
checking for nl_types.h... yes
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking stddef.h usability... yes
checking stddef.h presence... yes
checking for stddef.h... yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking for feof_unlocked... yes
checking for fgets_unlocked... yes
checking for getc_unlocked... yes
checking for getcwd... yes
checking for getegid... yes
checking for geteuid... yes
checking for getgid... yes
checking for getuid... yes
checking for mempcpy... yes
checking for munmap... yes
checking for putenv... yes
checking for setenv... yes
checking for setlocale... yes
checking for stpcpy... yes
checking for strcasecmp... yes
checking for strdup... yes
checking for strtoul... yes
checking for tsearch... yes
checking for __argz_count... yes
checking for __argz_stringify... yes
checking for __argz_next... yes
checking for __fsetlocking... yes
checking for iconv... yes
checking for iconv declaration... install-shextern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
checking for nl_langinfo and CODESET... yes
checking for LC_MESSAGES... yes
checking for bison... bison
checking version of bison... 2.7.12, ok
checking whether NLS is requested... yes
checking whether included gettext is requested... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for aclocal... aclocal
checking for autoconf... autoconf
checking for autoheader... autoheader
configure: updating cache ./config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.intl
config.status: creating config.h
config.status: executing default-1 commands
mkdir -p -- ./libiberty
Configuring in ./libiberty
configure: creating cache ./config.cache
checking whether to enable maintainer-specific portions of Makefiles... no
checking for makeinfo... makeinfo --split-size=5000000
checking for perl... perl
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for i686-pc-linux-gnu-ar... ar
checking for i686-pc-linux-gnu-ranlib... ranlib
checking whether to install libiberty headers and static library... no
configure: target_header_dir = 
checking for i686-pc-linux-gnu-gcc... gcc-4.8
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc-4.8 accepts -g... yes
checking for gcc-4.8 option to accept ISO C89... none needed
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... 64
checking how to run the C preprocessor... gcc-4.8 -E
checking whether gcc-4.8 supports -W... yes
checking whether gcc-4.8 supports -Wall... yes
checking whether gcc-4.8 supports -Wwrite-strings... yes
checking whether gcc-4.8 supports -Wc++-compat... yes
checking whether gcc-4.8 supports -Wstrict-prototypes... yes
checking whether gcc-4.8 supports -pedantic ... yes
checking whether gcc-4.8 and cc understand -c and -o together... yes
checking for an ANSI C-conforming const... yes
checking for inline... inline
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 whether byte ordering is bigendian... no
checking for a BSD-compatible install... /usr/bin/install -c
checking for sys/file.h... yes
checking for sys/param.h... yes
checking for limits.h... yes
checking for stdlib.h... (cached) yes
checking for malloc.h... yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for strings.h... (cached) yes
checking for sys/time.h... yes
checking for time.h... yes
checking for sys/resource.h... yes
checking for sys/stat.h... (cached) yes
checking for sys/mman.h... yes
checking for fcntl.h... yes
checking for alloca.h... yes
checking for sys/pstat.h... no
checking for sys/sysmp.h... no
checking for sys/sysinfo.h... yes
checking for machine/hal_sysinfo.h... no
checking for sys/table.h... no
checking for sys/sysctl.h... yes
checking for sys/systemcfg.h... no
checking for stdint.h... (cached) yes
checking for stdio_ext.h... yes
checking for process.h... no
checking for sys/prctl.h... yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether errno must be declared... no
checking size of int... 4
checking for a 64-bit type... uint64_t
checking for intptr_t... yes
checking for uintptr_t... yes
checking for ssize_t... yes
checking for pid_t... yes
checking for library containing strerror... none required
checking for asprintf... yes
checking for atexit... yes
checking for basename... yes
checking for bcmp... yes
checking for bcopy... yes
checking for bsearch... yes
checking for bzero... yes
checking for calloc... yes
checking for clock... yes
checking for ffs... yes
checking for getcwd... yes
checking for getpagesize... yes
checking for gettimeofday... yes
checking for index... yes
checking for insque... yes
checking for memchr... yes
checking for memcmp... yes
checking for memcpy... yes
checking for memmem... yes
checking for memmove... yes
checking for mempcpy... yes
checking for memset... yes
checking for mkstemps... yes
checking for putenv... yes
checking for random... yes
checking for rename... yes
checking for rindex... yes
checking for setenv... yes
checking for snprintf... yes
checking for sigsetmask... yes
checking for stpcpy... yes
checking for stpncpy... yes
checking for strcasecmp... yes
checking for strchr... yes
checking for strdup... yes
checking for strncasecmp... yes
checking for strndup... yes
checking for strnlen... yes
checking for strrchr... yes
checking for strstr... yes
checking for strtod... yes
checking for strtol... yes
checking for strtoul... yes
checking for strverscmp... yes
checking for tmpnam... yes
checking for vasprintf... yes
checking for vfprintf... yes
checking for vprintf... yes
checking for vsnprintf... yes
checking for vsprintf... yes
checking for waitpid... yes
checking for setproctitle... no
checking whether alloca needs Cray hooks... no
checking stack direction for C alloca... -1
checking for vfork.h... no
checking for fork... yes
checking for vfork... yes
checking for working fork... yes
checking for working vfork... (cached) yes
checking for _doprnt... no
checking for sys_errlist... yes
checking for sys_nerr... yes
checking for sys_siglist... yes
checking for external symbol _system_configuration... no
checking for __fsetlocking... yes
checking for canonicalize_file_name... yes
checking for dup3... yes
checking for getrlimit... yes
checking for getrusage... yes
checking for getsysinfo... no
checking for gettimeofday... (cached) yes
checking for on_exit... yes
checking for psignal... yes
checking for pstat_getdynamic... no
checking for pstat_getstatic... no
checking for realpath... yes
checking for setrlimit... yes
checking for sbrk... yes
checking for spawnve... no
checking for spawnvpe... no
checking for strerror... yes
checking for strsignal... yes
checking for sysconf... yes
checking for sysctl... yes
checking for sysmp... no
checking for table... no
checking for times... yes
checking for wait3... yes
checking for wait4... yes
checking whether basename is declared... no
checking whether ffs is declared... yes
checking whether asprintf is declared... no
checking whether vasprintf is declared... no
checking whether snprintf is declared... yes
checking whether vsnprintf is declared... yes
checking whether calloc is declared... yes
checking whether getenv is declared... yes
checking whether getopt is declared... yes
checking whether malloc is declared... yes
checking whether realloc is declared... yes
checking whether sbrk is declared... yes
checking whether strverscmp is declared... no
checking whether canonicalize_file_name must be declared... yes
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... yes
checking for working strncmp... yes
configure: updating cache ./config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating testsuite/Makefile
config.status: creating config.h
config.status: executing default commands
mkdir -p -- ./bfd
Configuring in ./bfd
configure: creating cache ./config.cache
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for i686-pc-linux-gnu-gcc... gcc-4.8
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc-4.8 accepts -g... yes
checking for gcc-4.8 option to accept ISO C89... none needed
checking for library containing strerror... none required
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking dependency style of gcc-4.8... gcc3
checking for i686-pc-linux-gnu-ar... ar
checking for i686-pc-linux-gnu-ranlib... ranlib
checking for i686-pc-linux-gnu-gcc... (cached) gcc-4.8
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc-4.8 accepts -g... (cached) yes
checking for gcc-4.8 option to accept ISO C89... (cached) none needed
checking how to run the C preprocessor... gcc-4.8 -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 how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by gcc-4.8... ld
checking if the linker (ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 805306365
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... no
checking for ld option to reload object files... -r
checking for i686-pc-linux-gnu-objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for i686-pc-linux-gnu-ar... (cached) ar
checking for i686-pc-linux-gnu-strip... no
checking for strip... strip
checking for i686-pc-linux-gnu-ranlib... (cached) ranlib
checking command to parse nm output from gcc-4.8 object... ok
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc-4.8 supports -fno-rtti -fno-exceptions... no
checking for gcc-4.8 option to produce PIC... -fPIC -DPIC
checking if gcc-4.8 PIC flag -fPIC -DPIC works... yes
checking if gcc-4.8 static flag -static works... yes
checking if gcc-4.8 supports -c -o file.o... yes
checking if gcc-4.8 supports -c -o file.o... (cached) yes
checking whether the gcc-4.8 linker (ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... no
checking for dlopen in -ldl... yes
checking whether a program can dlopen itself... yes
checking whether a statically linked program can dlopen itself... no
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... 64
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether to install libbfd... yes
checking whether NLS is requested... yes
checking for catalogs to be installed...  da es fi fr id ja ro ru rw sv tr uk vi zh_CN
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking size of long long... 8
checking size of void *... 4
checking size of long... 4
checking alloca.h usability... yes
checking alloca.h presence... yes
checking for alloca.h... yes
checking stddef.h usability... yes
checking stddef.h presence... yes
checking for stddef.h... yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for stdlib.h... (cached) yes
checking time.h usability... yes
checking time.h presence... yes
checking for time.h... yes
checking for unistd.h... (cached) yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/file.h usability... yes
checking sys/file.h presence... yes
checking for sys/file.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for sys/stat.h... (cached) yes
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
looking for a compliant stdint.h in stdint.h, checking for uintmax_t... yes
checking for uintptr_t... yes
checking for int_least32_t... yes
checking for int_fast32_t... yes
checking for uint64_t... yes
checking what to include in bfd_stdint.h... stdint.h (already complete)
checking whether time.h and sys/time.h may both be included... yes
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking windows.h usability... no
checking windows.h presence... no
checking for windows.h... no
checking for dlfcn.h... (cached) yes
checking whether string.h and strings.h may both be included... yes
checking for fcntl... yes
checking for getpagesize... yes
checking for setitimer... yes
checking for sysconf... yes
checking for fdopen... yes
checking for getuid... yes
checking for getgid... yes
checking for fileno... yes
checking for strtoull... yes
checking for getrlimit... yes
checking whether basename is declared... yes
checking whether ftello is declared... yes
checking whether ftello64 is declared... yes
checking whether fseeko is declared... yes
checking whether fseeko64 is declared... yes
checking whether ffs is declared... yes
checking whether free is declared... yes
checking whether getenv is declared... yes
checking whether malloc is declared... yes
checking whether realloc is declared... yes
checking whether stpcpy is declared... yes
checking whether strstr is declared... yes
checking whether snprintf is declared... yes
checking whether vsnprintf is declared... yes
checking for library containing zlibVersion... -lz
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking sys/procfs.h usability... yes
checking sys/procfs.h presence... yes
checking for sys/procfs.h... yes
checking for prstatus_t in sys/procfs.h... yes
checking for prstatus32_t in sys/procfs.h... no
checking for prstatus_t.pr_who in sys/procfs.h... no
checking for prstatus32_t.pr_who in sys/procfs.h... no
checking for pstatus_t in sys/procfs.h... no
checking for pxstatus_t in sys/procfs.h... no
checking for pstatus32_t in sys/procfs.h... no
checking for prpsinfo_t in sys/procfs.h... yes
checking for prpsinfo_t.pr_pid in sys/procfs.h... yes
checking for prpsinfo32_t in sys/procfs.h... no
checking for prpsinfo32_t.pr_pid in sys/procfs.h... no
checking for psinfo_t in sys/procfs.h... no
checking for psinfo_t.pr_pid in sys/procfs.h... no
checking for psinfo32_t in sys/procfs.h... no
checking for psinfo32_t.pr_pid in sys/procfs.h... no
checking for lwpstatus_t in sys/procfs.h... no
checking for lwpxstatus_t in sys/procfs.h... no
checking for lwpstatus_t.pr_context in sys/procfs.h... no
checking for lwpstatus_t.pr_reg in sys/procfs.h... no
checking for lwpstatus_t.pr_fpreg in sys/procfs.h... no
checking for win32_pstatus_t in sys/procfs.h... no
checking linker --as-needed support... yes
checking for cos in -lm... yes
checking for ftello... yes
checking for ftello64... yes
checking for fseeko... yes
checking for fseeko64... yes
checking for fopen64... yes
checking size of off_t... 8
checking file_ptr type... BFD_HOST_64_BIT
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... yes
checking for madvise... yes
checking for mprotect... yes
configure: updating cache ./config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating doc/Makefile
config.status: creating bfd-in3.h
config.status: creating po/Makefile.in
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing default-1 commands
config.status: executing bfd_stdint.h commands
config.status: executing default commands
make[2]: Entering directory `[...]/tschwinge/Paul_Desmond.build/libiberty'
if [ x"" != x ] && [ ! -d pic ]; then \
	  mkdir pic; \
	else true; fi
touch stamp-picdir
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/regex.c -o pic/regex.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/regex.c -o regex.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/cplus-dem.c -o pic/cplus-dem.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/cplus-dem.c -o cplus-dem.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/cp-demangle.c -o pic/cp-demangle.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/cp-demangle.c -o cp-demangle.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/md5.c -o pic/md5.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/md5.c -o md5.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/sha1.c -o pic/sha1.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/sha1.c -o sha1.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/alloca.c -o pic/alloca.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/alloca.c -o alloca.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/argv.c -o pic/argv.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/argv.c -o argv.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/choose-temp.c -o pic/choose-temp.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/choose-temp.c -o choose-temp.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/concat.c -o pic/concat.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/concat.c -o concat.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/cp-demint.c -o pic/cp-demint.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/cp-demint.c -o cp-demint.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/crc32.c -o pic/crc32.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/crc32.c -o crc32.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/dwarfnames.c -o pic/dwarfnames.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/dwarfnames.c -o dwarfnames.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/dyn-string.c -o pic/dyn-string.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/dyn-string.c -o dyn-string.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/fdmatch.c -o pic/fdmatch.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/fdmatch.c -o fdmatch.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/fibheap.c -o pic/fibheap.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/fibheap.c -o fibheap.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/filename_cmp.c -o pic/filename_cmp.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/filename_cmp.c -o filename_cmp.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/floatformat.c -o pic/floatformat.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/floatformat.c -o floatformat.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/fnmatch.c -o pic/fnmatch.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/fnmatch.c -o fnmatch.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/fopen_unlocked.c -o pic/fopen_unlocked.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/fopen_unlocked.c -o fopen_unlocked.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/getopt.c -o pic/getopt.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/getopt.c -o getopt.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/getopt1.c -o pic/getopt1.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/getopt1.c -o getopt1.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/getpwd.c -o pic/getpwd.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/getpwd.c -o getpwd.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/getruntime.c -o pic/getruntime.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/getruntime.c -o getruntime.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/hashtab.c -o pic/hashtab.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/hashtab.c -o hashtab.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/hex.c -o pic/hex.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/hex.c -o hex.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/lbasename.c -o pic/lbasename.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/lbasename.c -o lbasename.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/lrealpath.c -o pic/lrealpath.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/lrealpath.c -o lrealpath.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/make-relative-prefix.c -o pic/make-relative-prefix.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/make-relative-prefix.c -o make-relative-prefix.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/make-temp-file.c -o pic/make-temp-file.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/make-temp-file.c -o make-temp-file.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/objalloc.c -o pic/objalloc.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/objalloc.c -o objalloc.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/obstack.c -o pic/obstack.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/obstack.c -o obstack.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/partition.c -o pic/partition.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/partition.c -o partition.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/pexecute.c -o pic/pexecute.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/pexecute.c -o pexecute.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/physmem.c -o pic/physmem.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/physmem.c -o physmem.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/pex-common.c -o pic/pex-common.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/pex-common.c -o pex-common.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/pex-one.c -o pic/pex-one.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/pex-one.c -o pex-one.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/pex-unix.c -o pic/pex-unix.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/pex-unix.c -o pex-unix.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/safe-ctype.c -o pic/safe-ctype.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/safe-ctype.c -o safe-ctype.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/simple-object.c -o pic/simple-object.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/simple-object.c -o simple-object.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/simple-object-coff.c -o pic/simple-object-coff.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/simple-object-coff.c -o simple-object-coff.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/simple-object-elf.c -o pic/simple-object-elf.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/simple-object-elf.c -o simple-object-elf.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/simple-object-mach-o.c -o pic/simple-object-mach-o.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/simple-object-mach-o.c -o simple-object-mach-o.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/simple-object-xcoff.c -o pic/simple-object-xcoff.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/simple-object-xcoff.c -o simple-object-xcoff.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/sort.c -o pic/sort.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/sort.c -o sort.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/spaces.c -o pic/spaces.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/spaces.c -o spaces.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/splay-tree.c -o pic/splay-tree.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/splay-tree.c -o splay-tree.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/stack-limit.c -o pic/stack-limit.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/stack-limit.c -o stack-limit.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/strerror.c -o pic/strerror.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/strerror.c -o strerror.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/strsignal.c -o pic/strsignal.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/strsignal.c -o strsignal.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/timeval-utils.c -o pic/timeval-utils.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/timeval-utils.c -o timeval-utils.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/unlink-if-ordinary.c -o pic/unlink-if-ordinary.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/unlink-if-ordinary.c -o unlink-if-ordinary.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/xatexit.c -o pic/xatexit.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/xatexit.c -o xatexit.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/xexit.c -o pic/xexit.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/xexit.c -o xexit.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/xmalloc.c -o pic/xmalloc.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/xmalloc.c -o xmalloc.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/xmemdup.c -o pic/xmemdup.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/xmemdup.c -o xmemdup.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/xstrdup.c -o pic/xstrdup.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/xstrdup.c -o xstrdup.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/xstrerror.c -o pic/xstrerror.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/xstrerror.c -o xstrerror.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/xstrndup.c -o pic/xstrndup.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/xstrndup.c -o xstrndup.o
if [ x"" != x ]; then \
	  gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic   ../../Paul_Desmond/libiberty/setproctitle.c -o pic/setproctitle.o; \
	else true; fi
gcc-4.8 -c -DHAVE_CONFIG_H -g -O2  -I. -I../../Paul_Desmond/libiberty/../include  -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic  ../../Paul_Desmond/libiberty/setproctitle.c -o setproctitle.o
rm -f ./libiberty.a pic/./libiberty.a
ar rc ./libiberty.a \
	  ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./dwarfnames.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o  ./setproctitle.o
ranlib ./libiberty.a
if [ x"" != x ]; then \
	  cd pic; \
	  ar rc ./libiberty.a \
	    ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./dwarfnames.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o  ./setproctitle.o; \
	  ranlib ./libiberty.a; \
	  cd ..; \
	else true; fi
echo ./regex.o ./cplus-dem.o ./cp-demangle.o ./md5.o ./sha1.o ./alloca.o ./argv.o ./choose-temp.o ./concat.o ./cp-demint.o ./crc32.o ./dwarfnames.o ./dyn-string.o ./fdmatch.o ./fibheap.o ./filename_cmp.o ./floatformat.o ./fnmatch.o ./fopen_unlocked.o ./getopt.o ./getopt1.o ./getpwd.o ./getruntime.o ./hashtab.o ./hex.o ./lbasename.o ./lrealpath.o ./make-relative-prefix.o ./make-temp-file.o ./objalloc.o ./obstack.o ./partition.o ./pexecute.o ./physmem.o ./pex-common.o ./pex-one.o ./pex-unix.o ./safe-ctype.o ./simple-object.o ./simple-object-coff.o ./simple-object-elf.o ./simple-object-mach-o.o ./simple-object-xcoff.o ./sort.o ./spaces.o ./splay-tree.o ./stack-limit.o ./strerror.o ./strsignal.o ./timeval-utils.o ./unlink-if-ordinary.o ./xatexit.o ./xexit.o ./xmalloc.o ./xmemdup.o ./xstrdup.o ./xstrerror.o ./xstrndup.o > required-list
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/libiberty/testsuite'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/libiberty/testsuite'
make[2]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/libiberty'
make[2]: Entering directory `[...]/tschwinge/Paul_Desmond.build/intl'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/intl'
make[2]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd'
creating bfdver.h
rm -f elf32-target.h
sed -e s/NN/32/g < ../../Paul_Desmond/bfd/elfxx-target.h > elf32-target.new
mv -f elf32-target.new elf32-target.h
rm -f elf64-target.h
sed -e s/NN/64/g < ../../Paul_Desmond/bfd/elfxx-target.h > elf64-target.new
mv -f elf64-target.new elf64-target.h
rm -f targmatch.h
sed -f ../../Paul_Desmond/bfd/targmatch.sed < ../../Paul_Desmond/bfd/config.bfd > targmatch.new
mv -f targmatch.new targmatch.h
Making info in doc
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make chew
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
gcc-4.8 -o chw$$ -g -O2 \
	    -I.. -I../../../Paul_Desmond/bfd/doc/.. -I../../../Paul_Desmond/bfd/doc/../../include -I../../../Paul_Desmond/bfd/doc/../../intl -I../../intl ../../../Paul_Desmond/bfd/doc/chew.c; \
	/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change chw$$ chew
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
./chew -f ../../../Paul_Desmond/bfd/doc/doc.str <../../../Paul_Desmond/bfd/doc/../aoutx.h >aoutx.tmp
/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change aoutx.tmp aoutx.texi
make chew
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
./chew -f ../../../Paul_Desmond/bfd/doc/doc.str <../../../Paul_Desmond/bfd/doc/../archive.c >archive.tmp
/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change archive.tmp archive.texi
make chew
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
./chew -f ../../../Paul_Desmond/bfd/doc/doc.str < ../../../Paul_Desmond/bfd/doc/../archures.c >archures.tmp
/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change archures.tmp archures.texi
make chew
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
./chew -f ../../../Paul_Desmond/bfd/doc/doc.str < ../../../Paul_Desmond/bfd/doc/../bfd.c >bfd.tmp
/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change bfd.tmp bfdt.texi
make chew
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
./chew -f ../../../Paul_Desmond/bfd/doc/doc.str < ../../../Paul_Desmond/bfd/doc/../cache.c >cache.tmp
/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change cache.tmp cache.texi
make chew
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
./chew -f ../../../Paul_Desmond/bfd/doc/doc.str <../../../Paul_Desmond/bfd/doc/../coffcode.h >coffcode.tmp
/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change coffcode.tmp coffcode.texi
make chew
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
./chew -f ../../../Paul_Desmond/bfd/doc/doc.str <../../../Paul_Desmond/bfd/doc/../corefile.c >core.tmp
/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change core.tmp core.texi
make chew
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
./chew -f ../../../Paul_Desmond/bfd/doc/doc.str <../../../Paul_Desmond/bfd/doc/../elf.c >elf.tmp
/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change elf.tmp elf.texi
make chew
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
./chew -f ../../../Paul_Desmond/bfd/doc/doc.str <../../../Paul_Desmond/bfd/doc/../elfcode.h >elfcode.tmp
/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change elfcode.tmp elfcode.texi
make chew
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
./chew -f ../../../Paul_Desmond/bfd/doc/doc.str <../../../Paul_Desmond/bfd/doc/../format.c >format.tmp
/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change format.tmp format.texi
make chew
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
./chew -f ../../../Paul_Desmond/bfd/doc/doc.str < ../../../Paul_Desmond/bfd/doc/../libbfd.c >libbfd.tmp
/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change libbfd.tmp libbfd.texi
make chew
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
./chew -f ../../../Paul_Desmond/bfd/doc/doc.str < ../../../Paul_Desmond/bfd/doc/../bfdwin.c >bfdwin.tmp
/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change bfdwin.tmp bfdwin.texi
make chew
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
./chew -f ../../../Paul_Desmond/bfd/doc/doc.str < ../../../Paul_Desmond/bfd/doc/../bfdio.c >bfdio.tmp
/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change bfdio.tmp bfdio.texi
make chew
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
./chew -f ../../../Paul_Desmond/bfd/doc/doc.str  <../../../Paul_Desmond/bfd/doc/../opncls.c >opncls.tmp
/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change opncls.tmp opncls.texi
make chew
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
./chew -f ../../../Paul_Desmond/bfd/doc/doc.str <../../../Paul_Desmond/bfd/doc/../reloc.c >reloc.tmp
/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change reloc.tmp reloc.texi
make chew
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
./chew -f ../../../Paul_Desmond/bfd/doc/doc.str <../../../Paul_Desmond/bfd/doc/../section.c >section.tmp
/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change section.tmp section.texi
make chew
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
./chew -f ../../../Paul_Desmond/bfd/doc/doc.str <../../../Paul_Desmond/bfd/doc/../syms.c >syms.tmp
/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change syms.tmp syms.texi
make chew
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
./chew -f ../../../Paul_Desmond/bfd/doc/doc.str <../../../Paul_Desmond/bfd/doc/../targets.c >targets.tmp
/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change targets.tmp targets.texi
make chew
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
./chew -f ../../../Paul_Desmond/bfd/doc/doc.str <../../../Paul_Desmond/bfd/doc/../init.c >init.tmp
/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change init.tmp init.texi
make chew
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
./chew -f ../../../Paul_Desmond/bfd/doc/doc.str <../../../Paul_Desmond/bfd/doc/../hash.c >hash.tmp
/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change hash.tmp hash.texi
make chew
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
./chew -f ../../../Paul_Desmond/bfd/doc/doc.str <../../../Paul_Desmond/bfd/doc/../linker.c >linker.tmp
/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change linker.tmp linker.texi
make chew
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: `chew' is up to date.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
./chew -f ../../../Paul_Desmond/bfd/doc/doc.str <../../../Paul_Desmond/bfd/doc/../mmo.c >mmo.tmp
/bin/dash ../../../Paul_Desmond/bfd/doc/../../move-if-change mmo.tmp mmo.texi
creating bfdver.texi
restore=: && backupdir=".am$$" && \
	rm -rf $backupdir && mkdir $backupdir && \
	if (makeinfo --split-size=5000000 --split-size=5000000 --version) >/dev/null 2>&1; then \
	  for f in bfd.info bfd.info-[0-9] bfd.info-[0-9][0-9] bfd.i[0-9] bfd.i[0-9][0-9]; do \
	    if test -f $f; then mv $f $backupdir; restore=mv; else :; fi; \
	  done; \
	else :; fi && \
	if makeinfo --split-size=5000000 --split-size=5000000   -I ../../../Paul_Desmond/bfd/doc \
	 -o bfd.info `test -f 'bfd.texinfo' || echo '../../../Paul_Desmond/bfd/doc/'`bfd.texinfo; \
	then \
	  rc=0; \
	else \
	  rc=$?; \
	  $restore $backupdir/* `echo "./bfd.info" | sed 's|[^/]*$||'`; \
	fi; \
	rm -rf $backupdir; exit $rc
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
Making info in po
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/po'
( if test 'x../../../Paul_Desmond/bfd/po' != 'x.'; then \
	    posrcprefix='../../../Paul_Desmond/bfd/'; \
	  else \
	    posrcprefix="../"; \
	  fi; \
	  rm -f SRC-POTFILES-t SRC-POTFILES \
	    && (sed -e '/^#/d' \
	            -e '/^[ 	]*$/d' \
		    -e "s@.*@	$posrcprefix& \\\\@" < ../../../Paul_Desmond/bfd/po/SRC-POTFILES.in \
		| sed -e '$s/\\$//') > SRC-POTFILES-t \
	    && chmod a-w SRC-POTFILES-t \
	    && mv SRC-POTFILES-t SRC-POTFILES )
( rm -f BLD-POTFILES-t BLD-POTFILES \
	    && (sed -e '/^#/d' \
	            -e '/^[ 	]*$/d' \
		    -e "s@.*@	../& \\\\@" < ../../../Paul_Desmond/bfd/po/BLD-POTFILES.in \
		| sed -e '$s/\\$//') > BLD-POTFILES-t \
	    && chmod a-w BLD-POTFILES-t \
	    && mv BLD-POTFILES-t BLD-POTFILES )
cd .. \
	  && CONFIG_FILES=po/Makefile.in:po/Make-in \
	     CONFIG_HEADERS= /bin/dash ./config.status
config.status: creating po/Makefile.in
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing default-1 commands
config.status: executing bfd_stdint.h commands
config.status: executing default commands
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/po'
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/po'
make[3]: Nothing to be done for `info'.
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/po'
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd'
make[3]: Nothing to be done for `info-am'.
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd'
make  all-recursive
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd'
Making all in doc
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
Making all in po
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/po'
file=`echo ../../../Paul_Desmond/bfd/po/da | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/bfd/po/da.po
file=`echo ../../../Paul_Desmond/bfd/po/es | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/bfd/po/es.po
file=`echo ../../../Paul_Desmond/bfd/po/fi | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/bfd/po/fi.po
file=`echo ../../../Paul_Desmond/bfd/po/fr | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/bfd/po/fr.po
file=`echo ../../../Paul_Desmond/bfd/po/id | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/bfd/po/id.po
file=`echo ../../../Paul_Desmond/bfd/po/ja | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/bfd/po/ja.po
file=`echo ../../../Paul_Desmond/bfd/po/ro | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/bfd/po/ro.po
file=`echo ../../../Paul_Desmond/bfd/po/ru | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/bfd/po/ru.po
file=`echo ../../../Paul_Desmond/bfd/po/rw | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/bfd/po/rw.po
file=`echo ../../../Paul_Desmond/bfd/po/sv | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/bfd/po/sv.po
file=`echo ../../../Paul_Desmond/bfd/po/tr | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/bfd/po/tr.po
file=`echo ../../../Paul_Desmond/bfd/po/uk | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/bfd/po/uk.po
file=`echo ../../../Paul_Desmond/bfd/po/vi | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/bfd/po/vi.po
file=`echo ../../../Paul_Desmond/bfd/po/zh_CN | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/bfd/po/zh_CN.po
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/po'
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd'
rm -f bfd-tmp.h
cp bfd-in3.h bfd-tmp.h
/bin/dash ../../Paul_Desmond/bfd/../move-if-change bfd-tmp.h bfd.h
rm -f bfd-tmp.h
touch stmp-bfd-h
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT archive.lo -MD -MP -MF .deps/archive.Tpo -c -o archive.lo ../../Paul_Desmond/bfd/archive.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT archive.lo -MD -MP -MF .deps/archive.Tpo -c ../../Paul_Desmond/bfd/archive.c -o archive.o
mv -f .deps/archive.Tpo .deps/archive.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT archures.lo -MD -MP -MF .deps/archures.Tpo -c -o archures.lo -DDEFAULT_VECTOR=bfd_elf32_i386_vec -DSELECT_VECS='&bfd_elf32_i386_vec,&i386linux_vec,&i386pei_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec' -DSELECT_ARCHITECTURES='&bfd_i386_arch' ../../Paul_Desmond/bfd/archures.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT archures.lo -MD -MP -MF .deps/archures.Tpo -c -DDEFAULT_VECTOR=bfd_elf32_i386_vec "-DSELECT_VECS=&bfd_elf32_i386_vec,&i386linux_vec,&i386pei_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec" "-DSELECT_ARCHITECTURES=&bfd_i386_arch" ../../Paul_Desmond/bfd/archures.c -o archures.o
mv -f .deps/archures.Tpo .deps/archures.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT bfd.lo -MD -MP -MF .deps/bfd.Tpo -c -o bfd.lo ../../Paul_Desmond/bfd/bfd.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT bfd.lo -MD -MP -MF .deps/bfd.Tpo -c ../../Paul_Desmond/bfd/bfd.c -o bfd.o
mv -f .deps/bfd.Tpo .deps/bfd.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT bfdio.lo -MD -MP -MF .deps/bfdio.Tpo -c -o bfdio.lo ../../Paul_Desmond/bfd/bfdio.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT bfdio.lo -MD -MP -MF .deps/bfdio.Tpo -c ../../Paul_Desmond/bfd/bfdio.c -o bfdio.o
mv -f .deps/bfdio.Tpo .deps/bfdio.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT bfdwin.lo -MD -MP -MF .deps/bfdwin.Tpo -c -o bfdwin.lo ../../Paul_Desmond/bfd/bfdwin.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT bfdwin.lo -MD -MP -MF .deps/bfdwin.Tpo -c ../../Paul_Desmond/bfd/bfdwin.c -o bfdwin.o
mv -f .deps/bfdwin.Tpo .deps/bfdwin.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cache.lo -MD -MP -MF .deps/cache.Tpo -c -o cache.lo ../../Paul_Desmond/bfd/cache.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cache.lo -MD -MP -MF .deps/cache.Tpo -c ../../Paul_Desmond/bfd/cache.c -o cache.o
mv -f .deps/cache.Tpo .deps/cache.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT coffgen.lo -MD -MP -MF .deps/coffgen.Tpo -c -o coffgen.lo ../../Paul_Desmond/bfd/coffgen.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT coffgen.lo -MD -MP -MF .deps/coffgen.Tpo -c ../../Paul_Desmond/bfd/coffgen.c -o coffgen.o
mv -f .deps/coffgen.Tpo .deps/coffgen.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT corefile.lo -MD -MP -MF .deps/corefile.Tpo -c -o corefile.lo ../../Paul_Desmond/bfd/corefile.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT corefile.lo -MD -MP -MF .deps/corefile.Tpo -c ../../Paul_Desmond/bfd/corefile.c -o corefile.o
mv -f .deps/corefile.Tpo .deps/corefile.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT format.lo -MD -MP -MF .deps/format.Tpo -c -o format.lo ../../Paul_Desmond/bfd/format.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT format.lo -MD -MP -MF .deps/format.Tpo -c ../../Paul_Desmond/bfd/format.c -o format.o
mv -f .deps/format.Tpo .deps/format.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT init.lo -MD -MP -MF .deps/init.Tpo -c -o init.lo ../../Paul_Desmond/bfd/init.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT init.lo -MD -MP -MF .deps/init.Tpo -c ../../Paul_Desmond/bfd/init.c -o init.o
mv -f .deps/init.Tpo .deps/init.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT libbfd.lo -MD -MP -MF .deps/libbfd.Tpo -c -o libbfd.lo ../../Paul_Desmond/bfd/libbfd.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT libbfd.lo -MD -MP -MF .deps/libbfd.Tpo -c ../../Paul_Desmond/bfd/libbfd.c -o libbfd.o
mv -f .deps/libbfd.Tpo .deps/libbfd.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT opncls.lo -MD -MP -MF .deps/opncls.Tpo -c -o opncls.lo ../../Paul_Desmond/bfd/opncls.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT opncls.lo -MD -MP -MF .deps/opncls.Tpo -c ../../Paul_Desmond/bfd/opncls.c -o opncls.o
mv -f .deps/opncls.Tpo .deps/opncls.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT reloc.lo -MD -MP -MF .deps/reloc.Tpo -c -o reloc.lo ../../Paul_Desmond/bfd/reloc.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT reloc.lo -MD -MP -MF .deps/reloc.Tpo -c ../../Paul_Desmond/bfd/reloc.c -o reloc.o
mv -f .deps/reloc.Tpo .deps/reloc.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT section.lo -MD -MP -MF .deps/section.Tpo -c -o section.lo ../../Paul_Desmond/bfd/section.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT section.lo -MD -MP -MF .deps/section.Tpo -c ../../Paul_Desmond/bfd/section.c -o section.o
mv -f .deps/section.Tpo .deps/section.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT syms.lo -MD -MP -MF .deps/syms.Tpo -c -o syms.lo ../../Paul_Desmond/bfd/syms.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT syms.lo -MD -MP -MF .deps/syms.Tpo -c ../../Paul_Desmond/bfd/syms.c -o syms.o
mv -f .deps/syms.Tpo .deps/syms.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT targets.lo -MD -MP -MF .deps/targets.Tpo -c -o targets.lo -DDEFAULT_VECTOR=bfd_elf32_i386_vec -DSELECT_VECS='&bfd_elf32_i386_vec,&i386linux_vec,&i386pei_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec' -DSELECT_ARCHITECTURES='&bfd_i386_arch' ../../Paul_Desmond/bfd/targets.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT targets.lo -MD -MP -MF .deps/targets.Tpo -c -DDEFAULT_VECTOR=bfd_elf32_i386_vec "-DSELECT_VECS=&bfd_elf32_i386_vec,&i386linux_vec,&i386pei_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec" "-DSELECT_ARCHITECTURES=&bfd_i386_arch" ../../Paul_Desmond/bfd/targets.c -o targets.o
mv -f .deps/targets.Tpo .deps/targets.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c -o hash.lo ../../Paul_Desmond/bfd/hash.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c ../../Paul_Desmond/bfd/hash.c -o hash.o
mv -f .deps/hash.Tpo .deps/hash.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT linker.lo -MD -MP -MF .deps/linker.Tpo -c -o linker.lo ../../Paul_Desmond/bfd/linker.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT linker.lo -MD -MP -MF .deps/linker.Tpo -c ../../Paul_Desmond/bfd/linker.c -o linker.o
mv -f .deps/linker.Tpo .deps/linker.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT srec.lo -MD -MP -MF .deps/srec.Tpo -c -o srec.lo ../../Paul_Desmond/bfd/srec.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT srec.lo -MD -MP -MF .deps/srec.Tpo -c ../../Paul_Desmond/bfd/srec.c -o srec.o
mv -f .deps/srec.Tpo .deps/srec.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT binary.lo -MD -MP -MF .deps/binary.Tpo -c -o binary.lo ../../Paul_Desmond/bfd/binary.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT binary.lo -MD -MP -MF .deps/binary.Tpo -c ../../Paul_Desmond/bfd/binary.c -o binary.o
mv -f .deps/binary.Tpo .deps/binary.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT tekhex.lo -MD -MP -MF .deps/tekhex.Tpo -c -o tekhex.lo ../../Paul_Desmond/bfd/tekhex.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT tekhex.lo -MD -MP -MF .deps/tekhex.Tpo -c ../../Paul_Desmond/bfd/tekhex.c -o tekhex.o
mv -f .deps/tekhex.Tpo .deps/tekhex.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ihex.lo -MD -MP -MF .deps/ihex.Tpo -c -o ihex.lo ../../Paul_Desmond/bfd/ihex.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ihex.lo -MD -MP -MF .deps/ihex.Tpo -c ../../Paul_Desmond/bfd/ihex.c -o ihex.o
mv -f .deps/ihex.Tpo .deps/ihex.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT stabs.lo -MD -MP -MF .deps/stabs.Tpo -c -o stabs.lo ../../Paul_Desmond/bfd/stabs.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT stabs.lo -MD -MP -MF .deps/stabs.Tpo -c ../../Paul_Desmond/bfd/stabs.c -o stabs.o
mv -f .deps/stabs.Tpo .deps/stabs.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT stab-syms.lo -MD -MP -MF .deps/stab-syms.Tpo -c -o stab-syms.lo ../../Paul_Desmond/bfd/stab-syms.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT stab-syms.lo -MD -MP -MF .deps/stab-syms.Tpo -c ../../Paul_Desmond/bfd/stab-syms.c -o stab-syms.o
mv -f .deps/stab-syms.Tpo .deps/stab-syms.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT merge.lo -MD -MP -MF .deps/merge.Tpo -c -o merge.lo ../../Paul_Desmond/bfd/merge.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT merge.lo -MD -MP -MF .deps/merge.Tpo -c ../../Paul_Desmond/bfd/merge.c -o merge.o
mv -f .deps/merge.Tpo .deps/merge.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf2.lo -MD -MP -MF .deps/dwarf2.Tpo -c -o dwarf2.lo -DDEBUGDIR=\"[...]/tschwinge/Paul_Desmond.build.install/lib/debug\" ../../Paul_Desmond/bfd/dwarf2.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf2.lo -MD -MP -MF .deps/dwarf2.Tpo -c -DDEBUGDIR=\"[...]/tschwinge/Paul_Desmond.build.install/lib/debug\" ../../Paul_Desmond/bfd/dwarf2.c -o dwarf2.o
mv -f .deps/dwarf2.Tpo .deps/dwarf2.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT simple.lo -MD -MP -MF .deps/simple.Tpo -c -o simple.lo ../../Paul_Desmond/bfd/simple.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT simple.lo -MD -MP -MF .deps/simple.Tpo -c ../../Paul_Desmond/bfd/simple.c -o simple.o
mv -f .deps/simple.Tpo .deps/simple.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT compress.lo -MD -MP -MF .deps/compress.Tpo -c -o compress.lo ../../Paul_Desmond/bfd/compress.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT compress.lo -MD -MP -MF .deps/compress.Tpo -c ../../Paul_Desmond/bfd/compress.c -o compress.o
mv -f .deps/compress.Tpo .deps/compress.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT verilog.lo -MD -MP -MF .deps/verilog.Tpo -c -o verilog.lo ../../Paul_Desmond/bfd/verilog.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT verilog.lo -MD -MP -MF .deps/verilog.Tpo -c ../../Paul_Desmond/bfd/verilog.c -o verilog.o
mv -f .deps/verilog.Tpo .deps/verilog.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf32-i386.lo -MD -MP -MF .deps/elf32-i386.Tpo -c -o elf32-i386.lo ../../Paul_Desmond/bfd/elf32-i386.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf32-i386.lo -MD -MP -MF .deps/elf32-i386.Tpo -c ../../Paul_Desmond/bfd/elf32-i386.c -o elf32-i386.o
mv -f .deps/elf32-i386.Tpo .deps/elf32-i386.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf-ifunc.lo -MD -MP -MF .deps/elf-ifunc.Tpo -c -o elf-ifunc.lo ../../Paul_Desmond/bfd/elf-ifunc.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf-ifunc.lo -MD -MP -MF .deps/elf-ifunc.Tpo -c ../../Paul_Desmond/bfd/elf-ifunc.c -o elf-ifunc.o
mv -f .deps/elf-ifunc.Tpo .deps/elf-ifunc.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf-nacl.lo -MD -MP -MF .deps/elf-nacl.Tpo -c -o elf-nacl.lo ../../Paul_Desmond/bfd/elf-nacl.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf-nacl.lo -MD -MP -MF .deps/elf-nacl.Tpo -c ../../Paul_Desmond/bfd/elf-nacl.c -o elf-nacl.o
mv -f .deps/elf-nacl.Tpo .deps/elf-nacl.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf-vxworks.lo -MD -MP -MF .deps/elf-vxworks.Tpo -c -o elf-vxworks.lo ../../Paul_Desmond/bfd/elf-vxworks.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf-vxworks.lo -MD -MP -MF .deps/elf-vxworks.Tpo -c ../../Paul_Desmond/bfd/elf-vxworks.c -o elf-vxworks.o
mv -f .deps/elf-vxworks.Tpo .deps/elf-vxworks.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf32.lo -MD -MP -MF .deps/elf32.Tpo -c -o elf32.lo ../../Paul_Desmond/bfd/elf32.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf32.lo -MD -MP -MF .deps/elf32.Tpo -c ../../Paul_Desmond/bfd/elf32.c -o elf32.o
mv -f .deps/elf32.Tpo .deps/elf32.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf.lo -MD -MP -MF .deps/elf.Tpo -c -o elf.lo ../../Paul_Desmond/bfd/elf.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf.lo -MD -MP -MF .deps/elf.Tpo -c ../../Paul_Desmond/bfd/elf.c -o elf.o
mv -f .deps/elf.Tpo .deps/elf.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elflink.lo -MD -MP -MF .deps/elflink.Tpo -c -o elflink.lo ../../Paul_Desmond/bfd/elflink.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elflink.lo -MD -MP -MF .deps/elflink.Tpo -c ../../Paul_Desmond/bfd/elflink.c -o elflink.o
mv -f .deps/elflink.Tpo .deps/elflink.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf-attrs.lo -MD -MP -MF .deps/elf-attrs.Tpo -c -o elf-attrs.lo ../../Paul_Desmond/bfd/elf-attrs.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf-attrs.lo -MD -MP -MF .deps/elf-attrs.Tpo -c ../../Paul_Desmond/bfd/elf-attrs.c -o elf-attrs.o
mv -f .deps/elf-attrs.Tpo .deps/elf-attrs.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf-strtab.lo -MD -MP -MF .deps/elf-strtab.Tpo -c -o elf-strtab.lo ../../Paul_Desmond/bfd/elf-strtab.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf-strtab.lo -MD -MP -MF .deps/elf-strtab.Tpo -c ../../Paul_Desmond/bfd/elf-strtab.c -o elf-strtab.o
mv -f .deps/elf-strtab.Tpo .deps/elf-strtab.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf-eh-frame.lo -MD -MP -MF .deps/elf-eh-frame.Tpo -c -o elf-eh-frame.lo ../../Paul_Desmond/bfd/elf-eh-frame.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf-eh-frame.lo -MD -MP -MF .deps/elf-eh-frame.Tpo -c ../../Paul_Desmond/bfd/elf-eh-frame.c -o elf-eh-frame.o
mv -f .deps/elf-eh-frame.Tpo .deps/elf-eh-frame.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c -o dwarf1.lo ../../Paul_Desmond/bfd/dwarf1.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c ../../Paul_Desmond/bfd/dwarf1.c -o dwarf1.o
mv -f .deps/dwarf1.Tpo .deps/dwarf1.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT i386linux.lo -MD -MP -MF .deps/i386linux.Tpo -c -o i386linux.lo ../../Paul_Desmond/bfd/i386linux.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT i386linux.lo -MD -MP -MF .deps/i386linux.Tpo -c ../../Paul_Desmond/bfd/i386linux.c -o i386linux.o
mv -f .deps/i386linux.Tpo .deps/i386linux.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT aout32.lo -MD -MP -MF .deps/aout32.Tpo -c -o aout32.lo ../../Paul_Desmond/bfd/aout32.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT aout32.lo -MD -MP -MF .deps/aout32.Tpo -c ../../Paul_Desmond/bfd/aout32.c -o aout32.o
mv -f .deps/aout32.Tpo .deps/aout32.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT pei-i386.lo -MD -MP -MF .deps/pei-i386.Tpo -c -o pei-i386.lo ../../Paul_Desmond/bfd/pei-i386.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT pei-i386.lo -MD -MP -MF .deps/pei-i386.Tpo -c ../../Paul_Desmond/bfd/pei-i386.c -o pei-i386.o
mv -f .deps/pei-i386.Tpo .deps/pei-i386.Plo
rm -f peigen.c
sed -e s/XX/pe/g < ../../Paul_Desmond/bfd/peXXigen.c > peigen.new
mv -f peigen.new peigen.c
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT peigen.lo -MD -MP -MF .deps/peigen.Tpo -c -o peigen.lo peigen.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT peigen.lo -MD -MP -MF .deps/peigen.Tpo -c peigen.c -o peigen.o
mv -f .deps/peigen.Tpo .deps/peigen.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cofflink.lo -MD -MP -MF .deps/cofflink.Tpo -c -o cofflink.lo ../../Paul_Desmond/bfd/cofflink.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cofflink.lo -MD -MP -MF .deps/cofflink.Tpo -c ../../Paul_Desmond/bfd/cofflink.c -o cofflink.o
mv -f .deps/cofflink.Tpo .deps/cofflink.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf32-gen.lo -MD -MP -MF .deps/elf32-gen.Tpo -c -o elf32-gen.lo ../../Paul_Desmond/bfd/elf32-gen.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elf32-gen.lo -MD -MP -MF .deps/elf32-gen.Tpo -c ../../Paul_Desmond/bfd/elf32-gen.c -o elf32-gen.o
mv -f .deps/elf32-gen.Tpo .deps/elf32-gen.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cpu-i386.lo -MD -MP -MF .deps/cpu-i386.Tpo -c -o cpu-i386.lo ../../Paul_Desmond/bfd/cpu-i386.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cpu-i386.lo -MD -MP -MF .deps/cpu-i386.Tpo -c ../../Paul_Desmond/bfd/cpu-i386.c -o cpu-i386.o
mv -f .deps/cpu-i386.Tpo .deps/cpu-i386.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE   -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include  -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT trad-core.lo -MD -MP -MF .deps/trad-core.Tpo -c -o trad-core.lo ../../Paul_Desmond/bfd/trad-core.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/bfd -DTRAD_CORE -I. -I../../Paul_Desmond/bfd -I../../Paul_Desmond/bfd/../include -DHAVE_bfd_elf32_i386_vec -DHAVE_i386linux_vec -DHAVE_i386pei_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Paul_Desmond.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT trad-core.lo -MD -MP -MF .deps/trad-core.Tpo -c ../../Paul_Desmond/bfd/trad-core.c -o trad-core.o
mv -f .deps/trad-core.Tpo .deps/trad-core.Plo
rm -f tofiles
f=""; \
	for i in elf32-i386.lo elf-ifunc.lo elf-nacl.lo elf-vxworks.lo elf32.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo i386linux.lo aout32.lo pei-i386.lo peigen.lo cofflink.lo elf32-gen.lo cpu-i386.lo trad-core.lo  ; do \
	  case " $f " in \
	    *" $i "*) ;; \
	    *) f="$f $i" ;; \
	  esac ; \
	done ; \
	echo $f > tofiles
/bin/dash ../../Paul_Desmond/bfd/../move-if-change tofiles ofiles
touch stamp-ofiles
/bin/dash ./libtool --tag=CC   --mode=link gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2  -release `cat libtool-soversion`  -static-libstdc++ -static-libgcc  -o libbfd.la -rpath [...]/tschwinge/Paul_Desmond.build.install/lib archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo `cat ofiles`   -lz 
libtool: link: ar rc .libs/libbfd.a  archive.o archures.o bfd.o bfdio.o bfdwin.o cache.o coffgen.o corefile.o format.o init.o libbfd.o opncls.o reloc.o section.o syms.o targets.o hash.o linker.o srec.o binary.o tekhex.o ihex.o stabs.o stab-syms.o merge.o dwarf2.o simple.o compress.o verilog.o elf32-i386.o elf-ifunc.o elf-nacl.o elf-vxworks.o elf32.o elf.o elflink.o elf-attrs.o elf-strtab.o elf-eh-frame.o dwarf1.o i386linux.o aout32.o pei-i386.o peigen.o cofflink.o elf32-gen.o cpu-i386.o trad-core.o
libtool: link: ranlib .libs/libbfd.a
libtool: link: ( cd ".libs" && rm -f "libbfd.la" && ln -s "../libbfd.la" "libbfd.la" )
libtooldir=`/bin/dash ./libtool --config | sed -n -e 's/^objdir=//p'`; \
	if [ -f $libtooldir/libbfd.a ]; then \
	  cp $libtooldir/libbfd.a libbfd.tmp; \
	  ranlib libbfd.tmp; \
	  /bin/dash ../../Paul_Desmond/bfd/../move-if-change libbfd.tmp libbfd.a; \
	else true; fi
touch stamp-lib
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd'
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd'
make[2]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd'
mkdir -p -- ./opcodes
Configuring in ./opcodes
configure: creating cache ./config.cache
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for i686-pc-linux-gnu-gcc... gcc-4.8
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc-4.8 accepts -g... yes
checking for gcc-4.8 option to accept ISO C89... none needed
checking for library containing strerror... none required
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking dependency style of gcc-4.8... gcc3
checking for i686-pc-linux-gnu-gcc... (cached) gcc-4.8
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc-4.8 accepts -g... (cached) yes
checking for gcc-4.8 option to accept ISO C89... (cached) none needed
checking how to run the C preprocessor... gcc-4.8 -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 i686-pc-linux-gnu-ar... ar
checking for i686-pc-linux-gnu-ranlib... ranlib
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by gcc-4.8... ld
checking if the linker (ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 805306365
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... no
checking for ld option to reload object files... -r
checking for i686-pc-linux-gnu-objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for i686-pc-linux-gnu-ar... (cached) ar
checking for i686-pc-linux-gnu-strip... no
checking for strip... strip
checking for i686-pc-linux-gnu-ranlib... (cached) ranlib
checking command to parse nm output from gcc-4.8 object... ok
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc-4.8 supports -fno-rtti -fno-exceptions... no
checking for gcc-4.8 option to produce PIC... -fPIC -DPIC
checking if gcc-4.8 PIC flag -fPIC -DPIC works... yes
checking if gcc-4.8 static flag -static works... yes
checking if gcc-4.8 supports -c -o file.o... yes
checking if gcc-4.8 supports -c -o file.o... (cached) yes
checking whether the gcc-4.8 linker (ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror
checking whether gcc-4.8 supports -Wmissing-field-initializers... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether to install libbfd... yes
checking whether NLS is requested... yes
checking for catalogs to be installed...  da de es fi fr ga id it nl pt_BR ro sv tr uk vi zh_CN
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for stdlib.h... (cached) yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking whether string.h and strings.h may both be included... yes
checking whether basename is declared... yes
checking whether stpcpy is declared... yes
checking linker --as-needed support... yes
checking for cos in -lm... yes
configure: updating cache ./config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating po/Makefile.in
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing default-1 commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
make[2]: Entering directory `[...]/tschwinge/Paul_Desmond.build/opcodes'
make  all-recursive
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/opcodes'
Making all in .
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/opcodes'
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/opcodes  -I. -I../../Paul_Desmond/opcodes -I../bfd -I../../Paul_Desmond/opcodes/../include -I../../Paul_Desmond/opcodes/../bfd    -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dis-buf.lo -MD -MP -MF .deps/dis-buf.Tpo -c -o dis-buf.lo ../../Paul_Desmond/opcodes/dis-buf.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/opcodes -I. -I../../Paul_Desmond/opcodes -I../bfd -I../../Paul_Desmond/opcodes/../include -I../../Paul_Desmond/opcodes/../bfd -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dis-buf.lo -MD -MP -MF .deps/dis-buf.Tpo -c ../../Paul_Desmond/opcodes/dis-buf.c -o dis-buf.o
mv -f .deps/dis-buf.Tpo .deps/dis-buf.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/opcodes  -I. -I../../Paul_Desmond/opcodes -I../bfd -I../../Paul_Desmond/opcodes/../include -I../../Paul_Desmond/opcodes/../bfd    -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT disassemble.lo -MD -MP -MF .deps/disassemble.Tpo -c -o disassemble.lo  -DARCH_i386 ../../Paul_Desmond/opcodes/disassemble.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/opcodes -I. -I../../Paul_Desmond/opcodes -I../bfd -I../../Paul_Desmond/opcodes/../include -I../../Paul_Desmond/opcodes/../bfd -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT disassemble.lo -MD -MP -MF .deps/disassemble.Tpo -c -DARCH_i386 ../../Paul_Desmond/opcodes/disassemble.c -o disassemble.o
mv -f .deps/disassemble.Tpo .deps/disassemble.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/opcodes  -I. -I../../Paul_Desmond/opcodes -I../bfd -I../../Paul_Desmond/opcodes/../include -I../../Paul_Desmond/opcodes/../bfd    -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dis-init.lo -MD -MP -MF .deps/dis-init.Tpo -c -o dis-init.lo ../../Paul_Desmond/opcodes/dis-init.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/opcodes -I. -I../../Paul_Desmond/opcodes -I../bfd -I../../Paul_Desmond/opcodes/../include -I../../Paul_Desmond/opcodes/../bfd -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dis-init.lo -MD -MP -MF .deps/dis-init.Tpo -c ../../Paul_Desmond/opcodes/dis-init.c -o dis-init.o
mv -f .deps/dis-init.Tpo .deps/dis-init.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/opcodes  -I. -I../../Paul_Desmond/opcodes -I../bfd -I../../Paul_Desmond/opcodes/../include -I../../Paul_Desmond/opcodes/../bfd    -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT i386-dis.lo -MD -MP -MF .deps/i386-dis.Tpo -c -o i386-dis.lo ../../Paul_Desmond/opcodes/i386-dis.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/opcodes -I. -I../../Paul_Desmond/opcodes -I../bfd -I../../Paul_Desmond/opcodes/../include -I../../Paul_Desmond/opcodes/../bfd -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT i386-dis.lo -MD -MP -MF .deps/i386-dis.Tpo -c ../../Paul_Desmond/opcodes/i386-dis.c -o i386-dis.o
mv -f .deps/i386-dis.Tpo .deps/i386-dis.Plo
/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/opcodes  -I. -I../../Paul_Desmond/opcodes -I../bfd -I../../Paul_Desmond/opcodes/../include -I../../Paul_Desmond/opcodes/../bfd    -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT i386-opc.lo -MD -MP -MF .deps/i386-opc.Tpo -c -o i386-opc.lo ../../Paul_Desmond/opcodes/i386-opc.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/opcodes -I. -I../../Paul_Desmond/opcodes -I../bfd -I../../Paul_Desmond/opcodes/../include -I../../Paul_Desmond/opcodes/../bfd -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT i386-opc.lo -MD -MP -MF .deps/i386-opc.Tpo -c ../../Paul_Desmond/opcodes/i386-opc.c -o i386-opc.o
mv -f .deps/i386-opc.Tpo .deps/i386-opc.Plo
/bin/dash ./libtool --tag=CC   --mode=link gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2  -release `cat ../bfd/libtool-soversion`  -static-libstdc++ -static-libgcc  -o libopcodes.la -rpath [...]/tschwinge/Paul_Desmond.build.install/lib dis-buf.lo disassemble.lo dis-init.lo i386-dis.lo i386-opc.lo  
libtool: link: ar rc .libs/libopcodes.a  dis-buf.o disassemble.o dis-init.o i386-dis.o i386-opc.o
libtool: link: ranlib .libs/libopcodes.a
libtool: link: ( cd ".libs" && rm -f "libopcodes.la" && ln -s "../libopcodes.la" "libopcodes.la" )
libtooldir=`/bin/dash ./libtool --config | sed -n -e 's/^objdir=//p'`; \
	if [ -f $libtooldir/libopcodes.a ]; then \
	  cp $libtooldir/libopcodes.a libopcodes.tmp; \
	  ranlib libopcodes.tmp; \
	  /bin/dash ../../Paul_Desmond/opcodes/../move-if-change libopcodes.tmp libopcodes.a; \
	else true; fi
touch stamp-lib
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/opcodes'
Making all in po
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/opcodes/po'
file=`echo ../../../Paul_Desmond/opcodes/po/da | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/opcodes/po/da.po
file=`echo ../../../Paul_Desmond/opcodes/po/de | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/opcodes/po/de.po
file=`echo ../../../Paul_Desmond/opcodes/po/es | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/opcodes/po/es.po
file=`echo ../../../Paul_Desmond/opcodes/po/fi | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/opcodes/po/fi.po
file=`echo ../../../Paul_Desmond/opcodes/po/fr | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/opcodes/po/fr.po
file=`echo ../../../Paul_Desmond/opcodes/po/ga | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/opcodes/po/ga.po
file=`echo ../../../Paul_Desmond/opcodes/po/id | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/opcodes/po/id.po
file=`echo ../../../Paul_Desmond/opcodes/po/it | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/opcodes/po/it.po
file=`echo ../../../Paul_Desmond/opcodes/po/nl | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/opcodes/po/nl.po
file=`echo ../../../Paul_Desmond/opcodes/po/pt_BR | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/opcodes/po/pt_BR.po
file=`echo ../../../Paul_Desmond/opcodes/po/ro | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/opcodes/po/ro.po
file=`echo ../../../Paul_Desmond/opcodes/po/sv | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/opcodes/po/sv.po
file=`echo ../../../Paul_Desmond/opcodes/po/tr | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/opcodes/po/tr.po
file=`echo ../../../Paul_Desmond/opcodes/po/uk | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/opcodes/po/uk.po
file=`echo ../../../Paul_Desmond/opcodes/po/vi | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/opcodes/po/vi.po
file=`echo ../../../Paul_Desmond/opcodes/po/zh_CN | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/opcodes/po/zh_CN.po
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/opcodes/po'
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/opcodes'
make[2]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/opcodes'
mkdir -p -- ./binutils
Configuring in ./binutils
configure: creating cache ./config.cache
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for i686-pc-linux-gnu-gcc... gcc-4.8
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc-4.8 accepts -g... yes
checking for gcc-4.8 option to accept ISO C89... none needed
checking for library containing strerror... none required
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking dependency style of gcc-4.8... gcc3
checking for i686-pc-linux-gnu-gcc... (cached) gcc-4.8
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc-4.8 accepts -g... (cached) yes
checking for gcc-4.8 option to accept ISO C89... (cached) none needed
checking how to run the C preprocessor... gcc-4.8 -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 special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... 64
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by gcc-4.8... ld
checking if the linker (ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 805306365
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... no
checking for ld option to reload object files... -r
checking for i686-pc-linux-gnu-objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for i686-pc-linux-gnu-ar... ar
checking for i686-pc-linux-gnu-strip... no
checking for strip... strip
checking for i686-pc-linux-gnu-ranlib... ranlib
checking command to parse nm output from gcc-4.8 object... ok
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc-4.8 supports -fno-rtti -fno-exceptions... no
checking for gcc-4.8 option to produce PIC... -fPIC -DPIC
checking if gcc-4.8 PIC flag -fPIC -DPIC works... yes
checking if gcc-4.8 static flag -static works... yes
checking if gcc-4.8 supports -c -o file.o... yes
checking if gcc-4.8 supports -c -o file.o... (cached) yes
checking whether the gcc-4.8 linker (ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror
checking for bison... bison -y
checking for flex... flex
checking lex output file root... lex.yy
checking lex library... -lfl
checking whether yytext is a pointer... yes
checking whether NLS is requested... yes
checking for catalogs to be installed...  bg da es fi fr hr id it ja ro ru rw sk sv tr uk vi zh_CN zh_TW
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking whether to enable maintainer-specific portions of Makefiles... no
checking for i686-pc-linux-gnu-ranlib... (cached) ranlib
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/file.h usability... yes
checking sys/file.h presence... yes
checking for sys/file.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking whether string.h and strings.h may both be included... yes
checking for working alloca.h... yes
checking for alloca... yes
checking for sbrk... yes
checking for utimes... yes
checking for setmode... no
checking for getc_unlocked... yes
checking for strcoll... yes
checking for setlocale... yes
checking for mkstemp... yes
checking for mkdtemp... yes
checking for mbstate_t... yes
checking for library containing frexp... none required
checking for LC_MESSAGES... yes
checking for time_t in time.h... yes
checking for time_t in sys/types.h... yes
checking for a known getopt prototype in unistd.h... yes
checking for utime.h... yes
checking whether environ is declared... yes
checking whether fprintf is declared... yes
checking whether getc_unlocked is declared... yes
checking whether getenv is declared... yes
checking whether sbrk is declared... yes
checking whether snprintf is declared... yes
checking whether stpcpy is declared... yes
checking whether strnlen is declared... yes
checking whether strstr is declared... yes
checking whether vsnprintf is declared... yes
checking for library containing zlibVersion... -lz
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking iconv.h usability... yes
checking iconv.h presence... yes
checking for iconv.h... yes
checking for ld used by GCC... ld
checking if the linker (ld) is GNU ld... yes
checking for shared library run path origin... done
checking for iconv... yes
checking for iconv declaration... install-shextern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
configure: updating cache ./config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating doc/Makefile
config.status: creating po/Makefile.in
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing default-1 commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
mkdir -p -- ./gas
Configuring in ./gas
configure: creating cache ./config.cache
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for i686-pc-linux-gnu-gcc... gcc-4.8
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc-4.8 accepts -g... yes
checking for gcc-4.8 option to accept ISO C89... none needed
checking for library containing strerror... none required
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking dependency style of gcc-4.8... gcc3
checking for i686-pc-linux-gnu-gcc... (cached) gcc-4.8
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc-4.8 accepts -g... (cached) yes
checking for gcc-4.8 option to accept ISO C89... (cached) none needed
checking how to run the C preprocessor... gcc-4.8 -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 special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... 64
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by gcc-4.8... ld
checking if the linker (ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 805306365
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... no
checking for ld option to reload object files... -r
checking for i686-pc-linux-gnu-objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for i686-pc-linux-gnu-ar... ar
checking for i686-pc-linux-gnu-strip... no
checking for strip... strip
checking for i686-pc-linux-gnu-ranlib... ranlib
checking command to parse nm output from gcc-4.8 object... ok
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc-4.8 supports -fno-rtti -fno-exceptions... no
checking for gcc-4.8 option to produce PIC... -fPIC -DPIC
checking if gcc-4.8 PIC flag -fPIC -DPIC works... yes
checking if gcc-4.8 static flag -static works... yes
checking if gcc-4.8 supports -c -o file.o... yes
checking if gcc-4.8 supports -c -o file.o... (cached) yes
checking whether the gcc-4.8 linker (ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror
checking whether byte ordering is bigendian... no
checking for bison... bison -y
checking for flex... flex
checking lex output file root... lex.yy
checking lex library... -lfl
checking whether yytext is a pointer... yes
checking whether NLS is requested... yes
checking for catalogs to be installed...  es fi fr id ja ru rw tr
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking whether to enable maintainer-specific portions of Makefiles... no
checking for string.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for memory.h... (cached) yes
checking for strings.h... (cached) yes
checking for unistd.h... (cached) yes
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking for sys/types.h... (cached) yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking time.h usability... yes
checking time.h presence... yes
checking for time.h... yes
checking for sys/stat.h... (cached) yes
checking whether string.h and strings.h may both be included... yes
checking whether compiling a cross-assembler... no
checking for working alloca.h... yes
checking for alloca... yes
checking for inline... inline
checking for unlink... yes
checking for sbrk... yes
checking for setlocale... yes
checking for LC_MESSAGES... yes
checking for working assert macro... yes
checking whether declaration is required for errno... no
checking for a known getopt prototype in unistd.h... yes
checking whether declaration is required for environ... no
checking whether declaration is required for ffs... no
checking whether declaration is required for free... no
checking whether declaration is required for malloc... no
checking whether declaration is required for sbrk... no
checking whether declaration is required for strstr... no
checking whether free is declared... yes
checking whether getenv is declared... yes
checking whether malloc is declared... yes
checking whether mempcpy is declared... yes
checking whether realloc is declared... yes
checking whether stpcpy is declared... yes
checking whether strstr is declared... yes
checking whether vsnprintf is declared... yes
checking for library containing zlibVersion... -lz
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking for struct tm.tm_gmtoff in time.h... yes
checking for struct stat.st_mtim.tv_sec in sys/stat.h... yes
checking for struct stat.st_mtim.tv_nsec in sys/stat.h... yes
configure: updating cache ./config.cache
configure: creating ./config.status
config.status: creating .gdbinit
config.status: creating Makefile
config.status: creating doc/Makefile
config.status: creating po/Makefile.in
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing default-1 commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
config.status: executing default commands
make[2]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gas'
make  all-recursive
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gas'
Making all in doc
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gas/doc'
rm -f asconfig.texi
cp ../../../Paul_Desmond/gas/doc/all.texi ./asconfig.texi
chmod u+w ./asconfig.texi
touch as.1
perl ../../../Paul_Desmond/gas/doc/../../etc/texi2pod.pl -I "../../../Paul_Desmond/gas/doc" -I "../../../Paul_Desmond/gas/../libiberty" -I "../../../Paul_Desmond/gas/../bfd/doc" -I ../../bfd/doc -Dman < ../../../Paul_Desmond/gas/doc/as.texinfo > as.pod
(pod2man --center="GNU Development Tools" --release="binutils-2.24.51" --section=1 as.pod | \
	        sed -e '/^.if n .na/d' > as.1.T$$ && \
	        mv -f as.1.T$$ as.1) || \
	        (rm -f as.1.T$$ && exit 1)
rm -f as.pod
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gas/doc'
Making all in po
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gas/po'
file=`echo ../../../Paul_Desmond/gas/po/es | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gas/po/es.po
file=`echo ../../../Paul_Desmond/gas/po/fi | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gas/po/fi.po
file=`echo ../../../Paul_Desmond/gas/po/fr | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gas/po/fr.po
file=`echo ../../../Paul_Desmond/gas/po/id | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gas/po/id.po
file=`echo ../../../Paul_Desmond/gas/po/ja | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gas/po/ja.po
file=`echo ../../../Paul_Desmond/gas/po/ru | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gas/po/ru.po
file=`echo ../../../Paul_Desmond/gas/po/rw | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gas/po/rw.po
file=`echo ../../../Paul_Desmond/gas/po/tr | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gas/po/tr.po
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gas/po'
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gas'
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT app.o -MD -MP -MF .deps/app.Tpo -c -o app.o ../../Paul_Desmond/gas/app.c
mv -f .deps/app.Tpo .deps/app.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT as.o -MD -MP -MF .deps/as.Tpo -c -o as.o ../../Paul_Desmond/gas/as.c
mv -f .deps/as.Tpo .deps/as.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT atof-generic.o -MD -MP -MF .deps/atof-generic.Tpo -c -o atof-generic.o ../../Paul_Desmond/gas/atof-generic.c
mv -f .deps/atof-generic.Tpo .deps/atof-generic.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT compress-debug.o -MD -MP -MF .deps/compress-debug.Tpo -c -o compress-debug.o ../../Paul_Desmond/gas/compress-debug.c
mv -f .deps/compress-debug.Tpo .deps/compress-debug.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cond.o -MD -MP -MF .deps/cond.Tpo -c -o cond.o ../../Paul_Desmond/gas/cond.c
mv -f .deps/cond.Tpo .deps/cond.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT depend.o -MD -MP -MF .deps/depend.Tpo -c -o depend.o ../../Paul_Desmond/gas/depend.c
mv -f .deps/depend.Tpo .deps/depend.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf2dbg.o -MD -MP -MF .deps/dwarf2dbg.Tpo -c -o dwarf2dbg.o ../../Paul_Desmond/gas/dwarf2dbg.c
mv -f .deps/dwarf2dbg.Tpo .deps/dwarf2dbg.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dw2gencfi.o -MD -MP -MF .deps/dw2gencfi.Tpo -c -o dw2gencfi.o ../../Paul_Desmond/gas/dw2gencfi.c
mv -f .deps/dw2gencfi.Tpo .deps/dw2gencfi.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ecoff.o -MD -MP -MF .deps/ecoff.Tpo -c -o ecoff.o ../../Paul_Desmond/gas/ecoff.c
mv -f .deps/ecoff.Tpo .deps/ecoff.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ehopt.o -MD -MP -MF .deps/ehopt.Tpo -c -o ehopt.o ../../Paul_Desmond/gas/ehopt.c
mv -f .deps/ehopt.Tpo .deps/ehopt.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT expr.o -MD -MP -MF .deps/expr.Tpo -c -o expr.o ../../Paul_Desmond/gas/expr.c
mv -f .deps/expr.Tpo .deps/expr.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT flonum-copy.o -MD -MP -MF .deps/flonum-copy.Tpo -c -o flonum-copy.o ../../Paul_Desmond/gas/flonum-copy.c
mv -f .deps/flonum-copy.Tpo .deps/flonum-copy.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT flonum-konst.o -MD -MP -MF .deps/flonum-konst.Tpo -c -o flonum-konst.o ../../Paul_Desmond/gas/flonum-konst.c
mv -f .deps/flonum-konst.Tpo .deps/flonum-konst.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT flonum-mult.o -MD -MP -MF .deps/flonum-mult.Tpo -c -o flonum-mult.o ../../Paul_Desmond/gas/flonum-mult.c
mv -f .deps/flonum-mult.Tpo .deps/flonum-mult.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT frags.o -MD -MP -MF .deps/frags.Tpo -c -o frags.o ../../Paul_Desmond/gas/frags.c
mv -f .deps/frags.Tpo .deps/frags.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT hash.o -MD -MP -MF .deps/hash.Tpo -c -o hash.o ../../Paul_Desmond/gas/hash.c
mv -f .deps/hash.Tpo .deps/hash.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT input-file.o -MD -MP -MF .deps/input-file.Tpo -c -o input-file.o ../../Paul_Desmond/gas/input-file.c
mv -f .deps/input-file.Tpo .deps/input-file.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT input-scrub.o -MD -MP -MF .deps/input-scrub.Tpo -c -o input-scrub.o ../../Paul_Desmond/gas/input-scrub.c
mv -f .deps/input-scrub.Tpo .deps/input-scrub.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT listing.o -MD -MP -MF .deps/listing.Tpo -c -o listing.o ../../Paul_Desmond/gas/listing.c
mv -f .deps/listing.Tpo .deps/listing.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT literal.o -MD -MP -MF .deps/literal.Tpo -c -o literal.o ../../Paul_Desmond/gas/literal.c
mv -f .deps/literal.Tpo .deps/literal.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT macro.o -MD -MP -MF .deps/macro.Tpo -c -o macro.o ../../Paul_Desmond/gas/macro.c
mv -f .deps/macro.Tpo .deps/macro.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT messages.o -MD -MP -MF .deps/messages.Tpo -c -o messages.o ../../Paul_Desmond/gas/messages.c
mv -f .deps/messages.Tpo .deps/messages.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT output-file.o -MD -MP -MF .deps/output-file.Tpo -c -o output-file.o ../../Paul_Desmond/gas/output-file.c
mv -f .deps/output-file.Tpo .deps/output-file.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT read.o -MD -MP -MF .deps/read.Tpo -c -o read.o ../../Paul_Desmond/gas/read.c
mv -f .deps/read.Tpo .deps/read.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT remap.o -MD -MP -MF .deps/remap.Tpo -c -o remap.o ../../Paul_Desmond/gas/remap.c
mv -f .deps/remap.Tpo .deps/remap.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT sb.o -MD -MP -MF .deps/sb.Tpo -c -o sb.o ../../Paul_Desmond/gas/sb.c
mv -f .deps/sb.Tpo .deps/sb.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT stabs.o -MD -MP -MF .deps/stabs.Tpo -c -o stabs.o ../../Paul_Desmond/gas/stabs.c
mv -f .deps/stabs.Tpo .deps/stabs.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT subsegs.o -MD -MP -MF .deps/subsegs.Tpo -c -o subsegs.o ../../Paul_Desmond/gas/subsegs.c
mv -f .deps/subsegs.Tpo .deps/subsegs.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT symbols.o -MD -MP -MF .deps/symbols.Tpo -c -o symbols.o ../../Paul_Desmond/gas/symbols.c
mv -f .deps/symbols.Tpo .deps/symbols.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT write.o -MD -MP -MF .deps/write.Tpo -c -o write.o ../../Paul_Desmond/gas/write.c
mv -f .deps/write.Tpo .deps/write.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT tc-i386.o -MD -MP -MF .deps/tc-i386.Tpo -c -o tc-i386.o `test -f 'config/tc-i386.c' || echo '../../Paul_Desmond/gas/'`config/tc-i386.c
mv -f .deps/tc-i386.Tpo .deps/tc-i386.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT obj-elf.o -MD -MP -MF .deps/obj-elf.Tpo -c -o obj-elf.o `test -f 'config/obj-elf.c' || echo '../../Paul_Desmond/gas/'`config/obj-elf.c
mv -f .deps/obj-elf.Tpo .deps/obj-elf.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gas  -I. -I../../Paul_Desmond/gas -I../bfd -I../../Paul_Desmond/gas/config -I../../Paul_Desmond/gas/../include -I../../Paul_Desmond/gas/.. -I../../Paul_Desmond/gas/../bfd -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT atof-ieee.o -MD -MP -MF .deps/atof-ieee.Tpo -c -o atof-ieee.o `test -f 'config/atof-ieee.c' || echo '../../Paul_Desmond/gas/'`config/atof-ieee.c
mv -f .deps/atof-ieee.Tpo .deps/atof-ieee.Po
/bin/dash ./libtool --tag=CC   --mode=link gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2  -static-libstdc++ -static-libgcc  -o as-new app.o as.o atof-generic.o compress-debug.o cond.o depend.o dwarf2dbg.o dw2gencfi.o ecoff.o ehopt.o expr.o flonum-copy.o flonum-konst.o flonum-mult.o frags.o hash.o input-file.o input-scrub.o listing.o literal.o macro.o messages.o output-file.o read.o remap.o sb.o stabs.o subsegs.o symbols.o write.o tc-i386.o obj-elf.o atof-ieee.o  ../opcodes/libopcodes.la ../bfd/libbfd.la ../libiberty/libiberty.a   -lz 
libtool: link: gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -static-libstdc++ -static-libgcc -o as-new app.o as.o atof-generic.o compress-debug.o cond.o depend.o dwarf2dbg.o dw2gencfi.o ecoff.o ehopt.o expr.o flonum-copy.o flonum-konst.o flonum-mult.o frags.o hash.o input-file.o input-scrub.o listing.o literal.o macro.o messages.o output-file.o read.o remap.o sb.o stabs.o subsegs.o symbols.o write.o tc-i386.o obj-elf.o atof-ieee.o  ../opcodes/.libs/libopcodes.a ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gas'
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gas'
make[2]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gas'
make[2]: Entering directory `[...]/tschwinge/Paul_Desmond.build/binutils'
/bin/dash ../../Paul_Desmond/binutils/../ylwrap ../../Paul_Desmond/binutils/arparse.y y.tab.c arparse.c y.tab.h arparse.h y.output arparse.output -- bison -y -d 
updating arparse.h
/bin/dash ../../Paul_Desmond/binutils/../ylwrap ../../Paul_Desmond/binutils/sysinfo.y y.tab.c sysinfo.c y.tab.h sysinfo.h y.output sysinfo.output -- bison -y -d 
conflicts: 1 shift/reduce
updating sysinfo.h
if [ -r sysinfo.c ]; then \
	  gcc-4.8 -c -I. -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -Wno-error sysinfo.c ; \
	else \
	  gcc-4.8 -c -I. -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -Wno-error ../../Paul_Desmond/binutils/sysinfo.c ; \
	fi
/bin/dash ../../Paul_Desmond/binutils/../ylwrap ../../Paul_Desmond/binutils/syslex.l lex.yy.c syslex.c -- flex  
gcc-4.8 -c -I. -I../../Paul_Desmond/binutils -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -Wno-error ../../Paul_Desmond/binutils/syslex_wrap.c
gcc-4.8 -g -O2  -o sysinfo sysinfo.o syslex_wrap.o
./sysinfo -d <../../Paul_Desmond/binutils/sysroff.info >sysroff.h
/bin/dash ../../Paul_Desmond/binutils/../ylwrap ../../Paul_Desmond/binutils/defparse.y y.tab.c defparse.c y.tab.h defparse.h y.output defparse.output -- bison -y -d 
conflicts: 27 shift/reduce
updating defparse.h
/bin/dash ../../Paul_Desmond/binutils/../ylwrap ../../Paul_Desmond/binutils/rcparse.y y.tab.c rcparse.c y.tab.h rcparse.h y.output rcparse.output -- bison -y -d 
conflicts: 58 shift/reduce, 10 reduce/reduce
updating rcparse.h
/bin/dash ../../Paul_Desmond/binutils/../ylwrap ../../Paul_Desmond/binutils/mcparse.y y.tab.c mcparse.c y.tab.h mcparse.h y.output mcparse.output -- bison -y -d 
conflicts: 1 shift/reduce
updating mcparse.h
Making info in doc
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/binutils/doc'
restore=: && backupdir=".am$$" && \
	rm -rf $backupdir && mkdir $backupdir && \
	if (makeinfo --split-size=5000000 --split-size=5000000 --version) >/dev/null 2>&1; then \
	  for f in binutils.info binutils.info-[0-9] binutils.info-[0-9][0-9] binutils.i[0-9] binutils.i[0-9][0-9]; do \
	    if test -f $f; then mv $f $backupdir; restore=mv; else :; fi; \
	  done; \
	else :; fi && \
	if makeinfo --split-size=5000000 --split-size=5000000 -I "../../../Paul_Desmond/binutils/doc" -I "../../../Paul_Desmond/binutils/../libiberty" -I "../../../Paul_Desmond/binutils/../bfd/doc" -I ../../bfd/doc  -I ../../../Paul_Desmond/binutils/doc \
	 -o binutils.info `test -f 'binutils.texi' || echo '../../../Paul_Desmond/binutils/doc/'`binutils.texi; \
	then \
	  rc=0; \
	else \
	  rc=$?; \
	  $restore $backupdir/* `echo "./binutils.info" | sed 's|[^/]*$||'`; \
	fi; \
	rm -rf $backupdir; exit $rc
touch addr2line.1
perl ../../../Paul_Desmond/binutils/../etc/texi2pod.pl -I "../../../Paul_Desmond/binutils/doc" -I "../../../Paul_Desmond/binutils/../libiberty" -I "../../../Paul_Desmond/binutils/../bfd/doc" -I ../../bfd/doc -Dman -Daddr2line < ../../../Paul_Desmond/binutils/doc/binutils.texi > addr2line.pod
(pod2man --center="GNU Development Tools" --release="binutils-2.24.51" --section=1 addr2line.pod | sed -e '/^.if n .na/d' > addr2line.1.T$$ && \
		mv -f addr2line.1.T$$ addr2line.1) || (rm -f addr2line.1.T$$ && exit 1)
rm -f addr2line.pod
touch ar.1
perl ../../../Paul_Desmond/binutils/../etc/texi2pod.pl -I "../../../Paul_Desmond/binutils/doc" -I "../../../Paul_Desmond/binutils/../libiberty" -I "../../../Paul_Desmond/binutils/../bfd/doc" -I ../../bfd/doc -Dman -Dar < ../../../Paul_Desmond/binutils/doc/binutils.texi > ar.pod
(pod2man --center="GNU Development Tools" --release="binutils-2.24.51" --section=1 ar.pod | sed -e '/^.if n .na/d' > ar.1.T$$ && \
		mv -f ar.1.T$$ ar.1) || (rm -f ar.1.T$$ && exit 1)
rm -f ar.pod
touch dlltool.1
perl ../../../Paul_Desmond/binutils/../etc/texi2pod.pl -I "../../../Paul_Desmond/binutils/doc" -I "../../../Paul_Desmond/binutils/../libiberty" -I "../../../Paul_Desmond/binutils/../bfd/doc" -I ../../bfd/doc -Dman -Ddlltool < ../../../Paul_Desmond/binutils/doc/binutils.texi > dlltool.pod
(pod2man --center="GNU Development Tools" --release="binutils-2.24.51" --section=1 dlltool.pod | sed -e '/^.if n .na/d' > dlltool.1.T$$ && \
		mv -f dlltool.1.T$$ dlltool.1) || (rm -f dlltool.1.T$$ && exit 1)
rm -f dlltool.pod
touch nlmconv.1
perl ../../../Paul_Desmond/binutils/../etc/texi2pod.pl -I "../../../Paul_Desmond/binutils/doc" -I "../../../Paul_Desmond/binutils/../libiberty" -I "../../../Paul_Desmond/binutils/../bfd/doc" -I ../../bfd/doc -Dman -Dnlmconv < ../../../Paul_Desmond/binutils/doc/binutils.texi > nlmconv.pod
(pod2man --center="GNU Development Tools" --release="binutils-2.24.51" --section=1 nlmconv.pod | sed -e '/^.if n .na/d' > nlmconv.1.T$$ && \
		mv -f nlmconv.1.T$$ nlmconv.1) || (rm -f nlmconv.1.T$$ && exit 1)
rm -f nlmconv.pod
touch nm.1
perl ../../../Paul_Desmond/binutils/../etc/texi2pod.pl -I "../../../Paul_Desmond/binutils/doc" -I "../../../Paul_Desmond/binutils/../libiberty" -I "../../../Paul_Desmond/binutils/../bfd/doc" -I ../../bfd/doc -Dman -Dnm < ../../../Paul_Desmond/binutils/doc/binutils.texi > nm.pod
(pod2man --center="GNU Development Tools" --release="binutils-2.24.51" --section=1 nm.pod | sed -e '/^.if n .na/d' > nm.1.T$$ && \
		mv -f nm.1.T$$ nm.1) || (rm -f nm.1.T$$ && exit 1)
rm -f nm.pod
touch objcopy.1
perl ../../../Paul_Desmond/binutils/../etc/texi2pod.pl -I "../../../Paul_Desmond/binutils/doc" -I "../../../Paul_Desmond/binutils/../libiberty" -I "../../../Paul_Desmond/binutils/../bfd/doc" -I ../../bfd/doc -Dman -Dobjcopy < ../../../Paul_Desmond/binutils/doc/binutils.texi > objcopy.pod
(pod2man --center="GNU Development Tools" --release="binutils-2.24.51" --section=1 objcopy.pod | sed -e '/^.if n .na/d' > objcopy.1.T$$ && \
		mv -f objcopy.1.T$$ objcopy.1) || (rm -f objcopy.1.T$$ && exit 1)
rm -f objcopy.pod
touch objdump.1
perl ../../../Paul_Desmond/binutils/../etc/texi2pod.pl -I "../../../Paul_Desmond/binutils/doc" -I "../../../Paul_Desmond/binutils/../libiberty" -I "../../../Paul_Desmond/binutils/../bfd/doc" -I ../../bfd/doc -Dman -Dobjdump < ../../../Paul_Desmond/binutils/doc/binutils.texi > objdump.pod
(pod2man --center="GNU Development Tools" --release="binutils-2.24.51" --section=1 objdump.pod | sed -e '/^.if n .na/d' > objdump.1.T$$ && \
		mv -f objdump.1.T$$ objdump.1) || (rm -f objdump.1.T$$ && exit 1)
rm -f objdump.pod
touch ranlib.1
perl ../../../Paul_Desmond/binutils/../etc/texi2pod.pl -I "../../../Paul_Desmond/binutils/doc" -I "../../../Paul_Desmond/binutils/../libiberty" -I "../../../Paul_Desmond/binutils/../bfd/doc" -I ../../bfd/doc -Dman -Dranlib < ../../../Paul_Desmond/binutils/doc/binutils.texi > ranlib.pod
(pod2man --center="GNU Development Tools" --release="binutils-2.24.51" --section=1 ranlib.pod | sed -e '/^.if n .na/d' > ranlib.1.T$$ && \
		mv -f ranlib.1.T$$ ranlib.1) || (rm -f ranlib.1.T$$ && exit 1)
rm -f ranlib.pod
touch readelf.1
perl ../../../Paul_Desmond/binutils/../etc/texi2pod.pl -I "../../../Paul_Desmond/binutils/doc" -I "../../../Paul_Desmond/binutils/../libiberty" -I "../../../Paul_Desmond/binutils/../bfd/doc" -I ../../bfd/doc -Dman -Dreadelf < ../../../Paul_Desmond/binutils/doc/binutils.texi > readelf.pod
(pod2man --center="GNU Development Tools" --release="binutils-2.24.51" --section=1 readelf.pod | sed -e '/^.if n .na/d' > readelf.1.T$$ && \
		mv -f readelf.1.T$$ readelf.1) || (rm -f readelf.1.T$$ && exit 1)
rm -f readelf.pod
touch size.1
perl ../../../Paul_Desmond/binutils/../etc/texi2pod.pl -I "../../../Paul_Desmond/binutils/doc" -I "../../../Paul_Desmond/binutils/../libiberty" -I "../../../Paul_Desmond/binutils/../bfd/doc" -I ../../bfd/doc -Dman -Dsize < ../../../Paul_Desmond/binutils/doc/binutils.texi > size.pod
(pod2man --center="GNU Development Tools" --release="binutils-2.24.51" --section=1 size.pod | sed -e '/^.if n .na/d' > size.1.T$$ && \
		mv -f size.1.T$$ size.1) || (rm -f size.1.T$$ && exit 1)
rm -f size.pod
touch strings.1
perl ../../../Paul_Desmond/binutils/../etc/texi2pod.pl -I "../../../Paul_Desmond/binutils/doc" -I "../../../Paul_Desmond/binutils/../libiberty" -I "../../../Paul_Desmond/binutils/../bfd/doc" -I ../../bfd/doc -Dman -Dstrings < ../../../Paul_Desmond/binutils/doc/binutils.texi > strings.pod
(pod2man --center="GNU Development Tools" --release="binutils-2.24.51" --section=1 strings.pod | sed -e '/^.if n .na/d' > strings.1.T$$ && \
		mv -f strings.1.T$$ strings.1) || (rm -f strings.1.T$$ && exit 1)
rm -f strings.pod
touch strip.1
perl ../../../Paul_Desmond/binutils/../etc/texi2pod.pl -I "../../../Paul_Desmond/binutils/doc" -I "../../../Paul_Desmond/binutils/../libiberty" -I "../../../Paul_Desmond/binutils/../bfd/doc" -I ../../bfd/doc -Dman -Dstrip < ../../../Paul_Desmond/binutils/doc/binutils.texi > strip.pod
(pod2man --center="GNU Development Tools" --release="binutils-2.24.51" --section=1 strip.pod | sed -e '/^.if n .na/d' > strip.1.T$$ && \
		mv -f strip.1.T$$ strip.1) || (rm -f strip.1.T$$ && exit 1)
rm -f strip.pod
touch elfedit.1
perl ../../../Paul_Desmond/binutils/../etc/texi2pod.pl -I "../../../Paul_Desmond/binutils/doc" -I "../../../Paul_Desmond/binutils/../libiberty" -I "../../../Paul_Desmond/binutils/../bfd/doc" -I ../../bfd/doc -Dman -Delfedit < ../../../Paul_Desmond/binutils/doc/binutils.texi > elfedit.pod
(pod2man --center="GNU Development Tools" --release="binutils-2.24.51" --section=1 elfedit.pod | sed -e '/^.if n .na/d' > elfedit.1.T$$ && \
		mv -f elfedit.1.T$$ elfedit.1) || (rm -f elfedit.1.T$$ && exit 1)
rm -f elfedit.pod
touch windres.1
perl ../../../Paul_Desmond/binutils/../etc/texi2pod.pl -I "../../../Paul_Desmond/binutils/doc" -I "../../../Paul_Desmond/binutils/../libiberty" -I "../../../Paul_Desmond/binutils/../bfd/doc" -I ../../bfd/doc -Dman -Dwindres < ../../../Paul_Desmond/binutils/doc/binutils.texi > windres.pod
(pod2man --center="GNU Development Tools" --release="binutils-2.24.51" --section=1 windres.pod | sed -e '/^.if n .na/d' > windres.1.T$$ && \
		mv -f windres.1.T$$ windres.1) || (rm -f windres.1.T$$ && exit 1)
rm -f windres.pod
touch windmc.1
perl ../../../Paul_Desmond/binutils/../etc/texi2pod.pl -I "../../../Paul_Desmond/binutils/doc" -I "../../../Paul_Desmond/binutils/../libiberty" -I "../../../Paul_Desmond/binutils/../bfd/doc" -I ../../bfd/doc -Dman -Dwindmc < ../../../Paul_Desmond/binutils/doc/binutils.texi > windmc.pod
(pod2man --center="GNU Development Tools" --release="binutils-2.24.51" --section=1 windmc.pod | sed -e '/^.if n .na/d' > windmc.1.T$$ && \
		mv -f windmc.1.T$$ windmc.1) || (rm -f windmc.1.T$$ && exit 1)
rm -f windmc.pod
touch cxxfilt.man
perl ../../../Paul_Desmond/binutils/../etc/texi2pod.pl -I "../../../Paul_Desmond/binutils/doc" -I "../../../Paul_Desmond/binutils/../libiberty" -I "../../../Paul_Desmond/binutils/../bfd/doc" -I ../../bfd/doc -Dman -Dcxxfilt < ../../../Paul_Desmond/binutils/doc/binutils.texi > c++filt.pod
(pod2man --center="GNU Development Tools" --release="binutils-2.24.51" --section=1 c++filt.pod | sed -e '/^.if n .na/d' > cxxfilt.man.T$$ && \
		mv -f cxxfilt.man.T$$ cxxfilt.man) || (rm -f cxxfilt.man.T$$ && exit 1)
rm -f c++filt.pod
if test -f cxxfilt.man; then \
	  man=cxxfilt.man; \
	else \
	  man=../../../Paul_Desmond/binutils/doc/cxxfilt.man; \
	fi; \
	sed -e 's/@PROGRAM@/c++filt/' \
	    -e 's/cxxfilt/c++filt/' < $man \
		> c++filt.1
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/binutils/doc'
Making info in po
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/binutils/po'
make[3]: Nothing to be done for `info'.
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/binutils/po'
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/binutils'
make[3]: Nothing to be done for `info-am'.
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/binutils'
make  all-recursive
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/binutils'
Making all in doc
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/binutils/doc'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/binutils/doc'
Making all in po
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/binutils/po'
file=`echo ../../../Paul_Desmond/binutils/po/bg | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/binutils/po/bg.po
file=`echo ../../../Paul_Desmond/binutils/po/da | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/binutils/po/da.po
file=`echo ../../../Paul_Desmond/binutils/po/es | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/binutils/po/es.po
file=`echo ../../../Paul_Desmond/binutils/po/fi | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/binutils/po/fi.po
file=`echo ../../../Paul_Desmond/binutils/po/fr | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/binutils/po/fr.po
file=`echo ../../../Paul_Desmond/binutils/po/hr | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/binutils/po/hr.po
file=`echo ../../../Paul_Desmond/binutils/po/id | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/binutils/po/id.po
file=`echo ../../../Paul_Desmond/binutils/po/it | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/binutils/po/it.po
file=`echo ../../../Paul_Desmond/binutils/po/ja | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/binutils/po/ja.po
file=`echo ../../../Paul_Desmond/binutils/po/ro | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/binutils/po/ro.po
file=`echo ../../../Paul_Desmond/binutils/po/ru | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/binutils/po/ru.po
file=`echo ../../../Paul_Desmond/binutils/po/rw | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/binutils/po/rw.po
file=`echo ../../../Paul_Desmond/binutils/po/sk | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/binutils/po/sk.po
file=`echo ../../../Paul_Desmond/binutils/po/sv | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/binutils/po/sv.po
file=`echo ../../../Paul_Desmond/binutils/po/tr | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/binutils/po/tr.po
file=`echo ../../../Paul_Desmond/binutils/po/uk | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/binutils/po/uk.po
file=`echo ../../../Paul_Desmond/binutils/po/vi | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/binutils/po/vi.po
file=`echo ../../../Paul_Desmond/binutils/po/zh_CN | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/binutils/po/zh_CN.po
file=`echo ../../../Paul_Desmond/binutils/po/zh_TW | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/binutils/po/zh_TW.po
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/binutils/po'
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/binutils'
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT size.o -MD -MP -MF .deps/size.Tpo -c -o size.o ../../Paul_Desmond/binutils/size.c
mv -f .deps/size.Tpo .deps/size.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT bucomm.o -MD -MP -MF .deps/bucomm.Tpo -c -o bucomm.o ../../Paul_Desmond/binutils/bucomm.c
mv -f .deps/bucomm.Tpo .deps/bucomm.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT version.o -MD -MP -MF .deps/version.Tpo -c -o version.o ../../Paul_Desmond/binutils/version.c
mv -f .deps/version.Tpo .deps/version.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT filemode.o -MD -MP -MF .deps/filemode.Tpo -c -o filemode.o ../../Paul_Desmond/binutils/filemode.c
mv -f .deps/filemode.Tpo .deps/filemode.Po
/bin/dash ./libtool --tag=CC   --mode=link gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2  -static-libstdc++ -static-libgcc  -o size size.o bucomm.o version.o filemode.o ../bfd/libbfd.la ../libiberty/libiberty.a  -lz 
libtool: link: gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -static-libstdc++ -static-libgcc -o size size.o bucomm.o version.o filemode.o  ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT objdump.o -MD -MP -MF .deps/objdump.Tpo -c -o objdump.o -DOBJDUMP_PRIVATE_VECTORS="" ../../Paul_Desmond/binutils/objdump.c
mv -f .deps/objdump.Tpo .deps/objdump.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT dwarf.o -MD -MP -MF .deps/dwarf.Tpo -c -o dwarf.o ../../Paul_Desmond/binutils/dwarf.c
mv -f .deps/dwarf.Tpo .deps/dwarf.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT prdbg.o -MD -MP -MF .deps/prdbg.Tpo -c -o prdbg.o ../../Paul_Desmond/binutils/prdbg.c
mv -f .deps/prdbg.Tpo .deps/prdbg.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT rddbg.o -MD -MP -MF .deps/rddbg.Tpo -c -o rddbg.o ../../Paul_Desmond/binutils/rddbg.c
mv -f .deps/rddbg.Tpo .deps/rddbg.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT debug.o -MD -MP -MF .deps/debug.Tpo -c -o debug.o ../../Paul_Desmond/binutils/debug.c
mv -f .deps/debug.Tpo .deps/debug.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT stabs.o -MD -MP -MF .deps/stabs.Tpo -c -o stabs.o ../../Paul_Desmond/binutils/stabs.c
mv -f .deps/stabs.Tpo .deps/stabs.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ieee.o -MD -MP -MF .deps/ieee.Tpo -c -o ieee.o ../../Paul_Desmond/binutils/ieee.c
mv -f .deps/ieee.Tpo .deps/ieee.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT rdcoff.o -MD -MP -MF .deps/rdcoff.Tpo -c -o rdcoff.o ../../Paul_Desmond/binutils/rdcoff.c
mv -f .deps/rdcoff.Tpo .deps/rdcoff.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elfcomm.o -MD -MP -MF .deps/elfcomm.Tpo -c -o elfcomm.o ../../Paul_Desmond/binutils/elfcomm.c
mv -f .deps/elfcomm.Tpo .deps/elfcomm.Po
/bin/dash ./libtool --tag=CC   --mode=link gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2  -static-libstdc++ -static-libgcc  -o objdump objdump.o dwarf.o prdbg.o rddbg.o debug.o stabs.o ieee.o rdcoff.o bucomm.o version.o filemode.o elfcomm.o  ../opcodes/libopcodes.la ../bfd/libbfd.la ../libiberty/libiberty.a  -lz 
libtool: link: gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -static-libstdc++ -static-libgcc -o objdump objdump.o dwarf.o prdbg.o rddbg.o debug.o stabs.o ieee.o rdcoff.o bucomm.o version.o filemode.o elfcomm.o  ../opcodes/.libs/libopcodes.a ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT arparse.o -MD -MP -MF .deps/arparse.Tpo -c -o arparse.o `test -f arparse.c || echo ../../Paul_Desmond/binutils/`arparse.c -Wno-error
mv -f .deps/arparse.Tpo .deps/arparse.Po
/bin/dash ../../Paul_Desmond/binutils/../ylwrap ../../Paul_Desmond/binutils/arlex.l lex.yy.c arlex.c -- flex  
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT arlex.o -MD -MP -MF .deps/arlex.Tpo -c -o arlex.o `test -f arlex.c || echo ../../Paul_Desmond/binutils/`arlex.c -Wno-error
mv -f .deps/arlex.Tpo .deps/arlex.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ar.o -MD -MP -MF .deps/ar.Tpo -c -o ar.o ../../Paul_Desmond/binutils/ar.c
mv -f .deps/ar.Tpo .deps/ar.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT not-ranlib.o -MD -MP -MF .deps/not-ranlib.Tpo -c -o not-ranlib.o ../../Paul_Desmond/binutils/not-ranlib.c
mv -f .deps/not-ranlib.Tpo .deps/not-ranlib.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT arsup.o -MD -MP -MF .deps/arsup.Tpo -c -o arsup.o ../../Paul_Desmond/binutils/arsup.c
mv -f .deps/arsup.Tpo .deps/arsup.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT rename.o -MD -MP -MF .deps/rename.Tpo -c -o rename.o ../../Paul_Desmond/binutils/rename.c
mv -f .deps/rename.Tpo .deps/rename.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT binemul.o -MD -MP -MF .deps/binemul.Tpo -c -o binemul.o ../../Paul_Desmond/binutils/binemul.c
mv -f .deps/binemul.Tpo .deps/binemul.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT emul_vanilla.o -MD -MP -MF .deps/emul_vanilla.Tpo -c -o emul_vanilla.o ../../Paul_Desmond/binutils/emul_vanilla.c
mv -f .deps/emul_vanilla.Tpo .deps/emul_vanilla.Po
/bin/dash ./libtool --tag=CC   --mode=link gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2  -static-libstdc++ -static-libgcc  -o ar arparse.o arlex.o ar.o not-ranlib.o arsup.o rename.o binemul.o emul_vanilla.o bucomm.o version.o filemode.o ../bfd/libbfd.la ../libiberty/libiberty.a -lfl  -lz 
libtool: link: gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -static-libstdc++ -static-libgcc -o ar arparse.o arlex.o ar.o not-ranlib.o arsup.o rename.o binemul.o emul_vanilla.o bucomm.o version.o filemode.o  ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lfl -lz
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT strings.o -MD -MP -MF .deps/strings.Tpo -c -o strings.o ../../Paul_Desmond/binutils/strings.c
mv -f .deps/strings.Tpo .deps/strings.Po
/bin/dash ./libtool --tag=CC   --mode=link gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2  -static-libstdc++ -static-libgcc  -o strings strings.o bucomm.o version.o filemode.o ../bfd/libbfd.la ../libiberty/libiberty.a  -lz 
libtool: link: gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -static-libstdc++ -static-libgcc -o strings strings.o bucomm.o version.o filemode.o  ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT is-ranlib.o -MD -MP -MF .deps/is-ranlib.Tpo -c -o is-ranlib.o ../../Paul_Desmond/binutils/is-ranlib.c
mv -f .deps/is-ranlib.Tpo .deps/is-ranlib.Po
/bin/dash ./libtool --tag=CC   --mode=link gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2  -static-libstdc++ -static-libgcc  -o ranlib ar.o is-ranlib.o arparse.o arlex.o arsup.o rename.o binemul.o emul_vanilla.o bucomm.o version.o filemode.o ../bfd/libbfd.la ../libiberty/libiberty.a -lfl  -lz 
libtool: link: gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -static-libstdc++ -static-libgcc -o ranlib ar.o is-ranlib.o arparse.o arlex.o arsup.o rename.o binemul.o emul_vanilla.o bucomm.o version.o filemode.o  ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lfl -lz
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT objcopy.o -MD -MP -MF .deps/objcopy.Tpo -c -o objcopy.o ../../Paul_Desmond/binutils/objcopy.c
mv -f .deps/objcopy.Tpo .deps/objcopy.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT not-strip.o -MD -MP -MF .deps/not-strip.Tpo -c -o not-strip.o ../../Paul_Desmond/binutils/not-strip.c
mv -f .deps/not-strip.Tpo .deps/not-strip.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT wrstabs.o -MD -MP -MF .deps/wrstabs.Tpo -c -o wrstabs.o ../../Paul_Desmond/binutils/wrstabs.c
mv -f .deps/wrstabs.Tpo .deps/wrstabs.Po
/bin/dash ./libtool --tag=CC   --mode=link gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2  -static-libstdc++ -static-libgcc  -o objcopy objcopy.o not-strip.o rename.o rddbg.o debug.o stabs.o ieee.o rdcoff.o wrstabs.o bucomm.o version.o filemode.o ../bfd/libbfd.la ../libiberty/libiberty.a  -lz 
libtool: link: gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -static-libstdc++ -static-libgcc -o objcopy objcopy.o not-strip.o rename.o rddbg.o debug.o stabs.o ieee.o rdcoff.o wrstabs.o bucomm.o version.o filemode.o  ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT addr2line.o -MD -MP -MF .deps/addr2line.Tpo -c -o addr2line.o ../../Paul_Desmond/binutils/addr2line.c
mv -f .deps/addr2line.Tpo .deps/addr2line.Po
/bin/dash ./libtool --tag=CC   --mode=link gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2  -static-libstdc++ -static-libgcc  -o addr2line addr2line.o bucomm.o version.o filemode.o ../bfd/libbfd.la ../libiberty/libiberty.a  -lz 
libtool: link: gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -static-libstdc++ -static-libgcc -o addr2line addr2line.o bucomm.o version.o filemode.o  ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT readelf.o -MD -MP -MF .deps/readelf.Tpo -c -o readelf.o ../../Paul_Desmond/binutils/readelf.c
mv -f .deps/readelf.Tpo .deps/readelf.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT unwind-ia64.o -MD -MP -MF .deps/unwind-ia64.Tpo -c -o unwind-ia64.o ../../Paul_Desmond/binutils/unwind-ia64.c
mv -f .deps/unwind-ia64.Tpo .deps/unwind-ia64.Po
/bin/dash ./libtool --tag=CC   --mode=link gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2  -static-libstdc++ -static-libgcc  -o readelf readelf.o version.o unwind-ia64.o dwarf.o elfcomm.o  ../libiberty/libiberty.a -lz 
libtool: link: gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -static-libstdc++ -static-libgcc -o readelf readelf.o version.o unwind-ia64.o dwarf.o elfcomm.o  ../libiberty/libiberty.a -lz
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT elfedit.o -MD -MP -MF .deps/elfedit.Tpo -c -o elfedit.o ../../Paul_Desmond/binutils/elfedit.c
mv -f .deps/elfedit.Tpo .deps/elfedit.Po
/bin/dash ./libtool --tag=CC   --mode=link gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2  -static-libstdc++ -static-libgcc  -o elfedit elfedit.o version.o elfcomm.o  ../libiberty/libiberty.a -lz 
libtool: link: gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -static-libstdc++ -static-libgcc -o elfedit elfedit.o version.o elfcomm.o  ../libiberty/libiberty.a -lz
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT nm.o -MD -MP -MF .deps/nm.Tpo -c -o nm.o ../../Paul_Desmond/binutils/nm.c
mv -f .deps/nm.Tpo .deps/nm.Po
/bin/dash ./libtool --tag=CC   --mode=link gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2  -static-libstdc++ -static-libgcc  -o nm-new nm.o bucomm.o version.o filemode.o ../bfd/libbfd.la ../libiberty/libiberty.a  -lz 
libtool: link: gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -static-libstdc++ -static-libgcc -o nm-new nm.o bucomm.o version.o filemode.o  ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT is-strip.o -MD -MP -MF .deps/is-strip.Tpo -c -o is-strip.o ../../Paul_Desmond/binutils/is-strip.c
mv -f .deps/is-strip.Tpo .deps/is-strip.Po
/bin/dash ./libtool --tag=CC   --mode=link gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2  -static-libstdc++ -static-libgcc  -o strip-new objcopy.o is-strip.o rename.o rddbg.o debug.o stabs.o ieee.o rdcoff.o wrstabs.o bucomm.o version.o filemode.o ../bfd/libbfd.la ../libiberty/libiberty.a  -lz 
libtool: link: gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -static-libstdc++ -static-libgcc -o strip-new objcopy.o is-strip.o rename.o rddbg.o debug.o stabs.o ieee.o rdcoff.o wrstabs.o bucomm.o version.o filemode.o  ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cxxfilt.o -MD -MP -MF .deps/cxxfilt.Tpo -c -o cxxfilt.o ../../Paul_Desmond/binutils/cxxfilt.c
mv -f .deps/cxxfilt.Tpo .deps/cxxfilt.Po
/bin/dash ./libtool --tag=CC   --mode=link gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2  -static-libstdc++ -static-libgcc  -o cxxfilt cxxfilt.o bucomm.o version.o filemode.o ../bfd/libbfd.la ../libiberty/libiberty.a  -lz 
libtool: link: gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -static-libstdc++ -static-libgcc -o cxxfilt cxxfilt.o bucomm.o version.o filemode.o  ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT bfdtest1.o -MD -MP -MF .deps/bfdtest1.Tpo -c -o bfdtest1.o ../../Paul_Desmond/binutils/bfdtest1.c
mv -f .deps/bfdtest1.Tpo .deps/bfdtest1.Po
/bin/dash ./libtool --tag=CC   --mode=link gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2  -static-libstdc++ -static-libgcc  -o bfdtest1 bfdtest1.o ../bfd/libbfd.la ../libiberty/libiberty.a  -lz 
libtool: link: gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -static-libstdc++ -static-libgcc -o bfdtest1 bfdtest1.o  ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/binutils  -I. -I../../Paul_Desmond/binutils -I../bfd -I../../Paul_Desmond/binutils/../bfd -I../../Paul_Desmond/binutils/../include -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -Dbin_dummy_emulation=bin_vanilla_emulation  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT bfdtest2.o -MD -MP -MF .deps/bfdtest2.Tpo -c -o bfdtest2.o ../../Paul_Desmond/binutils/bfdtest2.c
mv -f .deps/bfdtest2.Tpo .deps/bfdtest2.Po
/bin/dash ./libtool --tag=CC   --mode=link gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2  -static-libstdc++ -static-libgcc  -o bfdtest2 bfdtest2.o ../bfd/libbfd.la ../libiberty/libiberty.a  -lz 
libtool: link: gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -static-libstdc++ -static-libgcc -o bfdtest2 bfdtest2.o  ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/binutils'
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/binutils'
make[2]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/binutils'
mkdir -p -- ./etc
Configuring in ./etc
configure: creating cache ./config.cache
checking for a BSD-compatible install... /usr/bin/install -c
configure: updating cache ./config.cache
configure: creating ./config.status
config.status: creating Makefile
make[2]: Entering directory `[...]/tschwinge/Paul_Desmond.build/etc'
for f in standards.info configure.info; do \
	  if test -f ../../Paul_Desmond/etc/`echo $f | sed -e 's/.info$/.texi/'`; then \
	    if make "MAKEINFO=makeinfo --split-size=5000000 --split-size=5000000" $f; then \
	      true; \
	    else \
	      exit 1; \
	    fi; \
	  fi; \
	done
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/etc'
makeinfo --split-size=5000000 --split-size=5000000 --no-split -I../../Paul_Desmond/etc -o standards.info ../../Paul_Desmond/etc/standards.texi
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/etc'
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/etc'
rm -f configdev.txt configbuild.txt
cp ../../Paul_Desmond/etc/configdev.tin configdev.txt
cp ../../Paul_Desmond/etc/configbuild.tin configbuild.txt
makeinfo --split-size=5000000 --split-size=5000000 -I../../Paul_Desmond/etc -o configure.info ../../Paul_Desmond/etc/configure.texi
rm -f configdev.txt configbuild.txt
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/etc'
make[2]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/etc'
mkdir -p -- ./gold
Configuring in ./gold
configure: creating cache ./config.cache
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for i686-pc-linux-gnu-nm... nm
checking for i686-pc-linux-gnu-gcc... gcc-4.8
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc-4.8 accepts -g... yes
checking for gcc-4.8 option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc-4.8... gcc3
checking whether we are using the GNU C++ compiler... yes
checking whether g++-4.8 accepts -g... yes
checking dependency style of g++-4.8... gcc3
checking for bison... bison -y
checking for i686-pc-linux-gnu-ranlib... ranlib
checking whether ln -s works... yes
checking how to run the C preprocessor... gcc-4.8 -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 whether NLS is requested... yes
checking for catalogs to be installed...  es fi id it vi
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking whether byte ordering is bigendian... no
checking whether static linking works... yes
checking for gcc >= 4.1... yes
checking whether gcc-4.8 supports -fmerge-constants... 
checking for thread support... yes
checking for glibc >= 2.4... yes
checking for omp support... yes
checking for glibc >= 2.9... yes
checking for -frandom-seed support... yes
checking for glibc ifunc support... both
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking for chsize... no
checking for mmap... yes
checking for pread... yes
checking for ftruncate... yes
checking for ffsll... yes
checking mremap with MREMAP_MAYMOVE... yes
checking for library containing zlibVersion... -lz
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking whether basename is declared... yes
checking whether ffs is declared... yes
checking whether asprintf is declared... yes
checking whether vasprintf is declared... yes
checking whether snprintf is declared... yes
checking whether vsnprintf is declared... yes
checking whether strverscmp is declared... yes
checking how to run the C++ preprocessor... g++-4.8 -E
checking tr1/unordered_set usability... yes
checking tr1/unordered_set presence... yes
checking for tr1/unordered_set... yes
checking tr1/unordered_map usability... yes
checking tr1/unordered_map presence... yes
checking for tr1/unordered_map... yes
checking ext/hash_map usability... yes
checking ext/hash_map presence... yes
checking for ext/hash_map... yes
checking ext/hash_set usability... yes
checking ext/hash_set presence... yes
checking for ext/hash_set... yes
checking byteswap.h usability... yes
checking byteswap.h presence... yes
checking for byteswap.h... yes
checking windows.h usability... no
checking windows.h presence... no
checking for windows.h... no
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for mallinfo... yes
checking for posix_fallocate... yes
checking for fallocate... yes
checking for readv... yes
checking for sysconf... yes
checking for times... yes
checking whether basename is declared... (cached) yes
checking whether ffs is declared... (cached) yes
checking whether asprintf is declared... (cached) yes
checking whether vasprintf is declared... (cached) yes
checking whether snprintf is declared... (cached) yes
checking whether vsnprintf is declared... (cached) yes
checking whether strverscmp is declared... (cached) yes
checking whether strndup is declared... yes
checking whether memmem is declared... yes
checking whether ::std::tr1::unordered_map::rehash is usable.... yes
checking whether std::tr1::hash<off_t> is defined... yes
checking whether we can use attributes with template functions... yes
checking for struct stat::st_mtim.... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for setlocale... yes
checking for LC_MESSAGES... yes
checking whether to enable maintainer-specific portions of Makefiles... no
configure: updating cache ./config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating testsuite/Makefile
config.status: creating po/Makefile.in
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing default-1 commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
make[2]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gold'
make  all-recursive
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gold'
Making all in po
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gold/po'
file=`echo es | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gold/po/es.po
file=`echo fi | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gold/po/fi.po
file=`echo id | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gold/po/id.po
file=`echo it | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gold/po/it.po
file=`echo vi | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gold/po/vi.po
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gold/po'
Making all in testsuite
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gold/testsuite'
(for i in `seq 1 70000`; do \
	   echo "int var_$i __attribute__((section(\"section_$i\"))) = $i;"; \
	 done) > many_sections_define.h.tmp
mv -f many_sections_define.h.tmp many_sections_define.h
(for i in `seq 1 1000 70000`; do \
	   echo "assert(var_$i == $i);"; \
	 done) > many_sections_check.h.tmp
mv -f many_sections_check.h.tmp many_sections_check.h
make  all-am
make[5]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gold/testsuite'
make[5]: Nothing to be done for `all-am'.
make[5]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gold/testsuite'
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gold/testsuite'
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gold'
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=archive.o -g -O2 -MT archive.o -MD -MP -MF .deps/archive.Tpo -c -o archive.o ../../Paul_Desmond/gold/archive.cc
mv -f .deps/archive.Tpo .deps/archive.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=attributes.o -g -O2 -MT attributes.o -MD -MP -MF .deps/attributes.Tpo -c -o attributes.o ../../Paul_Desmond/gold/attributes.cc
mv -f .deps/attributes.Tpo .deps/attributes.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=binary.o -g -O2 -MT binary.o -MD -MP -MF .deps/binary.Tpo -c -o binary.o ../../Paul_Desmond/gold/binary.cc
mv -f .deps/binary.Tpo .deps/binary.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=common.o -g -O2 -MT common.o -MD -MP -MF .deps/common.Tpo -c -o common.o ../../Paul_Desmond/gold/common.cc
mv -f .deps/common.Tpo .deps/common.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=compressed_output.o -g -O2 -MT compressed_output.o -MD -MP -MF .deps/compressed_output.Tpo -c -o compressed_output.o ../../Paul_Desmond/gold/compressed_output.cc
mv -f .deps/compressed_output.Tpo .deps/compressed_output.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=copy-relocs.o -g -O2 -MT copy-relocs.o -MD -MP -MF .deps/copy-relocs.Tpo -c -o copy-relocs.o ../../Paul_Desmond/gold/copy-relocs.cc
mv -f .deps/copy-relocs.Tpo .deps/copy-relocs.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=cref.o -g -O2 -MT cref.o -MD -MP -MF .deps/cref.Tpo -c -o cref.o ../../Paul_Desmond/gold/cref.cc
mv -f .deps/cref.Tpo .deps/cref.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=defstd.o -g -O2 -MT defstd.o -MD -MP -MF .deps/defstd.Tpo -c -o defstd.o ../../Paul_Desmond/gold/defstd.cc
mv -f .deps/defstd.Tpo .deps/defstd.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=descriptors.o -g -O2 -MT descriptors.o -MD -MP -MF .deps/descriptors.Tpo -c -o descriptors.o ../../Paul_Desmond/gold/descriptors.cc
mv -f .deps/descriptors.Tpo .deps/descriptors.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=dirsearch.o -g -O2 -MT dirsearch.o -MD -MP -MF .deps/dirsearch.Tpo -c -o dirsearch.o ../../Paul_Desmond/gold/dirsearch.cc
mv -f .deps/dirsearch.Tpo .deps/dirsearch.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=dynobj.o -g -O2 -MT dynobj.o -MD -MP -MF .deps/dynobj.Tpo -c -o dynobj.o ../../Paul_Desmond/gold/dynobj.cc
mv -f .deps/dynobj.Tpo .deps/dynobj.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=dwarf_reader.o -g -O2 -MT dwarf_reader.o -MD -MP -MF .deps/dwarf_reader.Tpo -c -o dwarf_reader.o ../../Paul_Desmond/gold/dwarf_reader.cc
mv -f .deps/dwarf_reader.Tpo .deps/dwarf_reader.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=ehframe.o -g -O2 -MT ehframe.o -MD -MP -MF .deps/ehframe.Tpo -c -o ehframe.o ../../Paul_Desmond/gold/ehframe.cc
mv -f .deps/ehframe.Tpo .deps/ehframe.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=errors.o -g -O2 -MT errors.o -MD -MP -MF .deps/errors.Tpo -c -o errors.o ../../Paul_Desmond/gold/errors.cc
mv -f .deps/errors.Tpo .deps/errors.Po
/bin/dash ../../Paul_Desmond/gold/../ylwrap ../../Paul_Desmond/gold/yyscript.y y.tab.c yyscript.c y.tab.h yyscript.h y.output yyscript.output -- bison -y  -d
conflicts: 5 shift/reduce
updating yyscript.h
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=expression.o -g -O2 -MT expression.o -MD -MP -MF .deps/expression.Tpo -c -o expression.o ../../Paul_Desmond/gold/expression.cc
mv -f .deps/expression.Tpo .deps/expression.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=fileread.o -g -O2 -MT fileread.o -MD -MP -MF .deps/fileread.Tpo -c -o fileread.o ../../Paul_Desmond/gold/fileread.cc
mv -f .deps/fileread.Tpo .deps/fileread.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=gc.o -g -O2 -MT gc.o -MD -MP -MF .deps/gc.Tpo -c -o gc.o ../../Paul_Desmond/gold/gc.cc
mv -f .deps/gc.Tpo .deps/gc.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=gdb-index.o -g -O2 -MT gdb-index.o -MD -MP -MF .deps/gdb-index.Tpo -c -o gdb-index.o ../../Paul_Desmond/gold/gdb-index.cc
mv -f .deps/gdb-index.Tpo .deps/gdb-index.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=gold.o -g -O2 -MT gold.o -MD -MP -MF .deps/gold.Tpo -c -o gold.o ../../Paul_Desmond/gold/gold.cc
mv -f .deps/gold.Tpo .deps/gold.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=gold-threads.o -g -O2 -MT gold-threads.o -MD -MP -MF .deps/gold-threads.Tpo -c -o gold-threads.o ../../Paul_Desmond/gold/gold-threads.cc
mv -f .deps/gold-threads.Tpo .deps/gold-threads.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=icf.o -g -O2 -MT icf.o -MD -MP -MF .deps/icf.Tpo -c -o icf.o ../../Paul_Desmond/gold/icf.cc
mv -f .deps/icf.Tpo .deps/icf.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=incremental.o -g -O2 -MT incremental.o -MD -MP -MF .deps/incremental.Tpo -c -o incremental.o ../../Paul_Desmond/gold/incremental.cc
mv -f .deps/incremental.Tpo .deps/incremental.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=int_encoding.o -g -O2 -MT int_encoding.o -MD -MP -MF .deps/int_encoding.Tpo -c -o int_encoding.o ../../Paul_Desmond/gold/int_encoding.cc
mv -f .deps/int_encoding.Tpo .deps/int_encoding.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=layout.o -g -O2 -MT layout.o -MD -MP -MF .deps/layout.Tpo -c -o layout.o ../../Paul_Desmond/gold/layout.cc
mv -f .deps/layout.Tpo .deps/layout.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=mapfile.o -g -O2 -MT mapfile.o -MD -MP -MF .deps/mapfile.Tpo -c -o mapfile.o ../../Paul_Desmond/gold/mapfile.cc
mv -f .deps/mapfile.Tpo .deps/mapfile.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=merge.o -g -O2 -MT merge.o -MD -MP -MF .deps/merge.Tpo -c -o merge.o ../../Paul_Desmond/gold/merge.cc
mv -f .deps/merge.Tpo .deps/merge.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=nacl.o -g -O2 -MT nacl.o -MD -MP -MF .deps/nacl.Tpo -c -o nacl.o ../../Paul_Desmond/gold/nacl.cc
mv -f .deps/nacl.Tpo .deps/nacl.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=object.o -g -O2 -MT object.o -MD -MP -MF .deps/object.Tpo -c -o object.o ../../Paul_Desmond/gold/object.cc
mv -f .deps/object.Tpo .deps/object.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=options.o -g -O2 -MT options.o -MD -MP -MF .deps/options.Tpo -c -o options.o ../../Paul_Desmond/gold/options.cc
mv -f .deps/options.Tpo .deps/options.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=output.o -g -O2 -MT output.o -MD -MP -MF .deps/output.Tpo -c -o output.o ../../Paul_Desmond/gold/output.cc
mv -f .deps/output.Tpo .deps/output.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=parameters.o -g -O2 -MT parameters.o -MD -MP -MF .deps/parameters.Tpo -c -o parameters.o ../../Paul_Desmond/gold/parameters.cc
mv -f .deps/parameters.Tpo .deps/parameters.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=plugin.o -g -O2 -MT plugin.o -MD -MP -MF .deps/plugin.Tpo -c -o plugin.o ../../Paul_Desmond/gold/plugin.cc
mv -f .deps/plugin.Tpo .deps/plugin.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=readsyms.o -g -O2 -MT readsyms.o -MD -MP -MF .deps/readsyms.Tpo -c -o readsyms.o ../../Paul_Desmond/gold/readsyms.cc
mv -f .deps/readsyms.Tpo .deps/readsyms.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=reduced_debug_output.o -g -O2 -MT reduced_debug_output.o -MD -MP -MF .deps/reduced_debug_output.Tpo -c -o reduced_debug_output.o ../../Paul_Desmond/gold/reduced_debug_output.cc
mv -f .deps/reduced_debug_output.Tpo .deps/reduced_debug_output.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=reloc.o -g -O2 -MT reloc.o -MD -MP -MF .deps/reloc.Tpo -c -o reloc.o ../../Paul_Desmond/gold/reloc.cc
mv -f .deps/reloc.Tpo .deps/reloc.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=resolve.o -g -O2 -MT resolve.o -MD -MP -MF .deps/resolve.Tpo -c -o resolve.o ../../Paul_Desmond/gold/resolve.cc
mv -f .deps/resolve.Tpo .deps/resolve.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=script-sections.o -g -O2 -MT script-sections.o -MD -MP -MF .deps/script-sections.Tpo -c -o script-sections.o ../../Paul_Desmond/gold/script-sections.cc
mv -f .deps/script-sections.Tpo .deps/script-sections.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=script.o -g -O2 -MT script.o -MD -MP -MF .deps/script.Tpo -c -o script.o ../../Paul_Desmond/gold/script.cc
mv -f .deps/script.Tpo .deps/script.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=stringpool.o -g -O2 -MT stringpool.o -MD -MP -MF .deps/stringpool.Tpo -c -o stringpool.o ../../Paul_Desmond/gold/stringpool.cc
mv -f .deps/stringpool.Tpo .deps/stringpool.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=symtab.o -g -O2 -MT symtab.o -MD -MP -MF .deps/symtab.Tpo -c -o symtab.o ../../Paul_Desmond/gold/symtab.cc
mv -f .deps/symtab.Tpo .deps/symtab.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=target.o -g -O2 -MT target.o -MD -MP -MF .deps/target.Tpo -c -o target.o ../../Paul_Desmond/gold/target.cc
mv -f .deps/target.Tpo .deps/target.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=target-select.o -g -O2 -MT target-select.o -MD -MP -MF .deps/target-select.Tpo -c -o target-select.o ../../Paul_Desmond/gold/target-select.cc
mv -f .deps/target-select.Tpo .deps/target-select.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=timer.o -g -O2 -MT timer.o -MD -MP -MF .deps/timer.Tpo -c -o timer.o ../../Paul_Desmond/gold/timer.cc
mv -f .deps/timer.Tpo .deps/timer.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=version.o -g -O2 -MT version.o -MD -MP -MF .deps/version.Tpo -c -o version.o ../../Paul_Desmond/gold/version.cc
mv -f .deps/version.Tpo .deps/version.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=workqueue.o -g -O2 -MT workqueue.o -MD -MP -MF .deps/workqueue.Tpo -c -o workqueue.o ../../Paul_Desmond/gold/workqueue.cc
mv -f .deps/workqueue.Tpo .deps/workqueue.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=workqueue-threads.o -g -O2 -MT workqueue-threads.o -MD -MP -MF .deps/workqueue-threads.Tpo -c -o workqueue-threads.o ../../Paul_Desmond/gold/workqueue-threads.cc
mv -f .deps/workqueue-threads.Tpo .deps/workqueue-threads.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=yyscript.o -g -O2 -MT yyscript.o -MD -MP -MF .deps/yyscript.Tpo -c -o yyscript.o yyscript.c
mv -f .deps/yyscript.Tpo .deps/yyscript.Po
rm -f libgold.a
ar cru libgold.a archive.o attributes.o binary.o common.o compressed_output.o copy-relocs.o cref.o defstd.o descriptors.o dirsearch.o dynobj.o dwarf_reader.o ehframe.o errors.o expression.o fileread.o gc.o gdb-index.o gold.o gold-threads.o icf.o incremental.o int_encoding.o layout.o mapfile.o merge.o nacl.o object.o options.o output.o parameters.o plugin.o readsyms.o reduced_debug_output.o reloc.o resolve.o script-sections.o script.o stringpool.o symtab.o target.o target-select.o timer.o version.o workqueue.o workqueue-threads.o  yyscript.o  
ranlib libgold.a
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=dwp.o -g -O2 -MT dwp.o -MD -MP -MF .deps/dwp.Tpo -c -o dwp.o ../../Paul_Desmond/gold/dwp.cc
mv -f .deps/dwp.Tpo .deps/dwp.Po
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=dwp -g -O2  -static-libstdc++ -static-libgcc  -o dwp dwp.o libgold.a ../libiberty/libiberty.a     -lz 
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=main.o -g -O2 -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o ../../Paul_Desmond/gold/main.cc
mv -f .deps/main.Tpo .deps/main.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=i386.o -g -O2 -MT i386.o -MD -MP -MF .deps/i386.Tpo -c -o i386.o ../../Paul_Desmond/gold/i386.cc
mv -f .deps/i386.Tpo .deps/i386.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=x86_64.o -g -O2 -MT x86_64.o -MD -MP -MF .deps/x86_64.Tpo -c -o x86_64.o ../../Paul_Desmond/gold/x86_64.cc
mv -f .deps/x86_64.Tpo .deps/x86_64.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=sparc.o -g -O2 -MT sparc.o -MD -MP -MF .deps/sparc.Tpo -c -o sparc.o ../../Paul_Desmond/gold/sparc.cc
mv -f .deps/sparc.Tpo .deps/sparc.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=powerpc.o -g -O2 -MT powerpc.o -MD -MP -MF .deps/powerpc.Tpo -c -o powerpc.o ../../Paul_Desmond/gold/powerpc.cc
mv -f .deps/powerpc.Tpo .deps/powerpc.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=arm.o -g -O2 -MT arm.o -MD -MP -MF .deps/arm.Tpo -c -o arm.o ../../Paul_Desmond/gold/arm.cc
mv -f .deps/arm.Tpo .deps/arm.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=arm-reloc-property.o -g -O2 -MT arm-reloc-property.o -MD -MP -MF .deps/arm-reloc-property.Tpo -c -o arm-reloc-property.o ../../Paul_Desmond/gold/arm-reloc-property.cc
mv -f .deps/arm-reloc-property.Tpo .deps/arm-reloc-property.Po
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=tilegx.o -g -O2 -MT tilegx.o -MD -MP -MF .deps/tilegx.Tpo -c -o tilegx.o ../../Paul_Desmond/gold/tilegx.cc
mv -f .deps/tilegx.Tpo .deps/tilegx.Po
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=ld-new -g -O2  -static-libstdc++ -static-libgcc  -o ld-new main.o i386.o x86_64.o sparc.o powerpc.o arm.o arm-reloc-property.o tilegx.o libgold.a ../libiberty/libiberty.a     -lz 
g++-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gold  -I../../Paul_Desmond/gold -I../../Paul_Desmond/gold/../include -I../../Paul_Desmond/gold/../elfcpp -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\"" -DBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/bin\"" -DTOOLBINDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin\"" -DTOOLLIBDIR="\"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=incremental-dump.o -g -O2 -MT incremental-dump.o -MD -MP -MF .deps/incremental-dump.Tpo -c -o incremental-dump.o ../../Paul_Desmond/gold/incremental-dump.cc
mv -f .deps/incremental-dump.Tpo .deps/incremental-dump.Po
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=incremental-dump -g -O2  -static-libstdc++ -static-libgcc  -o incremental-dump incremental-dump.o i386.o x86_64.o sparc.o powerpc.o arm.o arm-reloc-property.o tilegx.o libgold.a ../libiberty/libiberty.a    -lz 
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gold'
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gold'
make[2]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gold'
mkdir -p -- ./gprof
Configuring in ./gprof
configure: creating cache ./config.cache
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for i686-pc-linux-gnu-gcc... gcc-4.8
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc-4.8 accepts -g... yes
checking for gcc-4.8 option to accept ISO C89... none needed
checking for library containing strerror... none required
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking dependency style of gcc-4.8... gcc3
checking for i686-pc-linux-gnu-gcc... (cached) gcc-4.8
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc-4.8 accepts -g... (cached) yes
checking for gcc-4.8 option to accept ISO C89... (cached) none needed
checking how to run the C preprocessor... gcc-4.8 -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 special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... 64
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by gcc-4.8... ld
checking if the linker (ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 805306365
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... no
checking for ld option to reload object files... -r
checking for i686-pc-linux-gnu-objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for i686-pc-linux-gnu-ar... ar
checking for i686-pc-linux-gnu-strip... no
checking for strip... strip
checking for i686-pc-linux-gnu-ranlib... ranlib
checking command to parse nm output from gcc-4.8 object... ok
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc-4.8 supports -fno-rtti -fno-exceptions... no
checking for gcc-4.8 option to produce PIC... -fPIC -DPIC
checking if gcc-4.8 PIC flag -fPIC -DPIC works... yes
checking if gcc-4.8 static flag -static works... yes
checking if gcc-4.8 supports -c -o file.o... yes
checking if gcc-4.8 supports -c -o file.o... (cached) yes
checking whether the gcc-4.8 linker (ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for setmode... no
checking whether NLS is requested... yes
checking for catalogs to be installed...  bg da de eo es fi fr ga id it ja ms nl pt_BR ro ru rw sr sv tr uk vi
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking whether to enable maintainer-specific portions of Makefiles... no
checking sys/gmon_out.h usability... yes
checking sys/gmon_out.h presence... yes
checking for sys/gmon_out.h... yes
checking for a known getopt prototype in unistd.h... yes
checking for library containing fabs... -lm
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror
configure: updating cache ./config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating po/Makefile.in
config.status: creating gconfig.h
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing default-1 commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
make[2]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gprof'
awk -f ../../Paul_Desmond/gprof/gen-c-prog.awk > ./flat_bl.c \
	    FUNCTION=`(echo flat_bl|sed -e 's,.*/,,g' -e 's/_bl//')`_blurb \
	    FILE=flat_bl.m ../../Paul_Desmond/gprof/flat_bl.m
awk -f ../../Paul_Desmond/gprof/gen-c-prog.awk > ./bsd_callg_bl.c \
	    FUNCTION=`(echo bsd_callg_bl|sed -e 's,.*/,,g' -e 's/_bl//')`_blurb \
	    FILE=bsd_callg_bl.m ../../Paul_Desmond/gprof/bsd_callg_bl.m
awk -f ../../Paul_Desmond/gprof/gen-c-prog.awk > ./fsf_callg_bl.c \
	    FUNCTION=`(echo fsf_callg_bl|sed -e 's,.*/,,g' -e 's/_bl//')`_blurb \
	    FILE=fsf_callg_bl.m ../../Paul_Desmond/gprof/fsf_callg_bl.m
make  all-recursive
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gprof'
Making all in po
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gprof/po'
file=`echo ../../../Paul_Desmond/gprof/po/bg | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gprof/po/bg.po
file=`echo ../../../Paul_Desmond/gprof/po/da | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gprof/po/da.po
file=`echo ../../../Paul_Desmond/gprof/po/de | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gprof/po/de.po
file=`echo ../../../Paul_Desmond/gprof/po/eo | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gprof/po/eo.po
file=`echo ../../../Paul_Desmond/gprof/po/es | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gprof/po/es.po
file=`echo ../../../Paul_Desmond/gprof/po/fi | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gprof/po/fi.po
file=`echo ../../../Paul_Desmond/gprof/po/fr | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gprof/po/fr.po
file=`echo ../../../Paul_Desmond/gprof/po/ga | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gprof/po/ga.po
file=`echo ../../../Paul_Desmond/gprof/po/id | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gprof/po/id.po
file=`echo it | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gprof/po/it.po
file=`echo ../../../Paul_Desmond/gprof/po/ja | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gprof/po/ja.po
file=`echo ../../../Paul_Desmond/gprof/po/ms | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gprof/po/ms.po
file=`echo ../../../Paul_Desmond/gprof/po/nl | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gprof/po/nl.po
file=`echo ../../../Paul_Desmond/gprof/po/pt_BR | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gprof/po/pt_BR.po
file=`echo ro | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gprof/po/ro.po
file=`echo ru | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gprof/po/ru.po
file=`echo ../../../Paul_Desmond/gprof/po/rw | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gprof/po/rw.po
file=`echo ../../../Paul_Desmond/gprof/po/sr | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gprof/po/sr.po
file=`echo ../../../Paul_Desmond/gprof/po/sv | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gprof/po/sv.po
file=`echo ../../../Paul_Desmond/gprof/po/tr | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gprof/po/tr.po
file=`echo uk | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gprof/po/uk.po
file=`echo ../../../Paul_Desmond/gprof/po/vi | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/gprof/po/vi.po
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gprof/po'
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gprof'
echo "@set top_srcdir ../../Paul_Desmond/gprof" >> ./config.texi
restore=: && backupdir=".am$$" && \
	rm -rf $backupdir && mkdir $backupdir && \
	if (makeinfo --split-size=5000000 --split-size=5000000 --version) >/dev/null 2>&1; then \
	  for f in gprof.info gprof.info-[0-9] gprof.info-[0-9][0-9] gprof.i[0-9] gprof.i[0-9][0-9]; do \
	    if test -f $f; then mv $f $backupdir; restore=mv; else :; fi; \
	  done; \
	else :; fi && \
	if makeinfo --split-size=5000000 --split-size=5000000 -I "../../Paul_Desmond/gprof" -I "../../Paul_Desmond/gprof/../bfd/doc" -I ../bfd/doc  -I ../../Paul_Desmond/gprof \
	 -o gprof.info `test -f 'gprof.texi' || echo '../../Paul_Desmond/gprof/'`gprof.texi; \
	then \
	  rc=0; \
	else \
	  rc=$?; \
	  $restore $backupdir/* `echo "./gprof.info" | sed 's|[^/]*$||'`; \
	fi; \
	rm -rf $backupdir; exit $rc
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT basic_blocks.o -MD -MP -MF .deps/basic_blocks.Tpo -c -o basic_blocks.o ../../Paul_Desmond/gprof/basic_blocks.c
mv -f .deps/basic_blocks.Tpo .deps/basic_blocks.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT call_graph.o -MD -MP -MF .deps/call_graph.Tpo -c -o call_graph.o ../../Paul_Desmond/gprof/call_graph.c
mv -f .deps/call_graph.Tpo .deps/call_graph.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cg_arcs.o -MD -MP -MF .deps/cg_arcs.Tpo -c -o cg_arcs.o ../../Paul_Desmond/gprof/cg_arcs.c
mv -f .deps/cg_arcs.Tpo .deps/cg_arcs.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cg_dfn.o -MD -MP -MF .deps/cg_dfn.Tpo -c -o cg_dfn.o ../../Paul_Desmond/gprof/cg_dfn.c
mv -f .deps/cg_dfn.Tpo .deps/cg_dfn.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT cg_print.o -MD -MP -MF .deps/cg_print.Tpo -c -o cg_print.o ../../Paul_Desmond/gprof/cg_print.c
mv -f .deps/cg_print.Tpo .deps/cg_print.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT corefile.o -MD -MP -MF .deps/corefile.Tpo -c -o corefile.o ../../Paul_Desmond/gprof/corefile.c
mv -f .deps/corefile.Tpo .deps/corefile.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT gmon_io.o -MD -MP -MF .deps/gmon_io.Tpo -c -o gmon_io.o ../../Paul_Desmond/gprof/gmon_io.c
mv -f .deps/gmon_io.Tpo .deps/gmon_io.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT gprof.o -MD -MP -MF .deps/gprof.Tpo -c -o gprof.o ../../Paul_Desmond/gprof/gprof.c
mv -f .deps/gprof.Tpo .deps/gprof.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT hertz.o -MD -MP -MF .deps/hertz.Tpo -c -o hertz.o ../../Paul_Desmond/gprof/hertz.c
mv -f .deps/hertz.Tpo .deps/hertz.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT hist.o -MD -MP -MF .deps/hist.Tpo -c -o hist.o ../../Paul_Desmond/gprof/hist.c
mv -f .deps/hist.Tpo .deps/hist.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT source.o -MD -MP -MF .deps/source.Tpo -c -o source.o ../../Paul_Desmond/gprof/source.c
mv -f .deps/source.Tpo .deps/source.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT search_list.o -MD -MP -MF .deps/search_list.Tpo -c -o search_list.o ../../Paul_Desmond/gprof/search_list.c
mv -f .deps/search_list.Tpo .deps/search_list.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT symtab.o -MD -MP -MF .deps/symtab.Tpo -c -o symtab.o ../../Paul_Desmond/gprof/symtab.c
mv -f .deps/symtab.Tpo .deps/symtab.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT sym_ids.o -MD -MP -MF .deps/sym_ids.Tpo -c -o sym_ids.o ../../Paul_Desmond/gprof/sym_ids.c
mv -f .deps/sym_ids.Tpo .deps/sym_ids.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT utils.o -MD -MP -MF .deps/utils.Tpo -c -o utils.o ../../Paul_Desmond/gprof/utils.c
mv -f .deps/utils.Tpo .deps/utils.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT i386.o -MD -MP -MF .deps/i386.Tpo -c -o i386.o ../../Paul_Desmond/gprof/i386.c
mv -f .deps/i386.Tpo .deps/i386.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT alpha.o -MD -MP -MF .deps/alpha.Tpo -c -o alpha.o ../../Paul_Desmond/gprof/alpha.c
mv -f .deps/alpha.Tpo .deps/alpha.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT vax.o -MD -MP -MF .deps/vax.Tpo -c -o vax.o ../../Paul_Desmond/gprof/vax.c
mv -f .deps/vax.Tpo .deps/vax.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT tahoe.o -MD -MP -MF .deps/tahoe.Tpo -c -o tahoe.o ../../Paul_Desmond/gprof/tahoe.c
mv -f .deps/tahoe.Tpo .deps/tahoe.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT sparc.o -MD -MP -MF .deps/sparc.Tpo -c -o sparc.o ../../Paul_Desmond/gprof/sparc.c
mv -f .deps/sparc.Tpo .deps/sparc.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT mips.o -MD -MP -MF .deps/mips.Tpo -c -o mips.o ../../Paul_Desmond/gprof/mips.c
mv -f .deps/mips.Tpo .deps/mips.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT aarch64.o -MD -MP -MF .deps/aarch64.Tpo -c -o aarch64.o ../../Paul_Desmond/gprof/aarch64.c
mv -f .deps/aarch64.Tpo .deps/aarch64.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT flat_bl.o -MD -MP -MF .deps/flat_bl.Tpo -c -o flat_bl.o flat_bl.c
mv -f .deps/flat_bl.Tpo .deps/flat_bl.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT bsd_callg_bl.o -MD -MP -MF .deps/bsd_callg_bl.Tpo -c -o bsd_callg_bl.o bsd_callg_bl.c
mv -f .deps/bsd_callg_bl.Tpo .deps/bsd_callg_bl.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/gprof  -DDEBUG -I../bfd -I../../Paul_Desmond/gprof/../include -I../../Paul_Desmond/gprof/../bfd  -I. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT fsf_callg_bl.o -MD -MP -MF .deps/fsf_callg_bl.Tpo -c -o fsf_callg_bl.o fsf_callg_bl.c
mv -f .deps/fsf_callg_bl.Tpo .deps/fsf_callg_bl.Po
/bin/dash ./libtool --tag=CC   --mode=link gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2  -static-libstdc++ -static-libgcc  -o gprof basic_blocks.o call_graph.o cg_arcs.o cg_dfn.o cg_print.o corefile.o gmon_io.o gprof.o hertz.o hist.o source.o search_list.o symtab.o sym_ids.o utils.o i386.o alpha.o vax.o tahoe.o sparc.o mips.o aarch64.o flat_bl.o bsd_callg_bl.o fsf_callg_bl.o ../bfd/libbfd.la ../libiberty/libiberty.a  -lm 
libtool: link: gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -static-libstdc++ -static-libgcc -o gprof basic_blocks.o call_graph.o cg_arcs.o cg_dfn.o cg_print.o corefile.o gmon_io.o gprof.o hertz.o hist.o source.o search_list.o symtab.o sym_ids.o utils.o i386.o alpha.o vax.o tahoe.o sparc.o mips.o aarch64.o flat_bl.o bsd_callg_bl.o fsf_callg_bl.o  ../bfd/.libs/libbfd.a -lz ../libiberty/libiberty.a -lm
touch gprof.1
perl ../../Paul_Desmond/gprof/../etc/texi2pod.pl -I "../../Paul_Desmond/gprof" -I "../../Paul_Desmond/gprof/../bfd/doc" -I ../bfd/doc -Dman -Dgprof < ../../Paul_Desmond/gprof/gprof.texi > gprof.pod
(pod2man --center="GNU" --release="binutils-2.24.51" --section=1 gprof.pod | \
	       sed -e '/^.if n .na/d' > gprof.1.T$$ && \
	       mv -f gprof.1.T$$ gprof.1) || \
	       (rm -f gprof.1.T$$ && exit 1)
rm -f gprof.pod
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gprof'
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gprof'
make[2]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gprof'
mkdir -p -- ./ld
Configuring in ./ld
configure: creating cache ./config.cache
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for i686-pc-linux-gnu-gcc... gcc-4.8
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc-4.8 accepts -g... yes
checking for gcc-4.8 option to accept ISO C89... none needed
checking for library containing strerror... none required
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking dependency style of gcc-4.8... gcc3
checking whether to enable maintainer-specific portions of Makefiles... no
checking how to run the C preprocessor... gcc-4.8 -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
Setting warning flags = -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror
checking for LC_MESSAGES... yes
checking for i686-pc-linux-gnu-gcc... (cached) gcc-4.8
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc-4.8 accepts -g... (cached) yes
checking for gcc-4.8 option to accept ISO C89... (cached) none needed
checking whether we are using the GNU C++ compiler... yes
checking whether g++-4.8 accepts -g... yes
checking dependency style of g++-4.8... gcc3
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 special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... 64
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by gcc-4.8... ld
checking if the linker (ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 805306365
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... no
checking for ld option to reload object files... -r
checking for i686-pc-linux-gnu-objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for i686-pc-linux-gnu-ar... ar
checking for i686-pc-linux-gnu-strip... no
checking for strip... strip
checking for i686-pc-linux-gnu-ranlib... ranlib
checking command to parse nm output from gcc-4.8 object... ok
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc-4.8 supports -fno-rtti -fno-exceptions... no
checking for gcc-4.8 option to produce PIC... -fPIC -DPIC
checking if gcc-4.8 PIC flag -fPIC -DPIC works... yes
checking if gcc-4.8 static flag -static works... yes
checking if gcc-4.8 supports -c -o file.o... yes
checking if gcc-4.8 supports -c -o file.o... (cached) yes
checking whether the gcc-4.8 linker (ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... g++-4.8 -E
checking for ld used by g++-4.8... ld
checking if the linker (ld) is GNU ld... yes
checking whether the g++-4.8 linker (ld) supports shared libraries... yes
checking for g++-4.8 option to produce PIC... -fPIC -DPIC
checking if g++-4.8 PIC flag -fPIC -DPIC works... yes
checking if g++-4.8 static flag -static works... yes
checking if g++-4.8 supports -c -o file.o... yes
checking if g++-4.8 supports -c -o file.o... (cached) yes
checking whether the g++-4.8 linker (ld) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether NLS is requested... yes
checking for catalogs to be installed...  bg da es fi fr ga id it ja sv tr uk vi zh_CN zh_TW
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for bison... bison -y
checking for flex... flex
checking lex output file root... lex.yy
checking lex library... -lfl
checking whether yytext is a pointer... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking how to compare bootstrapped objects... cmp --ignore-initial=16 $$f1 $$f2
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking elf-hints.h usability... no
checking elf-hints.h presence... no
checking for elf-hints.h... no
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/file.h usability... yes
checking sys/file.h presence... yes
checking for sys/file.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for sys/stat.h... (cached) yes
checking whether string.h and strings.h may both be included... yes
checking for glob... yes
checking for mkstemp... yes
checking for realpath... yes
checking for sbrk... yes
checking for setlocale... yes
checking for waitpid... yes
checking for open... yes
checking for lseek... yes
checking for close... yes
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking for dlfcn.h... (cached) yes
checking for library containing dlopen... -ldl
checking for dlopen... yes
checking for dlsym... yes
checking for dlclose... yes
checking for .preinit_array/.init_array/.fini_array support... yes
checking for a known getopt prototype in unistd.h... yes
checking whether strstr is declared... yes
checking whether free is declared... yes
checking whether sbrk is declared... yes
checking whether getenv is declared... yes
checking whether environ is declared... yes
checking for library containing zlibVersion... -lz
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking whether ANSI C string concatenation works... yes
checking size of void *... 4
configure: updating cache ./config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: creating po/Makefile.in
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing default-1 commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
make[2]: Entering directory `[...]/tschwinge/Paul_Desmond.build/ld'
/bin/dash ../../Paul_Desmond/ld/../ylwrap ../../Paul_Desmond/ld/ldgram.y y.tab.c ldgram.c y.tab.h ldgram.h y.output ldgram.output -- bison -y -d 
updating ldgram.h
(echo "/* This file is automatically generated.  DO NOT EDIT! */";\
	for f in `echo " " eelf_i386.o ei386linux.o eelf32_x86_64.o "" \
	 | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
	    echo "extern ld_emulation_xfer_type ld_${f}_emulation;"; \
	done;\
	echo "";\
	echo "#define EMULATION_LIST \\";\
	for f in `echo " " eelf_i386.o ei386linux.o eelf32_x86_64.o "" \
	 | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
	    echo "  &ld_${f}_emulation, \\"; \
	done;\
	echo "  0") >ldemul-tmp.h
mv ldemul-tmp.h ldemul-list.h
/bin/dash ../../Paul_Desmond/ld/../ylwrap ../../Paul_Desmond/ld/deffilep.y y.tab.c deffilep.c y.tab.h deffilep.h y.output deffilep.output -- bison -y -d 
conflicts: 76 shift/reduce
updating deffilep.h
make  all-recursive
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/ld'
Making all in po
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/ld/po'
file=`echo ../../../Paul_Desmond/ld/po/bg | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/ld/po/bg.po
file=`echo ../../../Paul_Desmond/ld/po/da | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/ld/po/da.po
file=`echo ../../../Paul_Desmond/ld/po/es | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/ld/po/es.po
file=`echo ../../../Paul_Desmond/ld/po/fi | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/ld/po/fi.po
file=`echo ../../../Paul_Desmond/ld/po/fr | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/ld/po/fr.po
file=`echo ../../../Paul_Desmond/ld/po/ga | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/ld/po/ga.po
file=`echo ../../../Paul_Desmond/ld/po/id | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/ld/po/id.po
file=`echo ../../../Paul_Desmond/ld/po/it | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/ld/po/it.po
file=`echo ja | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/ld/po/ja.po
file=`echo ../../../Paul_Desmond/ld/po/sv | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/ld/po/sv.po
file=`echo ../../../Paul_Desmond/ld/po/tr | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/ld/po/tr.po
file=`echo ../../../Paul_Desmond/ld/po/uk | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/ld/po/uk.po
file=`echo ../../../Paul_Desmond/ld/po/vi | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/ld/po/vi.po
file=`echo ../../../Paul_Desmond/ld/po/zh_CN | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/ld/po/zh_CN.po
file=`echo ../../../Paul_Desmond/ld/po/zh_TW | sed 's,.*/,,'`.gmo \
	  && rm -f $file && PATH=../src:$PATH /usr/bin/msgfmt -o $file ../../../Paul_Desmond/ld/po/zh_TW.po
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/ld/po'
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/ld'
cp ../../Paul_Desmond/ld/gen-doc.texi ./configdoc.texi
chmod u+w ./configdoc.texi
restore=: && backupdir=".am$$" && \
	rm -rf $backupdir && mkdir $backupdir && \
	if (makeinfo --split-size=5000000 --split-size=5000000 --version) >/dev/null 2>&1; then \
	  for f in ld.info ld.info-[0-9] ld.info-[0-9][0-9] ld.i[0-9] ld.i[0-9][0-9]; do \
	    if test -f $f; then mv $f $backupdir; restore=mv; else :; fi; \
	  done; \
	else :; fi && \
	if makeinfo --split-size=5000000 --split-size=5000000 -I ../../Paul_Desmond/ld -I ../../Paul_Desmond/ld/../bfd/doc -I ../bfd/doc -I ../../Paul_Desmond/ld/../libiberty  -I ../../Paul_Desmond/ld \
	 -o ld.info `test -f 'ld.texinfo' || echo '../../Paul_Desmond/ld/'`ld.texinfo; \
	then \
	  rc=0; \
	else \
	  rc=$?; \
	  $restore $backupdir/* `echo "./ld.info" | sed 's|[^/]*$||'`; \
	fi; \
	rm -rf $backupdir; exit $rc
../../Paul_Desmond/ld/ld.texinfo:1332: warning: @pxref cross-reference name should not contain `:'
/bin/dash ./libtool  --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/ld  -I. -I../../Paul_Desmond/ld -I../bfd -I../../Paul_Desmond/ld/../bfd -I../../Paul_Desmond/ld/../include  -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -g -O2 -g -O2 -MT libldtestplug_la-testplug.lo -MD -MP -MF .deps/libldtestplug_la-testplug.Tpo -c -o libldtestplug_la-testplug.lo `test -f 'testplug.c' || echo '../../Paul_Desmond/ld/'`testplug.c
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/ld -I. -I../../Paul_Desmond/ld -I../bfd -I../../Paul_Desmond/ld/../bfd -I../../Paul_Desmond/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR=\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\" -g -O2 -g -O2 -MT libldtestplug_la-testplug.lo -MD -MP -MF .deps/libldtestplug_la-testplug.Tpo -c ../../Paul_Desmond/ld/testplug.c  -fPIC -DPIC -o .libs/libldtestplug_la-testplug.o
libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/ld -I. -I../../Paul_Desmond/ld -I../bfd -I../../Paul_Desmond/ld/../bfd -I../../Paul_Desmond/ld/../include -g -O2 -DENABLE_PLUGINS -DLOCALEDIR=\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\" -g -O2 -g -O2 -MT libldtestplug_la-testplug.lo -MD -MP -MF .deps/libldtestplug_la-testplug.Tpo -c ../../Paul_Desmond/ld/testplug.c -o libldtestplug_la-testplug.o >/dev/null 2>&1
mv -f .deps/libldtestplug_la-testplug.Tpo .deps/libldtestplug_la-testplug.Plo
/bin/dash ./libtool --tag=CC   --mode=link gcc-4.8 -g -O2 -g -O2 -no-undefined -rpath /nowhere -static-libstdc++ -static-libgcc  -o libldtestplug.la  libldtestplug_la-testplug.lo  -lz -ldl 
libtool: link: gcc-4.8 -shared  .libs/libldtestplug_la-testplug.o   -lz -ldl    -Wl,-soname -Wl,libldtestplug.so.0 -o .libs/libldtestplug.so.0.0.0
libtool: link: (cd ".libs" && rm -f "libldtestplug.so.0" && ln -s "libldtestplug.so.0.0.0" "libldtestplug.so.0")
libtool: link: (cd ".libs" && rm -f "libldtestplug.so" && ln -s "libldtestplug.so.0.0.0" "libldtestplug.so")
libtool: link: ar rc .libs/libldtestplug.a  libldtestplug_la-testplug.o
libtool: link: ranlib .libs/libldtestplug.a
libtool: link: ( cd ".libs" && rm -f "libldtestplug.la" && ln -s "../libldtestplug.la" "libldtestplug.la" )
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/ld  -I. -I../../Paul_Desmond/ld -I../bfd -I../../Paul_Desmond/ld/../bfd -I../../Paul_Desmond/ld/../include  -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldgram.o -MD -MP -MF .deps/ldgram.Tpo -c -o ldgram.o `test -f ldgram.c || echo ../../Paul_Desmond/ld/`ldgram.c -Wno-error
mv -f .deps/ldgram.Tpo .deps/ldgram.Po
/bin/dash ../../Paul_Desmond/ld/../ylwrap ../../Paul_Desmond/ld/ldlex.l lex.yy.c ldlex.c -- flex  
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/ld  -I. -I../../Paul_Desmond/ld -I../bfd -I../../Paul_Desmond/ld/../bfd -I../../Paul_Desmond/ld/../include  -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldlex-wrapper.o -MD -MP -MF .deps/ldlex-wrapper.Tpo -c -o ldlex-wrapper.o ../../Paul_Desmond/ld/ldlex-wrapper.c -Wno-error
In file included from ../../Paul_Desmond/ld/ldlex-wrapper.c:26:0:
ldlex.c: In function 'yy_scan_buffer':
ldlex.c:3835:41: warning: declaration of 'base' shadows a global declaration [-Wshadow]
 YY_BUFFER_STATE yy_scan_buffer  (char * base, yy_size_t  size )
                                         ^
In file included from ldlex.l:31:0,
                 from ../../Paul_Desmond/ld/ldlex-wrapper.c:26:
../../Paul_Desmond/ld/ldlang.h:478:20: warning: shadowed declaration is here [-Wshadow]
 extern etree_type *base;
                    ^
mv -f .deps/ldlex-wrapper.Tpo .deps/ldlex-wrapper.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/ld  -I. -I../../Paul_Desmond/ld -I../bfd -I../../Paul_Desmond/ld/../bfd -I../../Paul_Desmond/ld/../include  -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT lexsup.o -MD -MP -MF .deps/lexsup.Tpo -c -o lexsup.o ../../Paul_Desmond/ld/lexsup.c
mv -f .deps/lexsup.Tpo .deps/lexsup.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/ld  -I. -I../../Paul_Desmond/ld -I../bfd -I../../Paul_Desmond/ld/../bfd -I../../Paul_Desmond/ld/../include  -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldlang.o -MD -MP -MF .deps/ldlang.Tpo -c -o ldlang.o ../../Paul_Desmond/ld/ldlang.c
mv -f .deps/ldlang.Tpo .deps/ldlang.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/ld  -I. -I../../Paul_Desmond/ld -I../bfd -I../../Paul_Desmond/ld/../bfd -I../../Paul_Desmond/ld/../include  -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT mri.o -MD -MP -MF .deps/mri.Tpo -c -o mri.o ../../Paul_Desmond/ld/mri.c
mv -f .deps/mri.Tpo .deps/mri.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/ld  -I. -I../../Paul_Desmond/ld -I../bfd -I../../Paul_Desmond/ld/../bfd -I../../Paul_Desmond/ld/../include  -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldctor.o -MD -MP -MF .deps/ldctor.Tpo -c -o ldctor.o ../../Paul_Desmond/ld/ldctor.c
mv -f .deps/ldctor.Tpo .deps/ldctor.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/ld  -I. -I../../Paul_Desmond/ld -I../bfd -I../../Paul_Desmond/ld/../bfd -I../../Paul_Desmond/ld/../include  -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldmain.o -MD -MP -MF .deps/ldmain.Tpo -c -o ldmain.o \
	  -DDEFAULT_EMULATION='"elf_i386"' \
	  -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"' -DTOOLBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin"' \
	  -DTARGET='"i686-pc-linux-gnu"' -DTARGET_SYSTEM_ROOT=\"/\" \
	  ../../Paul_Desmond/ld/ldmain.c
mv -f .deps/ldmain.Tpo .deps/ldmain.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/ld  -I. -I../../Paul_Desmond/ld -I../bfd -I../../Paul_Desmond/ld/../bfd -I../../Paul_Desmond/ld/../include  -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldwrite.o -MD -MP -MF .deps/ldwrite.Tpo -c -o ldwrite.o ../../Paul_Desmond/ld/ldwrite.c
mv -f .deps/ldwrite.Tpo .deps/ldwrite.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/ld  -I. -I../../Paul_Desmond/ld -I../bfd -I../../Paul_Desmond/ld/../bfd -I../../Paul_Desmond/ld/../include  -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldexp.o -MD -MP -MF .deps/ldexp.Tpo -c -o ldexp.o ../../Paul_Desmond/ld/ldexp.c
mv -f .deps/ldexp.Tpo .deps/ldexp.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/ld  -I. -I../../Paul_Desmond/ld -I../bfd -I../../Paul_Desmond/ld/../bfd -I../../Paul_Desmond/ld/../include  -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldemul.o -MD -MP -MF .deps/ldemul.Tpo -c -o ldemul.o ../../Paul_Desmond/ld/ldemul.c
mv -f .deps/ldemul.Tpo .deps/ldemul.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/ld  -I. -I../../Paul_Desmond/ld -I../bfd -I../../Paul_Desmond/ld/../bfd -I../../Paul_Desmond/ld/../include  -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldver.o -MD -MP -MF .deps/ldver.Tpo -c -o ldver.o ../../Paul_Desmond/ld/ldver.c
mv -f .deps/ldver.Tpo .deps/ldver.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/ld  -I. -I../../Paul_Desmond/ld -I../bfd -I../../Paul_Desmond/ld/../bfd -I../../Paul_Desmond/ld/../include  -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldmisc.o -MD -MP -MF .deps/ldmisc.Tpo -c -o ldmisc.o ../../Paul_Desmond/ld/ldmisc.c
mv -f .deps/ldmisc.Tpo .deps/ldmisc.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/ld  -I. -I../../Paul_Desmond/ld -I../bfd -I../../Paul_Desmond/ld/../bfd -I../../Paul_Desmond/ld/../include  -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldfile.o -MD -MP -MF .deps/ldfile.Tpo -c -o ldfile.o \
	-DSCRIPTDIR='"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/lib"' -DBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/bin"' -DTOOLBINDIR='"[...]/tschwinge/Paul_Desmond.build.install/i686-pc-linux-gnu/bin"' \
	 ../../Paul_Desmond/ld/ldfile.c
mv -f .deps/ldfile.Tpo .deps/ldfile.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/ld  -I. -I../../Paul_Desmond/ld -I../bfd -I../../Paul_Desmond/ld/../bfd -I../../Paul_Desmond/ld/../include  -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ldcref.o -MD -MP -MF .deps/ldcref.Tpo -c -o ldcref.o ../../Paul_Desmond/ld/ldcref.c
mv -f .deps/ldcref.Tpo .deps/ldcref.Po
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/ld  -I. -I../../Paul_Desmond/ld -I../bfd -I../../Paul_Desmond/ld/../bfd -I../../Paul_Desmond/ld/../include  -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT plugin.o -MD -MP -MF .deps/plugin.Tpo -c -o plugin.o ../../Paul_Desmond/ld/plugin.c
mv -f .deps/plugin.Tpo .deps/plugin.Po
cp ../../Paul_Desmond/ld/emultempl/astring.sed stringify.sed
LIB_PATH='' /bin/dash ../../Paul_Desmond/ld/genscripts.sh "../../Paul_Desmond/ld" "[...]/tschwinge/Paul_Desmond.build.install/lib" "[...]/tschwinge/Paul_Desmond.build.install" "[...]/tschwinge/Paul_Desmond.build.install" i686-pc-linux-gnu i686-pc-linux-gnu i686-pc-linux-gnu "elf_i386 elf32_x86_64" "/usr/local/lib /lib /usr/lib" yes yes elf_i386 "i686-pc-linux-gnu"
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/ld  -I. -I../../Paul_Desmond/ld -I../bfd -I../../Paul_Desmond/ld/../bfd -I../../Paul_Desmond/ld/../include  -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT eelf_i386.o -MD -MP -MF .deps/eelf_i386.Tpo -c -o eelf_i386.o eelf_i386.c
mv -f .deps/eelf_i386.Tpo .deps/eelf_i386.Po
LIB_PATH='' /bin/dash ../../Paul_Desmond/ld/genscripts.sh "../../Paul_Desmond/ld" "[...]/tschwinge/Paul_Desmond.build.install/lib" "[...]/tschwinge/Paul_Desmond.build.install" "[...]/tschwinge/Paul_Desmond.build.install" i686-pc-linux-gnu i686-pc-linux-gnu i686-pc-linux-gnu "elf_i386 elf32_x86_64" "/usr/local/lib /lib /usr/lib" yes yes i386linux "i686-pc-linux-gnuaout"
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/ld  -I. -I../../Paul_Desmond/ld -I../bfd -I../../Paul_Desmond/ld/../bfd -I../../Paul_Desmond/ld/../include  -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT ei386linux.o -MD -MP -MF .deps/ei386linux.Tpo -c -o ei386linux.o ei386linux.c
mv -f .deps/ei386linux.Tpo .deps/ei386linux.Po
LIB_PATH='' /bin/dash ../../Paul_Desmond/ld/genscripts.sh "../../Paul_Desmond/ld" "[...]/tschwinge/Paul_Desmond.build.install/lib" "[...]/tschwinge/Paul_Desmond.build.install" "[...]/tschwinge/Paul_Desmond.build.install" i686-pc-linux-gnu i686-pc-linux-gnu i686-pc-linux-gnu "elf_i386 elf32_x86_64" "/usr/local/lib /lib /usr/lib" yes yes elf32_x86_64 "i686-pc-linux-gnu"
gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Paul_Desmond/ld  -I. -I../../Paul_Desmond/ld -I../bfd -I../../Paul_Desmond/ld/../bfd -I../../Paul_Desmond/ld/../include  -g -O2 -DENABLE_PLUGINS -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -MT eelf32_x86_64.o -MD -MP -MF .deps/eelf32_x86_64.Tpo -c -o eelf32_x86_64.o eelf32_x86_64.c
mv -f .deps/eelf32_x86_64.Tpo .deps/eelf32_x86_64.Po
/bin/dash ./libtool --tag=CC   --mode=link gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2  -static-libstdc++ -static-libgcc  -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ei386linux.o eelf32_x86_64.o  ../bfd/libbfd.la ../libiberty/libiberty.a  -lz -ldl 
libtool: link: gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -g -O2 -static-libstdc++ -static-libgcc -o ld-new ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o plugin.o eelf_i386.o ei386linux.o eelf32_x86_64.o  ../bfd/.libs/libbfd.a ../libiberty/libiberty.a -lz -ldl
touch ld.1
perl ../../Paul_Desmond/ld/../etc/texi2pod.pl -I ../../Paul_Desmond/ld -I ../../Paul_Desmond/ld/../bfd/doc -I ../bfd/doc -I ../../Paul_Desmond/ld/../libiberty -Dman < ../../Paul_Desmond/ld/ld.texinfo > ld.pod
(pod2man --center="GNU Development Tools" --release="binutils-2.24.51" --section=1 ld.pod | \
		sed -e '/^.if n .na/d' > ld.1.T$$ && \
		mv -f ld.1.T$$ ld.1) || \
		(rm -f ld.1.T$$ && exit 1)
rm -f ld.pod
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/ld'
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/ld'
make[2]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/ld'
make[1]: Nothing to be done for `all-target'.
make[1]: Leaving directory `[...]/tschwinge/Paul_Desmond.build'