You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
484 B

  1. #!/bin/bash
  2. # 接收参数
  3. TARGET=$1
  4. echo -e "\n正在编译和安装 并行编程框架(TBB)……\n"
  5. ${SHELLROOT}/utils/begin_stage TBB tbb*_lin.tgz
  6. cd ${SHELLROOT}/tempDIR/`echo tbb*_lin.tgz | sed 's/\*.*//'`*
  7. cp -v ${SHELLROOT}/installLib/tbb-install.sh .
  8. sleep 2
  9. if ./tbb-install.sh $TARGET ; then
  10. echo -e "\n * 并行编程框架(TBB),编译和安装成功\n"
  11. else
  12. echo -e "\n !!! 并行编程框架(TBB),编译和安装失败\n"
  13. exit 1
  14. fi
  15. exit 0