summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gdb/gdb-cross-canadian.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/gdb/gdb-cross-canadian.inc')
-rw-r--r--meta/recipes-devtools/gdb/gdb-cross-canadian.inc12
1 files changed, 6 insertions, 6 deletions
diff --git a/meta/recipes-devtools/gdb/gdb-cross-canadian.inc b/meta/recipes-devtools/gdb/gdb-cross-canadian.inc
index 6e42af1bab..e53081d0c0 100644
--- a/meta/recipes-devtools/gdb/gdb-cross-canadian.inc
+++ b/meta/recipes-devtools/gdb/gdb-cross-canadian.inc
@@ -1,5 +1,5 @@
1inherit cross-canadian 1inherit cross-canadian
2inherit python-dir 2inherit python3-dir
3 3
4SUMMARY = "GNU debugger (cross-canadian gdb for ${TARGET_ARCH} target)" 4SUMMARY = "GNU debugger (cross-canadian gdb for ${TARGET_ARCH} target)"
5PN = "gdb-cross-canadian-${TRANSLATED_TARGET_ARCH}" 5PN = "gdb-cross-canadian-${TRANSLATED_TARGET_ARCH}"
@@ -12,9 +12,9 @@ GDBPROPREFIX = "--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"
15PACKAGECONFIG[python] = "--with-python=${WORKDIR}/python,--without-python,nativesdk-python, \ 15PACKAGECONFIG[python] = "--with-python=${WORKDIR}/python,--without-python,nativesdk-python3, \
16 nativesdk-python-core nativesdk-python-lang nativesdk-python-re \ 16 nativesdk-python3-core nativesdk-python3-lang nativesdk-python3-re \
17 nativesdk-python-codecs nativesdk-python-netclient" 17 nativesdk-python3-codecs nativesdk-python3-netclient"
18PACKAGECONFIG[readline] = "--with-system-readline,--without-system-readline,nativesdk-readline" 18PACKAGECONFIG[readline] = "--with-system-readline,--without-system-readline,nativesdk-readline"
19 19
20SSTATE_DUPWHITELIST += "${STAGING_DATADIR}/gdb" 20SSTATE_DUPWHITELIST += "${STAGING_DATADIR}/gdb"
@@ -23,8 +23,8 @@ do_configure_prepend() {
23cat > ${WORKDIR}/python << EOF 23cat > ${WORKDIR}/python << EOF
24#! /bin/sh 24#! /bin/sh
25case "\$2" in 25case "\$2" in
26 --includes) echo "-I${STAGING_INCDIR}/${PYTHON_DIR}/" ;; 26 --includes) echo "-I${STAGING_INCDIR}/${PYTHON_DIR}${PYTHON_ABI}/" ;;
27 --ldflags) echo "-Wl,-rpath-link,${STAGING_LIBDIR}/.. -Wl,-rpath,${libdir}/.. -lpthread -ldl -lutil -lm -lpython${PYTHON_BASEVERSION}" ;; 27 --ldflags) echo "-Wl,-rpath-link,${STAGING_LIBDIR}/.. -Wl,-rpath,${libdir}/.. -lpthread -ldl -lutil -lm -lpython${PYTHON_BASEVERSION}${PYTHON_ABI}" ;;
28 --exec-prefix) echo "${exec_prefix}" ;; 28 --exec-prefix) echo "${exec_prefix}" ;;
29 *) exit 1 ;; 29 *) exit 1 ;;
30esac 30esac