summaryrefslogtreecommitdiff
path: root/binutils/coulomb.SCHWINGE/log_test
blob: 8b13df2fde9d2a5f89c5686ab7605b1bed110a72 (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
make[1]: Entering directory `[...]/tschwinge/Paul_Desmond.build'
make[2]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd'
make  check-recursive
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd'
Making check in doc
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[4]: Nothing to be done for `check'.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
Making check in po
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/po'
make[4]: Nothing to be done for `check'.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/po'
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd'
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'
make[2]: Entering directory `[...]/tschwinge/Paul_Desmond.build/opcodes'
Making check in .
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/opcodes'
make[3]: Nothing to be done for `check-am'.
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/opcodes'
Making check in po
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/opcodes/po'
make[3]: Nothing to be done for `check'.
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/opcodes/po'
make[2]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/opcodes'
make[2]: Entering directory `[...]/tschwinge/Paul_Desmond.build/binutils'
make  check-recursive
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/binutils'
Making check in doc
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/binutils/doc'
make[4]: Nothing to be done for `check'.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/binutils/doc'
Making check in po
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/binutils/po'
make[4]: Nothing to be done for `check'.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/binutils/po'
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/binutils'
make  check-DEJAGNU
make[5]: Entering directory `[...]/tschwinge/Paul_Desmond.build/binutils'
Making a new site.exp file...
srcdir=`cd ../../Paul_Desmond/binutils && pwd`; export srcdir; \
	r=`pwd`; export r; \
	LC_ALL=C; export LC_ALL; \
	EXPECT=expect; export EXPECT; \
	runtest=runtest; \
	if /bin/dash -c "$runtest --version" > /dev/null 2>&1; then \
	  CC_FOR_TARGET="gcc-4.8" CFLAGS_FOR_TARGET="-g -O2" \
		$runtest --tool binutils --srcdir ${srcdir}/testsuite \
			; \
	else echo "WARNING: could not find \`runtest'" 1>&2; :;\
	fi
WARNING: Couldn't find tool init file
Test Run By thomas on Tue Jan  7 18:51:07 2014
Native configuration is i686-unknown-gnu0.5

		=== binutils tests ===

Schedule of variations:
    unix

Running target unix
Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
Using [...]/tschwinge/Paul_Desmond/binutils/testsuite/config/default.exp as tool-and-target-specific interface file.
Running [...]/tschwinge/Paul_Desmond/binutils/testsuite/binutils-all/ar.exp ...
Running [...]/tschwinge/Paul_Desmond/binutils/testsuite/binutils-all/arm/objdump.exp ...
Running [...]/tschwinge/Paul_Desmond/binutils/testsuite/binutils-all/bfin/objdump.exp ...
Running [...]/tschwinge/Paul_Desmond/binutils/testsuite/binutils-all/compress.exp ...
Running [...]/tschwinge/Paul_Desmond/binutils/testsuite/binutils-all/dlltool.exp ...
Running [...]/tschwinge/Paul_Desmond/binutils/testsuite/binutils-all/elfedit.exp ...
Running [...]/tschwinge/Paul_Desmond/binutils/testsuite/binutils-all/hppa/objdump.exp ...
Running [...]/tschwinge/Paul_Desmond/binutils/testsuite/binutils-all/i386/i386.exp ...
Running [...]/tschwinge/Paul_Desmond/binutils/testsuite/binutils-all/m68k/objdump.exp ...
Running [...]/tschwinge/Paul_Desmond/binutils/testsuite/binutils-all/mips/mips.exp ...
Running [...]/tschwinge/Paul_Desmond/binutils/testsuite/binutils-all/nm.exp ...
Version [...]/tschwinge/Paul_Desmond.build/binutils/nm-new 2.24.51.20131021
Running [...]/tschwinge/Paul_Desmond/binutils/testsuite/binutils-all/objcopy.exp ...
Version [...]/tschwinge/Paul_Desmond.build/binutils/objcopy 2.24.51.20131021
Running [...]/tschwinge/Paul_Desmond/binutils/testsuite/binutils-all/objdump.exp ...
Version [...]/tschwinge/Paul_Desmond.build/binutils/objdump 2.24.51.20131021
Running [...]/tschwinge/Paul_Desmond/binutils/testsuite/binutils-all/readelf.exp ...
Version [...]/tschwinge/Paul_Desmond.build/binutils/readelf 2.24.51.20131021
Running [...]/tschwinge/Paul_Desmond/binutils/testsuite/binutils-all/size.exp ...
Version [...]/tschwinge/Paul_Desmond.build/binutils/size 2.24.51.20131021
Running [...]/tschwinge/Paul_Desmond/binutils/testsuite/binutils-all/vax/objdump.exp ...
Running [...]/tschwinge/Paul_Desmond/binutils/testsuite/binutils-all/windres/windres.exp ...
Running [...]/tschwinge/Paul_Desmond/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...

		=== binutils Summary ===

# of expected passes		94
# of unsupported tests		3
make[5]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/binutils'
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'
make[2]: Entering directory `[...]/tschwinge/Paul_Desmond.build/etc'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/etc'
make[2]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gas'
Making check in doc
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gas/doc'
make[3]: Nothing to be done for `check'.
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gas/doc'
Making check in po
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gas/po'
make[3]: Nothing to be done for `check'.
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gas/po'
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gas'
make  check-DEJAGNU
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gas'
Making a new site.exp file...
if [ -d testsuite ]; then \
	  true; \
	else \
	  mkdir testsuite; \
	fi
rm -f testsuite/site.exp
cp site.exp testsuite/site.exp
rootme=`pwd`; export rootme; \
	srcdir=`cd ../../Paul_Desmond/gas; pwd` ; export srcdir ; \
	LC_ALL=C; export LC_ALL; \
	EXPECT=expect ; export EXPECT ; \
	runtest=runtest; \
	cd testsuite; \
	if /bin/dash -c "$runtest --version" > /dev/null 2>&1; then \
	  $runtest --tool gas --srcdir ${srcdir}/testsuite \
		; \
	else echo "WARNING: could not find \`runtest'" 1>&2; :;\
	fi
WARNING: Couldn't find tool init file
Test Run By thomas on Tue Jan  7 18:51:36 2014
Native configuration is i686-unknown-gnu0.5

		=== gas tests ===

Schedule of variations:
    unix

Running target unix
Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
Using [...]/tschwinge/Paul_Desmond/gas/testsuite/config/default.exp as tool-and-target-specific interface file.
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/aarch64/aarch64.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/all/gas.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/alpha/alpha.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/arc/arc.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/arc/warn.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/arm/arm.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/bfin/bfin.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/bfin/error.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/cfi/cfi.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/cr16/cr16.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/cr16/pic.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/cris/cris.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/crx/allinsn.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/d10v/d10v.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/d30v/d30.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/dlx/alltests.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/elf/elf.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/epiphany/allinsn.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/fr30/allinsn.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/fr30/fr30.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/frv/allinsn.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/h8300/h8300-coff.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/h8300/h8300-elf.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/h8300/h8300.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/h8300/t01_mov.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/h8300/t02_mova.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/h8300/t03_add.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/h8300/t04_sub.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/h8300/t05_cmp.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/h8300/t06_ari2.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/h8300/t07_ari3.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/h8300/t08_or.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/h8300/t09_xor.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/h8300/t10_and.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/h8300/t11_logs.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/h8300/t12_bit.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/h8300/t13_otr.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/hppa/basic/basic.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/hppa/parse/parse.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/hppa/reloc/reloc.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/hppa/unsorted/unsorted.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/i386/i386.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/i386/ilp32/cfi/ilp32.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/i386/ilp32/elf/ilp32.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/i386/ilp32/ilp32.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/i386/ilp32/lns/ilp32.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/i860/i860.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/ia64/ia64.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/ieee-fp/x930509a.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/iq2000/allinsn.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/iq2000/load-hazards.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/iq2000/odd-ldw.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/iq2000/odd-sdw.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/iq2000/yield.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/lm32/all.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/lns/lns.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/m32r/allinsn.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/m32r/error.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/m32r/m32r.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/m32r/m32r2.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/m32r/m32rx.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/m32r/pic.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/m32r/rel32.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/m68hc11/m68hc11.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/m68k-coff/gas.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/m68k/all.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/mach-o/mach-o.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/macros/macros.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/mcore/allinsn.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/mep/allinsn.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/mep/complex-relocs.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/metag/metag.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/microblaze/allinsn.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/microblaze/endian.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/microblaze/relax_size.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/microblaze/reloc_sym.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/microblaze/special_reg.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/mips/mips.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/mmix/mmix-err.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/mmix/mmix-list.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/mmix/mmix.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/mn10200/basic.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/mn10300/basic.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/mri/mri.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/msp430/msp430.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/mt/errors.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/mt/mt.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/mt/relocs.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/nios2/nios2.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/openrisc/allinsn.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/pdp11/pdp11.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/pe/pe.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/pj/pj.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/ppc/aix.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/ppc/ppc.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/rx/rx.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/s390/s390.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/score/relax.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/score/relax_32.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/sh/arch/arch.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/sh/basic.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/sh/err.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/sh/sh64/err.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/sh/sh64/sh64.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/sparc-solaris/addend.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/sparc-solaris/gas.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/sparc/mismatch.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/sparc/sparc.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/sun4/addend.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/symver/symver.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/tic4x/tic4x.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/tic54x/tic54x.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/tic6x/tic6x.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/tilegx/tilegx.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/tilepro/tilepro.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/v850/basic.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/vax/vax.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/xc16x/xc16x.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/xgate/xgate.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/xstormy16/allinsn.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/xtensa/all.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/xtensa/xtensa-err.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/z80/z80.exp ...
Running [...]/tschwinge/Paul_Desmond/gas/testsuite/gas/z8k/z8k.exp ...

		=== gas Summary ===

# of expected passes		414
../as-new 2.24.51.20131021

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/libiberty'
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'
Making info in doc
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
make[3]: Nothing to be done for `info'.
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/doc'
Making info in 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'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/bfd/po'
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/bfd'
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'
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'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/opcodes'
Making all in po
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/opcodes/po'
make[4]: Nothing to be done for `all'.
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'
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'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gas/doc'
Making all in po
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gas/po'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gas/po'
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gas'
make[4]: Nothing to be done for `all-am'.
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'
Making info in doc
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/binutils/doc'
make[3]: Nothing to be done for `info'.
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'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/binutils/po'
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/binutils'
make[4]: Nothing to be done for `all-am'.
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'
make[2]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gold'
Making check in po
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gold/po'
make[3]: Nothing to be done for `check'.
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gold/po'
Making check in testsuite
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gold/testsuite'
make  check-am
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gold/testsuite'
make  libgoldtest.a object_unittest binary_unittest leb128_unittest icf_virtual_function_folding_test large_symbol_alignment basic_test basic_pic_test basic_static_test basic_static_pic_test basic_pie_test constructor_test constructor_static_test two_file_test two_file_pic_test two_file_static_test two_file_shared_1_test two_file_shared_2_test two_file_shared_1_pic_2_test two_file_shared_2_pic_1_test two_file_same_shared_test two_file_separate_shared_12_test two_file_separate_shared_21_test two_file_relocatable_test two_file_pie_test two_file_shared_1_nonpic_test two_file_shared_2_nonpic_test two_file_same_shared_nonpic_test two_file_separate_shared_12_nonpic_test two_file_separate_shared_21_nonpic_test two_file_mixed_shared_test two_file_mixed_2_shared_test two_file_mixed_pie_test two_file_strip_test two_file_same_shared_strip_test common_test_1 common_test_2 exception_test exception_shared_1_test exception_shared_2_test exception_same_shared_test exception_separate_shared_12_test exception_separate_shared_21_test exception_static_test weak_test weak_undef_test weak_undef_nonpic_test weak_alias_test weak_plt copy_test tls_test tls_pic_test tls_pie_test tls_pie_pic_test tls_shared_test tls_shared_ie_test tls_shared_gd_to_ie_test tls_shared_gnu2_gd_to_ie_test tls_shared_gnu2_test tls_static_test tls_static_pic_test tls_shared_nonpic_test many_sections_test many_sections_r_test initpri1 initpri2 initpri3a flagstest_o_specialfile flagstest_compress_debug_sections flagstest_o_specialfile_and_compress_debug_sections flagstest_o_ttext_1 ver_test ver_test_2 ver_test_6 ver_test_8 ver_test_9 ver_test_11 ver_test_12 protected_1 protected_2 relro_test relro_now_test relro_strip_test relro_script_test script_test_1 script_test_2 justsyms justsyms_exec binary_test script_test_3 tls_phdrs_script_test tls_script_test script_test_11 thin_archive_test_1 thin_archive_test_2   exclude_libs_test local_labels_test discard_locals_test  permission_test searched_file_test ifuncmain1static ifuncmain1picstatic ifuncmain1 ifuncmain1pic ifuncmain1vis ifuncmain1vispic ifuncmain1staticpic ifuncmain1pie ifuncmain1vispie ifuncmain1staticpie ifuncmain2static ifuncmain2picstatic ifuncmain2 ifuncmain2pic ifuncmain3 ifuncmain4static ifuncmain4picstatic ifuncmain4 ifuncmain5static ifuncmain5picstatic ifuncmain5 ifuncmain5pic ifuncmain5staticpic ifuncmain5pie ifuncmain6pie ifuncmain7static ifuncmain7picstatic ifuncmain7 ifuncmain7pic ifuncmain7pie ifuncvar start_lib_test  \
	  incremental_test.sh gc_comdat_test.sh gc_tls_test.sh gc_orphan_section_test.sh pr14265.sh icf_test.sh icf_keep_unique_test.sh icf_safe_test.sh icf_safe_so_test.sh final_layout.sh text_section_grouping.sh section_sorting_name.sh icf_preemptible_functions_test.sh icf_string_merge_test.sh icf_sht_rel_addend_test.sh merge_string_literals.sh two_file_shared.sh weak_plt.sh debug_msg.sh missing_key_func.sh undef_symbol.sh ver_test_1.sh ver_test_2.sh ver_test_4.sh ver_test_5.sh ver_test_7.sh ver_test_10.sh relro_test.sh ver_matching_test.sh script_test_3.sh script_test_4.sh script_test_5.sh script_test_6.sh script_test_7.sh script_test_8.sh script_test_9.sh dynamic_list.sh    exclude_libs_test.sh discard_locals_test.sh hidden_test.sh retain_symbols_file_test.sh no_version_test.sh strong_ref_weak_def.sh dyn_weak_ref.sh memory_test.sh gdb_index_test_1.sh gdb_index_test_2.sh gdb_index_test_3.sh gdb_index_test_4.sh script_test_10.sh split_i386.sh    incremental_test.stdout gc_comdat_test.stdout gc_tls_test.stdout gc_orphan_section_test.stdout pr14265.stdout icf_test.map icf_keep_unique_test.stdout icf_safe_test_1.stdout icf_safe_test_2.stdout icf_safe_test.map icf_safe_so_test_1.stdout icf_safe_so_test_2.stdout icf_safe_so_test.map final_layout.stdout text_section_grouping.stdout text_section_no_grouping.stdout section_sorting_name.stdout icf_preemptible_functions_test.stdout icf_string_merge_test.stdout icf_sht_rel_addend_test.stdout merge_string_literals.stdout two_file_shared.dbg weak_plt_shared.so debug_msg.err missing_key_func.err debug_msg_cdebug.err debug_msg_so.err debug_msg_ndebug.err undef_symbol.err flagstest_o_ttext_2 ver_test_1.syms ver_test_2.syms ver_test_4.syms ver_test_5.syms ver_test_7.syms ver_test_10.syms protected_3.err relro_test.stdout ver_matching_test.stdout script_test_3.stdout script_test_4.stdout script_test_5.stdout script_test_6.stdout script_test_7.stdout script_test_8.stdout script_test_9.stdout dynamic_list.stdout    exclude_libs_test.syms discard_locals_test.syms discard_locals_relocatable_test1.syms discard_locals_relocatable_test2.syms hidden_test.err retain_symbols_file_test.stdout no_version_test.stdout strong_ref_weak_def.stdout dyn_weak_ref.stdout memory_test.stdout gdb_index_test_1.stdout gdb_index_test_2.stdout gdb_index_test_3.stdout gdb_index_test_4.stdout script_test_10.stdout split_i386_1.stdout split_i386_2.stdout split_i386_3.stdout split_i386_4.stdout split_i386_r.stdout   
make[5]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gold/testsuite'
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT test.o -MD -MP -MF .deps/test.Tpo -c -o test.o ../../../Paul_Desmond/gold/testsuite/test.cc
mv -f .deps/test.Tpo .deps/test.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT testmain.o -MD -MP -MF .deps/testmain.Tpo -c -o testmain.o ../../../Paul_Desmond/gold/testsuite/testmain.cc
mv -f .deps/testmain.Tpo .deps/testmain.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT testfile.o -MD -MP -MF .deps/testfile.Tpo -c -o testfile.o ../../../Paul_Desmond/gold/testsuite/testfile.cc
mv -f .deps/testfile.Tpo .deps/testfile.Po
rm -f libgoldtest.a
ar cru libgoldtest.a test.o testmain.o testfile.o 
ranlib libgoldtest.a
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT object_unittest.o -MD -MP -MF .deps/object_unittest.Tpo -c -o object_unittest.o ../../../Paul_Desmond/gold/testsuite/object_unittest.cc
mv -f .deps/object_unittest.Tpo .deps/object_unittest.Po
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o object_unittest | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` object_unittest.o libgoldtest.a ../libgold.a ../../libiberty/libiberty.a    -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT binary_unittest.o -MD -MP -MF .deps/binary_unittest.Tpo -c -o binary_unittest.o ../../../Paul_Desmond/gold/testsuite/binary_unittest.cc
mv -f .deps/binary_unittest.Tpo .deps/binary_unittest.Po
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o binary_unittest | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` binary_unittest.o libgoldtest.a ../libgold.a ../../libiberty/libiberty.a    -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT leb128_unittest.o -MD -MP -MF .deps/leb128_unittest.Tpo -c -o leb128_unittest.o ../../../Paul_Desmond/gold/testsuite/leb128_unittest.cc
mv -f .deps/leb128_unittest.Tpo .deps/leb128_unittest.Po
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o leb128_unittest | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` leb128_unittest.o libgoldtest.a ../libgold.a ../../libiberty/libiberty.a    -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -fPIE -g -o icf_virtual_function_folding_test.o ../../../Paul_Desmond/gold/testsuite/icf_virtual_function_folding_test.cc
test -d gcctestdir || mkdir -p gcctestdir
rm -f gcctestdir/ld
(cd gcctestdir && ln -s ../../ld-new ld)
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o icf_virtual_function_folding_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--icf=all icf_virtual_function_folding_test.o -pie
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT large_symbol_alignment.o -MD -MP -MF .deps/large_symbol_alignment.Tpo -c -o large_symbol_alignment.o ../../../Paul_Desmond/gold/testsuite/large_symbol_alignment.cc
mv -f .deps/large_symbol_alignment.Tpo .deps/large_symbol_alignment.Po
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/  -o large_symbol_alignment large_symbol_alignment.o  -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -o basic_test.o ../../../Paul_Desmond/gold/testsuite/basic_test.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o basic_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ basic_test.o
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -fpic -o basic_pic_test.o ../../../Paul_Desmond/gold/testsuite/basic_test.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o basic_pic_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ basic_pic_test.o
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o basic_static_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -static basic_test.o
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o basic_static_pic_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -static basic_pic_test.o
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -fpie -o basic_pie_test.o ../../../Paul_Desmond/gold/testsuite/basic_test.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o basic_pie_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -pie basic_pie_test.o
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT constructor_test.o -MD -MP -MF .deps/constructor_test.Tpo -c -o constructor_test.o ../../../Paul_Desmond/gold/testsuite/constructor_test.cc
mv -f .deps/constructor_test.Tpo .deps/constructor_test.Po
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/  -o constructor_test constructor_test.o  -lz 
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -static  -o constructor_static_test constructor_test.o  -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT two_file_test_1.o -MD -MP -MF .deps/two_file_test_1.Tpo -c -o two_file_test_1.o ../../../Paul_Desmond/gold/testsuite/two_file_test_1.cc
mv -f .deps/two_file_test_1.Tpo .deps/two_file_test_1.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT two_file_test_1b.o -MD -MP -MF .deps/two_file_test_1b.Tpo -c -o two_file_test_1b.o ../../../Paul_Desmond/gold/testsuite/two_file_test_1b.cc
mv -f .deps/two_file_test_1b.Tpo .deps/two_file_test_1b.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT two_file_test_2.o -MD -MP -MF .deps/two_file_test_2.Tpo -c -o two_file_test_2.o ../../../Paul_Desmond/gold/testsuite/two_file_test_2.cc
mv -f .deps/two_file_test_2.Tpo .deps/two_file_test_2.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT two_file_test_main.o -MD -MP -MF .deps/two_file_test_main.Tpo -c -o two_file_test_main.o ../../../Paul_Desmond/gold/testsuite/two_file_test_main.cc
mv -f .deps/two_file_test_main.Tpo .deps/two_file_test_main.Po
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/  -o two_file_test two_file_test_1.o two_file_test_1b.o two_file_test_2.o two_file_test_main.o  -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o two_file_test_1_pic.o ../../../Paul_Desmond/gold/testsuite/two_file_test_1.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o two_file_test_1b_pic.o ../../../Paul_Desmond/gold/testsuite/two_file_test_1b.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o two_file_test_2_pic.o ../../../Paul_Desmond/gold/testsuite/two_file_test_2.cc
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/  -o two_file_pic_test two_file_test_main.o two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2_pic.o -lz 
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -static  -o two_file_static_test two_file_test_1.o two_file_test_1b.o two_file_test_2.o two_file_test_main.o  -lz 
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o two_file_shared_1.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared two_file_test_1_pic.o two_file_test_1b_pic.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_shared_1_test two_file_test_2.o two_file_test_main.o two_file_shared_1.so -lz 
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o two_file_shared_2.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared two_file_test_2_pic.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_shared_2_test two_file_test_1.o two_file_test_1b.o two_file_test_main.o two_file_shared_2.so -lz 
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_shared_1_pic_2_test two_file_test_main.o two_file_test_1_pic.o two_file_test_1b_pic.o two_file_shared_2.so -lz 
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_shared_2_pic_1_test two_file_test_main.o two_file_test_2_pic.o two_file_shared_1.so -lz 
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o two_file_shared.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2_pic.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_same_shared_test two_file_test_main.o two_file_shared.so -lz 
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_separate_shared_12_test two_file_test_main.o two_file_shared_1.so two_file_shared_2.so -lz 
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_separate_shared_21_test two_file_test_main.o two_file_shared_2.so two_file_shared_1.so -lz 
gcctestdir/ld -r -o two_file_relocatable.o two_file_test_1.o two_file_test_1b.o two_file_test_2.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_relocatable_test two_file_test_main.o two_file_relocatable.o -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpie -o two_file_test_1_pie.o ../../../Paul_Desmond/gold/testsuite/two_file_test_1.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpie -o two_file_test_1b_pie.o ../../../Paul_Desmond/gold/testsuite/two_file_test_1b.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpie -o two_file_test_2_pie.o ../../../Paul_Desmond/gold/testsuite/two_file_test_2.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpie -o two_file_test_main_pie.o ../../../Paul_Desmond/gold/testsuite/two_file_test_main.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o two_file_pie_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -pie two_file_test_1_pie.o two_file_test_1b_pie.o two_file_test_2_pie.o two_file_test_main_pie.o
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o two_file_shared_1_nonpic.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared two_file_test_1.o two_file_test_1b.o -Wl,-z,notext
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_shared_1_nonpic_test two_file_test_2.o two_file_test_main.o two_file_shared_1_nonpic.so -lz 
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o two_file_shared_2_nonpic.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared two_file_test_2.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_shared_2_nonpic_test two_file_test_1.o two_file_test_1b.o two_file_test_main.o two_file_shared_2_nonpic.so -lz 
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o two_file_shared_nonpic.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared two_file_test_1.o two_file_test_1b.o two_file_test_2.o -Wl,-z,notext
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_same_shared_nonpic_test two_file_test_main.o two_file_shared_nonpic.so -lz 
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_separate_shared_12_nonpic_test two_file_test_main.o two_file_shared_1_nonpic.so two_file_shared_2_nonpic.so -lz 
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_separate_shared_21_nonpic_test two_file_test_main.o two_file_shared_2_nonpic.so two_file_shared_1_nonpic.so -lz 
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o two_file_shared_mixed.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2.o -Wl,-z,notext
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_mixed_shared_test two_file_test_main.o two_file_shared_mixed.so -lz 
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o two_file_shared_mixed_1.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared two_file_test_1.o two_file_test_1b_pic.o two_file_shared_2.so -Wl,-z,notext
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_mixed_2_shared_test two_file_test_main.o two_file_shared_mixed_1.so two_file_shared_2.so -lz 
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o two_file_mixed_pie_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,-R,. -pie two_file_test_1.o two_file_test_1b_pie.o two_file_test_main_pie.o two_file_shared_2.so
../../binutils/strip-new -o two_file_strip_test two_file_test
../../binutils/strip-new -S -o two_file_shared_strip.so two_file_shared.so
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R.  -o two_file_same_shared_strip_test two_file_test_main.o two_file_shared_strip.so -lz 
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT common_test_1.o -MD -MP -MF .deps/common_test_1.Tpo -c -o common_test_1.o ../../../Paul_Desmond/gold/testsuite/common_test_1.c
mv -f .deps/common_test_1.Tpo .deps/common_test_1.Po
gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/  -o common_test_1 common_test_1.o  -lz 
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fpic -o common_test_2_pic.o ../../../Paul_Desmond/gold/testsuite/common_test_2.c
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fpic -o common_test_3_pic.o ../../../Paul_Desmond/gold/testsuite/common_test_3.c
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o common_test_3.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared common_test_3_pic.o -Wl,--version-script,../../../Paul_Desmond/gold/testsuite/ver_test_2.script
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o common_test_2.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared common_test_2_pic.o common_test_3.so
gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o common_test_2 common_test_1.o common_test_2.so common_test_3.so -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT exception_test_main.o -MD -MP -MF .deps/exception_test_main.Tpo -c -o exception_test_main.o ../../../Paul_Desmond/gold/testsuite/exception_test_main.cc
mv -f .deps/exception_test_main.Tpo .deps/exception_test_main.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT exception_test_1.o -MD -MP -MF .deps/exception_test_1.Tpo -c -o exception_test_1.o ../../../Paul_Desmond/gold/testsuite/exception_test_1.cc
mv -f .deps/exception_test_1.Tpo .deps/exception_test_1.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT exception_test_2.o -MD -MP -MF .deps/exception_test_2.Tpo -c -o exception_test_2.o ../../../Paul_Desmond/gold/testsuite/exception_test_2.cc
mv -f .deps/exception_test_2.Tpo .deps/exception_test_2.Po
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/  -o exception_test exception_test_main.o exception_test_1.o exception_test_2.o  -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o exception_test_1_pic.o ../../../Paul_Desmond/gold/testsuite/exception_test_1.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o exception_shared_1.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared exception_test_1_pic.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o exception_shared_1_test exception_test_2.o exception_test_main.o exception_shared_1.so -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o exception_test_2_pic.o ../../../Paul_Desmond/gold/testsuite/exception_test_2.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o exception_shared_2.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared exception_test_2_pic.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o exception_shared_2_test exception_test_1.o exception_test_main.o exception_shared_2.so -lz 
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o exception_shared.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared exception_test_1_pic.o exception_test_2_pic.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o exception_same_shared_test exception_test_main.o exception_shared.so -lz 
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,. -Wl,--no-as-needed  -o exception_separate_shared_12_test exception_test_main.o exception_shared_1.so exception_shared_2.so -lz 
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,. -Wl,--no-as-needed  -o exception_separate_shared_21_test exception_test_main.o exception_shared_2.so exception_shared_1.so -lz 
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -static  -o exception_static_test exception_test_main.o exception_test_1.o exception_test_2.o  -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT weak_test.o -MD -MP -MF .deps/weak_test.Tpo -c -o weak_test.o ../../../Paul_Desmond/gold/testsuite/weak_test.cc
mv -f .deps/weak_test.Tpo .deps/weak_test.Po
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/  -o weak_test weak_test.o  -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT weak_undef_test.o -MD -MP -MF .deps/weak_undef_test.Tpo -c -o weak_undef_test.o ../../../Paul_Desmond/gold/testsuite/weak_undef_test.cc
mv -f .deps/weak_undef_test.Tpo .deps/weak_undef_test.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o weak_undef_file1.o ../../../Paul_Desmond/gold/testsuite/weak_undef_file1.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o weak_undef_lib.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared weak_undef_file1.o
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o weak_undef_file2.o ../../../Paul_Desmond/gold/testsuite/weak_undef_file2.cc
test -d alt || mkdir -p alt
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o alt/weak_undef_lib.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared weak_undef_file2.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,alt  -o weak_undef_test weak_undef_test.o -L . weak_undef_lib.so -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -o weak_undef_file1_nonpic.o ../../../Paul_Desmond/gold/testsuite/weak_undef_file1.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o weak_undef_lib_nonpic.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared weak_undef_file1_nonpic.o -Wl,-z,notext
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -o weak_undef_file2_nonpic.o ../../../Paul_Desmond/gold/testsuite/weak_undef_file2.cc
test -d alt || mkdir -p alt
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o alt/weak_undef_lib_nonpic.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared weak_undef_file2_nonpic.o -Wl,-z,notext
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,alt  -o weak_undef_nonpic_test weak_undef_test.o -L . weak_undef_lib_nonpic.so -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT weak_alias_test_main.o -MD -MP -MF .deps/weak_alias_test_main.Tpo -c -o weak_alias_test_main.o ../../../Paul_Desmond/gold/testsuite/weak_alias_test_main.cc
mv -f .deps/weak_alias_test_main.Tpo .deps/weak_alias_test_main.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o weak_alias_test_1_pic.o ../../../Paul_Desmond/gold/testsuite/weak_alias_test_1.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o weak_alias_test_1.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared weak_alias_test_1_pic.o
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o weak_alias_test_2_pic.o ../../../Paul_Desmond/gold/testsuite/weak_alias_test_2.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o weak_alias_test_2.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared weak_alias_test_2_pic.o
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -o weak_alias_test_3.o ../../../Paul_Desmond/gold/testsuite/weak_alias_test_3.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o weak_alias_test_4_pic.o ../../../Paul_Desmond/gold/testsuite/weak_alias_test_4.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o weak_alias_test_4.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared weak_alias_test_4_pic.o
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o weak_alias_test_5_pic.o ../../../Paul_Desmond/gold/testsuite/weak_alias_test_5.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o weak_alias_test_5.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared weak_alias_test_5_pic.o \
		-Wl,--version-script,../../../Paul_Desmond/gold/testsuite/weak_alias_test.script
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o weak_alias_test weak_alias_test_main.o weak_alias_test_1.so weak_alias_test_2.so weak_alias_test_3.o weak_alias_test_4.so weak_alias_test_5.so -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o weak_plt_main_pic.o ../../../Paul_Desmond/gold/testsuite/weak_plt_main.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o weak_plt | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ weak_plt_main_pic.o
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT copy_test.o -MD -MP -MF .deps/copy_test.Tpo -c -o copy_test.o ../../../Paul_Desmond/gold/testsuite/copy_test.cc
mv -f .deps/copy_test.Tpo .deps/copy_test.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o copy_test_1_pic.o ../../../Paul_Desmond/gold/testsuite/copy_test_1.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o copy_test_1.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared copy_test_1_pic.o
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o copy_test_2_pic.o ../../../Paul_Desmond/gold/testsuite/copy_test_2.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o copy_test_2.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared copy_test_2_pic.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o copy_test copy_test.o copy_test_1.so copy_test_2.so -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT tls_test.o -MD -MP -MF .deps/tls_test.Tpo -c -o tls_test.o ../../../Paul_Desmond/gold/testsuite/tls_test.cc
mv -f .deps/tls_test.Tpo .deps/tls_test.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT tls_test_file2.o -MD -MP -MF .deps/tls_test_file2.Tpo -c -o tls_test_file2.o ../../../Paul_Desmond/gold/testsuite/tls_test_file2.cc
mv -f .deps/tls_test_file2.Tpo .deps/tls_test_file2.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT tls_test_main.o -MD -MP -MF .deps/tls_test_main.Tpo -c -o tls_test_main.o ../../../Paul_Desmond/gold/testsuite/tls_test_main.cc
mv -f .deps/tls_test_main.Tpo .deps/tls_test_main.Po
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fopenmp -o tls_test_c.o ../../../Paul_Desmond/gold/testsuite/tls_test_c.c
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/  -o tls_test tls_test.o tls_test_file2.o tls_test_main.o tls_test_c.o -lpthread -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o tls_test_pic.o ../../../Paul_Desmond/gold/testsuite/tls_test.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o tls_test_file2_pic.o ../../../Paul_Desmond/gold/testsuite/tls_test_file2.cc
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fpic -fopenmp -o tls_test_c_pic.o ../../../Paul_Desmond/gold/testsuite/tls_test_c.c
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/  -o tls_pic_test tls_test_main.o tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o -lpthread -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpie -o tls_test_main_pie.o ../../../Paul_Desmond/gold/testsuite/tls_test_main.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpie -o tls_test_pie.o ../../../Paul_Desmond/gold/testsuite/tls_test.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpie -o tls_test_file2_pie.o ../../../Paul_Desmond/gold/testsuite/tls_test_file2.cc
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fpic -fopenmp -o tls_test_c_pie.o ../../../Paul_Desmond/gold/testsuite/tls_test_c.c
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o tls_pie_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -pie tls_test_main_pie.o tls_test_pie.o tls_test_file2_pie.o tls_test_c_pie.o -lpthread
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o tls_pie_pic_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -pie tls_test_main_pie.o tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o -lpthread
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o tls_test_shared.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o -Wl,-z,defs
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o tls_shared_test tls_test_main.o tls_test_shared.so -lpthread -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -ftls-model=initial-exec -o tls_test_pic_ie.o ../../../Paul_Desmond/gold/testsuite/tls_test.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -ftls-model=initial-exec -o tls_test_file2_pic_ie.o ../../../Paul_Desmond/gold/testsuite/tls_test_file2.cc
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fpic -ftls-model=initial-exec -fopenmp -o tls_test_c_pic_ie.o ../../../Paul_Desmond/gold/testsuite/tls_test_c.c
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o tls_test_ie_shared.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared tls_test_pic_ie.o tls_test_file2_pic_ie.o tls_test_c_pic_ie.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o tls_shared_ie_test tls_test_main.o tls_test_ie_shared.so -lpthread -lz 
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o tls_test_shared2.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared tls_test_file2_pic.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o tls_shared_gd_to_ie_test tls_test_main.o tls_test_pic.o tls_test_c_pic.o tls_test_shared2.so -lpthread -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -mtls-dialect=gnu2 -o tls_test_gnu2.o ../../../Paul_Desmond/gold/testsuite/tls_test.cc
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fpic -mtls-dialect=gnu2 -fopenmp -o tls_test_c_gnu2.o ../../../Paul_Desmond/gold/testsuite/tls_test_c.c
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -mtls-dialect=gnu2 -o tls_test_file2_gnu2.o ../../../Paul_Desmond/gold/testsuite/tls_test_file2.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o tls_test_gnu2_shared2.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared tls_test_file2_gnu2.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o tls_shared_gnu2_gd_to_ie_test tls_test_main.o tls_test_gnu2.o tls_test_c_gnu2.o tls_test_gnu2_shared2.so -lpthread -lz 
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o tls_test_gnu2_shared.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared tls_test_gnu2.o tls_test_file2_gnu2.o tls_test_c_gnu2.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o tls_shared_gnu2_test tls_test_main.o tls_test_gnu2_shared.so -lpthread -lz 
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -static  -o tls_static_test tls_test.o tls_test_file2.o tls_test_main.o tls_test_c.o -lpthread -lz 
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -static  -o tls_static_pic_test tls_test_main.o tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o -lpthread -lz 
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o tls_test_shared_nonpic.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared tls_test.o tls_test_file2.o tls_test_c.o -Wl,-z,notext
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o tls_shared_nonpic_test tls_test_main.o tls_test_shared_nonpic.so -lpthread -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT many_sections_test.o -MD -MP -MF .deps/many_sections_test.Tpo -c -o many_sections_test.o ../../../Paul_Desmond/gold/testsuite/many_sections_test.cc
mv -f .deps/many_sections_test.Tpo .deps/many_sections_test.Po
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -rdynamic  -o many_sections_test many_sections_test.o  -lz 
gcctestdir/ld -r -o many_sections_r_test.o many_sections_test.o
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o many_sections_r_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ many_sections_r_test.o -lz 
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT initpri1.o -MD -MP -MF .deps/initpri1.Tpo -c -o initpri1.o ../../../Paul_Desmond/gold/testsuite/initpri1.c
mv -f .deps/initpri1.Tpo .deps/initpri1.Po
gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/  -o initpri1 initpri1.o  -lz 
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT initpri2.o -MD -MP -MF .deps/initpri2.Tpo -c -o initpri2.o ../../../Paul_Desmond/gold/testsuite/initpri2.c
mv -f .deps/initpri2.Tpo .deps/initpri2.Po
gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,--ctors-in-init-array  -o initpri2 initpri2.o  -lz 
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT initpri3.o -MD -MP -MF .deps/initpri3.Tpo -c -o initpri3.o ../../../Paul_Desmond/gold/testsuite/initpri3.c
mv -f .deps/initpri3.Tpo .deps/initpri3.Po
gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/  -o initpri3a initpri3.o  -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -g -c -o flagstest_debug.o ../../../Paul_Desmond/gold/testsuite/constructor_test.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o flagstest_o_specialfile | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -o /dev/stdout flagstest_debug.o 2>&1 | cat > flagstest_o_specialfile
chmod a+x flagstest_o_specialfile
test -s flagstest_o_specialfile
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o flagstest_compress_debug_sections | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -o flagstest_compress_debug_sections flagstest_debug.o -Wl,--compress-debug-sections=zlib
test -s flagstest_compress_debug_sections
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o flagstest_o_specialfile_and_compress_debug_sections | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -o /dev/stdout flagstest_debug.o -Wl,--compress-debug-sections=zlib 2>&1 | cat > flagstest_o_specialfile_and_compress_debug_sections
chmod a+x flagstest_o_specialfile_and_compress_debug_sections
test -s flagstest_o_specialfile_and_compress_debug_sections
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o flagstest_o_ttext_1 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -o flagstest_o_ttext_1 flagstest_debug.o -Wl,-Ttext,0x400000 -Wl,-Tdata,0x800000
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT ver_test_main.o -MD -MP -MF .deps/ver_test_main.Tpo -c -o ver_test_main.o ../../../Paul_Desmond/gold/testsuite/ver_test_main.cc
mv -f .deps/ver_test_main.Tpo .deps/ver_test_main.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o ver_test_1.o ../../../Paul_Desmond/gold/testsuite/ver_test_1.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o ver_test_2.o ../../../Paul_Desmond/gold/testsuite/ver_test_2.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o ver_test_4.o ../../../Paul_Desmond/gold/testsuite/ver_test_4.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ver_test_4.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,--version-script,../../../Paul_Desmond/gold/testsuite/ver_test_4.script ver_test_4.o
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ver_test_2.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,--version-script,../../../Paul_Desmond/gold/testsuite/ver_test_2.script -Wl,-R,. ver_test_2.o ver_test_4.so
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o ver_test_3.o ../../../Paul_Desmond/gold/testsuite/ver_test_3.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ver_test_1.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared ver_test_1.o ver_test_2.so ver_test_3.o ver_test_4.so
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o ver_test ver_test_main.o ver_test_1.so ver_test_2.so ver_test_4.so -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT ver_test_main_2.o -MD -MP -MF .deps/ver_test_main_2.Tpo -c -o ver_test_main_2.o ../../../Paul_Desmond/gold/testsuite/ver_test_main_2.cc
mv -f .deps/ver_test_main_2.Tpo .deps/ver_test_main_2.Po
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o ver_test_2 ver_test_main_2.o ver_test_4.so ver_test_2.so -lz 
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT ver_test_6.o -MD -MP -MF .deps/ver_test_6.Tpo -c -o ver_test_6.o ../../../Paul_Desmond/gold/testsuite/ver_test_6.c
mv -f .deps/ver_test_6.Tpo .deps/ver_test_6.Po
gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o ver_test_6 ver_test_6.o ver_test_2.so -lz 
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ver_test_8_2.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,--version-script,../../../Paul_Desmond/gold/testsuite/ver_test_8.script two_file_test_2_pic.o
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ver_test_8_1.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared two_file_test_1_pic.o two_file_test_1b_pic.o ver_test_8_2.so
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o ver_test_8 two_file_test_main.o ver_test_8_1.so ver_test_8_2.so -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o ver_test_9.o ../../../Paul_Desmond/gold/testsuite/ver_test_9.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o ver_test_5.o ../../../Paul_Desmond/gold/testsuite/ver_test_5.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ver_test_5.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,--version-script,../../../Paul_Desmond/gold/testsuite/ver_test_5.script ver_test_5.o ver_test_4.so
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ver_test_9.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,-R,. ver_test_9.o ver_test_5.so ver_test_4.so
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o ver_test_9 ver_test_main.o ver_test_9.so -lz 
../../binutils/ar rc ver_test_11.a ver_test_1.o ver_test_2.o ver_test_4.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o ver_test_11 ver_test_main_2.o ver_test_11.a -lz 
gcctestdir/ld -r -o ver_test_12.o ver_test_1.o ver_test_2.o ver_test_4.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o ver_test_12 ver_test_main_2.o ver_test_12.o -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT protected_main_1.o -MD -MP -MF .deps/protected_main_1.Tpo -c -o protected_main_1.o ../../../Paul_Desmond/gold/testsuite/protected_main_1.cc
mv -f .deps/protected_main_1.Tpo .deps/protected_main_1.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT protected_main_2.o -MD -MP -MF .deps/protected_main_2.Tpo -c -o protected_main_2.o ../../../Paul_Desmond/gold/testsuite/protected_main_2.cc
mv -f .deps/protected_main_2.Tpo .deps/protected_main_2.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT protected_main_3.o -MD -MP -MF .deps/protected_main_3.Tpo -c -o protected_main_3.o ../../../Paul_Desmond/gold/testsuite/protected_main_3.cc
mv -f .deps/protected_main_3.Tpo .deps/protected_main_3.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o protected_1_pic.o ../../../Paul_Desmond/gold/testsuite/protected_1.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o protected_2_pic.o ../../../Paul_Desmond/gold/testsuite/protected_2.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o protected_3_pic.o ../../../Paul_Desmond/gold/testsuite/protected_3.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o protected_1.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared protected_1_pic.o protected_2_pic.o protected_3_pic.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o protected_1 protected_main_1.o protected_main_2.o protected_main_3.o protected_1.so -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT protected_3.o -MD -MP -MF .deps/protected_3.Tpo -c -o protected_3.o ../../../Paul_Desmond/gold/testsuite/protected_3.cc
mv -f .deps/protected_3.Tpo .deps/protected_3.Po
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o protected_2 protected_main_1.o protected_3.o protected_1.so -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT relro_test_main.o -MD -MP -MF .deps/relro_test_main.Tpo -c -o relro_test_main.o ../../../Paul_Desmond/gold/testsuite/relro_test_main.cc
mv -f .deps/relro_test_main.Tpo .deps/relro_test_main.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o relro_test_pic.o ../../../Paul_Desmond/gold/testsuite/relro_test.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o relro_test.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,-z,relro relro_test_pic.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o relro_test relro_test_main.o relro_test.so -lz 
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o relro_now_test.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,-z,relro -Wl,-z,now relro_test_pic.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir -Wl,-R,. -Wl,-z,relro -Wl,-z,now  -o relro_now_test relro_test_main.o relro_now_test.so -lz 
../../binutils/strip-new -o relro_strip_test.so relro_test.so
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o relro_strip_test relro_test_main.o relro_strip_test.so -lz 
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o relro_script_test.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,-z,relro -Wl,-T,../../../Paul_Desmond/gold/testsuite/relro_script_test.t relro_test_pic.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o relro_script_test relro_test_main.o relro_script_test.so -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT script_test_1.o -MD -MP -MF .deps/script_test_1.Tpo -c -o script_test_1.o ../../../Paul_Desmond/gold/testsuite/script_test_1.cc
mv -f .deps/script_test_1.Tpo .deps/script_test_1.Po
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,. -Wl,-T,../../../Paul_Desmond/gold/testsuite/script_test_1.t  -o script_test_1 script_test_1.o  -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT script_test_2.o -MD -MP -MF .deps/script_test_2.Tpo -c -o script_test_2.o ../../../Paul_Desmond/gold/testsuite/script_test_2.cc
mv -f .deps/script_test_2.Tpo .deps/script_test_2.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT script_test_2a.o -MD -MP -MF .deps/script_test_2a.Tpo -c -o script_test_2a.o ../../../Paul_Desmond/gold/testsuite/script_test_2a.cc
mv -f .deps/script_test_2a.Tpo .deps/script_test_2a.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT script_test_2b.o -MD -MP -MF .deps/script_test_2b.Tpo -c -o script_test_2b.o ../../../Paul_Desmond/gold/testsuite/script_test_2b.cc
mv -f .deps/script_test_2b.Tpo .deps/script_test_2b.Po
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,. -Wl,-T,../../../Paul_Desmond/gold/testsuite/script_test_2.t  -o script_test_2 script_test_2.o script_test_2a.o script_test_2b.o  -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT justsyms_1.o -MD -MP -MF .deps/justsyms_1.Tpo -c -o justsyms_1.o ../../../Paul_Desmond/gold/testsuite/justsyms_1.cc
mv -f .deps/justsyms_1.Tpo .deps/justsyms_1.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -o justsyms_2.o ../../../Paul_Desmond/gold/testsuite/justsyms_2.cc
gcctestdir/ld -o justsyms_2r.o -r -T ../../../Paul_Desmond/gold/testsuite/justsyms.t justsyms_2.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,justsyms_2r.o  -o justsyms justsyms_1.o  -lz 
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT justsyms_exec.o -MD -MP -MF .deps/justsyms_exec.Tpo -c -o justsyms_exec.o ../../../Paul_Desmond/gold/testsuite/justsyms_exec.c
mv -f .deps/justsyms_exec.Tpo .deps/justsyms_exec.Po
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -o justsyms_lib.o ../../../Paul_Desmond/gold/testsuite/justsyms_lib.c
gcctestdir/ld -o justsyms_lib -Ttext=0x1000200 -Tdata=0x2000000 -e exported_func justsyms_lib.o
gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,justsyms_lib  -o justsyms_exec justsyms_exec.o  -lz 
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT binary_test.o -MD -MP -MF .deps/binary_test.Tpo -c -o binary_test.o ../../../Paul_Desmond/gold/testsuite/binary_test.cc
mv -f .deps/binary_test.Tpo .deps/binary_test.Po
rm -f binary.txt
ln -s ../../../Paul_Desmond/gold/testsuite/binary.in binary.txt
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,--format,binary,binary.txt,--format,elf  -o binary_test binary_test.o  -lz 
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o script_test_3 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ basic_test.o -Wl,-T,../../../Paul_Desmond/gold/testsuite/script_test_3.t
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-T,../../../Paul_Desmond/gold/testsuite/script_test_3.t  -o tls_phdrs_script_test tls_test.o tls_test_file2.o tls_test_main.o tls_test_c.o -lpthread -lz 
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-T,../../../Paul_Desmond/gold/testsuite/script_test_4.t  -o tls_script_test tls_test.o tls_test_file2.o tls_test_main.o tls_test_c.o -lpthread -lz 
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -g -o script_test_11.o ../../../Paul_Desmond/gold/testsuite/script_test_11.c
gcctestdir/ld -r -o script_test_11_r.o -T ../../../Paul_Desmond/gold/testsuite/script_test_11.t script_test_11.o
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o script_test_11 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ script_test_11_r.o
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT thin_archive_main.o -MD -MP -MF .deps/thin_archive_main.Tpo -c -o thin_archive_main.o ../../../Paul_Desmond/gold/testsuite/thin_archive_main.cc
mv -f .deps/thin_archive_main.Tpo .deps/thin_archive_main.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT thin_archive_test_1.o -MD -MP -MF .deps/thin_archive_test_1.Tpo -c -o thin_archive_test_1.o ../../../Paul_Desmond/gold/testsuite/thin_archive_test_1.cc
mv -f .deps/thin_archive_test_1.Tpo .deps/thin_archive_test_1.Po
test -d alt || mkdir -p alt
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -o alt/thin_archive_test_2.o ../../../Paul_Desmond/gold/testsuite/thin_archive_test_2.cc
rm -f libthin1.a
../../binutils/ar crT libthin1.a thin_archive_test_1.o alt/thin_archive_test_2.o
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT thin_archive_test_3.o -MD -MP -MF .deps/thin_archive_test_3.Tpo -c -o thin_archive_test_3.o ../../../Paul_Desmond/gold/testsuite/thin_archive_test_3.cc
mv -f .deps/thin_archive_test_3.Tpo .deps/thin_archive_test_3.Po
test -d alt || mkdir -p alt
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -o alt/thin_archive_test_4.o ../../../Paul_Desmond/gold/testsuite/thin_archive_test_4.cc
rm -f alt/libthin2.a
../../binutils/ar crT alt/libthin2.a thin_archive_test_3.o alt/thin_archive_test_4.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Lalt  -o thin_archive_test_1 thin_archive_main.o libthin1.a -lthin2 -lz 
rm -f libthin3.a
../../binutils/ar crT libthin3.a thin_archive_test_1.o alt/thin_archive_test_4.o
rm -f alt/libthin4.a
../../binutils/ar crT alt/libthin4.a alt/thin_archive_test_2.o thin_archive_test_3.o
rm -f libthinall.a
../../binutils/ar crT libthinall.a libthin3.a alt/libthin4.a
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -L.  -o thin_archive_test_2 thin_archive_main.o -lthinall -lz 
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT exclude_libs_test.o -MD -MP -MF .deps/exclude_libs_test.Tpo -c -o exclude_libs_test.o ../../../Paul_Desmond/gold/testsuite/exclude_libs_test.c
mv -f .deps/exclude_libs_test.Tpo .deps/exclude_libs_test.Po
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT exclude_libs_test_1.o -MD -MP -MF .deps/exclude_libs_test_1.Tpo -c -o exclude_libs_test_1.o ../../../Paul_Desmond/gold/testsuite/exclude_libs_test_1.c
mv -f .deps/exclude_libs_test_1.Tpo .deps/exclude_libs_test_1.Po
../../binutils/ar rc libexclude_libs_test_1.a exclude_libs_test_1.o
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT exclude_libs_test_2.o -MD -MP -MF .deps/exclude_libs_test_2.Tpo -c -o exclude_libs_test_2.o ../../../Paul_Desmond/gold/testsuite/exclude_libs_test_2.c
mv -f .deps/exclude_libs_test_2.Tpo .deps/exclude_libs_test_2.Po
../../binutils/ar rc libexclude_libs_test_2.a exclude_libs_test_2.o
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT exclude_libs_test_3.o -MD -MP -MF .deps/exclude_libs_test_3.Tpo -c -o exclude_libs_test_3.o ../../../Paul_Desmond/gold/testsuite/exclude_libs_test_3.c
mv -f .deps/exclude_libs_test_3.Tpo .deps/exclude_libs_test_3.Po
test -d alt || mkdir -p alt
../../binutils/ar rc alt/libexclude_libs_test_3.a exclude_libs_test_3.o
gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -L. -Lalt -Wl,--exclude-libs,dummy:libexclude_libs_test_1 -Wl,--exclude-libs,libexclude_libs_test_3  -o exclude_libs_test exclude_libs_test.o -lexclude_libs_test_1 -lexclude_libs_test_2 alt/libexclude_libs_test_3.a -lz 
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -g -c -Wa,-L -o local_labels_test.o ../../../Paul_Desmond/gold/testsuite/ver_test_6.c
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o local_labels_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ local_labels_test.o
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -Wa,-L -o discard_locals_test.o ../../../Paul_Desmond/gold/testsuite/discard_locals_test.c
gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,--discard-locals  -o discard_locals_test discard_locals_test.o libgoldtest.a ../libgold.a ../../libiberty/libiberty.a    -lz 
umask 022; \
	rm -f permission_test; \
	touch permission_test; \
	chmod 600 permission_test; \
	`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o permission_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ basic_test.o
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT searched_file_test.o -MD -MP -MF .deps/searched_file_test.Tpo -c -o searched_file_test.o ../../../Paul_Desmond/gold/testsuite/searched_file_test.cc
mv -f .deps/searched_file_test.Tpo .deps/searched_file_test.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -o searched_file_test_lib.o ../../../Paul_Desmond/gold/testsuite/searched_file_test_lib.cc
test -d alt || mkdir -p alt
../../binutils/ar rc alt/searched_file_test_lib.a searched_file_test_lib.o
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Lalt  -o searched_file_test searched_file_test.o -l:searched_file_test_lib.a -lz 
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT ifuncmain1.o -MD -MP -MF .deps/ifuncmain1.Tpo -c -o ifuncmain1.o ../../../Paul_Desmond/gold/testsuite/ifuncmain1.c
mv -f .deps/ifuncmain1.Tpo .deps/ifuncmain1.Po
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -o ifuncdep1.o ../../../Paul_Desmond/gold/testsuite/ifuncmod1.c
gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -static  -o ifuncmain1static ifuncmain1.o ifuncdep1.o -lz 
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncmain1pic.o ../../../Paul_Desmond/gold/testsuite/ifuncmain1.c
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncmod1.o ../../../Paul_Desmond/gold/testsuite/ifuncmod1.c
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncmain1picstatic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -static ifuncmain1pic.o ifuncmod1.o
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncmod1.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared ifuncmod1.o
gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o ifuncmain1 ifuncmain1.o ifuncmod1.so -lz 
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncmain1pic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ ifuncmain1pic.o ifuncmod1.so -Wl,-R,.
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT ifuncmain1vis.o -MD -MP -MF .deps/ifuncmain1vis.Tpo -c -o ifuncmain1vis.o ../../../Paul_Desmond/gold/testsuite/ifuncmain1vis.c
mv -f .deps/ifuncmain1vis.Tpo .deps/ifuncmain1vis.Po
gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o ifuncmain1vis ifuncmain1vis.o ifuncmod1.so -lz 
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncmain1vispic.o ../../../Paul_Desmond/gold/testsuite/ifuncmain1vis.c
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncmain1vispic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ ifuncmain1pic.o ifuncmod1.so -Wl,-R,.
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncmain1staticpic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ ifuncmain1pic.o ifuncmod1.o
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIE -o ifuncmain1pie.o ../../../Paul_Desmond/gold/testsuite/ifuncmain1.c
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncmain1pie | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -pie ifuncmain1pie.o ifuncmod1.so -Wl,-R,.
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIE -o ifuncmain1vispie.o ../../../Paul_Desmond/gold/testsuite/ifuncmain1vis.c
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncmain1vispie | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -pie ifuncmain1vispie.o ifuncmod1.so -Wl,-R,.
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncmain1staticpie | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -pie ifuncmain1pie.o ifuncmod1.o
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT ifuncmain2.o -MD -MP -MF .deps/ifuncmain2.Tpo -c -o ifuncmain2.o ../../../Paul_Desmond/gold/testsuite/ifuncmain2.c
mv -f .deps/ifuncmain2.Tpo .deps/ifuncmain2.Po
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT ifuncdep2.o -MD -MP -MF .deps/ifuncdep2.Tpo -c -o ifuncdep2.o ../../../Paul_Desmond/gold/testsuite/ifuncdep2.c
mv -f .deps/ifuncdep2.Tpo .deps/ifuncdep2.Po
gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -static  -o ifuncmain2static ifuncmain2.o ifuncdep2.o  -lz 
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncmain2pic.o ../../../Paul_Desmond/gold/testsuite/ifuncmain2.c
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncdep2pic.o ../../../Paul_Desmond/gold/testsuite/ifuncdep2.c
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncmain2picstatic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -static ifuncmain2pic.o ifuncdep2pic.o
gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/  -o ifuncmain2 ifuncmain2.o ifuncdep2.o  -lz 
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncmain2pic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ ifuncmain2pic.o ifuncdep2pic.o
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT ifuncmain3.o -MD -MP -MF .deps/ifuncmain3.Tpo -c -o ifuncmain3.o ../../../Paul_Desmond/gold/testsuite/ifuncmain3.c
mv -f .deps/ifuncmain3.Tpo .deps/ifuncmain3.Po
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncmod3.o ../../../Paul_Desmond/gold/testsuite/ifuncmod3.c
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncmod3.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared ifuncmod3.o
gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,--export-dynamic -Wl,-R,.  -o ifuncmain3 ifuncmain3.o -ldl -lz 
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT ifuncmain4.o -MD -MP -MF .deps/ifuncmain4.Tpo -c -o ifuncmain4.o ../../../Paul_Desmond/gold/testsuite/ifuncmain4.c
mv -f .deps/ifuncmain4.Tpo .deps/ifuncmain4.Po
gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -static  -o ifuncmain4static ifuncmain4.o  -lz 
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncmain4pic.o ../../../Paul_Desmond/gold/testsuite/ifuncmain4.c
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncmain4picstatic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -static ifuncmain4pic.o
gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/  -o ifuncmain4 ifuncmain4.o  -lz 
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT ifuncmain5.o -MD -MP -MF .deps/ifuncmain5.Tpo -c -o ifuncmain5.o ../../../Paul_Desmond/gold/testsuite/ifuncmain5.c
mv -f .deps/ifuncmain5.Tpo .deps/ifuncmain5.Po
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -o ifuncdep5.o ../../../Paul_Desmond/gold/testsuite/ifuncmod5.c
gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -static  -o ifuncmain5static ifuncmain5.o ifuncdep5.o -lz 
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncmain5pic.o ../../../Paul_Desmond/gold/testsuite/ifuncmain5.c
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncmod5.o ../../../Paul_Desmond/gold/testsuite/ifuncmod5.c
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncmain5picstatic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -static ifuncmain5pic.o ifuncmod5.o
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncmod5.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared ifuncmod5.o
gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o ifuncmain5 ifuncmain5.o ifuncmod5.so -lz 
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncmain5pic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ ifuncmain5pic.o ifuncmod5.so -Wl,-R,.
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncmain5staticpic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ ifuncmain5pic.o ifuncmod5.o
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIE -o ifuncmain5pie.o ../../../Paul_Desmond/gold/testsuite/ifuncmain5.c
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncmain5pie | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -pie ifuncmain5pie.o ifuncmod5.so -Wl,-R,.
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIE -o ifuncmain6pie.o ../../../Paul_Desmond/gold/testsuite/ifuncmain6pie.c
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncmod6.o ../../../Paul_Desmond/gold/testsuite/ifuncmod6.c
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncmod6.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared ifuncmod6.o
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncmain6pie | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -pie ifuncmain6pie.o ifuncmod6.so -Wl,-R,.
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT ifuncmain7.o -MD -MP -MF .deps/ifuncmain7.Tpo -c -o ifuncmain7.o ../../../Paul_Desmond/gold/testsuite/ifuncmain7.c
mv -f .deps/ifuncmain7.Tpo .deps/ifuncmain7.Po
gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -static  -o ifuncmain7static ifuncmain7.o  -lz 
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncmain7pic.o ../../../Paul_Desmond/gold/testsuite/ifuncmain7.c
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncmain7picstatic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -static ifuncmain7pic.o
gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/  -o ifuncmain7 ifuncmain7.o  -lz 
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncmain7pic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ ifuncmain7pic.o
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIE -o ifuncmain7pie.o ../../../Paul_Desmond/gold/testsuite/ifuncmain7.c
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncmain7pie | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -pie ifuncmain7pie.o
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT ifuncvar3.o -MD -MP -MF .deps/ifuncvar3.Tpo -c -o ifuncvar3.o ../../../Paul_Desmond/gold/testsuite/ifuncvar3.c
mv -f .deps/ifuncvar3.Tpo .deps/ifuncvar3.Po
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncvar1_pic.o ../../../Paul_Desmond/gold/testsuite/ifuncvar1.c
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncvar2_pic.o ../../../Paul_Desmond/gold/testsuite/ifuncvar2.c
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ifuncvar.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared ifuncvar1_pic.o ifuncvar2_pic.o
gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 -Bgcctestdir/ -Wl,-R,.  -o ifuncvar ifuncvar3.o ifuncvar.so -lz 
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT start_lib_test_main.o -MD -MP -MF .deps/start_lib_test_main.Tpo -c -o start_lib_test_main.o ../../../Paul_Desmond/gold/testsuite/start_lib_test_main.c
mv -f .deps/start_lib_test_main.Tpo .deps/start_lib_test_main.Po
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT start_lib_test_1.o -MD -MP -MF .deps/start_lib_test_1.Tpo -c -o start_lib_test_1.o ../../../Paul_Desmond/gold/testsuite/start_lib_test_1.c
mv -f .deps/start_lib_test_1.Tpo .deps/start_lib_test_1.Po
../../binutils/ar rc libstart_lib_test.a start_lib_test_1.o
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT start_lib_test_2.o -MD -MP -MF .deps/start_lib_test_2.Tpo -c -o start_lib_test_2.o ../../../Paul_Desmond/gold/testsuite/start_lib_test_2.c
mv -f .deps/start_lib_test_2.Tpo .deps/start_lib_test_2.Po
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT start_lib_test_3.o -MD -MP -MF .deps/start_lib_test_3.Tpo -c -o start_lib_test_3.o ../../../Paul_Desmond/gold/testsuite/start_lib_test_3.c
mv -f .deps/start_lib_test_3.Tpo .deps/start_lib_test_3.Po
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o start_lib_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -o start_lib_test start_lib_test_main.o -L. -lstart_lib_test \
		-Wl,--start-lib start_lib_test_2.o start_lib_test_3.o -Wl,--end-lib
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/incremental_test.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/gc_comdat_test.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/gc_tls_test.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/gc_orphan_section_test.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/pr14265.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/icf_test.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/icf_keep_unique_test.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/icf_safe_test.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/icf_safe_so_test.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/final_layout.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/text_section_grouping.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/section_sorting_name.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/icf_preemptible_functions_test.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/icf_string_merge_test.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/icf_sht_rel_addend_test.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/merge_string_literals.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/two_file_shared.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/weak_plt.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/debug_msg.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/missing_key_func.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/undef_symbol.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/ver_test_1.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/ver_test_2.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/ver_test_4.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/ver_test_5.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/ver_test_7.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/ver_test_10.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/relro_test.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/ver_matching_test.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/script_test_3.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/script_test_4.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/script_test_5.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/script_test_6.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/script_test_7.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/script_test_8.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/script_test_9.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/dynamic_list.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/exclude_libs_test.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/discard_locals_test.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/hidden_test.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/retain_symbols_file_test.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/no_version_test.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/strong_ref_weak_def.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/dyn_weak_ref.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/memory_test.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/gdb_index_test_1.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/gdb_index_test_2.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/gdb_index_test_3.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/gdb_index_test_4.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/script_test_10.sh'.
make[5]: Nothing to be done for `../../../Paul_Desmond/gold/testsuite/split_i386.sh'.
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -O0 -c -ffunction-sections -g -o incremental_test_1.o ../../../Paul_Desmond/gold/testsuite/incremental_test_1.c
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -O0 -c -ffunction-sections -g -o incremental_test_2.o ../../../Paul_Desmond/gold/testsuite/incremental_test_2.c
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o incremental_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--incremental-full incremental_test_1.o incremental_test_2.o -Wl,-debug 2> incremental_test.cmdline
../incremental-dump incremental_test > incremental_test.stdout
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -g -o gc_comdat_test_1.o ../../../Paul_Desmond/gold/testsuite/gc_comdat_test_1.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -g -o gc_comdat_test_2.o ../../../Paul_Desmond/gold/testsuite/gc_comdat_test_2.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o gc_comdat_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--gc-sections gc_comdat_test_1.o gc_comdat_test_2.o
../../binutils/nm-new -C gc_comdat_test > gc_comdat_test.stdout
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -g -o gc_tls_test.o ../../../Paul_Desmond/gold/testsuite/gc_tls_test.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o gc_tls_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--gc-sections gc_tls_test.o
../../binutils/nm-new -C gc_tls_test > gc_tls_test.stdout
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -g -o gc_orphan_section_test.o ../../../Paul_Desmond/gold/testsuite/gc_orphan_section_test.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o gc_orphan_section_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--gc-sections gc_orphan_section_test.o
../../binutils/nm-new gc_orphan_section_test > gc_orphan_section_test.stdout
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -O0 -c -o pr14265.o ../../../Paul_Desmond/gold/testsuite/pr14265.c
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o pr14265 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--gc-sections -Wl,-T,../../../Paul_Desmond/gold/testsuite/pr14265.t -o pr14265 pr14265.o
../../binutils/nm-new --format=bsd --numeric-sort pr14265 > pr14265.stdout
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -g -o icf_test.o ../../../Paul_Desmond/gold/testsuite/icf_test.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o icf_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -o icf_test -Bgcctestdir/ -Wl,--icf=all,-Map,icf_test.map icf_test.o
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -g -o icf_keep_unique_test.o ../../../Paul_Desmond/gold/testsuite/icf_keep_unique_test.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o icf_keep_unique_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--icf=all -Wl,--keep-unique,_Z11unique_funcv icf_keep_unique_test.o
../../binutils/nm-new -C icf_keep_unique_test > icf_keep_unique_test.stdout
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -g -o icf_safe_test.o ../../../Paul_Desmond/gold/testsuite/icf_safe_test.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o icf_safe_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -o icf_safe_test -Bgcctestdir/ -Wl,--icf=safe,-Map,icf_safe_test.map icf_safe_test.o
../../binutils/nm-new icf_safe_test > icf_safe_test_1.stdout
../../binutils/readelf -h icf_safe_test > icf_safe_test_2.stdout
make[5]: `icf_safe_test.map' is up to date.
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -fPIC -g -o icf_safe_so_test.o ../../../Paul_Desmond/gold/testsuite/icf_safe_so_test.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o icf_safe_so_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -o icf_safe_so_test -Bgcctestdir/ -Wl,--icf=safe,-Map,icf_safe_so_test.map icf_safe_so_test.o -fPIC -shared
../../binutils/nm-new icf_safe_so_test > icf_safe_so_test_1.stdout
../../binutils/readelf -h icf_safe_so_test > icf_safe_so_test_2.stdout
make[5]: `icf_safe_so_test.map' is up to date.
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections  -fdata-sections -g -o final_layout.o ../../../Paul_Desmond/gold/testsuite/final_layout.cc
(echo "*_Z3barv*" && echo ".text._Z3bazv" && echo "*_Z3foov*" && echo "*global_varb*" && echo "*global_vara*" && echo "*global_varc*") > final_layout_sequence.txt
(echo "SECTIONS { .text : { *(.text*) } .got : { *(.got .toc) } .sbss : { *(.sbss*) } .bss : { *(.bss*) } }") > final_layout_script.lds
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o final_layout | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--section-ordering-file,final_layout_sequence.txt -Wl,-T,final_layout_script.lds final_layout.o
../../binutils/nm-new -n --synthetic final_layout > final_layout.stdout
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -g -o text_section_grouping.o ../../../Paul_Desmond/gold/testsuite/text_section_grouping.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o text_section_grouping | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'`  -Bgcctestdir/ text_section_grouping.o
../../binutils/nm-new -n --synthetic text_section_grouping > text_section_grouping.stdout
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o text_section_no_grouping | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'`  -Bgcctestdir/ -Wl,--no-text-reorder text_section_grouping.o
../../binutils/nm-new -n --synthetic text_section_no_grouping > text_section_no_grouping.stdout
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -g -o section_sorting_name.o ../../../Paul_Desmond/gold/testsuite/section_sorting_name.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o section_sorting_name | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'`  -Bgcctestdir/ -Wl,--sort-section=name section_sorting_name.o
../../binutils/nm-new -n --synthetic section_sorting_name > section_sorting_name.stdout
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -fPIC -g -o icf_preemptible_functions_test.o ../../../Paul_Desmond/gold/testsuite/icf_preemptible_functions_test.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o icf_preemptible_functions_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--icf=all icf_preemptible_functions_test.o -fPIC -shared
../../binutils/nm-new icf_preemptible_functions_test > icf_preemptible_functions_test.stdout
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -fPIC -g -o icf_string_merge_test.o ../../../Paul_Desmond/gold/testsuite/icf_string_merge_test.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o icf_string_merge_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--icf=all icf_string_merge_test.o
../../binutils/nm-new icf_string_merge_test > icf_string_merge_test.stdout
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -fPIC -g -o icf_sht_rel_addend_test_1.o ../../../Paul_Desmond/gold/testsuite/icf_sht_rel_addend_test_1.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -fPIC -g -o icf_sht_rel_addend_test_2.o ../../../Paul_Desmond/gold/testsuite/icf_sht_rel_addend_test_2.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o icf_sht_rel_addend_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--icf=all icf_sht_rel_addend_test_1.o icf_sht_rel_addend_test_2.o
../../binutils/nm-new icf_sht_rel_addend_test > icf_sht_rel_addend_test.stdout
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O2 -c -fPIC -g -o merge_string_literals_1.o ../../../Paul_Desmond/gold/testsuite/merge_string_literals_1.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O2 -c -fPIC -g -o merge_string_literals_2.o ../../../Paul_Desmond/gold/testsuite/merge_string_literals_2.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o merge_string_literals | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ merge_string_literals_1.o merge_string_literals_2.o -O2 -shared -nostdlib
../../binutils/objdump -s -j.rodata merge_string_literals > merge_string_literals.stdout
../../binutils/readelf -w two_file_shared.so >two_file_shared.dbg 2>/dev/null
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o weak_plt_shared_pic.o ../../../Paul_Desmond/gold/testsuite/weak_plt_shared.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o weak_plt_shared.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared weak_plt_shared_pic.o
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -g -c -w -o debug_msg.o ../../../Paul_Desmond/gold/testsuite/debug_msg.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -g -c -w -o odr_violation1.o ../../../Paul_Desmond/gold/testsuite/odr_violation1.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O2 -g -c -w -o odr_violation2.o ../../../Paul_Desmond/gold/testsuite/odr_violation2.cc
g++-4.8 -W -Wall -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -o debug_msg.err -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg debug_msg.o odr_violation1.o odr_violation2.o 2>debug_msg.err
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -g -c -o missing_key_func.o ../../../Paul_Desmond/gold/testsuite/missing_key_func.cc
g++-4.8 -W -Wall -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -o missing_key_func.err -Bgcctestdir/ -o missing_key_func missing_key_func.o 2>missing_key_func.err
test -d gcctestdir || mkdir -p gcctestdir
rm -f gcctestdir/as
(cd gcctestdir && ln -s [...]/tschwinge/Paul_Desmond.build/gold/../gas/as-new as)
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O0 -g -Wa,--compress-debug-sections -c -w -o debug_msg_cdebug.o ../../../Paul_Desmond/gold/testsuite/debug_msg.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O0 -g -Wa,--compress-debug-sections -c -w -o odr_violation1_cdebug.o ../../../Paul_Desmond/gold/testsuite/odr_violation1.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O2 -g -Wa,--compress-debug-sections -c -w -o odr_violation2_cdebug.o ../../../Paul_Desmond/gold/testsuite/odr_violation2.cc
g++-4.8 -W -Wall -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -o debug_msg_cdebug.err -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_cdebug debug_msg_cdebug.o odr_violation1_cdebug.o odr_violation2_cdebug.o 2>debug_msg_cdebug.err
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O0 -g -shared -fPIC -w -o debug_msg.so ../../../Paul_Desmond/gold/testsuite/debug_msg.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O0 -g -shared -fPIC -w -o odr_violation1.so ../../../Paul_Desmond/gold/testsuite/odr_violation1.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O2 -g -shared -fPIC -w -o odr_violation2.so ../../../Paul_Desmond/gold/testsuite/odr_violation2.cc
g++-4.8 -W -Wall -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -o debug_msg_so.err -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_so debug_msg.so odr_violation1.so odr_violation2.so 2>debug_msg_so.err
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O0 -g0 -shared -fPIC -w -o debug_msg_ndebug.so ../../../Paul_Desmond/gold/testsuite/debug_msg.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O0 -g0 -shared -fPIC -w -o odr_violation1_ndebug.so ../../../Paul_Desmond/gold/testsuite/odr_violation1.cc
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O2 -g0 -shared -fPIC -w -o odr_violation2_ndebug.so ../../../Paul_Desmond/gold/testsuite/odr_violation2.cc
g++-4.8 -W -Wall -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -o debug_msg_ndebug.err -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_ndebug debug_msg_ndebug.so odr_violation1_ndebug.so odr_violation2_ndebug.so -shared-libgcc -Bdynamic -lstdc++ 2>debug_msg_ndebug.err
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT undef_symbol_main.o -MD -MP -MF .deps/undef_symbol_main.Tpo -c -o undef_symbol_main.o ../../../Paul_Desmond/gold/testsuite/undef_symbol_main.cc
mv -f .deps/undef_symbol_main.Tpo .deps/undef_symbol_main.Po
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -g -c -fPIC ../../../Paul_Desmond/gold/testsuite/undef_symbol.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o undef_symbol.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared undef_symbol.o
g++-4.8 -W -Wall -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -o undef_symbol.err -Bgcctestdir/ -o undef_symbol_test undef_symbol_main.o undef_symbol.so 2>undef_symbol.err
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o flagstest_o_ttext_2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -o flagstest_o_ttext_2 flagstest_debug.o -Wl,-Ttext,0x400010 -Wl,-Tdata,0x800010
../../binutils/readelf -s ver_test_1.so >ver_test_1.syms 2>/dev/null
../../binutils/readelf -s ver_test_2 >ver_test_2.syms 2>/dev/null
../../binutils/readelf -s ver_test_4.so >ver_test_4.syms 2>/dev/null
../../binutils/readelf -s ver_test_5.so >ver_test_5.syms 2>/dev/null
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o ver_test_7.o ../../../Paul_Desmond/gold/testsuite/ver_test_7.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ver_test_7.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,--version-script,../../../Paul_Desmond/gold/testsuite/ver_test_4.script ver_test_4.o ver_test_7.o
../../binutils/readelf -s ver_test_7.so >ver_test_7.syms 2>/dev/null
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ver_test_10.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,--version-script,../../../Paul_Desmond/gold/testsuite/ver_test_10.script ver_test_2.o
../../binutils/readelf -s ver_test_10.so >ver_test_10.syms 2>/dev/null
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o protected_4_pic.o ../../../Paul_Desmond/gold/testsuite/protected_4.cc
g++-4.8 -W -Wall -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -o protected_3.err -Bgcctestdir/ -shared -o protected_4.so protected_4_pic.o 2>protected_3.err
../../binutils/readelf -SlW relro_test.so > relro_test.stdout
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -fpic -o ver_matching_def_pic.o ../../../Paul_Desmond/gold/testsuite/ver_matching_def.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o ver_matching_def.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -Bgcctestdir/ -shared ver_matching_def_pic.o -Wl,--version-script=../../../Paul_Desmond/gold/testsuite/version_script.map
../../binutils/objdump -T ver_matching_def.so | ../../binutils/cxxfilt > ver_matching_test.stdout
../../binutils/readelf -SlW script_test_3 > script_test_3.stdout
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o script_test_4 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ basic_test.o -Wl,-T,../../../Paul_Desmond/gold/testsuite/script_test_4.t
../../binutils/readelf -SlW script_test_4 > script_test_4.stdout
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT script_test_5.o -MD -MP -MF .deps/script_test_5.Tpo -c -o script_test_5.o ../../../Paul_Desmond/gold/testsuite/script_test_5.cc
mv -f .deps/script_test_5.Tpo .deps/script_test_5.Po
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o script_test_5 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ script_test_5.o -Wl,-T,../../../Paul_Desmond/gold/testsuite/script_test_5.t
../../binutils/readelf -SW script_test_5 > script_test_5.stdout
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o script_test_6 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ basic_test.o -Wl,-T,../../../Paul_Desmond/gold/testsuite/script_test_6.t \
	-Wl,-Ttext=0x10001000 -Wl,-Tdata=0x10200000 -Wl,-Tbss=0x10400000
../../binutils/readelf -SlW script_test_6 > script_test_6.stdout
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o script_test_7 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ basic_test.o -Wl,-T,../../../Paul_Desmond/gold/testsuite/script_test_7.t
../../binutils/readelf -SlW script_test_7 > script_test_7.stdout
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o script_test_8 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ basic_test.o -Wl,-T,../../../Paul_Desmond/gold/testsuite/script_test_7.t \
	-Wl,-Ttext=0x20001000 -Wl,-Tdata=0x20200000 -Wl,-Tbss=0x20400000
../../binutils/readelf -SlW script_test_8 > script_test_8.stdout
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -o script_test_9.o ../../../Paul_Desmond/gold/testsuite/script_test_9.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o script_test_9 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ script_test_9.o -Wl,-T,../../../Paul_Desmond/gold/testsuite/script_test_9.t
../../binutils/readelf -lW script_test_9 > script_test_9.stdout
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o dynamic_list | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ basic_test.o \
	  -Wl,--dynamic-list ../../../Paul_Desmond/gold/testsuite/dynamic_list.t \
	  -Wl,--dynamic-list-data \
	  -Wl,--dynamic-list-cpp-new \
	  -Wl,--dynamic-list-cpp-typeinfo
../../binutils/readelf -W --dyn-syms dynamic_list > dynamic_list.stdout
../../binutils/readelf -sW exclude_libs_test >exclude_libs_test.syms 2>/dev/null
../../binutils/readelf -sW discard_locals_test >discard_locals_test.syms 2>/dev/null
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -Wa,-L -fPIC -o discard_locals_relocatable_test.o ../../../Paul_Desmond/gold/testsuite/discard_locals_relocatable_test.c
../ld-new --discard-locals -relocatable -o discard_locals_relocatable_test1.out discard_locals_relocatable_test.o
../../binutils/readelf -sW discard_locals_relocatable_test1.out >discard_locals_relocatable_test1.syms 2>/dev/null
../ld-new --discard-all -relocatable -o discard_locals_relocatable_test2.out discard_locals_relocatable_test.o
../../binutils/readelf -sW discard_locals_relocatable_test2.out >discard_locals_relocatable_test2.syms 2>/dev/null
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT hidden_test_main.o -MD -MP -MF .deps/hidden_test_main.Tpo -c -o hidden_test_main.o ../../../Paul_Desmond/gold/testsuite/hidden_test_main.c
mv -f .deps/hidden_test_main.Tpo .deps/hidden_test_main.Po
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -Bgcctestdir/ -g -shared -fPIC -w -o libhidden.so ../../../Paul_Desmond/gold/testsuite/hidden_test_1.c
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o hidden_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,-R,. hidden_test_main.o libhidden.so 2>hidden_test.err
echo 'main' > retain_symbols_file_test.in
echo 't1' >> retain_symbols_file_test.in
echo '_ZN4t16bC1Ev' >> retain_symbols_file_test.in
echo '_ZNK4t20a3getEv' >> retain_symbols_file_test.in
echo '_Z3t18v' >> retain_symbols_file_test.in
echo '__tcf_0' >> retain_symbols_file_test.in
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o retain_symbols_file_test.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,-retain-symbols-file,retain_symbols_file_test.in basic_pic_test.o
../../binutils/nm-new -C retain_symbols_file_test.so > retain_symbols_file_test.stdout
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -o no_version_test.o -c -fPIC ../../../Paul_Desmond/gold/testsuite/no_version_test.c
gcctestdir/ld -shared -o libno_version_test.so no_version_test.o
../../binutils/objdump -h libno_version_test.so > no_version_test.stdout
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -o strong_ref_weak_def_1.o -c -fPIC ../../../Paul_Desmond/gold/testsuite/strong_ref_weak_def_1.c
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -o strong_ref_weak_def_2.o -c -fPIC ../../../Paul_Desmond/gold/testsuite/strong_ref_weak_def_2.c
gcctestdir/ld -shared -o strong_ref_weak_def_2.so strong_ref_weak_def_2.o
gcctestdir/ld -shared -o strong_ref_weak_def_1.so strong_ref_weak_def_1.o \
		strong_ref_weak_def_2.so
../../binutils/readelf -sWD strong_ref_weak_def_1.so > strong_ref_weak_def.stdout
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -o dyn_weak_ref_1.o -c -fPIC ../../../Paul_Desmond/gold/testsuite/dyn_weak_ref_1.c
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -o dyn_weak_ref_2.o -c -fPIC ../../../Paul_Desmond/gold/testsuite/dyn_weak_ref_2.c
gcctestdir/ld -shared -o dyn_weak_ref_2.so dyn_weak_ref_2.o
gcctestdir/ld -shared -o dyn_weak_ref_1.so dyn_weak_ref_2.so dyn_weak_ref_1.o
../../binutils/readelf -sWD dyn_weak_ref_1.so > dyn_weak_ref.stdout
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -o memory_test.o -c ../../../Paul_Desmond/gold/testsuite/memory_test.s
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o memory_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -nostartfiles -nostdlib -z max-page-size=0x1000 -z common-page-size=0x1000 -Wl,-T,../../../Paul_Desmond/gold/testsuite/memory_test.t -o memory_test memory_test.o
../../binutils/readelf -lWS  memory_test > memory_test.stdout
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -g -gno-pubnames -c -o gdb_index_test.o ../../../Paul_Desmond/gold/testsuite/gdb_index_test.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o gdb_index_test_1 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--gdb-index gdb_index_test.o
../../binutils/readelf --debug-dump=gdb_index gdb_index_test_1 > gdb_index_test_1.stdout
readelf: Warning: Version 5 does not include inlined functions.
readelf: Warning: Version 6 does not include symbol attributes.
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O0 -g -Wa,--compress-debug-sections -c -o gdb_index_test_cdebug.o ../../../Paul_Desmond/gold/testsuite/gdb_index_test.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o gdb_index_test_2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--gdb-index gdb_index_test_cdebug.o
../../binutils/readelf --debug-dump=gdb_index gdb_index_test_2 > gdb_index_test_2.stdout
readelf: Warning: Version 5 does not include inlined functions.
readelf: Warning: Version 6 does not include symbol attributes.
`echo gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -O0 -g -c -o gdb_index_test_3.o ../../../Paul_Desmond/gold/testsuite/gdb_index_test_3.c
`echo gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o gdb_index_test_3 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--gdb-index,--fatal-warnings gdb_index_test_3.o
../../binutils/readelf --debug-dump=gdb_index gdb_index_test_3 > gdb_index_test_3.stdout
readelf: Warning: Version 5 does not include inlined functions.
readelf: Warning: Version 6 does not include symbol attributes.
`echo g++-4.8 -DHAVE_CONFIG_H -I. -I../../../Paul_Desmond/gold/testsuite -I..  -I../../../Paul_Desmond/gold/testsuite -I../../../Paul_Desmond/gold/testsuite/.. -I../../../Paul_Desmond/gold/testsuite/../../include -I../../../Paul_Desmond/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/Paul_Desmond.build.install/share/locale\""   -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -g -gpubnames -c -o gdb_index_test_pub.o ../../../Paul_Desmond/gold/testsuite/gdb_index_test.cc
`echo g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -g -O2   -o gdb_index_test_4 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--gdb-index gdb_index_test_pub.o
../../binutils/readelf --debug-dump=gdb_index gdb_index_test_4 > gdb_index_test_4.stdout
readelf: Warning: Version 5 does not include inlined functions.
readelf: Warning: Version 6 does not include symbol attributes.
../../gas/as-new -o script_test_10.o ../../../Paul_Desmond/gold/testsuite/script_test_10.s
gcctestdir/ld -o script_test_10 script_test_10.o -T ../../../Paul_Desmond/gold/testsuite/script_test_10.t
../../binutils/readelf -SW script_test_10 > script_test_10.stdout
../../gas/as-new -o split_i386_1.o ../../../Paul_Desmond/gold/testsuite/split_i386_1.s
../../gas/as-new -o split_i386_n.o ../../../Paul_Desmond/gold/testsuite/split_i386_n.s
../ld-new --defsym __morestack=0x100 --defsym __morestack_non_split=0x200 -o split_i386_1 split_i386_1.o split_i386_n.o
../../binutils/objdump -d split_i386_1 > split_i386_1.stdout
../../gas/as-new -o split_i386_2.o ../../../Paul_Desmond/gold/testsuite/split_i386_2.s
../ld-new --defsym __morestack=0x100 --defsym __morestack_non_split=0x200 -o split_i386_2 split_i386_2.o split_i386_n.o
../../binutils/objdump -d split_i386_2 > split_i386_2.stdout
../../gas/as-new -o split_i386_3.o ../../../Paul_Desmond/gold/testsuite/split_i386_3.s
../ld-new --defsym __morestack=0x100 --defsym __morestack_non_split=0x200 -o split_i386_3 split_i386_3.o split_i386_n.o > split_i386_3.stdout 2>&1 || exit 0
../../gas/as-new -o split_i386_4.o ../../../Paul_Desmond/gold/testsuite/split_i386_4.s
../ld-new --defsym __morestack=0x100 --defsym __morestack_non_split=0x200 -o split_i386_4 split_i386_4.o split_i386_n.o
../../binutils/objdump -d split_i386_4 > split_i386_4.stdout
../ld-new -r split_i386_1.o split_i386_n.o -o split_i386_r > split_i386_r.stdout 2>&1 || exit 0
make[5]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gold/testsuite'
make  check-TESTS
make[5]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gold/testsuite'
make[6]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gold/testsuite'
PASS: incremental_test.sh
PASS: gc_comdat_test.sh
PASS: gc_tls_test.sh
PASS: gc_orphan_section_test.sh
PASS: pr14265.sh
PASS: icf_test.sh
PASS: icf_keep_unique_test.sh
PASS: icf_safe_test.sh
PASS: icf_safe_so_test.sh
PASS: final_layout.sh
PASS: text_section_grouping.sh
PASS: section_sorting_name.sh
PASS: icf_preemptible_functions_test.sh
PASS: icf_string_merge_test.sh
PASS: icf_sht_rel_addend_test.sh
PASS: merge_string_literals.sh
PASS: two_file_shared.sh
PASS: weak_plt.sh
FAIL: debug_msg.sh
PASS: missing_key_func.sh
PASS: undef_symbol.sh
PASS: ver_test_1.sh
PASS: ver_test_2.sh
PASS: ver_test_4.sh
PASS: ver_test_5.sh
PASS: ver_test_7.sh
PASS: ver_test_10.sh
PASS: relro_test.sh
FAIL: ver_matching_test.sh
PASS: script_test_3.sh
PASS: script_test_4.sh
PASS: script_test_5.sh
PASS: script_test_6.sh
PASS: script_test_7.sh
PASS: script_test_8.sh
PASS: script_test_9.sh
PASS: dynamic_list.sh
PASS: exclude_libs_test.sh
PASS: discard_locals_test.sh
PASS: hidden_test.sh
PASS: retain_symbols_file_test.sh
PASS: no_version_test.sh
PASS: strong_ref_weak_def.sh
PASS: dyn_weak_ref.sh
PASS: memory_test.sh
PASS: gdb_index_test_1.sh
PASS: gdb_index_test_2.sh
PASS: gdb_index_test_3.sh
PASS: gdb_index_test_4.sh
PASS: script_test_10.sh
PASS: split_i386.sh
PASS: object_unittest
PASS: binary_unittest
PASS: leb128_unittest
PASS: icf_virtual_function_folding_test
PASS: large_symbol_alignment
PASS: basic_test
PASS: basic_pic_test
PASS: basic_static_test
PASS: basic_static_pic_test
PASS: basic_pie_test
PASS: constructor_test
PASS: constructor_static_test
PASS: two_file_test
PASS: two_file_pic_test
PASS: two_file_static_test
PASS: two_file_shared_1_test
PASS: two_file_shared_2_test
PASS: two_file_shared_1_pic_2_test
PASS: two_file_shared_2_pic_1_test
PASS: two_file_same_shared_test
PASS: two_file_separate_shared_12_test
PASS: two_file_separate_shared_21_test
PASS: two_file_relocatable_test
PASS: two_file_pie_test
PASS: two_file_shared_1_nonpic_test
PASS: two_file_shared_2_nonpic_test
PASS: two_file_same_shared_nonpic_test
PASS: two_file_separate_shared_12_nonpic_test
PASS: two_file_separate_shared_21_nonpic_test
PASS: two_file_mixed_shared_test
PASS: two_file_mixed_2_shared_test
PASS: two_file_mixed_pie_test
PASS: two_file_strip_test
PASS: two_file_same_shared_strip_test
PASS: common_test_1
PASS: common_test_2
PASS: exception_test
PASS: exception_shared_1_test
PASS: exception_shared_2_test
PASS: exception_same_shared_test
PASS: exception_separate_shared_12_test
PASS: exception_separate_shared_21_test
PASS: exception_static_test
PASS: weak_test
PASS: weak_undef_test
PASS: weak_undef_nonpic_test
PASS: weak_alias_test
PASS: weak_plt
PASS: copy_test
PASS: tls_test
PASS: tls_pic_test
PASS: tls_pie_test
PASS: tls_pie_pic_test
PASS: tls_shared_test
PASS: tls_shared_ie_test
PASS: tls_shared_gd_to_ie_test
PASS: tls_shared_gnu2_gd_to_ie_test
PASS: tls_shared_gnu2_test
PASS: tls_static_test
PASS: tls_static_pic_test
PASS: tls_shared_nonpic_test
PASS: many_sections_test
PASS: many_sections_r_test
PASS: initpri1
PASS: initpri2
PASS: initpri3a
PASS: flagstest_o_specialfile
PASS: flagstest_compress_debug_sections
PASS: flagstest_o_specialfile_and_compress_debug_sections
PASS: flagstest_o_ttext_1
PASS: ver_test
PASS: ver_test_2
PASS: ver_test_6
PASS: ver_test_8
PASS: ver_test_9
PASS: ver_test_11
PASS: ver_test_12
PASS: protected_1
PASS: protected_2
PASS: relro_test
PASS: relro_now_test
PASS: relro_strip_test
PASS: relro_script_test
PASS: script_test_1
PASS: script_test_2
PASS: justsyms
PASS: justsyms_exec
PASS: binary_test
FAIL: script_test_3
FAIL: tls_phdrs_script_test
PASS: tls_script_test
PASS: script_test_11
PASS: thin_archive_test_1
PASS: thin_archive_test_2
PASS: exclude_libs_test
PASS: local_labels_test
PASS: discard_locals_test
PASS: permission_test
PASS: searched_file_test
PASS: ifuncmain1static
PASS: ifuncmain1picstatic
PASS: ifuncmain1
PASS: ifuncmain1pic
PASS: ifuncmain1vis
PASS: ifuncmain1vispic
PASS: ifuncmain1staticpic
PASS: ifuncmain1pie
PASS: ifuncmain1vispie
PASS: ifuncmain1staticpie
PASS: ifuncmain2static
PASS: ifuncmain2picstatic
PASS: ifuncmain2
PASS: ifuncmain2pic
PASS: ifuncmain3
PASS: ifuncmain4static
PASS: ifuncmain4picstatic
PASS: ifuncmain4
PASS: ifuncmain5static
PASS: ifuncmain5picstatic
PASS: ifuncmain5
PASS: ifuncmain5pic
PASS: ifuncmain5staticpic
PASS: ifuncmain5pie
PASS: ifuncmain6pie
PASS: ifuncmain7static
PASS: ifuncmain7picstatic
PASS: ifuncmain7
PASS: ifuncmain7pic
PASS: ifuncmain7pie
PASS: ifuncvar
PASS: start_lib_test
============================
4 of 182 tests failed
See testsuite/test-suite.log
============================
make[6]: *** [test-suite.log] Error 1
make[6]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gold/testsuite'
make[5]: *** [check-TESTS] Error 2
make[5]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gold/testsuite'
make[4]: *** [check-am] Error 2
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gold/testsuite'
make[3]: *** [check] Error 2
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gold/testsuite'
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gold'
make  ld1 ld2 ld1-r ld2-r ld4 
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gold'
test -d gcctestdir1 || mkdir -p gcctestdir1
rm -f gcctestdir1/ld
(cd gcctestdir1 && ln -s ../ld-new ld)
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=ld1 -g -O2 -Bgcctestdir1/ -Wl,--build-id=tree -Wl,--build-id-chunk-size-for-treehash=12345 -Wl,--build-id-min-file-size-for-treehash=0   -o ld1 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 
test -d gcctestdir2 || mkdir -p gcctestdir2
rm -f gcctestdir2/ld
(cd gcctestdir2 && ln -s ../ld1 ld)
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=ld2 -g -O2 -Bgcctestdir2/ -Wl,--build-id=tree -Wl,--build-id-chunk-size-for-treehash=12345 -Wl,--build-id-min-file-size-for-treehash=0   -o ld2 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 
gcctestdir1/ld -o libgold-1-r.o -r --whole-archive libgold.a
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=ld1-r -g -O2 -Bgcctestdir1/  -o ld1-r main.o libgold-1-r.o i386.o x86_64.o sparc.o powerpc.o arm.o arm-reloc-property.o tilegx.o libgold.a ../libiberty/libiberty.a     -lz 
test -d gcctestdir2-r || mkdir -p gcctestdir2-r
rm -f gcctestdir2-r/ld
(cd gcctestdir2-r && ln -s ../ld1-r ld)
gcctestdir2-r/ld -o libgold-2-r.o -r --whole-archive libgold.a
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=ld2-r -g -O2 -Bgcctestdir2-r/  -o ld2-r main.o libgold-2-r.o i386.o x86_64.o sparc.o powerpc.o arm.o arm-reloc-property.o tilegx.o libgold.a ../libiberty/libiberty.a     -lz 
test -d gcctestdir4 || mkdir -p gcctestdir4
rm -f gcctestdir4/ld
(cd gcctestdir4 && ln -s ../ld-new ld)
g++-4.8 -W -Wall    -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=ld4 -g -O2 -Bgcctestdir4/ -Wl,--build-id=tree -Wl,--build-id-chunk-size-for-treehash=12346 -Wl,--build-id-min-file-size-for-treehash=0   -o ld4 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 
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gold'
make  check-TESTS
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gold'
make[5]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gold'
rm -f bootstrap-test
echo "#!/bin/sh" > bootstrap-test
echo "cmp ld1 ld2" >> bootstrap-test
chmod +x bootstrap-test
PASS: bootstrap-test
rm -f bootstrap-test-r
echo "#!/bin/sh" > bootstrap-test-r
echo "cmp ld1-r ld2-r" >> bootstrap-test-r
chmod +x bootstrap-test-r
PASS: bootstrap-test-r
rm -f bootstrap-test-treehash-chunksize
echo "#!/bin/sh" > bootstrap-test-treehash-chunksize
echo "cmp ld1 ld4 | grep ." >> bootstrap-test-treehash-chunksize
chmod +x bootstrap-test-treehash-chunksize
PASS: bootstrap-test-treehash-chunksize
==================
All 3 tests passed
==================
make[5]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gold'
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gold'
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gold'
make[2]: *** [check-recursive] Error 1
make[2]: Target `check' not remade because of errors.
make[2]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gold'
make[1]: *** [check-gold] Error 2
make[2]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gprof'
make  check-recursive
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gprof'
Making check in po
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gprof/po'
make[4]: Nothing to be done for `check'.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/gprof/po'
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/gprof'
make[4]: Nothing to be done for `check-am'.
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'
make[2]: Entering directory `[...]/tschwinge/Paul_Desmond.build/intl'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/intl'
make[2]: Entering directory `[...]/tschwinge/Paul_Desmond.build/ld'
make  check-recursive
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/ld'
Making check in po
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/ld/po'
make[4]: Nothing to be done for `check'.
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/ld/po'
make[4]: Entering directory `[...]/tschwinge/Paul_Desmond.build/ld'
make  check-DEJAGNU
make[5]: Entering directory `[...]/tschwinge/Paul_Desmond.build/ld'
Making a new site.exp file...
srcroot=`cd ../../Paul_Desmond/ld && pwd`; export srcroot; \
	r=`pwd`; export r; \
	LC_ALL=C; export LC_ALL; \
	EXPECT=expect; export EXPECT; \
	runtest=runtest; \
	if /bin/dash -c "$runtest --version" > /dev/null 2>&1; then \
	  $runtest --tool ld --srcdir ${srcroot}/testsuite \
		CC="gcc-4.8" CFLAGS="-g -O2" \
		CXX="g++-4.8" CXXFLAGS="-g -O2" \
		CC_FOR_HOST="gcc-4.8" CFLAGS_FOR_HOST="-g -O2" \
		OFILES="ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o plugin.o ldwrite.o ldexp.o  ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o eelf_i386.o " BFDLIB="../bfd/.libs/libbfd.a" \
		LIBIBERTY="../libiberty/libiberty.a " LIBS="-lz -ldl " \
		DO_COMPARE="`echo 'cmp --ignore-initial=16 $f1 $f2' | sed -e 's,\\$,,g'`" \
		; \
	else echo "WARNING: could not find \`runtest'" 1>&2; :;\
	fi
WARNING: Couldn't find tool init file
Test Run By thomas on Tue Jan  7 19:15:56 2014
Native configuration is i686-unknown-gnu0.5

		=== ld tests ===

Schedule of variations:
    unix

Running target unix
Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
Using [...]/tschwinge/Paul_Desmond/ld/testsuite/config/default.exp as tool-and-target-specific interface file.
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-aarch64/aarch64-elf.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-alpha/alpha.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-arm/arm-elf.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-arm/export-class.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-auto-import/auto-import.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-bootstrap/bootstrap.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-cdtest/cdtest.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-checks/checks.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-cris/cris.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-crx/crx.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-cygwin/exe-export.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-d10v/d10v.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-discard/discard.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-elf/audit.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-elf/binutils.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-elf/comm-data.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-elf/compress.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-elf/dwarf.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-elf/eh-group.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-elf/elf.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-elf/exclude.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-elf/export-class.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-elf/frame.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-elf/indirect.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-elf/provide-hidden.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-elf/sec-to-seg.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-elf/sec64k.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-elf/shared.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-elf/tls_common.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-elf/wrap.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-elfcomm/elfcomm.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-elfvers/vers.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-elfvsb/elfvsb.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-elfweak/elfweak.exp ...
XPASS: ELF weak func first DSO
XPASS: ELF weak func last DSO
XPASS: ELF weak data first DSO
XPASS: ELF weak data last DSO
XPASS: ELF weak data first DSO common
XPASS: ELF weak data last DSO common
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-fastcall/fastcall.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-frv/fdpic.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-frv/frv-elf.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-frv/tls.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-gc/gc.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-h8300/h8300.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-i386/export-class.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-i386/i386.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-ia64/ia64.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-ia64/line.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-ifunc/binutils.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-ifunc/ifunc.exp ...
FAIL: Common symbol override ifunc test 1a
FAIL: Common symbol override ifunc test 1b
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-libs/libs.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-linkonce/linkonce.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-m68hc11/m68hc11.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-m68k/m68k-got.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-m68k/m68k.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-mep/mep.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-metag/metag.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-mips-elf/comm-data.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-mips-elf/export-class.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-mips-elf/mips-elf-flags.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-mips-elf/mips-elf.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-misc/defsym.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-mmix/mmix.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-mn10300/mn10300.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-nios2/nios2.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-pe/pe-compile.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-pe/pe-run.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-pe/pe-run2.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-pe/pe.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-pie/pie.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-plugin/lto.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-plugin/plugin.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-powerpc/aix52.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-powerpc/export-class.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-powerpc/powerpc.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-s390/s390.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/align.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/alignof.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/assert.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/crossref.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/data.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/default-script.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/defined.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/dynamic-sections.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/empty-address.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/empty-aligned.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/empty-orphan.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/expr.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/extern.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/include.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/log2.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/map-address.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/overlay-size.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/phdrs.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/phdrs2.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/phdrs3.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/provide.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/rgn-at.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/rgn-over.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/script.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/section-flags.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/section-match.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/size.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/sizeof.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/sort.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-scripts/weak.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-selective/sel-dump.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-selective/selective.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-sh/arch/arch.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-sh/rd-sh.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-sh/sh-vxworks.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-sh/sh.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-sh/sh64/rd-sh64.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-sh/sh64/relax.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-sh/sh64/relfail.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-sh/sh64/sh64.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-shared/shared.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-size/size.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-sparc/sparc.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-spu/spu.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-srec/srec.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-tic6x/tic6x.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-tilegx/tilegx.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-tilepro/tilepro.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-undefined/entry.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-undefined/undefined.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-undefined/weak-undef.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-unique/unique.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-v850/v850.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-vax-elf/export-class.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-vax-elf/vax-elf.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-versados/versados.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-vxworks/vxworks.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-x86-64/dwarfreloc.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-x86-64/export-class.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-x86-64/line.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-x86-64/x86-64.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-xc16x/xc16x.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-xstormy16/xstormy16.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-xtensa/coalesce.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-xtensa/lcall.exp ...
Running [...]/tschwinge/Paul_Desmond/ld/testsuite/ld-xtensa/xtensa.exp ...

		=== ld Summary ===

# of expected passes		904
# of unexpected failures	2
# of unexpected successes	6
# of expected failures		8
# of untested testcases		6
[...]/tschwinge/Paul_Desmond.build/ld/ld-new 2.24.51.20131021

make[5]: *** [check-DEJAGNU] Error 1
make[5]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/ld'
make[4]: *** [check-am] Error 2
make[4]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/ld'
make[3]: *** [check-recursive] Error 1
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/ld'
make[2]: *** [check] Error 2
make[2]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/ld'
make[1]: *** [check-ld] Error 2
make[2]: Entering directory `[...]/tschwinge/Paul_Desmond.build/libiberty'
make[3]: Entering directory `[...]/tschwinge/Paul_Desmond.build/libiberty/testsuite'
gcc-4.8 -DHAVE_CONFIG_H -g -O2 -I.. -I../../../Paul_Desmond/libiberty/testsuite/../../include  -o test-demangle \
		../../../Paul_Desmond/libiberty/testsuite/test-demangle.c ../libiberty.a
./test-demangle < ../../../Paul_Desmond/libiberty/testsuite/demangle-expected
./test-demangle: 884 tests, 0 failures
gcc-4.8 -DHAVE_CONFIG_H -g -O2 -I.. -I../../../Paul_Desmond/libiberty/testsuite/../../include  -DHAVE_CONFIG_H -I.. -o test-pexecute \
		../../../Paul_Desmond/libiberty/testsuite/test-pexecute.c ../libiberty.a
./test-pexecute
gcc-4.8 -DHAVE_CONFIG_H -g -O2 -I.. -I../../../Paul_Desmond/libiberty/testsuite/../../include  -DHAVE_CONFIG_H -I.. -o test-expandargv \
		../../../Paul_Desmond/libiberty/testsuite/test-expandargv.c ../libiberty.a
./test-expandargv
PASS: test-expandargv-0.
PASS: test-expandargv-1.
PASS: test-expandargv-2.
PASS: test-expandargv-3.
PASS: test-expandargv-4.
PASS: test-expandargv-5.
PASS: test-expandargv-6.
make[3]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/libiberty/testsuite'
make[2]: Leaving directory `[...]/tschwinge/Paul_Desmond.build/libiberty'
make[1]: Target `check-host' not remade because of errors.
make[1]: Nothing to be done for `check-target'.
make[1]: Leaving directory `[...]/tschwinge/Paul_Desmond.build'
make: *** [do-check] Error 2
make: Target `check' not remade because of errors.