summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-devtools/gdb/gdb-cross-canadian.inc3
-rw-r--r--meta/recipes-devtools/gdb/gdb-cross.inc3
2 files changed, 4 insertions, 2 deletions
diff --git a/meta/recipes-devtools/gdb/gdb-cross-canadian.inc b/meta/recipes-devtools/gdb/gdb-cross-canadian.inc
index c9daf25a41..edb05b6f18 100644
--- a/meta/recipes-devtools/gdb/gdb-cross-canadian.inc
+++ b/meta/recipes-devtools/gdb/gdb-cross-canadian.inc
@@ -11,12 +11,13 @@ DEPENDS = "nativesdk-ncurses nativesdk-expat nativesdk-gettext \
11GDBPROPREFIX = "--program-prefix='${TARGET_PREFIX}'" 11GDBPROPREFIX = "--program-prefix='${TARGET_PREFIX}'"
12 12
13# Overrides PACKAGECONFIG variables in gdb-common.inc 13# Overrides PACKAGECONFIG variables in gdb-common.inc
14PACKAGECONFIG ??= "python readline" 14PACKAGECONFIG ??= "python readline ${@bb.utils.filter('DISTRO_FEATURES', 'debuginfod', d)}"
15PACKAGECONFIG[python] = "--with-python=${WORKDIR}/python,--without-python,nativesdk-python3, \ 15PACKAGECONFIG[python] = "--with-python=${WORKDIR}/python,--without-python,nativesdk-python3, \
16 nativesdk-python3-core \ 16 nativesdk-python3-core \
17 nativesdk-python3-codecs nativesdk-python3-netclient \ 17 nativesdk-python3-codecs nativesdk-python3-netclient \
18 " 18 "
19PACKAGECONFIG[readline] = "--with-system-readline,--without-system-readline,nativesdk-readline" 19PACKAGECONFIG[readline] = "--with-system-readline,--without-system-readline,nativesdk-readline"
20PACKAGECONFIG[debuginfod] = "--with-debuginfod, --without-debuginfod, nativesdk-elfutils"
20 21
21SSTATE_DUPWHITELIST += "${STAGING_DATADIR}/gdb" 22SSTATE_DUPWHITELIST += "${STAGING_DATADIR}/gdb"
22 23
diff --git a/meta/recipes-devtools/gdb/gdb-cross.inc b/meta/recipes-devtools/gdb/gdb-cross.inc
index ebe329f6d3..f8a113da8f 100644
--- a/meta/recipes-devtools/gdb/gdb-cross.inc
+++ b/meta/recipes-devtools/gdb/gdb-cross.inc
@@ -5,9 +5,10 @@ DEPENDS = "expat-native ncurses-native flex-native bison-native"
5inherit python3native 5inherit python3native
6 6
7# Overrides PACKAGECONFIG variables in gdb-common.inc 7# Overrides PACKAGECONFIG variables in gdb-common.inc
8PACKAGECONFIG ??= "python readline" 8PACKAGECONFIG ??= "python readline ${@bb.utils.filter('DISTRO_FEATURES', 'debuginfod', d)}"
9PACKAGECONFIG[python] = "--with-python=${PYTHON},--without-python,python3-native" 9PACKAGECONFIG[python] = "--with-python=${PYTHON},--without-python,python3-native"
10PACKAGECONFIG[readline] = "--with-system-readline,--without-system-readline,readline-native" 10PACKAGECONFIG[readline] = "--with-system-readline,--without-system-readline,readline-native"
11PACKAGECONFIG[debuginfod] = "--with-debuginfod, --without-debuginfod, elfutils-native"
11 12
12do_compile_prepend() { 13do_compile_prepend() {
13 export STAGING_LIBDIR="${STAGING_LIBDIR_NATIVE}" 14 export STAGING_LIBDIR="${STAGING_LIBDIR_NATIVE}"