1
0
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:
Joshua Lock
2010-10-08 18:20:44 +01:00
committed by Saul Wold
parent b7ce75703a
commit 9545130576
+8
View File
@@ -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