summaryrefslogtreecommitdiff
path: root/lib/asan/README.txt
diff options
context:
space:
mode:
authorAlexey Samsonov <vonosmas@gmail.com>2015-02-17 21:53:45 +0000
committerAlexey Samsonov <vonosmas@gmail.com>2015-02-17 21:53:45 +0000
commit92202371a3a686844ed425077ed927bc0daa394b (patch)
tree0c0d6a139a64c0f612d624c9569c858778f92c7e /lib/asan/README.txt
parent4e322ad9fc4cdc0fdd9aa023760ce97eda8da4a5 (diff)
Remove support for building sanitizers from Makefile/autoconf build.
They autotools build has a number of missing features, supports less OS, architectures, build configurations, doesn't have any tests and is hard to support in sync with CMake build. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@229556 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/asan/README.txt')
-rw-r--r--lib/asan/README.txt15
1 files changed, 6 insertions, 9 deletions
diff --git a/lib/asan/README.txt b/lib/asan/README.txt
index b9c43acd5..f89551417 100644
--- a/lib/asan/README.txt
+++ b/lib/asan/README.txt
@@ -1,11 +1,9 @@
AddressSanitizer RT
================================
-This directory contains sources of the AddressSanitizer (asan) runtime library.
-We are in the process of integrating AddressSanitizer with LLVM, stay tuned.
+This directory contains sources of the AddressSanitizer (ASan) runtime library.
Directory structure:
README.txt : This file.
-Makefile.mk : File for make-based build.
CMakeLists.txt : File for cmake-based build.
asan_*.{cc,h} : Sources of the asan runtime library.
scripts/* : Helper scripts.
@@ -13,14 +11,13 @@ tests/* : ASan unit tests.
Also ASan runtime needs the following libraries:
lib/interception/ : Machinery used to intercept function calls.
-lib/sanitizer_common/ : Code shared between ASan and TSan.
+lib/sanitizer_common/ : Code shared between various sanitizers.
-Currently ASan runtime can be built by both make and cmake build systems.
-(see compiler-rt/make and files Makefile.mk for make-based build and
-files CMakeLists.txt for cmake-based build).
+ASan runtime currently also embeds part of LeakSanitizer runtime for
+leak detection (lib/lsan/lsan_common.{cc,h}).
-ASan unit and output tests work only with cmake. You may run this
-command from the root of your cmake build tree:
+ASan runtime can only be built by CMake. You can run ASan tests
+from the root of your CMake build tree:
make check-asan