From 8f2ad6fcf156f0d70a77c471ae4205f0b753130a Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=9D=B4=EC=B6=98=EC=84=9D/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Senior=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Thu, 29 Mar 2018 14:55:34 +0900 Subject: [PATCH] Change arm gcc version to 5.4 (#301) arm gcc 4.9 does not support cross build on docker image. This fixes such build fail. Signed-off-by: Chunseok Lee --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 7a771fa..a897150 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -5,5 +5,5 @@ ENV https_proxy $https_proxy RUN apt-get update && apt-get --yes --force-yes install build-essential RUN apt-get update && apt-get --yes --force-yes install scons cmake -RUN apt-get update && apt-get --yes --force-yes install gcc-4.9-arm-linux-gnueabihf g++-4.9-arm-linux-gnueabihf +RUN apt-get update && apt-get --yes --force-yes install gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf RUN apt-get update && apt-get --yes --force-yes install libboost-all-dev -- 2.7.4