From 35fd0c67ae4e82d419f885d5530fe24e60026fdd Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Wed, 19 Nov 2014 23:17:58 +0100 Subject: [PATCH] arm_none_eabi_gdb: enable use of expat Needed to parse XML memory maps and other files. --- dev-util/arm_none_eabi_gdb/arm_none_eabi_gdb-7.7.recipe | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-util/arm_none_eabi_gdb/arm_none_eabi_gdb-7.7.recipe b/dev-util/arm_none_eabi_gdb/arm_none_eabi_gdb-7.7.recipe index 1cd086123..a686d0f70 100644 --- a/dev-util/arm_none_eabi_gdb/arm_none_eabi_gdb-7.7.recipe +++ b/dev-util/arm_none_eabi_gdb/arm_none_eabi_gdb-7.7.recipe @@ -49,12 +49,14 @@ REQUIRES=" lib:libiconv$secondaryArchSuffix lib:libintl$secondaryArchSuffix lib:libncurses$secondaryArchSuffix + lib:libexpat$secondaryArchSuffix " BUILD_REQUIRES=" gettext$secondaryArchSuffix devel:libiconv$secondaryArchSuffix devel:libncurses$secondaryArchSuffix + devel:libexpat$secondaryArchSuffix " BUILD_PREREQUIRES=" @@ -67,12 +69,13 @@ BUILD_PREREQUIRES=" cmd:gcc$secondaryArchSuffix cmd:ld$secondaryArchSuffix cmd:make + cmd:pkg_config$secondaryArchSuffix " BUILD() { cd gdb && autoreconf; cd .. - runConfigure ./configure --target=arm-none-eabi --disable-werror + runConfigure ./configure --target=arm-none-eabi --disable-werror --with-expat make $jobArgs }