diff options
Diffstat (limited to 'meta/packages/gdb/gdb-cross.inc')
-rw-r--r-- | meta/packages/gdb/gdb-cross.inc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta/packages/gdb/gdb-cross.inc b/meta/packages/gdb/gdb-cross.inc new file mode 100644 index 0000000000..3996bc6fd5 --- /dev/null +++ b/meta/packages/gdb/gdb-cross.inc @@ -0,0 +1,20 @@ +require gdb.inc + +DEPENDS = "ncurses-native" + +SRC_URI += "file://sim-install-6.6.patch;patch=1" + +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 + (cd ${S} && gnu-configize) || die "failure in running gnu-configize" + oe_runconf +} + +do_stage() { + oe_runmake install +} |