加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
prepare_adi_lib.sh 570 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jiao Xianjun 提交于 2020-06-29 15:07 . Update prepare_adi_lib.sh
#!/bin/bash
if [ "$#" -ne 1 ]; then
echo "You must enter exactly 1 arguments: \$XILINX_DIR"
exit 1
fi
XILINX_DIR=$1
if [ -d "$XILINX_DIR/Vivado" ]; then
echo "\$XILINX_DIR is found!"
else
echo "\$XILINX_DIR is not correct. Please check!"
exit 1
fi
home_dir=$(pwd)
set -x
git submodule init adi-hdl
git submodule update adi-hdl
cd ./adi-hdl/library
# git reset --hard 2019_r1
git reset --hard f61d9707eb0a62533efd6facab59ab2444da94c9
# # the lib will be built when needed
# source $XILINX_DIR/Vivado/2018.3/settings64.sh
# make
cd $home_dir
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化