Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion docker/install/ubuntu_install_chisel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,15 @@ apt-get install apt-transport-https
echo "deb https://dl.bintray.com/sbt/debian /" | tee -a /etc/apt/sources.list.d/sbt.list
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2EE0EA64E40A89B84B2DF73499E82A75642AC823
apt-get update
apt-get install -y verilator sbt

# Note: The settings in vta/hardware/chisel/project/build.properties
# file determines required sbt version.
apt-get install -y sbt=1.1.1

# Install the Verilator with major version 4.0
wget https://www.veripool.org/ftp/verilator-4.010.tgz
tar xf verilator-4.010.tgz
cd verilator-4.010/
./configure
make -j4
make install