cvw/bin/wally-tool-chain-install.sh

153 lines
6.3 KiB
Bash
Raw Normal View History

#!/bin/bash
2023-01-22 18:53:23 +00:00
###########################################
2023-01-22 19:04:31 +00:00
## Tool chain install script.
2023-01-22 18:53:23 +00:00
##
## Written: Ross Thompson ross1728@gmail.com
## Created: 18 January 2023
## Modified: 22 January 2023
## Modified: 23 March 2023
2023-01-22 18:53:23 +00:00
##
## Purpose: Open source tool chain installation script
##
## A component of the CORE-V-WALLY configurable RISC-V project.
##
## Copyright (C) 2021-23 Harvey Mudd College & Oklahoma State University
##
## SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
##
## Licensed under the Solderpad Hardware License v 2.1 (the “License”); you may not use this file
## except in compliance with the License, or, at your option, the Apache License version 2.0. You
## may obtain a copy of the License at
##
## https:##solderpad.org/licenses/SHL-2.1/
##
## Unless required by applicable law or agreed to in writing, any work 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.
################################################################################################
# Use /opt/riscv for installation - may require running script with sudo
export RISCV="${1:-/opt/riscv}"
export PATH=$PATH:$RISCV/bin
2023-01-22 00:00:14 +00:00
set -e # break on error
# Modify accordingly for your machine
2023-03-23 16:05:37 +00:00
# Increasing NUM_THREADS will speed up parallel compilation of the tools
2023-03-24 00:24:58 +00:00
#NUM_THREADS=2 # for low memory machines > 16GiB
NUM_THREADS=8 # for >= 32GiB
#NUM_THREADS=16 # for >= 64GiB
2023-01-21 23:32:44 +00:00
sudo mkdir -p $RISCV
2023-03-23 16:05:37 +00:00
# Update and Upgrade tools (see https://itsfoss.com/apt-update-vs-upgrade/)
2023-03-23 16:36:50 +00:00
apt update -y
apt upgrade -y
2023-03-23 16:31:17 +00:00
apt install -y git gawk make texinfo bison flex build-essential python3 libz-dev libexpat-dev autoconf device-tree-compiler ninja-build libpixman-1-dev ncurses-base ncurses-bin libncurses5-dev dialog curl wget ftp libgmp-dev libglib2.0-dev python3-pip pkg-config opam z3 zlib1g-dev verilator
2023-03-23 16:31:17 +00:00
# Other python libraries used through the book.
pip3 install matplotlib scipy scikit-learn adjustText lief
2023-01-22 00:00:14 +00:00
# needed for Ubuntu 22.04, gcc cross compiler expects python not python2 or python3.
if ! command -v python &> /dev/null
then
echo "WARNING: python3 was installed as python3 rather than python. Creating symlink."
ln -sf /usr/bin/python3 /usr/bin/python
fi
# gcc cross-compiler (https://github.com/riscv-collab/riscv-gnu-toolchain)
2023-03-23 16:05:37 +00:00
# To install GCC from source can take hours to compile.
#This configuration enables multilib to target many flavors of RISC-V.
# This book is tested with GCC 12.2 (tagged 2023.01.31), but will likely work with newer versions as well.
2023-03-23 16:31:17 +00:00
# Note that GCC12.2 has binutils 2.39, which has a known performance bug that causes
# objdump to run 100x slower than in previous versions, causing riscof to make versy slowly.
# However GCC12.x is needed for bit manipulation instructions. There is an open issue to fix this:
# https://github.com/riscv-collab/riscv-gnu-toolchain/issues/1188
2023-03-23 16:05:37 +00:00
2023-01-21 23:32:44 +00:00
cd $RISCV
2023-01-21 23:24:21 +00:00
git clone https://github.com/riscv/riscv-gnu-toolchain
cd riscv-gnu-toolchain
2023-02-08 00:49:50 +00:00
git checkout 2023.01.31
./configure --prefix=${RISCV} --with-multilib-generator="rv32e-ilp32e--;rv32i-ilp32--;rv32im-ilp32--;rv32iac-ilp32--;rv32imac-ilp32--;rv32imafc-ilp32f--;rv32imafdc-ilp32d--;rv64i-lp64--;rv64ic-lp64--;rv64iac-lp64--;rv64imac-lp64--;rv64imafdc-lp64d--;rv64im-lp64--;"
make -j ${NUM_THREADS}
2023-01-21 23:24:21 +00:00
make install
# elf2hex (https://github.com/sifive/elf2hex)
2023-03-23 16:31:17 +00:00
#The elf2hex utility to converts executable files into hexadecimal files for Verilog simulation.
# Note: The exe2hex utility that comes with Spike doesnt work for our purposes because it doesnt
# handle programs that start at 0x80000000. The SiFive version above is touchy to install.
# For example, if Python version 2.x is in your path, it wont install correctly.
# Also, be sure riscv64-unknown-elf-objcopy shows up in your path in $RISCV/riscv-gnu-toolchain/bin
# at the time of compilation, or elf2hex wont work properly.
2023-01-21 23:32:44 +00:00
cd $RISCV
export PATH=$RISCV/bin:$PATH
2023-01-21 23:24:21 +00:00
git clone https://github.com/sifive/elf2hex.git
cd elf2hex
autoreconf -i
./configure --target=riscv64-unknown-elf --prefix=$RISCV
make
make install
# QEMU (https://www.qemu.org/docs/master/system/target-riscv.html)
2023-01-21 23:32:44 +00:00
cd $RISCV
2023-01-21 23:24:21 +00:00
git clone --recurse-submodules https://github.com/qemu/qemu
cd qemu
./configure --target-list=riscv64-softmmu --prefix=$RISCV
make -j ${NUM_THREADS}
2023-01-21 23:24:21 +00:00
make install
# Spike (https://github.com/riscv-software-src/riscv-isa-sim)
2023-03-23 16:33:56 +00:00
# Spike also takes a while to install and compile, but this can be done concurrently
#with the GCC installation. After the build, we need to change two Makefiles to support atomic instructions.
2023-01-21 23:32:44 +00:00
cd $RISCV
2023-01-21 23:24:21 +00:00
git clone https://github.com/riscv-software-src/riscv-isa-sim
mkdir -p riscv-isa-sim/build
2023-01-21 23:24:21 +00:00
cd riscv-isa-sim/build
2023-02-08 00:49:50 +00:00
../configure --prefix=$RISCV
make -j ${NUM_THREADS}
2023-01-21 23:24:21 +00:00
make install
cd ../arch_test_target/spike/device
sed -i 's/--isa=rv32ic/--isa=rv32iac/' rv32i_m/privilege/Makefile.include
sed -i 's/--isa=rv64ic/--isa=rv64iac/' rv64i_m/privilege/Makefile.include
# Sail (https://github.com/riscv/sail-riscv)
2023-03-23 16:33:56 +00:00
# Sail is the new golden reference model for RISC-V. Sail is written in OCaml, which
2023-03-23 16:31:17 +00:00
# is an object-oriented extension of ML, which in turn is a functional programming
2023-03-23 16:33:56 +00:00
# language suited to formal verification. OCaml is installed with the opam OCcaml
# package manager. Sail has so many dependencies that it can be difficult to install.
# This script works for Ubuntu.
2023-03-23 16:31:17 +00:00
2023-03-23 16:33:56 +00:00
# Do these commands only for RedHat / Rocky 8 to build from source.
2023-03-23 16:31:17 +00:00
#cd $RISCV
#git clone https://github.com/Z3Prover/z3.git
#cd z3
#python scripts/mk_make.py
#cd build
#make -j ${NUM_THREADS}
#make install
#cd ../..
#pip3 install chardet==3.0.4
#pip3 install urllib3==1.22
2023-01-21 23:24:21 +00:00
opam init -y --disable-sandboxing
opam switch create ocaml-base-compiler.4.06.1
opam install sail -y
2023-01-21 23:24:21 +00:00
eval $(opam config env)
git clone https://github.com/riscv/sail-riscv.git
cd sail-riscv
# Current bug in Sail - use hash that works for Wally
# (may remove later if Sail is ever fixed)
git checkout 4d05aa1698a0003a4f6f99e1380c743711c32052
make -j ${NUM_THREADS}
ARCH=RV32 make -j ${NUM_THREADS}
ARCH=RV64 make -j ${NUM_THREADS}
2023-01-22 04:14:58 +00:00
ln -sf $RISCV/sail-riscv/c_emulator/riscv_sim_RV64 /usr/bin/riscv_sim_RV64
ln -sf $RISCV/sail-riscv/c_emulator/riscv_sim_RV32 /usr/bin/riscv_sim_RV32
2023-01-21 23:24:21 +00:00
pip3 install testresources
pip3 install riscof --ignore-installed PyYAML