minor bash script edits

shebang added
This commit is contained in:
stnolting 2022-03-29 21:08:21 +02:00
parent 8f589874eb
commit dcf77141eb
3 changed files with 9 additions and 1 deletions

View file

@ -1,2 +1,6 @@
#!/usr/bin/env bash
set -e
echo "Generating dhrystone executable..."
make USER_FLAGS+="-DRUN_DHRYSTONE -DDHRY_ITERS=2000000 -DNOENUM" MARCH=rv32imc EFFORT=-O3 clean_all exe

View file

@ -1,2 +1,6 @@
#!/usr/bin/env bash
set -e
echo "Starting processor check simulation..."
make USER_FLAGS+="-DRUN_CHECK -DUART0_SIM_MODE -DUART1_SIM_MODE -g" MARCH=rv32imac clean_all sim

View file

@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env bash
set -e