Skip to content
Snippets Groups Projects
Commit 9b521da3 authored by Yaman Umuroglu's avatar Yaman Umuroglu
Browse files

[Deps] remove xrt deps installation

causing problems on many systems
parent aa1d0070
No related branches found
No related tags found
No related merge requests found
......@@ -40,12 +40,6 @@ RUN apt-get install -y verilator zsh
RUN apt-get -y install sshpass wget unzip
RUN echo "StrictHostKeyChecking no" >> /etc/ssh/ssh_config
# install XRT dependencies
RUN wget https://raw.githubusercontent.com/Xilinx/XRT/master/src/runtime_src/tools/scripts/xrtdeps.sh
RUN apt-get update
RUN bash xrtdeps.sh
RUN rm xrtdeps.sh
# cloning dependency repos
# Brevitas
RUN git clone https://github.com/Xilinx/brevitas.git /workspace/brevitas
......
......@@ -46,12 +46,6 @@ RUN apt-get install -y verilator nano zsh rsync
RUN apt-get -y install sshpass wget unzip
RUN echo "StrictHostKeyChecking no" >> /etc/ssh/ssh_config
# install XRT dependencies
RUN wget https://raw.githubusercontent.com/Xilinx/XRT/master/src/runtime_src/tools/scripts/xrtdeps.sh
RUN apt-get update
RUN bash xrtdeps.sh
RUN rm xrtdeps.sh
COPY requirements.txt .
RUN pip install -r requirements.txt
RUN rm requirements.txt
......
......@@ -52,6 +52,11 @@ if [ ! -z "$VITIS_PATH" ];then
source $VITIS_PATH/settings64.sh
fi
if [ ! -z "$XILINX_XRT" ];then
# TODO install XRT dependencies?
# wget https://raw.githubusercontent.com/Xilinx/XRT/master/src/runtime_src/tools/scripts/xrtdeps.sh
# apt-get update
# bash xrtdeps.sh
# rm xrtdeps.sh
# source XRT
source $XILINX_XRT/setup.sh
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment