use the same tbb as xenial

release/4.3a0
acxz 2020-03-26 16:32:05 -04:00
parent 80fc06cad7
commit 026c794a92
1 changed files with 7 additions and 6 deletions

View File

@ -3,13 +3,14 @@
# install TBB with _debug.so files
function install_tbb()
{
wget https://github.com/oneapi-src/oneTBB/releases/download/4.4.5/tbb44_20160526oss_lin.tgz
if [ $(uname -s) == "Linux"]; then
tar -xvf tbb44_20160526oss_lin.tgz
elif [ $(uname -s) == "Linux" ]; then
tar -xvf tbb44_20160526oss_mac.tgz
if [ $(uname -s) == "Linux" ]; then
wget https://github.com/oneapi-src/oneTBB/releases/download/4.4.2/tbb44_20151115oss_lin.tgz
tar -xvf tbb44_20151115oss_lin.tgz
elif [ $(uname -s) == "Darwin" ]; then
wget https://github.com/oneapi-src/oneTBB/releases/download/4.4.2/tbb44_20151115oss_osx.tgz
tar -xvf tbb44_20151115oss_osx.tgz
fi
source tbb44_20160526oss/bin/tbbvars.sh intel64 linux auto_tbbroot
source tbb44_20151115oss/bin/tbbvars.sh intel64 linux auto_tbbroot
}
# common tasks before either build or test