]> Git Repo - VerusCoin.git/blob - depends/packages/boost.mk
fix boost
[VerusCoin.git] / depends / packages / boost.mk
1
2 package=boost
3 $(package)_version=1_66_0
4 $(package)_download_path=https://dl.bintray.com/boostorg/release/1.66.0/source
5 $(package)_file_name=$(package)_$($(package)_version).tar.bz2
6 $(package)_sha256_hash=5721818253e6a0989583192f96782c4a98eb6204965316df9f5ad75819225ca9
7
8 define $(package)_set_vars
9 $(package)_config_opts_release=variant=release
10 $(package)_config_opts_debug=variant=debug
11 $(package)_config_opts=--layout=system --user-config=user-config.jam
12 $(package)_config_opts+=threading=multi link=static -sNO_BZIP2=1 -sNO_ZLIB=1
13 $(package)_config_opts_linux=threadapi=pthread runtime-link=shared
14 $(package)_config_opts_darwin=--toolset=darwin-4.2.1 runtime-link=shared
15 $(package)_config_opts_mingw32=binary-format=pe target-os=windows threadapi=win32 runtime-link=static
16 $(package)_config_opts_x86_64_mingw32=address-model=64
17 $(package)_config_opts_i686_mingw32=address-model=32
18 $(package)_config_opts_i686_linux=address-model=32 architecture=x86
19 $(package)_toolset_$(host_os)=gcc
20 $(package)_archiver_$(host_os)=$($(package)_ar)
21 $(package)_toolset_darwin=darwin
22 $(package)_archiver_darwin=$($(package)_libtool)
23 $(package)_config_libraries=chrono,filesystem,program_options,system,thread,test
24 $(package)_cxxflags=-std=c++11 -fvisibility=hidden
25 $(package)_cxxflags_linux=-fPIC
26 endef
27
28 define $(package)_preprocess_cmds
29   echo "using $(boost_toolset_$(host_os)) : : $($(package)_cxx) : <cxxflags>\"$($(package)_cxxflags) $($(package)_cppflags)\" <linkflags>\"$($(package)_ldflags)\" <archiver>\"$(boost_archiver_$(host_os))\" <striper>\"$(host_STRIP)\"  <ranlib>\"$(host_RANLIB)\" <rc>\"$(host_WINDRES)\" : ;" > user-config.jam
30 endef
31
32 define $(package)_config_cmds
33   ./bootstrap.sh --without-icu --with-libraries=$(boost_config_libraries)
34 endef
35
36 define $(package)_build_cmds
37   ./b2 -d2 -j2 -d1 --prefix=$($(package)_staging_prefix_dir) $($(package)_config_opts) stage
38 endef
39
40 define $(package)_stage_cmds
41   ./b2 -d0 -j4 --prefix=$($(package)_staging_prefix_dir) $($(package)_config_opts) install
42 endef
This page took 0.02644 seconds and 4 git commands to generate.