Skip to content

Commit 1ce74bc

Browse files
committed
depends: boost: Split target-os from toolset
Previously, we specified the target-os in the toolset (and sometimes used the wrong command line flags), now we have a clear separation, which is favored by ./bootstrap.sh and ./b2. This means that all supported OSes will specify the correct target-os= and toolset= on the command line.
1 parent 2d4e480 commit 1ce74bc

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

depends/packages/boost.mk

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ $(package)_config_opts_release=variant=release
99
$(package)_config_opts_debug=variant=debug
1010
$(package)_config_opts=--layout=tagged --build-type=complete --user-config=user-config.jam
1111
$(package)_config_opts+=threading=multi link=static -sNO_BZIP2=1 -sNO_ZLIB=1
12-
$(package)_config_opts_linux=threadapi=pthread runtime-link=shared
13-
$(package)_config_opts_darwin=--toolset=clang-darwin runtime-link=shared
14-
$(package)_config_opts_mingw32=binary-format=pe target-os=windows threadapi=win32 runtime-link=static
12+
$(package)_config_opts_linux=target-os=linux threadapi=pthread runtime-link=shared
13+
$(package)_config_opts_darwin=target-os=darwin runtime-link=shared
14+
$(package)_config_opts_mingw32=target-os=windows binary-format=pe threadapi=win32 runtime-link=static
1515
$(package)_config_opts_x86_64_mingw32=address-model=64
1616
$(package)_config_opts_i686_mingw32=address-model=32
1717
$(package)_config_opts_i686_linux=address-model=32 architecture=x86
@@ -20,8 +20,8 @@ $(package)_config_opts_aarch64_android=address-model=64
2020
$(package)_config_opts_x86_64_android=address-model=64
2121
$(package)_config_opts_armv7a_android=address-model=32
2222
$(package)_toolset_$(host_os)=gcc
23+
$(package)_toolset_darwin=clang
2324
$(package)_archiver_$(host_os)=$($(package)_ar)
24-
$(package)_toolset_darwin=clang-darwin
2525
$(package)_config_libraries=filesystem,system,thread,test
2626
$(package)_cxxflags=-std=c++11 -fvisibility=hidden
2727
$(package)_cxxflags_linux=-fPIC
@@ -37,9 +37,9 @@ define $(package)_config_cmds
3737
endef
3838

3939
define $(package)_build_cmds
40-
./b2 -d2 -j2 -d1 --prefix=$($(package)_staging_prefix_dir) $($(package)_config_opts) stage
40+
./b2 -d2 -j2 -d1 --prefix=$($(package)_staging_prefix_dir) $($(package)_config_opts) toolset=$($(package)_toolset_$(host_os)) stage
4141
endef
4242

4343
define $(package)_stage_cmds
44-
./b2 -d0 -j4 --prefix=$($(package)_staging_prefix_dir) $($(package)_config_opts) install
44+
./b2 -d0 -j4 --prefix=$($(package)_staging_prefix_dir) $($(package)_config_opts) toolset=$($(package)_toolset_$(host_os)) install
4545
endef

0 commit comments

Comments
 (0)