mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-19 03:44:46 -04:00
set default NUM_JOBS value to be the same accross all scripts (#1688)
This commit is contained in:
parent
b6bd2a9583
commit
61fb0cdd5c
3 changed files with 3 additions and 6 deletions
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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).
|
||||
|
|
Loading…
Add table
Reference in a new issue