ubuntu_install_chisel.sh 1.52 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#!/bin/bash
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied.  See the License for the
# specific language governing permissions and limitations
# under the License.

set -e
set -u
set -o pipefail

23 24
# The https:// source added below required an apt https transport
# support.
25
apt-get update && apt-get install -y apt-transport-https flex bison
26

27
# Install the necessary dependencies for Chisel
28 29
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
30 31 32

# Note: The settings in vta/hardware/chisel/project/build.properties
# file determines required sbt version.
33
apt-get update && apt-get install -y sbt=1.1.1
34 35 36 37 38 39 40 41

# 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