From 4c7f1d958ec71fd51aa69363e6c7ab40e1a472bf Mon Sep 17 00:00:00 2001 From: Luan Rafael Carneiro Date: Thu, 11 Jul 2024 10:26:51 -0300 Subject: [PATCH] Remove gcc cross-compile and add gcc-multilib Signed-off-by: Luan Rafael Carneiro --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c437c01..d778a08 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ ARG version=18.04 FROM ubuntu:$version # Does prevent interactive questions on apt operations -ENV DEBIAN_FRONTEND=noninteractive +ENV DEBIAN_FRONTEND=noninteractiveq # Install the required packages for development. We do this in a single command # so the cache of the layer is handled atomically. @@ -65,8 +65,8 @@ RUN apt-get update && \ lzop \ swig \ \ - g++-arm-linux-gnueabihf \ - gcc-arm-linux-gnueabihf \ + g++-multilib \ + gcc-multilib \ \ bash \ zsh \