summaryrefslogtreecommitdiffstats
path: root/compiler-rt/cmake
diff options
context:
space:
mode:
authorMitch Phillips <mitchphillips@outlook.com>2019-06-17 22:35:32 +0000
committerMitch Phillips <mitchphillips@outlook.com>2019-06-17 22:35:32 +0000
commit8fbb88fbff5e0fef1418650f2d3f716598344d97 (patch)
treee6d4d497522b56326d31c07bb496cb18f1cc4a33 /compiler-rt/cmake
parentca42687d62a81fb09fe0187e5f2788077eb6a841 (diff)
downloadbcm5719-llvm-8fbb88fbff5e0fef1418650f2d3f716598344d97.tar.gz
bcm5719-llvm-8fbb88fbff5e0fef1418650f2d3f716598344d97.zip
[GWP-ASan] Disable GWP-ASan on Android for now.
Summary: Temporarily disable GWP-ASan for android until the bugs at: http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux-android/builds/87 ... can be fixed. See comments for the full bug trace. Reviewers: eugenis Reviewed By: eugenis Subscribers: srhines, kubamracek, mgorny, cryptoad, jfb, #sanitizers, llvm-commits Tags: #sanitizers, #llvm Differential Revision: https://reviews.llvm.org/D63460 llvm-svn: 363624
Diffstat (limited to 'compiler-rt/cmake')
-rw-r--r--compiler-rt/cmake/config-ix.cmake4
1 files changed, 3 insertions, 1 deletions
diff --git a/compiler-rt/cmake/config-ix.cmake b/compiler-rt/cmake/config-ix.cmake
index 49a22a92227..ce77cdc8d54 100644
--- a/compiler-rt/cmake/config-ix.cmake
+++ b/compiler-rt/cmake/config-ix.cmake
@@ -687,8 +687,10 @@ endif()
# Note: Fuchsia and Windows are not currently supported by GWP-ASan. Support
# is planned for these platforms. Darwin is also not supported due to TLS
# calling malloc on first use.
+# TODO(hctim): Enable this on Android again. Looks like it's causing a SIGSEGV
+# for Scudo and GWP-ASan, further testing needed.
if (COMPILER_RT_HAS_SANITIZER_COMMON AND GWP_ASAN_SUPPORTED_ARCH AND
- OS_NAME MATCHES "Android|Linux")
+ OS_NAME MATCHES "Linux")
set(COMPILER_RT_HAS_GWP_ASAN TRUE)
else()
set(COMPILER_RT_HAS_GWP_ASAN FALSE)
OpenPOWER on IntegriCloud