-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
ChangeLog_just_me.txt
2801 lines (1535 loc) · 76.2 KB
/
ChangeLog_just_me.txt
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
2018-01-26 Eric Gallager <egall@gwmail.gwu.edu>
Warning silencing for Jan 2018
Change-Id: Ib844dc62ff33f49dc43bd090eb4baa970f2dfffc
2018-01-16 Eric Gallager <egall@gwmail.gwu.edu>
merge uncommitted changes from other computer
Change-Id: I11b41cc9305097eb039a170033809d0b1e1e0a41
2018-01-16 cooljeanius <egall@gwmail.gwu.edu>
Fix issue with -Wundef on caddr_t
Change-Id: Idf424a861835bc3e69a91cded8f743822a4d1c1d
2018-01-04 Eric Gallager <egall@gwmail.gwu.edu>
handle clang-5.0 warnings
Change-Id: Ia6360e70bb921031d7f1cbb4c5a6320cf3629d05
2018-01-01 Eric Gallager <egall@gwmail.gwu.edu>
start to fix warnings from new build of gcc8, but...
I had to file gcc bug 83559:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83559
Change-Id: I5e7f9790dbfe8428a3676dcd2a869815e69cf938
2017-11-16 Eric Gallager <egall@gwmail.gwu.edu>
autoreconf, and silence some warnings from November's gcc8
Change-Id: Id8361a3847a032879cf9959bee68f2495c6ab7ab
2017-11-15 Eric Gallager <egall@gwmail.gwu.edu>
regenerate libtool_gnu autotools files
Change-Id: Ia1d3b15486728ab940c41fbaf3b2c9f621abc57e
2017-10-19 cooljeanius <egall@gwmail.gwu.edu>
Remove -Wpadded usage in gdb headers
Change-Id: I1652194b8b39412467074d1e9150ab65d5669fb5
2017-10-19 cooljeanius <egall@gwmail.gwu.edu>
archflags for gdb itself
Change-Id: I317a1dad010dd7d3c139c1c1a4b4024ecd0d18b2
2017-10-19 cooljeanius <egall@gwmail.gwu.edu>
expect configure tweak; dejagnu doc update for newer texinfo
Change-Id: I73ad50eeba1ded4fc868e562e8912ace69ec11bf
2017-10-19 cooljeanius <egall@gwmail.gwu.edu>
archflags for expect and intptr_t stuff for libgui
Change-Id: I3088a03530fede0e2e9b822e3aba5684528bb4d3
2017-10-19 cooljeanius <egall@gwmail.gwu.edu>
a bit more header reordering for binutils
Change-Id: I2c1d97caf291c001306a053dc611cd1aa1097c5a
2017-10-19 cooljeanius <egall@gwmail.gwu.edu>
binutils/wrstabs.c: SIZE_T_MAX; libtool_gnu: missing help2man;
itcl: intptr_t
Change-Id: I3fc48edcfb04c8f9317777153e95d82cf517dd74
2017-10-19 cooljeanius <egall@gwmail.gwu.edu>
fix up include order for binutils, and archflags for tk
Change-Id: Ieebf50eec90ad1084f5497251e46e0ff5157bae6
2017-10-18 cooljeanius <egall@gwmail.gwu.edu>
I lied again; THIS will be my last commit for the night
Change-Id: I642ee656b3b751dc19b3211502b0a219156df8b4
2017-10-18 cooljeanius <egall@gwmail.gwu.edu>
one more try at fixing stuff for tonight
Change-Id: Ia1b5275ebf0b4b38c239186b773c46d6bb98119b
2017-10-18 cooljeanius <egall@gwmail.gwu.edu>
ok I lied I can actually work on multiple subdirs at once
Change-Id: I3d0f90f3979fc905daf3f89d5f169582a9012955
2017-10-18 cooljeanius <egall@gwmail.gwu.edu>
sorry for all these minor commits in a row, but I have to fix things from
compile farm 1 at a time
Change-Id: I8f576a04356af2efcff044ce6f08030ba211cfc3
2017-10-18 cooljeanius <egall@gwmail.gwu.edu>
oops, do opcodes/Makefile.am changes I meant to do as part of prev. commit
Change-Id: I3827d881b3aa9e603949b9a9b7b578d4605e1699
2017-10-18 cooljeanius <egall@gwmail.gwu.edu>
test archflags before use in opcodes subdir
Change-Id: I2aead590868c2f0340398ce71d0b3eebe8d3e460
2017-10-18 cooljeanius <egall@gwmail.gwu.edu>
minor bfd portability tweaks
Change-Id: Ibc422968bab92d0592a2bc6369d9fa9e16cca33a
2017-10-18 cooljeanius <egall@gwmail.gwu.edu>
back to making sure archflags are tested before use, now in bfd subdir
Change-Id: Iadf883acbcba0d8784a5d8eb1b49b68eef55eb6f
2017-10-18 cooljeanius <egall@gwmail.gwu.edu>
fix build of bfd texinfo docs with newer makeinfo
Change-Id: I8d306c0a0bfeca33576aa28486af77c44493650f
2017-10-18 cooljeanius <egall@gwmail.gwu.edu>
cleanups in minizip subsubdir of zlib subdir
Change-Id: I09936e575ca4c2e00747088874e9dfb14eac1926
2017-10-18 cooljeanius <egall@gwmail.gwu.edu>
same as previous commits, but in zlib subdir this time
Change-Id: If9d229621210c130c86879b67c1d0653a6bbe4ed
2017-10-18 cooljeanius <egall@gwmail.gwu.edu>
same as previous commit, but in intl subdir this time
Change-Id: I2aa838d26c17f98a9bdc8e73eec2b3ddc3493988
2017-10-18 cooljeanius <egall@gwmail.gwu.edu>
test to see if archflags actually work instead of hardcoding them
Change-Id: I04173a65fa99f6c29b2be65c4030763d4d3d21d4
2017-09-26 cooljeanius <egall@gwmail.gwu.edu>
copy over missing #testsuite procs (still broken)
Change-Id: Ie79f7e6e32d55d66024d63c7c8719caff6df0632
2017-09-25 cooljeanius <egall@gwmail.gwu.edu>
more find-and-replace of renamed functions (mostly untested)
Change-Id: Ieb7e4a2faeb90c81fd4f77c656dc73df0bb5b401
2017-09-25 cooljeanius <egall@gwmail.gwu.edu>
locate final tdeps 'missing' from xcodeproj after moving to target subdir
Change-Id: I89ab3f8ae5786ac6c52be83374e7e07b62001c37
2017-09-17 cooljeanius <egall@gwmail.gwu.edu>
Targets starting with 'v' thru 'x' #tdep
"amd64" comes now because it is actually x86_64 which starts with 'x'
Change-Id: I40977a75ba958affe6428caf1d59db310e49d578
2017-09-16 cooljeanius <egall@gwmail.gwu.edu>
do targets sparc thru tilegx. #tdep
Change-Id: I1f733570be521272a89a77c2be188a24a84016f4
2017-09-14 cooljeanius <egall@gwmail.gwu.edu>
targets rs6000 thru sh
Change-Id: I5892c22653eb22d16e24b671edd48766e5b40f9c
2017-09-12 cooljeanius <egall@gwmail.gwu.edu>
targets 'n' thru 'p', and all stubs
Change-Id: I4abe27e8b6b755631a5c306b6385cb11c90be12d
2017-09-11 cooljeanius <egall@gwmail.gwu.edu>
updates for targets starting with 'i' thru 'm' #tdep
Change-Id: If1efe6d9f57708619a56e22ac503593340aa7eef
2017-09-08 cooljeanius <egall@gwmail.gwu.edu>
remove code inside ALLOW_UNUSED_VARIABLES ifdefs
Change-Id: Id83c9221cb61ec3abdbeb99bd2a39cba3c573120
2017-09-08 cooljeanius <egall@gwmail.gwu.edu>
work on cris, frv, and hppa targets
Change-Id: I990b0125263622a5aae4143890cdef9477dfb988
2017-09-07 cooljeanius <egall@gwmail.gwu.edu>
Minor update for September 2017
Change-Id: I517b6f7c5870db4f86640ed69833c906a2f1e0dc
2017-08-09 cooljeanius <egall@gwmail.gwu.edu>
more tdep changes, Aug 9 2017
Change-Id: Ica8879f7e127523ad2a38d51405b0f94ff54e2aa
2017-07-23 cooljeanius <egall@gwmail.gwu.edu>
testing other targets for fallout from renaming stuff
Change-Id: I45b6dffa7f1e546d6cddceab897b08591779a542
2017-07-08 cooljeanius <egall@gwmail.gwu.edu>
rename some more functions for -Wshadow
Change-Id: I257db0b91724388fc719d7f848085f47a38c2fb2
2017-07-08 cooljeanius <egall@gwmail.gwu.edu>
update gnulib and start taking -Wshadow more seriously
Change-Id: Icd4af0a2fbbd4dc6579f3a5b0fe1b3d9066ff042
2017-07-05 cooljeanius <egall@gwmail.gwu.edu>
Build with this month's gcc trunk
Change-Id: If8160946e2703e3d88a5cbde4c0ec23d31ba9065
2017-04-12 Eric Gallager <egall@gwmail.gwu.edu>
update #gnulib for 2017 in this repo, too
Change-Id: If221024d3b7f19d8b18861e2efa49cefa395296f
2017-03-24 Eric Gallager <egallager@comcast.net>
still breaks in gdbarch.sh #programminghelpwanted
Change-Id: Ib089f34f482ac20830beb9c1747f6c9f37cf2414
2017-03-16 Eric Gallager <egallager@comcast.net>
fix distcleaning in readline subdir
Change-Id: I6586a293088504aa6cae94ff7cf3ec37a98a9413
2017-03-15 Eric Gallager <egallager@comcast.net>
warning-silencing for tcl/tk/itcl and stuff
also fix fallout from moving libtool_gnu ChangeLogs
which for some stupid reason get parsed as part of the
build/bootstrap process
Change-Id: I00d8d71b19b45d9dcea22c95a0a2e4a142b09b06
2017-03-15 Eric Gallager <egallager@comcast.net>
move rotated ChangeLogs to subdirs
and fix their whitespace
and other warning silencing stuff in the actual code
Change-Id: Ibe6f3ff43f8ddf393dc638fa3948a6aad86fea91
2017-03-09 Eric Gallager <egallager@comcast.net>
have tk subdir handle archflags
also more static analysis with clang and stuff
Change-Id: I3fa7025ff7f90a58767dd817bec7db6a8e1588a8
2017-03-03 Eric Gallager <egallager@comcast.net>
Bring repo back to my Snow Leopard computer
The hard drive here is full and has a hosed environment,
so I am still in the process of bringing it back up to speed.
Build currently gets as far as the tk subdir before failing
due to archflags
Change-Id: Icc22c5e859aef87f3c049c744af932c232d9db3e
2017-01-05 cooljeanius <egall@gwmail.gwu.edu>
minor toplevel stuff
Change-Id: I02bc27016602a435a66a222f48f1850fdde8dbee
2017-01-05 cooljeanius <egall@gwmail.gwu.edu>
electric-fence and intl tweaks
Change-Id: I9e30dbfacc4abef8455267e0eaf75c8e48dece04
2017-01-04 cooljeanius <egall@gwmail.gwu.edu>
more readline subdir warnings
Change-Id: I23f26870d148d2dc100b225e0ed84c080b0ecc89
2017-01-04 cooljeanius <egall@gwmail.gwu.edu>
readline subdir warnings
Change-Id: I29e20ce94105b2b0a97089dfa1a4bc9ad67d0024
2017-01-04 cooljeanius <egall@gwmail.gwu.edu>
I need a partner for pair programming
Change-Id: I001eddb0156400b648440f0eeda82f9ad8515a64
2016-12-18 cooljeanius <egall@gwmail.gwu.edu>
help me
Change-Id: I33071903de390d6071e604fa92217e81cd757bd4
2016-12-17 cooljeanius <egall@gwmail.gwu.edu>
files that I usually forget to compile
Change-Id: I9ecc3784e291207808aae94d69cdc6d930cdf478
2016-12-08 cooljeanius <egall@gwmail.gwu.edu>
gdbtk now links as C++, and as C with -fno-common
Change-Id: Ia0cf1afd5c12fc8e7d63f13d000954e6f18a5631
2016-11-28 cooljeanius <egall@gwmail.gwu.edu>
more buflen tweaking for -Wformat-length
Change-Id: Ic77b1c34228d1858ab93aa5f51ec5e927412e8ad
2016-11-28 cooljeanius <egall@gwmail.gwu.edu>
mess around with buflens for -Wformat-length
Change-Id: I8c04edf7a59d0d75dbf1c233d7f634e8e049cd73
2016-11-15 cooljeanius <egall@gwmail.gwu.edu>
add bfd-stringcheck script
Change-Id: I6a9f905ff2c0cf66de5bf7aa46baf7bd176fbb80
2016-11-02 cooljeanius <egall@gwmail.gwu.edu>
Wednesday, November 2nd, 2016
Change-Id: I28f0fb87eea6850a35d41c172206046b7868afaf
2016-10-06 cooljeanius <egall@gwmail.gwu.edu>
Nothing much. idk. Please send help.
Change-Id: Ic005c757f6c50d83ceb893ab5e62f42b49c5d9e1
2016-09-26 cooljeanius <egall@gwmail.gwu.edu>
distclean harder; should have noticed before prev. commit
Change-Id: Ifea390dc1044db5e2a752d3280fe1a2f82d30212
2016-09-26 cooljeanius <egall@gwmail.gwu.edu>
distcleaning, September 26, 2016
Change-Id: I26e4cd2bd9ee29291e5d1cbe88e1123c8445eefd
2016-09-23 cooljeanius <egall@gwmail.gwu.edu>
gcc 7 warning fixes, September 23 2016
Change-Id: Ib2ec1ec749c8f68181bd30328fef8d9b79c9503a
2016-09-16 cooljeanius <egall@gwmail.gwu.edu>
warnings warnings warnings
Change-Id: Ibfd9769ad4d81677a3340916a8d637118327bec1
2016-09-07 cooljeanius <egall@gwmail.gwu.edu>
GCC needs to be patched before I can deal with more warnings
Change-Id: I717985ec211a6fd4dc8f0f0c80306d1a742fdda3
2016-08-29 cooljeanius <egall@gwmail.gwu.edu>
mainly Walloca-larger-than and Wimplicit-fallthrough stuff
Change-Id: I80e5bbf92d2e10ca6df5758b2cf3a2d37e3cd4f3
2016-08-29 cooljeanius <egall@gwmail.gwu.edu>
new gcc 7 warnings for August 2016
Change-Id: Ib47c301aa09dc4a14bb5baf4094f95f553389a8b
2016-08-18 cooljeanius <egall@gwmail.gwu.edu>
Oops, should have committed earlier than August 18, 2016
Change-Id: I84ebbae9440c764f9cb9faa12f8e84d835331d3b
2016-07-21 cooljeanius <egall@gwmail.gwu.edu>
Disable gnulib stuff again
Change-Id: Ibc48f4563b8b3c1740a4c767198cf5287ef598f3
2016-07-21 cooljeanius <egall@gwmail.gwu.edu>
try actually having gdb use gnulib (i.e. build-gnulib)
unfortunately the Makefile for it seems unable to understand
where $(srcdir) is, when $(srcdir) != $(builddir)
Change-Id: I883fa3c9ec1925ef655c860f833c8637572a8922
2016-06-09 cooljeanius <egall@gwmail.gwu.edu>
Break stuff in a new way
Change-Id: I454518a4354a58175931b2b8a8b10f474b887430
2016-06-04 cooljeanius <egall@gwmail.gwu.edu>
Reorganize; move tdeps to target and natfiles to nat
Change-Id: I717ebeaf48d03ab3803c1fd05a1334d2bf133642
2016-06-02 cooljeanius <egall@gwmail.gwu.edu>
Trying running make check in some subdirs; June 2, 2016
Change-Id: I1242f41f30cd3f219bbffb61c2cae8222771f588
2016-05-26 cooljeanius <egall@gwmail.gwu.edu>
more constifying of bfd and stuff, May 26, 2016
Change-Id: I2acdbff891a12b94043136670d5740ee738ed68f
2016-05-26 cooljeanius <egall@gwmail.gwu.edu>
deal with writable strings
Change-Id: I20b466aa2958ad34af2758660d66f3521fae6d0a
2016-05-24 cooljeanius <egall@gwmail.gwu.edu>
libgui stuff, May 24, 2016
Change-Id: I5fb0edd011728f12906bc929892baa8fe4790a76
2016-05-24 cooljeanius <egall@gwmail.gwu.edu>
More Tk stuff, May 24, 2016
Change-Id: Ibfa5045958df524ed6a9da03a2a468b89adbfd09
2016-05-20 cooljeanius <egall@gwmail.gwu.edu>
Mess around with Tk; its Xcode project is so badly broken...
Change-Id: Ie02f82e4c46d786e63aeb26c6e68b50ec0d94917
2016-05-19 cooljeanius <egall@gwmail.gwu.edu>
gdbtk now builds
Change-Id: I8e5d7eab054493edf1a695fc6f34ace8140e1e02
2016-05-19 cooljeanius <egall@gwmail.gwu.edu>
Add gui stuff for gdbtk and expectk
Change-Id: Ic07116b8ab441f9abd4630463e2775d103a4d3eb
2016-05-19 cooljeanius <egall@gwmail.gwu.edu>
More targets from src, May 19 2016
Change-Id: I83b32a1971ef1b7c23179f3f9dbf5f9cc3f17b96
2016-05-17 cooljeanius <egall@gwmail.gwu.edu>
Targets from src
Change-Id: I27883f7dbdc31b8bbd2d114ff8957ae0f2d4ea2f
2016-05-15 cooljeanius <egall@gwmail.gwu.edu>
Now to try different targets from src; i.e. up one dir
Change-Id: I56f0c81a851b3cdb63d632eec0ee88a80c5aa427
2016-05-10 cooljeanius <egall@gwmail.gwu.edu>
improve lint rules
Change-Id: Ia78986e13625f02312a97af6e485ef9742fff7cc
2016-05-09 cooljeanius <egall@gwmail.gwu.edu>
More warnings and stuff, May 9, 2016
Change-Id: Ied4e55edd9d346a8eea2daa51a5ffc9aaf2d5b26
2016-05-08 cooljeanius <egall@gwmail.gwu.edu>
I have moved the bad access up a level.
Change-Id: Idf6ff58b176ed42d8a5a08bcabff3b955ccfaf25
2016-05-08 cooljeanius <egall@gwmail.gwu.edu>
-Winline + -Os prints new warnings
Change-Id: I3dfea734de460b937c242d699befb903ebecd65c
2016-05-08 cooljeanius <egall@gwmail.gwu.edu>
more printf-style debugging, May 8, 2016
Change-Id: I0d493ca97a659c330dcbb895505fcb0042f81faa
2016-05-04 cooljeanius <egall@gwmail.gwu.edu>
More NSTRACE additions in macosx-nat-dyld-process.c
Change-Id: I02a672da06a4aea90a15e0981cbe97e8481b099a
2016-05-04 cooljeanius <egall@gwmail.gwu.edu>
More dealing with warnings and stuff, May 2016
Change-Id: I05a1924efc16e6b0923ef909241597abafed97d3
2016-05-04 cooljeanius <egall@gwmail.gwu.edu>
Finish up going through the target list
Change-Id: Ifcfff07ef72a407b35ea7e197bd657031ab9f0a5
2016-05-03 cooljeanius <egall@gwmail.gwu.edu>
Go thru sparc targets
Change-Id: Iab5ff45d86e4cfdc33062cc4bd3b77db6b2cfdfb
2016-05-03 cooljeanius <egall@gwmail.gwu.edu>
New gnulib import, go thru sh targets
Change-Id: I059ff8b5058cce2ee1706069ec30dbdbcf5f8de3
2016-05-02 cooljeanius <egall@gwmail.gwu.edu>
Create a separate subdirectory for old historical files
Change-Id: Ic78270903d7b0cdf1037aa56b4dda6301d928a13
2016-05-02 cooljeanius <egall@gwmail.gwu.edu>
Make a pass through powerpc targets
Change-Id: I2e3fb6e17b2276ff068f380737c4fb0b5292741c
2016-05-02 cooljeanius <egall@gwmail.gwu.edu>
Make a new subdir for year-specific ChangeLogs
Change-Id: I50b33ef53104d7bd5ae4d575b7b492abeacf996d
2016-05-02 cooljeanius <egall@gwmail.gwu.edu>
Make a pass through the rest of the targets starting with m and n
Change-Id: I75557aa57fc21d6faea3ed7dc6558c792a715557
2016-04-29 cooljeanius <egall@gwmail.gwu.edu>
Make a pass through targets from i386 to m68hc11
Change-Id: I1afdb3ea4f79403015012724c57af8f6c2dc4ae7
2016-04-27 cooljeanius <egall@gwmail.gwu.edu>
I accidentally broke the osabi code; fix it (and stuff)
Change-Id: I1925cc417ed9cef0563233ed3e4fe9b8554c7dce
2016-04-26 cooljeanius <egall@gwmail.gwu.edu>
Be a bit more thorough about going through targets.
On this pass, I have made it up thru the hppa ones for now,
and will do from the i386 ones on next.
Change-Id: Id55f3511ea4ed5f4d993c3591114274a883fb09d
2016-04-23 cooljeanius <egall@gwmail.gwu.edu>
More testing of targets I forget about
Change-Id: Ia0042cbbf95f20686192c65c2e9e1f2c8453d1a9
2016-04-19 cooljeanius <egall@gwmail.gwu.edu>
Try building for some targets that I build less often, if at all.
Change-Id: Ibd4f6eaf7fa749f5085fe4b18685206a619f9b80
2016-04-17 cooljeanius <egall@gwmail.gwu.edu>
more warnings and static analysis and stuff
Change-Id: Ieeadce9a9f4a4b67751dd9c92a543044e8d34c3f
2016-04-15 cooljeanius <egall@gwmail.gwu.edu>
clang warnings, static analysis, debugging, and so on
Change-Id: I6a6e26902b2d8396b240a2fde4649aa6e6b41054
2016-04-08 cooljeanius <egall@gwmail.gwu.edu>
gdb is still broken, but now I know a little more.
Also, be maintainer-ish.
Change-Id: I960fadaecef58ca4e46803908baab864969a5d84
2016-04-06 cooljeanius <egall@gwmail.gwu.edu>
C++-ification for gdbserver
Change-Id: I6a287509ed91eeefd64bf06c3343e9fe7ecb25d1
2016-03-31 cooljeanius <egall@gwmail.gwu.edu>
gdb mostly links as C++ now, except for a few symbols in mig-ed
sources...
Change-Id: I6f07f765c9d7a9706d3f686762e7b3ac9157d51a
2016-03-29 cooljeanius <egall@gwmail.gwu.edu>
Try out more bfd targets that I sometimes forget
Change-Id: If04ac46bc3edd0f5992419d693ff33c5e953f3fe
2016-03-26 cooljeanius <egall@gwmail.gwu.edu>
Other binutils stuff, Good Friday 2016
Change-Id: I44a9f67964458f9c57b635b68bbd9b4bcd4974b7
2016-03-24 cooljeanius <egall@gwmail.gwu.edu>
warnings stuff for bfd/opcodes/binutils
Change-Id: Ia49335de58b11907f526797523ab851bfb6dab01
2016-02-26 cooljeanius <egall@gwmail.gwu.edu>
Done constifying! With my current configuration at least.
Still running into the same bug though.
Change-Id: I56f7bdb1facce02f9377620cd23f5e07ad5bc597
2016-02-25 cooljeanius <egall@gwmail.gwu.edu>
Constifying continues, Feb 25 2016
Change-Id: Ie894e7af1d318259da3491002d7bbd63c7f09146
2016-02-24 cooljeanius <egall@gwmail.gwu.edu>
further constification Feb 24, 2016 (getting there)
Change-Id: I4ba0acbb8f43c8c33e6c9050171a8486241d2655
2016-02-19 cooljeanius <egall@gwmail.gwu.edu>
new gnulib import, further constification
Change-Id: Ica38b15bc1dd9e402b5fcd5e118365bdb7b6a951
2016-01-31 cooljeanius <egall@gwmail.gwu.edu>
add target in Xcode project for mmalloc
Change-Id: Idc402aa3ea328b02ff3569fcfdd0d3faba6b4cbb
2016-01-17 cooljeanius <egall@gwmail.gwu.edu>
Further constification for Jan 2016
Change-Id: I171f6d9c7fe12a134e9d6c9e979a5887170adea2
2016-01-05 cooljeanius <egall@gwmail.gwu.edu>
more constifying and misc. cleanup
Change-Id: I2497febf3a12fcbbbf25d166c45f2d942a8a0560
2015-11-25 cooljeanius <egall@gwmail.gwu.edu>
Add Makefile rule for clang static analysis; run it on stuff
Change-Id: I3fd35986bb52a15c86c9f54a7e9967d49c280700
2015-11-16 cooljeanius <egall@gwmail.gwu.edu>
uh... I forget...
Change-Id: I41836c73ec9585d308c3a2de1dcb370a88f31c72
2015-10-15 cooljeanius <egall@gwmail.gwu.edu>
try harder to get compilation as C++ to work
Change-Id: I672cae709f8e277c2de8033d5a1601eecf4aba2d
2015-10-09 cooljeanius <egall@gwmail.gwu.edu>
been doing stuff on Leopard...
Change-Id: I91e952ac6ba4d6f35cbca0f20b7072aad4e58a1c
2015-09-16 cooljeanius <egall@gwmail.gwu.edu>
attempt to merge Leopard branch with trunk
Change-Id: Iad79d81e5610d3ba0192f7e3827433d0f99fc0e0
2015-08-25 cooljeanius <egall@gwmail.gwu.edu>
STILL needed to add just a few last files before pulling
Change-Id: I82e44ab940a6b8942d7fadbb4100dbb00d204648
2015-08-25 cooljeanius <egall@gwmail.gwu.edu>
still needed to add a few files before pulling
Change-Id: Ic5fd9b26f7b8b90c26a1e11b09a83199f9b8f4c4
2015-08-25 cooljeanius <egall@gwmail.gwu.edu>
meant this to be the previous commit
Change-Id: Ice20c19d457af1691d4ebbee7a3ed45a6d1426cf
2015-08-25 cooljeanius <egall@gwmail.gwu.edu>
need to add untracked files before pulling
Change-Id: I50f014f6112f61612601d537eebb79bd26e97c29
2015-07-03 Eric Gallager <egall@gwmail.gwu.edu>
add a target in the Xcode project for libiberty
also more silencing of warnings
Change-Id: Ia1092b6983601ebe0d2acf2613daaa514845fcb7
2015-06-30 Eric Gallager <egall@gwmail.gwu.edu>
work on configury issues arising from using top-most Apple-local
Makefile
also more warning-silencing and stuff
Change-Id: Iaebf6a3dfa7a273e68f4707f4ea129423c07a4a1
2015-06-29 Eric Gallager <egall@gwmail.gwu.edu>
continued from previous
- lots of progress on silencing warnings, even while adding some new
ones
- the top-level Makefile changes I actually made to gcc first
- also try to enable building the gdb.apple testsuite from its Makefile
- more gnulib modules
- try seeing if the bisoned/yacced sources can be output as C++
- always build support for arm arch on darwin bfd targets
Change-Id: I74fe12c3b7dde93104c0980d1a7e51e60e6752f6
2015-06-25 Eric Gallager <egall@gwmail.gwu.edu>
more warning silencing, update gnulib
Change-Id: Ie9ba43a5f572352f2f7f72dd76162ad6e0475233
2015-06-17 Eric Gallager <egall@gwmail.gwu.edu>
warnings and configury and stuff, now with clang-3.6 and gcc6
Change-Id: I9d824fe284cbd91f0bba09042f5b2f44287ead2f
2015-06-04 Eric Gallager <egall@gwmail.gwu.edu>
stuff that shoulda gone in the prev. commit (Jun 4, 2014)
Change-Id: Ib7f42b93f28ccb04754893671ac7450d92c9e1e4
2015-06-04 Eric Gallager <egall@gwmail.gwu.edu>
more specific autotools version reqs, updates for gcc5
and stuff
Change-Id: Ic7bf6c1084093a14d9346867116200f5e2e9faa3
2015-04-20 Eric Gallager <egall@gwmail.gwu.edu>
minor Travis tweak
Change-Id: I3659b835d70ab9798c3a6b533e4312d402cf1ff1
2015-04-20 Eric Gallager <egall@gwmail.gwu.edu>
add readline target to Xcode proj
Change-Id: Ic119347af19b85cc4c343725c008b8f9b420ec67
2015-04-20 Eric Gallager <egall@gwmail.gwu.edu>
add intl target to Xcode proj; more bfd stuff again
Change-Id: Ife9188d71be243b05e114964ba34eb306564a053
2015-04-18 Eric Gallager <egall@gwmail.gwu.edu>
add efence target to Xcode proj; more bfd stuff
Change-Id: Ib952c0647f4b3356de9280f14c27e0e131b6c0f1
2015-04-09 Eric Gallager <egall@gwmail.gwu.edu>
go through all subdirs and do stuff
idk
Change-Id: I38fd4ab4db07b8e02ddbfb2b1a99e5e3b6ae3dd0
2015-04-05 Eric Gallager <egall@gwmail.gwu.edu>
convert libcheckpoint to use automake
Change-Id: I80e5daf9a8e035bd94ad31462ed771a838f10bd1
2015-04-02 Eric Gallager <egall@gwmail.gwu.edu>
back to trying to get the topmost-level Makefile working again
everything blows up once it reaches the bfd subdir, unfortunately... so
just for good measure, I screwed it up even more...
Change-Id: I60989f41fa3818c7e4a2c8f3b78383850ecb26d0
2015-04-02 Eric Gallager <egall@gwmail.gwu.edu>
gdb Makefile dependencies for objects: tui subdir
Change-Id: I88d008f50062ebef9de945fe2c37488b6b0ec39b
2015-04-02 Eric Gallager <egall@gwmail.gwu.edu>
gdb Makefile object dependencies: mi subdir
also some tweaks to mmalloc and zlib
Change-Id: Idc51dfc76f37d099807e16c42dbd41fda803ad9b
2015-04-02 Eric Gallager <egall@gwmail.gwu.edu>
more Makefile dependencies, this time for macosx subdir
Change-Id: I648e20ec4fa92a110da8643fcd17a03de62f1c27
2015-04-01 Eric Gallager <egall@gwmail.gwu.edu>
update Makefile dependencies for gdbtk
(in the one for gdb)
Change-Id: Ic8fe2fa100b090d227e27c04eab8a14cc48361f2
2015-04-01 Eric Gallager <egall@gwmail.gwu.edu>
convert zlib to automake
Change-Id: I04067019c9f4bda6a78b4c82bccbc79b34a09d12
2015-03-31 Eric Gallager <egall@gwmail.gwu.edu>
continue updating target dependencies in the gdb Makefile
Change-Id: Id309a52be156f6bff4002672fe50431919adc1c4
2015-03-27 Eric Gallager <egall@gwmail.gwu.edu>
start updating file dependencies in the gdb Makefile
this is to try to make it easier to configure and test different target
architectures without having to clean between each time (WIP)
Change-Id: I4ce9b679eceaee9d3aad9fdc0a34e11d7f72910d
2015-03-25 Eric Gallager <egall@gwmail.gwu.edu>
warnings and patches and gnulib and stuff (Mar. 25, 2015)
I am bad at writing commit messages
Change-Id: I87dd040b1a71dd670f42259cf55302ceb8c83a16
2015-03-23 Eric Gallager <egall@gwmail.gwu.edu>
silence more bfd warnings, and provoke new gdb ones
the new gdb ones are from adding an ATTRIBUTE_DEPRECATED macro, and
sprinkling it over all (well, most) functions with "deprecated" in
their titles, or in a comment describing them
Change-Id: Ib2d68dd97287cb39fb4c5ee960e729bf571fab67
2015-03-20 Eric Gallager <egall@gwmail.gwu.edu>
bfd now builds from Xcode!
(I also silenced some additional warnings while I was at it)
Change-Id: I6f18854b6be2136a93c7391b361448e05adc588c
2015-03-20 Eric Gallager <egall@gwmail.gwu.edu>
more silencing warnings and stuff
also update gnulib sources
Change-Id: I2e33a6ab80d1037da4f3cf1bec4446f969e6a36d
2015-03-11 Eric Gallager <egall@gwmail.gwu.edu>
try to propagate archflags better for tcl & expect
for the purposes of running `make check`
Change-Id: I9587bf5a0e01841369e466276081657a4761ee95
2015-03-11 Eric Gallager <egall@gwmail.gwu.edu>