From: Gabriel Corona Date: Thu, 9 Jul 2015 13:52:48 +0000 (+0200) Subject: [mc] Cleanup the DSO ignore list and add some entries X-Git-Tag: v3_12~532 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/85cb15c2b564f7557aee4d98e93176ce4c39ef73 [mc] Cleanup the DSO ignore list and add some entries --- diff --git a/src/mc/mc_process.cpp b/src/mc/mc_process.cpp index 5fee155143..8c465ff023 100644 --- a/src/mc/mc_process.cpp +++ b/src/mc/mc_process.cpp @@ -47,27 +47,28 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_process, mc, #define VERSION_RE "-[\\.0-9-]*$" static const char *const FILTERED_LIBS[] = { - "libstdc++", + "ld", + "libbz2", "libboost_context", + "libc", "libc++", "libcdt", - "libm", + "libcgraph", + "libdl", + "libdw", + "libelf", "libgcc_s", + "liblua5.1", + "liblzma", + "libm", "libpthread", + "librt", + "libstdc++", "libunwind", "libunwind-x86_64", "libunwind-x86", "libunwind-ptrace", - "libdw", - "libdl", - "librt", - "liblzma", - "libelf", - "libbz2", - "libz", - "libelf", - "libc", - "ld" + "libz" }; static bool MC_is_simgrid_lib(const char* libname)