Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
Android.mk | 10-Oct-2012 | 5K | |
asan_allocator.cc | 10-Oct-2012 | 32.3K | |
asan_allocator.h | 10-Oct-2012 | 4.9K | |
asan_android_stub.cc | 10-Oct-2012 | 124 | |
asan_globals.cc | 10-Oct-2012 | 5.6K | |
asan_interceptors.cc | 10-Oct-2012 | 23.7K | |
asan_interceptors.h | 10-Oct-2012 | 2.2K | |
asan_interface.h | 10-Oct-2012 | 7.7K | |
asan_internal.h | 10-Oct-2012 | 11.1K | |
asan_linux.cc | 10-Oct-2012 | 11.4K | |
asan_lock.h | 10-Oct-2012 | 1.3K | |
asan_mac.cc | 10-Oct-2012 | 23.3K | |
asan_malloc_linux.cc | 10-Oct-2012 | 3.6K | |
asan_malloc_mac.cc | 10-Oct-2012 | 12.9K | |
asan_malloc_win.cc | 10-Oct-2012 | 3.9K | |
asan_mapping.h | 10-Oct-2012 | 3.4K | |
asan_new_delete.cc | 10-Oct-2012 | 1.9K | |
asan_poisoning.cc | 10-Oct-2012 | 5.1K | |
asan_posix.cc | 10-Oct-2012 | 5.2K | |
asan_printf.cc | 10-Oct-2012 | 6.8K | |
asan_procmaps.h | 10-Oct-2012 | 2.3K | |
asan_rtl.cc | 10-Oct-2012 | 19.3K | |
asan_stack.cc | 10-Oct-2012 | 5.8K | |
asan_stack.h | 10-Oct-2012 | 3.7K | |
asan_stats.cc | 10-Oct-2012 | 2.7K | |
asan_stats.h | 10-Oct-2012 | 1.7K | |
asan_thread.cc | 10-Oct-2012 | 3.8K | |
asan_thread.h | 10-Oct-2012 | 3.2K | |
asan_thread_registry.cc | 10-Oct-2012 | 5.2K | |
asan_thread_registry.h | 10-Oct-2012 | 2.4K | |
asan_win.cc | 10-Oct-2012 | 8.8K | |
asanwrapper.cc | 10-Oct-2012 | 1.4K | |
CMakeLists.txt | 10-Oct-2012 | 455 | |
interception/ | 10-Oct-2012 | ||
Makefile.mk | 10-Oct-2012 | 799 | |
Makefile.old | 10-Oct-2012 | 10.7K | |
output_tests/ | 10-Oct-2012 | ||
README.txt | 10-Oct-2012 | 929 | |
scripts/ | 10-Oct-2012 | ||
tests/ | 10-Oct-2012 |
1 AddressSanitizer RT 2 ================================ 3 This directory contains sources of the AddressSanitizer (asan) run-time library. 4 We are in the process of integrating AddressSanitizer with LLVM, stay tuned. 5 6 Directory structre: 7 8 README.txt : This file. 9 Makefile.mk : Currently a stub for a proper makefile. not usable. 10 Makefile.old : Old out-of-tree makefile, the only usable one so far. 11 asan_*.{cc,h} : Sources of the asan run-time lirbary. 12 mach_override/* : Utility to override functions on Darwin (MIT License). 13 scripts/* : Helper scripts. 14 15 Temporary build instructions (verified on linux): 16 17 cd lib/asan 18 make -f Makefile.old get_third_party # gets googletest and cpplint 19 make -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 23 For more info see http://code.google.com/p/address-sanitizer/ 24 25 26