add basic script repl

This commit is contained in:
Matthieu Jolimaitre 2024-10-25 01:44:27 +02:00
parent 0d1a12202f
commit a2cca0be4e
15 changed files with 1041 additions and 61 deletions

9
setup
View file

@ -4,3 +4,12 @@ set -e
rustup target add x86_64-unknown-none
rustup component add rust-src
rustup component add llvm-tools-preview
if ! cargo bootimage --help > /dev/null 2>&1
then echo "
WARNING cargo-bootimage is not installed.
Get it from your package manager or run :
cargo install cargo-bootimage
" && exit 1
fi