Skip to content
Open
Show file tree
Hide file tree
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: 10 additions & 3 deletions scripts/boost/1.61.0/base.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
#!/usr/bin/env bash

# NOTE: use the ./util/new_boost.sh script to create new versions
# NOTE: use the ./utils/new_boost.sh script to create new versions

function guess_compiler_name() {
case $1 in
ccache| */ccache) shift;;
esac
printf '%s' "${1##*/}"
}

export MASON_VERSION=1.61.0
export BOOST_VERSION=${MASON_VERSION//./_}
export BOOST_TOOLSET=$(CC=${CC#ccache }; basename -- ${CC%% *})
export BOOST_TOOLSET_CXX=$(CXX=${CXX#ccache }; basename -- ${CXX%% *})
export BOOST_TOOLSET=$(guess_compiler_name $CC)
export BOOST_TOOLSET_CXX=$(guess_compiler_name $CXX)
export BOOST_ARCH="x86"
export BOOST_SHASUM=0a72c541e468d76a957adc14e54688dd695d566f
11 changes: 9 additions & 2 deletions scripts/boost/1.62.0/base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,17 @@

# NOTE: use the ./utils/new_boost.sh script to create new versions

function guess_compiler_name() {
case $1 in
ccache| */ccache) shift;;
esac
printf '%s' "${1##*/}"
}

export MASON_VERSION=1.62.0
export BOOST_VERSION=${MASON_VERSION//./_}
export BOOST_TOOLSET=$(CC=${CC#ccache }; basename -- ${CC%% *})
export BOOST_TOOLSET_CXX=$(CXX=${CXX#ccache }; basename -- ${CXX%% *})
export BOOST_TOOLSET=$(guess_compiler_name $CC)
export BOOST_TOOLSET_CXX=$(guess_compiler_name $CXX)
export BOOST_ARCH="x86"
export BOOST_SHASUM=f4151eec3e9394146b7bebcb17b83149de0a6c23
# special override to ensure each library shares the cached download
Expand Down
11 changes: 9 additions & 2 deletions scripts/boost/1.63.0/base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,17 @@

# NOTE: use the ./utils/new_boost.sh script to create new versions

function guess_compiler_name() {
case $1 in
ccache| */ccache) shift;;
esac
printf '%s' "${1##*/}"
}

export MASON_VERSION=1.63.0
export BOOST_VERSION=${MASON_VERSION//./_}
export BOOST_TOOLSET=$(CC=${CC#ccache }; basename -- ${CC%% *})
export BOOST_TOOLSET_CXX=$(CXX=${CXX#ccache }; basename -- ${CXX%% *})
export BOOST_TOOLSET=$(guess_compiler_name $CC)
export BOOST_TOOLSET_CXX=$(guess_compiler_name $CXX)
export BOOST_ARCH="x86"
export BOOST_SHASUM=5c5cf0fd35a5950ed9e00ba54153df47747803f9
# special override to ensure each library shares the cached download
Expand Down
11 changes: 9 additions & 2 deletions scripts/boost/1.64.0/base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,17 @@

# NOTE: use the ./utils/new_boost.sh script to create new versions

function guess_compiler_name() {
case $1 in
ccache| */ccache) shift;;
esac
printf '%s' "${1##*/}"
}

export MASON_VERSION=1.64.0
export BOOST_VERSION=${MASON_VERSION//./_}
export BOOST_TOOLSET=$(CC=${CC#ccache }; basename -- ${CC%% *})
export BOOST_TOOLSET_CXX=$(CXX=${CXX#ccache }; basename -- ${CXX%% *})
export BOOST_TOOLSET=$(guess_compiler_name $CC)
export BOOST_TOOLSET_CXX=$(guess_compiler_name $CXX)
export BOOST_ARCH="x86"
export BOOST_SHASUM=6e4dad39f14937af73ace20d2279e2468aad14d8
# special override to ensure each library shares the cached download
Expand Down
11 changes: 9 additions & 2 deletions scripts/boost/1.65.1/base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,17 @@

# NOTE: use the ./utils/new_boost.sh script to create new versions

function guess_compiler_name() {
case $1 in
ccache| */ccache) shift;;
esac
printf '%s' "${1##*/}"
}

export MASON_VERSION=1.65.1
export BOOST_VERSION=${MASON_VERSION//./_}
export BOOST_TOOLSET=$(CC=${CC#ccache }; basename -- ${CC%% *})
export BOOST_TOOLSET_CXX=$(CXX=${CXX#ccache }; basename -- ${CXX%% *})
export BOOST_TOOLSET=$(guess_compiler_name $CC)
export BOOST_TOOLSET_CXX=$(guess_compiler_name $CXX)
export BOOST_ARCH="x86"
export BOOST_SHASUM=094a03dd6f07e740719b944cfe01a278f5326315
# special override to ensure each library shares the cached download
Expand Down
11 changes: 9 additions & 2 deletions scripts/boost/1.66.0/base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,17 @@

# NOTE: use the ./utils/new_boost.sh script to create new versions

function guess_compiler_name() {
case $1 in
ccache| */ccache) shift;;
esac
printf '%s' "${1##*/}"
}

export MASON_VERSION=1.66.0
export BOOST_VERSION=${MASON_VERSION//./_}
export BOOST_TOOLSET=$(CC=${CC#ccache }; basename -- ${CC%% *})
export BOOST_TOOLSET_CXX=$(CXX=${CXX#ccache }; basename -- ${CXX%% *})
export BOOST_TOOLSET=$(guess_compiler_name $CC)
export BOOST_TOOLSET_CXX=$(guess_compiler_name $CXX)
export BOOST_ARCH="x86"
export BOOST_SHASUM=5552748d2f0aede9ad1dfbb7f16832bbb054ca4d
# special override to ensure each library shares the cached download
Expand Down
11 changes: 9 additions & 2 deletions scripts/boost/1.67.0/base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,17 @@

# NOTE: use the ./utils/new_boost.sh script to create new versions

function guess_compiler_name() {
case $1 in
ccache| */ccache) shift;;
esac
printf '%s' "${1##*/}"
}

export MASON_VERSION=1.67.0
export BOOST_VERSION=${MASON_VERSION//./_}
export BOOST_TOOLSET=$(CC=${CC#ccache }; basename -- ${CC%% *})
export BOOST_TOOLSET_CXX=$(CXX=${CXX#ccache }; basename -- ${CXX%% *})
export BOOST_TOOLSET=$(guess_compiler_name $CC)
export BOOST_TOOLSET_CXX=$(guess_compiler_name $CXX)
export BOOST_ARCH="x86"
export BOOST_SHASUM=6dde6a5f874a5dfa75865e4430ff9248a43cab07
# special override to ensure each library shares the cached download
Expand Down