summaryrefslogtreecommitdiff
path: root/util/docker
diff options
context:
space:
mode:
authorHsuan Ting Chen <roccochen@chromium.org>2021-12-21 12:09:45 +0800
committerMartin Roth <martinroth@google.com>2022-01-04 21:08:43 +0000
commitbdad283237ac332c32682d8fb60c42c12cccc362 (patch)
tree46165364919ac8fa015a6dda3362e8a17c90c768 /util/docker
parent8bdbe23a93008597d99472747ba3415617f8c074 (diff)
downloadcoreboot-bdad283237ac332c32682d8fb60c42c12cccc362.tar.gz
docker/Makefile: Use all instead of all_without_gdb
After removing GDB from crossgcc in commit f32eed16 (buildgcc: Remove GDB from crossgcc), there is no target named all_without_gdb anymore and we should always build crossgcc with target all. But in util/docker/Makefile, we still try to build crossgcc with target all_without_gdb as default and will cause a build failure. Set CROSSGCC_PARAM from all_without_gdb to all to fix this issue. Signed-off-by: Hsuan Ting Chen <roccochen@chromium.org> Change-Id: I06c6d8e36dfd4e6a00ddec8b640b608ab1ba614c Reviewed-on: https://review.coreboot.org/c/coreboot/+/60268 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Singer <felixsinger@posteo.net> Reviewed-by: Martin Roth <martinroth@google.com> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Diffstat (limited to 'util/docker')
-rw-r--r--util/docker/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/docker/Makefile b/util/docker/Makefile
index 87e21be8b1..cbe34f9291 100644
--- a/util/docker/Makefile
+++ b/util/docker/Makefile
@@ -24,7 +24,7 @@ export DOCKER_COMMIT?=$(shell git log -n 1 --pretty=%h)
export DOCKER_CCACHE?=$(HOME)/.ccache
# SDK architecture
-export COREBOOT_CROSSGCC_PARAM?=all_without_gdb
+export COREBOOT_CROSSGCC_PARAM?=all
UID ?= $(shell id -u)
GID ?= $(shell id -g)