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 <wschm...@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*)