blob: 4fd60a615ecfc26581a80558536034c9a764472c [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001inherit cross-canadian
2inherit python-dir
3
4SUMMARY = "GNU debugger (cross-canadian gdb for ${TARGET_ARCH} target)"
5PN = "gdb-cross-canadian-${TRANSLATED_TARGET_ARCH}"
6BPN = "gdb"
7
8DEPENDS = "nativesdk-ncurses nativesdk-expat nativesdk-gettext nativesdk-readline nativesdk-python"
9RDEPENDS_${PN} += "nativesdk-python-core nativesdk-python-lang nativesdk-python-re \
10 nativesdk-python-codecs nativesdk-python-netclient"
11
12GDBPROPREFIX = "--program-prefix='${TARGET_PREFIX}'"
13
14EXTRA_OECONF_append = " --with-python=${WORKDIR}/python"
15
16SSTATE_DUPWHITELIST += "${STAGING_DATADIR}/gdb"
17
18do_configure_prepend() {
19cat > ${WORKDIR}/python << EOF
20#! /bin/sh
21case "\$2" in
22 --includes) echo "-I${STAGING_INCDIR}/${PYTHON_DIR}/" ;;
23 --ldflags) echo "-Wl,-rpath-link,${STAGING_LIBDIR}/.. -Wl,-rpath,${libdir}/.. -lpthread -ldl -lutil -lm -lpython${PYTHON_BASEVERSION}" ;;
24 --exec-prefix) echo "${exec_prefix}" ;;
25 *) exit 1 ;;
26esac
27exit 0
28EOF
29 chmod +x ${WORKDIR}/python
30}
31
32# we don't want gdb to provide bfd/iberty/opcodes, which instead will override the
33# right bits installed by binutils.
34do_install_append() {
35 rm -rf ${D}${exec_prefix}/lib
36 cross_canadian_bindirlinks
37}
38