diff mbox

[libsanitizer] Disable for PowerPC little endian for now

Message ID 1393874507.3554.157.camel@gnopaine
State New
Headers show

Commit Message

Bill Schmidt March 3, 2014, 7:21 p.m. UTC
Hi,

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?

Thanks,
Bill


2014-03-03  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>

	* configure.tgt: Unsupported for little endian PowerPC for now.

Comments

Jakub Jelinek March 3, 2014, 7:26 p.m. UTC | #1
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
diff mbox

Patch

Index: libsanitizer/configure.tgt
===================================================================
--- 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*)