From 0ec71ab2317ee97bdd7fadbc86c69155a06fe69a Mon Sep 17 00:00:00 2001 From: Florian Mayer Date: Mon, 26 Feb 2024 16:44:20 -0800 Subject: [PATCH 1/2] Update README about HWASan --- sanitizers/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sanitizers/README.md b/sanitizers/README.md index e81abed17..d2224d339 100644 --- a/sanitizers/README.md +++ b/sanitizers/README.md @@ -24,8 +24,8 @@ what we need from the NDK and make it available to the build. The recommended way to detect memory errors such as use-after-free in native code is with hwasan. It uses special hardware features on 64-bit ARM devices, -and requires a special build of Android. It is preferable to asan (below) -because it has much less RAM overhead. +It is preferable to asan (below) because it has much less RAM overhead, and is +actively supported. For more information, including how to flash a build of Android that supports hwasan, refer to the Android developer From 0908cbc0d82a9bd7f5094f8db402b007ad0784ce Mon Sep 17 00:00:00 2001 From: Florian Mayer Date: Tue, 27 Feb 2024 11:07:34 -0800 Subject: [PATCH 2/2] fix format --- sanitizers/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sanitizers/README.md b/sanitizers/README.md index d2224d339..c55dc583e 100644 --- a/sanitizers/README.md +++ b/sanitizers/README.md @@ -23,8 +23,8 @@ what we need from the NDK and make it available to the build. ## Hardware-assisted Address Sanitizer (hwasan) The recommended way to detect memory errors such as use-after-free in native -code is with hwasan. It uses special hardware features on 64-bit ARM devices, -It is preferable to asan (below) because it has much less RAM overhead, and is +code is with hwasan. It uses special hardware features on 64-bit ARM devices. It +is preferable to asan (below) because it has much less RAM overhead, and is actively supported. For more information, including how to flash a build of Android that supports