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
562 B
27 lines
562 B
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
# 接收参数
|
|
TARGET=$1
|
|
|
|
|
|
|
|
|
|
echo -e "\n正在编译和安装 英特尔高性能光线追踪内核(Embree)……\n"
|
|
|
|
${SHELLROOT}/utils/begin_stage Embree embree-*.tar.gz
|
|
cd ${SHELLROOT}/tempDIR/`echo embree-*.tar.gz | sed 's/\*.*//'`*
|
|
|
|
cp -v ${SHELLROOT}/installLib/embree-install.sh .
|
|
|
|
sleep 2
|
|
if ./embree-install.sh $TARGET ; then
|
|
echo -e "\n * 英特尔高性能光线追踪内核(Embree),编译和安装成功\n"
|
|
else
|
|
echo -e "\n !!! 英特尔高性能光线追踪内核(Embree),编译和安装失败\n"
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|