From 67920e91ce04a7a17b788cf8356cb312cb93c45a Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Sat, 25 Jun 2016 21:58:03 +0200 Subject: [PATCH 1/1] MC: ignore the library of gcc's sanitizer --- src/mc/Process.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mc/Process.cpp b/src/mc/Process.cpp index 9197cb95e4..42a6bd0565 100644 --- a/src/mc/Process.cpp +++ b/src/mc/Process.cpp @@ -55,9 +55,10 @@ namespace mc { #define SO_RE "\\.so[\\.0-9]*$" #define VERSION_RE "-[\\.0-9-]*$" -// In lexicographic order (but this is currently not used in the code): +// List of library which memory segments are not considered: static const char *const filtered_libraries[] = { "ld", + "libasan", /* gcc sanitizer */ "libbz2", "libboost_chrono", "libboost_context", -- 2.20.1