mirror of
https://git.yoctoproject.org/poky
synced 2026-06-10 16:10:04 +00:00
bitbake-runtask-strace: simple shell script to wrap tasks in a strace call
Signed-off-by: Joshua Lock <josh@linux.intel.com>
This commit is contained in:
Executable
+8
@@ -0,0 +1,8 @@
|
||||
#!/bin/bash
|
||||
STRACE=`which strace`
|
||||
|
||||
if [ ! -x "$STRACE" ]; then
|
||||
bitbake-runtask $1 $2 $3 $4
|
||||
else
|
||||
strace -f -o $TRACE_LOGFILE-$3.log -e trace=open,execve bitbake-runtask $1 $2 $3 $4
|
||||
fi
|
||||
Reference in New Issue
Block a user