1 Star 0 Fork 0

jxm/dosbox-x

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
env-gcc-8.4.sh 423 Bytes
一键复制 编辑 原始数据 按行查看 历史
Robert de Rooy 提交于 2023-04-15 15:39 . Cleanup Bash scripts.
#!/usr/bin/env bash
#
# Look for GCC-8.4
x=$(which gcc-8.4 2>/dev/null)
if [ -n "${x}" ]; then
gdir=$(dirname "${x}")
elif [ -f "/usr/gcc-8.4/bin/gcc" ]; then
gdir="/usr/gcc-8.4/bin"
else
echo "Cannot find GCC 8.4"
exit 1
fi
echo "GCC is in ${gdir}"
CC="${gdir}/gcc"
CPP="${gdir}/cpp"
CXX="${gdir}/g++"
PATH="${gdir}:${PATH}"
export CC CPP CXX PATH
echo "Starting subshell. Type exit to exit."
${SHELL}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/nowaits/dosbox-x.git
[email protected]:nowaits/dosbox-x.git
nowaits
dosbox-x
dosbox-x
master

搜索帮助