diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2018-09-10 18:43:04 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2018-09-10 11:51:50 -0700 |
commit | 90467a8d61b59d503ca4032d2dc32a5e14bea396 (patch) | |
tree | 1ac5f34137e691704c23ddcee0802bf5398c0dbe /meta-python/recipes-devtools/python/python-pyflame.inc | |
parent | 8cb0272d7f12c82840bf5c7d8518fd2fece60ced (diff) | |
download | meta-openembedded-90467a8d61b59d503ca4032d2dc32a5e14bea396.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, ®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>
Diffstat (limited to 'meta-python/recipes-devtools/python/python-pyflame.inc')
-rw-r--r-- | meta-python/recipes-devtools/python/python-pyflame.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python-pyflame.inc b/meta-python/recipes-devtools/python/python-pyflame.inc index 3914028ec..340aab74e 100644 --- a/meta-python/recipes-devtools/python/python-pyflame.inc +++ b/meta-python/recipes-devtools/python/python-pyflame.inc | |||
@@ -12,3 +12,4 @@ inherit pkgconfig autotools | |||
12 | 12 | ||
13 | COMPATIBLE_HOST_libc-musl_class-target = "null" | 13 | COMPATIBLE_HOST_libc-musl_class-target = "null" |
14 | COMPATIBLE_HOST_mipsarch_class-target = "null" | 14 | COMPATIBLE_HOST_mipsarch_class-target = "null" |
15 | COMPATIBLE_HOST_aarch64_class-target = "null" | ||