aboutsummaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorMarvin Borner2020-08-27 23:28:00 +0200
committerMarvin Borner2020-08-27 23:28:00 +0200
commit2ccebb5ca8239b2cc9c635c17988f58b97ae7535 (patch)
tree719e5e6288f50b8b1dc867f1c88644ed9b3973ba /run
parentb9e24d834ca1a979a0ae433646252d339ef5a81b (diff)
Added time consumption warning
Diffstat (limited to 'run')
-rwxr-xr-xrun8
1 files changed, 8 insertions, 0 deletions
diff --git a/run b/run
index 2fe9082..1592b5a 100755
--- a/run
+++ b/run
@@ -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