diff options
author | Marvin Borner | 2020-08-27 23:28:00 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-27 23:28:00 +0200 |
commit | 2ccebb5ca8239b2cc9c635c17988f58b97ae7535 (patch) | |
tree | 719e5e6288f50b8b1dc867f1c88644ed9b3973ba /run | |
parent | b9e24d834ca1a979a0ae433646252d339ef5a81b (diff) |
Added time consumption warning
Diffstat (limited to 'run')
-rwxr-xr-x | run | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -14,6 +14,14 @@ qemu_with_flags() { make_cross() { if [ ! -d "./cross/" ]; then + + echo -n "Do you want to compile a cross compiler (this can take up to 20 minutes)? [yn] " + read -r answer + if ! [ "$answer" != "${answer#[Yy]}" ]; then + echo "The compilation of melvix requires a cross compiler!" + exit 1 + fi + # Create directory mkdir -p cross cd cross |