summaryrefslogtreecommitdiff
path: root/sys-devel/gcc-config/ChangeLog
blob: ab40494be0b968e1ce4662e42745dfe15b8d3894 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
# ChangeLog for sys-devel/gcc-config
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/ChangeLog,v 1.228 2014/01/18 03:08:29 vapier Exp $

  18 Jan 2014; Mike Frysinger <vapier@gentoo.org> gcc-config-1.7.3.ebuild,
  gcc-config-1.8.ebuild:
  Add arm64 love.

*gcc-config-1.8 (19 Nov 2012)

  19 Nov 2012; Mike Frysinger <vapier@gentoo.org> +gcc-config-1.8.ebuild:
  Version bump.

  26 Aug 2012; Raúl Porcel <armin76@gentoo.org> gcc-config-1.7.3.ebuild:
  alpha/ia64/m68k/s390/sh/sparc stable wrt #429212

  04 Aug 2012; Jeroen Roovers <jer@gentoo.org> gcc-config-1.7.3.ebuild:
  Stable for HPPA (bug #429212).

  04 Aug 2012; Markos Chandras <hwoarang@gentoo.org> gcc-config-1.7.3.ebuild:
  Stable on amd64 wrt bug #429212

  02 Aug 2012; Anthony G. Basile <blueness@gentoo.org> gcc-config-1.7.3.ebuild:
  Stable arm, bug #429212

  01 Aug 2012; Anthony G. Basile <blueness@gentoo.org> gcc-config-1.7.3.ebuild:
  Stable ppc ppc64, bug #429212

  01 Aug 2012; Jeff Horelick <jdhore@gentoo.org> gcc-config-1.7.3.ebuild:
  marked x86 per bug 429212

  08 Jul 2012; Raúl Porcel <armin76@gentoo.org> gcc-config-1.6.ebuild:
  alpha/ia64/m68k/s390/sh/sparc stable wrt #419399

  14 Jun 2012; Jeroen Roovers <jer@gentoo.org> gcc-config-1.6.ebuild:
  Stable for HPPA (bug #419399).

*gcc-config-1.7.3 (10 Jun 2012)

  10 Jun 2012; Mike Frysinger <vapier@gentoo.org> +gcc-config-1.7.3.ebuild:
  Version bump.

  09 Jun 2012; Markus Meier <maekke@gentoo.org> gcc-config-1.6.ebuild:
  arm stable, bug #419399

  07 Jun 2012; Brent Baude <ranger@gentoo.org> gcc-config-1.6.ebuild:
  Marking gcc-config-1.6 ppc for bug 419399

  05 Jun 2012; Brent Baude <ranger@gentoo.org> gcc-config-1.6.ebuild:
  Marking gcc-config-1.6 ppc64 for bug 419399

  04 Jun 2012; Johannes Huber <johu@gentoo.org> gcc-config-1.6.ebuild:
  Stable for x86, wrt bug #419399

  04 Jun 2012; Agostino Sarubbo <ago@gentoo.org> gcc-config-1.6.ebuild:
  Stable for amd64, wrt bug #419399

*gcc-config-1.7.2 (31 May 2012)

  31 May 2012; Mike Frysinger <vapier@gentoo.org> +gcc-config-1.7.2.ebuild:
  Fix clean up in unlikely error handler.

*gcc-config-1.7.1 (13 May 2012)

  13 May 2012; Mike Frysinger <vapier@gentoo.org> +gcc-config-1.7.1.ebuild:
  Fix installation of cc/f77 helpers #412319 by Yuta SATOH.

  26 Apr 2012; Alexis Ballier <aballier@gentoo.org> gcc-config-1.7.ebuild:
  keyword ~amd64-fbsd

*gcc-config-1.7 (14 Apr 2012)

  14 Apr 2012; Mike Frysinger <vapier@gentoo.org> +gcc-config-1.7.ebuild:
  Version bump.

  23 Mar 2012; Mike Frysinger <vapier@gentoo.org> gcc-config-1.6.ebuild:
  Update HOMEPAGE to git repo.

*gcc-config-1.6 (22 Mar 2012)

  22 Mar 2012; Mike Frysinger <vapier@gentoo.org> +gcc-config-1.6.ebuild:
  Version bump.

  15 Mar 2012; Mike Frysinger <vapier@gentoo.org> gcc-config-1.5-r2.ebuild:
  Mark alpha/arm/ia64/s309/sh/sparc stable #406351.

*gcc-config-1.5.1-r1 (15 Mar 2012)

  15 Mar 2012; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.5.1,
  +gcc-config-1.5.1-r1.ebuild:
  Use CTARGET from the env.d file by default to better work with custom
  GCC_VER.

  06 Mar 2012; Brent Baude <ranger@gentoo.org> gcc-config-1.5-r2.ebuild:
  Marking gcc-config-1.5-r2 ppc for bug 406351

  05 Mar 2012; Jeff Horelick <jdhore@gentoo.org> gcc-config-1.5-r2.ebuild:
  marked x86 per bug 406351

  02 Mar 2012; Brent Baude <ranger@gentoo.org> gcc-config-1.5-r2.ebuild:
  Marking gcc-config-1.5-r2 ppc64 for bug 406351

  02 Mar 2012; Agostino Sarubbo <ago@gentoo.org> gcc-config-1.5-r2.ebuild:
  Stable for amd64, wrt bug #406351

  01 Mar 2012; Jeroen Roovers <jer@gentoo.org> gcc-config-1.5-r2.ebuild:
  Stable for HPPA (bug #406351).

*gcc-config-1.5.1 (29 Feb 2012)

  29 Feb 2012; Mike Frysinger <vapier@gentoo.org> +files/gcc-config-1.5.1,
  +gcc-config-1.5.1.ebuild:
  Always sort runtime ld.so.conf paths and the install libgcc_s libraries based
  on version rather than defaulting to the selected profile #297685 by Scott
  McMurray. Fix gcc-config -E handling of GCC_SPECS #375091 by Bertrand
  Jacquin.

  07 Dec 2011; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.4.1,
  files/gcc-config-1.5:
  Fix multilib support with @GENTOO_LIBDIR@.

*gcc-config-1.5-r2 (11 Nov 2011)

  11 Nov 2011; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.5,
  +gcc-config-1.5-r2.ebuild:
  Add a fallback when tac is unavailable as suggested by Alexis Ballier
  #390179.

  11 Nov 2011; Alexis Ballier <aballier@gentoo.org> gcc-config-1.5-r1.ebuild:
  unkeyword 1.5 on fbsd due to bug #390179

  11 Nov 2011; Ryan Hill <dirtyepic@gentoo.org> gcc-config-1.5-r1.ebuild:
  Keyword 1.5 (needed for gccgo support).

  18 Jun 2011; Mike Frysinger <vapier@gentoo.org> files/wrapper-1.5.2.c:
  Link g77/g95 to gfortran #278772 by Sébastien Fabbro.

*gcc-config-1.4.1-r1 (28 Apr 2011)

  28 Apr 2011; Mark Loeser <halcy0n@gentoo.org> -gcc-config-1.4.1.ebuild,
  +gcc-config-1.4.1-r1.ebuild:
  Version bump to get a change made to the gcc-config bash script

  21 Mar 2011; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.5:
  Default to /etc/portage/make.conf #338032 by Dennis Schridde.

*gcc-config-1.5-r1 (18 Mar 2011)

  18 Mar 2011; Mike Frysinger <vapier@gentoo.org> +gcc-config-1.5-r1.ebuild,
  +files/wrapper-1.5.2.c:
  Stop auto appending CFLAGS_<abi> from the env.

  07 Mar 2011; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.4.1,
  files/gcc-config-1.5:
  Change "source /etc/profile" to ". /etc/profile" for dumb shells #349522 by
  Ulrich Müller.

  06 Feb 2011; Mart Raudsepp <leio@gentoo.org> gcc-config-1.3.16.ebuild,
  gcc-config-1.4.0-r4.ebuild:
  Drop to ~mips

  18 Jan 2011; Ryan Hill <dirtyepic@gentoo.org> files/gcc-config-1.5:
  Add support for gccgo in 4.6. (bug #329551)

  27 Dec 2009; Fabian Groffen <grobian@gentoo.org> files/gcc-config-1.4.1,
  files/gcc-config-1.5:
  Fix typo in gcc-config, tsch -> tcsh, caused -E to use export iso setenv.
  Not bumping as this bug in gcc-config went unnoticed for years.

*gcc-config-1.5 (20 Dec 2009)

  20 Dec 2009; Mike Frysinger <vapier@gentoo.org> +files/gcc-config-1.5,
  +gcc-config-1.5.ebuild:
  Punt dead code (stdxx-incdir and GCC_SPECS checking), unify a bunch of
  common code constructs, improve error displaying in cases that dont
  matter, and add support for /etc/ld.so.conf.d/.

  03 Aug 2009; Mark Loeser <halcy0n@gentoo.org> files/gcc-config-1.4.1:
  Make --use-old work again, thanks to Brian Childs <brian AT rentec DOT
  com>; bug #221109

  20 May 2009; Raúl Porcel <armin76@gentoo.org> gcc-config-1.4.1.ebuild:
  ia64 stable

  15 May 2009; Tobias Klausmann <klausman@gentoo.org>
  gcc-config-1.4.1.ebuild:
  Stable on alpha, bug #269322

  14 May 2009; Markus Meier <maekke@gentoo.org> gcc-config-1.4.1.ebuild:
  amd64/x86 stable, bug #269322

  14 May 2009; Joseph Jezak <josejx@gentoo.org> gcc-config-1.4.1.ebuild:
  Marked ppc/ppc64 stable for bug #269322.

  13 May 2009; Jeroen Roovers <jer@gentoo.org> gcc-config-1.4.1.ebuild:
  Stable for HPPA (bug #269322).

  11 May 2009; Ferris McCormick <fmccor@gentoo.org> gcc-config-1.4.1.ebuild:
  Sparc stable, required for Bug #269322.

  28 Jan 2009; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.4.1,
  gcc-config-1.4.1.ebuild:
  Update libgcj.pc symlinks #136382 #216241 and set GCC_SPECS with -E
  #251271 by Diego E. Pettenò.

  16 Mar 2008; Christian Heim <phreak@gentoo.org> Manifest:
  Fixing the Manifest (emerge is complaining about missing
  $FILESDIR/wrapper-1.5.0.o).

*gcc-config-1.4.1 (16 Mar 2008)

  16 Mar 2008; Mike Frysinger <vapier@gentoo.org> +files/gcc-config-1.4.1,
  +files/wrapper-1.5.1.c, +gcc-config-1.4.1.ebuild:
  Support -C/--nocolor #204176 by Bapt. Cleanup memory/string handling in the
  wrapper #207926 by Evan Teran.

  02 Jan 2008; Jeroen Roovers <jer@gentoo.org> gcc-config-1.4.0-r4.ebuild:
  Stable for HPPA (bug #203576).

  29 Dec 2007; Brent Baude <ranger@gentoo.org> gcc-config-1.4.0-r4.ebuild:
  Marking gcc-config-1.4.0-r4 ppc64 for bug 203576

  29 Dec 2007; Raúl Porcel <armin76@gentoo.org> gcc-config-1.4.0-r4.ebuild:
  alpha/ia64/sparc stable wrt #203576

  28 Dec 2007; Markus Meier <maekke@gentoo.org> gcc-config-1.4.0-r4.ebuild:
  x86 stable, bug #203576

  28 Dec 2007; nixnut <nixnut@gentoo.org> gcc-config-1.4.0-r4.ebuild:
  Stable on ppc wrt bug 203576

  28 Dec 2007; Doug Klima <cardoe@gentoo.org> gcc-config-1.4.0-r4.ebuild:
  amd64 stable wrt bug #203576

  27 Dec 2007; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.4.0:
  Fix fallback CHOST detection when python is broken #203387 by Ambroz BIzjak.

*gcc-config-1.4.0-r4 (11 Oct 2007)

  11 Oct 2007; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.4.0,
  +gcc-config-1.4.0-r4.ebuild:
  Make sure we dont create CTARGET-VER entries in env.d #195054.

*gcc-config-1.4.0-r3 (07 Oct 2007)

  07 Oct 2007; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.4.0,
  +gcc-config-1.4.0-r3.ebuild:
  When querying for a current profile for a different target than the host,
  make sure we query the right target #193353.

*gcc-config-1.4.0-r2 (31 Aug 2007)

  31 Aug 2007; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.4.0,
  files/wrapper-1.5.0.c, +gcc-config-1.4.0-r2.ebuild:
  Rename NATIVE symlink to .NATIVE so it doesnt show up in listings and
  confuse people.

*gcc-config-1.4.0-r1 (26 Aug 2007)

  26 Aug 2007; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.4.0,
  files/wrapper-1.5.0.c, +gcc-config-1.4.0-r1.ebuild:
  Add a quick symlink for the native compiler gcc env.d so that by default,
  path look ups are fast even when working under a reduced PATH #190260 by
  Robert Buchholz.

  24 Jun 2007; Piotr Jaroszyński <peper@gentoo.org>
  gcc-config-1.4.0.ebuild:
  (QA) Don't use KEYWORDS="-*". bug #160519.

  02 Jun 2007; Raúl Porcel <armin76@gentoo.org> gcc-config-1.3.16.ebuild:
  alpha stable wrt #176869

  11 May 2007; Joshua Kinard <kumba@gentoo.org> gcc-config-1.3.16.ebuild:
  Stable on mips, per #176869.

  05 May 2007; nixnut <nixnut@gentoo.org> gcc-config-1.3.16.ebuild:
  Stable on ppc wrt bug 176869

  04 May 2007; Daniel Gryniewicz <dang@gentoo.org> gcc-config-1.3.16.ebuild:
  Marked stable on amd64 for bug #176869

  03 May 2007; Raúl Porcel <armin76@gentoo.org> gcc-config-1.3.16.ebuild:
  x86 stable wrt bug 176882

  03 May 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  gcc-config-1.3.16.ebuild:
  Stable on sparc wrt #176869

  03 May 2007; Markus Rothe <corsair@gentoo.org> gcc-config-1.3.16.ebuild:
  Stable on ppc64; bug #176869

  03 May 2007; Jeroen Roovers <jer@gentoo.org> Manifest:
  Fix manifest.

  03 May 2007; Mike Frysinger <vapier@gentoo.org> +files/gcc-config-1.4.0,
  +files/wrapper-1.5.0.c, +gcc-config-1.4.0.ebuild:
  Move to GCC_PATH #174422 and make sure LDPATH is not re-ordered on us all
  the time #168884.

  03 May 2007; Jeroen Roovers <jer@gentoo.org> gcc-config-1.3.16.ebuild:
  Stable for HPPA (bug #176869).

  02 May 2007; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.16:
  Add a wrapper for gcov #175523.

  22 Apr 2007; Bryan Østergaard <kloeri@gentoo.org>
  gcc-config-1.3.15-r1.ebuild:
  Stable on Alpha, bug 174126.

  18 Apr 2007; Alexander Færøy <eroyf@gentoo.org>
  gcc-config-1.3.15-r1.ebuild:
  Stable on MIPS; bug #174126

  15 Apr 2007; nixnut <nixnut@gentoo.org> gcc-config-1.3.15-r1.ebuild:
  Stable on ppc wrt bug 174126

  11 Apr 2007; Jeroen Roovers <jer@gentoo.org> gcc-config-1.3.15-r1.ebuild:
  Stable for HPPA (bug #174126).

  11 Apr 2007; Markus Rothe <corsair@gentoo.org>
  gcc-config-1.3.15-r1.ebuild:
  Stable on ppc64; bug #174126

  11 Apr 2007; Peter Weller <welp@gentoo.org> gcc-config-1.3.15-r1.ebuild:
  Stable on amd64 wrt bug 174126

  11 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  gcc-config-1.3.15-r1.ebuild:
  Stable on sparc wrt #174126

  11 Apr 2007; Raúl Porcel <armin76@gentoo.org>
  gcc-config-1.3.15-r1.ebuild:
  x86 stable wrt bug 174126

*gcc-config-1.3.16 (11 Apr 2007)

  11 Apr 2007; Mike Frysinger <vapier@gentoo.org> +files/gcc-config-1.3.16,
  +files/wrapper-1.4.8.c, +gcc-config-1.3.16.ebuild:
  Fabian Groffen says: remove alloca() usage #173998.

*gcc-config-1.3.15-r1 (12 Mar 2007)

  12 Mar 2007; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.15,
  +gcc-config-1.3.15-r1.ebuild:
  Add wrappers for gcjh, gfortran, and the D language #157694 by Philipp
  Kirchner.

  27 Jan 2007; Alexander H. Færøy <eroyf@gentoo.org>
  gcc-config-1.3.14.ebuild:
  Stable on MIPS; bug #157571

  31 Dec 2006; Bryan Østergaard <kloeri@gentoo.org>
  gcc-config-1.3.14.ebuild:
  Stable on Alpha, bug 157571.

  11 Dec 2006; Steve Dibb <beandog@gentoo.org> gcc-config-1.3.14.ebuild:
  amd64 stable, bug 157571

  11 Dec 2006; Jeroen Roovers <jer@gentoo.org> gcc-config-1.3.14.ebuild:
  Stable for HPPA (bug #157571).

  11 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  gcc-config-1.3.14.ebuild:
  Stable on sparc wrt #157571

  10 Dec 2006; Andrej Kacian <ticho@gentoo.org> gcc-config-1.3.14.ebuild:
  Stable on x86, bug #157571.

  09 Dec 2006; Markus Rothe <corsair@gentoo.org> gcc-config-1.3.14.ebuild:
  Stable on ppc64; bug #157571

  09 Dec 2006; nixnut <nixnut@gentoo.org> gcc-config-1.3.14.ebuild:
  Stable on ppc wrt bug 157571

*gcc-config-1.3.15 (09 Dec 2006)

  09 Dec 2006; Mike Frysinger <vapier@gentoo.org> +files/gcc-config-1.3.15,
  +gcc-config-1.3.15.ebuild:
  Add support by Kevin F. Quinn for handling multiple files in GCC_SPECS #125805.

  19 Oct 2006; Roy Marples <uberlord@gentoo.org> gcc-config-1.3.14.ebuild:
  Added ~sparc-fbsd keyword.

*gcc-config-1.3.14 (19 Oct 2006)

  19 Oct 2006; Mike Frysinger <vapier@gentoo.org> +files/gcc-config-1.3.14,
  +gcc-config-1.3.14.ebuild:
  Make libgcc updates atomic #150257 by Diego.

*gcc-config-1.3.13-r4 (02 Oct 2006)

  02 Oct 2006; Mike Frysinger <vapier@gentoo.org>
  -gcc-config-1.3.13-r3.ebuild, +gcc-config-1.3.13-r4.ebuild:
  Bump to make sure everyone is using gcc-config-1 wrappers and not eselect.

*gcc-config-1.3.13-r3 (03 Jul 2006)

  03 Jul 2006; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.13,
  +gcc-config-1.3.13-r3.ebuild:
  Push out accumulated fixes.

  16 Jun 2006; Joshua Kinard <kumba@gentoo.org> gcc-config-2.0.0_rc1.ebuild:
  De-keywording for now on mips. Will stay with gcc-config-1.3.x and see how
  2.x and its eselect tool mature.

*gcc-config-2.0.0_rc1 (06 Jun 2006)

  06 Jun 2006; Jeremy Huddleston <eradicator@gentoo.org>
  -gcc-config-2.0.0_beta2.ebuild, +gcc-config-2.0.0_rc1.ebuild:
  Updating gcc-config-2* ebuild to rc1, so users don't need to download a
  different tarball than for eselect-compiler when it gets unmasked. There is
  actually no change in the wrapper other than the version number.

*gcc-config-1.3.13-r2 (25 Apr 2006)

  25 Apr 2006; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.13,
  +gcc-config-1.3.13-r2.ebuild:
  If active profile no longer exists, make sure -c spits out an error message.

  29 Apr 2006; Joshua Kinard <kumba@gentoo.org> gcc-config-1.3.13-r1.ebuild:
  Marked stable on mips.

  03 Apr 2006; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.13:
  Generate a CTARGET-cpp wrapper if need be.

  30 Mar 2006; Diego Pettenò <flameeyes@gentoo.org>
  gcc-config-1.3.13-r1.ebuild:
  Add ~x86-fbsd keyword.

  28 Mar 2006; Jeremy Huddleston <eradicator@gentoo.org>
  gcc-config-2.0.0_beta2.ebuild:
  Added to ~ppc64.

  26 Mar 2006; Bryan Østergaard <kloeri@gentoo.org
  gcc-config-1.3.13-r1.ebuild:
  Stable on alpha, bug 125810.

  19 Mar 2006; Luis Medinas <metalgod@gentoo.org>
  gcc-config-1.3.13-r1.ebuild:
  Stable on amd64. Bug #125810.

  17 Mar 2006; Jeroen Roovers <jer@gentoo.org> gcc-config-1.3.13-r1.ebuild:
  Stable on hppa (bug #125810).

  17 Mar 2006; Chris White <chriswhite@gentoo.org>
  gcc-config-1.3.13-r1.ebuild:
  ppc stable for 1.3.13-r1 per bug #125810.

  16 Mar 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  gcc-config-1.3.13-r1.ebuild:
  Stable on sparc wrt #125810

  14 Mar 2006; Joshua Jackson <tsunam@gentoo.org>
  gcc-config-1.3.13-r1.ebuild:
  Stable on x86; bug #125810

  12 Mar 2006; Markus Rothe <corsair@gentoo.org>
  gcc-config-1.3.13-r1.ebuild:
  Stable on ppc64; bug #125810

*gcc-config-1.3.13-r1 (08 Jan 2006)
*gcc-config-1.3.12-r6 (08 Jan 2006)

  08 Jan 2006; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.12,
  files/gcc-config-1.3.13, -gcc-config-1.3.12-r5.ebuild,
  +gcc-config-1.3.12-r6.ebuild, -gcc-config-1.3.13.ebuild,
  +gcc-config-1.3.13-r1.ebuild:
  Ignore directores in /etc/env.d/gcc #118246 by Mark Purtill.

*gcc-config-1.3.12-r5 (05 Jan 2006)

  05 Jan 2006; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.12,
  files/gcc-config-1.3.13, -gcc-config-1.3.12-r4.ebuild,
  +gcc-config-1.3.12-r5.ebuild:
  Fix changing of profiles when using ROOT and a different CHOST.

*gcc-config-1.3.13 (30 Dec 2005)

  30 Dec 2005; Mike Frysinger <vapier@gentoo.org> +files/gcc-config-1.3.13,
  +gcc-config-1.3.13.ebuild:
  Fix multilib copying of libraries #95622 by Diego Pettenò and restore
  copying of libgcc_s/libunwind when run from inside portage by using the mv
  instead of cp method of updating the libraries.

  27 Dec 2005; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.12,
  gcc-config-1.3.12-r4.ebuild:
  Use get_libdir #114633 by Patrick McLean.

*gcc-config-1.3.12-r4 (19 Nov 2005)

  19 Nov 2005; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.12,
  +gcc-config-1.3.12-r4.ebuild:
  Add support for selecting profiles by version only.

*gcc-config-1.3.12-r3 (01 Nov 2005)

  01 Nov 2005; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.12,
  +gcc-config-1.3.12-r3.ebuild:
  Make sure we set env vars before trying to use them #111022 by Attila Stehr.

*gcc-config-2.0.0_beta2 (02 Oct 2005)

  02 Oct 2005; Jeremy Huddleston <eradicator@gentoo.org>
  -gcc-config-2.0.0_beta1.ebuild, +gcc-config-2.0.0_beta2.ebuild:
  Version bump with more backwards compat support (-B, -L, and -X).

*gcc-config-2.0.0_beta1 (01 Oct 2005)

  01 Oct 2005; Jeremy Huddleston <eradicator@gentoo.org>
  +gcc-config-2.0.0_beta1.ebuild:
  Added gcc-config wrapper for beta version of eselect-compiler. It still
  needs to be cleaned up a bit, but it's functional, so putting it into
  portage (package.mask still of course).

  18 Sep 2005; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.12:
  Add support for spaces in make.conf settings #105855.

  16 Sep 2005; Aron Griffis <agriffis@gentoo.org>
  gcc-config-1.3.12-r2.ebuild:
  Mark 1.3.12-r2 stable on alpha

  13 Sep 2005; <dang@gentoo.org> gcc-config-1.3.12-r2.ebuild:
  Marked stable on amd64

  07 Sep 2005; Aaron Walker <ka0ttic@gentoo.org>
  gcc-config-1.3.12-r2.ebuild:
  Stable on mips.

  03 Sep 2005; Michael Hanselmann <hansmi@gentoo.org>
  gcc-config-1.3.12-r2.ebuild:
  Stable on ppc.

  03 Sep 2005; Markus Rothe <corsair@gentoo.org>
  gcc-config-1.3.12-r2.ebuild:
  Stable on ppc64

  01 Sep 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  gcc-config-1.3.12-r2.ebuild:
  Stable on sparc

  25 Aug 2005; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.12:
  Update list output to show the active version for all targets.

  09 Aug 2005; Jeremy Huddleston <eradicator@gentoo.org>
  -files/gcc-config-1.4.0, -gcc-config-1.4.0.ebuild:
  Killing 1.4.0.  Working on gcc-config-2.0 in gentoo/src/toolchain/gcc-config.

*gcc-config-1.3.12-r2 (05 Aug 2005)

  05 Aug 2005; Martin Schlemmer <azarah@gentoo.org> files/gcc-config-1.3.12,
  +gcc-config-1.3.12-r2.ebuild:
  Fix long option for -S (--split-profile).

*gcc-config-1.3.12-r1 (04 Aug 2005)

  04 Aug 2005; Mike Frysinger <vapier@gentoo.org> +files/wrapper-1.4.7.c,
  +gcc-config-1.3.12-r1.ebuild:
  Clean up the wrapper a bit.

*gcc-config-1.3.12 (09 Jul 2005)

  09 Jul 2005; Mike Frysinger <vapier@gentoo.org> +files/gcc-config-1.3.12,
  +gcc-config-1.3.12.ebuild:
  Add support for parsing profile names so we can use it in toolchain.eclass.

*gcc-config-1.3.11-r4 (07 Jul 2005)

  07 Jul 2005; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.11,
  files/wrapper-1.4.6.c, +gcc-config-1.3.11-r4.ebuild:
  Make sure the f77 wrapper is installed/run properly for g77 #97437 by John
  C. Vernaleo.

  17 Jun 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  gcc-config-1.3.10-r1.ebuild, gcc-config-1.3.10-r2.ebuild,
  gcc-config-1.3.11-r3.ebuild, gcc-config-1.4.0.ebuild:
  Removed portage from deps, as this solves a perl/openssl circular dependency.

*gcc-config-1.3.11-r3 (13 Jun 2005)

  13 Jun 2005; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.11,
  +gcc-config-1.3.11-r3.ebuild:
  Make sure that -c errors out if given an invalid TARGET.

*gcc-config-1.3.11-r2 (07 Jun 2005)

  07 Jun 2005; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.11,
  -gcc-config-1.3.11-r1.ebuild, +gcc-config-1.3.11-r2.ebuild:
  Make sure we support funky version strings (beta823942) and custom specs
  (hardened).

*gcc-config-1.3.11-r1 (07 Jun 2005)

  07 Jun 2005; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.11,
  -gcc-config-1.3.11.ebuild, +gcc-config-1.3.11-r1.ebuild:
  Cleanup the CHOST-GCCVER parsing so it isnt so fragile (and works with BSD
  hosts).

*gcc-config-1.3.11 (06 Jun 2005)

  06 Jun 2005; Mike Frysinger <vapier@gentoo.org> +files/gcc-config-1.3.11,
  +gcc-config-1.3.11.ebuild:
  If python is broken due to libstdc++ changes or whatever, make sure
  gcc-config still works somewhat sanely.

  10 Apr 2005; Joseph Jezak <josejx@gentoo.org> gcc-config-1.3.10-r2.ebuild:
  Marked ppc stable.

  09 Apr 2005; Markus Rothe <corsair@gentoo.org>
  gcc-config-1.3.10-r2.ebuild:
  Stable on ppc64

  01 Apr 2005; Aron Griffis <agriffis@gentoo.org> gcc-config-1.3.10-r2.ebuild:
  stable on ia64

*gcc-config-1.3.10-r2 (31 Mar 2005)

  31 Mar 2005; Jeremy Huddleston <eradicator@gentoo.org>
  +gcc-config-1.3.10-r2.ebuild:
  Don't spit out -m64 warnings.  Closes bug #87130.

  19 Mar 2005; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.8,
  files/gcc-config-1.3.10, files/gcc-config-1.4.0:
  Make sure we copy libunwind in addition to libgcc_s (for ia64 and such).
  Also dont copy internal gcc libs while portage is calling us (causes python
  to segfault and crap).

  17 Mar 2005; Jeremy Huddleston <eradicator@gentoo.org>
  gcc-config-1.3.10-r1.ebuild:
  Stable on sparc so the stable sparc gcc doesn't give the (ignorable) warning
  about the config being broken.

  04 Mar 2005; Jeremy Huddleston <eradicator@gentoo.org>
  files/gcc-config-1.4.0:
  Changing CTARGET_ALIASES to FAKE_TARGETS for consistency with binutils.

  04 Mar 2005; Jeremy Huddleston <eradicator@gentoo.org>
  -files/fake-ctarget.sh, files/gcc-config-1.4.0, gcc-config-1.4.0.ebuild:
  Cleaned up 1.4.0 a bit. Got rid of the stupid fake-ctarget.sh stuff and
  added smarter logic for that into the gcc-config script. Still in
  package.mask as it hits a sandbox bug.

*gcc-config-1.4.0 (19 Feb 2005)

  19 Feb 2005; Jeremy Huddleston <eradicator@gentoo.org>
  +files/fake-ctarget.sh, -files/gcc-config-1.3.9, +files/gcc-config-1.4.0,
  -files/wrapper-1.4.4.c, +files/wrapper-1.4.6.c,
  gcc-config-1.3.10-r1.ebuild, -gcc-config-1.3.9.ebuild,
  +gcc-config-1.4.0.ebuild:
  1.3.10-r1 stable on amd64. Removing 1.3.9. Adding 1.4.0 which adds support
  for creating ctarget aliases based on the GCC_CTARGET_ALIASES variable in
  the /etc/env.d/gcc/ config file. This is setup automatically on multilib
  profiles with recent gcc emerges.

  01 Feb 2005; Jeremy Huddleston <eradicator@gentoo.org>
  gcc-config-1.3.10-r1.ebuild:
  Done testing.  Releasing into ~arch.

*gcc-config-1.3.10-r1 (31 Jan 2005)

  31 Jan 2005; Jeremy Huddleston <eradicator@gentoo.org>
  files/gcc-config-1.3.10, +gcc-config-1.3.10-r1.ebuild,
  -gcc-config-1.3.10.ebuild:
  Make gcc-config support gcc version strings containing '-'.  This allows for
  wider multislot support.

*gcc-config-1.3.10 (30 Jan 2005)

  30 Jan 2005; Jeremy Huddleston <eradicator@gentoo.org>
  +files/gcc-config-1.3.10, +files/wrapper-1.4.5.c,
  +gcc-config-1.3.10.ebuild:
  Multilib fixes. Copies libgcc_s.so* to the correct location for all abis.
  Allows command line args to override ${ABI}. This should resolve bugs #78306
  and #78652.

  23 Jan 2005; Mike Frysinger <vapier@gentoo.org>
  gcc-config-1.3.8-r4.ebuild, gcc-config-1.3.9.ebuild:
  Make sure old gcc-configs dont exist #79062.

  20 Jan 2005; Jeremy Huddleston <eradicator@gentoo.org>
  gcc-config-1.3.9.ebuild:
  Stable on amd64 ahead of everyone else because its multilib goodies are
  required for 2005.0.

*gcc-config-1.3.8-r4 (05 Jan 2005)

  05 Jan 2005; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.8,
  -gcc-config-1.3.8-r3.ebuild, +gcc-config-1.3.8-r4.ebuild:
  Make sure that when we switch compilers, we dont accidently invalidate all
  of our ccache data #70548.

  03 Jan 2005; Ciaran McCreesh <ciaranm@gentoo.org> :
  Change encoding to UTF-8 for GLEP 31 compliance

*gcc-config-1.3.9 (27 Dec 2004)

  27 Dec 2004; Jeremy Huddleston <eradicator@gentoo.org>
  files/gcc-config-1.3.9, +files/wrapper-1.4.4.c, +gcc-config-1.3.9.ebuild:
  Rolling in support for CFLAGS_${ABI}. Rolling g{cc,++}{32,64} support into
  the wrapper.

*gcc-config-1.3.8-r3 (24 Dec 2004)
*gcc-config-1.3.8-r2 (24 Dec 2004)
*gcc-config-1.3.8-r1 (24 Dec 2004)

  24 Dec 2004; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.8,
  +gcc-config-1.3.8-r1.ebuild, -gcc-config-1.3.8.ebuild:
  Seems people still have outdated gcc versions installed which break with
  GCC_SPECS="". Add a warning if their gcc is broken so they know they have to
  re-emerge gcc.

*gcc-config-1.3.8 (23 Dec 2004)

  23 Dec 2004; Mike Frysinger <vapier@gentoo.org>:
  Make sure GCC_SPECS doesn't hang around when switching between profiles. 
  Copy libgcc_s.so to /lib (since some systems link files in /bin against it). 
  Make sure the wrapper can locate cross-compilers via /etc/env.d files when 
  the active environment is empty.

*gcc-config-1.3.7-r6 (08 Dec 2004)

  08 Dec 2004; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.7,
  files/wrapper-1.4.2.c, -gcc-config-1.3.7-r5.ebuild,
  +gcc-config-1.3.7-r6.ebuild:
  Portability patch #73617 by Sunil.

*gcc-config-1.3.7-r5 (05 Dec 2004)

  05 Dec 2004; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.7,
  -gcc-config-1.3.7-r4.ebuild, +gcc-config-1.3.7-r5.ebuild:
  Err, we want to handle GCC_SPECS, not GCC_CONFIG. Also make sure duplicate
  paths arent duplicated in LDPATH now that gcc is exporting multiple spec
  files per ebuild.

*gcc-config-1.3.7-r4 (03 Dec 2004)

  03 Dec 2004; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.7,
  -gcc-config-1.3.7-r3.ebuild, +gcc-config-1.3.7-r4.ebuild:
  Make sure GCC_CONFIG is taken only from the selected profile.

*gcc-config-1.3.7-r3 (02 Dec 2004)

  02 Dec 2004; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.7,
  -gcc-config-1.3.7-r2.ebuild, +gcc-config-1.3.7-r3.ebuild:
  Version bump to add a lot of cross-compile fixes. Also perform sanity
  checking on GCC_SPECS #68799, dont create wrappers in the ebuild #72745, and
  dont install /lib/cpp unless the system supports C++.

*gcc-config-1.3.7-r2 (28 Nov 2004)

  28 Nov 2004; Travis Tilley <lv@gentoo.org> files/gcc-config-1.3.6,
  files/gcc-config-1.3.7, -gcc-config-1.3.6-r3.ebuild,
  +gcc-config-1.3.6-r4.ebuild, -gcc-config-1.3.7-r1.ebuild,
  +gcc-config-1.3.7-r2.ebuild:
  Fixed Bug 72557, where gcc-config would get very confused with non-gcc-lib
  ldpaths

  26 Oct 2004; Martin Schlemmer <azarah@gentoo.org> +files/wrapper-1.4.3.c:
  Add GCCBITS support to wrapper.

*gcc-config-1.3.7-r1 (25 Oct 2004)

  25 Oct 2004; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.7:
  Make sure umask doesn't screw up the install #68699.  Run gcc-config from 
  $S instead of expecting $PATH to contain something functional #68700.  
  Move the 32bit/64bit wrapper logic out of toolchain.eclass and into 
  gcc-config via GCCBITS.

*gcc-config-1.3.7 (13 Oct 2004)

  13 Oct 2004; Mike Frysinger <vapier@gentoo.org> +files/gcc-config-1.3.7,
  +gcc-config-1.3.7.ebuild:
  Better invalid arg handling, list profiles even if you dont have a current
  one, support $ROOT, dont export CC/CXX, create g77 wrappers alongside f77,
  and general touchups.

  10 Oct 2004; Tom Gall <tgall@gentoo.org> gcc-config-1.3.6-r3.ebuild:
  stable on ppc64

*gcc-config-1.3.6-r3 (05 Oct 2004)

  05 Oct 2004; Travis Tilley <lv@gentoo.org> files/gcc-config-1.3.6,
  -gcc-config-1.3.6-r2.ebuild, +gcc-config-1.3.6-r3.ebuild:
  fixed the handling of GCC_SPECS-specific gcc configs

  02 Oct 2004; Bryan Østergaard <kloeri@gentoo.org>
  gcc-config-1.3.6-r2.ebuild:
  Stable on alpha.

*gcc-config-1.3.6-r2 (02 Oct 2004)

  02 Oct 2004; Travis Tilley <lv@gentoo.org> files/gcc-config-1.3.6,
  files/gcc-config-1.4, files/gcc-config-1.4.1, -gcc-config-1.3.6-r1.ebuild,
  +gcc-config-1.3.6-r2.ebuild:
  added the fix for bug 63973

  28 Sep 2004; Sven Wegener <swegener@gentoo.org> files/wrapper-1.4.c,
  files/wrapper.c:
  Gentoo Technologies, Inc. -> Gentoo Foundation

  25 Sep 2004; Joshua Kinard <kumba@gentoo.org> gcc-config-1.3.6-r1.ebuild:
  Marked stable on mips.

  31 Aug 2004; Gustavo Zacarias <gustavoz@gentoo.org>
  gcc-config-1.3.6-r1.ebuild:
  Stable on sparc

  26 Aug 2004; Travis Tilley <lv@gentoo.org> gcc-config-1.3.6-r1.ebuild:
  stable on amd64

  25 Aug 2004; <solar@gentoo.org> gcc-config-1.3.6-r1.ebuild:
  marked gcc-config-1.3.6-r1 stable on x86 and arm

*gcc-config-1.3.6-r1 (24 Jul 2004)

  24 Jul 2004; Martin Schlemmer <azarah@gentoo.org> files/gcc-config-1.3.6,
  +gcc-config-1.3.6-r1.ebuild:
  Some cleanup that remove use of which from ferret <james.noble@worc.ox.ac.uk>,
  bug #55262.

  02 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org>
  gcc-config-1.3.3-r1.ebuild, gcc-config-1.3.3-r2.ebuild,
  gcc-config-1.3.4.ebuild, gcc-config-1.3.5-r1.ebuild,
  gcc-config-1.3.5.ebuild, gcc-config-1.3.6.ebuild:
  virtual/glibc -> virtual/libc

  19 Jun 2004; Martin Schlemmer <azarah@gentoo.org> gcc-config-1.3.5.ebuild:
  Mark stable for all.

*gcc-config-1.3.6 (19 Jun 2004)

  19 Jun 2004; Martin Schlemmer <azarah@gentoo.org> +files/gcc-config-1.3.6,
  +gcc-config-1.3.6.ebuild:
  Make sure we cleanup stale wrappers, bug #36388.

  11 Jun 2004; Bryan Østergaard <kloeri@gentoo.org>
  gcc-config-1.3.5-r1.ebuild:
  Stable on alpha.

  02 Jun 2004; Travis Tilley <lv@gentoo.org> gcc-config-1.3.5-r1.ebuild:
  stable on amd64

  10 May 2004; Michael McCabe <randy@gentoo.org> gcc-config-1.3.5-r1.ebuild:
  Stable on s390

*gcc-config-1.3.5-r1 (06 May 2004)

  06 May 2004; Mike Frysinger <vapier@gentoo.org> files/gcc-config-1.3.5,
  files/gcc-config-1.3.5-multi-ldpath, gcc-config-1.3.5.ebuild,
  +gcc-config-1.3.5-r1.ebuild:
  Clean up the help output, add support for -v|--version and -h|--help options,
  and then add the version to the gcc-config after installing.
  Unify the multi-ldpath crap since there are no real differences between
  the two to fix #29950 by Brad House.
  Add environment printing fix #48492 by splite.

*gcc-config-1.3.5 (08 Feb 2004)

  08 Feb 2004; Martin Schlemmer <azarah@gentoo.org> gcc-config-1.3.5.ebuild,
  files/gcc-config-1.3.5, files/wrapper-1.4.2.c:
  Update wrapper to also treat symlinks as valid targets - this fixes a problem
  where $CHOST-gcc called the symlink, and not the proper binary. Also fix a few
  issues where we used data->tmp as they can cause possible corruption when used
  in recursive calls and child functions.  Closes bug #39162.

*gcc-config-1.3.4 (18 Nov 2003)

  18 Nov 2003; Martin Schlemmer <azarah@gentoo.org> gcc-config-1.3.4.ebuild,
  files/gcc-config-1.3.4, files/gcc-config-1.3.4-multi-ldpath:
  I did not use REAL_CHOST in all cases, ending up with /usr/bin/-gcc, etc
  files, as CHOST was not set.

*gcc-config-1.3.3-r2 (18 Oct 2003)

  18 Oct 2003; Brad House <brad_mssw@gentoo.org> gcc-config-1.3.3-r2.ebuild,
  files/gcc-config-1.3.3-multi-ldpath:
  necessary gcc-config changes made for amd64 and 3.3.1-r5. Marked -* ~amd64

  11 May 2003; Martin Schlemmer <azarah@gentoo.org> gcc-config-1.3.3-r1 :
  Mark stable for all, as if fixes a few bugs.

*gcc-config-1.3.3-r1 (28 Apr 2003)

  28 Apr 2003; Martin Schlemmer <azarah@gentoo.org> gcc-config-1.3.3-r1,
  gcc-config-1.3.3 :
  Update gcc-config-1.3.3 to use the absolute path to portageq, else it
  breaks things.  Thanks to Spider <spider@gentoo.org> for noticing this.

  12 Apr 2003; Martin Schlemmer <azarah@gentoo.org> files/wrapper-1.4.1.c :
  Update wrapper as I suggested in bug #18933 to be able to handle cross
  compiler frontends ...

*gcc-config-1.3.3 (12 Apr 2003)

  12 Apr 2003; Martin Schlemmer <azarah@gentoo.org> gcc-config-1.3.3.ebuild,
  files/gcc-config-1.3.3, files/wrapper-1.4.1.c :
  New version:
  - Update the wrapper to scan /etc/env.d/05gcc for PATH, and then append this
    to caller name if successful.  This should improve speed much if PATH is
    not setup properly, as we do not have to run gcc-config ...  This is a
    much better solution for bug #18766.
  - Add short options to gcc-config, closing bug #13005.
  - Add the ability to choose the profile by a number, as listed by running
    'gcc-config --list-profiles', closing bug #13005.

*gcc-config-1.3.2 (08 Apr 2003)

  08 Apr 2003; Martin Schlemmer <azarah@gentoo.org> gcc-config-1.3.2.ebuild,
  files/gcc-config-1.3.2, files/gcc-config-1.4.1 :
  Add speed optimization patch from Aron Griffis <agriffis@gentoo.org>. 
  Basically we only get the CHOST from portage if needed ... closes bug #18766.
  Use wrapper-1.4.c ...

*gcc-config-1.3.1-r1 (06 Apr 2003)

  06 Apr 2003; Zach Welch <zwelch@gentoo.org> gcc-config-1.3.1-r1.ebuild,
  gcc-config-1.3.1.ebuild, files/gcc-config-1.3.1, files/gcc-config-1.4.1 :
  change return to exit in gcc-config script, and minor fix for distcc
   and cross-compiling compatibility.
  Note: The latest gcc-config-1.4 is almost ready for production, but
   these changes are still too experimental to commit an ebuild.  Even
   so, I am also updating the gcc-config script to reflect the latest
   status.  Still no ebuild for now.

  23 Feb 2003; Martin Schlemmer <azarah@gentoo.org> gcc-config-1.4,
                                                    wrapper-1.4.c :
  - Add gcc-config-1.4 with '--install-toolchain' support written by
    Zach Welch <zwelch@gentoo.org>.  I am not 100% sure on the status
    on this, so not adding a ebuild for now.
  - Add wrapper-1.4.c that is borken up in functions.  This is also
    thanks to Zach Welch <zwelch@gentoo.org>.  I also tweaked it to
    modify PATH by appending gcc's bin path to it ... this should
    speed up calls gcc does to its tools.  I also fixed a few possible
    memory leaks.

  19 Feb 2003; Guy Martin <gmsoft@gneoot.org> gcc-config-1.3.1.ebuild :
  Changed ~hppa to hppa.

*gcc-config-1.3.1 (19 Jan 2003)

  28 Mar 2003; Christian Birchinger <joker@gentoo.org>
  gcc-config-1.3.1.ebuild:
  Added stable sparc keyword

  24 Feb 2003; Nicholas Wourms <dragon@gentoo.org> gcc-config-1.3.1.ebuild :
  Changed mips keyword to stable.

  21 Feb 2003; Aron Griffis <agriffis@gentoo.org> gcc-config-1.3.1.ebuild :
  Mark stable on alpha

  18 Feb 2003;  Zach Welch <zwelch@gentoo.org> gcc-config-1.3.1.ebuild :
  Add stable for arm
  
  18 Feb 2003;  Seemant <seemant@gentoo.org> gcc-config-1.3.1.ebuild :
  moved to stable for x86

  19 Feb 2003; Martin Schlemmer <azarah@gentoo.org> gcc-config-1.3.1 :

  Some tweaks to try minimize subshells.

  09 Feb 2003; Guy Martin <gmsoft@gentoo.org> gcc-config-1.2.7.ebuild :
  
  Added hppa keyword to gcc-config-1.2.7.ebuild and ~hppa keyword on
  latests versions up to gcc-config-1.3.1.ebuild.

  14 Feb 2003; Mark Guertin <gerk@gentoo.org> gcc-config-1.3.1.ebuild :
  added ppc to keywords

  19 Jan 2003; Martin Schlemmer <azarah@gentoo.org> gcc-config-1.3.1.ebuild :

  Use the 'which' command to find commands if present to give a bit of a
  speedup.  Display a warning about sourcing /etc/profile if you change the
  default profile to stop confusion.

  Fix a segfault in wrapper.c if $PATH is not set.  Many thanks to
  Eric Andresen <ndiin1@cox.net> for reporting this.

  19 Jan 2003; Martin Schlemmer <azarah@gentoo.org> wrapper.c :

  Fix to check if '/gcc-bin/' in full name of called gcc, once again thanks
  to feedback from Eric Andresen <ndiin1@cox.net>.

*gcc-config-1.3.0 (16 Jan 2003)

  16 Jan 2003; Martin Schlemmer <azarah@gentoo.org> gcc-config-1.3.0.ebuild :

  Set argv[0] to the correct binary, else gcc do not find internal
  headers, etc (bug #8132).  Fixed files/wrapper.c for this.

*gcc-config-1.2.9 (15 Jan 2003)

  15 Jan 2003; Martin Schlemmer <azarah@gentoo.org> gcc-config-1.2.9.ebuild :

  Fix wrapper calling cc-config.

*gcc-config-1.2.8 (15 Jan 2003)

  15 Jan 2003; Martin Schlemmer <azarah@gentoo.org> gcc-config-1.2.8.ebuild :

  Add C wrapper to call the real binaries.

  02 Jan 2003; Martin Schlemmer <azarah@gentoo.org> gcc-config-1.2.7.ebuild :

  Update usage screen to be more compact.  Also should be more consistant
  with other unix tools.  Bug #13005.

*gcc-config-1.2.7 (25 Dec 2002)

  06 Jan 2003; Jan Seidel <tuxus@gentoo.org> gcc-config-1.2.7.ebuild :
  Added mips to keywords.

  25 Dec 2002; Martin Schlemmer <azarah@gentoo.org> gcc-config-1.2.7.ebuild :

  Add colorgcc support, partly a fix for bug #12689.

*gcc-config-1.2.6 (23 Dec 2002)

  24 Dec 2002; Martin Schlemmer <azarah@gentoo.org> gcc-config-1.2.6.ebuild :

  In some cases we have an old /usr/bin/cpp binary that was not unmerged from
  non multi arch/version scheme gcc's.  If so, backup it, and replace with a
  wrapper script.

*gcc-config-1.2.5 (23 Dec 2002)

  23 Dec 2002; Martin Schlemmer <azarah@gentoo.org> gcc-config-1.2.5.ebuild :

  Add --print-environ switch.  Add /usr/bin/cpp wrapper.  Fix the wrapper
  to setup PATH if it cannot find cpp, or if 'which cpp' give /usr/bin/cpp.

  17 Dec 2002; Martin Schlemmer <azarah@gentoo.org> gcc-config-1.2.4 :

  Do not add a LDPATH if the directory do not exist.

*gcc-config-1.2.4 (16 Dec 2002)

  16 Dec 2002; Martin Schlemmer <azarah@gentoo.org> :

  More fixes for wrappers.

*gcc-config-1.2.3 (16 Dec 2002)

  16 Dec 2002; Martin Schlemmer <azarah@gentoo.org> :

  Regenerate /lib/cpp and /usr/bin/cc if they do not exist, or
  are symlinks ..  Run gcc-config in pkg_postinst().

*gcc-config-1.2.2 (16 Dec 2002)

  16 Dec 2002; Martin Schlemmer <azarah@gentoo.org> :

  Update to handle wrappers used for /lib/cpp and /usr/bin/cc in
  new gcc ebuilds.

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 
*gcc-config-1.2.1 (27 Nov 2002)

  27 Nov 2002; Martin Schlemmer <azarah@gentoo.org> :

  Update to only biatch about not being root if the user
  tries to change the system profile, thanks rphillips!

*gcc-config-1.2 (10 Nov 2002)

  10 Nov 2002; Martin Schlemmer <azarah@gentoo.org> :

  Include all LDPATH's for this CHOST in /etc/ld.so.conf.
  Add --use-portage-chost option so that it will only change
  gcc profile if CHOST is same as that of make.conf.

*gcc-config-1.1 (10 Nov 2002)

  10 Nov 2002; Martin Schlemmer <azarah@gentoo.org> :

  New version with lots of options, and help.

*gcc-config-1.0 (28 Oct 2002)

  28 Oct 2002; Martin Schlemmer <azarah@gentoo.org> :

  Initial version.