diff options
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/i386/x-beos | 3 | ||||
-rwxr-xr-x | gcc/fixinc/mkfixinc.sh | 1 |
3 files changed, 10 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7f461b5..247d0e8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2000-11-15 Fred Fish <fnf@be.com> + + * fixinc/mkfixinc.sh (fixincludes): Add *-*-beos* to list of + machines for which fixincludes is not needed. + * config/i386/x-beos (STMP_FIXPROTO): Don't run fixproto. + 2000-11-15 Jason Merrill <jason@redhat.com> * diagnostic.c (finish_abort): New fn. diff --git a/gcc/config/i386/x-beos b/gcc/config/i386/x-beos index 37b8cca..426d0c0 100644 --- a/gcc/config/i386/x-beos +++ b/gcc/config/i386/x-beos @@ -7,3 +7,6 @@ ALLOCA=alloca.o USE_ALLOCA= `echo "${ALLOCA}"` USE_HOST_ALLOCA= `echo ${HOST_PREFIX}${HOST_ALLOCA}` SUBDIR_USE_ALLOCA = `if [ x$(ALLOCA) != x ]; then echo ../$(ALLOCA); else true; fi` + +# Don't run fixproto +STMP_FIXPROTO = diff --git a/gcc/fixinc/mkfixinc.sh b/gcc/fixinc/mkfixinc.sh index 043ff2e..54790a7 100755 --- a/gcc/fixinc/mkfixinc.sh +++ b/gcc/fixinc/mkfixinc.sh @@ -56,6 +56,7 @@ case $machine in hppa1.1-*-bsd* | \ hppa1.0-*-bsd* | \ hppa*-*-lites* | \ + *-*-beos* | \ *-*-linux* | \ *-*-gnu* | \ i?86-moss-msdos* | i?86-*-moss* | \ |