This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
ChangeLog
7511 lines (4571 loc) · 242 KB
/
ChangeLog
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
2001-09-03 Jeff Holcomb <[email protected]>
* configure.in: Enable libstdc++-v3 for h8300 targets.
2001-08-30 Eric Christopher <[email protected]>
Jason Eckhardt <[email protected]>
* config.sub: Add support for mipsisa32.
2001-08-30 Eric Christopher <[email protected]>
* config.sub, config.guess: Import latest from subversions.
2001-08-20 Alan Modra <[email protected]>
* config.sub, config.guess: Import latest from subversions.
2001-07-26 DJ Delorie <[email protected]>
* MAINTAINERS: Clarify libiberty merge rules and procedures.
2001-06-19 Alan Modra <[email protected]>
* Makefile.in: Revert 2001-06-17.
(VER): If AM_INIT_AUTOMAKE uses BFD_VERSION, get version from bfd/.
2001-06-17 H.J. Lu <[email protected]>
* Makefile.in (gas.tar.bz2): Pass TOOL=bfd PACKAGE=gas to make.
(gas+binutils.tar.bz2): Likewise.
(binutils.tar.bz2): Pass TOOL=bfd PACKAGE=binutils to make.
Fri Jun 8 11:14:02 2001 Andrew Cagney <[email protected]>
* Makefile.in (VER): When present, extract the version number from
the file version.in.
2001-06-08 Alexandre Oliva <[email protected]>, Jeff Sturm <[email protected]>
* Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): If
gcc/xgcc is built, use -print-prog-name to find out the program
name to use.
2001-06-04 Mark Mitchell <[email protected]>
* ltcf-c.sh (archive_cmds, archive_expsym_cmds) [solaris,
with_gcc]: Use `gcc -shared' to build a shared library.
2001-06-04 John David Anglin <[email protected]>
* ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
archives.
2001-05-28 Simon Patarin <[email protected]>
* ltcf-cxx.sh (osf3/osf4/osf5): Support creation of C++ shared
libraries when using g++ with native linker.
2001-05-28 Alexandre Oliva <[email protected]>
* ltconfig, ltmain.sh: Upgrade to libtool 1.4a 1.641.2.256.
2001-05-24 Tom Rix <[email protected]>
* configure.in : enable ld for aix
2001-05-22 Alexandre Oliva <[email protected]>
* ltcf-cxx.sh (allow_undefined_flag, no_undefined_flag)
[aix4*|aix5*]: Prepend blank.
2001-05-20 Alexandre Oliva <[email protected]>
* ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.254. Rebuilt a number
of subdir/configure scripts to use the new libtool.m4.
2001-05-14 H.J. Lu <[email protected]>
* config.if (libc_interface): Set to -libc6.2- for cross
compiling to Linux/glibc 2.2.
2001-05-03 Alexandre Oliva <[email protected]>
* configure.in (noconfigdirs) [*-cygwin*, *-mingw*, *-beos]: Disable
libgcj.
2001-04-26 Alexandre Oliva <[email protected]>
* configure.in (noconfigdirs): Don't reset it from scratch in the
target case; only append to it.
2001-04-26 Alexandre Oliva <[email protected]>
* configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*,
sparc-*-solaris2.8]: Disable ${libgcj}.
2001-04-25 Alexandre Oliva <[email protected]>
* configure.in (libgcj_saved): Copy from $libgcj.
(libgcj): Zero out if --enable-libgcj; add to noconfigdirs is
--disable-libgcj.
2001-04-20 Alexandre Oliva <[email protected]>
* ltconfig, ltmain.sh, ltcf-cxx.sh: Upgraded to libtool 1.4a
1.641.2.228.
2001-04-12 Alexandre Oliva <[email protected]>
* ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.226.
2001-04-01 Alexandre Oliva <[email protected]>
* Makefile.in (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS):
New macros.
(bootstrap, cross): Use RECURSE_FLAGS.
* configure.in: Subst CXX_FOR_TARGET_FOR_RECURSIVE_MAKE.
2001-03-27 Alexandre Oliva <[email protected]>
* configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3.
2001-03-23 Nick Clifton <[email protected]>
* README-maintainer-mode: Add note about inability to use "make
distclean" in maintainer mode.
2001-03-22 Alexandre Oliva <[email protected]>
Re-installed:
2001-01-02 Laurynas Biveinis <[email protected]>
* ltcf-c.sh: Clear ac_cv_prog_cc_pic for DJGPP. Do not add
'-DPIC' to ac_cv_prog_cc_pic for DJGPP.
* ltcf-cxx.sh: Likewise.
* ltcf-gcj.sh: Likewise.
2001-03-22 Philip Blundell <[email protected]>
* config.sub, config.guess: Import latest from subversions.
2001-03-22 Alexandre Oliva <[email protected]>
* ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.198.
2001-03-20 Michael Chastain <[email protected]>
* Makefile.in: all-m4 depends on all-texinfo.
2001-03-08 Alexandre Oliva <[email protected]>
* Makefile.in (ALL_GCC, ALL_GCC_C, ALL_GCC_CXX): Set before use.
2001-02-22 Jeff Johnston <[email protected]>
* COPYING.NEWLIB: Remove DJ Delorie's address because it is no
longer valid.
2001-02-16 Nick Clifton <[email protected]>
* configure.in (noconfigdirs): Allow configuration of texinfo
for Cygwin hosts.
2001-02-09 Martin Schwidefsky <[email protected]>
* config.guess: Add linux target for S/390.
* config.sub: Likewise.
* configure.in: Likewise.
2001-02-06 Ben Elliston <[email protected]>
* configure: Output host type to stdout, not stderr.
2001-02-04 Michael Sokolov <[email protected]>
* config.guess: Import from subversions.gnu.org (revision 1.181).
* config.sub: Import from subversions.gnu.org (revision 1.199).
2001-01-30 Alan Modra <[email protected]>
* config.guess: Handle hppa64-linux systems.
2001-01-27 Michael Sokolov <[email protected]>
* ltcf-cxx.sh (ac_cv_prog_cc_pic_works, ac_cv_prog_cc_static_works):
Don't unset, it's non-portable and no longer necessary, set to empty
instead.
2001-01-27 Michael Sokolov <[email protected]>, Alexandre Oliva <[email protected]>
* ltconfig: Shell portability fix for the tagname validity check.
2001-01-27 Michael Sokolov <[email protected]>
* ltcf-cxx.sh: Use parentheses around eval $ac_compile.
2001-01-27 Alexandre Oliva <[email protected]>
* ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
* ltcf-cxx.sh, ltcf-gcj.sh: Likewise.
2001-01-24 Alexandre Oliva <[email protected]>
* ltmain.sh (TAG disable-shared, TAG disable-static): Make sure we
keep at least one of build_libtool_libs or build_old_libs set to
yes.
2001-01-24 Alexandre Oliva <[email protected]>
* ltcf-gcj.sh (lt_simple_link_test_code): Remove stray `(0)'.
* libtool.m4 (_AC_LIBTOOL_GCJ): Pass $CPPFLAGS on.
2000-11-07 Philip Blundell <[email protected]>
* Makefile.in (ETC_SUPPORT): Also add configbuild.* and configdev.*.
2000-11-03 Philip Blundell <[email protected]>
* Makefile.in (ETC_SUPPORT): Add configure.texi and associated info
files.
2001-01-15 Jeff Johnston <[email protected]>
* COPYING.NEWLIB: Put into source repository.
2001-01-15 Ben Elliston <[email protected]>
* configure.in (host_tools): Add sid.
Always configure cgen.
* Makefile.in (all-sid): New target.
(check-sid, clean-sid, install-sid): Likewise.
2001-01-07 Andreas Jaeger <[email protected]>
* config.sub, config.guess: Update from subversions.
2000-12-12 Alexandre Oliva <[email protected]>
* configure.in: Disable language-specific target libraries for
languages that aren't enabled.
2000-11-24 Nick Clifton <[email protected]>
* configure.in (xscale-elf): Add target.
(xscale-coff): Add target.
(c4x, c5x, tic54x): Move after ARM targets.
2000-11-23 Alexandre Oliva <[email protected]>
* ltcf-gcj.sh: Added file, required by 2000-11-18 merge.
2000-11-20 Ian Lance Taylor <[email protected]>
* ltcf-cxx.sh: Added file, required by 2000-11-18 merge.
2000-11-18 Alexandre Oliva <[email protected]>
* Makefile.in: Merge with GCC and libgcj.
(ALL_GCC_C, ALL_GCC_CXX): New macros. Use them as dependencies of
configure-target-<library> when their configure scripts need the C
or C++ library to have already been built to work properly.
(do_proto_toplev): Set them to an empty string.
Sat Nov 18 18:57:50 2000 Alexandre Oliva <[email protected]>
* Makefile.in (HOST_LIB_PATH, TARGET_LIB_PATH): New macros.
(REALLY_SET_LIB_PATH): Use them.
Mon Nov 6 14:19:35 2000 Christopher Faylor <[email protected]>
* config.sub: Add support for Sun Chorus
2000-11-02 Per Lundberg <[email protected]>
* config.sub: Add support for the *-storm-chaos OS.
2000-10-30 Stephane Carrez <[email protected]>
* configure.in (noconfigdirs): Don't compile some
of the libraries for 68HC11 & 68hc12 targets.
2000-09-30 Alexandre Oliva <[email protected]>
* ltconfig, ltmain.sh, libtool.m4: Updated from libtool
multi-language branch, to work around Solaris' /bin/sh bug. Rebuilt
all affected `configure' scripts.
2000-09-25 Alexandre Oliva <[email protected]>
* Makefile.in (DEVO_SUPPORT): Added gettext.m4, libtool.m4 and
ltcf-c.sh.
2000-09-12 Philip Blundell <[email protected]>
* config.sub, config.guess: Update from subversions.
2000-09-06 Alexandre Oliva <[email protected]>
* Makefile.in (all-zlib): Added dummy target.
* ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh: Updated from libtool
multi-language branch.
2000-09-05 Alexandre Oliva <[email protected]>
* Makefile.in (all-bootstrap): Added all-texinfo and all-zlib.
(bootstrap*): Depend on all-bootstrap.
2000-09-02 Alexandre Oliva <[email protected]>, DJ Delorie <[email protected]>
* configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian
crosses, but add gcc/include to the header search path for them.
2000-08-31 Alexandre Oliva <[email protected]>
* ltconfig, ltmain.sh: Updated from libtool multi-language branch.
* libtool.m4, ltcf-c.sh: Copied from libtool multi-language branch.
* gettext.m4: New file, extracted from aclocal.m4.
2000-08-22 Alexandre Oliva <[email protected]>
* config-ml.in (CC, CXX): Avoid trailing whitespace.
(LD_LIBRARY_PATH, SHLIB_PATH): Adjust for multilibs and export to
sub-configures.
2000-08-20 Doug Evans <[email protected]>
* Makefile.in (ALL_MODULES): Add all-cgen.
(CROSS_CHECK_MODULES,INSTALL_MODULES,CLEAN_MODULES): Similarily.
(all-cgen): New target.
(all-opcodes,all-sim): Depend on all-cgen.
* configure.in (host_tools): Add cgen.
Only configure cgen if --enable-cgen-maint.
2000-08-17 Alexandre Oliva <[email protected]>
* config-ml.in (CC, CXX): Don't introduce a leading space.
2000-08-16 Alexandre Oliva <[email protected]>
* configure.in (libstdcxx_flags): Use
libstdc++-v3/src/libstdc++.INC.
2000-08-15 Alexandre Oliva <[email protected]>
* configure.in (libstdcxx_flags): Use libstdc++-v3/src/INCLUDES.
2000-08-11 Jason Merrill <[email protected]>
* configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET,
CXX_FOR_TARGET): Add -B$$r/gcc/ here.
(FLAGS_FOR_TARGET): Not here.
(CHILL_FOR_TARGET, CXX_FOR_TARGET): Don't check the list of languages.
2000-08-07 DJ Delorie <[email protected]>
* configure.in (FLAGS_FOR_TARGET): invert test for xgcc, should mean
"if we're also building gcc, and it's a gcc that will run on the
build machine, we want to use its includes instead of the system's
default includes".
2000-08-03 Alexandre Oliva <[email protected]>
* configure.in (libstdcxx_flags): Don't use `"'.
* config-ml.in: Adjust multilib search paths to the
appropriate multilib tree.
2000-08-02 Alexandre Oliva <[email protected]>
* configure.in (CHILL_FOR_TARGET, CXX_FOR_TARGET): Convert blanks to
commas in $LANGUAGES.
2000-08-01 Alexandre Oliva <[email protected]>
* configure.in (qCXX_FOR_TARGET): Use echo instead of expr.
2000-07-31 Alexandre Oliva <[email protected]>
* configure.in (qCXX_FOR_TARGET): Quote `&' characters in
CXX_FOR_TARGET for sed.
2000-07-30 Alexandre Oliva <[email protected]>
* configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET, CXX_FOR_TARGET):
Do not override if already set in the environment or in configure.
Don't duplicate $(FLAGS_FOR_TARGET) if it already appears in them.
(FLAGS_FOR_TARGET): Don't use host directories on Canadian crosses.
2000-07-27 Alexandre Oliva <[email protected]>
* Makefile.in (FLAGS_FOR_TARGET): New macro.
(GCC_FOR_TARGET): Use it.
(CC_FOR_TARGET, CXX_FOR_TARGET, CHILL_FOR_TARGET): Now defined...
* configure.in: ... here.
(FLAGS_FOR_TARGET): Define. Add ld build dir to -L path.
(libstdcxx_flags): Define and append to CXX_FOR_TARGET.
2000-07-24 Alexandre Oliva <[email protected]>
* Makefile.in (configure-target-libf2c): Depend on $(ALL_GCC).
(configure-target-libchill, configure-target-libobjc): Likewise.
* configure.in: Use the same cache file for all target libs.
* config-ml.in: But different cache files per multilib variant.
2000-07-23 Michael Sokolov <[email protected]>
* configure (topsrcdir): Don't use dirname.
2000-07-20 Jason Merrill <[email protected]>
* configure.in: Remove all references to libg++ and librx.
* configure, configure.in, Makefile.in: Unify gcc and binutils.
2000-07-20 Hans-Peter Nilsson <[email protected]>
* config.sub: Update to subversions version 2000-07-06.
2000-07-12 Andrew Haley <[email protected]>
* configure.in (host_makefile_frag): Use mh-ia64pic on IA-64 hosts.
(target_makefile_frag): Use mt-ia64pic on IA-64 targets.
2000-07-07 Phil Edwards <[email protected]>
* symlink-tree: Check number of arguments.
Thu Jul 6 15:36:55 2000 Andrew Cagney <[email protected]>
* texinfo/texinfo.tex: Update to version 2000-05-28.15.
2000-07-05 Jim Wilson <[email protected]>
* Makefile.in (CXX_FOR_TARGET): Add libstdc++ to the library
search path for a g++ extracted from the build tree. This
will allow link tests run by configure scripts in
subdirectories to succeed.
2000-07-01 Koundinya K <[email protected]>
* ltconfig: Add support for mips-dde-sysv4.2MP
2000-06-28 Corinna Vinschen <[email protected]>
* ltconfig: Check for host_os beeing one of `cygwin', `mingw' or
`os2'. Force ac_cv_exeext to be ".exe" in that case.
2000-06-19 Timothy Wall <[email protected]>
* configure.in (noconfigdirs): Set noconfigdirs for tic54x target.
* config.sub: Add tic54x target.
2000-06-07 Phillip Thomas <[email protected]>
* README-maintainer-mode: New file: Contains notes on using
--enable-maintainer-mode with binutils.
Mon May 29 13:50:03 2000 Andrew Cagney <[email protected]>
* texinfo/texinfo.tex: Update. Version from makeinfo 4.0.
Tue May 30 19:01:12 2000 Andrew Cagney <[email protected]>
* config.sub: Import CVS version 1.167 Tue May 30 09:00:07 2000.
* config.guess: Import CVS version 1.148 Tue May 30 09:00:06 2000
20000-05-21 H.J. Lu ([email protected])
* Makefile.in (CC_FOR_TARGET): Make sure as/ld in the gcc
directory are used if they exist. Make sure
$(build_tooldir)/include is searched for header files,
$(build_tooldir)/lib/ for library files.
(GCC_FOR_TARGET): Likewise.
(CXX_FOR_TARGET): Likewise.
Thu May 18 10:58:13 2000 Jeffrey A Law ([email protected])
* configure.in (hppa*64*-*-*): Do build ld for this configuration.
Wed May 17 16:03:48 2000 Alexandre Oliva <[email protected]>
* Makefile.in (configure-target-libiberty): Depend on
configure-target-newlib.
2000-05-16 Alexandre Oliva <[email protected]>
* configure.in, Makefile.in: Merge all libffi-related
configury stuff from the libgcj tree.
Tue May 16 10:06:21 2000 Andrew Cagney <[email protected]>
Thu Apr 27 11:01:48 2000 Andrew Cagney <[email protected]>:
* Makefile.in (do-tar-bz2, do-md5sum): Skip CVS directories.
Tue May 16 09:57:35 2000 Andrew Cagney <[email protected]>
Wed Apr 26 17:03:53 2000 Andrew Cagney <[email protected]>:
* Makefile.in (do-djunpack): New target. Update djunpack.bat with
current version information. Add to proto-toplev directory.
(gdb-taz): Build do-djunpack.
2000-05-15 David Edelsohn <[email protected]>
* configure.in: Special case powerpc*-*-aix* target_makefile_frag.
2000-05-13 Alexandre Oliva <[email protected]>
* ltmain.sh: Preserve in relink_command any environment
variables that may affect the linker behavior.
Fri May 12 11:23:17 2000 Jeffrey A Law ([email protected])
* config.sub (basic_machine): Recognize hppa64 as a valid cpu type.
Wed May 10 21:26:51 2000 Jim Wilson <[email protected]>
* configure.in (ia64*-*-elf*): Add gdb and friends to noconfigdirs.
2000-05-08 Eli Zaretskii <[email protected]>
* djunpack.bat: Change the Sed script to replace @V@ in fnchange.lst
with the version name.
2000-05-01 Benjamin Kosnik <[email protected]>
* config.if: Tweak.
2000-04-23 Eli Zaretskii <[email protected]>
* djunpack.bat: New file.
Wed Apr 19 12:46:26 2000 Andrew Cagney <[email protected]>
* Makefile.in (taz, gdb-taz, gas.tar.bz2, binutils.tar.bz2,
gas+binutils.tar.bz2, libg++.tar.bz2, gnats.tar.bz2, gdb.tar.bz2,
dejagnu.tar.bz2, gdb+dejagnu.tar.bz2, insight.tar.bz2,
insight+dejagnu.tar.bz2, newlib.tar.bz2): Pass MD5PROG to sub-make.
2000-04-16 Dave Pitts <[email protected]>
* config.sub (case $basic_machine): Change default for "ibm-*"
to "openedition".
Wed Apr 12 16:42:48 2000 Andrew Cagney <[email protected]>
* Makefile.in (gdb-taz): New target. GDB specific archive.
(do-md5sum): New target.
(MD5PROG): Define.
(PACKAGE): Default to TOOL.
(VER): Default to a shell script.
(taz): Rewrite target. Move real work to do-proto-toplev. Include
md5 checksum generation.
(do-proto-toplev): New target. Create $(PACKAGE)-$(VER) link.
(do-tar-bz2): Delete creation of $(PACKAGE)-$(VER) link.
(gdb.tar.bz2, dejagnu.tar.bz2, gdb+dejagnu.tar.bz2,
insight.tar.bz2): Use gdb-taz to create archive.
Fri Apr 7 18:10:29 2000 Andrew Cagney <[email protected]>
* configure (warn_cflags): Delete.
2000-04-05 Benjamin Kosnik <[email protected]>
Martin v. Loewis <[email protected]>
* configure.in (enable_libstdcxx_v3): Add.
(target_libs): Add bits here to switch between libstdc++-v2 and
libstdc++-v3.
* config.if: And this file too.
* Makefile.in: Add libstdc++-v3 targets.
2000-04-05 Michael Meissner <[email protected]>
* config.sub (d30v): Add d30v as a basic machine type.
2000-03-29 Jason Merrill <[email protected]>
* configure.in: -linux-gnu*, not -linux-gnu.
Fri Mar 3 18:44:08 2000 Andrew Cagney <[email protected]>
* Makefile.in (taz): Set PACKAGE to TOOL when not defined.
(do-tar-bz2): Replace TOOL with PACKAGE.
(gdb.tar.bz2): Remove GDBTK from GDB package.
(gdb+dejagnu.tar.bz2, insight.tar.bz2, insight+dejagnu.tar.bz2,
dejagnu.tar.bz2): New packages.
2000-02-27 Andreas Jaeger <[email protected]>
* configure.in: Add entry for mips*-*-linux*, move catch all
*-*-*linux* entry below this one.
2000-02-27 Ian Lance Taylor <[email protected]>
* ltconfig, ltmain.sh: Update to libtool 1.3.4.
2000-02-24 Nick Clifton <[email protected]>
* config.sub: Support an OS of "wince".
Thu Feb 24 16:15:56 2000 Andrew Cagney <[email protected]>
* config.guess, config.sub: Updated to match config's 2000-02-15
version.
2000-02-23 Linas Vepstas <[email protected]>
* config.sub: Add support for Linux/IBM 370.
* configure.in: Likewise.
2000-02-22 Nick Clifton <[email protected]>
* configure.in: Add mips-pe, sh-pe and arm-wince-pe targets.
2000-02-20 Christopher Faylor <[email protected]>
* config.guess: Guess "cygwin" rather than "cygwin32".
2000-02-16 Kaveh R. Ghazi <[email protected]>
* configure (gcc_version): When setting, narrow search to
lines containing `version_string'.
2000-02-15 Denis Chertykov <[email protected]>
* config.sub: Add support for avr target.
Tue Feb 1 00:07:46 2000 Hans-Peter Nilsson <[email protected]>
* config.sub: Add mmix-knuth-mmixware.
2000-01-27 Christopher Faylor <[email protected]>
* Makefile.in (CC_FOR_TARGET): Add new winsup directory
structure stuff to -L library search.
(CXX_FOR_TARGET): Ditto.
(CROSS_CHECK_MODULES): Fix spelling mistake.
2000-01-24 Mark Mitchell <[email protected]>
* Makefile.in (CXX_FOR_TARGET): Use g++, not xgcc, to invoke
the C++ compiler.
2000-01-12 Richard Henderson <[email protected]>
* configure.in: Don't build some bits for beos.
2000-01-12 Joel Sherrill ([email protected])
* Makefile.in (CC_FOR_TARGET): Use newlib libraries as well
as include files.
2000-01-06 Geoff Keating <[email protected]>
* configure.in: Use mt-aix43 to handle *_TARGET defs,
not mh-aix43.
1999-12-14 Richard Henderson <[email protected]>
* config.guess (alpha-osf, alpha-linux): Detect ev67.
* config.sub: Accept alphaev[78], alphaev8.
1999-12-03 Alexandre Oliva <[email protected]>
* config.guess, config.sub: Update from autoconf.
Tue Nov 23 00:57:41 1999 Rainer Orth <[email protected]>
* config-ml.in (sparc*-*-*): Disable sparcv9 support if the
necessary libraries are missing.
1999-10-25 Andreas Schwab <[email protected]>
* configure: Fix quoting inside arguments of eval.
1999-10-21 Nick Clifton <[email protected]>
* config-ml.in: Allow suppression of some ARM multilibs.
Tue Sep 7 23:33:57 1999 Linas Vepstas <[email protected]>
* config.guess: Add OS/390 match pattern.
* config.sub: Add mvs, openedition targets.
* configure.in (i370-ibm-opened*): New.
1999-09-04 Steve Chamberlain <[email protected]>
* config.sub: Add support for configuring for pj.
1999-08-31 Nick Clifton <[email protected]>
* config.sub (maybe_os): Add support for configuring for fr30.
1999-08-25 Nick Clifton <[email protected]>
* configure.in: Do not configure or build ld for AIX
platforms. ld is known to be broken on these platforms.
Wed Aug 25 01:12:25 1999 Rainer Orth <[email protected]>
* config-ml.in: Pass compiler flag corresponding to multidirs to
subdir configures.
1999-08-09 Ian Lance Taylor <[email protected]>
* Makefile.in (LDFLAGS): Define.
1999-08-08 Mumit Khan <[email protected]>
* configure.in (i[3456]-*-mingw32*): Don't put gprof in
noconfigdirs.
(*-*-cygwin*): Likewise.
1999-08-08 Ian Lance Taylor <[email protected]>
* mkdep: New file.
* Makefile.in (GAS_SUPPORT_DIRS): Add mkdep.
(BINUTILS_SUPPORT_DIRS): Add mkdep.
From Eli Zaretskii <[email protected]>:
* configure (tmpfile): Change cONf$$ to cNf$$ to avoid an overly
long file name when using DJGPP on MS-DOS.
Wed Aug 4 02:07:14 1999 Jeffrey A Law ([email protected])
* config.sub (vxworks case): Use os=-vxworks, not os=vxworks.
1999-07-30 Alan Modra <[email protected]>
* Makefile.in (check-target-libio): Remove all-target-libstdc++
dependency as this causes "make check" to globally "make all"
Tue Jun 22 23:45:18 1999 Tom Tromey <[email protected]>
* configure.in (target_libs): Added target-zlib.
* Makefile.in (ALL_TARGET_MODULES): Added zlib.
(CONFIGURE_TARGET_MODULES): Likewise.
(CHECK_TARGET_MODULES): Likewise.
(INSTALL_TARGET_MODULES): Likewise.
(CLEAN_TARGET_MODULES): Likewise.
(configure-target-zlib): New target.
(all-target-zlib): Likewise.
(all-target-libjava): Depend on all-target-zlib.
(configure-target-libjava): Depend on configure-target-zlib.
* Makefile.in (configure-target-libjava): Depend on
configure-target-newlib.
(configure-target-boehm-gc): New target.
(configure-target-qthreads): New target.
* configure.in (target_libs): Added target-qthreads.
* Makefile.in (ALL_TARGET_MODULES): Added qthreads.
(CONFIGURE_TARGET_MODULES): Likewise.
(CHECK_TARGET_MODULES): Likewise.
(INSTALL_TARGET_MODULES): Likewise.
(CLEAN_TARGET_MODULES): Likewise.
(all-target-qthreads): New target.
(configure-target-libjava): Depend on configure-target-qthreads.
(all-target-libjava): Depend on all-target-qthreads.
* Makefile.in (ALL_TARGET_MODULES): Added libjava, boehm-gc.
(CONFIGURE_TARGET_MODULES): Likewise.
(CHECK_TARGET_MODULES): Likewise.
(INSTALL_TARGET_MODULES): Likewise.
(CLEAN_TARGET_MODULES): Likewise.
(all-target-libjava): New target.
(all-target-boehm-gc): Likewise.
* configure.in (target_libs): Added libjava, boehm-gc.
1999-07-22 Ian Lance Taylor <[email protected]>
* Makefile.in (binutils.tar.bz2): Don't pass makeall.bat and
configure.bat in SUPPORT_FILES.
(gas+binutils.tar.bz2): Likewise.
* makeall.bat: Remove; obsolete.
1999-07-21 Ian Lance Taylor <[email protected]>
From Mark Elbrecht:
* configure.bat: Remove; obsolete.
1999-07-11 Ian Lance Taylor <[email protected]>
* configure: Add -W -Wall to the default CFLAGS when compiling with
gcc.
Thu Jul 8 12:32:23 1999 John David Anglin <[email protected]>
* configure.in: Build ld, binutils & gas for hppa*-*-linux-gnu*.
1999-06-30 Mark Mitchell <[email protected]>
* configure.in: Build ld on IRIX6.
1999-06-12 Ian Lance Taylor <[email protected]>
* Makefile.in: Change distribution targets to use bzip2 instead of
gzip.
(TEXINFO_SUPPORT): Set to just texinfo/texinfo.tex.
(taz): Don't use texinfo/gpl.texinfo or texinfo/lgpl.texinfo.
1999-06-04 Nick Clifton <[email protected]>
* config.sub: Add mcore target.
Sun May 30 16:03:16 1999 Cort Dougan <[email protected]>
* config.guess (ppc-*-linux-gnu): Also use ld emul elf32ppclinux.
Tue May 25 11:20:46 1999 H.J. Lu ([email protected])
* config.guess (dummy): Changed to $dummy.
1999-05-24 Nick Clifton <[email protected]>
* config.sub: Tidied up case statements.
1999-05-22 Ben Elliston <[email protected]>
* config.guess: Handle NEC UX/4800. Contributed by Jiro Takabatake
* config.guess: Merge with FSF version. Future changes will be
more accurately recorded in this ChangeLog.
* config.sub: Likewise.
Thu May 20 10:00:42 1999 Stephen L Moshier <[email protected]>
* Makefile.in (GCC_FOR_TARGET): Add -I$(build_tooldir)/include.
1999-04-30 Tom Tromey <[email protected]>
* ltmain.sh: [mode link] Always use CC given by ltconfig.
1999-04-23 Tom Tromey <[email protected]>
* ltconfig, ltmain.sh: Update to libtool 1.2f.
1999-04-20 Drew Moseley <[email protected]>
* configure.in (noconfigdirs): Don't build libstub for arm-elf targets.
(noconfigdirs): Don't build any bsp stuff for for arm-oabi targets.
Bad merge removed these two changes.
Tue Apr 13 22:50:54 1999 Donn Terry ([email protected])
Martin Heller ([email protected])
* config.guess (interix Alpha): Add.
1999-04-11 Richard Henderson <[email protected]>
* configure.in (i?86-*-beos*): Do config gperf; don't config
gdb, newlib, or libgloss.
Sun Apr 11 23:55:34 1999 Alexandre Oliva <[email protected]>
* config-ml.in: On mips*-*-*, if multidirs contains mabi=64, try to
link a trivial program with -mabi=64. If it fails, remove mabi=64
from multidirs.
Sat Apr 10 21:50:01 1999 Philipp Thomas ([email protected])
* config.sub: Set basic_machine to i586 when target_alias = k6-*.
1999-04-08 Nick Clifton <[email protected]>
* config.sub: Add support for mcore targets.
1999-04-07 Michael Meissner <[email protected]>
* configure.in (d30v-*): Use config/mt-d30v as makefile fragment,
not mt-ospace, in order to shut up assembler warning about using
symbols that are named the same as registers.
1999-04-07 Drew Moseley <[email protected]>
* Makefile.in (all-target-cygmon): Added all-target-bsp to the
dependency list for all-target-cygmon.
1999-04-05 Doug Evans <[email protected]>
* config-ml.in: Check $host, not $target, for selective multilibs.
(arm-*-*): Allow disabling of biendian, h/w fp, 26 bit apcs,
thumb interworking, and underscore prefix multilibs.
1999-04-04 Ian Lance Taylor <[email protected]>
* missing: Update to version from current automake.
Fri Apr 2 15:11:32 1999 H.J. Lu ([email protected])
* configure (gxx_include_dir): Removed.
* configure.in (gxx_include_dir): Handle it.
* Makefile.in: Likewise.
1999-03-29 Gavin Romig-Koch <[email protected]>
* config.sub (mips64vr4111,mips64vr4111el) Add.
1999-03-21 Ben Elliston <[email protected]>
* config.guess: Correct typo for detecting ELF on FreeBSD.
Thu Mar 18 00:17:50 1999 Mark Elbrecht <[email protected]>
* config/mh-go32: Delete.
* config/mh-djgpp: New. Renamed from mh-go32.
* configure.in (pc-msdosdjgpp): Set host_makefile_frag to
config/mh-djgpp.
Thu Mar 11 18:37:23 1999 Drew Moseley <[email protected]>
* Makefile.in (all-target-bsp): Added all-gcc all-binutils and
all-target-newlib to dependency list for all-target-bsp.
Thu Mar 11 01:19:31 1999 Mumit Khan <[email protected]>
* config.sub: Add i386-uwin support.
* config.guess: Likewise.
Thu Mar 11 01:07:55 1999 Franz Sirl <[email protected]>
* configure.in: cleanup, add mh-*pic handling for arm, special
case powerpc*-*-aix*
Wed Mar 10 18:35:07 1999 Jeff Johnston <[email protected]>
* configure.in (noconfigdirs): Removed target-libgloss so libnosys.a
can be built.
Wed Mar 10 17:39:09 1999 Drew Moseley <[email protected]>
* configure.in: Added bsp support to arm-*-coff and arm-*-elf
targets.
1999-03-02 Nick Clifton <[email protected]>
* config.sub: Rename CYGNUS LOCAL to EGCS LOCAL
Sun Feb 28 02:20:00 1999 Geoffrey Noer <[email protected]>
* config.sub: Check for "cygwin*" rather than "cygwin32*"
1999-02-24 Nick Clifton <[email protected]>
* config.sub: Fix typo in arm recognition.
Wed Feb 24 13:51:40 1999 Drew Moseley <[email protected]>
* configure.in (noconfigdirs): Changed target_configdirs to
include target-bsp only for m68k-*-elf* and m68k-*-coff*
rather than m68k-*-* since it is not known to work on
m68k-aout. Ditto for arm-*-*oabi.
Wed Feb 24 12:52:17 1999 Stan Shebs <[email protected]>
* configure.in (*-*-windows*): Remove, no longer used.
* config/mh-windows: Ditto.
1999-02-19 Ben Elliston <[email protected]>
* config.guess: Automatically recognise ELF on FreeBSD. From Niall
Smart and improved by Andrew Cagney.
Thu Feb 18 19:55:09 1999 Marc Espie <[email protected]>
* config.guess: Recognize openbsd-*-hppa.
Wed Feb 17 01:38:59 1999 H.J. Lu ([email protected])
* Makefile.in (REALLY_SET_LIB_PATH): Append $$$(RPATH_ENVVAR)
only if it is not empty.
1999-02-17 Nick Clifton <[email protected]>
Patch from: Scott Bambrough <[email protected]>
* config.guess: Modified to recognize uname's armv* syntax.
* config.sub: Modified to recognize uname's armv* syntax.
1999-02-17 Mark Salter <[email protected]>
* configure.in: Added target-bsp for sparclite.
Mon Feb 8 14:17:24 1999 Richard Henderson <[email protected]>
* config.sub: Recognize alphapca5[67] and up to alphaev8.
1999-02-08 Nick Clifton <[email protected]>
* configure.in: Add support for strongarm port.
* config.sub: Add support for strongarm target.
Sun Feb 7 18:01:54 1999 Mumit Khan <[email protected]>