Install gfortran cross-compiler
This commit is contained in:
parent
83d330ffbf
commit
b58de3baea
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ FROM docker.pkg.github.com/$GH_REPO/base:latest
|
||||||
ENV DEBIAN_FRONTEND noninteractive
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
apt-get -y install mingw-w64 && \
|
apt-get -y install gcc-mingw-w64-i686 g++-mingw-w64-i686 gfortran-mingw-w64-i686 && \
|
||||||
apt-get -y clean && \
|
apt-get -y clean && \
|
||||||
rm /usr/lib/gcc/*-w64-mingw32/*/libstdc++*.dll* && \
|
rm /usr/lib/gcc/*-w64-mingw32/*/libstdc++*.dll* && \
|
||||||
rm /usr/lib/gcc/*-w64-mingw32/*/libgcc_s* && \
|
rm /usr/lib/gcc/*-w64-mingw32/*/libgcc_s* && \
|
||||||
|
|
|
@ -4,7 +4,7 @@ FROM docker.pkg.github.com/$GH_REPO/base:latest
|
||||||
ENV DEBIAN_FRONTEND noninteractive
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
apt-get -y install mingw-w64 && \
|
apt-get -y install gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64 gfortran-mingw-w64-x86-64 && \
|
||||||
apt-get -y clean && \
|
apt-get -y clean && \
|
||||||
rm /usr/lib/gcc/*-w64-mingw32/*/libstdc++*.dll* && \
|
rm /usr/lib/gcc/*-w64-mingw32/*/libstdc++*.dll* && \
|
||||||
rm /usr/lib/gcc/*-w64-mingw32/*/libgcc_s* && \
|
rm /usr/lib/gcc/*-w64-mingw32/*/libgcc_s* && \
|
||||||
|
|
Loading…
Reference in a new issue