From 60bd435c988182a382298c7316ec99fce493a691 Mon Sep 17 00:00:00 2001 From: Malte Langermann Date: Sun, 2 Jun 2024 15:21:40 +0200 Subject: [PATCH] chore(toolchain): use ARM gcc toolchain 13.2.1 --- dev/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev/Dockerfile b/dev/Dockerfile index afcc6a7..b38482f 100644 --- a/dev/Dockerfile +++ b/dev/Dockerfile @@ -72,10 +72,10 @@ ENV QML2_IMPORT_PATH=${QT_BASE_DIR}/qml/ ENV LD_LIBRARY_PATH=${QT_BASE_DIR}/lib:$LD_LIBRARY_PATH ENV PKG_CONFIG_PATH=${QT_BASE_DIR}/lib/pkgconfig:$PKG_CONFIG_PATH -RUN wget --quiet https://developer.arm.com/-/media/Files/downloads/gnu-rm/10-2020q4/gcc-arm-none-eabi-10-2020-q4-major-x86_64-linux.tar.bz2 -O - \ - | tar -xj -C /opt +RUN wget --quiet https://developer.arm.com/-/media/Files/downloads/gnu/13.2.rel1/binrel/arm-gnu-toolchain-13.2.rel1-x86_64-arm-none-eabi.tar.xz -O - \ + | tar -xJ -C /opt -ENV PATH=/opt/gcc-arm-none-eabi-10-2020-q4-major/bin/:${PATH} +ENV PATH=/opt/arm-gnu-toolchain-13.2.Rel1-x86_64-arm-none-eabi/bin/:${PATH} VOLUME ["/src"]