From feab41b030890e1a11519cbdf603c43f2baafdaa Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Sat, 20 Aug 2022 11:17:46 +0200 Subject: [PATCH] util/docker/coreboot-sdk: Install GNAT 12 For some reason GNAT 11 is not able to build GNAT 12, since there are some Ada errors during the compilation. However, it works with GNAT 12. So use GNAT 12 for the host toolchain instead. Change-Id: If00a05a0c8564e624809268a12fae28261e380a2 Signed-off-by: Felix Singer Reviewed-on: https://review.coreboot.org/c/coreboot/+/66924 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth --- util/docker/coreboot-sdk/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/docker/coreboot-sdk/Dockerfile b/util/docker/coreboot-sdk/Dockerfile index 6859ba161c..1b4a27157e 100644 --- a/util/docker/coreboot-sdk/Dockerfile +++ b/util/docker/coreboot-sdk/Dockerfile @@ -35,7 +35,7 @@ RUN \ gawk \ gcc \ git \ - gnat \ + gnat-12 \ golang \ graphviz \ lcov \