[compiler-rt] r300044 - [LSAN] Disable on ARM/Thumb for good

Renato Golin via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 12 03:12:49 PDT 2017


Author: rengolin
Date: Wed Apr 12 05:12:49 2017
New Revision: 300044

URL: http://llvm.org/viewvc/llvm-project?rev=300044&view=rev
Log:
[LSAN] Disable on ARM/Thumb for good

I didn't pay enough attention to the patch I reverted, now I'm going to
hit it with a bigger hammer until we can understand what the problems
are.

Modified:
    compiler-rt/trunk/test/lsan/lit.common.cfg

Modified: compiler-rt/trunk/test/lsan/lit.common.cfg
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/lsan/lit.common.cfg?rev=300044&r1=300043&r2=300044&view=diff
==============================================================================
--- compiler-rt/trunk/test/lsan/lit.common.cfg (original)
+++ compiler-rt/trunk/test/lsan/lit.common.cfg Wed Apr 12 05:12:49 2017
@@ -53,7 +53,8 @@ config.substitutions.append( ("%clang_ls
 config.substitutions.append( ("%clangxx_lsan ", build_invocation(clang_lsan_cxxflags)) )
 
 # LeakSanitizer tests are currently supported on x86-64 Linux, arm Linux and mips64 Linux only.
-if config.host_os not in ['Linux'] or config.host_arch not in ['x86_64', 'mips64', 'arm', 'armhf', armv7l]:
+# LSAN breaks on Thumb, so disabling from all ARM targets until we sort this out. PR32636.
+if config.host_os not in ['Linux'] or config.host_arch not in ['x86_64', 'mips64']:
   config.unsupported = True
 
 # Don't support Thumb due to broken fast unwinder




More information about the llvm-commits mailing list