Home | History | Annotate | only in /external/compiler-rt/lib/asan
Up to higher level directory
NameDateSize
Android.mk10-Oct-20125K
asan_allocator.cc10-Oct-201232.3K
asan_allocator.h10-Oct-20124.9K
asan_android_stub.cc10-Oct-2012124
asan_globals.cc10-Oct-20125.6K
asan_interceptors.cc10-Oct-201223.7K
asan_interceptors.h10-Oct-20122.2K
asan_interface.h10-Oct-20127.7K
asan_internal.h10-Oct-201211.1K
asan_linux.cc10-Oct-201211.4K
asan_lock.h10-Oct-20121.3K
asan_mac.cc10-Oct-201223.3K
asan_malloc_linux.cc10-Oct-20123.6K
asan_malloc_mac.cc10-Oct-201212.9K
asan_malloc_win.cc10-Oct-20123.9K
asan_mapping.h10-Oct-20123.4K
asan_new_delete.cc10-Oct-20121.9K
asan_poisoning.cc10-Oct-20125.1K
asan_posix.cc10-Oct-20125.2K
asan_printf.cc10-Oct-20126.8K
asan_procmaps.h10-Oct-20122.3K
asan_rtl.cc10-Oct-201219.3K
asan_stack.cc10-Oct-20125.8K
asan_stack.h10-Oct-20123.7K
asan_stats.cc10-Oct-20122.7K
asan_stats.h10-Oct-20121.7K
asan_thread.cc10-Oct-20123.8K
asan_thread.h10-Oct-20123.2K
asan_thread_registry.cc10-Oct-20125.2K
asan_thread_registry.h10-Oct-20122.4K
asan_win.cc10-Oct-20128.8K
asanwrapper.cc10-Oct-20121.4K
CMakeLists.txt10-Oct-2012455
interception/10-Oct-2012
Makefile.mk10-Oct-2012799
Makefile.old10-Oct-201210.7K
output_tests/10-Oct-2012
README.txt10-Oct-2012929
scripts/10-Oct-2012
tests/10-Oct-2012

README.txt

      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