From 5e85adee0ff0789bf04f5fad9c88c0f9c4d2c8be Mon Sep 17 00:00:00 2001 From: Andras Fekete Date: Thu, 11 Apr 2024 23:14:16 -0400 Subject: [PATCH] Add yet another cross compiling tool --- Docker/Dockerfile.cross-compiler | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docker/Dockerfile.cross-compiler b/Docker/Dockerfile.cross-compiler index 573ab0cbb..f7635b3e4 100644 --- a/Docker/Dockerfile.cross-compiler +++ b/Docker/Dockerfile.cross-compiler @@ -3,7 +3,7 @@ FROM $DOCKER_BASE_IMAGE USER root -ARG DEPS_TESTING="gcc-arm-linux-gnueabi gcc-arm-linux-gnueabihf gcc-aarch64-linux-gnu gcc-powerpc-linux-gnu gcc-powerpc64-linux-gnu" +ARG DEPS_TESTING="gcc-arm-linux-gnueabi gcc-arm-linux-gnueabihf gcc-aarch64-linux-gnu gcc-powerpc-linux-gnu gcc-powerpc64-linux-gnu gcc-arm-none-eabi" RUN DEBIAN_FRONTEND=noninteractive apt update \ && apt install -y ${DEPS_TESTING} \ && apt clean -y && rm -rf /var/lib/apt/lists/*