Skip to content

Commit 7f29662

Browse files
committed
Remove unneeded link to boost_stacktrace lib which is noop for testing. Testing was already linking the correct libs.
1 parent b27094c commit 7f29662

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

build.jam

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
require-b2 5.2 ;
77

88
constant boost_dependencies :
9-
/boost/config//boost_config
10-
/boost/container_hash//boost_container_hash
11-
/boost/core//boost_core
12-
/boost/predef//boost_predef
13-
/boost/winapi//boost_winapi ;
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 ;
1414

1515
project /boost/stacktrace
1616
: common-requirements

build/Jamfile.v2

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ import feature ;
1212
import property ;
1313

1414
constant boost_dependencies_private :
15-
/boost/assert//boost_assert
15+
<library>/boost/assert//boost_assert
1616
;
1717

1818
project
19-
: common-requirements <library>$(boost_dependencies)
19+
: common-requirements $(boost_dependencies)
2020
: requirements
2121
[ requires cxx11_rvalue_references ]
22-
<library>$(boost_dependencies_private)
22+
$(boost_dependencies_private)
2323
: default-build
2424
<visibility>hidden
2525
;

test/Jamfile.v2

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ lib backtrace
2626

2727
project
2828
: requirements
29-
<library>/boost/stacktrace//boost_stacktrace
3029
[ requires cxx11_rvalue_references cxx11_template_aliases cxx11_noexcept ]
3130
<toolset>msvc:<asynch-exceptions>on
3231
<toolset>intel:<cxxflags>-wd2196

0 commit comments

Comments
 (0)