summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2016-05-11 10:35:37 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-13 13:41:31 +0100
commitf2f35ccffeb2d5573b0726b37f0f8a6feb037e77 (patch)
treef6c4b51fd3878d9c4e525cc72af56af9ad704b34 /meta
parent26698cdfc966ce771dbb4d172c31261ff78ec315 (diff)
downloadpoky-f2f35ccffeb2d5573b0726b37f0f8a6feb037e77.tar.gz
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 (From OE-Core rev: d5369cf951dbc20881f4967ab679e08a95643353) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-devtools/gdb/gdb-common.inc5
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 \
40 ${GDBPROPREFIX} ${EXPAT} \ 40 ${GDBPROPREFIX} ${EXPAT} \
41 ${@bb.utils.contains('DISTRO_FEATURES', 'multiarch', '--enable-64-bit-bfd', '', d)} \ 41 ${@bb.utils.contains('DISTRO_FEATURES', 'multiarch', '--enable-64-bit-bfd', '', d)} \
42 --disable-rpath \ 42 --disable-rpath \
43 " 43 --disable-gas --disable-binutils \
44 --disable-ld --disable-gold \
45 --disable-gprof \
46"
44 47
45PACKAGECONFIG ??= "readline" 48PACKAGECONFIG ??= "readline"
46# Use --without-system-readline to compile with readline 5. 49# Use --without-system-readline to compile with readline 5.