From b9646a9ffc85d2327c3efd5ebd3159941846c0e2 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Mon, 3 May 2021 02:15:18 +0200 Subject: [PATCH] arm-none-eabi-gcc-4.8.2: install missing packages These are needed for building osmocom-bb and its libosmocore. Change-Id: I1cee58985225bd1c6600b0025d0417d66f441449 --- arm-none-eabi-gcc-4.8.2/Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/arm-none-eabi-gcc-4.8.2/Dockerfile b/arm-none-eabi-gcc-4.8.2/Dockerfile index 8794a95e..6c1373c1 100644 --- a/arm-none-eabi-gcc-4.8.2/Dockerfile +++ b/arm-none-eabi-gcc-4.8.2/Dockerfile @@ -20,7 +20,11 @@ RUN apt update && apt install -y \ flex \ curl \ patch \ - file + file \ + python2.7-minimal \ + autoconf \ + libtool \ + git # Stage 0: Download and patch the source code RUN curl -SL ${BINUTILS_SRC} | tar -xj -C /usr/src && \