summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzvecr <git@zvecr.com>2019-06-01 03:36:01 +0100
committerFlorian Didron <fdidron@users.noreply.github.com>2019-06-06 09:00:20 +0900
commitf781b36aaa88f8748d9db62f9980d8bb9bd35e9b (patch)
tree7f13153f6addae42fc0228bd53038121c2d3217d
parent028d02d1f1f01feb674ce3ae87eaa82d16c6b1b8 (diff)
upgrade gcc-arm-none-eabi from the default 5.4.1 to 6.3.1 due to ARM runtime issues
-rw-r--r--Dockerfile5
-rw-r--r--changelog.md1
2 files changed, 5 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 . .
diff --git a/changelog.md b/changelog.md
index f096b7a3d3..c98c7fa307 100644
--- a/changelog.md
+++ b/changelog.md
@@ -28,3 +28,4 @@
05-29-2019 - Fixing matrix_scan so it properly returns changed status
05-29-2019 - Add belgian layour for sendstring (qmk#6008)
06-03-2019 - Overhaul of AutoShift feature (qmk#6067)
+06-05-2019 - upgrade gcc-arm-none-eabi from the default 5.4.1 to 6.3.1 due to ARM runtine issues