diff options
author | Khem Raj <raj.khem@gmail.com> | 2016-05-11 10:35:37 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-13 13:40:53 +0100 |
commit | d5369cf951dbc20881f4967ab679e08a95643353 (patch) | |
tree | 640422f5fabadec01a2128f2cf497f3bfffd594f /meta/recipes-devtools/gdb | |
parent | 026f14c1353b599546cec24b6b779ff872ff890e (diff) | |
download | openembedded-core-d5369cf951dbc20881f4967ab679e08a95643353.tar.gz openembedded-core-d5369cf951dbc20881f4967ab679e08a95643353.tar.bz2 openembedded-core-d5369cf951dbc20881f4967ab679e08a95643353.zip |
gdb: Disable binutils components
when building from git we also get the binutils
components since the tree for gdb and binutils is
same, this can then casue building binutils with
gdb as well and cause packaging conflicts, hence
disable the binutils pieces in configure itself
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')
-rw-r--r-- | meta/recipes-devtools/gdb/gdb-common.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gdb/gdb-common.inc b/meta/recipes-devtools/gdb/gdb-common.inc index f208055ef1..3260dbd723 100644 --- a/meta/recipes-devtools/gdb/gdb-common.inc +++ b/meta/recipes-devtools/gdb/gdb-common.inc @@ -40,7 +40,10 @@ EXTRA_OECONF = "--disable-gdbtk --disable-tui --disable-x --disable-werror \ ${GDBPROPREFIX} ${EXPAT} \ ${@bb.utils.contains('DISTRO_FEATURES', 'multiarch', '--enable-64-bit-bfd', '', d)} \ --disable-rpath \ - " + --disable-gas --disable-binutils \ + --disable-ld --disable-gold \ + --disable-gprof \ +" PACKAGECONFIG ??= "readline" # Use --without-system-readline to compile with readline 5. |