1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-04-17 08:41:38 +00:00

interchange: Fix nexus cmake review comments

Signed-off-by: gatecat <gatecat@ds0.me>
This commit is contained in:
gatecat
2021-03-31 10:11:09 +01:00
parent 9259763599
commit 3678eff5dc
4 changed files with 11 additions and 16 deletions

View File

@@ -35,19 +35,19 @@ function get_dependencies {
python3 -m pip install -r requirements.txt
popd
## Install RapidWright
git clone https://github.com/Xilinx/RapidWright.git ${RAPIDWRIGHT_PATH}
pushd ${RAPIDWRIGHT_PATH}
make update_jars
popd
# Install prjoxide
if [ ${DEVICE} == "LIFCL-17" ]; then
# Install prjoxide
curl --proto '=https' -sSf https://sh.rustup.rs | sh -s -- -y
git clone --recursive https://github.com/gatecat/prjoxide.git
pushd prjoxide/libprjoxide
PATH=$PATH:$HOME/.cargo/bin cargo install --path prjoxide --all-features
popd
else
# Install RapidWright
git clone https://github.com/Xilinx/RapidWright.git ${RAPIDWRIGHT_PATH}
pushd ${RAPIDWRIGHT_PATH}
make update_jars
popd
fi
}