5
5
# http://www.boost.org/LICENSE_1_0.txt)
6
6
#
7
7
8
+ require-b2 5.0.1 ;
9
+ import-search /boost/config/checks ;
10
+ import config : requires ;
8
11
import feature ;
9
12
import property ;
10
- import ../../config/checks/config : requires ;
13
+
14
+ constant boost_dependencies_private :
15
+ <library>/boost/assert//boost_assert
16
+ ;
11
17
12
18
project
13
- : source-location .
19
+ : common-requirements $(boost_dependencies)
14
20
: requirements
15
21
[ requires cxx11_rvalue_references ]
22
+ $(boost_dependencies_private)
16
23
: default-build
17
24
<visibility>hidden
18
25
;
@@ -26,10 +33,10 @@ feature.feature boost.stacktrace.from_exception : on off : optional propagated ;
26
33
27
34
local LIBBACKTRACE_PATH = [ modules.peek : LIBBACKTRACE_PATH ] ;
28
35
lib backtrace
29
- :
36
+ :
30
37
: <search>$(LIBBACKTRACE_PATH)/lib <link>static
31
38
:
32
- : <include>$(LIBBACKTRACE_PATH)/include
39
+ : <include>$(LIBBACKTRACE_PATH)/include
33
40
;
34
41
35
42
actions mp_simple_run_action
@@ -67,6 +74,7 @@ lib boost_stacktrace_noop
67
74
: # default build
68
75
: # usage-requirements
69
76
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
77
+ <define>BOOST_STACKTRACE_NO_LIB=1
70
78
;
71
79
72
80
lib boost_stacktrace_backtrace
@@ -77,10 +85,11 @@ lib boost_stacktrace_backtrace
77
85
<target-os>linux:<library>dl
78
86
<library>backtrace
79
87
<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
80
- [ check-target-builds ../build// libbacktrace : : <build>no ]
88
+ [ check-target-builds libbacktrace : : <build>no ]
81
89
: # default build
82
90
: # usage-requirements
83
91
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
92
+ <define>BOOST_STACKTRACE_NO_LIB=1
84
93
;
85
94
86
95
lib boost_stacktrace_addr2line
@@ -90,10 +99,11 @@ lib boost_stacktrace_addr2line
90
99
<warnings>all
91
100
<target-os>linux:<library>dl
92
101
<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
93
- [ check-target-builds ../build// addr2line : : <build>no ]
102
+ [ check-target-builds addr2line : : <build>no ]
94
103
: # default build
95
104
: # usage-requirements
96
105
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
106
+ <define>BOOST_STACKTRACE_NO_LIB=1
97
107
;
98
108
99
109
lib boost_stacktrace_basic
@@ -103,10 +113,11 @@ lib boost_stacktrace_basic
103
113
<warnings>all
104
114
<target-os>linux:<library>dl
105
115
<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
106
- [ check-target-builds ../build// WinDbg : <build>no ]
116
+ [ check-target-builds WinDbg : <build>no ]
107
117
: # default build
108
118
: # usage-requirements
109
119
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
120
+ <define>BOOST_STACKTRACE_NO_LIB=1
110
121
;
111
122
112
123
lib boost_stacktrace_windbg
@@ -116,10 +127,11 @@ lib boost_stacktrace_windbg
116
127
<warnings>all
117
128
<library>Dbgeng <library>ole32
118
129
<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
119
- [ check-target-builds ../build// WinDbg : : <build>no ]
130
+ [ check-target-builds WinDbg : : <build>no ]
120
131
: # default build
121
132
: # usage-requirements
122
133
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
134
+ <define>BOOST_STACKTRACE_NO_LIB=1
123
135
;
124
136
125
137
lib boost_stacktrace_windbg_cached
@@ -129,10 +141,11 @@ lib boost_stacktrace_windbg_cached
129
141
<warnings>all
130
142
<library>Dbgeng <library>ole32
131
143
<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
132
- [ check-target-builds ../build// WinDbgCached : : <build>no ]
144
+ [ check-target-builds WinDbgCached : : <build>no ]
133
145
: # default build
134
146
: # usage-requirements
135
147
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
148
+ <define>BOOST_STACKTRACE_NO_LIB=1
136
149
;
137
150
138
151
rule build-stacktrace-from-exception ( props * )
@@ -162,10 +175,9 @@ lib boost_stacktrace_from_exception
162
175
<conditional>@build-stacktrace-from-exception
163
176
164
177
# Require usable libbacktrace on other platforms
165
- #[ check-target-builds ../build// libbacktrace : : <build>no ]
178
+ # [ check-target-builds libbacktrace : : <build>no ]
166
179
: # default build
167
180
: # usage-requirements
168
181
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
182
+ <define>BOOST_STACKTRACE_NO_LIB=1
169
183
;
170
-
171
- 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 ;
0 commit comments