-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1b5c19e
commit 1a097fd
Showing
1 changed file
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,17 +8,17 @@ FROM debian:12-slim | |
MAINTAINER Colin Finck <[email protected]> | ||
LABEL Description="Debian with CeGCC 9.3.0 (ENLYZE version for ARM and i386) and Git" | ||
|
||
RUN apt update; \ | ||
RUN apt update && \ | ||
DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends bison build-essential ca-certificates flex git libgmp-dev libmpc-dev libmpfr-dev texinfo | ||
|
||
RUN git clone --depth 1 --recursive https://github.com/enlyze/cegcc-build; \ | ||
cd cegcc-build; \ | ||
./build_cf.sh /opt/cegcc-arm arm-mingw32ce; \ | ||
cd ..; \ | ||
RUN git clone --depth 1 --recursive https://github.com/enlyze/cegcc-build && \ | ||
cd cegcc-build && \ | ||
./build_cf.sh /opt/cegcc-arm arm-mingw32ce && \ | ||
cd .. && \ | ||
rm -rf cegcc-build | ||
|
||
RUN git clone --depth 1 --recursive https://github.com/enlyze/cegcc-build; \ | ||
cd cegcc-build; \ | ||
./build_cf.sh /opt/cegcc-i386 i386-mingw32ce; \ | ||
cd ..; \ | ||
RUN git clone --depth 1 --recursive https://github.com/enlyze/cegcc-build && \ | ||
cd cegcc-build && \ | ||
./build_cf.sh /opt/cegcc-i386 i386-mingw32ce && \ | ||
cd .. && \ | ||
rm -rf cegcc-build |