This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] fix gcc/Makefile.in dependencies


* 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]