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 COMMITTED: Fix -fsplit-stack build with old binutils


On Fri, Oct 01, 2010 at 04:32:51AM -0700, H.J. Lu wrote:
> > 2010-09-27 ?Ian Lance Taylor ?<iant@google.com>
> >
> > ? ? ? ?* configure.ac: Test whether assembler supports CFI directives.
> > ? ? ? ?* config.host: Only add t-stack and i386/t-stack-i386 to
> > ? ? ? ?tmake_file if libgcc_cv_cfi is "yes".
> > ? ? ? ?* configure: Rebuild.
> >
> 
> I checked in this patch to add the missing `$'.
>
> Index: config.host
> ===================================================================
> --- config.host	(revision 164874)
> +++ config.host	(working copy)
> @@ -610,7 +610,7 @@ i[34567]86-*-linux* | x86_64-*-linux* |
>    i[34567]86-*-gnu*)
>  	tmake_file="${tmake_file} t-tls"
>  	if test "$libgcc_cv_cfi" = "yes"; then
> -		tmake_file="{$tmake_file} t-stack i386/t-stack-i386"
> +		tmake_file="${$tmake_file} t-stack i386/t-stack-i386"
>  	fi
>  	;;
>  esac

That looks *really* odd.  Are you sure that's not supposed to be:

> -		tmake_file="{$tmake_file} t-stack i386/t-stack-i386"
> +		tmake_file="${tmake_file} t-stack i386/t-stack-i386"

That makes more sense.

-Nathan


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