2014-07-23 07:31:30 +02:00
|
|
|
package=boost
|
2022-02-23 18:00:06 +01:00
|
|
|
$(package)_version=1.77.0
|
2022-02-13 12:17:33 +01:00
|
|
|
$(package)_download_path=https://boostorg.jfrog.io/artifactory/main/release/$($(package)_version)/source/
|
|
|
|
$(package)_file_name=boost_$(subst .,_,$($(package)_version)).tar.bz2
|
2022-02-23 18:00:06 +01:00
|
|
|
$(package)_sha256_hash=fc9f85fc030e233142908241af7a846e60630aa7388de9a5fafb1f3a26840854
|
2021-08-27 21:12:09 +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
|
2021-08-27 21:12:09 +02:00
|
|
|
$(package)_config_opts+=threading=multi link=static -sNO_COMPRESSION=1
|
2020-04-29 22:30:40 +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
|
2021-08-27 21:12:09 +02: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
|
2021-11-24 05:32:59 +01: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
|
2020-04-29 22:30:40 +02:00
|
|
|
ifneq (,$(findstring clang,$($(package)_cxx)))
|
2021-08-27 21:12:09 +02:00
|
|
|
$(package)_toolset_$(host_os)=clang
|
|
|
|
else
|
|
|
|
$(package)_toolset_$(host_os)=gcc
|
2020-04-29 22:30:40 +02:00
|
|
|
endif
|
2024-08-06 19:40:56 +02:00
|
|
|
$(package)_config_libraries=test
|
2024-08-06 19:42:48 +02:00
|
|
|
$(package)_cxxflags+=-std=c++11
|
2014-11-12 00:21:23 +01:00
|
|
|
$(package)_cxxflags_linux=-fPIC
|
2023-06-30 17:51:32 +02:00
|
|
|
$(package)_cxxflags_freebsd=-fPIC
|
2023-06-30 18:00:24 +02:00
|
|
|
$(package)_cxxflags_openbsd=-fPIC
|
2021-11-24 05:32:59 +01:00
|
|
|
$(package)_cxxflags_android=-fPIC
|
2021-12-22 04:18:18 +01:00
|
|
|
$(package)_cxxflags_x86_64=-fcf-protection=full
|
2014-07-23 07:31:30 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_preprocess_cmds
|
2021-08-27 21:12:09 +02: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 07:31:30 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_config_cmds
|
2021-08-27 21:12:09 +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
|
2021-08-27 21:12:09 +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
|
2021-10-21 04:52:18 +02:00
|
|
|
b2 -d0 -j4 --prefix=$($(package)_staging_prefix_dir) $($(package)_config_opts) toolset=$($(package)_toolset_$(host_os)) --no-cmake-config install
|
2014-07-23 07:31:30 +02:00
|
|
|
endef
|