README.txt revision 184fdd7837ca5b4f2c8cfd2ba1fb1e32f3a5ffbe
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).
13scripts/*        : Helper scripts.
14
15Temporary build instructions (verified on linux):
16
17cd lib/asan
18make -f Makefile.old get_third_party  # gets googletest
19make -f Makefile.old test -j 8 CLANG_BUILD=/path/to/Release+Asserts
20# Optional:
21# make -f Makefile.old install # installs clang and rt to lib/asan_clang_linux
22
23For more info see http://code.google.com/p/address-sanitizer/
24
25
26