From: Martin Quinson Date: Thu, 15 Dec 2016 08:35:45 +0000 (+0100) Subject: MC: ignore a new boost-related library X-Git-Tag: v3_14~52 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/a8c377f7e4361396cc9f1dc9480de84439eede2a?ds=sidebyside MC: ignore a new boost-related library The new lib is libboost_context-mt, but clang-format insisted on making my patch unreadable. --- diff --git a/src/mc/Process.cpp b/src/mc/Process.cpp index ee5df35082..663e4866d1 100644 --- a/src/mc/Process.cpp +++ b/src/mc/Process.cpp @@ -56,49 +56,49 @@ namespace mc { #define VERSION_RE "-[\\.0-9-]*$" // List of library which memory segments are not considered: -static const char *const filtered_libraries[] = { +static const char* const filtered_libraries[] = { #ifdef __linux__ - "ld", + "ld", #elif defined __FreeBSD__ - "ld-elf", - "ld-elf32", - "libkvm", /* kernel data access library */ - "libprocstat", /* process and file information retrieval */ - "libthr", /* thread library */ - "libutil", + "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", - "libboost_chrono", - "libboost_context", - "libboost_system", - "libboost_thread", - "libc", - "libc++", - "libcdt", - "libcgraph", - "libcxxrt", - "libdl", - "libdw", - "libelf", - "libevent", - "libgcc_s", - "liblua5.1", - "liblua5.3", - "liblzma", - "libm", - "libpthread", - "librt", - "libstdc++", - "libunwind", - "libunwind-x86_64", - "libunwind-x86", - "libunwind-ptrace", - "libz" -}; + "libasan", /* gcc sanitizers */ + "libargp", /* workarounds for glibc-less systems */ + "libtsan", + "libubsan", + "libbz2", + "libboost_chrono", + "libboost_context", + "libboost_context-mt", + "libboost_system", + "libboost_thread", + "libc", + "libc++", + "libcdt", + "libcgraph", + "libcxxrt", + "libdl", + "libdw", + "libelf", + "libevent", + "libgcc_s", + "liblua5.1", + "liblua5.3", + "liblzma", + "libm", + "libpthread", + "librt", + "libstdc++", + "libunwind", + "libunwind-x86_64", + "libunwind-x86", + "libunwind-ptrace", + "libz"}; static bool is_simgrid_lib(const char* libname) {