diff options
author | Tudor Florea <tudor.florea@enea.com> | 2015-10-08 22:46:13 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2015-10-08 22:46:13 +0200 |
commit | 8d89651ef729e560ad96dcfc002fcde6ff7f923b (patch) | |
tree | eb5be01c25f735d12fe9881ee6327c9b7e8bbe39 /meta-linaro-toolchain/recipes-devtools/gdb/gdb_linaro-7.8.bb | |
download | meta-linaro-dizzy-enea.tar.gz |
initial commit for Enea Linux 5.0 armdizzy-enea
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-linaro-toolchain/recipes-devtools/gdb/gdb_linaro-7.8.bb')
-rw-r--r-- | meta-linaro-toolchain/recipes-devtools/gdb/gdb_linaro-7.8.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-linaro-toolchain/recipes-devtools/gdb/gdb_linaro-7.8.bb b/meta-linaro-toolchain/recipes-devtools/gdb/gdb_linaro-7.8.bb new file mode 100644 index 0000000..3ce2de4 --- /dev/null +++ b/meta-linaro-toolchain/recipes-devtools/gdb/gdb_linaro-7.8.bb | |||
@@ -0,0 +1,23 @@ | |||
1 | require recipes-devtools/gdb/gdb.inc | ||
2 | require gdb-${PV}.inc | ||
3 | |||
4 | inherit python-dir | ||
5 | |||
6 | PACKAGECONFIG ??= "" | ||
7 | PACKAGECONFIG[python] = "--with-python=${WORKDIR}/python,--without-python,python" | ||
8 | |||
9 | do_configure_prepend() { | ||
10 | if [ -n "${@base_contains('PACKAGECONFIG', 'python', 'python', '', d)}" ]; then | ||
11 | cat > ${WORKDIR}/python << EOF | ||
12 | #!/bin/sh | ||
13 | case "\$2" in | ||
14 | --includes) echo "-I${STAGING_INCDIR}/${PYTHON_DIR}/" ;; | ||
15 | --ldflags) echo "-Wl,-rpath-link,${STAGING_LIBDIR}/.. -Wl,-rpath,${libdir}/.. -lpthread -ldl -lutil -lm -lpython${PYTHON_BASEVERSION}" ;; | ||
16 | --exec-prefix) echo "${exec_prefix}" ;; | ||
17 | *) exit 1 ;; | ||
18 | esac | ||
19 | exit 0 | ||
20 | EOF | ||
21 | chmod +x ${WORKDIR}/python | ||
22 | fi | ||
23 | } | ||