mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-25 03:36:30 +01:00
* fails with:
| ../../git/src/ptrace.cc: In function 'user_regs_struct pyflame::PtraceGetRegs(pid_t)':
| ../../git/src/ptrace.cc:127:14: error: 'PTRACE_GETREGS' was not declared in this scope
| if (ptrace(PTRACE_GETREGS, pid, 0, ®s)) {
| ^~~~~~~~~~~~~~
| ../../git/src/ptrace.cc:127:14: note: suggested alternative: 'PTRACE_GETREGSET'
| if (ptrace(PTRACE_GETREGS, pid, 0, ®s)) {
| ^~~~~~~~~~~~~~
| PTRACE_GETREGSET
| ../../git/src/ptrace.cc: In function 'void pyflame::PtraceSetRegs(pid_t, user_regs_struct)':
| ../../git/src/ptrace.cc:136:14: error: 'PTRACE_SETREGS' was not declared in this scope
| if (ptrace(PTRACE_SETREGS, pid, 0, ®s)) {
| ^~~~~~~~~~~~~~
| ../../git/src/ptrace.cc:136:14: note: suggested alternative: 'PTRACE_SETREGSET'
| if (ptrace(PTRACE_SETREGS, pid, 0, ®s)) {
| ^~~~~~~~~~~~~~
| PTRACE_SETREGSET
| Makefile:524: recipe for target 'ptrace.o' failed
| make[2]: *** [ptrace.o] Error 1
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
16 lines
496 B
HTML
16 lines
496 B
HTML
SUMMARY = "Pyflame: A Ptracing Profiler For Python"
|
|
HOMEPAGE = "https://github.com/uber/pyflame"
|
|
SECTION = "devel/python"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://${S}/LICENSE;md5=2ee41112a44fe7014dce33e26468ba93"
|
|
DEPENDS = "python"
|
|
|
|
SRC_URI = "git://github.com/uber/pyflame.git;protocol=https"
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit pkgconfig autotools
|
|
|
|
COMPATIBLE_HOST_libc-musl_class-target = "null"
|
|
COMPATIBLE_HOST_mipsarch_class-target = "null"
|
|
COMPATIBLE_HOST_aarch64_class-target = "null"
|