2014-07-23 07:31:30 +02:00
|
|
|
package=boost
|
2020-08-08 22:14:21 +02:00
|
|
|
$(package)_version=1_71_0
|
2020-08-08 22:02:00 +02:00
|
|
|
$(package)_download_path=https://dl.bintray.com/boostorg/release/$(subst _,.,$($(package)_version))/source/
|
2019-07-09 20:40:45 +02:00
|
|
|
$(package)_file_name=boost_$($(package)_version).tar.bz2
|
2020-08-08 22:14:21 +02:00
|
|
|
$(package)_sha256_hash=d73a8da01e8bf8c7eda40b4c84915071a8c8a0df4a6734537ddde4a8580524ee
|
2020-08-08 22:23:14 +02:00
|
|
|
$(package)_dependencies=native_b2
|
2014-07-23 07:31:30 +02:00
|
|
|
|
|
|
|
define $(package)_set_vars
|
2014-09-23 23:03:09 +02:00
|
|
|
$(package)_config_opts_release=variant=release
|
|
|
|
$(package)_config_opts_debug=variant=debug
|
2014-07-23 07:31:30 +02:00
|
|
|
$(package)_config_opts=--layout=tagged --build-type=complete --user-config=user-config.jam
|
2020-08-08 23:30:59 +02:00
|
|
|
$(package)_config_opts+=threading=multi link=static -sNO_COMPRESSION=1
|
2020-05-22 23:00:53 +02:00
|
|
|
$(package)_config_opts_linux=target-os=linux threadapi=pthread runtime-link=shared
|
|
|
|
$(package)_config_opts_darwin=target-os=darwin runtime-link=shared
|
|
|
|
$(package)_config_opts_mingw32=target-os=windows binary-format=pe threadapi=win32 runtime-link=static
|
2014-07-23 07:31:30 +02:00
|
|
|
$(package)_config_opts_x86_64_mingw32=address-model=64
|
|
|
|
$(package)_config_opts_i686_mingw32=address-model=32
|
|
|
|
$(package)_config_opts_i686_linux=address-model=32 architecture=x86
|
2019-10-18 22:03:51 +02:00
|
|
|
$(package)_config_opts_i686_android=address-model=32
|
|
|
|
$(package)_config_opts_aarch64_android=address-model=64
|
|
|
|
$(package)_config_opts_x86_64_android=address-model=64
|
|
|
|
$(package)_config_opts_armv7a_android=address-model=32
|
2014-07-23 07:31:30 +02:00
|
|
|
$(package)_toolset_$(host_os)=gcc
|
2020-05-22 23:00:53 +02:00
|
|
|
$(package)_toolset_darwin=clang
|
2020-05-22 23:03:46 +02:00
|
|
|
ifneq (,$(findstring clang,$($(package)_cxx)))
|
|
|
|
$(package)_toolset_$(host_os)=clang
|
|
|
|
endif
|
2014-07-23 07:31:30 +02:00
|
|
|
$(package)_archiver_$(host_os)=$($(package)_ar)
|
2020-03-05 03:04:08 +01:00
|
|
|
$(package)_config_libraries=filesystem,system,thread,test
|
2016-04-21 22:23:40 +02:00
|
|
|
$(package)_cxxflags=-std=c++11 -fvisibility=hidden
|
2014-11-12 00:21:23 +01:00
|
|
|
$(package)_cxxflags_linux=-fPIC
|
2019-10-18 22:03:51 +02:00
|
|
|
$(package)_cxxflags_android=-fPIC
|
2014-07-23 07:31:30 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_preprocess_cmds
|
2020-01-16 14:23:02 +01:00
|
|
|
echo "using $($(package)_toolset_$(host_os)) : : $($(package)_cxx) : <cxxflags>\"$($(package)_cxxflags) $($(package)_cppflags)\" <linkflags>\"$($(package)_ldflags)\" <archiver>\"$($(package)_archiver_$(host_os))\" <striper>\"$(host_STRIP)\" <ranlib>\"$(host_RANLIB)\" <rc>\"$(host_WINDRES)\" : ;" > user-config.jam
|
2014-07-23 07:31:30 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_config_cmds
|
2020-08-08 22:23:14 +02:00
|
|
|
./bootstrap.sh --without-icu --with-libraries=$($(package)_config_libraries) --with-toolset=$($(package)_toolset_$(host_os)) --with-bjam=b2
|
2014-07-23 07:31:30 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_build_cmds
|
2020-08-08 22:23:14 +02:00
|
|
|
b2 -d2 -j2 -d1 --prefix=$($(package)_staging_prefix_dir) $($(package)_config_opts) toolset=$($(package)_toolset_$(host_os)) stage
|
2014-07-23 07:31:30 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_stage_cmds
|
2020-08-08 22:23:14 +02:00
|
|
|
b2 -d0 -j4 --prefix=$($(package)_staging_prefix_dir) $($(package)_config_opts) toolset=$($(package)_toolset_$(host_os)) install
|
2014-07-23 07:31:30 +02:00
|
|
|
endef
|