18 lines
364 B
Bash
Executable File
18 lines
364 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# create the different verilator builds arg (subproject)
|
|
|
|
# turn echo on and error on earliest command
|
|
set -ex
|
|
|
|
# init all submodules
|
|
cd $HOME/project
|
|
./scripts/init-submodules-no-riscv-tools.sh
|
|
|
|
# enter the verisim directory and build the specific config
|
|
cd sims/verisim
|
|
make clean
|
|
make SUB_PROJECT=$1 JAVA_ARGS="-Xmx2G -Xss8M"
|
|
|
|
rm -rf ../../project
|