aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2018-09-10 18:43:04 +0000
committerKhem Raj <raj.khem@gmail.com>2018-09-10 11:51:50 -0700
commit4f840830a5f078cdc7e08ff095925ad90a97ea12 (patch)
tree5cf988b471d3cfc29fb209f963992e0f3e34ab6c
parentb916b9fc82b310ccd2dc3e9b0b9b69da69e9e026 (diff)
downloadmeta-python2-4f840830a5f078cdc7e08ff095925ad90a97ea12.tar.gz
python-pyflame: skip for aarch64 as well
* 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, &regs)) { | ^~~~~~~~~~~~~~ | ../../git/src/ptrace.cc:127:14: note: suggested alternative: 'PTRACE_GETREGSET' | if (ptrace(PTRACE_GETREGS, pid, 0, &regs)) { | ^~~~~~~~~~~~~~ | 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, &regs)) { | ^~~~~~~~~~~~~~ | ../../git/src/ptrace.cc:136:14: note: suggested alternative: 'PTRACE_SETREGSET' | if (ptrace(PTRACE_SETREGS, pid, 0, &regs)) { | ^~~~~~~~~~~~~~ | PTRACE_SETREGSET | Makefile:524: recipe for target 'ptrace.o' failed | make[2]: *** [ptrace.o] Error 1 (From meta-openembedded commit: 90467a8d61b59d503ca4032d2dc32a5e14bea396) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Tim Orling <ticotimo@gmail.com>
-rw-r--r--recipes-devtools/python/python-pyflame.inc1
1 files changed, 1 insertions, 0 deletions
diff --git a/recipes-devtools/python/python-pyflame.inc b/recipes-devtools/python/python-pyflame.inc
index 3914028..340aab7 100644
--- a/recipes-devtools/python/python-pyflame.inc
+++ b/recipes-devtools/python/python-pyflame.inc
@@ -12,3 +12,4 @@ inherit pkgconfig autotools
COMPATIBLE_HOST_libc-musl_class-target = "null"
COMPATIBLE_HOST_mipsarch_class-target = "null"
+COMPATIBLE_HOST_aarch64_class-target = "null"