Skip to content

Commit ad121db

Browse files
authored
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.
1 parent 981e37c commit ad121db

File tree

5 files changed

+91
-20
lines changed

5 files changed

+91
-20
lines changed

build.jam

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# Copyright René Ferdinand Rivera Morell 2023-2024
2+
# Distributed under the Boost Software License, Version 1.0.
3+
# (See accompanying file LICENSE_1_0.txt or copy at
4+
# http://www.boost.org/LICENSE_1_0.txt)
5+
6+
require-b2 5.2 ;
7+
8+
constant boost_dependencies :
9+
<library>/boost/config//boost_config
10+
<library>/boost/container_hash//boost_container_hash
11+
<library>/boost/core//boost_core
12+
<library>/boost/predef//boost_predef
13+
<target-os>windows:<library>/boost/winapi//boost_winapi ;
14+
15+
project /boost/stacktrace
16+
: common-requirements
17+
<include>include
18+
;
19+
20+
explicit
21+
[ alias boost_stacktrace_addr2line : build//boost_stacktrace_addr2line ]
22+
[ alias boost_stacktrace_backtrace : build//boost_stacktrace_backtrace ]
23+
[ alias boost_stacktrace_basic : build//boost_stacktrace_basic ]
24+
[ alias boost_stacktrace_from_exception : build//boost_stacktrace_from_exception ]
25+
[ alias boost_stacktrace_noop : build//boost_stacktrace_noop ]
26+
[ alias boost_stacktrace_windbg : build//boost_stacktrace_windbg ]
27+
[ alias boost_stacktrace_windbg_cached : build//boost_stacktrace_windbg_cached ]
28+
[ alias boost_stacktrace : boost_stacktrace_noop ]
29+
[ alias all :
30+
boost_stacktrace_addr2line
31+
boost_stacktrace_backtrace
32+
boost_stacktrace_basic
33+
boost_stacktrace_from_exception
34+
boost_stacktrace_noop
35+
boost_stacktrace_windbg
36+
boost_stacktrace_windbg_cached
37+
test
38+
]
39+
;
40+
41+
call-if : boost-library stacktrace
42+
: install
43+
boost_stacktrace_addr2line
44+
boost_stacktrace_backtrace
45+
boost_stacktrace_basic
46+
boost_stacktrace_from_exception
47+
boost_stacktrace_noop
48+
boost_stacktrace_windbg
49+
boost_stacktrace_windbg_cached
50+
;

build/Jamfile.v2

+24-12
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,21 @@
55
# http://www.boost.org/LICENSE_1_0.txt)
66
#
77

8+
require-b2 5.0.1 ;
9+
import-search /boost/config/checks ;
10+
import config : requires ;
811
import feature ;
912
import property ;
10-
import ../../config/checks/config : requires ;
13+
14+
constant boost_dependencies_private :
15+
<library>/boost/assert//boost_assert
16+
;
1117

1218
project
13-
: source-location .
19+
: common-requirements $(boost_dependencies)
1420
: requirements
1521
[ requires cxx11_rvalue_references ]
22+
$(boost_dependencies_private)
1623
: default-build
1724
<visibility>hidden
1825
;
@@ -26,10 +33,10 @@ feature.feature boost.stacktrace.from_exception : on off : optional propagated ;
2633

2734
local LIBBACKTRACE_PATH = [ modules.peek : LIBBACKTRACE_PATH ] ;
2835
lib backtrace
29-
:
36+
:
3037
: <search>$(LIBBACKTRACE_PATH)/lib <link>static
3138
:
32-
: <include>$(LIBBACKTRACE_PATH)/include
39+
: <include>$(LIBBACKTRACE_PATH)/include
3340
;
3441

3542
actions mp_simple_run_action
@@ -67,6 +74,7 @@ lib boost_stacktrace_noop
6774
: # default build
6875
: # usage-requirements
6976
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
77+
<define>BOOST_STACKTRACE_NO_LIB=1
7078
;
7179

7280
lib boost_stacktrace_backtrace
@@ -77,10 +85,11 @@ lib boost_stacktrace_backtrace
7785
<target-os>linux:<library>dl
7886
<library>backtrace
7987
<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
80-
[ check-target-builds ../build//libbacktrace : : <build>no ]
88+
[ check-target-builds libbacktrace : : <build>no ]
8189
: # default build
8290
: # usage-requirements
8391
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
92+
<define>BOOST_STACKTRACE_NO_LIB=1
8493
;
8594

8695
lib boost_stacktrace_addr2line
@@ -90,10 +99,11 @@ lib boost_stacktrace_addr2line
9099
<warnings>all
91100
<target-os>linux:<library>dl
92101
<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
93-
[ check-target-builds ../build//addr2line : : <build>no ]
102+
[ check-target-builds addr2line : : <build>no ]
94103
: # default build
95104
: # usage-requirements
96105
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
106+
<define>BOOST_STACKTRACE_NO_LIB=1
97107
;
98108

99109
lib boost_stacktrace_basic
@@ -103,10 +113,11 @@ lib boost_stacktrace_basic
103113
<warnings>all
104114
<target-os>linux:<library>dl
105115
<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
106-
[ check-target-builds ../build//WinDbg : <build>no ]
116+
[ check-target-builds WinDbg : <build>no ]
107117
: # default build
108118
: # usage-requirements
109119
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
120+
<define>BOOST_STACKTRACE_NO_LIB=1
110121
;
111122

112123
lib boost_stacktrace_windbg
@@ -116,10 +127,11 @@ lib boost_stacktrace_windbg
116127
<warnings>all
117128
<library>Dbgeng <library>ole32
118129
<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
119-
[ check-target-builds ../build//WinDbg : : <build>no ]
130+
[ check-target-builds WinDbg : : <build>no ]
120131
: # default build
121132
: # usage-requirements
122133
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
134+
<define>BOOST_STACKTRACE_NO_LIB=1
123135
;
124136

125137
lib boost_stacktrace_windbg_cached
@@ -129,10 +141,11 @@ lib boost_stacktrace_windbg_cached
129141
<warnings>all
130142
<library>Dbgeng <library>ole32
131143
<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
132-
[ check-target-builds ../build//WinDbgCached : : <build>no ]
144+
[ check-target-builds WinDbgCached : : <build>no ]
133145
: # default build
134146
: # usage-requirements
135147
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
148+
<define>BOOST_STACKTRACE_NO_LIB=1
136149
;
137150

138151
rule build-stacktrace-from-exception ( props * )
@@ -162,10 +175,9 @@ lib boost_stacktrace_from_exception
162175
<conditional>@build-stacktrace-from-exception
163176

164177
# Require usable libbacktrace on other platforms
165-
#[ check-target-builds ../build//libbacktrace : : <build>no ]
178+
# [ check-target-builds libbacktrace : : <build>no ]
166179
: # default build
167180
: # usage-requirements
168181
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
182+
<define>BOOST_STACKTRACE_NO_LIB=1
169183
;
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 ;

doc/Jamfile.v2

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import doxygen ;
99

1010
doxygen autodoc
1111
:
12-
[ glob ../../../boost/stacktrace.hpp ]
13-
[ glob ../../../boost/stacktrace/*.hpp ]
14-
[ glob ../../../boost/stacktrace/detail/frame_decl.hpp ]
12+
[ glob ../include/boost/stacktrace.hpp ]
13+
[ glob ../include/boost/stacktrace/*.hpp ]
14+
[ glob ../include/boost/stacktrace/detail/frame_decl.hpp ]
1515
:
1616
<doxygen:param>EXTRACT_ALL=NO
1717
<doxygen:param>HIDE_UNDOC_MEMBERS=YES

example/user_config.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// accompanying file LICENSE_1_0.txt or copy at
55
// http://www.boost.org/LICENSE_1_0.txt)
66

7-
#define BOOST_USER_CONFIG <libs/stacktrace/example/user_config.hpp>
7+
#define BOOST_USER_CONFIG <example/user_config.hpp>
88

99
#include <boost/array.hpp>
1010
#include <exception> // std::set_terminate, std::abort

test/Jamfile.v2

+13-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
# http://www.boost.org/LICENSE_1_0.txt)
66
#
77

8-
import ../../config/checks/config : requires ;
8+
import-search /boost/config/checks ;
9+
import config : requires ;
10+
import testing ;
911

1012
lib dl : : <link>shared ;
1113
lib gcc_s ;
@@ -31,6 +33,8 @@ project
3133
<warnings>all
3234
<test-info>always_show_run_output
3335
<visibility>hidden
36+
<include>..
37+
<library>/boost/optional//boost_optional
3438
;
3539

3640
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
122126
[ run thread_safety_checking.cpp
123127
: : : <debug-symbols>on <library>.//test_impl_lib_backtrace $(LINKSHARED_BT)
124128
<define>BOOST_STACKTRACE_BACKTRACE_FORCE_STATIC
129+
<library>/boost/optional//boost_optional
125130
: backtrace_lib_threaded_static ]
126131
[ run thread_safety_checking.cpp
127132
: : : <debug-symbols>on <library>.//test_impl_lib_windbg $(LINKSHARED_WIND)
133+
<library>/boost/optional//boost_optional
128134
: windbg_lib_threaded ]
129135
[ run thread_safety_checking.cpp
130136
: : : <debug-symbols>on <library>.//test_impl_lib_windbg_cached $(LINKSHARED_WIND_CACHED)
137+
<library>/boost/optional//boost_optional
131138
: windbg_cached_lib_threaded ]
132139
[ run thread_safety_checking.cpp
133140
: : : <debug-symbols>on <library>.//test_impl_lib_basic $(LINKSHARED_BASIC)
141+
<library>/boost/optional//boost_optional
134142
: basic_lib_threaded ]
135143

136144
##### Tests with disabled debug symbols #####
@@ -158,6 +166,7 @@ test-suite stacktrace_tests
158166
[ run thread_safety_checking.cpp
159167
: : : <debug-symbols>off
160168
<library>.//test_impl_lib_backtrace_no_dbg
169+
<library>/boost/optional//boost_optional
161170
$(LINKSHARED_BT)
162171
: backtrace_lib_no_dbg_threaded ]
163172
[ run thread_safety_checking.cpp
@@ -212,15 +221,15 @@ test-suite stacktrace_tests
212221
for local p in [ glob ../example/*.cpp ]
213222
{
214223
local target_name = $(p[1]:B) ;
215-
local additional_dependency = ;
224+
local additional_dependency = <library>/boost/array//boost_array ;
216225
if $(target_name) = "terminate_handler"
217226
{
218-
additional_dependency = <library>/boost/filesystem//boost_filesystem <library>/boost/system//boost_system <target-os>linux:<library>rt ;
227+
additional_dependency += <library>/boost/filesystem//boost_filesystem <library>/boost/system//boost_system <target-os>linux:<library>rt ;
219228
}
220229

221230
if $(target_name) = "throwing_st"
222231
{
223-
additional_dependency = [ requires rtti ] ;
232+
additional_dependency += [ requires rtti ] <library>/boost/exception//boost_exception ;
224233
}
225234

226235
stacktrace_tests += [ run $(p) : : : <debug-symbols>on $(LINKSHARED_BT) $(additional_dependency) : backtrace_$(p2[1]:B) ] ;

0 commit comments

Comments
 (0)