From 14e53765e7577955cdf5cf0a47b4ed9eeafa45f5 Mon Sep 17 00:00:00 2001 From: slush Date: Sun, 28 Jan 2018 15:12:23 +0100 Subject: [PATCH] Fixing building ARM toolchain from sources --- Dockerfile.gcc_source | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.gcc_source b/Dockerfile.gcc_source index 4a77d0131..19be37056 100644 --- a/Dockerfile.gcc_source +++ b/Dockerfile.gcc_source @@ -21,8 +21,8 @@ RUN cd /opt && wget $TOOLCHAIN_URL && tar xfj $TOOLCHAIN_LONGVER-$TOOLCHAIN_FLAV # build toolchain -RUN cd /opt/$TOOLCHAIN_LONGVER && ./install-sources.sh --skip_steps=mingw32,manual -RUN cd /opt/$TOOLCHAIN_LONGVER && ./build-prerequisites.sh --skip_steps=mingw32,manual +RUN cd /opt/$TOOLCHAIN_LONGVER && ./install-sources.sh --skip_steps=mingw32 +RUN cd /opt/$TOOLCHAIN_LONGVER && ./build-prerequisites.sh --skip_steps=mingw32 RUN cd /opt/$TOOLCHAIN_LONGVER && ./build-toolchain.sh --skip_steps=mingw32,manual # setup toolchain