From 2ccebb5ca8239b2cc9c635c17988f58b97ae7535 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 27 Aug 2020 23:28:00 +0200 Subject: Added time consumption warning --- run | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'run') 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 -- cgit v1.2.3