This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH, libsanitizer] Disable for PowerPC little endian for now
- From: Jakub Jelinek <jakub at redhat dot com>
- To: Bill Schmidt <wschmidt at linux dot vnet dot ibm dot com>
- Cc: gcc-patches at gcc dot gnu dot org
- Date: Mon, 3 Mar 2014 20:26:31 +0100
- Subject: Re: [PATCH, libsanitizer] Disable for PowerPC little endian for now
- Authentication-results: sourceware.org; auth=none
- References: <1393874507 dot 3554 dot 157 dot camel at gnopaine>
- Reply-to: Jakub Jelinek <jakub at redhat dot com>
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