From ea4cabd41a090ed71de0080ca2213b024f8ef36f Mon Sep 17 00:00:00 2001 From: Stephen Hines Date: Fri, 27 Oct 2017 11:44:15 -0700 Subject: [PATCH] AOSP: Suppress use of ASan on e2fsdroid temporarily. There is a heap buffer overflow that the next toolchain detects on e2fsdroid. In order to expedite deploying that toolchain, which has been validated on all of our other targets, we are going to suppress host sanitization of this executable until we can resolve the actual bug. Bug: http://b/68387795 Test: ASAN_OPTIONS=detect_leaks=0 SANITIZE_HOST=address m -j48 Change-Id: I35126c25a65304e53a18031d99334cc57e21a6a5 From AOSP commit: 4705e518c65bf38d876188f28b65fd4815c716d7 --- contrib/android/Android.bp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/contrib/android/Android.bp b/contrib/android/Android.bp index b4810a4..a78d483 100644 --- a/contrib/android/Android.bp +++ b/contrib/android/Android.bp @@ -32,6 +32,9 @@ cc_binary { "libcrypto", "liblog", ], + sanitize: { + address: false, // http://b/68387795 - heap overflow in e2fsdroid + }, }, android: { shared_libs: [ -- 1.8.3.1