Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | python-pyflame: skip for aarch64 as well | Martin Jansa | 2018-09-10 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | * 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> | ||||
* | python-pyflame: Disable for mips arch | Khem Raj | 2018-08-27 | 1 | -0/+1 |
| | | | | | | | | Fails to build as support is missing src/ptrace.cc:135:48: error: 'regs' has incomplete type Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||||
* | python-pyflame: Use SHA instead of tag in SRC_URI | Khem Raj | 2018-08-24 | 1 | -1/+1 |
| | | | | | | | | tags are floating and bitbake will ping the remote host and this will fail in BB_NO_NETWORK cases Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andrew Jeffery <andrew@aj.id.au> | ||||
* | python-pyflame: Limit support to just glibc based systems | Khem Raj | 2018-08-24 | 1 | -0/+1 |
| | | | | | | | | | | Fixes: | checking build system type... x86_64-pc-linux-gnu | checking host system type... x86_64-bec-linux-musl | configure: error: Pyflame can only be built for Linux hosts Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andrew Jeffery <andrew@aj.id.au> | ||||
* | meta-python: Add python-pyflame recipe | Andrew Jeffery | 2018-08-24 | 1 | -0/+12 |
Signed-off-by: Andrew Jeffery <andrew@aj.id.au> Signed-off-by: Khem Raj <raj.khem@gmail.com> |