aboutsummaryrefslogtreecommitdiff
path: root/util/crossgcc
diff options
context:
space:
mode:
authorRonald G. Minnich <rminnich@gmail.com>2016-02-27 04:06:42 +0000
committerMartin Roth <martinroth@google.com>2016-03-01 21:25:25 +0100
commitfb944f4270d787e2e705b46698d9f9851ea8a20e (patch)
tree905f13054b61ffd357eb4b9dc9db14bec441a7c2 /util/crossgcc
parentb7e69a2e561d557a7d243a15d91a5cede56e5eb8 (diff)
crosstool: add EXPAT as a dependency on the gdb build.
qemu-power8 wants to tell about itself with XML, and so we need to build gdb with EXPAT so it can understand XML. Change-Id: I460e27f883956ed5d54e6070916e2682ee0f7a1b Signed-off-by: Ronald G. Minnich <rminnich@gmail.com> Reviewed-on: https://review.coreboot.org/13846 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'util/crossgcc')
-rwxr-xr-xutil/crossgcc/buildgcc5
1 files changed, 3 insertions, 2 deletions
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc
index dc6540d314..e4a6d473ee 100755
--- a/util/crossgcc/buildgcc
+++ b/util/crossgcc/buildgcc
@@ -627,9 +627,10 @@ case "$PACKAGE" in
;;
GDB|gdb)
NAME="${TARGETARCH} cross GDB"
- PACKAGES="GDB"
if [ $SKIPPYTHON -eq 0 ]; then
- PACKAGES="EXPAT PYTHON $PACKAGES"
+ PACKAGES="EXPAT PYTHON GDB"
+ else
+ PACKAGES="EXPAT GDB"
fi
;;
CLANG|clang)