Skip to content
Snippets Groups Projects
Commit e4cd5c52 authored by Antonio Díaz's avatar Antonio Díaz
Browse files

lm32-tools:1.0 added

New Dockerfile: lm32-tools:1.0.
This docker container includes the LM32 tools based in a precompiled lm32-toolchain with: Centos 7, newlib=3.1.0, gcc=9.2.0, binutils=2.32, mpc=1.1.0, mpfr=4.0.2, gmp=6.1.2
parent 896c008b
No related branches found
No related tags found
No related merge requests found
FROM centos:latest as builder
LABEL maintainer="afdiaz@ugr.es"
RUN yum -y install wget gzip ; yum clean all;
RUN wget https://drive.ugr.es/index.php/s/JuO1GmgQa5pAz0w/download -q -O lm32-toolchain.tar.gz && \
tar xvf lm32-toolchain.tar.gz
FROM centos:latest
RUN yum -y update && yum -y install epel-release
RUN yum -y install wget gzip cmake3 make ; yum clean all;
COPY --from=builder /lm32 /opt/lm32
ENV PATH "/opt/lm32/bin:$PATH"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment