Add command-line parser and some debug options #318
|
@ -15,6 +15,6 @@ else
|
|||
fi
|
||||
|
||||
rm -f *.o
|
||||
$nac3standalone $1
|
||||
$nac3standalone "$@"
|
||||
rustc -o demo demo.rs -Crelocation-model=static -Clink-arg=./module.o
|
||||
|
||||
./demo
|
||||
|
|
Loading…
Reference in New Issue
The script has
set -e
above. I suspect these|| exit
changes are not necessary?I didn't notice that it was there. Removed the
|| exit
changes.