diff options
author | zvecr <git@zvecr.com> | 2019-06-01 03:36:01 +0100 |
---|---|---|
committer | Florian Didron <fdidron@users.noreply.github.com> | 2019-06-06 09:00:20 +0900 |
commit | f781b36aaa88f8748d9db62f9980d8bb9bd35e9b (patch) | |
tree | 7f13153f6addae42fc0228bd53038121c2d3217d /Dockerfile | |
parent | 028d02d1f1f01feb674ce3ae87eaa82d16c6b1b8 (diff) |
upgrade gcc-arm-none-eabi from the default 5.4.1 to 6.3.1 due to ARM runtime issues
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 46b58149af..43c84d3e35 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,6 @@ RUN apt-get update && apt-get install --no-install-recommends -y \ dfu-programmer \ dfu-util \ gcc \ - gcc-arm-none-eabi \ gcc-avr \ git \ libnewlib-arm-none-eabi \ @@ -19,6 +18,10 @@ RUN apt-get update && apt-get install --no-install-recommends -y \ zip \ && rm -rf /var/lib/apt/lists/* +# upgrade gcc-arm-none-eabi from the default 5.4.1 to 6.3.1 due to ARM runtime issues +RUN wget -q https://developer.arm.com/-/media/Files/downloads/gnu-rm/6-2017q2/gcc-arm-none-eabi-6-2017-q2-update-linux.tar.bz2 -O - | \ + tar xj --strip-components=1 -C / + VOLUME /qmk_firmware WORKDIR /qmk_firmware COPY . . |