android_mt6572_jiabo/external/compiler-rt/lib/asan
2025-09-05 16:56:03 +08:00
..
scripts first commit 2025-09-05 16:56:03 +08:00
tests first commit 2025-09-05 16:56:03 +08:00
.clang-format first commit 2025-09-05 16:56:03 +08:00
Android.mk first commit 2025-09-05 16:56:03 +08:00
asan.syms.extra first commit 2025-09-05 16:56:03 +08:00
asan_activation.cc first commit 2025-09-05 16:56:03 +08:00
asan_activation.h first commit 2025-09-05 16:56:03 +08:00
asan_activation_flags.inc first commit 2025-09-05 16:56:03 +08:00
asan_allocator.cc first commit 2025-09-05 16:56:03 +08:00
asan_allocator.h first commit 2025-09-05 16:56:03 +08:00
asan_android_stub.cc first commit 2025-09-05 16:56:03 +08:00
asan_blacklist.txt first commit 2025-09-05 16:56:03 +08:00
asan_debugging.cc first commit 2025-09-05 16:56:03 +08:00
asan_fake_stack.cc first commit 2025-09-05 16:56:03 +08:00
asan_fake_stack.h first commit 2025-09-05 16:56:03 +08:00
asan_flags.cc first commit 2025-09-05 16:56:03 +08:00
asan_flags.h first commit 2025-09-05 16:56:03 +08:00
asan_flags.inc first commit 2025-09-05 16:56:03 +08:00
asan_globals.cc first commit 2025-09-05 16:56:03 +08:00
asan_init_version.h first commit 2025-09-05 16:56:03 +08:00
asan_interceptors.cc first commit 2025-09-05 16:56:03 +08:00
asan_interceptors.h first commit 2025-09-05 16:56:03 +08:00
asan_interface_internal.h first commit 2025-09-05 16:56:03 +08:00
asan_internal.h first commit 2025-09-05 16:56:03 +08:00
asan_linux.cc first commit 2025-09-05 16:56:03 +08:00
asan_lock.h first commit 2025-09-05 16:56:03 +08:00
asan_mac.cc first commit 2025-09-05 16:56:03 +08:00
asan_malloc_linux.cc first commit 2025-09-05 16:56:03 +08:00
asan_malloc_mac.cc first commit 2025-09-05 16:56:03 +08:00
asan_malloc_win.cc first commit 2025-09-05 16:56:03 +08:00
asan_mapping.h first commit 2025-09-05 16:56:03 +08:00
asan_new_delete.cc first commit 2025-09-05 16:56:03 +08:00
asan_poisoning.cc first commit 2025-09-05 16:56:03 +08:00
asan_poisoning.h first commit 2025-09-05 16:56:03 +08:00
asan_posix.cc first commit 2025-09-05 16:56:03 +08:00
asan_preinit.cc first commit 2025-09-05 16:56:03 +08:00
asan_report.cc first commit 2025-09-05 16:56:03 +08:00
asan_report.h first commit 2025-09-05 16:56:03 +08:00
asan_rtl.cc first commit 2025-09-05 16:56:03 +08:00
asan_stack.cc first commit 2025-09-05 16:56:03 +08:00
asan_stack.h first commit 2025-09-05 16:56:03 +08:00
asan_stats.cc first commit 2025-09-05 16:56:03 +08:00
asan_stats.h first commit 2025-09-05 16:56:03 +08:00
asan_suppressions.cc first commit 2025-09-05 16:56:03 +08:00
asan_suppressions.h first commit 2025-09-05 16:56:03 +08:00
asan_thread.cc first commit 2025-09-05 16:56:03 +08:00
asan_thread.h first commit 2025-09-05 16:56:03 +08:00
asan_win.cc first commit 2025-09-05 16:56:03 +08:00
asan_win_dll_thunk.cc first commit 2025-09-05 16:56:03 +08:00
asan_win_dynamic_runtime_thunk.cc first commit 2025-09-05 16:56:03 +08:00
asanwrapper.cc first commit 2025-09-05 16:56:03 +08:00
CMakeLists.txt first commit 2025-09-05 16:56:03 +08:00
Makefile.mk first commit 2025-09-05 16:56:03 +08:00
README.txt first commit 2025-09-05 16:56:03 +08:00

AddressSanitizer RT
================================
This directory contains sources of the AddressSanitizer (ASan) runtime library.

Directory structure:
README.txt       : This file.
Makefile.mk      : File for make-based build.
CMakeLists.txt   : File for cmake-based build.
asan_*.{cc,h}    : Sources of the asan runtime library.
scripts/*        : Helper scripts.
tests/*          : ASan unit tests.

Also ASan runtime needs the following libraries:
lib/interception/      : Machinery used to intercept function calls.
lib/sanitizer_common/  : Code shared between various sanitizers.

ASan runtime currently also embeds part of LeakSanitizer runtime for
leak detection (lib/lsan/lsan_common.{cc,h}).

ASan runtime can only be built by CMake. You can run ASan tests
from the root of your CMake build tree:

make check-asan

For more instructions see:
https://github.com/google/sanitizers/wiki/AddressSanitizerHowToBuild