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, libsanitizer] Disable for PowerPC little endian for now


On Mon, Mar 03, 2014 at 01:21:47PM -0600, Bill Schmidt wrote:
> Currently most or all of the libsanitizer tests fail for
> powerpc64le-linux-gnu, and we won't be able to address this in GCC 4.9.
> (We do plan to look at this in the next release.)  Richard Biener
> suggested we mark it as unsupported, as this patch implements.  
> 
> Bootstrapped and tested on powerpc64le-unknown-linux-gnu, verifying that
> libsanitizer is not built.  Also bootstrapped and tested on
> powerpc64-unknown-linux-gnu, verifying that libsanitizer is built
> normally.  Is this ok for trunk?

> 2014-03-03  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
> 
> 	* configure.tgt: Unsupported for little endian PowerPC for now.

This is ok.

> --- libsanitizer/configure.tgt	(revision 208265)
> +++ libsanitizer/configure.tgt	(working copy)
> @@ -26,6 +26,9 @@ case "${target}" in
>  		LSAN_SUPPORTED=yes
>  	fi
>  	;;
> +  powerpc*le-*-linux*)
> +	UNSUPPORTED=1
> +	;;
>    powerpc*-*-linux*)
>  	;;
>    sparc*-*-linux*)
> 

	Jakub


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