Deleted Added
full compact
README.txt (245614) README.txt (276789)
1AddressSanitizer RT
2================================
1AddressSanitizer RT
2================================
3This directory contains sources of the AddressSanitizer (asan) run-time library.
3This directory contains sources of the AddressSanitizer (asan) runtime library.
4We are in the process of integrating AddressSanitizer with LLVM, stay tuned.
5
4We are in the process of integrating AddressSanitizer with LLVM, stay tuned.
5
6Directory structre:
6Directory structure:
7README.txt : This file.
8Makefile.mk : File for make-based build.
9CMakeLists.txt : File for cmake-based build.
7README.txt : This file.
8Makefile.mk : File for make-based build.
9CMakeLists.txt : File for cmake-based build.
10asan_*.{cc,h} : Sources of the asan run-time lirbary.
10asan_*.{cc,h} : Sources of the asan runtime library.
11scripts/* : Helper scripts.
12tests/* : ASan unit tests.
11scripts/* : Helper scripts.
12tests/* : ASan unit tests.
13lit_tests/* : ASan output tests.
14
15Also ASan runtime needs the following libraries:
16lib/interception/ : Machinery used to intercept function calls.
17lib/sanitizer_common/ : Code shared between ASan and TSan.
18
19Currently ASan runtime can be built by both make and cmake build systems.
20(see compiler-rt/make and files Makefile.mk for make-based build and
21files CMakeLists.txt for cmake-based build).
22
23ASan unit and output tests work only with cmake. You may run this
24command from the root of your cmake build tree:
25
26make check-asan
27
28For more instructions see:
29http://code.google.com/p/address-sanitizer/wiki/HowToBuild
13
14Also ASan runtime needs the following libraries:
15lib/interception/ : Machinery used to intercept function calls.
16lib/sanitizer_common/ : Code shared between ASan and TSan.
17
18Currently ASan runtime can be built by both make and cmake build systems.
19(see compiler-rt/make and files Makefile.mk for make-based build and
20files CMakeLists.txt for cmake-based build).
21
22ASan unit and output tests work only with cmake. You may run this
23command from the root of your cmake build tree:
24
25make check-asan
26
27For more instructions see:
28http://code.google.com/p/address-sanitizer/wiki/HowToBuild