shiva::stacktrace

This module simply makes a namespace alias and some preprocessing mandatory to use Boost.Stacktrace. This module is represented by a cmake interface library that facilitates its handling through other modules.

shiva/stacktrace/stacktrace.hpp
#ifdef __GNUC__
    #ifndef _GNU_SOURCE
        #define _GNU_SOURCE
    #endif
#endif

#ifdef _MSVC_VER
    #define BOOST_STACKTRACE_USE_WINDBG
#endif

#include <boost/stacktrace.hpp>

namespace shiva
{
    namespace bs = boost::stacktrace;
}

Last updated