diff options
author | Khem Raj <raj.khem@gmail.com> | 2020-10-30 22:20:58 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-11-02 11:35:06 +0000 |
commit | 8fb5fe5a82d173428d96ab43bab25b89ac6f25ea (patch) | |
tree | 3bcf46cb12c935fab441061d6d2319968945c519 /meta/recipes-devtools/gdb/gdb-common.inc | |
parent | 0b45dc1d611a7c96b528a5c62a2f18a00651d121 (diff) | |
download | openembedded-core-8fb5fe5a82d173428d96ab43bab25b89ac6f25ea.tar.gz openembedded-core-8fb5fe5a82d173428d96ab43bab25b89ac6f25ea.tar.bz2 openembedded-core-8fb5fe5a82d173428d96ab43bab25b89ac6f25ea.zip |
gdb: Update to 10.x release
here is full announcement [1]
Do not add --disable-static, without adding --enable-shared
because certain libraries e.g. libctf expects the default
to be static which is only disabled if --enable-shared is specified
Do not limit make subdirs, this is only needed when building in a
unified tree, here builds are happening from a release tarball so it is
redundant
[1] https://www.gnu.org/software/gdb/download/ANNOUNCEMENT
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gdb/gdb-common.inc')
-rw-r--r-- | meta/recipes-devtools/gdb/gdb-common.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/gdb/gdb-common.inc b/meta/recipes-devtools/gdb/gdb-common.inc index 08f615addf..46a793595d 100644 --- a/meta/recipes-devtools/gdb/gdb-common.inc +++ b/meta/recipes-devtools/gdb/gdb-common.inc @@ -15,8 +15,6 @@ UPSTREAM_CHECK_GITTAGREGEX = "gdb\-(?P<pver>.+)\-release" B = "${WORKDIR}/build-${TARGET_SYS}" -EXTRA_OEMAKE = "'SUBDIRS=intl mmalloc libiberty opcodes bfd sim gdb etc utils'" - EXPAT = "--with-expat --with-libexpat-prefix=${STAGING_DIR_HOST}" EXTRA_OECONF = "--disable-gdbtk --disable-x --disable-werror \ @@ -40,6 +38,8 @@ PACKAGECONFIG[tui] = "--enable-tui,--disable-tui" GDBPROPREFIX = "--program-prefix=''" +DISABLE_STATIC = "" + do_configure () { # override this function to avoid the autoconf/automake/aclocal/autoheader # calls for now |