diff options
| author | Richard Purdie <richard@openedhand.com> | 2007-07-20 15:13:20 +0000 |
|---|---|---|
| committer | Richard Purdie <richard@openedhand.com> | 2007-07-20 15:13:20 +0000 |
| commit | 5707e90ca60a99fa6b6fc82af0155e955cc2943a (patch) | |
| tree | 73a01dbd3adbbb17d3feb36d39440797cf4709bb | |
| parent | b67665420743606c1d06a4ca8a100f14e108bcd5 (diff) | |
| download | poky-5707e90ca60a99fa6b6fc82af0155e955cc2943a.tar.gz | |
gdb: Remove old versions
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2200 311d38ba-8fff-0310-9ca6-ca027cbcb966
| -rw-r--r-- | meta/packages/gdb/gdb-cross_6.4.bb | 35 | ||||
| -rw-r--r-- | meta/packages/gdb/gdb_6.4.bb | 49 |
2 files changed, 0 insertions, 84 deletions
diff --git a/meta/packages/gdb/gdb-cross_6.4.bb b/meta/packages/gdb/gdb-cross_6.4.bb deleted file mode 100644 index 32076b529e..0000000000 --- a/meta/packages/gdb/gdb-cross_6.4.bb +++ /dev/null | |||
| @@ -1,35 +0,0 @@ | |||
| 1 | LICENSE = "GPL" | ||
| 2 | DESCRIPTION = "gdb - GNU debugger" | ||
| 3 | SECTION = "base" | ||
| 4 | PRIORITY = "optional" | ||
| 5 | DEPENDS = "ncurses-native" | ||
| 6 | |||
| 7 | inherit autotools sdk | ||
| 8 | |||
| 9 | S = "${WORKDIR}/gdb-${PV}" | ||
| 10 | SRC_URI = "${GNU_MIRROR}/gdb/gdb-${PV}.tar.gz \ | ||
| 11 | file://sim-install.patch;patch=1" | ||
| 12 | |||
| 13 | FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/gdb-${PV}" | ||
| 14 | |||
| 15 | export CC_FOR_BUILD = "${BUILD_CC}" | ||
| 16 | export CXX_FOR_BUILD = "${BUILD_CXX}" | ||
| 17 | export CPP_FOR_BUILD = "${BUILD_CPP}" | ||
| 18 | export CFLAGS_FOR_BUILD = "${BUILD_CFLAGS}" | ||
| 19 | export CXXFLAGS_FOR_BUILD = "${BUILD_CXXFLAGS}" | ||
| 20 | export CPPFLAGS_FOR_BUILD = "${BUILD_CPPFLAGS}" | ||
| 21 | |||
| 22 | EXTRA_OEMAKE = "'SUBDIRS=intl mmalloc libiberty opcodes bfd sim gdb etc utils' LDFLAGS='${BUILD_LDFLAGS}'" | ||
| 23 | |||
| 24 | EXTRA_OECONF = "--with-curses --with-readline" | ||
| 25 | |||
| 26 | do_configure () { | ||
| 27 | # override this function to avoid the autoconf/automake/aclocal/autoheader | ||
| 28 | # calls for now | ||
| 29 | gnu-configize | ||
| 30 | oe_runconf | ||
| 31 | } | ||
| 32 | |||
| 33 | do_stage() { | ||
| 34 | : | ||
| 35 | } | ||
diff --git a/meta/packages/gdb/gdb_6.4.bb b/meta/packages/gdb/gdb_6.4.bb deleted file mode 100644 index 2647c5529e..0000000000 --- a/meta/packages/gdb/gdb_6.4.bb +++ /dev/null | |||
| @@ -1,49 +0,0 @@ | |||
| 1 | DESCRIPTION = "gdb - GNU debugger" | ||
| 2 | HOMEPAGE = "http://www.gnu.org/software/gdb/" | ||
| 3 | LICENSE="GPL" | ||
| 4 | SECTION = "devel" | ||
| 5 | PRIORITY = "optional" | ||
| 6 | DEPENDS = "ncurses readline" | ||
| 7 | RDEPENDS_openmn = "libthread-db1" | ||
| 8 | PR = "r2" | ||
| 9 | |||
| 10 | PACKAGES =+ 'gdbserver ' | ||
| 11 | FILES_gdbserver = '${bindir}/gdbserver' | ||
| 12 | |||
| 13 | inherit autotools gettext | ||
| 14 | |||
| 15 | SRC_URI = "${GNU_MIRROR}/gdb/gdb-${PV}.tar.gz \ | ||
| 16 | # file://uclibc.patch;patch=1 \ | ||
| 17 | file://kill_arm_map_symbols.patch;patch=1 \ | ||
| 18 | file://gdbserver-cflags-last.diff;patch=1;pnum=0" | ||
| 19 | |||
| 20 | LDFLAGS_append = " -s" | ||
| 21 | export CC_FOR_BUILD = "${BUILD_CC}" | ||
| 22 | export CXX_FOR_BUILD = "${BUILD_CXX}" | ||
| 23 | export CPP_FOR_BUILD = "${BUILD_CPP}" | ||
| 24 | export CFLAGS_FOR_BUILD = "${BUILD_CFLAGS}" | ||
| 25 | export CXXFLAGS_FOR_BUILD = "${BUILD_CXXFLAGS}" | ||
| 26 | export CPPFLAGS_FOR_BUILD = "${BUILD_CPPFLAGS}" | ||
| 27 | export CFLAGS_append=" -L${STAGING_LIBDIR}" | ||
| 28 | EXTRA_OEMAKE = "'SUBDIRS=intl mmalloc libiberty opcodes bfd sim gdb etc utils'" | ||
| 29 | |||
| 30 | EXTRA_OECONF = "--disable-gdbtk --disable-tui --disable-x \ | ||
| 31 | --with-curses --disable-multilib --with-readline --disable-sim \ | ||
| 32 | --program-prefix=''" | ||
| 33 | |||
| 34 | S = "${WORKDIR}/gdb-${PV}" | ||
| 35 | B = "${WORKDIR}/build-${TARGET_SYS}" | ||
| 36 | |||
| 37 | do_configure () { | ||
| 38 | # override this function to avoid the autoconf/automake/aclocal/autoheader | ||
| 39 | # calls for now | ||
| 40 | (cd ${S} && gnu-configize) || die "failure in running gnu-configize" | ||
| 41 | CPPFLAGS="" oe_runconf | ||
| 42 | } | ||
| 43 | |||
| 44 | do_install () { | ||
| 45 | make -C bfd/doc chew LDFLAGS= CFLAGS=-O2 | ||
| 46 | oe_runmake DESTDIR='${D}' install | ||
| 47 | install -d ${D}${bindir} | ||
| 48 | install -m 0755 gdb/gdbserver/gdbserver ${D}${bindir} | ||
| 49 | } | ||
