mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
UPSTREAM: crossgcc/Dockerfile: Add gnat to build the Ada toolchain
If gnat is installed, buildgcc automatically enables Ada support.
Instead of the general `gnat` package we install `gnat-6` which saves
us about 80 MiB of downloads of unused "dependencies".
BUG=none
BRANCH=none
TEST=none
Change-Id: I41bc45fb33742a097621b714aa145d8d5caf9e10
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: 6b28fff0be
Original-Change-Id: Ie0b8564d016d458cd33ff75a2ee7bbd5de33afe2
Original-Signed-off-by: Nico Huber <nico.h@gmx.de>
Original-Reviewed-on: https://review.coreboot.org/18772
Original-Tested-by: build bot (Jenkins)
Original-Reviewed-by: Philippe Mathieu-Daud <philippe.mathieu.daude@gmail.com>
Original-Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Original-Reviewed-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://chromium-review.googlesource.com/459662
This commit is contained in:
parent
1b25476bd5
commit
5f27770c2f
1 changed files with 4 additions and 3 deletions
|
@ -5,8 +5,8 @@ RUN \
|
|||
useradd -p locked -m coreboot && \
|
||||
apt-get -qq update && \
|
||||
apt-get -qq upgrade && \
|
||||
apt-get -qqy install gcc g++ make patch python diffutils bison flex \
|
||||
git doxygen ccache subversion p7zip-full unrar-free \
|
||||
apt-get -qqy install gcc g++ gnat-6 make patch python diffutils bison \
|
||||
flex git doxygen ccache subversion p7zip-full unrar-free \
|
||||
m4 wget curl bzip2 vim-common cmake xz-utils pkg-config \
|
||||
dh-autoreconf unifont \
|
||||
libssl-dev libgmp-dev zlib1g-dev libpci-dev liblzma-dev \
|
||||
|
@ -22,7 +22,8 @@ COPY tarballs/ /root/coreboot/util/crossgcc/tarballs/
|
|||
|
||||
RUN \
|
||||
cd /root/coreboot/util/crossgcc && \
|
||||
make all_without_gdb CPUS=$(nproc) DEST=/opt/xgcc && \
|
||||
make all_without_gdb \
|
||||
BUILD_LANGUAGES=c,ada CPUS=$(nproc) DEST=/opt/xgcc && \
|
||||
cd /root && \
|
||||
rm -rf coreboot
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue