aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/gdb/gdbserver.inc
blob: a976000418cc55cfb184e14168e6b0667399ac10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
require gdb-common.inc

DEFAULT_PREFERENCE_avr32 = "-99"

FILES_gdbserver = "${bindir}/gdbserver"

RRECOMMENDS_gdb_append_linux = " glibc-thread-db "
RRECOMMENDS_gdb_append_linux-gnueabi = " glibc-thread-db "

RRECOMMENDS_gdb_append_linux-uclibc = " uclibc-thread-db "
RRECOMMENDS_gdb_append_linux-uclibceabi = " uclibc-thread-db "
RRECOMMENDS_gdb_append_linux-spe = " uclibc-thread-db "

inherit gettext

FILESPATHPKG =. "gdb-${PV}:"

SRC_URI += "file://kill_arm_map_symbols.patch \
            file://gdbserver-cflags-last.diff;striplevel=0"
#FIXME	   file://uclibc.patch \

EXTRA_OEMAKE = "gdbserver"

EXTRA_OECONF = "--disable-gdbtk --disable-tui --disable-x --without-curses \
                --disable-multilib --without-readline --disable-sim \
                --program-prefix=''"

LDFLAGS_append = " -s"
export CFLAGS_append=" -L${STAGING_LIBDIR}"

do_configure () {
    # override this function to avoid the autoconf/automake/aclocal/autoheader
    # calls for now
    (cd ${S}/gdb/gdbserver && gnu-configize) || die "failure in running gnu-configize"
        CPPFLAGS="" oe_rungdbserverconf
}

do_install () {
    install -d ${D}${bindir}
    install -m 0755 ${B}/gdbserver ${D}${bindir}
}

oe_rungdbserverconf() {
    if [ -x ${S}/gdb/gdbserver/configure ] ; then
        cfgcmd="${S}/gdb/gdbserver/configure \
            --build=${BUILD_SYS} \
            --host=${HOST_SYS} \
            --target=${TARGET_SYS} \
            --prefix=${prefix} \
            --exec_prefix=${exec_prefix} \
            --bindir=${bindir} \
            --sbindir=${sbindir} \
            --libexecdir=${libexecdir} \
            --datadir=${datadir} \
            --sysconfdir=${sysconfdir} \
            --sharedstatedir=${sharedstatedir} \
            --localstatedir=${localstatedir} \
            --libdir=${libdir} \
            --includedir=${includedir} \
            --oldincludedir=${oldincludedir} \
            --infodir=${infodir} \
            --mandir=${mandir} \
            ${EXTRA_OECONF} \
            $@"
        oenote "Running $cfgcmd..."
        $cfgcmd || oefatal "oe_runconf failed"
    else
        oefatal "no configure script found"
    fi
}