summaryrefslogtreecommitdiff
path: root/gdb/log_build.diff
blob: 06d30552effad85f6462ef37e6a009ec1973d357 (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
--- toolchain/logs/gdb/kepler.SCHWINGE/log_build_	2013-06-14 15:11:02.693794566 +0200
+++ toolchain/logs/gdb/coulomb.SCHWINGE/log_build_	2013-06-14 15:11:02.713794567 +0200
@@ -281,12 +281,12 @@
 checking for sys/sysinfo.h... yes
 checking for machine/hal_sysinfo.h... no
 checking for sys/table.h... no
-checking for sys/sysctl.h... yes
+checking for sys/sysctl.h... no
 checking for sys/systemcfg.h... no
 checking for stdint.h... (cached) yes
 checking for stdio_ext.h... yes
 checking for process.h... no
-checking for sys/prctl.h... yes
+checking for sys/prctl.h... no
 checking for sys/wait.h that is POSIX.1 compatible... yes
 checking whether time.h and sys/time.h may both be included... yes
 checking whether errno must be declared... no
@@ -357,8 +357,8 @@
 checking for working fork... yes
 checking for working vfork... (cached) yes
 checking for _doprnt... no
-checking for sys_errlist... yes
-checking for sys_nerr... yes
+checking for sys_errlist... no
+checking for sys_nerr... no
 checking for sys_siglist... yes
 checking for external symbol _system_configuration... no
 checking for __fsetlocking... yes
@@ -380,7 +380,7 @@
 checking for strerror... yes
 checking for strsignal... yes
 checking for sysconf... yes
-checking for sysctl... yes
+checking for sysctl... no
 checking for sysmp... no
 checking for table... no
 checking for times... yes
@@ -465,7 +465,7 @@
 checking for BSD- or MS-compatible name lister (nm)... nm
 checking the name lister (nm) interface... BSD nm
 checking whether ln -s works... yes
-checking the maximum length of command line arguments... 805306365
+checking the maximum length of command line arguments... -1
 checking whether the shell understands some XSI constructs... yes
 checking whether the shell understands "+="... no
 checking for ld option to reload object files... -r
@@ -485,7 +485,7 @@
 checking if gcc-4.8 supports -c -o file.o... yes
 checking if gcc-4.8 supports -c -o file.o... (cached) yes
 checking whether the gcc-4.8 linker (ld) supports shared libraries... yes
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
 checking how to hardcode library paths into programs... immediate
 checking for shl_load... no
 checking for shl_load in -ldld... no
@@ -583,26 +583,26 @@
 checking sys/procfs.h usability... yes
 checking sys/procfs.h presence... yes
 checking for sys/procfs.h... yes
-checking for prstatus_t in sys/procfs.h... yes
+checking for prstatus_t in sys/procfs.h... no
 checking for prstatus32_t in sys/procfs.h... no
 checking for prstatus_t.pr_who in sys/procfs.h... no
 checking for prstatus32_t.pr_who in sys/procfs.h... no
-checking for pstatus_t in sys/procfs.h... no
+checking for pstatus_t in sys/procfs.h... yes
 checking for pxstatus_t in sys/procfs.h... no
 checking for pstatus32_t in sys/procfs.h... no
-checking for prpsinfo_t in sys/procfs.h... yes
-checking for prpsinfo_t.pr_pid in sys/procfs.h... yes
+checking for prpsinfo_t in sys/procfs.h... no
+checking for prpsinfo_t.pr_pid in sys/procfs.h... no
 checking for prpsinfo32_t in sys/procfs.h... no
 checking for prpsinfo32_t.pr_pid in sys/procfs.h... no
-checking for psinfo_t in sys/procfs.h... no
-checking for psinfo_t.pr_pid in sys/procfs.h... no
+checking for psinfo_t in sys/procfs.h... yes
+checking for psinfo_t.pr_pid in sys/procfs.h... yes
 checking for psinfo32_t in sys/procfs.h... no
 checking for psinfo32_t.pr_pid in sys/procfs.h... no
-checking for lwpstatus_t in sys/procfs.h... no
+checking for lwpstatus_t in sys/procfs.h... yes
 checking for lwpxstatus_t in sys/procfs.h... no
 checking for lwpstatus_t.pr_context in sys/procfs.h... no
-checking for lwpstatus_t.pr_reg in sys/procfs.h... no
-checking for lwpstatus_t.pr_fpreg in sys/procfs.h... no
+checking for lwpstatus_t.pr_reg in sys/procfs.h... yes
+checking for lwpstatus_t.pr_fpreg in sys/procfs.h... yes
 checking for win32_pstatus_t in sys/procfs.h... no
 checking linker --as-needed support... yes
 checking for cos in -lm... yes
@@ -1256,36 +1256,15 @@
 /bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Ferry_Tagscherer/bfd    -I. -I../../Ferry_Tagscherer/bfd -I../../Ferry_Tagscherer/bfd/../include  -DHAVE_bfd_elf32_i386_vec   -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Ferry_Tagscherer.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c -o dwarf1.lo ../../Ferry_Tagscherer/bfd/dwarf1.c
 libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Ferry_Tagscherer/bfd  -I. -I../../Ferry_Tagscherer/bfd -I../../Ferry_Tagscherer/bfd/../include -DHAVE_bfd_elf32_i386_vec   -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Ferry_Tagscherer.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -g -O2 -MT dwarf1.lo -MD -MP -MF .deps/dwarf1.Tpo -c ../../Ferry_Tagscherer/bfd/dwarf1.c -o dwarf1.o
 mv -f .deps/dwarf1.Tpo .deps/dwarf1.Plo
-/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Ferry_Tagscherer/bfd    -I. -I../../Ferry_Tagscherer/bfd -I../../Ferry_Tagscherer/bfd/../include  -DHAVE_bfd_elf32_i386_vec   -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Ferry_Tagscherer.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -g -O2 -MT i386linux.lo -MD -MP -MF .deps/i386linux.Tpo -c -o i386linux.lo ../../Ferry_Tagscherer/bfd/i386linux.c
-libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Ferry_Tagscherer/bfd  -I. -I../../Ferry_Tagscherer/bfd -I../../Ferry_Tagscherer/bfd/../include -DHAVE_bfd_elf32_i386_vec   -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Ferry_Tagscherer.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -g -O2 -MT i386linux.lo -MD -MP -MF .deps/i386linux.Tpo -c ../../Ferry_Tagscherer/bfd/i386linux.c -o i386linux.o
-mv -f .deps/i386linux.Tpo .deps/i386linux.Plo
-/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Ferry_Tagscherer/bfd    -I. -I../../Ferry_Tagscherer/bfd -I../../Ferry_Tagscherer/bfd/../include  -DHAVE_bfd_elf32_i386_vec   -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Ferry_Tagscherer.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -g -O2 -MT aout32.lo -MD -MP -MF .deps/aout32.Tpo -c -o aout32.lo ../../Ferry_Tagscherer/bfd/aout32.c
-libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Ferry_Tagscherer/bfd  -I. -I../../Ferry_Tagscherer/bfd -I../../Ferry_Tagscherer/bfd/../include -DHAVE_bfd_elf32_i386_vec   -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Ferry_Tagscherer.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -g -O2 -MT aout32.lo -MD -MP -MF .deps/aout32.Tpo -c ../../Ferry_Tagscherer/bfd/aout32.c -o aout32.o
-mv -f .deps/aout32.Tpo .deps/aout32.Plo
-/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Ferry_Tagscherer/bfd    -I. -I../../Ferry_Tagscherer/bfd -I../../Ferry_Tagscherer/bfd/../include  -DHAVE_bfd_elf32_i386_vec   -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Ferry_Tagscherer.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -g -O2 -MT pei-i386.lo -MD -MP -MF .deps/pei-i386.Tpo -c -o pei-i386.lo ../../Ferry_Tagscherer/bfd/pei-i386.c
-libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Ferry_Tagscherer/bfd  -I. -I../../Ferry_Tagscherer/bfd -I../../Ferry_Tagscherer/bfd/../include -DHAVE_bfd_elf32_i386_vec   -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Ferry_Tagscherer.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -g -O2 -MT pei-i386.lo -MD -MP -MF .deps/pei-i386.Tpo -c ../../Ferry_Tagscherer/bfd/pei-i386.c -o pei-i386.o
-mv -f .deps/pei-i386.Tpo .deps/pei-i386.Plo
-rm -f peigen.c
-sed -e s/XX/pe/g < ../../Ferry_Tagscherer/bfd/peXXigen.c > peigen.new
-mv -f peigen.new peigen.c
-/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Ferry_Tagscherer/bfd    -I. -I../../Ferry_Tagscherer/bfd -I../../Ferry_Tagscherer/bfd/../include  -DHAVE_bfd_elf32_i386_vec   -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Ferry_Tagscherer.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -g -O2 -MT peigen.lo -MD -MP -MF .deps/peigen.Tpo -c -o peigen.lo peigen.c
-libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Ferry_Tagscherer/bfd  -I. -I../../Ferry_Tagscherer/bfd -I../../Ferry_Tagscherer/bfd/../include -DHAVE_bfd_elf32_i386_vec   -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Ferry_Tagscherer.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -g -O2 -MT peigen.lo -MD -MP -MF .deps/peigen.Tpo -c peigen.c -o peigen.o
-mv -f .deps/peigen.Tpo .deps/peigen.Plo
-/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Ferry_Tagscherer/bfd    -I. -I../../Ferry_Tagscherer/bfd -I../../Ferry_Tagscherer/bfd/../include  -DHAVE_bfd_elf32_i386_vec   -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Ferry_Tagscherer.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -g -O2 -MT cofflink.lo -MD -MP -MF .deps/cofflink.Tpo -c -o cofflink.lo ../../Ferry_Tagscherer/bfd/cofflink.c
-libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Ferry_Tagscherer/bfd  -I. -I../../Ferry_Tagscherer/bfd -I../../Ferry_Tagscherer/bfd/../include -DHAVE_bfd_elf32_i386_vec   -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Ferry_Tagscherer.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -g -O2 -MT cofflink.lo -MD -MP -MF .deps/cofflink.Tpo -c ../../Ferry_Tagscherer/bfd/cofflink.c -o cofflink.o
-mv -f .deps/cofflink.Tpo .deps/cofflink.Plo
 /bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Ferry_Tagscherer/bfd    -I. -I../../Ferry_Tagscherer/bfd -I../../Ferry_Tagscherer/bfd/../include  -DHAVE_bfd_elf32_i386_vec   -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Ferry_Tagscherer.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -g -O2 -MT elf32-gen.lo -MD -MP -MF .deps/elf32-gen.Tpo -c -o elf32-gen.lo ../../Ferry_Tagscherer/bfd/elf32-gen.c
 libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Ferry_Tagscherer/bfd  -I. -I../../Ferry_Tagscherer/bfd -I../../Ferry_Tagscherer/bfd/../include -DHAVE_bfd_elf32_i386_vec   -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Ferry_Tagscherer.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -g -O2 -MT elf32-gen.lo -MD -MP -MF .deps/elf32-gen.Tpo -c ../../Ferry_Tagscherer/bfd/elf32-gen.c -o elf32-gen.o
 mv -f .deps/elf32-gen.Tpo .deps/elf32-gen.Plo
 /bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Ferry_Tagscherer/bfd    -I. -I../../Ferry_Tagscherer/bfd -I../../Ferry_Tagscherer/bfd/../include  -DHAVE_bfd_elf32_i386_vec   -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Ferry_Tagscherer.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -g -O2 -MT cpu-i386.lo -MD -MP -MF .deps/cpu-i386.Tpo -c -o cpu-i386.lo ../../Ferry_Tagscherer/bfd/cpu-i386.c
 libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Ferry_Tagscherer/bfd  -I. -I../../Ferry_Tagscherer/bfd -I../../Ferry_Tagscherer/bfd/../include -DHAVE_bfd_elf32_i386_vec   -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Ferry_Tagscherer.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -g -O2 -MT cpu-i386.lo -MD -MP -MF .deps/cpu-i386.Tpo -c ../../Ferry_Tagscherer/bfd/cpu-i386.c -o cpu-i386.o
 mv -f .deps/cpu-i386.Tpo .deps/cpu-i386.Plo
-/bin/dash ./libtool --tag=CC   --mode=compile gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Ferry_Tagscherer/bfd    -I. -I../../Ferry_Tagscherer/bfd -I../../Ferry_Tagscherer/bfd/../include  -DHAVE_bfd_elf32_i386_vec   -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec  -DBINDIR='"[...]/tschwinge/Ferry_Tagscherer.build.install/bin"'  -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -g -O2 -MT trad-core.lo -MD -MP -MF .deps/trad-core.Tpo -c -o trad-core.lo ../../Ferry_Tagscherer/bfd/trad-core.c
-libtool: compile:  gcc-4.8 -DHAVE_CONFIG_H -I. -I../../Ferry_Tagscherer/bfd  -I. -I../../Ferry_Tagscherer/bfd -I../../Ferry_Tagscherer/bfd/../include -DHAVE_bfd_elf32_i386_vec   -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -DBINDIR=\"[...]/tschwinge/Ferry_Tagscherer.build.install/bin\" -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -g -O2 -MT trad-core.lo -MD -MP -MF .deps/trad-core.Tpo -c ../../Ferry_Tagscherer/bfd/trad-core.c -o trad-core.o
-mv -f .deps/trad-core.Tpo .deps/trad-core.Plo
 rm -f tofiles
 f=""; \
-	for i in elf32-i386.lo elf-ifunc.lo elf-nacl.lo elf-vxworks.lo elf32.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo i386linux.lo aout32.lo pei-i386.lo peigen.lo cofflink.lo elf32-gen.lo cpu-i386.lo trad-core.lo  ; do \
+	for i in elf32-i386.lo elf-ifunc.lo elf-nacl.lo elf-vxworks.lo elf32.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo elf32-gen.lo cpu-i386.lo   ; do \
 	  case " $f " in \
 	    *" $i "*) ;; \
 	    *) f="$f $i" ;; \
@@ -1295,7 +1274,7 @@
 /bin/dash ../../Ferry_Tagscherer/bfd/../move-if-change tofiles ofiles
 touch stamp-ofiles
 /bin/dash ./libtool --tag=CC   --mode=link gcc-4.8 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -g -O2  -release `cat libtool-soversion`  -static-libstdc++ -static-libgcc  -o libbfd.la -rpath [...]/tschwinge/Ferry_Tagscherer.build.install/lib archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo `cat ofiles`   -lz 
-libtool: link: ar rc .libs/libbfd.a  archive.o archures.o bfd.o bfdio.o bfdwin.o cache.o coffgen.o corefile.o format.o init.o libbfd.o opncls.o reloc.o section.o syms.o targets.o hash.o linker.o srec.o binary.o tekhex.o ihex.o stabs.o stab-syms.o merge.o dwarf2.o simple.o compress.o verilog.o elf32-i386.o elf-ifunc.o elf-nacl.o elf-vxworks.o elf32.o elf.o elflink.o elf-attrs.o elf-strtab.o elf-eh-frame.o dwarf1.o i386linux.o aout32.o pei-i386.o peigen.o cofflink.o elf32-gen.o cpu-i386.o trad-core.o
+libtool: link: ar rc .libs/libbfd.a  archive.o archures.o bfd.o bfdio.o bfdwin.o cache.o coffgen.o corefile.o format.o init.o libbfd.o opncls.o reloc.o section.o syms.o targets.o hash.o linker.o srec.o binary.o tekhex.o ihex.o stabs.o stab-syms.o merge.o dwarf2.o simple.o compress.o verilog.o elf32-i386.o elf-ifunc.o elf-nacl.o elf-vxworks.o elf32.o elf.o elflink.o elf-attrs.o elf-strtab.o elf-eh-frame.o dwarf1.o elf32-gen.o cpu-i386.o
 libtool: link: ranlib .libs/libbfd.a
 libtool: link: ( cd ".libs" && rm -f "libbfd.la" && ln -s "../libbfd.la" "libbfd.la" )
 libtooldir=`/bin/dash ./libtool --config | sed -n -e 's/^objdir=//p'`; \
@@ -1362,7 +1341,7 @@
 checking for BSD- or MS-compatible name lister (nm)... nm
 checking the name lister (nm) interface... BSD nm
 checking whether ln -s works... yes
-checking the maximum length of command line arguments... 805306365
+checking the maximum length of command line arguments... -1
 checking whether the shell understands some XSI constructs... yes
 checking whether the shell understands "+="... no
 checking for ld option to reload object files... -r
@@ -1382,7 +1361,7 @@
 checking if gcc-4.8 supports -c -o file.o... yes
 checking if gcc-4.8 supports -c -o file.o... (cached) yes
 checking whether the gcc-4.8 linker (ld) supports shared libraries... yes
-checking dynamic linker characteristics... GNU/Linux ld.so
+checking dynamic linker characteristics... gnu0.3 ld.so
 checking how to hardcode library paths into programs... immediate
 checking whether stripping libraries is possible... yes
 checking if libtool supports shared libraries... yes
@@ -1699,9 +1678,9 @@
 checking termios.h usability... yes
 checking termios.h presence... yes
 checking for termios.h... yes
-checking termio.h usability... yes
-checking termio.h presence... yes
-checking for termio.h... yes
+checking termio.h usability... no
+checking termio.h presence... no
+checking for termio.h... no
 checking sys/pte.h usability... no
 checking sys/pte.h presence... no
 checking for sys/pte.h... no
@@ -1995,7 +1974,7 @@
 checking for inttypes.h... (cached) yes
 checking whether the inttypes.h PRIxNN macros are broken... no
 checking for nl_langinfo and CODESET... yes
-checking for working fcntl.h... yes
+checking for working fcntl.h... no (bad O_NOFOLLOW)
 checking whether getc_unlocked is declared... yes
 checking whether we are using the GNU C Library >= 2.1 or uClibc... yes
 checking for a traditional japanese locale... ja_JP
@@ -2139,6 +2118,8 @@
 checking for [ARCH]-ar... ar
 checking for [ARCH]-dlltool... dlltool
 checking for [ARCH]-windres... windres
+checking for [ARCH]-mig... no
+checking for mig... mig
 checking for main in -lm... yes
 checking for wctype... yes
 checking for library containing gethostbyname... none required
@@ -2189,9 +2170,9 @@
 checking proc_service.h usability... no
 checking proc_service.h presence... no
 checking for proc_service.h... no
-checking thread_db.h usability... yes
-checking thread_db.h presence... yes
-checking for thread_db.h... yes
+checking thread_db.h usability... no
+checking thread_db.h presence... no
+checking for thread_db.h... no
 checking signal.h usability... yes
 checking signal.h presence... yes
 checking for signal.h... yes
@@ -2229,12 +2210,12 @@
 checking ptrace.h usability... no
 checking ptrace.h presence... no
 checking for ptrace.h... no
-checking sys/reg.h usability... yes
-checking sys/reg.h presence... yes
-checking for sys/reg.h... yes
-checking sys/debugreg.h usability... yes
-checking sys/debugreg.h presence... yes
-checking for sys/debugreg.h... yes
+checking sys/reg.h usability... no
+checking sys/reg.h presence... no
+checking for sys/reg.h... no
+checking sys/debugreg.h usability... no
+checking sys/debugreg.h presence... no
+checking for sys/debugreg.h... no
 checking sys/select.h usability... yes
 checking sys/select.h presence... yes
 checking for sys/select.h... yes
@@ -2251,9 +2232,9 @@
 checking termios.h usability... yes
 checking termios.h presence... yes
 checking for termios.h... yes
-checking termio.h usability... yes
-checking termio.h presence... yes
-checking for termio.h... yes
+checking termio.h usability... no
+checking termio.h presence... no
+checking for termio.h... no
 checking sgtty.h usability... yes
 checking sgtty.h presence... yes
 checking for sgtty.h... yes
@@ -2270,12 +2251,12 @@
 checking sys/un.h usability... yes
 checking sys/un.h presence... yes
 checking for sys/un.h... yes
-checking linux/perf_event.h usability... yes
-checking linux/perf_event.h presence... yes
-checking for linux/perf_event.h... yes
+checking linux/perf_event.h usability... no
+checking linux/perf_event.h presence... no
+checking for linux/perf_event.h... no
 checking for link.h... yes
 checking for sys/proc.h... no
-checking for sys/user.h... yes
+checking for sys/user.h... no
 checking curses.h usability... yes
 checking curses.h presence... yes
 checking for curses.h... yes
@@ -2356,7 +2337,7 @@
 checking for waitpid... yes
 checking for lstat... yes
 checking for fdwalk... no
-checking for pipe2... yes
+checking for pipe2... no
 checking for nl_langinfo and CODESET... yes
 checking whether ptrace is declared... yes
 checking return type of ptrace... long
@@ -2372,19 +2353,19 @@
 checking for struct user_regs_struct.fs_base... no
 checking for struct user_regs_struct.gs_base... no
 checking for PTRACE_GETREGS... yes
-checking for PTRACE_GETFPXREGS... yes
+checking for PTRACE_GETFPXREGS... no
 checking for PT_GETDBREGS... no
 checking for PT_GETXMMREGS... no
-checking for pstatus_t in sys/procfs.h... no
+checking for pstatus_t in sys/procfs.h... yes
 checking for prrun_t in sys/procfs.h... no
-checking for gregset_t in sys/procfs.h... no
-checking for fpregset_t in sys/procfs.h... no
+checking for gregset_t in sys/procfs.h... yes
+checking for fpregset_t in sys/procfs.h... yes
 checking for prgregset_t in sys/procfs.h... yes
 checking for prfpregset_t in sys/procfs.h... yes
 checking for prgregset32_t in sys/procfs.h... no
 checking for prfpregset32_t in sys/procfs.h... no
-checking for lwpid_t in sys/procfs.h... yes
-checking for psaddr_t in sys/procfs.h... yes
+checking for lwpid_t in sys/procfs.h... no
+checking for psaddr_t in sys/procfs.h... no
 checking for prsysent_t in sys/procfs.h... no
 checking for pr_sigset_t in sys/procfs.h... no
 checking for pr_sigaction64_t in sys/procfs.h... no
@@ -2402,11 +2383,8 @@
 checking for long double support in printf... yes
 checking for long double support in scanf... yes
 checking for the dynamic export flag... -Wl,--dynamic-list
-checking whether <thread_db.h> has TD_NOTALLOC... yes
-checking whether <thread_db.h> has TD_VERSION... yes
-checking whether <thread_db.h> has TD_NOTLS... yes
-checking whether <sys/syscall.h> has __NR_tkill... yes
-checking whether ADDR_NO_RANDOMIZE is declared... yes
+checking whether <sys/syscall.h> has __NR_tkill... no
+checking whether ADDR_NO_RANDOMIZE is declared... no
 checking compiler warning flags...  -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral 
 checking for cygwin... no
 checking for ELF support in BFD... yes
@@ -2416,7 +2394,7 @@
 checking for liblzma... yes
 checking how to link with liblzma... -llzma
 checking for X... libraries , headers 
-checking whether gdbserver is supported on this host... yes
+checking whether gdbserver is supported on this host... no
 checking whether to use babeltrace... auto
 checking for libbabeltrace... no
 configure: WARNING: babeltrace is missing or unusable; GDB is unable to read CTF data.
@@ -2429,7 +2407,7 @@
 config.status: creating doc/Makefile
 config.status: creating data-directory/Makefile
 config.status: creating config.h
-config.status: linking ../../Ferry_Tagscherer/gdb/config/nm-linux.h to nm.h
+config.status: linking ../../Ferry_Tagscherer/gdb/config/i386/nm-i386gnu.h to nm.h
 config.status: executing depdir commands
 mkdir -p -- .deps
 config.status: executing default commands
@@ -2502,335 +2480,6 @@
 config.status: creating gdb.threads/Makefile
 config.status: creating gdb.trace/Makefile
 config.status: creating gdb.xml/Makefile
-=== configuring in gdbserver ([...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver)
-configure: running /bin/dash ../../../Ferry_Tagscherer/gdb/gdbserver/configure --disable-option-checking '--prefix=[...]/tschwinge/Ferry_Tagscherer.build.install'  '--with-system-zlib' '--disable-werror' '--program-transform-name=s,y,y,' '--build=[ARCH]' '--host=[ARCH]' '--target=[ARCH]' 'build_alias=[ARCH]' 'host_alias=[ARCH]' 'target_alias=[ARCH]' 'CC=gcc-4.8' 'CFLAGS=-g -O2' 'LDFLAGS=-static-libstdc++ -static-libgcc ' 'MAKEINFO=makeinfo --split-size=5000000' 'YACC=bison -y' --cache-file=.././config.cache --srcdir=../../../Ferry_Tagscherer/gdb/gdbserver
-configure: loading cache .././config.cache
-checking whether to enable maintainer-specific portions of Makefiles... no
-checking for [ARCH]-gcc... (cached) gcc-4.8
-checking for C compiler default output file name... a.out
-checking whether the C compiler works... yes
-checking whether we are cross compiling... no
-checking for suffix of executables... 
-checking for suffix of object files... (cached) o
-checking whether we are using the GNU C compiler... (cached) yes
-checking whether gcc-4.8 accepts -g... (cached) yes
-checking for gcc-4.8 option to accept ISO C89... (cached) none needed
-checking how to run the C preprocessor... (cached) gcc-4.8 -E
-checking for grep that handles long lines and -e... (cached) /bin/grep
-checking for egrep... (cached) /bin/grep -E
-checking for ANSI C header files... (cached) yes
-checking for sys/types.h... (cached) yes
-checking for sys/stat.h... (cached) yes
-checking for stdlib.h... (cached) yes
-checking for string.h... (cached) yes
-checking for memory.h... (cached) yes
-checking for strings.h... (cached) yes
-checking for inttypes.h... (cached) yes
-checking for stdint.h... (cached) yes
-checking for unistd.h... (cached) yes
-checking for minix/config.h... (cached) no
-checking whether it is safe to define __EXTENSIONS__... (cached) yes
-checking for special C compiler options needed for large files... (cached) no
-checking for _FILE_OFFSET_BITS value needed for large files... (cached) 64
-checking build system type... (cached) [ARCH]
-checking host system type... (cached) [ARCH]
-checking target system type... (cached) [ARCH]
-checking for a BSD-compatible install... /usr/bin/install -c
-checking for [ARCH]-ranlib... (cached) ranlib
-checking for ANSI C header files... (cached) yes
-checking for dirent.h that defines DIR... (cached) yes
-checking for library containing opendir... (cached) none required
-checking for working alloca.h... (cached) yes
-checking for alloca... (cached) yes
-checking dependency style of gcc-4.8... (cached) gcc3
-checking for make... (cached) make
-checking whether make sets $(MAKE)... (cached) yes
-=== configuring in build-gnulib-gdbserver ([...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver/build-gnulib-gdbserver)
-configure: running /bin/dash ../../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/configure --disable-option-checking '--prefix=[...]/tschwinge/Ferry_Tagscherer.build.install'  '--with-system-zlib' '--disable-werror' '--program-transform-name=s,y,y,' '--build=[ARCH]' '--host=[ARCH]' '--target=[ARCH]' 'build_alias=[ARCH]' 'host_alias=[ARCH]' 'target_alias=[ARCH]' 'CC=gcc-4.8' 'CFLAGS=-g -O2' 'LDFLAGS=-static-libstdc++ -static-libgcc ' 'MAKEINFO=makeinfo --split-size=5000000' 'YACC=bison -y' --cache-file=.././config.cache --srcdir=../../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib
-configure: creating cache .././config.cache
-checking whether to enable maintainer-specific portions of Makefiles... no
-checking for [ARCH]-gcc... gcc-4.8
-checking for C compiler default output file name... a.out
-checking whether the C compiler works... yes
-checking whether we are cross compiling... no
-checking for suffix of executables... 
-checking for suffix of object files... o
-checking whether we are using the GNU C compiler... yes
-checking whether gcc-4.8 accepts -g... yes
-checking for gcc-4.8 option to accept ISO C89... none needed
-checking build system type... [ARCH]
-checking host system type... [ARCH]
-checking how to run the C preprocessor... gcc-4.8 -E
-checking for grep that handles long lines and -e... /bin/grep
-checking for egrep... /bin/grep -E
-checking for ANSI C header files... yes
-checking for sys/types.h... yes
-checking for sys/stat.h... yes
-checking for stdlib.h... yes
-checking for string.h... yes
-checking for memory.h... yes
-checking for strings.h... yes
-checking for inttypes.h... yes
-checking for stdint.h... yes
-checking for unistd.h... yes
-checking minix/config.h usability... no
-checking minix/config.h presence... no
-checking for minix/config.h... no
-checking whether it is safe to define __EXTENSIONS__... yes
-checking for Minix Amsterdam compiler... no
-checking for [ARCH]-gcc... (cached) gcc-4.8
-checking whether we are using the GNU C compiler... (cached) yes
-checking whether gcc-4.8 accepts -g... (cached) yes
-checking for gcc-4.8 option to accept ISO C89... (cached) none needed
-checking target system type... [ARCH]
-checking for working alloca.h... yes
-checking for alloca... yes
-checking for mbstate_t... yes
-checking for btowc... yes
-checking for isblank... yes
-checking for iswctype... yes
-checking for mbsrtowcs... yes
-checking for mempcpy... yes
-checking for wmemchr... yes
-checking for wmemcpy... yes
-checking for wmempcpy... yes
-checking for symlink... yes
-checking for mbsinit... yes
-checking for mbrtowc... yes
-checking for mprotect... yes
-checking for iswcntrl... yes
-checking wctype.h usability... yes
-checking wctype.h presence... yes
-checking for wctype.h... yes
-checking wchar.h usability... yes
-checking wchar.h presence... yes
-checking for wchar.h... yes
-checking for stdint.h... (cached) yes
-checking for inttypes.h... (cached) yes
-checking for unistd.h... (cached) yes
-checking sys/mman.h usability... yes
-checking sys/mman.h presence... yes
-checking for sys/mman.h... yes
-checking features.h usability... yes
-checking features.h presence... yes
-checking for features.h... yes
-checking for unsigned long long int... yes
-checking for long long int... yes
-checking whether the preprocessor supports include_next... yes
-checking whether system header files limit the line length... no
-checking whether stdint.h conforms to C99... yes
-checking whether imaxabs is declared without a macro... yes
-checking whether imaxdiv is declared without a macro... yes
-checking whether strtoimax is declared without a macro... yes
-checking whether strtoumax is declared without a macro... yes
-checking for inttypes.h... (cached) yes
-checking whether the inttypes.h PRIxNN macros are broken... no
-checking for nl_langinfo and CODESET... yes
-checking for working fcntl.h... yes
-checking whether getc_unlocked is declared... yes
-checking whether we are using the GNU C Library >= 2.1 or uClibc... yes
-checking for a traditional japanese locale... ja_JP
-checking for a transitional chinese locale... zh_CN.GB18030
-checking for a french Unicode locale... fr_FR.UTF-8
-checking for a traditional french locale... fr_FR
-checking for mmap... yes
-checking for MAP_ANONYMOUS... yes
-checking whether memchr works... yes
-checking whether memmem is declared... yes
-checking for memmem... yes
-checking whether memmem works... yes
-checking for stdbool.h that conforms to C99... yes
-checking for _Bool... yes
-checking for wchar_t... yes
-checking for C/C++ restrict keyword... __restrict
-checking whether ffsl is declared without a macro... yes
-checking whether ffsll is declared without a macro... yes
-checking whether memmem is declared without a macro... yes
-checking whether mempcpy is declared without a macro... yes
-checking whether memrchr is declared without a macro... yes
-checking whether rawmemchr is declared without a macro... yes
-checking whether stpcpy is declared without a macro... yes
-checking whether stpncpy is declared without a macro... yes
-checking whether strchrnul is declared without a macro... yes
-checking whether strdup is declared without a macro... yes
-checking whether strncat is declared without a macro... yes
-checking whether strndup is declared without a macro... yes
-checking whether strnlen is declared without a macro... yes
-checking whether strpbrk is declared without a macro... yes
-checking whether strsep is declared without a macro... yes
-checking whether strcasestr is declared without a macro... yes
-checking whether strtok_r is declared without a macro... yes
-checking whether strerror_r is declared without a macro... yes
-checking whether strsignal is declared without a macro... yes
-checking whether strverscmp is declared without a macro... yes
-checking whether <wchar.h> uses 'inline' correctly... yes
-checking for wint_t... yes
-checking for alloca as a compiler built-in... yes
-checking for working GNU fnmatch... yes
-checking whether INT32_MAX < INTMAX_MAX... yes
-checking whether INT64_MAX == LONG_MAX... no
-checking whether UINT32_MAX < UINTMAX_MAX... yes
-checking whether UINT64_MAX == ULONG_MAX... no
-checking whether mbrtowc handles incomplete characters... yes
-checking whether mbrtowc works as well as mbtowc... yes
-checking whether mbrtowc handles a NULL pwc argument... yes
-checking whether mbrtowc handles a NULL string argument... yes
-checking whether mbrtowc has a correct return value... yes
-checking whether mbrtowc returns 0 when parsing a NUL character... yes
-checking whether mbrtowc handles incomplete characters... (cached) yes
-checking whether mbrtowc works as well as mbtowc... (cached) yes
-checking whether mbrtowc handles incomplete characters... (cached) yes
-checking whether mbrtowc works as well as mbtowc... (cached) yes
-checking whether mbsrtowcs works... yes
-checking whether memmem works in linear time... yes
-checking for memmem... (cached) yes
-checking whether memmem works... (cached) yes
-checking whether NULL can be used in arbitrary expressions... yes
-checking whether btowc is declared without a macro... yes
-checking whether wctob is declared without a macro... yes
-checking whether mbsinit is declared without a macro... yes
-checking whether mbrtowc is declared without a macro... yes
-checking whether mbrlen is declared without a macro... yes
-checking whether mbsrtowcs is declared without a macro... yes
-checking whether mbsnrtowcs is declared without a macro... yes
-checking whether wcrtomb is declared without a macro... yes
-checking whether wcsrtombs is declared without a macro... yes
-checking whether wcsnrtombs is declared without a macro... yes
-checking whether wcwidth is declared without a macro... yes
-checking whether wmemchr is declared without a macro... yes
-checking whether wmemcmp is declared without a macro... yes
-checking whether wmemcpy is declared without a macro... yes
-checking whether wmemmove is declared without a macro... yes
-checking whether wmemset is declared without a macro... yes
-checking whether wcslen is declared without a macro... yes
-checking whether wcsnlen is declared without a macro... yes
-checking whether wcscpy is declared without a macro... yes
-checking whether wcpcpy is declared without a macro... yes
-checking whether wcsncpy is declared without a macro... yes
-checking whether wcpncpy is declared without a macro... yes
-checking whether wcscat is declared without a macro... yes
-checking whether wcsncat is declared without a macro... yes
-checking whether wcscmp is declared without a macro... yes
-checking whether wcsncmp is declared without a macro... yes
-checking whether wcscasecmp is declared without a macro... yes
-checking whether wcsncasecmp is declared without a macro... yes
-checking whether wcscoll is declared without a macro... yes
-checking whether wcsxfrm is declared without a macro... yes
-checking whether wcsdup is declared without a macro... yes
-checking whether wcschr is declared without a macro... yes
-checking whether wcsrchr is declared without a macro... yes
-checking whether wcscspn is declared without a macro... yes
-checking whether wcsspn is declared without a macro... yes
-checking whether wcspbrk is declared without a macro... yes
-checking whether wcsstr is declared without a macro... yes
-checking whether wcstok is declared without a macro... yes
-checking whether wcswidth is declared without a macro... yes
-checking whether iswcntrl works... yes
-checking for towlower... yes
-checking for wctype_t... yes
-checking for wctrans_t... yes
-checking whether wctype is declared without a macro... yes
-checking whether iswctype is declared without a macro... yes
-checking whether wctrans is declared without a macro... yes
-checking whether towctrans is declared without a macro... yes
-checking for a BSD-compatible install... /usr/bin/install -c
-checking whether build environment is sane... yes
-checking for a thread-safe mkdir -p... /bin/mkdir -p
-checking for gawk... gawk
-checking whether make sets $(MAKE)... yes
-checking for style of include used by make... GNU
-checking dependency style of gcc-4.8... gcc3
-checking whether ln -s works... yes
-checking for [ARCH]-ranlib... ranlib
-checking for [ARCH]-ar... ar
-configure: updating cache .././config.cache
-configure: creating ./config.status
-config.status: creating Makefile
-config.status: creating import/Makefile
-config.status: creating config.h
-config.status: executing depfiles commands
-config.status: executing default commands
-checking for sgtty.h... (cached) yes
-checking for termio.h... (cached) yes
-checking for termios.h... (cached) yes
-checking for sys/reg.h... (cached) yes
-checking for string.h... (cached) yes
-checking for proc_service.h... (cached) no
-checking for sys/procfs.h... (cached) yes
-checking for thread_db.h... (cached) yes
-checking linux/elf.h usability... yes
-checking linux/elf.h presence... yes
-checking for linux/elf.h... yes
-checking for stdlib.h... (cached) yes
-checking for unistd.h... (cached) yes
-checking errno.h usability... yes
-checking errno.h presence... yes
-checking for errno.h... yes
-checking fcntl.h usability... yes
-checking fcntl.h presence... yes
-checking for fcntl.h... yes
-checking for signal.h... (cached) yes
-checking for sys/file.h... (cached) yes
-checking malloc.h usability... yes
-checking malloc.h presence... yes
-checking for malloc.h... yes
-checking for sys/ioctl.h... (cached) yes
-checking netinet/in.h usability... yes
-checking netinet/in.h presence... yes
-checking for netinet/in.h... yes
-checking for sys/socket.h... (cached) yes
-checking netdb.h usability... yes
-checking netdb.h presence... yes
-checking for netdb.h... yes
-checking netinet/tcp.h usability... yes
-checking netinet/tcp.h presence... yes
-checking for netinet/tcp.h... yes
-checking arpa/inet.h usability... yes
-checking arpa/inet.h presence... yes
-checking for arpa/inet.h... yes
-checking for sys/wait.h... (cached) yes
-checking for wait.h... (cached) yes
-checking for sys/un.h... (cached) yes
-checking for linux/perf_event.h... (cached) yes
-checking for pread... (cached) yes
-checking for pwrite... (cached) yes
-checking for pread64... (cached) yes
-checking for readlink... (cached) yes
-checking for fdwalk... (cached) no
-checking for pipe2... (cached) yes
-checking for vasprintf... yes
-checking for vsnprintf... yes
-checking for ust... no
-checking compiler warning flags...  -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body 
-checking for dladdr... yes
-checking for errno... yes - in errno.h
-checking whether strerror is declared... (cached) yes
-checking whether strstr is declared... (cached) yes
-checking whether perror is declared... yes
-checking whether vasprintf is declared... yes
-checking whether vsnprintf is declared... (cached) yes
-checking for socklen_t... (cached) yes
-checking for Elf32_auxv_t... yes
-checking for Elf64_auxv_t... yes
-checking if building for x86-64... no
-checking for PTRACE_GETREGS... yes
-checking for PTRACE_GETFPXREGS... yes
-checking for lwpid_t in sys/procfs.h... (cached) yes
-checking for psaddr_t in sys/procfs.h... (cached) yes
-checking for prgregset_t in sys/procfs.h... (cached) yes
-checking for elf_fpregset_t in sys/procfs.h... yes
-checking for dlopen in -ldl... yes
-checking for the dynamic export flag... -Wl,--dynamic-list
-checking for TD_VERSION... yes
-checking whether the target supports __sync_*_compare_and_swap... yes
-checking whether ADDR_NO_RANDOMIZE is declared... (cached) yes
-configure: updating cache .././config.cache
-configure: creating ./config.status
-config.status: creating Makefile
-config.status: creating config.h
-config.status: executing depdir commands
-mkdir -p -- .deps
-config.status: executing default commands
 make[2]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/sim'
 make[2]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/sim'
 make[2]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb'
@@ -3206,31 +2855,291 @@
 make[5]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/build-gnulib'
 make[4]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/build-gnulib'
 make[3]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb'
+gcc-4.8 -E  -DSERVERPREFIX=S_ -x c ../../Ferry_Tagscherer/gdb/notify.defs \
+	| mig -cc cat - /dev/null -sheader notify_S.h -server notify_S.c -user /dev/null -header /dev/null
+gcc-4.8 -E  -DSERVERPREFIX=S_ -x c ../../Ferry_Tagscherer/gdb/process_reply.defs \
+	| mig -cc cat - /dev/null -sheader process_reply_S.h -server process_reply_S.raw -user /dev/null -header /dev/null \
+	&& gawk -f ../../Ferry_Tagscherer/gdb/reply_mig_hack.awk < process_reply_S.raw > process_reply_S.c
+gcc-4.8 -E  -DSERVERPREFIX=S_ -x c ../../Ferry_Tagscherer/gdb/msg_reply.defs \
+	| mig -cc cat - /dev/null -sheader msg_reply_S.h -server msg_reply_S.raw -user /dev/null -header /dev/null \
+	&& gawk -f ../../Ferry_Tagscherer/gdb/reply_mig_hack.awk < msg_reply_S.raw > msg_reply_S.c
+gcc-4.8 -E  -D'MSG_IMPORTS=waittime 1000;' -x c ../../Ferry_Tagscherer/gdb/msg.defs \
+	| mig -cc cat - /dev/null -sheader /dev/null -server /dev/null -user msg_U.c -header msg_U.h
+gcc-4.8 -E   -x c ../../Ferry_Tagscherer/gdb/exc_request.defs \
+	| mig -cc cat - /dev/null -sheader /dev/null -server /dev/null -user exc_request_U.c -header exc_request_U.h
+gcc-4.8 -E  -DSERVERPREFIX=S_ -x c ../../Ferry_Tagscherer/gdb/exc_request.defs \
+	| mig -cc cat - /dev/null -sheader exc_request_S.h -server exc_request_S.c -user /dev/null -header /dev/null
 gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o gdb.o -MT gdb.o -MMD -MP -MF .deps/gdb.Tpo ../../Ferry_Tagscherer/gdb/gdb.c
 gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o i386-tdep.o -MT i386-tdep.o -MMD -MP -MF .deps/i386-tdep.Tpo ../../Ferry_Tagscherer/gdb/i386-tdep.c
-gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o i386-linux-tdep.o -MT i386-linux-tdep.o -MMD -MP -MF .deps/i386-linux-tdep.Tpo ../../Ferry_Tagscherer/gdb/i386-linux-tdep.c
-gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o glibc-tdep.o -MT glibc-tdep.o -MMD -MP -MF .deps/glibc-tdep.Tpo ../../Ferry_Tagscherer/gdb/glibc-tdep.c
 gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o i387-tdep.o -MT i387-tdep.o -MMD -MP -MF .deps/i387-tdep.Tpo ../../Ferry_Tagscherer/gdb/i387-tdep.c
+gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o i386gnu-tdep.o -MT i386gnu-tdep.o -MMD -MP -MF .deps/i386gnu-tdep.Tpo ../../Ferry_Tagscherer/gdb/i386gnu-tdep.c
 gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o solib-svr4.o -MT solib-svr4.o -MMD -MP -MF .deps/solib-svr4.Tpo ../../Ferry_Tagscherer/gdb/solib-svr4.c
-gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o symfile-mem.o -MT symfile-mem.o -MMD -MP -MF .deps/symfile-mem.Tpo ../../Ferry_Tagscherer/gdb/symfile-mem.c
-gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o linux-tdep.o -MT linux-tdep.o -MMD -MP -MF .deps/linux-tdep.Tpo ../../Ferry_Tagscherer/gdb/linux-tdep.c
-gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o linux-record.o -MT linux-record.o -MMD -MP -MF .deps/linux-record.Tpo ../../Ferry_Tagscherer/gdb/linux-record.c
 gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o ser-base.o -MT ser-base.o -MMD -MP -MF .deps/ser-base.Tpo ../../Ferry_Tagscherer/gdb/ser-base.c
 gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o ser-unix.o -MT ser-unix.o -MMD -MP -MF .deps/ser-unix.Tpo ../../Ferry_Tagscherer/gdb/ser-unix.c
 gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o ser-pipe.o -MT ser-pipe.o -MMD -MP -MF .deps/ser-pipe.Tpo ../../Ferry_Tagscherer/gdb/ser-pipe.c
 gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o ser-tcp.o -MT ser-tcp.o -MMD -MP -MF .deps/ser-tcp.Tpo ../../Ferry_Tagscherer/gdb/ser-tcp.c
-gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o inf-ptrace.o -MT inf-ptrace.o -MMD -MP -MF .deps/inf-ptrace.Tpo ../../Ferry_Tagscherer/gdb/inf-ptrace.c
+gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o i386gnu-nat.o -MT i386gnu-nat.o -MMD -MP -MF .deps/i386gnu-nat.Tpo ../../Ferry_Tagscherer/gdb/i386gnu-nat.c
+gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o gnu-nat.o -MT gnu-nat.o -MMD -MP -MF .deps/gnu-nat.Tpo ../../Ferry_Tagscherer/gdb/gnu-nat.c
+In file included from ../../Ferry_Tagscherer/gdb/gnu-nat.c:67:0:
+../../Ferry_Tagscherer/gdb/gnu-nat.c: In function 'proc_set_exception_port':
+../../Ferry_Tagscherer/gdb/gnu-nat.h:89:15: warning: format '%d' expects argument of type 'int', but argument 8 has type 'mach_port_t' [-Wformat=]
+   do { struct proc *__proc = (_proc); \
+               ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:408:3: note: in expansion of macro 'proc_debug'
+   proc_debug (proc, "setting exception port: %d", port);
+   ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c: In function 'proc_steal_exc_port':
+../../Ferry_Tagscherer/gdb/gnu-nat.h:89:15: warning: format '%d' expects argument of type 'int', but argument 8 has type 'mach_port_t' [-Wformat=]
+   do { struct proc *__proc = (_proc); \
+               ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:448:7: note: in expansion of macro 'proc_debug'
+       proc_debug (proc, "inserting exception port: %d", exc_port);
+       ^
+../../Ferry_Tagscherer/gdb/gnu-nat.h:89:15: warning: format '%d' expects argument of type 'int', but argument 8 has type 'mach_port_t' [-Wformat=]
+   do { struct proc *__proc = (_proc); \
+               ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:469:7: note: in expansion of macro 'proc_debug'
+       proc_debug (proc, "saved exception port: %d", proc->saved_exc_port);
+       ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c: In function 'make_proc':
+../../Ferry_Tagscherer/gdb/gnu-nat.c:582:7: warning: format '%d' expects argument of type 'int', but argument 2 has type 'mach_port_t' [-Wformat=]
+       port, safe_strerror (err));
+       ^
+In file included from ../../Ferry_Tagscherer/gdb/gnu-nat.c:67:0:
+../../Ferry_Tagscherer/gdb/gnu-nat.h:89:15: warning: format '%d' expects argument of type 'int', but argument 8 has type 'mach_port_t' [-Wformat=]
+   do { struct proc *__proc = (_proc); \
+               ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:585:7: note: in expansion of macro 'proc_debug'
+       proc_debug (proc, "notifications to: %d", inf->event_port);
+       ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c: At top level:
+../../Ferry_Tagscherer/gdb/gnu-nat.c:642:1: warning: no previous prototype for 'make_inf' [-Wmissing-prototypes]
+ make_inf (void)
+ ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c: In function 'inf_set_pid':
+../../Ferry_Tagscherer/gdb/gnu-nat.c:113:15: warning: format '%d' expects argument of type 'int', but argument 7 has type 'task_t' [-Wformat=]
+   do { struct inf *__inf = (_inf); \
+               ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:760:3: note: in expansion of macro 'inf_debug'
+   inf_debug (inf, "setting task: %d", task_port);
+   ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c: At top level:
+../../Ferry_Tagscherer/gdb/gnu-nat.c:878:1: warning: no previous prototype for 'inf_set_traced' [-Wmissing-prototypes]
+ inf_set_traced (struct inf *inf, int on)
+ ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:979:1: warning: no previous prototype for 'inf_port_to_thread' [-Wmissing-prototypes]
+ inf_port_to_thread (struct inf *inf, mach_port_t port)
+ ^
+In file included from ../../Ferry_Tagscherer/gdb/gnu-nat.c:67:0:
+../../Ferry_Tagscherer/gdb/gnu-nat.c: In function 'inf_validate_procs':
+../../Ferry_Tagscherer/gdb/gnu-nat.h:89:15: warning: format '%d' expects argument of type 'int', but argument 8 has type 'thread_t' [-Wformat=]
+   do { struct proc *__proc = (_proc); \
+               ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:1084:6: note: in expansion of macro 'proc_debug'
+      proc_debug (thread, "new thread: %d", threads[i]);
+      ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c: In function 'inf_signal':
+../../Ferry_Tagscherer/gdb/gnu-nat.c:113:15: warning: format '%d' expects argument of type 'int', but argument 7 has type 'thread_t' [-Wformat=]
+   do { struct inf *__inf = (_inf); \
+               ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:1348:4: note: in expansion of macro 'inf_debug'
+    inf_debug (inf, "passing through exception:"
+    ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:113:15: warning: format '%d' expects argument of type 'int', but argument 8 has type 'thread_t' [-Wformat=]
+   do { struct inf *__inf = (_inf); \
+               ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:1348:4: note: in expansion of macro 'inf_debug'
+    inf_debug (inf, "passing through exception:"
+    ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c: In function 'S_exception_raise_request':
+../../Ferry_Tagscherer/gdb/gnu-nat.c:113:15: warning: format '%d' expects argument of type 'int', but argument 7 has type 'thread_t' [-Wformat=]
+   do { struct inf *__inf = (_inf); \
+               ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:1667:3: note: in expansion of macro 'inf_debug'
+   inf_debug (waiting_inf,
+   ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:113:15: warning: format '%d' expects argument of type 'int', but argument 8 has type 'task_t' [-Wformat=]
+   do { struct inf *__inf = (_inf); \
+               ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:1667:3: note: in expansion of macro 'inf_debug'
+   inf_debug (waiting_inf,
+   ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:113:15: warning: format '%d' expects argument of type 'int', but argument 7 has type 'mach_port_t' [-Wformat=]
+   do { struct inf *__inf = (_inf); \
+               ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:1704:8: note: in expansion of macro 'inf_debug'
+        inf_debug (waiting_inf, "Handler is thread exception port <%d>",
+        ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:113:15: warning: format '%d' expects argument of type 'int', but argument 7 has type 'mach_port_t' [-Wformat=]
+   do { struct inf *__inf = (_inf); \
+               ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:1710:8: note: in expansion of macro 'inf_debug'
+        inf_debug (waiting_inf, "Handler is task exception port <%d>",
+        ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c: At top level:
+../../Ferry_Tagscherer/gdb/gnu-nat.c:1747:1: warning: no previous prototype for 'inf_task_died_status' [-Wmissing-prototypes]
+ inf_task_died_status (struct inf *inf)
+ ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c: In function 'do_mach_notify_dead_name':
+../../Ferry_Tagscherer/gdb/gnu-nat.c:113:15: warning: format '%d' expects argument of type 'int', but argument 7 has type 'mach_port_t' [-Wformat=]
+   do { struct inf *__inf = (_inf); \
+               ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:1761:3: note: in expansion of macro 'inf_debug'
+   inf_debug (waiting_inf, "port = %d", dead_port);
+   ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c: At top level:
+../../Ferry_Tagscherer/gdb/gnu-nat.c:2272:1: warning: no previous prototype for 'gnu_read_inferior' [-Wmissing-prototypes]
+ gnu_read_inferior (task_t task, CORE_ADDR addr, char *myaddr, int length)
+ ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c: In function 'gnu_read_inferior':
+../../Ferry_Tagscherer/gdb/gnu-nat.c:2282:3: warning: pointer targets in passing argument 5 of 'vm_read' differ in signedness [-Wpointer-sign]
+   err = vm_read (task, low_address, aligned_length, &copied, &copy_count);
+   ^
+In file included from /usr/include/mach.h:37:0,
+                 from ./nm.h:23,
+                 from ../../Ferry_Tagscherer/gdb/defs.h:505,
+                 from ../../Ferry_Tagscherer/gdb/gnu-nat.c:23:
+/usr/include/mach/mach_interface.h:843:15: note: expected 'mach_msg_type_number_t *' but argument is of type 'int *'
+ kern_return_t vm_read
+               ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c: At top level:
+../../Ferry_Tagscherer/gdb/gnu-nat.c:2318:1: warning: no previous prototype for 'gnu_write_inferior' [-Wmissing-prototypes]
+ gnu_write_inferior (task_t task, CORE_ADDR addr, char *myaddr, int length)
+ ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c: In function 'gnu_write_inferior':
+../../Ferry_Tagscherer/gdb/gnu-nat.c:2338:4: warning: pointer targets in passing argument 5 of 'vm_read' differ in signedness [-Wpointer-sign]
+    &copy_count);
+    ^
+In file included from /usr/include/mach.h:37:0,
+                 from ./nm.h:23,
+                 from ../../Ferry_Tagscherer/gdb/defs.h:505,
+                 from ../../Ferry_Tagscherer/gdb/gnu-nat.c:23:
+/usr/include/mach/mach_interface.h:843:15: note: expected 'mach_msg_type_number_t *' but argument is of type 'int *'
+ kern_return_t vm_read
+               ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:2383:8: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'vm_address_t' [-Wformat=]
+        old_address);
+        ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:2393:8: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'vm_address_t' [-Wformat=]
+        old_address);
+        ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c: In function 'gnu_xfer_memory':
+../../Ferry_Tagscherer/gdb/gnu-nat.c:2495:2: warning: pointer targets in passing argument 3 of 'gnu_write_inferior' differ in signedness [-Wpointer-sign]
+  return gnu_write_inferior (task, memaddr, myaddr, len);
+  ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:2318:1: note: expected 'char *' but argument is of type 'gdb_byte *'
+ gnu_write_inferior (task_t task, CORE_ADDR addr, char *myaddr, int length)
+ ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:2497:2: warning: pointer targets in passing argument 3 of 'gnu_read_inferior' differ in signedness [-Wpointer-sign]
+  return gnu_read_inferior (task, memaddr, myaddr, len);
+  ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c:2272:1: note: expected 'char *' but argument is of type 'gdb_byte *'
+ gnu_read_inferior (task_t task, CORE_ADDR addr, char *myaddr, int length)
+ ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c: In function 'steal_exc_port':
+../../Ferry_Tagscherer/gdb/gnu-nat.c:2866:5: warning: format '%d' expects argument of type 'int', but argument 2 has type 'mach_port_t' [-Wformat=]
+     name, safe_strerror (err));
+     ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c: In function 'set_exceptions_cmd':
+../../Ferry_Tagscherer/gdb/gnu-nat.c:2981:15: warning: suggest braces around empty body in an 'if' statement [-Wempty-body]
+     /* XXX */ ;
+               ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c: In function 'info_port_rights':
+../../Ferry_Tagscherer/gdb/gnu-nat.c:3057:11: warning: passing argument 1 of 'parse_to_comma_and_eval' from incompatible pointer type [enabled by default]
+    struct value *val = parse_to_comma_and_eval (&args);
+           ^
+In file included from ../../Ferry_Tagscherer/gdb/breakpoint.h:23:0,
+                 from ../../Ferry_Tagscherer/gdb/inferior.h:37,
+                 from ../../Ferry_Tagscherer/gdb/gnu-nat.c:55:
+../../Ferry_Tagscherer/gdb/value.h:729:22: note: expected 'const char **' but argument is of type 'char **'
+ extern struct value *parse_to_comma_and_eval (const char **expp);
+                      ^
+../../Ferry_Tagscherer/gdb/gnu-nat.c: At top level:
+../../Ferry_Tagscherer/gdb/gnu-nat.c:3416:1: warning: no previous prototype for '_initialize_gnu_nat' [-Wmissing-prototypes]
+ _initialize_gnu_nat (void)
+ ^
+gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o core-regset.o -MT core-regset.o -MMD -MP -MF .deps/core-regset.Tpo ../../Ferry_Tagscherer/gdb/core-regset.c
 gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o fork-child.o -MT fork-child.o -MMD -MP -MF .deps/fork-child.Tpo ../../Ferry_Tagscherer/gdb/fork-child.c
-gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o i386-nat.o -MT i386-nat.o -MMD -MP -MF .deps/i386-nat.Tpo ../../Ferry_Tagscherer/gdb/i386-nat.c
-gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o i386-linux-nat.o -MT i386-linux-nat.o -MMD -MP -MF .deps/i386-linux-nat.Tpo ../../Ferry_Tagscherer/gdb/i386-linux-nat.c
-gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o proc-service.o -MT proc-service.o -MMD -MP -MF .deps/proc-service.Tpo ../../Ferry_Tagscherer/gdb/proc-service.c
-gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o linux-thread-db.o -MT linux-thread-db.o -MMD -MP -MF .deps/linux-thread-db.Tpo ../../Ferry_Tagscherer/gdb/linux-thread-db.c
-gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o linux-nat.o -MT linux-nat.o -MMD -MP -MF .deps/linux-nat.Tpo ../../Ferry_Tagscherer/gdb/linux-nat.c
-gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o linux-osdata.o -MT linux-osdata.o -MMD -MP -MF .deps/linux-osdata.Tpo ../../Ferry_Tagscherer/gdb/common/linux-osdata.c
-gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o linux-fork.o -MT linux-fork.o -MMD -MP -MF .deps/linux-fork.Tpo ../../Ferry_Tagscherer/gdb/linux-fork.c
-gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o linux-procfs.o -MT linux-procfs.o -MMD -MP -MF .deps/linux-procfs.Tpo ../../Ferry_Tagscherer/gdb/common/linux-procfs.c
-gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o linux-ptrace.o -MT linux-ptrace.o -MMD -MP -MF .deps/linux-ptrace.Tpo ../../Ferry_Tagscherer/gdb/common/linux-ptrace.c
-gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o linux-btrace.o -MT linux-btrace.o -MMD -MP -MF .deps/linux-btrace.Tpo ../../Ferry_Tagscherer/gdb/common/linux-btrace.c
+gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o notify_S.o -MT notify_S.o -MMD -MP -MF .deps/notify_S.Tpo notify_S.c
+notify_S.c:305:24: warning: no previous prototype for 'notify_server' [-Wmissing-prototypes]
+ mig_external boolean_t notify_server
+                        ^
+notify_S.c:341:28: warning: no previous prototype for 'notify_server_routine' [-Wmissing-prototypes]
+ mig_external mig_routine_t notify_server_routine
+                            ^
+gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o process_reply_S.o -MT process_reply_S.o -MMD -MP -MF .deps/process_reply_S.Tpo process_reply_S.c
+process_reply_S.c:343:24: warning: no previous prototype for 'process_reply_server' [-Wmissing-prototypes]
+ mig_external boolean_t process_reply_server
+                        ^
+process_reply_S.c:379:28: warning: no previous prototype for 'process_reply_server_routine' [-Wmissing-prototypes]
+ mig_external mig_routine_t process_reply_server_routine
+                            ^
+gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o msg_reply_S.o -MT msg_reply_S.o -MMD -MP -MF .deps/msg_reply_S.Tpo msg_reply_S.c
+msg_reply_S.c:165:24: warning: no previous prototype for 'msg_reply_server' [-Wmissing-prototypes]
+ mig_external boolean_t msg_reply_server
+                        ^
+msg_reply_S.c:201:28: warning: no previous prototype for 'msg_reply_server_routine' [-Wmissing-prototypes]
+ mig_external mig_routine_t msg_reply_server_routine
+                            ^
+gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o msg_U.o -MT msg_U.o -MMD -MP -MF .deps/msg_U.Tpo msg_U.c
+msg_U.c: In function 'msg_del_auth':
+msg_U.c:504:3: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
+   *((int **)InP->uids) = uids;
+   ^
+msg_U.c:519:3: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
+   *((int **)InP->gids) = gids;
+   ^
+msg_U.c: In function 'msg_get_init_ports':
+msg_U.c:956:6: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
+      *ports = *((mach_port_t **)OutP->ports);
+      ^
+msg_U.c: In function 'msg_set_init_ports':
+msg_U.c:1049:3: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
+   *((mach_port_t **)InP->ports) = ports;
+   ^
+msg_U.c: In function 'msg_get_init_ints':
+msg_U.c:1480:6: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
+      *values = *((int **)OutP->values);
+      ^
+msg_U.c: In function 'msg_set_init_ints':
+msg_U.c:1572:3: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
+   *((int **)InP->values) = values;
+   ^
+msg_U.c: In function 'msg_get_dtable':
+msg_U.c:1738:6: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
+      *dtable = *((mach_port_t **)OutP->dtable);
+      ^
+msg_U.c: In function 'msg_set_dtable':
+msg_U.c:1831:3: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
+   *((mach_port_t **)InP->dtable) = dtable;
+   ^
+msg_U.c: In function 'msg_get_environment':
+msg_U.c:2252:6: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
+      *value = *((char **)OutP->value);
+      ^
+msg_U.c: In function 'msg_set_environment':
+msg_U.c:2344:3: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
+   *((char **)InP->value) = value;
+   ^
+msg_U.c: In function 'msg_get_env_variable':
+msg_U.c:2510:6: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
+      *value = *((char **)OutP->value);
+      ^
+msg_U.c: In function 'msg_describe_ports':
+msg_U.c:3017:3: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
+   *((mach_port_t **)InP->names) = names;
+   ^
+msg_U.c:3082:6: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
+      *descriptions = *((char **)OutP->descriptions);
+      ^
+gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o exc_request_U.o -MT exc_request_U.o -MMD -MP -MF .deps/exc_request_U.Tpo exc_request_U.c
+gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o exc_request_S.o -MT exc_request_S.o -MMD -MP -MF .deps/exc_request_S.Tpo exc_request_S.c
+exc_request_S.c:157:24: warning: no previous prototype for 'exc_server' [-Wmissing-prototypes]
+ mig_external boolean_t exc_server
+                        ^
+exc_request_S.c:193:28: warning: no previous prototype for 'exc_server_routine' [-Wmissing-prototypes]
+ mig_external mig_routine_t exc_server_routine
+                            ^
 gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o remote.o -MT remote.o -MMD -MP -MF .deps/remote.Tpo ../../Ferry_Tagscherer/gdb/remote.c
 gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o dcache.o -MT dcache.o -MMD -MP -MF .deps/dcache.Tpo ../../Ferry_Tagscherer/gdb/dcache.c
 gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o tracepoint.o -MT tracepoint.o -MMD -MP -MF .deps/tracepoint.Tpo ../../Ferry_Tagscherer/gdb/tracepoint.c
@@ -3645,444 +3554,12 @@
 gcc-4.8 -g -O2   -I. -I../../Ferry_Tagscherer/gdb -I../../Ferry_Tagscherer/gdb/common -I../../Ferry_Tagscherer/gdb/config -DLOCALEDIR="\"[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale\"" -DHAVE_CONFIG_H -I../../Ferry_Tagscherer/gdb/../include/opcode -I../../Ferry_Tagscherer/gdb/../opcodes/.. -I../../Ferry_Tagscherer/gdb/../readline/.. -I../bfd -I../../Ferry_Tagscherer/gdb/../bfd -I../../Ferry_Tagscherer/gdb/../include -I../libdecnumber -I../../Ferry_Tagscherer/gdb/../libdecnumber  -I../../Ferry_Tagscherer/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wdeclaration-after-statement -Wpointer-arith -Wpointer-sign -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wmissing-prototypes -Wdeclaration-after-statement -Wempty-body -Wformat-nonliteral  -c -o init.o -MT init.o -MMD -MP -MF .deps/init.Tpo init.c
 rm -f gdb
 gcc-4.8 -g -O2   -static-libstdc++ -static-libgcc    \
-		-o gdb gdb.o i386-tdep.o i386-linux-tdep.o glibc-tdep.o i387-tdep.o solib-svr4.o symfile-mem.o linux-tdep.o linux-record.o ser-base.o ser-unix.o ser-pipe.o ser-tcp.o inf-ptrace.o fork-child.o i386-nat.o i386-linux-nat.o proc-service.o linux-thread-db.o linux-nat.o linux-osdata.o linux-fork.o linux-procfs.o linux-ptrace.o linux-btrace.o remote.o dcache.o tracepoint.o ax-general.o ax-gdb.o remote-fileio.o remote-notif.o ctf.o  cli-dump.o cli-decode.o cli-script.o cli-cmds.o cli-setshow.o cli-logging.o cli-interp.o cli-utils.o mi-out.o mi-console.o mi-cmds.o mi-cmd-catch.o mi-cmd-env.o mi-cmd-var.o mi-cmd-break.o mi-cmd-stack.o mi-cmd-file.o mi-cmd-disas.o mi-symbol-cmds.o mi-cmd-target.o mi-cmd-info.o mi-interp.o mi-main.o mi-parse.o mi-getopt.o tui-command.o tui-data.o tui-disasm.o tui-file.o tui-hooks.o tui-interp.o tui-io.o tui-layout.o tui-out.o tui-regs.o tui-source.o tui-stack.o tui-win.o tui-windata.o tui-wingeneral.o tui-winsource.o tui.o python.o py-arch.o py-auto-load.o py-block.o py-bpevent.o py-breakpoint.o py-cmd.o py-continueevent.o py-event.o py-evtregistry.o py-evts.o py-exitedevent.o py-finishbreakpoint.o py-frame.o py-framefilter.o py-function.o py-gdb-readline.o py-inferior.o py-infthread.o py-lazy-string.o py-newobjfileevent.o py-objfile.o py-param.o py-prettyprint.o py-progspace.o py-signalevent.o py-stopevent.o py-symbol.o py-symtab.o py-threadevent.o py-type.o py-utils.o py-value.o elfread.o stap-probe.o posix-hdep.o c-exp.o cp-name-parser.o ada-exp.o jv-exp.o f-exp.o go-exp.o m2-exp.o p-exp.o version.o annotate.o addrmap.o auto-load.o auxv.o agent.o bfd-target.o blockframe.o breakpoint.o break-catch-sig.o break-catch-throw.o findvar.o regcache.o cleanups.o charset.o continuations.o corelow.o disasm.o dummy-frame.o dfp.o source.o value.o eval.o valops.o valarith.o valprint.o printcmd.o block.o symtab.o psymtab.o symfile.o symmisc.o linespec.o dictionary.o infcall.o infcmd.o infrun.o expprint.o environ.o stack.o thread.o exceptions.o filesystem.o filestuff.o inf-child.o interps.o minidebug.o main.o macrotab.o macrocmd.o macroexp.o macroscope.o mi-common.o event-loop.o event-top.o inf-loop.o completer.o gdbarch.o arch-utils.o gdbtypes.o gdb_bfd.o gdb_obstack.o osabi.o copying.o memattr.o mem-break.o target.o parse.o language.o buildsym.o findcmd.o std-regs.o signals.o exec.o reverse.o bcache.o objfiles.o observer.o minsyms.o maint.o demangle.o dbxread.o coffread.o coff-pe-read.o dwarf2read.o mipsread.o stabsread.o corefile.o dwarf2expr.o dwarf2loc.o dwarf2-frame.o dwarf2-frame-tailcall.o ada-lang.o c-lang.o d-lang.o f-lang.o objc-lang.o ada-tasks.o ada-varobj.o ui-out.o cli-out.o varobj.o vec.o go-lang.o go-valprint.o go-typeprint.o jv-lang.o jv-valprint.o jv-typeprint.o m2-lang.o opencl-lang.o p-lang.o p-typeprint.o p-valprint.o sentinel-frame.o complaints.o typeprint.o ada-typeprint.o c-typeprint.o f-typeprint.o m2-typeprint.o ada-valprint.o c-valprint.o cp-valprint.o d-valprint.o f-valprint.o m2-valprint.o serial.o mdebugread.o top.o utils.o ui-file.o user-regs.o frame.o frame-unwind.o doublest.o frame-base.o inline-frame.o gnu-v2-abi.o gnu-v3-abi.o cp-abi.o cp-support.o cp-namespace.o reggroups.o regset.o trad-frame.o tramp-frame.o solib.o solib-target.o prologue-value.o memory-map.o memrange.o xml-support.o xml-syscall.o xml-utils.o target-descriptions.o target-memory.o xml-tdesc.o xml-builtin.o inferior.o osdata.o gdb_usleep.o record.o record-full.o gcore.o gdb_vecs.o jit.o progspace.o skip.o probe.o common-utils.o buffer.o ptid.o gdb-dlfcn.o common-agent.o format.o registry.o btrace.o record-btrace.o inflow.o    init.o \
-		   ../readline/libreadline.a ../opcodes/libopcodes.a ../bfd/libbfd.a  ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a    -ldl -lncurses -lz -lm    -lpthread -ldl -lutil -lm -lpython2.7 -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions -lexpat -llzma  ../libiberty/libiberty.a  build-gnulib/import/libgnu.a -ldl -Wl,--dynamic-list=../../Ferry_Tagscherer/gdb/proc-service.list
+		-o gdb gdb.o i386-tdep.o i387-tdep.o i386gnu-tdep.o solib-svr4.o ser-base.o ser-unix.o ser-pipe.o ser-tcp.o i386gnu-nat.o gnu-nat.o core-regset.o fork-child.o notify_S.o process_reply_S.o msg_reply_S.o msg_U.o exc_request_U.o exc_request_S.o remote.o dcache.o tracepoint.o ax-general.o ax-gdb.o remote-fileio.o remote-notif.o ctf.o  cli-dump.o cli-decode.o cli-script.o cli-cmds.o cli-setshow.o cli-logging.o cli-interp.o cli-utils.o mi-out.o mi-console.o mi-cmds.o mi-cmd-catch.o mi-cmd-env.o mi-cmd-var.o mi-cmd-break.o mi-cmd-stack.o mi-cmd-file.o mi-cmd-disas.o mi-symbol-cmds.o mi-cmd-target.o mi-cmd-info.o mi-interp.o mi-main.o mi-parse.o mi-getopt.o tui-command.o tui-data.o tui-disasm.o tui-file.o tui-hooks.o tui-interp.o tui-io.o tui-layout.o tui-out.o tui-regs.o tui-source.o tui-stack.o tui-win.o tui-windata.o tui-wingeneral.o tui-winsource.o tui.o python.o py-arch.o py-auto-load.o py-block.o py-bpevent.o py-breakpoint.o py-cmd.o py-continueevent.o py-event.o py-evtregistry.o py-evts.o py-exitedevent.o py-finishbreakpoint.o py-frame.o py-framefilter.o py-function.o py-gdb-readline.o py-inferior.o py-infthread.o py-lazy-string.o py-newobjfileevent.o py-objfile.o py-param.o py-prettyprint.o py-progspace.o py-signalevent.o py-stopevent.o py-symbol.o py-symtab.o py-threadevent.o py-type.o py-utils.o py-value.o elfread.o stap-probe.o posix-hdep.o c-exp.o cp-name-parser.o ada-exp.o jv-exp.o f-exp.o go-exp.o m2-exp.o p-exp.o version.o annotate.o addrmap.o auto-load.o auxv.o agent.o bfd-target.o blockframe.o breakpoint.o break-catch-sig.o break-catch-throw.o findvar.o regcache.o cleanups.o charset.o continuations.o corelow.o disasm.o dummy-frame.o dfp.o source.o value.o eval.o valops.o valarith.o valprint.o printcmd.o block.o symtab.o psymtab.o symfile.o symmisc.o linespec.o dictionary.o infcall.o infcmd.o infrun.o expprint.o environ.o stack.o thread.o exceptions.o filesystem.o filestuff.o inf-child.o interps.o minidebug.o main.o macrotab.o macrocmd.o macroexp.o macroscope.o mi-common.o event-loop.o event-top.o inf-loop.o completer.o gdbarch.o arch-utils.o gdbtypes.o gdb_bfd.o gdb_obstack.o osabi.o copying.o memattr.o mem-break.o target.o parse.o language.o buildsym.o findcmd.o std-regs.o signals.o exec.o reverse.o bcache.o objfiles.o observer.o minsyms.o maint.o demangle.o dbxread.o coffread.o coff-pe-read.o dwarf2read.o mipsread.o stabsread.o corefile.o dwarf2expr.o dwarf2loc.o dwarf2-frame.o dwarf2-frame-tailcall.o ada-lang.o c-lang.o d-lang.o f-lang.o objc-lang.o ada-tasks.o ada-varobj.o ui-out.o cli-out.o varobj.o vec.o go-lang.o go-valprint.o go-typeprint.o jv-lang.o jv-valprint.o jv-typeprint.o m2-lang.o opencl-lang.o p-lang.o p-typeprint.o p-valprint.o sentinel-frame.o complaints.o typeprint.o ada-typeprint.o c-typeprint.o f-typeprint.o m2-typeprint.o ada-valprint.o c-valprint.o cp-valprint.o d-valprint.o f-valprint.o m2-valprint.o serial.o mdebugread.o top.o utils.o ui-file.o user-regs.o frame.o frame-unwind.o doublest.o frame-base.o inline-frame.o gnu-v2-abi.o gnu-v3-abi.o cp-abi.o cp-support.o cp-namespace.o reggroups.o regset.o trad-frame.o tramp-frame.o solib.o solib-target.o prologue-value.o memory-map.o memrange.o xml-support.o xml-syscall.o xml-utils.o target-descriptions.o target-memory.o xml-tdesc.o xml-builtin.o inferior.o osdata.o gdb_usleep.o record.o record-full.o gcore.o gdb_vecs.o jit.o progspace.o skip.o probe.o common-utils.o buffer.o ptid.o gdb-dlfcn.o common-agent.o format.o registry.o btrace.o record-btrace.o inflow.o    init.o \
+		   ../readline/libreadline.a ../opcodes/libopcodes.a ../bfd/libbfd.a  ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a    -ldl -lncurses -lz -lm    -lpthread -ldl -lutil -lm -lpython2.7 -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions -lexpat -llzma  ../libiberty/libiberty.a  build-gnulib/import/libgnu.a 
 make[3]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb'
 make[4]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/doc'
 make[4]: Nothing to be done for `all'.
 make[4]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/doc'
-make[4]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver'
-CONFIG_FILES="" CONFIG_HEADERS=config.h:config.in /bin/dash ./config.status
-config.status: creating config.h
-config.status: config.h is unchanged
-config.status: executing depdir commands
-config.status: executing default commands
-config.status: creating Makefile
-config.status: executing depfiles commands
-make[5]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver'
-make[6]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver/build-gnulib-gdbserver'
-make[7]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver/build-gnulib-gdbserver'
-make[8]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver/build-gnulib-gdbserver/import'
-rm -f alloca.h-t alloca.h && \
-	{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
-	  cat ../../../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import/alloca.in.h; \
-	} > alloca.h-t && \
-	mv -f alloca.h-t alloca.h
-rm -f configmake.h-t && \
-	{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
-	  echo '#define PREFIX "[...]/tschwinge/Ferry_Tagscherer.build.install"'; \
-	  echo '#define EXEC_PREFIX "[...]/tschwinge/Ferry_Tagscherer.build.install"'; \
-	  echo '#define BINDIR "[...]/tschwinge/Ferry_Tagscherer.build.install/bin"'; \
-	  echo '#define SBINDIR "[...]/tschwinge/Ferry_Tagscherer.build.install/sbin"'; \
-	  echo '#define LIBEXECDIR "[...]/tschwinge/Ferry_Tagscherer.build.install/libexec"'; \
-	  echo '#define DATAROOTDIR "[...]/tschwinge/Ferry_Tagscherer.build.install/share"'; \
-	  echo '#define DATADIR "[...]/tschwinge/Ferry_Tagscherer.build.install/share"'; \
-	  echo '#define SYSCONFDIR "[...]/tschwinge/Ferry_Tagscherer.build.install/etc"'; \
-	  echo '#define SHAREDSTATEDIR "[...]/tschwinge/Ferry_Tagscherer.build.install/com"'; \
-	  echo '#define LOCALSTATEDIR "[...]/tschwinge/Ferry_Tagscherer.build.install/var"'; \
-	  echo '#define INCLUDEDIR "[...]/tschwinge/Ferry_Tagscherer.build.install/include"'; \
-	  echo '#define OLDINCLUDEDIR "/usr/include"'; \
-	  echo '#define DOCDIR "[...]/tschwinge/Ferry_Tagscherer.build.install/share/doc/"'; \
-	  echo '#define INFODIR "[...]/tschwinge/Ferry_Tagscherer.build.install/share/info"'; \
-	  echo '#define HTMLDIR "[...]/tschwinge/Ferry_Tagscherer.build.install/share/doc/"'; \
-	  echo '#define DVIDIR "[...]/tschwinge/Ferry_Tagscherer.build.install/share/doc/"'; \
-	  echo '#define PDFDIR "[...]/tschwinge/Ferry_Tagscherer.build.install/share/doc/"'; \
-	  echo '#define PSDIR "[...]/tschwinge/Ferry_Tagscherer.build.install/share/doc/"'; \
-	  echo '#define LIBDIR "[...]/tschwinge/Ferry_Tagscherer.build.install/lib"'; \
-	  echo '#define LISPDIR "[...]/tschwinge/Ferry_Tagscherer.build.install/share/emacs/site-lisp"'; \
-	  echo '#define LOCALEDIR "[...]/tschwinge/Ferry_Tagscherer.build.install/share/locale"'; \
-	  echo '#define MANDIR "[...]/tschwinge/Ferry_Tagscherer.build.install/share/man"'; \
-	  echo '#define MANEXT ""'; \
-	  echo '#define PKGDATADIR "[...]/tschwinge/Ferry_Tagscherer.build.install/share/libgnu"'; \
-	  echo '#define PKGINCLUDEDIR "[...]/tschwinge/Ferry_Tagscherer.build.install/include/libgnu"'; \
-	  echo '#define PKGLIBDIR "[...]/tschwinge/Ferry_Tagscherer.build.install/lib/libgnu"'; \
-	  echo '#define PKGLIBEXECDIR "[...]/tschwinge/Ferry_Tagscherer.build.install/libexec/libgnu"'; \
-	} | sed '/""/d' > configmake.h-t && \
-	mv -f configmake.h-t configmake.h
-rm -f c++defs.h-t c++defs.h && \
-	sed -n -e '/_GL_CXXDEFS/,$p' \
-	  < ../../../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import/extra/snippet/c++defs.h \
-	  > c++defs.h-t && \
-	mv c++defs.h-t c++defs.h
-rm -f warn-on-use.h-t warn-on-use.h && \
-	sed -n -e '/^.ifndef/,$p' \
-	  < ../../../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import/extra/snippet/warn-on-use.h \
-	  > warn-on-use.h-t && \
-	mv warn-on-use.h-t warn-on-use.h
-rm -f arg-nonnull.h-t arg-nonnull.h && \
-	sed -n -e '/GL_ARG_NONNULL/,$p' \
-	  < ../../../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import/extra/snippet/arg-nonnull.h \
-	  > arg-nonnull.h-t && \
-	mv arg-nonnull.h-t arg-nonnull.h
-rm -f inttypes.h-t inttypes.h && \
-	{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
-	  sed -e 's/@''HAVE_INTTYPES_H''@/1/g' \
-	      -e 's|@''INCLUDE_NEXT''@|include_next|g' \
-	      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
-	      -e 's|@''PRAGMA_COLUMNS''@||g' \
-	      -e 's|@''NEXT_INTTYPES_H''@|<inttypes.h>|g' \
-	      -e 's/@''PRI_MACROS_BROKEN''@/0/g' \
-	      -e 's/@''APPLE_UNIVERSAL_BUILD''@/0/g' \
-	      -e 's/@''HAVE_LONG_LONG_INT''@/1/g' \
-	      -e 's/@''HAVE_UNSIGNED_LONG_LONG_INT''@/1/g' \
-	      -e 's/@''PRIPTR_PREFIX''@/""/g' \
-	      -e 's/@''GNULIB_IMAXABS''@/0/g' \
-	      -e 's/@''GNULIB_IMAXDIV''@/0/g' \
-	      -e 's/@''GNULIB_STRTOIMAX''@/0/g' \
-	      -e 's/@''GNULIB_STRTOUMAX''@/0/g' \
-	      -e 's/@''HAVE_DECL_IMAXABS''@/1/g' \
-	      -e 's/@''HAVE_DECL_IMAXDIV''@/1/g' \
-	      -e 's/@''HAVE_DECL_STRTOIMAX''@/1/g' \
-	      -e 's/@''HAVE_DECL_STRTOUMAX''@/1/g' \
-	      -e 's/@''REPLACE_STRTOIMAX''@/0/g' \
-	      -e 's/@''INT32_MAX_LT_INTMAX_MAX''@/1/g' \
-	      -e 's/@''INT64_MAX_EQ_LONG_MAX''@/0/g' \
-	      -e 's/@''UINT32_MAX_LT_UINTMAX_MAX''@/1/g' \
-	      -e 's/@''UINT64_MAX_EQ_ULONG_MAX''@/0/g' \
-	      -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
-	      -e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
-	      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h' \
-	      < ../../../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import/inttypes.in.h; \
-	} > inttypes.h-t && \
-	mv inttypes.h-t inttypes.h
-rm -f string.h-t string.h && \
-	{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
-	  sed -e 's|@''GUARD_PREFIX''@|GL|g' \
-	      -e 's|@''INCLUDE_NEXT''@|include_next|g' \
-	      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
-	      -e 's|@''PRAGMA_COLUMNS''@||g' \
-	      -e 's|@''NEXT_STRING_H''@|<string.h>|g' \
-	      -e 's/@''GNULIB_FFSL''@/0/g' \
-	      -e 's/@''GNULIB_FFSLL''@/0/g' \
-	      -e 's/@''GNULIB_MBSLEN''@/0/g' \
-	      -e 's/@''GNULIB_MBSNLEN''@/0/g' \
-	      -e 's/@''GNULIB_MBSCHR''@/0/g' \
-	      -e 's/@''GNULIB_MBSRCHR''@/0/g' \
-	      -e 's/@''GNULIB_MBSSTR''@/0/g' \
-	      -e 's/@''GNULIB_MBSCASECMP''@/0/g' \
-	      -e 's/@''GNULIB_MBSNCASECMP''@/0/g' \
-	      -e 's/@''GNULIB_MBSPCASECMP''@/0/g' \
-	      -e 's/@''GNULIB_MBSCASESTR''@/0/g' \
-	      -e 's/@''GNULIB_MBSCSPN''@/0/g' \
-	      -e 's/@''GNULIB_MBSPBRK''@/0/g' \
-	      -e 's/@''GNULIB_MBSSPN''@/0/g' \
-	      -e 's/@''GNULIB_MBSSEP''@/0/g' \
-	      -e 's/@''GNULIB_MBSTOK_R''@/0/g' \
-	      -e 's/@''GNULIB_MEMCHR''@/1/g' \
-	      -e 's/@''GNULIB_MEMMEM''@/1/g' \
-	      -e 's/@''GNULIB_MEMPCPY''@/0/g' \
-	      -e 's/@''GNULIB_MEMRCHR''@/0/g' \
-	      -e 's/@''GNULIB_RAWMEMCHR''@/0/g' \
-	      -e 's/@''GNULIB_STPCPY''@/0/g' \
-	      -e 's/@''GNULIB_STPNCPY''@/0/g' \
-	      -e 's/@''GNULIB_STRCHRNUL''@/0/g' \
-	      -e 's/@''GNULIB_STRDUP''@/0/g' \
-	      -e 's/@''GNULIB_STRNCAT''@/0/g' \
-	      -e 's/@''GNULIB_STRNDUP''@/0/g' \
-	      -e 's/@''GNULIB_STRNLEN''@/0/g' \
-	      -e 's/@''GNULIB_STRPBRK''@/0/g' \
-	      -e 's/@''GNULIB_STRSEP''@/0/g' \
-	      -e 's/@''GNULIB_STRSTR''@/0/g' \
-	      -e 's/@''GNULIB_STRCASESTR''@/0/g' \
-	      -e 's/@''GNULIB_STRTOK_R''@/0/g' \
-	      -e 's/@''GNULIB_STRERROR''@/0/g' \
-	      -e 's/@''GNULIB_STRERROR_R''@/0/g' \
-	      -e 's/@''GNULIB_STRSIGNAL''@/0/g' \
-	      -e 's/@''GNULIB_STRVERSCMP''@/0/g' \
-	      < ../../../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import/string.in.h | \
-	  sed -e 's|@''HAVE_FFSL''@|1|g' \
-	      -e 's|@''HAVE_FFSLL''@|1|g' \
-	      -e 's|@''HAVE_MBSLEN''@|0|g' \
-	      -e 's|@''HAVE_MEMCHR''@|1|g' \
-	      -e 's|@''HAVE_DECL_MEMMEM''@|1|g' \
-	      -e 's|@''HAVE_MEMPCPY''@|1|g' \
-	      -e 's|@''HAVE_DECL_MEMRCHR''@|1|g' \
-	      -e 's|@''HAVE_RAWMEMCHR''@|1|g' \
-	      -e 's|@''HAVE_STPCPY''@|1|g' \
-	      -e 's|@''HAVE_STPNCPY''@|1|g' \
-	      -e 's|@''HAVE_STRCHRNUL''@|1|g' \
-	      -e 's|@''HAVE_DECL_STRDUP''@|1|g' \
-	      -e 's|@''HAVE_DECL_STRNDUP''@|1|g' \
-	      -e 's|@''HAVE_DECL_STRNLEN''@|1|g' \
-	      -e 's|@''HAVE_STRPBRK''@|1|g' \
-	      -e 's|@''HAVE_STRSEP''@|1|g' \
-	      -e 's|@''HAVE_STRCASESTR''@|1|g' \
-	      -e 's|@''HAVE_DECL_STRTOK_R''@|1|g' \
-	      -e 's|@''HAVE_DECL_STRERROR_R''@|1|g' \
-	      -e 's|@''HAVE_DECL_STRSIGNAL''@|1|g' \
-	      -e 's|@''HAVE_STRVERSCMP''@|1|g' \
-	      -e 's|@''REPLACE_STPNCPY''@|0|g' \
-	      -e 's|@''REPLACE_MEMCHR''@|0|g' \
-	      -e 's|@''REPLACE_MEMMEM''@|0|g' \
-	      -e 's|@''REPLACE_STRCASESTR''@|0|g' \
-	      -e 's|@''REPLACE_STRCHRNUL''@|0|g' \
-	      -e 's|@''REPLACE_STRDUP''@|0|g' \
-	      -e 's|@''REPLACE_STRSTR''@|0|g' \
-	      -e 's|@''REPLACE_STRERROR''@|0|g' \
-	      -e 's|@''REPLACE_STRERROR_R''@|0|g' \
-	      -e 's|@''REPLACE_STRNCAT''@|0|g' \
-	      -e 's|@''REPLACE_STRNDUP''@|0|g' \
-	      -e 's|@''REPLACE_STRNLEN''@|0|g' \
-	      -e 's|@''REPLACE_STRSIGNAL''@|0|g' \
-	      -e 's|@''REPLACE_STRTOK_R''@|0|g' \
-	      -e 's|@''UNDEFINE_STRTOK_R''@|0|g' \
-	      -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
-	      -e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
-	      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h'; \
-	      < ../../../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import/string.in.h; \
-	} > string.h-t && \
-	mv string.h-t string.h
-rm -f wchar.h-t wchar.h && \
-	{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
-	  sed -e 's|@''GUARD_PREFIX''@|GL|g' \
-	      -e 's|@''INCLUDE_NEXT''@|include_next|g' \
-	      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
-	      -e 's|@''PRAGMA_COLUMNS''@||g' \
-	      -e 's|@''HAVE_FEATURES_H''@|1|g' \
-	      -e 's|@''NEXT_WCHAR_H''@|<wchar.h>|g' \
-	      -e 's|@''HAVE_WCHAR_H''@|1|g' \
-	      -e 's/@''GNULIB_BTOWC''@/0/g' \
-	      -e 's/@''GNULIB_WCTOB''@/0/g' \
-	      -e 's/@''GNULIB_MBSINIT''@/1/g' \
-	      -e 's/@''GNULIB_MBRTOWC''@/1/g' \
-	      -e 's/@''GNULIB_MBRLEN''@/0/g' \
-	      -e 's/@''GNULIB_MBSRTOWCS''@/1/g' \
-	      -e 's/@''GNULIB_MBSNRTOWCS''@/0/g' \
-	      -e 's/@''GNULIB_WCRTOMB''@/0/g' \
-	      -e 's/@''GNULIB_WCSRTOMBS''@/0/g' \
-	      -e 's/@''GNULIB_WCSNRTOMBS''@/0/g' \
-	      -e 's/@''GNULIB_WCWIDTH''@/0/g' \
-	      -e 's/@''GNULIB_WMEMCHR''@/0/g' \
-	      -e 's/@''GNULIB_WMEMCMP''@/0/g' \
-	      -e 's/@''GNULIB_WMEMCPY''@/0/g' \
-	      -e 's/@''GNULIB_WMEMMOVE''@/0/g' \
-	      -e 's/@''GNULIB_WMEMSET''@/0/g' \
-	      -e 's/@''GNULIB_WCSLEN''@/0/g' \
-	      -e 's/@''GNULIB_WCSNLEN''@/0/g' \
-	      -e 's/@''GNULIB_WCSCPY''@/0/g' \
-	      -e 's/@''GNULIB_WCPCPY''@/0/g' \
-	      -e 's/@''GNULIB_WCSNCPY''@/0/g' \
-	      -e 's/@''GNULIB_WCPNCPY''@/0/g' \
-	      -e 's/@''GNULIB_WCSCAT''@/0/g' \
-	      -e 's/@''GNULIB_WCSNCAT''@/0/g' \
-	      -e 's/@''GNULIB_WCSCMP''@/0/g' \
-	      -e 's/@''GNULIB_WCSNCMP''@/0/g' \
-	      -e 's/@''GNULIB_WCSCASECMP''@/0/g' \
-	      -e 's/@''GNULIB_WCSNCASECMP''@/0/g' \
-	      -e 's/@''GNULIB_WCSCOLL''@/0/g' \
-	      -e 's/@''GNULIB_WCSXFRM''@/0/g' \
-	      -e 's/@''GNULIB_WCSDUP''@/0/g' \
-	      -e 's/@''GNULIB_WCSCHR''@/0/g' \
-	      -e 's/@''GNULIB_WCSRCHR''@/0/g' \
-	      -e 's/@''GNULIB_WCSCSPN''@/0/g' \
-	      -e 's/@''GNULIB_WCSSPN''@/0/g' \
-	      -e 's/@''GNULIB_WCSPBRK''@/0/g' \
-	      -e 's/@''GNULIB_WCSSTR''@/0/g' \
-	      -e 's/@''GNULIB_WCSTOK''@/0/g' \
-	      -e 's/@''GNULIB_WCSWIDTH''@/0/g' \
-	      < ../../../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import/wchar.in.h | \
-	  sed -e 's|@''HAVE_WINT_T''@|1|g' \
-	      -e 's|@''HAVE_BTOWC''@|1|g' \
-	      -e 's|@''HAVE_MBSINIT''@|1|g' \
-	      -e 's|@''HAVE_MBRTOWC''@|1|g' \
-	      -e 's|@''HAVE_MBRLEN''@|1|g' \
-	      -e 's|@''HAVE_MBSRTOWCS''@|1|g' \
-	      -e 's|@''HAVE_MBSNRTOWCS''@|1|g' \
-	      -e 's|@''HAVE_WCRTOMB''@|1|g' \
-	      -e 's|@''HAVE_WCSRTOMBS''@|1|g' \
-	      -e 's|@''HAVE_WCSNRTOMBS''@|1|g' \
-	      -e 's|@''HAVE_WMEMCHR''@|1|g' \
-	      -e 's|@''HAVE_WMEMCMP''@|1|g' \
-	      -e 's|@''HAVE_WMEMCPY''@|1|g' \
-	      -e 's|@''HAVE_WMEMMOVE''@|1|g' \
-	      -e 's|@''HAVE_WMEMSET''@|1|g' \
-	      -e 's|@''HAVE_WCSLEN''@|1|g' \
-	      -e 's|@''HAVE_WCSNLEN''@|1|g' \
-	      -e 's|@''HAVE_WCSCPY''@|1|g' \
-	      -e 's|@''HAVE_WCPCPY''@|1|g' \
-	      -e 's|@''HAVE_WCSNCPY''@|1|g' \
-	      -e 's|@''HAVE_WCPNCPY''@|1|g' \
-	      -e 's|@''HAVE_WCSCAT''@|1|g' \
-	      -e 's|@''HAVE_WCSNCAT''@|1|g' \
-	      -e 's|@''HAVE_WCSCMP''@|1|g' \
-	      -e 's|@''HAVE_WCSNCMP''@|1|g' \
-	      -e 's|@''HAVE_WCSCASECMP''@|1|g' \
-	      -e 's|@''HAVE_WCSNCASECMP''@|1|g' \
-	      -e 's|@''HAVE_WCSCOLL''@|1|g' \
-	      -e 's|@''HAVE_WCSXFRM''@|1|g' \
-	      -e 's|@''HAVE_WCSDUP''@|1|g' \
-	      -e 's|@''HAVE_WCSCHR''@|1|g' \
-	      -e 's|@''HAVE_WCSRCHR''@|1|g' \
-	      -e 's|@''HAVE_WCSCSPN''@|1|g' \
-	      -e 's|@''HAVE_WCSSPN''@|1|g' \
-	      -e 's|@''HAVE_WCSPBRK''@|1|g' \
-	      -e 's|@''HAVE_WCSSTR''@|1|g' \
-	      -e 's|@''HAVE_WCSTOK''@|1|g' \
-	      -e 's|@''HAVE_WCSWIDTH''@|1|g' \
-	      -e 's|@''HAVE_DECL_WCTOB''@|1|g' \
-	      -e 's|@''HAVE_DECL_WCWIDTH''@|1|g' \
-	  | \
-	  sed -e 's|@''REPLACE_MBSTATE_T''@|0|g' \
-	      -e 's|@''REPLACE_BTOWC''@|0|g' \
-	      -e 's|@''REPLACE_WCTOB''@|0|g' \
-	      -e 's|@''REPLACE_MBSINIT''@|0|g' \
-	      -e 's|@''REPLACE_MBRTOWC''@|0|g' \
-	      -e 's|@''REPLACE_MBRLEN''@|0|g' \
-	      -e 's|@''REPLACE_MBSRTOWCS''@|0|g' \
-	      -e 's|@''REPLACE_MBSNRTOWCS''@|0|g' \
-	      -e 's|@''REPLACE_WCRTOMB''@|0|g' \
-	      -e 's|@''REPLACE_WCSRTOMBS''@|0|g' \
-	      -e 's|@''REPLACE_WCSNRTOMBS''@|0|g' \
-	      -e 's|@''REPLACE_WCWIDTH''@|0|g' \
-	      -e 's|@''REPLACE_WCSWIDTH''@|0|g' \
-	      -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
-	      -e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
-	      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h'; \
-	} > wchar.h-t && \
-	mv wchar.h-t wchar.h
-rm -f wctype.h-t wctype.h && \
-	{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
-	  sed -e 's|@''GUARD_PREFIX''@|GL|g' \
-	      -e 's/@''HAVE_WCTYPE_H''@/1/g' \
-	      -e 's|@''INCLUDE_NEXT''@|include_next|g' \
-	      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
-	      -e 's|@''PRAGMA_COLUMNS''@||g' \
-	      -e 's|@''NEXT_WCTYPE_H''@|<wctype.h>|g' \
-	      -e 's/@''GNULIB_ISWBLANK''@/0/g' \
-	      -e 's/@''GNULIB_WCTYPE''@/0/g' \
-	      -e 's/@''GNULIB_ISWCTYPE''@/0/g' \
-	      -e 's/@''GNULIB_WCTRANS''@/0/g' \
-	      -e 's/@''GNULIB_TOWCTRANS''@/0/g' \
-	      -e 's/@''HAVE_ISWBLANK''@/1/g' \
-	      -e 's/@''HAVE_ISWCNTRL''@/1/g' \
-	      -e 's/@''HAVE_WCTYPE_T''@/1/g' \
-	      -e 's/@''HAVE_WCTRANS_T''@/1/g' \
-	      -e 's/@''HAVE_WINT_T''@/1/g' \
-	      -e 's/@''REPLACE_ISWBLANK''@/0/g' \
-	      -e 's/@''REPLACE_ISWCNTRL''@/0/g' \
-	      -e 's/@''REPLACE_TOWLOWER''@/0/g' \
-	      -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
-	      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h' \
-	      < ../../../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import/wctype.in.h; \
-	} > wctype.h-t && \
-	mv wctype.h-t wctype.h
-make  all-recursive
-make[9]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver/build-gnulib-gdbserver/import'
-make[10]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver/build-gnulib-gdbserver/import'
-gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -I..     -g -O2 -MT localcharset.o -MD -MP -MF .deps/localcharset.Tpo -c -o localcharset.o ../../../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import/localcharset.c
-mv -f .deps/localcharset.Tpo .deps/localcharset.Po
-gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -I..     -g -O2 -MT strnlen1.o -MD -MP -MF .deps/strnlen1.Tpo -c -o strnlen1.o ../../../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import/strnlen1.c
-mv -f .deps/strnlen1.Tpo .deps/strnlen1.Po
-gcc-4.8 -DHAVE_CONFIG_H -I. -I../../../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -I..     -g -O2 -MT wctype-h.o -MD -MP -MF .deps/wctype-h.Tpo -c -o wctype-h.o ../../../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import/wctype-h.c
-mv -f .deps/wctype-h.Tpo .deps/wctype-h.Po
-rm -f libgnu.a
-ar cru libgnu.a localcharset.o strnlen1.o wctype-h.o  
-ranlib libgnu.a
-rm -f t-charset.alias charset.alias && \
-	/bin/dash ../../../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import/config.charset '[ARCH]' > t-charset.alias && \
-	mv t-charset.alias charset.alias
-rm -f t-ref-add.sed ref-add.sed && \
-	sed -e '/^#/d' -e 's/@''PACKAGE''@/libgnu/g' ../../../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import/ref-add.sin > t-ref-add.sed && \
-	mv t-ref-add.sed ref-add.sed
-rm -f t-ref-del.sed ref-del.sed && \
-	sed -e '/^#/d' -e 's/@''PACKAGE''@/libgnu/g' ../../../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import/ref-del.sin > t-ref-del.sed && \
-	mv t-ref-del.sed ref-del.sed
-make[10]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver/build-gnulib-gdbserver/import'
-make[9]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver/build-gnulib-gdbserver/import'
-make[8]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver/build-gnulib-gdbserver/import'
-make[7]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver/build-gnulib-gdbserver'
-make[6]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver/build-gnulib-gdbserver'
-make[5]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver'
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o agent.o -MT agent.o -MMD -MP -MF .deps/agent.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/../common/agent.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o ax.o -MT ax.o -MMD -MP -MF .deps/ax.Tpo `echo " -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body " | sed "s/ -Wformat-nonliteral / -Wno-format-nonliteral /g"` ../../../Ferry_Tagscherer/gdb/gdbserver/ax.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o inferiors.o -MT inferiors.o -MMD -MP -MF .deps/inferiors.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/inferiors.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o regcache.o -MT regcache.o -MMD -MP -MF .deps/regcache.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/regcache.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o remote-utils.o -MT remote-utils.o -MMD -MP -MF .deps/remote-utils.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/remote-utils.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o server.o -MT server.o -MMD -MP -MF .deps/server.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/server.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o signals.o -MT signals.o -MMD -MP -MF .deps/signals.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/../common/signals.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o target.o -MT target.o -MMD -MP -MF .deps/target.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/target.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o utils.o -MT utils.o -MMD -MP -MF .deps/utils.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/utils.c
-rm -f version.c-tmp version.c
-echo '#include "server.h"' >> version.c-tmp
-echo 'const char version[] = "'"`sed q ../../../Ferry_Tagscherer/gdb/gdbserver/../version.in`"'";' >> version.c-tmp
-echo 'const char host_name[] = "[ARCH]";' >> version.c-tmp
-mv version.c-tmp version.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o version.o -MT version.o -MMD -MP -MF .deps/version.Tpo version.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o vec.o -MT vec.o -MMD -MP -MF .deps/vec.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/../common/vec.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o gdb_vecs.o -MT gdb_vecs.o -MMD -MP -MF .deps/gdb_vecs.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/../common/gdb_vecs.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o mem-break.o -MT mem-break.o -MMD -MP -MF .deps/mem-break.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/mem-break.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o hostio.o -MT hostio.o -MMD -MP -MF .deps/hostio.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/hostio.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o event-loop.o -MT event-loop.o -MMD -MP -MF .deps/event-loop.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/event-loop.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o tracepoint.o -MT tracepoint.o -MMD -MP -MF .deps/tracepoint.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/tracepoint.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o xml-utils.o -MT xml-utils.o -MMD -MP -MF .deps/xml-utils.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/../common/xml-utils.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o common-utils.o -MT common-utils.o -MMD -MP -MF .deps/common-utils.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/../common/common-utils.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o ptid.o -MT ptid.o -MMD -MP -MF .deps/ptid.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/../common/ptid.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o buffer.o -MT buffer.o -MMD -MP -MF .deps/buffer.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/../common/buffer.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o format.o -MT format.o -MMD -MP -MF .deps/format.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/../common/format.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o filestuff.o -MT filestuff.o -MMD -MP -MF .deps/filestuff.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/../common/filestuff.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o dll.o -MT dll.o -MMD -MP -MF .deps/dll.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/dll.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o notif.o -MT notif.o -MMD -MP -MF .deps/notif.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/notif.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o tdesc.o -MT tdesc.o -MMD -MP -MF .deps/tdesc.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/tdesc.c
-rm -f xml-builtin.tmp
-/bin/dash ../../../Ferry_Tagscherer/gdb/gdbserver/../features/feature_to_c.sh xml-builtin.tmp ../../../Ferry_Tagscherer/gdb/gdbserver/../features/i386/i386-linux.xml ../../../Ferry_Tagscherer/gdb/gdbserver/../features/i386/i386-avx-linux.xml ../../../Ferry_Tagscherer/gdb/gdbserver/../features/i386/i386-mmx-linux.xml ../../../Ferry_Tagscherer/gdb/gdbserver/../features/i386/32bit-linux.xml ../../../Ferry_Tagscherer/gdb/gdbserver/../features/i386/32bit-core.xml ../../../Ferry_Tagscherer/gdb/gdbserver/../features/i386/32bit-sse.xml ../../../Ferry_Tagscherer/gdb/gdbserver/../features/i386/32bit-avx.xml
-/bin/dash ../../../Ferry_Tagscherer/gdb/gdbserver/../../move-if-change xml-builtin.tmp xml-builtin.c
-echo stamp > stamp-xml
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o xml-builtin.o -MT xml-builtin.o -MMD -MP -MF .deps/xml-builtin.Tpo xml-builtin.c
-/bin/dash ../../../Ferry_Tagscherer/gdb/gdbserver/../regformats/regdat.sh ../../../Ferry_Tagscherer/gdb/gdbserver/../regformats/i386/i386-linux.dat i386-linux.c
-i386-linux.c updated.
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o i386-linux.o -MT i386-linux.o -MMD -MP -MF .deps/i386-linux.Tpo i386-linux.c
-/bin/dash ../../../Ferry_Tagscherer/gdb/gdbserver/../regformats/regdat.sh ../../../Ferry_Tagscherer/gdb/gdbserver/../regformats/i386/i386-avx-linux.dat i386-avx-linux.c
-i386-avx-linux.c updated.
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o i386-avx-linux.o -MT i386-avx-linux.o -MMD -MP -MF .deps/i386-avx-linux.Tpo i386-avx-linux.c
-/bin/dash ../../../Ferry_Tagscherer/gdb/gdbserver/../regformats/regdat.sh ../../../Ferry_Tagscherer/gdb/gdbserver/../regformats/i386/i386-mmx-linux.dat i386-mmx-linux.c
-i386-mmx-linux.c updated.
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o i386-mmx-linux.o -MT i386-mmx-linux.o -MMD -MP -MF .deps/i386-mmx-linux.Tpo i386-mmx-linux.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o linux-low.o -MT linux-low.o -MMD -MP -MF .deps/linux-low.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/linux-low.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o linux-osdata.o -MT linux-osdata.o -MMD -MP -MF .deps/linux-osdata.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/../common/linux-osdata.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o linux-x86-low.o -MT linux-x86-low.o -MMD -MP -MF .deps/linux-x86-low.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/linux-x86-low.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o i386-low.o -MT i386-low.o -MMD -MP -MF .deps/i386-low.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/i386-low.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o i387-fp.o -MT i387-fp.o -MMD -MP -MF .deps/i387-fp.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/i387-fp.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o linux-procfs.o -MT linux-procfs.o -MMD -MP -MF .deps/linux-procfs.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/../common/linux-procfs.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o linux-ptrace.o -MT linux-ptrace.o -MMD -MP -MF .deps/linux-ptrace.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/../common/linux-ptrace.c
-gcc-4.8 -c  -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER ../../../Ferry_Tagscherer/gdb/gdbserver/../common/linux-btrace.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o hostio-errno.o -MT hostio-errno.o -MMD -MP -MF .deps/hostio-errno.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/hostio-errno.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o thread-db.o -MT thread-db.o -MMD -MP -MF .deps/thread-db.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/thread-db.c
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o proc-service.o -MT proc-service.o -MMD -MP -MF .deps/proc-service.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/proc-service.c
-rm -f gdbserver
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -static-libstdc++ -static-libgcc  -Wl,--dynamic-list=../../../Ferry_Tagscherer/gdb/gdbserver/proc-service.list -o gdbserver agent.o ax.o inferiors.o regcache.o remote-utils.o server.o signals.o target.o utils.o version.o vec.o gdb_vecs.o mem-break.o hostio.o event-loop.o tracepoint.o xml-utils.o common-utils.o ptid.o buffer.o format.o filestuff.o dll.o notif.o tdesc.o xml-builtin.o i386-linux.o i386-avx-linux.o i386-mmx-linux.o linux-low.o linux-osdata.o linux-x86-low.o i386-low.o i387-fp.o linux-procfs.o linux-ptrace.o linux-btrace.o hostio-errno.o thread-db.o proc-service.o  \
-	build-gnulib-gdbserver/import/libgnu.a -ldl 
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -c -o gdbreplay.o -MT gdbreplay.o -MMD -MP -MF .deps/gdbreplay.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/gdbreplay.c
-rm -f gdbreplay
-gcc-4.8 -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER -static-libstdc++ -static-libgcc  -Wl,--dynamic-list=../../../Ferry_Tagscherer/gdb/gdbserver/proc-service.list -o gdbreplay gdbreplay.o version.o \
-	  
-gcc-4.8  -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER  -DCONFIG_UST_GDB_INTEGRATION -fPIC -DIN_PROCESS_AGENT -fvisibility=hidden -c -o ax-ipa.o -MT ax-ipa.o -MMD -MP -MF .deps/ax-ipa.Tpo `echo " -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body " | sed "s/ -Wformat-nonliteral / -Wno-format-nonliteral /g"` ../../../Ferry_Tagscherer/gdb/gdbserver/ax.c
-gcc-4.8  -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER  -DCONFIG_UST_GDB_INTEGRATION -fPIC -DIN_PROCESS_AGENT -fvisibility=hidden -c -o tracepoint-ipa.o -MT tracepoint-ipa.o -MMD -MP -MF .deps/tracepoint-ipa.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/tracepoint.c
-gcc-4.8  -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER  -DCONFIG_UST_GDB_INTEGRATION -fPIC -DIN_PROCESS_AGENT -fvisibility=hidden -c -o format-ipa.o -MT format-ipa.o -MMD -MP -MF .deps/format-ipa.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/../common/format.c
-gcc-4.8  -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER  -DCONFIG_UST_GDB_INTEGRATION -fPIC -DIN_PROCESS_AGENT -fvisibility=hidden -c -o utils-ipa.o -MT utils-ipa.o -MMD -MP -MF .deps/utils-ipa.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/utils.c
-gcc-4.8  -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER  -DCONFIG_UST_GDB_INTEGRATION -fPIC -DIN_PROCESS_AGENT -fvisibility=hidden -c -o regcache-ipa.o -MT regcache-ipa.o -MMD -MP -MF .deps/regcache-ipa.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/regcache.c
-gcc-4.8  -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER  -DCONFIG_UST_GDB_INTEGRATION -fPIC -DIN_PROCESS_AGENT -fvisibility=hidden -c -o remote-utils-ipa.o -MT remote-utils-ipa.o -MMD -MP -MF .deps/remote-utils-ipa.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/remote-utils.c
-gcc-4.8  -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER  -DCONFIG_UST_GDB_INTEGRATION -fPIC -DIN_PROCESS_AGENT -fvisibility=hidden -c -o common-utils-ipa.o -MT common-utils-ipa.o -MMD -MP -MF .deps/common-utils-ipa.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/../common/common-utils.c
-gcc-4.8  -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER  -DCONFIG_UST_GDB_INTEGRATION -fPIC -DIN_PROCESS_AGENT -fvisibility=hidden -c -o tdesc-ipa.o -MT tdesc-ipa.o -MMD -MP -MF .deps/tdesc-ipa.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/tdesc.c
-gcc-4.8  -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER  -DCONFIG_UST_GDB_INTEGRATION -fPIC -DIN_PROCESS_AGENT -fvisibility=hidden -c -o i386-linux-ipa.o -MT i386-linux-ipa.o -MMD -MP -MF .deps/i386-linux-ipa.Tpo i386-linux.c
-gcc-4.8  -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER  -DCONFIG_UST_GDB_INTEGRATION -fPIC -DIN_PROCESS_AGENT -fvisibility=hidden -c -o linux-i386-ipa.o -MT linux-i386-ipa.o -MMD -MP -MF .deps/linux-i386-ipa.Tpo ../../../Ferry_Tagscherer/gdb/gdbserver/linux-i386-ipa.c
-rm -f libinproctrace.so
-gcc-4.8 -shared -fPIC -Wl,--no-undefined -g -O2    -I. -I../../../Ferry_Tagscherer/gdb/gdbserver -I../../../Ferry_Tagscherer/gdb/gdbserver/../common -I../../../Ferry_Tagscherer/gdb/gdbserver/../regformats -I../../../Ferry_Tagscherer/gdb/gdbserver/../../include -I../../../Ferry_Tagscherer/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import -Wall -Wdeclaration-after-statement -Wpointer-arith -Wformat-nonliteral -Wno-char-subscripts -Wempty-body  -DGDBSERVER \
-	-static-libstdc++ -static-libgcc  -Wl,--dynamic-list=../../../Ferry_Tagscherer/gdb/gdbserver/proc-service.list -o libinproctrace.so ax-ipa.o tracepoint-ipa.o format-ipa.o utils-ipa.o regcache-ipa.o remote-utils-ipa.o common-utils-ipa.o tdesc-ipa.o i386-linux-ipa.o linux-i386-ipa.o -ldl -pthread
-make[5]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver'
-make[6]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver/build-gnulib-gdbserver'
-make[7]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver/build-gnulib-gdbserver'
-make[8]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver/build-gnulib-gdbserver/import'
-make  all-recursive
-make[9]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver/build-gnulib-gdbserver/import'
-make[10]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver/build-gnulib-gdbserver/import'
-make[10]: Nothing to be done for `all-am'.
-make[10]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver/build-gnulib-gdbserver/import'
-make[9]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver/build-gnulib-gdbserver/import'
-make[8]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver/build-gnulib-gdbserver/import'
-make[7]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver/build-gnulib-gdbserver'
-make[6]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver/build-gnulib-gdbserver'
-make[5]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver'
-make[4]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/gdbserver'
 make[4]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/data-directory'
 rm -rf ./syscalls
 mkdir ./syscalls