aboutsummaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorMitch Phillips <mitchphillips@outlook.com>2019-06-26 22:24:15 +0000
committerMitch Phillips <mitchphillips@outlook.com>2019-06-26 22:24:15 +0000
commitef8153e843414a8b82e662c0795616f3034f9aad (patch)
tree276433535f709f001960a5b34ab296ac47cc3b5c /cmake
parentaf22943ae6c32c530e26902fde27a668837e2909 (diff)
[GWP-ASan] D63736 broke ARMv7/v8 sanitizer bots.
Remove ARM32/ARM64 support for GWP-ASan due to a strange SEGV when running scudo's preinit.c test. Disabling to make the bots go green while investigating. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@364486 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake')
-rw-r--r--cmake/config-ix.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/config-ix.cmake b/cmake/config-ix.cmake
index 166b8ce08..b2ff9184e 100644
--- a/cmake/config-ix.cmake
+++ b/cmake/config-ix.cmake
@@ -247,7 +247,7 @@ else()
set(ALL_FUZZER_SUPPORTED_ARCH ${X86_64} ${ARM64})
endif()
-set(ALL_GWP_ASAN_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM64} ${ARM32})
+set(ALL_GWP_ASAN_SUPPORTED_ARCH ${X86} ${X86_64})
if(APPLE)
set(ALL_LSAN_SUPPORTED_ARCH ${X86} ${X86_64} ${MIPS64} ${ARM64})
else()