mirror of
https://git.yoctoproject.org/poky
synced 2026-03-05 14:59:41 +01:00
This was overlooked in the move to Python 3 (From OE-Core rev: 2ec8db434c6da54333cbdc54763bb5561b6e4d10) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
691 B
PHP
28 lines
691 B
PHP
require gdb-common.inc
|
|
|
|
DEPENDS = "expat-native ncurses-native"
|
|
|
|
inherit python3native
|
|
|
|
# Overrides PACKAGECONFIG variables in gdb-common.inc
|
|
PACKAGECONFIG ??= "python readline"
|
|
PACKAGECONFIG[python] = "--with-python=${PYTHON},--without-python,python3-native"
|
|
PACKAGECONFIG[readline] = "--with-system-readline,--without-system-readline,readline-native"
|
|
|
|
do_compile_prepend() {
|
|
export STAGING_LIBDIR="${STAGING_LIBDIR_NATIVE}"
|
|
export STAGING_INCDIR="${STAGING_INCDIR_NATIVE}"
|
|
}
|
|
|
|
#EXTRA_OEMAKE += "LDFLAGS='${BUILD_LDFLAGS}'"
|
|
|
|
GDBPROPREFIX = ""
|
|
|
|
PN = "gdb-cross-${TARGET_ARCH}"
|
|
BPN = "gdb"
|
|
|
|
inherit cross
|
|
inherit gettext
|
|
|
|
datadir .= "/gdb-${TUNE_PKGARCH}${TARGET_VENDOR}-${TARGET_OS}"
|