[compiler-rt] r364486 - [GWP-ASan] D63736 broke ARMv7/v8 sanitizer bots.
Mitch Phillips via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 26 15:24:15 PDT 2019
Author: hctim
Date: Wed Jun 26 15:24:15 2019
New Revision: 364486
URL: http://llvm.org/viewvc/llvm-project?rev=364486&view=rev
Log:
[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.
Modified:
compiler-rt/trunk/cmake/config-ix.cmake
Modified: compiler-rt/trunk/cmake/config-ix.cmake
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/cmake/config-ix.cmake?rev=364486&r1=364485&r2=364486&view=diff
==============================================================================
--- compiler-rt/trunk/cmake/config-ix.cmake (original)
+++ compiler-rt/trunk/cmake/config-ix.cmake Wed Jun 26 15:24:15 2019
@@ -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()
More information about the llvm-commits
mailing list