2014-07-23 01:31:30 -04:00
|
|
|
package=boost
|
2022-01-10 14:54:31 +02:00
|
|
|
$(package)_version=1.71.0
|
|
|
|
$(package)_download_path=https://boostorg.jfrog.io/artifactory/main/release/$($(package)_version)/source/
|
|
|
|
$(package)_file_name=boost_$(subst .,_,$($(package)_version)).tar.bz2
|
2020-08-08 16:14:21 -04:00
|
|
|
$(package)_sha256_hash=d73a8da01e8bf8c7eda40b4c84915071a8c8a0df4a6734537ddde4a8580524ee
|
2020-08-08 16:23:14 -04:00
|
|
|
$(package)_dependencies=native_b2
|
2022-01-07 13:16:30 +08:00
|
|
|
$(package)_patches=fix_openbsd_test_lib.patch
|
2014-07-23 01:31:30 -04:00
|
|
|
|
|
|
|
define $(package)_set_vars
|
2014-09-23 17:03:09 -04:00
|
|
|
$(package)_config_opts_release=variant=release
|
|
|
|
$(package)_config_opts_debug=variant=debug
|
2014-07-23 01:31:30 -04:00
|
|
|
$(package)_config_opts=--layout=tagged --build-type=complete --user-config=user-config.jam
|
2020-08-08 17:30:59 -04:00
|
|
|
$(package)_config_opts+=threading=multi link=static -sNO_COMPRESSION=1
|
2020-05-22 17:00:53 -04: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
|
2020-08-08 17:31:58 -04:00
|
|
|
$(package)_config_opts_x86_64=architecture=x86 address-model=64
|
|
|
|
$(package)_config_opts_i686=architecture=x86 address-model=32
|
|
|
|
$(package)_config_opts_aarch64=address-model=64
|
|
|
|
$(package)_config_opts_armv7a=address-model=32
|
2020-05-22 17:03:46 -04:00
|
|
|
ifneq (,$(findstring clang,$($(package)_cxx)))
|
2020-08-08 17:32:37 -04:00
|
|
|
$(package)_toolset_$(host_os)=clang
|
|
|
|
else
|
|
|
|
$(package)_toolset_$(host_os)=gcc
|
2020-05-22 17:03:46 -04:00
|
|
|
endif
|
2020-12-22 11:55:04 +08:00
|
|
|
$(package)_config_libraries=test
|
2021-10-21 10:59:04 +08:00
|
|
|
$(package)_cxxflags+=-std=c++17
|
2014-11-11 18:21:23 -05:00
|
|
|
$(package)_cxxflags_linux=-fPIC
|
2022-01-03 13:21:58 +08:00
|
|
|
$(package)_cxxflags_freebsd=-fPIC
|
2022-01-07 13:16:30 +08:00
|
|
|
$(package)_cxxflags_openbsd=-fPIC
|
2019-10-18 22:03:51 +02:00
|
|
|
$(package)_cxxflags_android=-fPIC
|
2021-10-15 15:35:32 +08:00
|
|
|
$(package)_cxxflags_x86_64=-fcf-protection=full
|
2014-07-23 01:31:30 -04:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_preprocess_cmds
|
2022-01-07 13:16:30 +08:00
|
|
|
patch -p1 < $($(package)_patch_dir)/fix_openbsd_test_lib.patch && \
|
2020-08-08 17:33:57 -04:00
|
|
|
echo "using $($(package)_toolset_$(host_os)) : : $($(package)_cxx) : <cflags>\"$($(package)_cflags)\" <cxxflags>\"$($(package)_cxxflags)\" <compileflags>\"$($(package)_cppflags)\" <linkflags>\"$($(package)_ldflags)\" <archiver>\"$($(package)_ar)\" <striper>\"$(host_STRIP)\" <ranlib>\"$(host_RANLIB)\" <rc>\"$(host_WINDRES)\" : ;" > user-config.jam
|
2014-07-23 01:31:30 -04:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_config_cmds
|
2020-08-08 16:23:14 -04:00
|
|
|
./bootstrap.sh --without-icu --with-libraries=$($(package)_config_libraries) --with-toolset=$($(package)_toolset_$(host_os)) --with-bjam=b2
|
2014-07-23 01:31:30 -04:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_build_cmds
|
2020-08-08 16:23:14 -04:00
|
|
|
b2 -d2 -j2 -d1 --prefix=$($(package)_staging_prefix_dir) $($(package)_config_opts) toolset=$($(package)_toolset_$(host_os)) stage
|
2014-07-23 01:31:30 -04:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_stage_cmds
|
2021-10-21 10:52:18 +08:00
|
|
|
b2 -d0 -j4 --prefix=$($(package)_staging_prefix_dir) $($(package)_config_opts) toolset=$($(package)_toolset_$(host_os)) --no-cmake-config install
|
2014-07-23 01:31:30 -04:00
|
|
|
endef
|