From: Matthieu Volat Date: Mon, 28 Nov 2016 14:09:18 +0000 (+0100) Subject: Add more libraries to blacklist. X-Git-Tag: v3_14~132^2~4 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/c99859aeca9cb0d4ebec395052bdd8a4ef38fcfd Add more libraries to blacklist. FreeBSD system and LLVM related libraries. --- diff --git a/src/mc/Process.cpp b/src/mc/Process.cpp index 61dc6afa2f..ee5df35082 100644 --- a/src/mc/Process.cpp +++ b/src/mc/Process.cpp @@ -57,8 +57,18 @@ namespace mc { // List of library which memory segments are not considered: static const char *const filtered_libraries[] = { +#ifdef __linux__ "ld", +#elif defined __FreeBSD__ + "ld-elf", + "ld-elf32", + "libkvm", /* kernel data access library */ + "libprocstat", /* process and file information retrieval */ + "libthr", /* thread library */ + "libutil", +#endif "libasan", /* gcc sanitizers */ + "libargp", /* workarounds for glibc-less systems */ "libtsan", "libubsan", "libbz2", @@ -70,9 +80,11 @@ static const char *const filtered_libraries[] = { "libc++", "libcdt", "libcgraph", + "libcxxrt", "libdl", "libdw", "libelf", + "libevent", "libgcc_s", "liblua5.1", "liblua5.3",