arm_none_eabi_gdb: enable use of expat

Needed to parse XML memory maps and other files.
This commit is contained in:
Adrien Destugues
2014-11-19 23:17:58 +01:00
parent d3e75b3da6
commit 35fd0c67ae

View File

@@ -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
}