diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2021-04-19 11:00:43 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-04-23 10:12:09 +0100 |
commit | dd35211b690fc98c3a2abb6bba965e6e9b8b7df3 (patch) | |
tree | 2580507799416c33e51b361c5f5d9fcd088eecda /meta/recipes-devtools/gdb/gdb-common.inc | |
parent | 972888296cf425f1e6771a175561ef755e95197f (diff) | |
download | poky-dd35211b690fc98c3a2abb6bba965e6e9b8b7df3.tar.gz |
default-distrovars.inc: add debuginfod to default DISTRO_FEATURES
Obtaining debug information by having it served automatically via http
is far more pleasant than messing about with debugfs and gdbserver or
transferring and installing -dbg packages by hand.
I believe we should follow the desktop distros and have it enabled
out of the box. Please see the following commit for the description
of how it works.
(From OE-Core rev: 024c88c82791a113b614abf61ffd82e097bf21d1)
Signed-off-by: Alexander Kanavin <alex.kanavin@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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gdb/gdb-common.inc b/meta/recipes-devtools/gdb/gdb-common.inc index 6e04552034..a2a6364daf 100644 --- a/meta/recipes-devtools/gdb/gdb-common.inc +++ b/meta/recipes-devtools/gdb/gdb-common.inc | |||
@@ -29,7 +29,7 @@ EXTRA_OECONF = "--disable-gdbtk --disable-x --disable-werror \ | |||
29 | --disable-gprof \ | 29 | --disable-gprof \ |
30 | " | 30 | " |
31 | 31 | ||
32 | PACKAGECONFIG ??= "readline" | 32 | PACKAGECONFIG ??= "readline ${@bb.utils.filter('DISTRO_FEATURES', 'debuginfod', d)}" |
33 | # Use --without-system-readline to compile with readline 5. | 33 | # Use --without-system-readline to compile with readline 5. |
34 | PACKAGECONFIG[readline] = "--with-system-readline,--without-system-readline,readline" | 34 | PACKAGECONFIG[readline] = "--with-system-readline,--without-system-readline,readline" |
35 | PACKAGECONFIG[python] = "--with-python=${WORKDIR}/python,--without-python,python3,python3 python3-codecs" | 35 | PACKAGECONFIG[python] = "--with-python=${WORKDIR}/python,--without-python,python3,python3 python3-codecs" |