README.txt revision 229109
1AddressSanitizer RT
2================================
3This directory contains sources of the AddressSanitizer (asan) run-time library.
4We are in the process of integrating AddressSanitizer with LLVM, stay tuned.
5
6Directory structre:
7
8README.txt       : This file.
9Makefile.mk      : Currently a stub for a proper makefile. not usable.
10Makefile.old     : Old out-of-tree makefile, the only usable one so far.
11asan_*.{cc,h}    : Sources of the asan run-time lirbary.
12mach_override/*  : Utility to override functions on Darwin (MIT License).
13sysinfo/*        : Portable utility to iterate over /proc/maps (BSD License).
14scripts/*        : Helper scripts.
15
16Temporary build instructions (verified on linux):
17
18cd lib/asan
19make -f Makefile.old get_third_party  # gets googletest and cpplint
20make -f Makefile.old test -j 8 CLANG_BUILD=/path/to/Release+Asserts
21# Optional:
22# make -f Makefile.old install # installs clang and rt to lib/asan_clang_linux
23
24For more info see http://code.google.com/p/address-sanitizer/
25
26
27