mirror of
https://github.com/openhwgroup/cvw.git
synced 2025-06-27 17:01:20 -04:00
63 lines
2.9 KiB
Bash
Executable file
63 lines
2.9 KiB
Bash
Executable file
#!/bin/bash
|
|
###########################################
|
|
## Tool chain install script.
|
|
##
|
|
## Written: Jordan Carlin, jcarlin@hmc.edu
|
|
## Created: May 30 2025
|
|
## Modified:
|
|
##
|
|
## Purpose: WALLY python virtual environment setup script
|
|
##
|
|
## A component of the CORE-V-WALLY configurable RISC-V project.
|
|
## https://github.com/openhwgroup/cvw
|
|
##
|
|
## Copyright (C) 2021-24 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.
|
|
################################################################################################
|
|
|
|
# NOTE: These three tools need to be kept in sync. Update all versions simultaneously.
|
|
export RISCOF_VERSION=be84132874963e001c14d846a140a3edd9c9d48f # Last commit as May 31, 2025
|
|
export RISCV_CONFIG_VERSION=54171f205be802f9f8e0b1cf4156a6cc826fb467 # Last commit as of May 31, 2025
|
|
export RISCV_ISAC_VERSION=450de2eabfe4fcdfdf54135b5ab2dbb1d94805f8 # Last commit as of May 31, 2025 (commit hash of riscv-arch-test repo)
|
|
|
|
set -e # break on error
|
|
# If run standalone, check environment. Otherwise, use info from main install script
|
|
if [ -z "$FAMILY" ]; then
|
|
dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
WALLY="$(dirname $(dirname "$dir"))"
|
|
export WALLY
|
|
source "${dir}"/../wally-environment-check.sh
|
|
fi
|
|
|
|
# Create python virtual environment so the python command targets desired version of python
|
|
# and installed packages are isolated from the rest of the system.
|
|
section_header "Setting up Python Environment"
|
|
STATUS="python_virtual_environment"
|
|
cd "$RISCV"
|
|
if [ ! -e "$RISCV"/riscv-python/bin/activate ]; then
|
|
"$PYTHON_VERSION" -m venv riscv-python --prompt cvw
|
|
echo -e "${OK_COLOR}Python virtual environment created!\nInstalling pip packages.${ENDC}"
|
|
else
|
|
echo -e "${OK_COLOR}Python virtual environment already exists.\nUpdating pip packages.${ENDC}"
|
|
fi
|
|
|
|
source "$RISCV"/riscv-python/bin/activate # activate python virtual environment
|
|
|
|
# Install python packages, including RISCOF (https://github.com/riscv-software-src/riscof.git)
|
|
# RISCOF is a RISC-V compliance test framework that is used to run the RISC-V Arch Tests.
|
|
STATUS="python packages"
|
|
pip --require-virtualenv install --upgrade pip && pip --require-virtualenv install --upgrade -r "$WALLY"/bin/requirements.txt
|
|
|
|
echo -e "${SUCCESS_COLOR}Python environment successfully configured!${ENDC}"
|