From c7d1def359c565d960cbfe95b2f74b1790d9e7f2 Mon Sep 17 00:00:00 2001 From: Pavel Date: Tue, 16 Nov 2021 18:08:14 +0100 Subject: [PATCH] add command to download prerequisites --- configure.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configure.sh b/configure.sh index b97009f..cd70f1c 100755 --- a/configure.sh +++ b/configure.sh @@ -55,6 +55,12 @@ fi echo "$TAG Extracting $ARCHIVE..." unxz -c < $ARCHIVE | tar -xf - +# Download prerequisites + +cd gcc-$VERSION +./contrib/download_prerequisites +cd .. + # Create build folder [[ -d "build" ]] && rm -rf build