This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH] fix gcc/Makefile.in dependencies
- From: Ralf Wildenhues <Ralf dot Wildenhues at gmx dot de>
- To: gcc-patches at gcc dot gnu dot org
- Date: Mon, 7 Jul 2008 21:16:52 +0200
- Subject: Re: [PATCH] fix gcc/Makefile.in dependencies
- References: <20080706093415.GA29777@ins.uni-bonn.de>
* Ralf Wildenhues wrote on Sun, Jul 06, 2008 at 11:34:20AM CEST:
> gcc/ChangeLog:
> 2008-07-06 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
[...]
> * config.gcc (tm_file): Add vxworks-dummy.h if i386.h is used.
> --- a/gcc/config.gcc
> +++ b/gcc/config.gcc
> @@ -373,6 +373,12 @@ x86_64-*-*)
> ;;
> esac
>
> +case " $tm_file " in
> +*\ i386/i386.h\ *)
> + tm_file="${tm_file} vxworks-dummy.h"
> + ;;
> +esac
> +
> # On a.out targets, we need to use collect2.
> case ${target} in
> *-*-*aout*)
Hmm. This change causes tm.h to include config/vxworks-dummy.h.
Maybe I haven't understood this tm_file business correctly yet.
Anyway, the proposed patch wouldn't lose much of its value with
the hunk above dropped, I guess.
Cheers,
Ralf