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]

[PATCH, libsanitizer] Disable for PowerPC little endian for now


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.


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*)



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