From 8d983c1746a2f07101043349b4e79acc9d61b1d5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=8C=80=EC=9D=B8=EA=B8=B0/On-Device=20Lab=28SR=29/Staff?= =?utf8?q?=20Engineer/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Thu, 28 Feb 2019 13:35:32 +0900 Subject: [PATCH] Install gcc-6.2.1 abi toolchain (#4524) * Install gcc-6.2.1 abi toolchain This toolchain will be used to build NNFW for Tizen. Signed-off-by: Inki Dae * Fix typo Signed-off-by: Inki Dae --- scripts/docker/Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/docker/Dockerfile b/scripts/docker/Dockerfile index 37e4e1e..5177cd9 100644 --- a/scripts/docker/Dockerfile +++ b/scripts/docker/Dockerfile @@ -13,7 +13,9 @@ RUN apt-get update && apt-get --yes --force-yes install clang-format-3.9 python- RUN pip install yapf==0.22.0 RUN apt-get update && apt-get --yes --force-yes install doxygen graphviz RUN apt-get update && apt-get --yes --force-yes install wget -RUN wget https://releases.linaro.org/components/toolchain/binaries/6.3-2017.02/arm-linux-gnueabihf/gcc-linaro-6.3.1-2017.02-x86_64_arm-linux-gnueabihf.tar.xz -O gcc.tar.xz -nv -RUN tar -xf gcc.tar.xz -C /opt/ && rm -rf gcc.tar.xz -ENV PATH "/opt/gcc-linaro-6.3.1-2017.02-x86_64_arm-linux-gnueabihf/bin:$PATH" +RUN wget https://releases.linaro.org/components/toolchain/binaries/6.3-2017.02/arm-linux-gnueabihf/gcc-linaro-6.3.1-2017.02-x86_64_arm-linux-gnueabihf.tar.xz -O gcc-hardfp.tar.xz -nv +RUN wget https://releases.linaro.org/components/toolchain/binaries/6.2-2016.11/arm-linux-gnueabi/gcc-linaro-6.2.1-2016.11-x86_64_arm-linux-gnueabi.tar.xz -O gcc-softfp.tar.xz -nv +RUN tar -xf gcc-hardfp.tar.xz -C /opt/ && rm -rf gcc-hardfp.tar.xz +RUN tar -xf gcc-softfp.tar.xz -C /opt/ && rm -rf gcc-softfp.tar.xz +ENV PATH "/opt/gcc-linaro-6.2.1-2016.11-x86_64_arm-linux-gnueabi/bin:/opt/gcc-linaro-6.3.1-2017.02-x86_64_arm-linux-gnueabihf/bin:$PATH" RUN apt-get update && apt-get --yes --force-yes install python3 -- 2.7.4