diff options
| author | Jamin Lin <jamin_lin@aspeedtech.com> | 2024-08-22 17:19:40 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-08-22 08:02:28 -0700 |
| commit | c42a0fb650326bb3894fe2ab2d7915aa4dfc1c73 (patch) | |
| tree | c0ef47d6d1b1d68510b32921a879e0ff86e82367 | |
| parent | 83c6d886f4dba97e512e9bb142e58d8d99ca8ee5 (diff) | |
| download | meta-openembedded-c42a0fb650326bb3894fe2ab2d7915aa4dfc1c73.tar.gz | |
drgn: add new recipe
drgn is a debugger with an emphasis on programmability
drgn exposes the types and variables in a program
for easy, expressive scripting in Python.
Drgn depends on:
1. python3
2. elfutils
3. openmp
a. clang toolchain should use libomp(openmp)
from meta-clang
b. gnu gcc toolchain should use libgomp(gcc-runtime)
from openembedded-core
The build requires:
1. setuptools
2. automake
3. autoconf
4. libtool
5. pkgconf
Signed-off-by: Jamin Lin <jamin_lin@aspeedtech.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-kernel/drgn/python3-drgn_0.0.27.bb | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/meta-oe/recipes-kernel/drgn/python3-drgn_0.0.27.bb b/meta-oe/recipes-kernel/drgn/python3-drgn_0.0.27.bb new file mode 100644 index 0000000000..10d7c6ffda --- /dev/null +++ b/meta-oe/recipes-kernel/drgn/python3-drgn_0.0.27.bb | |||
| @@ -0,0 +1,80 @@ | |||
| 1 | SUMMARY = "drgn (pronounced dragon) is a debugger with an emphasis on \ | ||
| 2 | programmability. drgn exposes the types and variables in a program for easy, \ | ||
| 3 | expressive scripting in Python." | ||
| 4 | HOMEPAGE = "https://github.com/osandov/drgn" | ||
| 5 | LICENSE = " LGPL-2.1-or-later" | ||
| 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=7c83d30e99508d6b790eacdd3abab846" | ||
| 7 | |||
| 8 | SRC_URI = "git://github.com/osandov/drgn.git;protocol=https;branch=main" | ||
| 9 | SRCREV = "a8dfc9e31f551d4b3c3d4307fa19ab6b3bfafb1c" | ||
| 10 | |||
| 11 | S = "${WORKDIR}/git" | ||
| 12 | |||
| 13 | DEPENDS = "\ | ||
| 14 | autoconf-native \ | ||
| 15 | automake-native \ | ||
| 16 | libtool-native \ | ||
| 17 | elfutils \ | ||
| 18 | " | ||
| 19 | |||
| 20 | DEPENDS:append:toolchain-clang:class-target ="\ | ||
| 21 | openmp \ | ||
| 22 | " | ||
| 23 | |||
| 24 | OPENMP_LIB = "libgomp" | ||
| 25 | OPENMP_LIB:toolchain-clang:class-target = "openmp" | ||
| 26 | |||
| 27 | RDEPENDS:${PN} = "\ | ||
| 28 | python3-crypt \ | ||
| 29 | python3-io \ | ||
| 30 | python3-logging \ | ||
| 31 | python3-math \ | ||
| 32 | python3-pickle \ | ||
| 33 | python3-stringold \ | ||
| 34 | python3-compression \ | ||
| 35 | " | ||
| 36 | |||
| 37 | RDEPENDS:${PN}:append:class-target = "\ | ||
| 38 | libdw \ | ||
| 39 | libelf \ | ||
| 40 | ${OPENMP_LIB} \ | ||
| 41 | " | ||
| 42 | |||
| 43 | RDEPENDS:${PN}:append:class-native = "\ | ||
| 44 | elfutils-native \ | ||
| 45 | " | ||
| 46 | |||
| 47 | RDEPENDS:${PN}:append:class-nativesdk = "\ | ||
| 48 | nativesdk-elfutils \ | ||
| 49 | " | ||
| 50 | |||
| 51 | OPENMP_LIB_NAME = "gomp" | ||
| 52 | OPENMP_LIB_NAME:toolchain-clang:class-target = "omp" | ||
| 53 | |||
| 54 | export CONFIGURE_FLAGS = "\ | ||
| 55 | --build=${BUILD_SYS}, \ | ||
| 56 | --host=${HOST_SYS}, \ | ||
| 57 | --target=${TARGET_SYS}, \ | ||
| 58 | --prefix=${prefix}, \ | ||
| 59 | --exec_prefix=${exec_prefix}, \ | ||
| 60 | --bindir=${bindir}, \ | ||
| 61 | --sbindir=${sbindir}, \ | ||
| 62 | --libexecdir=${libexecdir}, \ | ||
| 63 | --datadir=${datadir}, \ | ||
| 64 | --sysconfdir=${sysconfdir}, \ | ||
| 65 | --sharedstatedir=${sharedstatedir}, \ | ||
| 66 | --localstatedir=${localstatedir}, \ | ||
| 67 | --libdir=${libdir}, \ | ||
| 68 | --includedir=${includedir}, \ | ||
| 69 | --oldincludedir=${includedir}, \ | ||
| 70 | --infodir=${infodir}, \ | ||
| 71 | --mandir=${mandir}, \ | ||
| 72 | --enable-openmp=${OPENMP_LIB_NAME} \ | ||
| 73 | " | ||
| 74 | |||
| 75 | export PYTHON_CPPFLAGS = "-I${STAGING_INCDIR}/${PYTHON_DIR}" | ||
| 76 | |||
| 77 | inherit python3native pkgconfig setuptools3 | ||
| 78 | |||
| 79 | BBCLASSEXTEND = "native nativesdk" | ||
| 80 | |||
