Compare commits

..

20 Commits

Author SHA1 Message Date
Antony Polukhin
762b4916fc fix attempt 2024-09-13 19:13:33 +03:00
Antony Polukhin
3c756ad478 Update stacktrace.hpp 2024-09-13 11:25:41 +03:00
Antony Polukhin
005bcbad7d Update stacktrace.hpp 2024-09-13 07:20:27 +03:00
Antony Polukhin
b105972fbc Update stacktrace.hpp 2024-09-13 00:29:53 +03:00
Antony Polukhin
c624479813 Another fix attempt for #177 2024-09-12 22:34:47 +03:00
Antony Polukhin
3f79aee92f Revert fix attempt for #177 2024-09-12 22:27:45 +03:00
Antony Polukhin
da94896d2d Fix attempt for #177 2024-09-12 22:00:21 +03:00
Antony Polukhin
0a1f8ac9a0 Fix Appveyor CI runs (#183) 2024-09-12 18:26:16 +03:00
Antony Polukhin
7c79d84614 fix attempt for Appveyor 2024-09-12 11:31:04 +03:00
Antony Polukhin
e95c2723d8 Add auto linking when using clang compiler under Visual Studio (fixes #100) 2024-09-12 11:15:03 +03:00
Antony Polukhin
9028c8a413 Attempt to fix weird build issues with CYGWIN and MacOS (fixes #88) 2024-09-12 11:14:26 +03:00
Antony Polukhin
b37fc77b5d Attempt to fix weird build issues with CYGWIN and MacOS (fixes #88) 2024-09-12 11:04:52 +03:00
Mats Taraldsvik
aa97b1a34c Fix missing namespace in stacktrace.qbk (#181) 2024-09-12 10:36:53 +03:00
Julien Schueller
23e1213f54 Fix missing include for std::exception (#178)
Fixes build on mingw: 
from_exception.cpp:333:23: error: 'current_exception' is not a member of 'std'
2024-09-03 10:27:59 +03:00
René Ferdinand Rivera Morell
ad121dbed0 Add support for modular build structure. (#172)
This is part of the effort to make the Boost libraries "modular" for build and consumption. See https://lists.boost.org/Archives/boost/2024/01/255704.php and https://github.com/grafikrobot/boost-b2-modular/blob/b2-modular/README.adoc for more information.
2024-09-01 17:23:26 +03:00
Jaroslaw Pelczar
981e37c218 Fix type conversions errors reported by GCC (#175)
This commit fixes errors when compiling with:
 -Wall -Werror -Wextra -Wconversion -Wsign-conversion

Signed-off-by: Jarosław Pelczar <jarek@jpelczar.com>
2024-09-01 17:22:07 +03:00
Antony Polukhin
cbf0df774d Fix addr2line work when the process is looked up via PATH.
Fixes #72
2024-07-07 20:30:51 +03:00
Peter Dimov
34e56c4e90 Do not define BOOST_STACKTRACE_DYN_LINK when BOOST_STACKTRACE_STATIC_LINK is defined 2024-06-23 20:36:49 +03:00
Peter Dimov
f32bd5a543 Define BOOST_STACKTRACE_LINK when BOOST_STACKTRACE_STATIC_LINK is defined. Refs #169. 2024-06-21 23:01:57 +03:00
Peter Dimov
79fc075655 Revert "Disable static linking in GHA because of https://github.com/boostorg/stacktrace/issues/169"
This reverts commit 274aeaa351.
2024-06-21 22:58:47 +03:00
18 changed files with 131 additions and 34 deletions

View File

@@ -171,7 +171,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
os: [ ubuntu-20.04, ubuntu-22.04, macos-12, macos-13, macos-14 ] os: [ ubuntu-20.04, ubuntu-22.04, macos-12, macos-13, macos-14 ]
shared: [ ON ] # https://github.com/boostorg/stacktrace/issues/169 shared: [ OFF, ON ]
runs-on: ${{matrix.os}} runs-on: ${{matrix.os}}
@@ -215,7 +215,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
os: [ ubuntu-20.04, ubuntu-22.04, macos-12, macos-13, macos-14 ] os: [ ubuntu-20.04, ubuntu-22.04, macos-12, macos-13, macos-14 ]
shared: [ ON ] # https://github.com/boostorg/stacktrace/issues/169 shared: [ OFF, ON ]
runs-on: ${{matrix.os}} runs-on: ${{matrix.os}}
@@ -275,7 +275,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
os: [ ubuntu-20.04, ubuntu-22.04, macos-12, macos-13, macos-14 ] os: [ ubuntu-20.04, ubuntu-22.04, macos-12, macos-13, macos-14 ]
shared: [ ON ] # https://github.com/boostorg/stacktrace/issues/169 shared: [ OFF, ON ]
runs-on: ${{matrix.os}} runs-on: ${{matrix.os}}
@@ -443,7 +443,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
os: [ windows-2019, windows-2022 ] os: [ windows-2019, windows-2022 ]
shared: [ ON ] # https://github.com/boostorg/stacktrace/issues/169 shared: [ OFF, ON ]
runs-on: ${{matrix.os}} runs-on: ${{matrix.os}}

50
build.jam Normal file
View File

@@ -0,0 +1,50 @@
# Copyright René Ferdinand Rivera Morell 2023-2024
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
require-b2 5.2 ;
constant boost_dependencies :
<library>/boost/config//boost_config
<library>/boost/container_hash//boost_container_hash
<library>/boost/core//boost_core
<library>/boost/predef//boost_predef
<target-os>windows:<library>/boost/winapi//boost_winapi ;
project /boost/stacktrace
: common-requirements
<include>include
;
explicit
[ alias boost_stacktrace_addr2line : build//boost_stacktrace_addr2line ]
[ alias boost_stacktrace_backtrace : build//boost_stacktrace_backtrace ]
[ alias boost_stacktrace_basic : build//boost_stacktrace_basic ]
[ alias boost_stacktrace_from_exception : build//boost_stacktrace_from_exception ]
[ alias boost_stacktrace_noop : build//boost_stacktrace_noop ]
[ alias boost_stacktrace_windbg : build//boost_stacktrace_windbg ]
[ alias boost_stacktrace_windbg_cached : build//boost_stacktrace_windbg_cached ]
[ alias boost_stacktrace : boost_stacktrace_noop ]
[ alias all :
boost_stacktrace_addr2line
boost_stacktrace_backtrace
boost_stacktrace_basic
boost_stacktrace_from_exception
boost_stacktrace_noop
boost_stacktrace_windbg
boost_stacktrace_windbg_cached
test
]
;
call-if : boost-library stacktrace
: install
boost_stacktrace_addr2line
boost_stacktrace_backtrace
boost_stacktrace_basic
boost_stacktrace_from_exception
boost_stacktrace_noop
boost_stacktrace_windbg
boost_stacktrace_windbg_cached
;

View File

@@ -5,14 +5,21 @@
# http://www.boost.org/LICENSE_1_0.txt) # http://www.boost.org/LICENSE_1_0.txt)
# #
require-b2 5.0.1 ;
import-search /boost/config/checks ;
import config : requires ;
import feature ; import feature ;
import property ; import property ;
import ../../config/checks/config : requires ;
constant boost_dependencies_private :
<library>/boost/assert//boost_assert
;
project project
: source-location . : common-requirements $(boost_dependencies)
: requirements : requirements
[ requires cxx11_rvalue_references ] [ requires cxx11_rvalue_references ]
$(boost_dependencies_private)
: default-build : default-build
<visibility>hidden <visibility>hidden
; ;
@@ -67,6 +74,7 @@ lib boost_stacktrace_noop
: # default build : # default build
: # usage-requirements : # usage-requirements
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1 #<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
<define>BOOST_STACKTRACE_NO_LIB=1
; ;
lib boost_stacktrace_backtrace lib boost_stacktrace_backtrace
@@ -77,10 +85,11 @@ lib boost_stacktrace_backtrace
<target-os>linux:<library>dl <target-os>linux:<library>dl
<library>backtrace <library>backtrace
<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1 <link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
[ check-target-builds ../build//libbacktrace : : <build>no ] [ check-target-builds libbacktrace : : <build>no ]
: # default build : # default build
: # usage-requirements : # usage-requirements
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1 #<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
<define>BOOST_STACKTRACE_NO_LIB=1
; ;
lib boost_stacktrace_addr2line lib boost_stacktrace_addr2line
@@ -90,10 +99,11 @@ lib boost_stacktrace_addr2line
<warnings>all <warnings>all
<target-os>linux:<library>dl <target-os>linux:<library>dl
<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1 <link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
[ check-target-builds ../build//addr2line : : <build>no ] [ check-target-builds addr2line : : <build>no ]
: # default build : # default build
: # usage-requirements : # usage-requirements
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1 #<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
<define>BOOST_STACKTRACE_NO_LIB=1
; ;
lib boost_stacktrace_basic lib boost_stacktrace_basic
@@ -103,10 +113,11 @@ lib boost_stacktrace_basic
<warnings>all <warnings>all
<target-os>linux:<library>dl <target-os>linux:<library>dl
<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1 <link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
[ check-target-builds ../build//WinDbg : <build>no ] [ check-target-builds WinDbg : <build>no ]
: # default build : # default build
: # usage-requirements : # usage-requirements
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1 #<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
<define>BOOST_STACKTRACE_NO_LIB=1
; ;
lib boost_stacktrace_windbg lib boost_stacktrace_windbg
@@ -116,10 +127,11 @@ lib boost_stacktrace_windbg
<warnings>all <warnings>all
<library>Dbgeng <library>ole32 <library>Dbgeng <library>ole32
<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1 <link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
[ check-target-builds ../build//WinDbg : : <build>no ] [ check-target-builds WinDbg : : <build>no ]
: # default build : # default build
: # usage-requirements : # usage-requirements
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1 #<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
<define>BOOST_STACKTRACE_NO_LIB=1
; ;
lib boost_stacktrace_windbg_cached lib boost_stacktrace_windbg_cached
@@ -129,10 +141,11 @@ lib boost_stacktrace_windbg_cached
<warnings>all <warnings>all
<library>Dbgeng <library>ole32 <library>Dbgeng <library>ole32
<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1 <link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
[ check-target-builds ../build//WinDbgCached : : <build>no ] [ check-target-builds WinDbgCached : : <build>no ]
: # default build : # default build
: # usage-requirements : # usage-requirements
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1 #<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
<define>BOOST_STACKTRACE_NO_LIB=1
; ;
rule build-stacktrace-from-exception ( props * ) rule build-stacktrace-from-exception ( props * )
@@ -162,10 +175,10 @@ lib boost_stacktrace_from_exception
<conditional>@build-stacktrace-from-exception <conditional>@build-stacktrace-from-exception
# Require usable libbacktrace on other platforms # Require usable libbacktrace on other platforms
#[ check-target-builds ../build//libbacktrace : : <build>no ] # [ check-target-builds libbacktrace : : <build>no ]
: # default build : # default build
: # usage-requirements : # usage-requirements
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1 #<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
<define>BOOST_STACKTRACE_NO_LIB=1
<define>BOOST_STACKTRACE_LINKED_WITH_FROM_EXCEPTION=1
; ;
boost-install boost_stacktrace_noop boost_stacktrace_backtrace boost_stacktrace_addr2line boost_stacktrace_basic boost_stacktrace_windbg boost_stacktrace_windbg_cached boost_stacktrace_from_exception ;

View File

@@ -9,9 +9,9 @@ import doxygen ;
doxygen autodoc doxygen autodoc
: :
[ glob ../../../boost/stacktrace.hpp ] [ glob ../include/boost/stacktrace.hpp ]
[ glob ../../../boost/stacktrace/*.hpp ] [ glob ../include/boost/stacktrace/*.hpp ]
[ glob ../../../boost/stacktrace/detail/frame_decl.hpp ] [ glob ../include/boost/stacktrace/detail/frame_decl.hpp ]
: :
<doxygen:param>EXTRACT_ALL=NO <doxygen:param>EXTRACT_ALL=NO
<doxygen:param>HIDE_UNDOC_MEMBERS=YES <doxygen:param>HIDE_UNDOC_MEMBERS=YES

View File

@@ -163,7 +163,7 @@ int main() {
foo("test1"); foo("test1");
bar("test2"); bar("test2");
} catch (const std::exception& exc) { } catch (const std::exception& exc) {
boost::stacktrace::stacktrace trace = boost::stacktrace::from_current_exception(); // <--- boost::stacktrace::stacktrace trace = boost::stacktrace::stacktrace::from_current_exception(); // <---
std::cerr << "Caught exception: " << exc.what() << ", trace:\n" << trace; std::cerr << "Caught exception: " << exc.what() << ", trace:\n" << trace;
} }
} }

View File

@@ -4,7 +4,7 @@
// accompanying file LICENSE_1_0.txt or copy at // accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt) // http://www.boost.org/LICENSE_1_0.txt)
#define BOOST_USER_CONFIG <libs/stacktrace/example/user_config.hpp> #define BOOST_USER_CONFIG <example/user_config.hpp>
#include <boost/array.hpp> #include <boost/array.hpp>
#include <exception> // std::set_terminate, std::abort #include <exception> // std::set_terminate, std::abort

View File

@@ -18,6 +18,7 @@
#include <boost/stacktrace/detail/try_dec_convert.hpp> #include <boost/stacktrace/detail/try_dec_convert.hpp>
#include <boost/core/demangle.hpp> #include <boost/core/demangle.hpp>
#include <cstdio> #include <cstdio>
#include <cstring>
#include <sys/types.h> #include <sys/types.h>
#include <sys/wait.h> #include <sys/wait.h>
@@ -116,12 +117,14 @@ inline std::string addr2line(const char* flag, const void* addr) {
std::string res; std::string res;
boost::stacktrace::detail::location_from_symbol loc(addr); boost::stacktrace::detail::location_from_symbol loc(addr);
if (!loc.empty()) { // For programs started through $PATH loc.name() is not absolute and
// addr2line will fail.
if (!loc.empty() && std::strchr(loc.name(), '/') != nullptr) {
res = loc.name(); res = loc.name();
} else { } else {
res.resize(16); res.resize(16);
int rlin_size = ::readlink("/proc/self/exe", &res[0], res.size() - 1); ssize_t rlin_size = ::readlink("/proc/self/exe", &res[0], res.size() - 1);
while (rlin_size == static_cast<int>(res.size() - 1)) { while (rlin_size == static_cast<ssize_t>(res.size() - 1)) {
res.resize(res.size() * 4); res.resize(res.size() * 4);
rlin_size = ::readlink("/proc/self/exe", &res[0], res.size() - 1); rlin_size = ::readlink("/proc/self/exe", &res[0], res.size() - 1);
} }
@@ -129,7 +132,7 @@ inline std::string addr2line(const char* flag, const void* addr) {
res.clear(); res.clear();
return res; return res;
} }
res.resize(rlin_size); res.resize(static_cast<std::size_t>(rlin_size));
} }
addr2line_pipe p(flag, res.c_str(), to_hex_array(addr).data()); addr2line_pipe p(flag, res.c_str(), to_hex_array(addr).data());

View File

@@ -88,7 +88,7 @@ std::size_t this_thread_frames::collect(native_frame_ptr_t* out_frames, std::siz
#else #else
boost::stacktrace::detail::unwind_state state = { skip, out_frames, out_frames + max_frames_count }; boost::stacktrace::detail::unwind_state state = { skip, out_frames, out_frames + max_frames_count };
::_Unwind_Backtrace(&boost::stacktrace::detail::unwind_callback, &state); ::_Unwind_Backtrace(&boost::stacktrace::detail::unwind_callback, &state);
frames_count = state.current - out_frames; frames_count = static_cast<std::size_t>(state.current - out_frames);
#endif //defined(BOOST_STACKTRACE_USE_LIBC_BACKTRACE_FUNCTION) #endif //defined(BOOST_STACKTRACE_USE_LIBC_BACKTRACE_FUNCTION)
if (frames_count && out_frames[frames_count - 1] == 0) { if (frames_count && out_frames[frames_count - 1] == 0) {

View File

@@ -33,7 +33,7 @@
#include <mutex> #include <mutex>
#ifdef BOOST_MSVC #if defined(__clang__) || defined(BOOST_MSVC)
# pragma comment(lib, "ole32.lib") # pragma comment(lib, "ole32.lib")
# pragma comment(lib, "Dbgeng.lib") # pragma comment(lib, "Dbgeng.lib")
#endif #endif

View File

@@ -52,7 +52,7 @@ inline int libbacktrace_full_callback(void *data, uintptr_t /*pc*/, const char *
if (d.function && function) { if (d.function && function) {
*d.function = function; *d.function = function;
} }
d.line = lineno; d.line = static_cast<std::size_t>(lineno);
return 0; return 0;
} }

View File

@@ -11,7 +11,11 @@
# define BOOST_STACKTRACE_LINK # define BOOST_STACKTRACE_LINK
#endif #endif
#if defined(BOOST_STACKTRACE_LINK) && !defined(BOOST_STACKTRACE_DYN_LINK) && defined(BOOST_ALL_DYN_LINK) #if !defined(BOOST_STACKTRACE_LINK) && defined(BOOST_STACKTRACE_STATIC_LINK)
# define BOOST_STACKTRACE_LINK
#endif
#if defined(BOOST_STACKTRACE_LINK) && !defined(BOOST_STACKTRACE_DYN_LINK) && !defined(BOOST_STACKTRACE_STATIC_LINK) && defined(BOOST_ALL_DYN_LINK)
# define BOOST_STACKTRACE_DYN_LINK # define BOOST_STACKTRACE_DYN_LINK
#endif #endif

View File

@@ -37,12 +37,18 @@
extern "C" { extern "C" {
BOOST_SYMBOL_EXPORT inline void* boost_stacktrace_impl_return_nullptr() { return nullptr; }
const char* boost_stacktrace_impl_current_exception_stacktrace(); const char* boost_stacktrace_impl_current_exception_stacktrace();
bool* boost_stacktrace_impl_ref_capture_stacktraces_at_throw(); bool* boost_stacktrace_impl_ref_capture_stacktraces_at_throw();
} }
#ifndef BOOST_STACKTRACE_LINKED_WITH_FROM_EXCEPTION
extern "C" {
BOOST_SYMBOL_EXPORT
inline void* boost_stacktrace_impl_return_nullptr() { return nullptr; }
}
#ifdef _M_IX86 #ifdef _M_IX86
# pragma comment(linker, "/ALTERNATENAME:_boost_stacktrace_impl_current_exception_stacktrace=_boost_stacktrace_impl_return_nullptr") # pragma comment(linker, "/ALTERNATENAME:_boost_stacktrace_impl_current_exception_stacktrace=_boost_stacktrace_impl_return_nullptr")
# pragma comment(linker, "/ALTERNATENAME:_boost_stacktrace_impl_ref_capture_stacktraces_at_throw=_boost_stacktrace_impl_return_nullptr") # pragma comment(linker, "/ALTERNATENAME:_boost_stacktrace_impl_ref_capture_stacktraces_at_throw=_boost_stacktrace_impl_return_nullptr")
@@ -51,6 +57,8 @@ bool* boost_stacktrace_impl_ref_capture_stacktraces_at_throw();
# pragma comment(linker, "/ALTERNATENAME:boost_stacktrace_impl_ref_capture_stacktraces_at_throw=boost_stacktrace_impl_return_nullptr") # pragma comment(linker, "/ALTERNATENAME:boost_stacktrace_impl_ref_capture_stacktraces_at_throw=boost_stacktrace_impl_return_nullptr")
#endif #endif
#endif // #ifndef BOOST_STACKTRACE_LINKED_WITH_FROM_EXCEPTION
#endif #endif
namespace boost { namespace stacktrace { namespace boost { namespace stacktrace {

View File

@@ -157,6 +157,7 @@ BOOST_SYMBOL_EXPORT void assert_no_pending_traces() noexcept {
#include <boost/stacktrace/safe_dump_to.hpp> #include <boost/stacktrace/safe_dump_to.hpp>
#include <cstddef> #include <cstddef>
#include <exception>
#include <dlfcn.h> #include <dlfcn.h>
#if !BOOST_STACKTRACE_ALWAYS_STORE_IN_PADDING #if !BOOST_STACKTRACE_ALWAYS_STORE_IN_PADDING

View File

@@ -4,6 +4,10 @@
// accompanying file LICENSE_1_0.txt or copy at // accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt) // http://www.boost.org/LICENSE_1_0.txt)
#ifndef _GNU_SOURCE
# define _GNU_SOURCE
#endif
#define BOOST_STACKTRACE_INTERNAL_BUILD_LIBS #define BOOST_STACKTRACE_INTERNAL_BUILD_LIBS
#define BOOST_STACKTRACE_LINK #define BOOST_STACKTRACE_LINK
#include <boost/stacktrace/detail/frame_msvc.ipp> #include <boost/stacktrace/detail/frame_msvc.ipp>

View File

@@ -4,6 +4,10 @@
// accompanying file LICENSE_1_0.txt or copy at // accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt) // http://www.boost.org/LICENSE_1_0.txt)
#ifndef _GNU_SOURCE
# define _GNU_SOURCE
#endif
#define BOOST_STACKTRACE_INTERNAL_BUILD_LIBS #define BOOST_STACKTRACE_INTERNAL_BUILD_LIBS
#define BOOST_STACKTRACE_LINK #define BOOST_STACKTRACE_LINK
#define BOOST_STACKTRACE_USE_WINDBG_CACHED #define BOOST_STACKTRACE_USE_WINDBG_CACHED

View File

@@ -5,7 +5,9 @@
# http://www.boost.org/LICENSE_1_0.txt) # http://www.boost.org/LICENSE_1_0.txt)
# #
import ../../config/checks/config : requires ; import-search /boost/config/checks ;
import config : requires ;
import testing ;
lib dl : : <link>shared ; lib dl : : <link>shared ;
lib gcc_s ; lib gcc_s ;
@@ -31,6 +33,8 @@ project
<warnings>all <warnings>all
<test-info>always_show_run_output <test-info>always_show_run_output
<visibility>hidden <visibility>hidden
<include>..
<library>/boost/optional//boost_optional
; ;
local FORCE_SYMBOL_EXPORT = <target-os>freebsd:<linkflags>"-rdynamic" <target-os>solaris:<linkflags>"-Bdynamic" <target-os>aix:<linkflags>"-rdynamic" local FORCE_SYMBOL_EXPORT = <target-os>freebsd:<linkflags>"-rdynamic" <target-os>solaris:<linkflags>"-Bdynamic" <target-os>aix:<linkflags>"-rdynamic"
@@ -122,15 +126,19 @@ test-suite stacktrace_tests
[ run thread_safety_checking.cpp [ run thread_safety_checking.cpp
: : : <debug-symbols>on <library>.//test_impl_lib_backtrace $(LINKSHARED_BT) : : : <debug-symbols>on <library>.//test_impl_lib_backtrace $(LINKSHARED_BT)
<define>BOOST_STACKTRACE_BACKTRACE_FORCE_STATIC <define>BOOST_STACKTRACE_BACKTRACE_FORCE_STATIC
<library>/boost/optional//boost_optional
: backtrace_lib_threaded_static ] : backtrace_lib_threaded_static ]
[ run thread_safety_checking.cpp [ run thread_safety_checking.cpp
: : : <debug-symbols>on <library>.//test_impl_lib_windbg $(LINKSHARED_WIND) : : : <debug-symbols>on <library>.//test_impl_lib_windbg $(LINKSHARED_WIND)
<library>/boost/optional//boost_optional
: windbg_lib_threaded ] : windbg_lib_threaded ]
[ run thread_safety_checking.cpp [ run thread_safety_checking.cpp
: : : <debug-symbols>on <library>.//test_impl_lib_windbg_cached $(LINKSHARED_WIND_CACHED) : : : <debug-symbols>on <library>.//test_impl_lib_windbg_cached $(LINKSHARED_WIND_CACHED)
<library>/boost/optional//boost_optional
: windbg_cached_lib_threaded ] : windbg_cached_lib_threaded ]
[ run thread_safety_checking.cpp [ run thread_safety_checking.cpp
: : : <debug-symbols>on <library>.//test_impl_lib_basic $(LINKSHARED_BASIC) : : : <debug-symbols>on <library>.//test_impl_lib_basic $(LINKSHARED_BASIC)
<library>/boost/optional//boost_optional
: basic_lib_threaded ] : basic_lib_threaded ]
##### Tests with disabled debug symbols ##### ##### Tests with disabled debug symbols #####
@@ -158,6 +166,7 @@ test-suite stacktrace_tests
[ run thread_safety_checking.cpp [ run thread_safety_checking.cpp
: : : <debug-symbols>off : : : <debug-symbols>off
<library>.//test_impl_lib_backtrace_no_dbg <library>.//test_impl_lib_backtrace_no_dbg
<library>/boost/optional//boost_optional
$(LINKSHARED_BT) $(LINKSHARED_BT)
: backtrace_lib_no_dbg_threaded ] : backtrace_lib_no_dbg_threaded ]
[ run thread_safety_checking.cpp [ run thread_safety_checking.cpp
@@ -212,15 +221,15 @@ test-suite stacktrace_tests
for local p in [ glob ../example/*.cpp ] for local p in [ glob ../example/*.cpp ]
{ {
local target_name = $(p[1]:B) ; local target_name = $(p[1]:B) ;
local additional_dependency = ; local additional_dependency = <library>/boost/array//boost_array ;
if $(target_name) = "terminate_handler" if $(target_name) = "terminate_handler"
{ {
additional_dependency = <library>/boost/filesystem//boost_filesystem <library>/boost/system//boost_system <target-os>linux:<library>rt ; additional_dependency += <library>/boost/filesystem//boost_filesystem <library>/boost/system//boost_system <target-os>linux:<library>rt ;
} }
if $(target_name) = "throwing_st" if $(target_name) = "throwing_st"
{ {
additional_dependency = [ requires rtti ] ; additional_dependency += [ requires rtti ] <library>/boost/exception//boost_exception ;
} }
stacktrace_tests += [ run $(p) : : : <debug-symbols>on $(LINKSHARED_BT) $(additional_dependency) : backtrace_$(p2[1]:B) ] ; stacktrace_tests += [ run $(p) : : : <debug-symbols>on $(LINKSHARED_BT) $(additional_dependency) : backtrace_$(p2[1]:B) ] ;

View File

@@ -66,6 +66,7 @@ before_build:
libs/filesystem libs/atomic libs/system libs/interprocess libs/array libs/filesystem libs/atomic libs/system libs/interprocess libs/array
libs/iterator libs/detail libs/exception libs/smart_ptr libs/mpl libs/iterator libs/detail libs/exception libs/smart_ptr libs/mpl
libs/align libs/container libs/tuple libs/intrusive libs/scope libs/align libs/container libs/tuple libs/intrusive libs/scope
libs/variant2 libs/preprocessor libs/io
- rm -rf %BOOST%/libs/%BOOST_LIBS_FOLDER% - rm -rf %BOOST%/libs/%BOOST_LIBS_FOLDER%
- mv -f %APPVEYOR_BUILD_FOLDER% %BOOST%/libs/%BOOST_LIBS_FOLDER% - mv -f %APPVEYOR_BUILD_FOLDER% %BOOST%/libs/%BOOST_LIBS_FOLDER%

BIN
test/backtrace.dump Normal file

Binary file not shown.