Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions pkgs/boost/boost.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,15 @@ build_stages:
bash: |
patch -p2 < _hashdist/boost_1_55_fix_warnings.patch

- name: set-address_model
before: bjam
handler: bash
bash: |
address_model={{address_model}}
if [ -z ${address_model} ]; then
address_model=$(getconf LONG_BIT)
fi

- name: bjam
after: bootstrap
handler: bash
Expand All @@ -57,7 +66,7 @@ build_stages:
echo "using mpi ;" > user-config.jam
./bjam -q \
toolset={{toolset}} \
address-model={{address_model}} \
address-model=${address_model} \
-j ${HASHDIST_CPU_COUNT} \
--user-config=user-config.jam \
--build-dir=_build\
Expand All @@ -75,7 +84,7 @@ build_stages:
bash: |
./bjam -q \
toolset={{toolset}} \
address-model={{address_model}} \
address-model=${address_model} \
-j ${HASHDIST_CPU_COUNT} \
--without-context \
--without-coroutine \
Expand Down