diff options
author | Marc Espie <espie@cvs.openbsd.org> | 1999-06-17 20:56:07 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 1999-06-17 20:56:07 +0000 |
commit | 61236aa3b1500c6cc1eba7c928d9dbacad21c3c4 (patch) | |
tree | 958e9e1f8f36bc4c6fa171b759222321e0373e44 | |
parent | cf9a49c7d2fa54de127763243611572e38a100d1 (diff) |
Update to 990608 snapshot.
Highlights:
- official fix for an alpha bug,
- cpp changes semantic slightly,
- valarray in libstdc++.
-rw-r--r-- | gnu/egcs/ChangeLog | 8 | ||||
-rw-r--r-- | gnu/egcs/MAINTAINERS | 2 | ||||
-rw-r--r-- | gnu/egcs/Makefile.in | 2 |
3 files changed, 11 insertions, 1 deletions
diff --git a/gnu/egcs/ChangeLog b/gnu/egcs/ChangeLog index 062c421567f..923c715195c 100644 --- a/gnu/egcs/ChangeLog +++ b/gnu/egcs/ChangeLog @@ -1,3 +1,11 @@ +Sun May 30 16:03:16 1999 Cort Dougan <cort@cs.nmt.edu> + + * config.guess (ppc-*-linux-gnu): Also use ld emul elf32ppclinux. + +Thu May 20 10:00:42 1999 Stephen L Moshier <moshier@world.std.com> + + * Makefile.in (GCC_FOR_TARGET): Add -I$(build_tooldir)/include. + Tue Apr 13 22:50:54 1999 Donn Terry (donn@interix.com) Martin Heller (Ing.-Buero_Heller@t-online.de) diff --git a/gnu/egcs/MAINTAINERS b/gnu/egcs/MAINTAINERS index bc164d65f45..4ab0dd9dece 100644 --- a/gnu/egcs/MAINTAINERS +++ b/gnu/egcs/MAINTAINERS @@ -55,6 +55,7 @@ caller-save.c Jeff Law law@cygnus.com debugging code Jim Wilson wilson@cygnus.com dwarf debugging code Jason Merrill jason@cygnus.com c++ runtime libs Ulrich Drepper drepper@cygnus.com +C++ runtime libs Gabriel Dos Reis dosreis@cmla.ens-cachan.fr *synthetic multiply Torbjorn Granlund tege@swox.com *c-torture Torbjorn Granlund tege@swox.com *f-torture Kate Hedstrom kate@ahab.rutgers.edu @@ -99,6 +100,7 @@ Andrew Haley aph@cygnus.com Alexandre Petit-Bianco apbianco@cygnus.com Anthony Green green@cygnus.com Stu Grossman grossman@cygnus.com +Gabriel Dos Reis dosreis@cmla.ens-cachan.fr * Indicates folks we need to get Kerberos/ssh accounts ready so they diff --git a/gnu/egcs/Makefile.in b/gnu/egcs/Makefile.in index 795a7da3fd3..65676eabc37 100644 --- a/gnu/egcs/Makefile.in +++ b/gnu/egcs/Makefile.in @@ -233,7 +233,7 @@ CC_FOR_TARGET = ` \ # variable is passed down to the gcc Makefile, where it is used to # build libgcc2.a. We define it here so that it can itself be # overridden on the command line. -GCC_FOR_TARGET = $$r/gcc/xgcc -B$$r/gcc/ -B$(build_tooldir)/bin/ +GCC_FOR_TARGET = $$r/gcc/xgcc -B$$r/gcc/ -B$(build_tooldir)/bin/ -I$(build_tooldir)/include CHILL_FOR_TARGET = ` \ if [ -f $$r/gcc/xgcc ] ; then \ |