aboutsummaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
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