use the same tbb as xenial
parent
80fc06cad7
commit
026c794a92
13
.travis.sh
13
.travis.sh
|
@ -3,13 +3,14 @@
|
||||||
# install TBB with _debug.so files
|
# install TBB with _debug.so files
|
||||||
function install_tbb()
|
function install_tbb()
|
||||||
{
|
{
|
||||||
wget https://github.com/oneapi-src/oneTBB/releases/download/4.4.5/tbb44_20160526oss_lin.tgz
|
if [ $(uname -s) == "Linux" ]; then
|
||||||
if [ $(uname -s) == "Linux"]; then
|
wget https://github.com/oneapi-src/oneTBB/releases/download/4.4.2/tbb44_20151115oss_lin.tgz
|
||||||
tar -xvf tbb44_20160526oss_lin.tgz
|
tar -xvf tbb44_20151115oss_lin.tgz
|
||||||
elif [ $(uname -s) == "Linux" ]; then
|
elif [ $(uname -s) == "Darwin" ]; then
|
||||||
tar -xvf tbb44_20160526oss_mac.tgz
|
wget https://github.com/oneapi-src/oneTBB/releases/download/4.4.2/tbb44_20151115oss_osx.tgz
|
||||||
|
tar -xvf tbb44_20151115oss_osx.tgz
|
||||||
fi
|
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
|
# common tasks before either build or test
|
||||||
|
|
Loading…
Reference in New Issue