summaryrefslogtreecommitdiffstats
path: root/meta/packages/gdb/gdb-common.inc
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2010-06-28 08:51:08 -0700
committerSaul Wold <Saul.Wold@intel.com>2010-07-08 22:05:20 -0700
commit936a73eae5fd5732c9dc5ae2a47d6196f7f69c0a (patch)
treec758f2ec55ab78fb71d962d85d82335b47f46c04 /meta/packages/gdb/gdb-common.inc
parentda46e7f70546c14ddd8efc0f64371b637092293d (diff)
downloadpoky-936a73eae5fd5732c9dc5ae2a47d6196f7f69c0a.tar.gz
gdb family: upgrade from 6.8 to 7.1
upgraded gdb, gdb-cross & gdb-cross-canadian recipes. ignore_whitespace_changes.patch : this patch is not needed anymore because the newer version fixed the issue differently. rebased other patches to the newer version of the source code. Added the --with-libelf line in the gdb-common.inc to fix a configure faulre. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Diffstat (limited to 'meta/packages/gdb/gdb-common.inc')
-rw-r--r--meta/packages/gdb/gdb-common.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/packages/gdb/gdb-common.inc b/meta/packages/gdb/gdb-common.inc
index ef7d43b153..fcd911ab0a 100644
--- a/meta/packages/gdb/gdb-common.inc
+++ b/meta/packages/gdb/gdb-common.inc
@@ -3,12 +3,12 @@ HOMEPAGE = "http://www.gnu.org/software/gdb/"
3LICENSE="GPLv3+" 3LICENSE="GPLv3+"
4SECTION = "devel" 4SECTION = "devel"
5PRIORITY = "optional" 5PRIORITY = "optional"
6DEPENDS = "ncurses readline" 6DEPENDS = "ncurses readline elfutils"
7 7
8inherit autotools 8inherit autotools
9 9
10SRC_URI = "${GNU_MIRROR}/gdb/gdb-${PV}.tar.gz \ 10SRC_URI = "${GNU_MIRROR}/gdb/gdb-${PV}.tar.gz \
11 file://no-werror.patch;patch=1" 11 file://no-werror.patch"
12 12
13export CC_FOR_BUILD = "${BUILD_CC}" 13export CC_FOR_BUILD = "${BUILD_CC}"
14export CXX_FOR_BUILD = "${BUILD_CXX}" 14export CXX_FOR_BUILD = "${BUILD_CXX}"
@@ -23,14 +23,14 @@ EXTRA_OEMAKE = "'SUBDIRS=intl mmalloc libiberty opcodes bfd sim gdb etc utils'"
23 23
24EXTRA_OECONF = "--disable-gdbtk --disable-tui --disable-x \ 24EXTRA_OECONF = "--disable-gdbtk --disable-tui --disable-x \
25 --with-curses --disable-multilib --with-readline --disable-sim \ 25 --with-curses --disable-multilib --with-readline --disable-sim \
26 ${GDBPROPREFIX}" 26 ${GDBPROPREFIX} --with-libelf=${STAGING_DIR_TARGET}"
27GDBPROPREFIX = "--program-prefix=''" 27GDBPROPREFIX = "--program-prefix=''"
28 28
29do_configure () { 29do_configure () {
30 # override this function to avoid the autoconf/automake/aclocal/autoheader 30 # override this function to avoid the autoconf/automake/aclocal/autoheader
31 # calls for now 31 # calls for now
32 (cd ${S} && gnu-configize) || die "failure in running gnu-configize" 32 (cd ${S} && gnu-configize) || die "failure in running gnu-configize"
33 oe_runconf 33 oe_runconf
34} 34}
35 35
36RRECOMMENDS_gdb_append_linux = " glibc-thread-db " 36RRECOMMENDS_gdb_append_linux = " glibc-thread-db "