From: Shane Volpe Date: Tue, 26 Sep 2006 09:18:20 +0000 (+0000) Subject: gdb-cross: added 6.4 version - closed #1426 X-Git-Tag: Release-2010-05/1~9453^2~697 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e23a7771bf5f81d027cbc405817d2d11679a3341;p=openembedded.git gdb-cross: added 6.4 version - closed #1426 --- diff --git a/packages/gdb/gdb-cross_6.4.bb b/packages/gdb/gdb-cross_6.4.bb new file mode 100644 index 0000000000..8cd91ab7f9 --- /dev/null +++ b/packages/gdb/gdb-cross_6.4.bb @@ -0,0 +1,39 @@ +LICENSE = "GPL" +DESCRIPTION = "gdb - GNU debugger" +SECTION = "base" +PRIORITY = "optional" +MAINTAINER = "Shane Volpe " +LICENSE = "GPL" +DEPENDS = "ncurses-native" + +SRC_URI = "${GNU_MIRROR}/gdb/gdb-${PV}.tar.gz" + +S = "${WORKDIR}/gdb-${PV}" + +inherit autotools sdk + +FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/gdb-${PV}" + +export CC_FOR_BUILD = "${BUILD_CC}" +export CXX_FOR_BUILD = "${BUILD_CXX}" +export CPP_FOR_BUILD = "${BUILD_CPP}" +export CFLAGS_FOR_BUILD = "${BUILD_CFLAGS}" +export CXXFLAGS_FOR_BUILD = "${BUILD_CXXFLAGS}" +export CPPFLAGS_FOR_BUILD = "${BUILD_CPPFLAGS}" + +EXTRA_OEMAKE = "'SUBDIRS=intl mmalloc libiberty opcodes bfd sim gdb etc utils' LDFLAGS='${BUILD_LDFLAGS}'" + +EXTRA_OECONF = "--with-curses --with-readline" + +do_configure () { +# override this function to avoid the autoconf/automake/aclocal/autoheader +# calls for now + gnu-configize + oe_runconf +} + +do_stage() { + oe_runmake 'DESTDIR=${CROSS_DIR}' install + cp -pPR ${CROSS_DIR}${prefix}/* ${CROSS_DIR} + rm -rf ${CROSS_DIR}${prefix} +}