set default NUM_JOBS value to be the same accross all scripts (#1688)

This commit is contained in:
valentinThomazic 2023-12-08 16:57:46 +01:00 committed by GitHub
parent b6bd2a9583
commit 61fb0cdd5c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 6 deletions

View file

@ -3,8 +3,8 @@
ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)
cd $ROOT/tmp
if [ -z ${NUM_JOBS} ]; then
NUM_JOBS=4
if [ -z "$NUM_JOBS" ]; then
NUM_JOBS=1
fi
VERILATOR_REPO="https://github.com/verilator/verilator.git"

View file

@ -63,9 +63,6 @@ else
echo "Skipping Verilator setup on user's request (\$VERILATOR_INSTALL_DIR = \"NO\")."
fi
# number of parallel jobs to use for make commands and simulation
export NUM_JOBS=24
# install the required tools for cva6
if [ -z "$CVA6_REPO" ]; then
CVA6_REPO="https://github.com/openhwgroup/cva6.git"

View file

@ -8,7 +8,7 @@
# Original Author: Jean-Roch COULON - Thales
if [ -z "$NUM_JOBS" ]; then
NUM_JOBS=4
NUM_JOBS=1
fi
# Ensure the location of tools is known (usually, .../core-v-verif/tools).