diff options
author | Khem Raj <raj.khem@gmail.com> | 2016-05-09 08:41:52 -0700 |
---|---|---|
committer | Daniel McGregor <daniel.mcgregor@vecima.com> | 2016-05-10 10:20:36 -0600 |
commit | ea20ff4ef53687ac3a626c9c4a7d8b1360639f80 (patch) | |
tree | d4d31d6447090ed6200561b0170e29a9c345fda0 | |
parent | 09c3c3a11fb0730a9e9f0f656fbbc0e5eb46059d (diff) | |
download | openembedded-core-contrib-dankm/vecima/host-gcc6.tar.gz |
gdb: Disable binutils componentsdankm/vecima/host-gcc6
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>
-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 c6b41b4d4d..aa1d3e0b24 100644 --- a/meta/recipes-devtools/gdb/gdb-common.inc +++ b/meta/recipes-devtools/gdb/gdb-common.inc @@ -43,7 +43,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. |