forked from gcc-mirror/gcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
7324 lines (4451 loc) · 236 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
2000-08-27 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
* config.guess: Import CVS version 1.152.
* config.sub: Import CVS version 1.177.
2000-08-25 Alexandre Oliva <aoliva@redhat.com>
* configure.in (FLAGS_FOR_TARGET): Use $target_configdirs and
$targargs to tell whether newlib is going to be built.
* configure.in [disable-libstdcxx-v3] (libstdcxx_flags): Search
$$r/TARGET_SUBDIR/libio for _G_config.h.
2000-08-23 Alexandre Oliva <aoliva@redhat.com>
* MAINTAINERS: Add self as a build machinery (*.in) maintainer.
2000-08-22 DJ Delorie <dj@redhat.com>
* MAINTAINERS: Add self as a build machinery (*.in) maintainer
2000-08-22 Alexandre Oliva <aoliva@redhat.com>
* config-ml.in (CC, CXX): Avoid trailing whitespace.
(LD_LIBRARY_PATH, SHLIB_PATH): Adjust for multilibs and export to
sub-configures.
2000-08-21 DJ Delorie <dj@redhat.com>
* MAINTAINERS: Add self as a libiberty maintainer
2000-08-16 Alexandre Oliva <aoliva@redhat.com>
* configure.in (libstdcxx_flags): Use
libstdc++-v3/src/libstdc++.INC.
2000-08-15 Alexandre Oliva <aoliva@redhat.com>
* configure.in (libstdcxx_flags): Use libstdc++-v3/src/INCLUDES.
2000-08-14 Zack Weinberg <zack@wolery.cumb.org>
* configure.in (libstdcxx_flags): Remove -isystem $$s/libio/stdio.
* configure: Make enable_threads and enable_shared defaults
explicit. Substitute enable_threads into generated Makefiles.
* configure.in: Accept *-*-linux* not just *-*-linux-gnu*.
* libtool.m4: Accept *-*-linux* not just *-*-linux-gnu*.
2000-08-13 Geoff Keating <geoffk@cygnus.com>
* Makefile.in (GCC_FOR_TARGET): Also add -B$$r/gcc/ here.
2000-08-12 Alexandre Oliva <aoliva@redhat.com>
* config-ml.in (CC): Remove bogus duplicate quotation mark from
previous delta.
2000-08-11 Jason Merrill <jason@redhat.com>
* 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-11 Alexandre Oliva <aoliva@redhat.com>
* config-ml.in (CC, CXX): Don't introduce a leading space.
2000-08-07 DJ Delorie <dj@delorie.com>
* MAINTAINERS: Add self as a DJGPP maintainer
2000-08-07 DJ Delorie <dj@redhat.com>
* 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-04 Joseph S. Myers <jsm28@cam.ac.uk>
* MAINTAINERS: Add self to Write After Approval list.
2000-08-03 Alexandre Oliva <aoliva@redhat.com>
* configure.in (libstdcxx_flags): Don't use `"'.
* config-ml.in: Adjust multilib search paths to the
appropriate multilib tree.
2000-08-02 Alexandre Oliva <aoliva@redhat.com>
* configure.in (CHILL_FOR_TARGET, CXX_FOR_TARGET): Convert blanks to
commas in $LANGUAGES.
2000-08-02 Manfred Hollstein <manfredh@redhat.com>
* configure.in: Re-enable all references to libg++ and librx.
2000-08-01 Alexandre Oliva <aoliva@redhat.com>
* ltconfig, ltmain.sh: Update from libtool multi-language branch.
* ltcf-c.sh (need_lc): Fix test message. Set wl for archive_cmds.
(ac_cv_prog_cc_pic): Don't print `cached' without `checking'.
* ltcf-cxx.sh (need_lc): Set based on postdeps.
* configure.in (qCXX_FOR_TARGET): Use echo instead of expr.
2000-07-31 Alexandre Oliva <aoliva@redhat.com>
* configure.in (qCXX_FOR_TARGET): Quote `&' characters in
CXX_FOR_TARGET for sed.
2000-07-30 Alexandre Oliva <aoliva@redhat.com>
* 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-28 Alexandre Oliva <aoliva@redhat.com>
* libtool.m4, ltcf-c.sh, ltcf-cxx.sh, ltcf-gcj.sh: New files from
the libtool CVS tree multi-language branch.
* ltconfig, ltmain.sh: Updated.
2000-07-27 Alexandre Oliva <aoliva@redhat.com>
* Makefile.in (clean-target-libgcc): Remove gcc/libgcc.
(clean-target): Depend on it.
* 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 Eric Christopher <echristo@cygnus.com>
* MAINTAINERS: Add self to Write After Approval list.
2000-07-24 Alexandre Oliva <aoliva@redhat.com>
* 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 <msokolov@ivan.Harhan.ORG>
* configure (topsrcdir): Don't use dirname.
2000-07-22 Jeffrey Oldham <oldham@codesourcery.com>
* MAINTAINERS: Add self to Write After Approval list.
2000-07-20 Jason Merrill <jason@redhat.com>
* configure.in: Remove all references to libg++ and librx.
* configure, configure.in, Makefile.in: Unify gcc and binutils.
2000-07-20 Hans-Peter Nilsson <hp@axis.com>
* config.sub: Update to subversions version 2000-07-06.
2000-07-12 Andrew Haley <aph@cygnus.com>
* 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 <pme@sourceware.cygnus.com>
* symlink-tree: Check number of arguments.
2000-07-05 Jim Wilson <wilson@cygnus.com>
* 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 <kk@ddeorg.soft.net>
* ltconfig: Add support for mips-dde-sysv4.2MP
2000-06-29 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
* MAINTAINERS: Add myself as loop discovery maintainer.
2000-06-28 Corinna Vinschen <vinschen@cygnus.com>
* 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 <twall@cygnus.com>
* configure.in (noconfigdirs): Set noconfigdirs for tic54x target.
* config.sub: Add tic54x target.
Sun Jun 11 17:20:00 MET 2000 Toon Moene <toon@moene.indiv.nluug.nl>
* MAINTAINERS: Add self as Fortran maintainer,
remove Craig Burley.
Tue May 30 19:01:12 2000 Andrew Cagney <cagney@b1.cygnus.com>
* 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
Mon May 29 21:15:00 MET 2000 Philipp Thomas <pthomas@suse.de>
* MAINTAINERS: Add self as i18n maintainer
20000-05-21 H.J. Lu (hjl@gnu.org)
* 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 (law@cygnus.com)
* configure.in (hppa*64*-*-*): Do build ld for this configuration.
Wed May 17 16:03:48 2000 Alexandre Oliva <aoliva@cygnus.com>
* Makefile.in (configure-target-libiberty): Depend on
configure-target-newlib.
2000-05-16 Alexandre Oliva <aoliva@cygnus.com>
* configure.in, Makefile.in: Merge all libffi-related
configury stuff from the libgcj tree.
Tue May 16 10:06:21 2000 Andrew Cagney <cagney@b1.cygnus.com>
Thu Apr 27 11:01:48 2000 Andrew Cagney <cagney@b1.cygnus.com>:
* Makefile.in (do-tar-bz2, do-md5sum): Skip CVS directories.
Tue May 16 09:57:35 2000 Andrew Cagney <cagney@b1.cygnus.com>
Wed Apr 26 17:03:53 2000 Andrew Cagney <cagney@b1.cygnus.com>:
* 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 <edelsohn@gnu.org>
* configure.in: Special case powerpc*-*-aix* target_makefile_frag.
Mon May 15 13:39:09 2000 Andrew Cagney <cagney@b1.cygnus.com>
* MAINTAINERS: Add self to Write After Approval list.
2000-05-13 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
* 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 (law@cygnus.com)
* config.sub (basic_machine): Recognize hppa64 as a valid cpu type.
Wed May 10 21:26:51 2000 Jim Wilson <wilson@cygnus.com>
* configure.in (ia64*-*-elf*): Add gdb and friends to noconfigdirs.
2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
* djunpack.bat: Change the Sed script to replace @V@ in fnchange.lst
with the version name.
Sat May 6 21:12:55 CDT 2000 Jason Eckhardt <jle@cygnus.com>
* MAINTAINERS: Add self as bb-reorder maintainer.
2000-05-01 Benjamin Kosnik <bkoz@cygnus.com>
* config.if: Tweak.
2000-04-23 Eli Zaretskii <eliz@is.elta.co.il>
* djunpack.bat: New file.
Wed Apr 19 12:46:26 2000 Andrew Cagney <cagney@b1.cygnus.com>
* 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 <dpitts@cozx.com>
* config.sub (case $basic_machine): Change default for "ibm-*"
to "openedition".
2000-04-13 Andreas Jaeger <aj@suse.de>
* MAINTAINERS: Added myself.
Wed Apr 12 16:42:48 2000 Andrew Cagney <cagney@b1.cygnus.com>
* 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 <cagney@b1.cygnus.com>
* configure (warn_cflags): Delete.
Thu Apr 6 16:15:14 2000 Philippe De Muyter <phdm@macqel.be>
* MAINTAINERS: Added myself.
2000-04-05 Benjamin Kosnik <bkoz@cygnus.com>
Martin v. Loewis <martin@loewis.home.cs.tu-berlin.de>
* 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 <meissner@redhat.com>
* config.sub (d30v): Add d30v as a basic machine type.
2000-03-29 Jason Merrill <jason@casey.cygnus.com>
* configure.in: -linux-gnu*, not -linux-gnu.
Sun Mar 12 17:30:30 2000 Toon Moene <toon@moene.indiv.nluug.nl>
* MAINTAINERS: Add self in write-after-approval section.
Sun Mar 12 00:23:32 2000 Jim Wilson <wilson@cygnus.com>
* MAINTAINERS: Add self as ia64 port maintainer.
2000-03-08 Neil Booth <NeilB@earthling.net>
* MAINTAINERS: Add self in write-after-approval section.
Fri Mar 3 18:44:08 2000 Andrew Cagney <cagney@b1.cygnus.com>
* 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 <aj@suse.de>
* configure.in: Add entry for mips*-*-linux*, move catch all
*-*-*linux* entry below this one.
2000-02-27 Ian Lance Taylor <ian@zembu.com>
* ltconfig, ltmain.sh: Update to libtool 1.3.4.
2000-02-24 Nick Clifton <nickc@cygnus.com>
* config.sub: Support an OS of "wince".
Thu Feb 24 16:15:56 2000 Andrew Cagney <cagney@b1.cygnus.com>
* config.guess, config.sub: Updated to match config's 2000-02-15
version.
2000-02-23 Linas Vepstas <linas@linas.org>
* config.sub: Add support for Linux/IBM 370.
* configure.in: Likewise.
2000-02-22 Nick Clifton <nickc@cygnus.com>
* configure.in: Add mips-pe, sh-pe and arm-wince-pe targets.
2000-02-20 Christopher Faylor <cgf@cygnus.com>
* config.guess: Guess "cygwin" rather than "cygwin32".
2000-02-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* configure (gcc_version): When setting, narrow search to
lines containing `version_string'.
2000-02-15 Denis Chertykov <denisc@overta.ru>
* config.sub: Add support for avr target.
2000-02-14 Nick Clifton <nickc@cygnus.com>
* MAINTAINERS: Add maintainers for MCore port.
Tue Feb 1 00:07:46 2000 Hans-Peter Nilsson <hp@bitrange.com>
* config.sub: Add mmix-knuth-mmixware.
2000-01-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* MAINTAINERS: Pair cccp with cpplib maintainership.
2000-01-27 Christopher Faylor <cgf@redhat.com>
* 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 <mark@codesourcery.com>
* Makefile.in (CXX_FOR_TARGET): Use g++, not xgcc, to invoke
the C++ compiler.
2000-01-12 Richard Henderson <rth@cygnus.com>
* configure.in: Don't build some bits for beos.
2000-01-12 Joel Sherrill (joel@OARcorp.com)
* Makefile.in (CC_FOR_TARGET): Use newlib libraries as well
as include files.
2000-01-11 Zack Weinberg <zack@wolery.cumb.org>
* Add self as cpplib maintainer, as requested by Jason
Merrill. Correct my e-mail address.
2000-01-06 Geoff Keating <geoffk@cygnus.com>
* configure.in: Use mt-aix43 to handle *_TARGET defs,
not mh-aix43.
Thu Dec 23 03:43:36 1999 Hans-Peter Nilsson <hp@bitrange.com>
* MAINTAINERS: Add myself to "write after approval" list.
1999-12-14 Richard Henderson <rth@cygnus.com>
* config.guess (alpha-osf, alpha-linux): Detect ev67.
* config.sub: Accept alphaev[78], alphaev8.
1999-12-03 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
* config.guess, config.sub: Update from autoconf.
1999-11-29 Bruce Korb <autogen@linuxbox.com>
* MAINTAINERS: update my playtime e-address.
Tue Nov 23 00:57:41 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* config-ml.in (sparc*-*-*): Disable sparcv9 support if the
necessary libraries are missing.
Fri Nov 19 11:22:31 MST 1999 Diego Novillo <dnovillo@cygnus.com>
* MAINTAINERS: Add new 'write after approval' maintainer.
Wed Nov 17 16:08:43 1999 Alexandre Petit-Bianco <apbianco@cygnus.com>
* MAINTAINERS: Add new Java maintainer.
1999-10-25 Andreas Schwab <schwab@suse.de>
* configure: Fix quoting inside arguments of eval.
1999-10-21 Nick Clifton <nickc@cygnus.com>
* config-ml.in: Allow suppression of some ARM multilibs.
Tue Sep 7 23:33:57 1999 Linas Vepstas <linas@linas.org>
* config.guess: Add OS/390 match pattern.
* config.sub: Add mvs, openedition targets.
* configure.in (i370-ibm-opened*): New.
1999-09-04 Steve Chamberlain <sac@pobox.com>
* config.sub: Add support for configuring for pj.
1999-08-31 Nick Clifton <nickc@cygnus.com>
* config.sub (maybe_os): Add support for configuring for fr30.
1999-08-25 Nick Clifton <nickc@cygnus.com>
* 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 <ro@TechFak.Uni-Bielefeld.DE>
* config-ml.in: Pass compiler flag corresponding to multidirs to
subdir configures.
1999-08-09 Ian Lance Taylor <ian@zembu.com>
* Makefile.in (LDFLAGS): Define.
1999-08-08 Mumit Khan <khan@xraylith.wisc.edu>
* configure.in (i[3456]-*-mingw32*): Don't put gprof in
noconfigdirs.
(*-*-cygwin*): Likewise.
1999-08-08 Ian Lance Taylor <ian@zembu.com>
* mkdep: New file.
* Makefile.in (GAS_SUPPORT_DIRS): Add mkdep.
(BINUTILS_SUPPORT_DIRS): Add mkdep.
From Eli Zaretskii <eliz@is.elta.co.il>:
* 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 (law@cygnus.com)
* config.sub (vxworks case): Use os=-vxworks, not os=vxworks.
1999-07-30 Alan Modra <alan@spri.levels.unisa.edu.au>
* 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 <tromey@cygnus.com>
* 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 <ian@zembu.com>
* 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 <ian@zembu.com>
From Mark Elbrecht:
* configure.bat: Remove; obsolete.
1999-07-11 Ian Lance Taylor <ian@zembu.com>
* configure: Add -W -Wall to the default CFLAGS when compiling with
gcc.
Thu Jul 8 12:32:23 1999 John David Anglin <dave@hiauly1.hia.nrc.ca>
* configure.in: Build ld, binutils & gas for hppa*-*-linux-gnu*.
1999-06-30 Mark Mitchell <mark@codesourcery.com>
* configure.in: Build ld on IRIX6.
1999-06-12 Ian Lance Taylor <ian@zembu.com>
* 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 <nickc@cygnus.com>
* config.sub: Add mcore target.
Sun May 30 16:03:16 1999 Cort Dougan <cort@cs.nmt.edu>
* config.guess (ppc-*-linux-gnu): Also use ld emul elf32ppclinux.
Tue May 25 11:20:46 1999 H.J. Lu (hjl@gnu.org)
* config.guess (dummy): Changed to $dummy.
1999-05-24 Nick Clifton <nickc@cygnus.com>
* config.sub: Tidied up case statements.
1999-05-22 Ben Elliston <bje@cygnus.com>
* config.guess: Handle NEC UX/4800. Contributed by Jiro Takabatake
<jiro@din.or.jp>.
* 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 <moshier@world.std.com>
* Makefile.in (GCC_FOR_TARGET): Add -I$(build_tooldir)/include.
1999-04-30 Tom Tromey <tromey@cygnus.com>
* ltmain.sh: [mode link] Always use CC given by ltconfig.
1999-04-23 Tom Tromey <tromey@cygnus.com>
* ltconfig, ltmain.sh: Update to libtool 1.2f.
1999-04-20 Drew Moseley <dmoseley@cygnus.com>
* 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 (donn@interix.com)
Martin Heller (Ing.-Buero_Heller@t-online.de)
* config.guess (interix Alpha): Add.
1999-04-11 Richard Henderson <rth@cygnus.com>
* configure.in (i?86-*-beos*): Do config gperf; don't config
gdb, newlib, or libgloss.
Sun Apr 11 23:55:34 1999 Alexandre Oliva <oliva@dcc.unicamp.br>
* 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 (kthomas@gwdg.de)
* config.sub: Set basic_machine to i586 when target_alias = k6-*.
1999-04-08 Nick Clifton <nickc@cygnus.com>
* config.sub: Add support for mcore targets.
1999-04-07 Michael Meissner <meissner@cygnus.com>
* 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 <dmoseley@cygnus.com>
* Makefile.in (all-target-cygmon): Added all-target-bsp to the
dependency list for all-target-cygmon.
1999-04-05 Doug Evans <devans@casey.cygnus.com>
* 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 <ian@zembu.com>
* missing: Update to version from current automake.
Fri Apr 2 15:11:32 1999 H.J. Lu (hjl@gnu.org)
* configure (gxx_include_dir): Removed.
* configure.in (gxx_include_dir): Handle it.
* Makefile.in: Likewise.
1999-03-29 Gavin Romig-Koch <gavin@cygnus.com>
* config.sub (mips64vr4111,mips64vr4111el) Add.
1999-03-21 Ben Elliston <bje@cygnus.com>
* config.guess: Correct typo for detecting ELF on FreeBSD.
Thu Mar 18 00:17:50 1999 Mark Elbrecht <snowball3@usa.net>
* 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 <dmoseley@cygnus.com>
* 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 <khan@xraylith.wisc.edu>
* config.sub: Add i386-uwin support.
* config.guess: Likewise.
Thu Mar 11 01:07:55 1999 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
* configure.in: cleanup, add mh-*pic handling for arm, special
case powerpc*-*-aix*
Wed Mar 10 18:35:07 1999 Jeff Johnston <jjohnstn@cygnus.com>
* configure.in (noconfigdirs): Removed target-libgloss so libnosys.a
can be built.
Wed Mar 10 17:39:09 1999 Drew Moseley <dmoseley@cygnus.com>
* configure.in: Added bsp support to arm-*-coff and arm-*-elf
targets.
1999-03-02 Nick Clifton <nickc@cygnus.com>
* config.sub: Rename CYGNUS LOCAL to EGCS LOCAL
Sun Feb 28 02:20:00 1999 Geoffrey Noer <noer@cygnus.com>
* config.sub: Check for "cygwin*" rather than "cygwin32*"
1999-02-24 Nick Clifton <nickc@cygnus.com>
* config.sub: Fix typo in arm recognition.
Wed Feb 24 13:51:40 1999 Drew Moseley <dmoseley@cygnus.com>
* 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 <shebs@andros.cygnus.com>
* configure.in (*-*-windows*): Remove, no longer used.
* config/mh-windows: Ditto.
1999-02-19 Ben Elliston <bje@cygnus.com>
* config.guess: Automatically recognise ELF on FreeBSD. From Niall
Smart and improved by Andrew Cagney.
Thu Feb 18 19:55:09 1999 Marc Espie <espie@cvs.openbsd.org>
* config.guess: Recognize openbsd-*-hppa.
Wed Feb 17 01:38:59 1999 H.J. Lu (hjl@gnu.org)
* Makefile.in (REALLY_SET_LIB_PATH): Append $$$(RPATH_ENVVAR)
only if it is not empty.
1999-02-17 Nick Clifton <nickc@cygnus.com>
Patch from: Scott Bambrough <scottb@corelcomputer.com>
* config.guess: Modified to recognize uname's armv* syntax.
* config.sub: Modified to recognize uname's armv* syntax.
1999-02-17 Mark Salter <msalter@cygnus.com>
* configure.in: Added target-bsp for sparclite.
Mon Feb 8 14:17:24 1999 Richard Henderson <rth@cygnus.com>
* config.sub: Recognize alphapca5[67] and up to alphaev8.
1999-02-08 Nick Clifton <nickc@cygnus.com>
* configure.in: Add support for strongarm port.
* config.sub: Add support for strongarm target.
Sun Feb 7 18:01:54 1999 Mumit Khan <khan@xraylith.wisc.edu>
* configure.in (*-*-cygwin32*): Use config/mh-cygwin instead of
the old name config/mh-cygwin32.
Enable texinfo.
Thu Feb 4 20:43:25 1999 Ian Lance Taylor <ian@cygnus.com>
* configure.in: Do build ld for ix86 Solaris.
Tue Feb 2 19:46:40 1999 Jim Wilson <wilson@cygnus.com>
* Makefile.in (EXTRA_GCC_FLAGS): Set AR to $AR instead of
$AR_FOR_TARGET. Likewise for RANLIB.
Tue Feb 2 20:05:05 1999 Catherine Moore <clm@cygnus.com>
* config.sub (oabi): Recognize.
* configure.in (arm-*-oabi): Handle.
Sat Jan 30 06:09:00 1999 Robert Lipe (robertlipe@usa.net)
* config.guess: Improve detection of i686 on UnixWare 7.
Sat Jan 30 08:04:00 1999 Mumit Khan <khan@xraylith.wisc.edu>
* config.guess: Add support for i386-pc-interix.
* config.sub: Likewise.
* configure.in: Likewise.
* config/mh-interix: New file.
Mon Jan 18 13:59:20 1999 Christopher Faylor <cgf@cygnus.com>
* Makefile.in: Remove unneeded all-target-libio from
from all-target-winsup target since it is now unneeded.
Add all-target-libtermcap in its place since it is now
needed.
Wed Dec 30 20:34:52 1998 Christopher Faylor <cgf@cygnus.com>
* configure.in: makefile stub for cygwin target is probably
unnecessary. Remove it for now.
* config/mt-cygwin: Remove.
Wed Dec 30 01:13:03 1998 Christopher Faylor <cgf@cygnus.com>
* configure.in: libtermcap.a should be built when cygwin is the
target as well as the host.
* config.guess: Allow mixed case in cygwin uname output.
* Makefile.in: Add libtermcap target.
* config/mt-cygwin: New file. libtermcap target info.
Wed Dec 23 00:20:50 1998 Jeffrey A Law (law@cygnus.com)
* config.sub: Clean up handling of hppa2.0.
Tue Dec 22 23:56:31 1998 Rodney Brown (rodneybrown@pmsc.com)
* config.guess: Use C code to identify more HP machines.
Thu Dec 17 01:22:30 1998 Jeffrey A Law (law@cygnus.com)
* config.sub: Handle hppa2.0.
Tue Dec 15 17:02:58 1998 Bob Manson <manson@charmed.cygnus.com>
* configure.in: Add cygmon for x86-coff and x86-elf. Configure
cygmon for all sparclite targets, regardless of object format.
1998-12-15 Mark Salter <msalter@cygnus.com>
* configure.in: Added target-bsp for several target architectures.
* Makefile.in: Added rules for bsp.
Fri Dec 4 01:34:02 1998 Jeffrey A Law (law@cygnus.com)
* config.guess: Improve detection of hppa2.0 processors.
Fri Dec 4 01:33:05 1998 Niall Smart <nialls@euristix.ie>
* config.guess: Recognize FreeBSD using ELF automatically.
1998-11-26 Manfred Hollstein <manfred@s-direktnet.de>
* configure (skip-this-dir): Add handling for new shell script, which
might be created by a sub-directory's configure to indicate, this particular
directory is "unwanted".
* Makefile.in ($(CONFIGURE_TARGET_MODULES)): Likewise.
Wed Nov 18 18:28:45 1998 Geoffrey Noer <noer@cygnus.com>
* ltconfig: import from libtool, after changing libtool to
account for the cygwin name change.
Wed Nov 18 18:09:14 1998 Geoffrey Noer <noer@cygnus.com>
* Makefile.in: CC_FOR_TARGET and CXX_FOR_TARGET should also
include newlib/libc/sys/cygwin and newlib/libc/sys/cygwin32.
Wed Nov 18 20:13:29 1998 Christopher Faylor <cgf@cygnus.com>
* configure.in: Add libtermcap to list of cygwin dependencies.
Tue Nov 17 16:57:51 1998 Geoffrey Noer <noer@cygnus.com>
* Makefile.in: modify CC_FOR_TARGET and CXX_FOR_TARGET so that
they include winsup/include when it's a cygwin target.
1998-11-12 Tom Tromey <tromey@cygnus.com>
* configure.in (host_tools): Added zip.
* Makefile.in (all-target-libjava): Depend on all-zip.
(all-zip): New target.
(ALL_MODULES): Added all-zip.
(NATIVE_CHECK_MODULES): Added check-zip.
(INSTALL_MODULES): Added install-zip.
(CLEAN_MODULES): Added clean-zip.
Thu Nov 12 17:27:21 1998 Geoffrey Noer <noer@cygnus.com>
* Makefile.in: lose "32" from comment about cygwin.
Thu Nov 5 15:00:31 1998 Nick Clifton <nickc@cygnus.com>
* configure.in: Use -Os to build target libraries for the fr30.
Wed Nov 4 18:49:43 1998 Dave Brolley <brolley@cygnus.com>
* config.sub: Add fr30.
Mon Nov 2 15:19:33 1998 Geoffrey Noer <noer@cygnus.com>
* configure.in: drop "32" from config/mh-cygwin32. Check
cygwin* instead of cygwin32*.
* config.sub: Check cygwin* instead of cygwin32*.
Thu Oct 22 10:55:25 1998 Robert Lipe <robertl@dgii.com>
* config.guess: Match any version of Unixware7.
1998-10-20 Syd Polk <spolk@cygnus.com>
* Makefile.in configure.in: Add the ability to use tcl8.1 and tk8.1
if desired.
Sun Oct 18 18:34:50 1998 Jeffrey A Law (law@cygnus.com)
* config.if (cxx_interface, libstdcxx_interface): Do not try to set
these if the appropriate directories and files to not exist.
Wed Oct 14 10:29:06 1998 Jeffrey A Law (law@cygnus.com)
* Makefile.in (DEVO_SUPPORT): Add config.if.
Tue Oct 13 15:45:36 1998 Manfred Hollstein <manfred@s-direktnet.de>
* configure: Add pattern to replace "build_tooldir"'s
definition in the generated Makefile with "tooldir"'s
actual value.
Tue Oct 13 09:17:06 1998 Jeffrey A Law (law@cygnus.com)
* config.sub: Bring back lost sparcv9.
* Makefile.in (all-snvavigator): Remove all-flexlm dependency.
Mon Oct 12 12:09:44 1998 Jeffrey A Law (law@cygnus.com)
* Makefile.in (CHILL_FOR_TARGET): Mirror recent changes to
CC_FOR_TARGET and friends.
Mon Oct 12 12:09:30 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
* Makefile.in (build_tooldir): New variable, same as tooldir.
(CC_FOR_TARGET, GCC_FOR_TARGET, CXX_FOR_TARGET): Add
-B$(build_tooldir)/bin/.
(BASE_FLAGS_TO_PASS): Pass build_tooldir down.
Tue Sep 1 16:23:11 1998 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* README: Remove installation instructions and refer to the
INSTALL directory instead.
Wed Sep 30 22:20:50 1998 Robert Lipe <robertl@dgii.com>
* config.sub: Add support for i[34567]86-pc-udk.
* configure.in: Likewise.
Wed Sep 30 19:23:48 1998 Geoffrey Noer <noer@cygnus.com>
* Makefile.in: add bzip2 package building bits for user
tools module
* configure.in: ditto
Wed Sep 30 03:00:05 1998 Jeffrey A Law (law@cygnus.com)