From: Koen Kooi Date: Fri, 5 Sep 2008 21:37:20 +0000 (+0000) Subject: gdb: add 6.7.1 with avr32 support X-Git-Tag: Release-2010-05/1~6141^2~15^2~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e02007bd257a4afe0a8d90ea6013d5c957e0d2f4;p=openembedded.git gdb: add 6.7.1 with avr32 support --- diff --git a/packages/gdb/gdb-cross_6.7.1.bb b/packages/gdb/gdb-cross_6.7.1.bb new file mode 100644 index 0000000000..adccebe115 --- /dev/null +++ b/packages/gdb/gdb-cross_6.7.1.bb @@ -0,0 +1,19 @@ +require gdb-cross.inc +inherit cross + +DEFAULT_PREFERENCE_avr32 = "99" +SRC_URI_avr32 = " http://avr32linux.org/twiki/pub/Main/GDBPatches/gdb-6.7.1.atmel.1.0.3.tar.bz2" +S_avr32 = "${WORKDIR}/gdb-6.7.1.atmel.1.0.3" + +do_configure_prepend() { + for i in $(find ${S} -name "warning*m4") ; do + sed -i -e s:-Werror::g $i + done + for i in $(find ${S} -name "configure.ac") ; do + sed -i -e s:-Werror::g $i + done + for i in $(find ${S} -name "configure") ; do + sed -i -e s:-Werror::g $i + done +} + diff --git a/packages/gdb/gdb.inc b/packages/gdb/gdb.inc index d3b9d864e7..8e7121bd49 100644 --- a/packages/gdb/gdb.inc +++ b/packages/gdb/gdb.inc @@ -1,5 +1,7 @@ require gdb-common.inc +DEFAULT_PREFERENCE_avr32 = "-99" + DEPENDS = "ncurses readline" PACKAGES =+ "gdbserver" diff --git a/packages/gdb/gdb_6.7.1.bb b/packages/gdb/gdb_6.7.1.bb new file mode 100644 index 0000000000..a411974b15 --- /dev/null +++ b/packages/gdb/gdb_6.7.1.bb @@ -0,0 +1,5 @@ +require gdb.inc + +DEFAULT_PREFERENCE_avr32 = "99" +SRC_URI_avr32 = " http://avr32linux.org/twiki/pub/Main/GDBPatches/gdb-6.7.1.atmel.1.0.3.tar.bz2" +S_avr32 = "${WORKDIR}/gdb-6.7.1.atmel.1.0.3"