File tree Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ You can also use the helper shell script:
6262> It will produce a standard frame without any logged post register state.
6363> Any completed memory read/write might still be logged.
6464>
65- > If you suspect this, execute the binary with the ` execlog ` plugin (see ` gen-trace.sh ` )
65+ > If you suspect this, execute the binary with the ` execlog ` plugin (see ` gen-trace.sh ` or ` gen-execlog.sh ` )
6666> to check of the execution stops earlier than expected.
6767
6868
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ if [ " $# " -lt 2 ]; then
4+ echo " $0 <build_dir> <arch> <bin_path> [args...]"
5+ echo " <arch> is appended to qemu-<arch>"
6+ exit 1
7+ fi
8+
9+ BUILDIR=$1
10+ ARCH=$2
11+ BIN=$3
12+
13+ $BUILDIR /qemu-$ARCH -plugin file=" $BUILDIR /contrib/plugins/libexeclog.so" ,reg=* -d plugin " $BIN "
14+
Original file line number Diff line number Diff line change 1- #! /bin/sh -x
1+ #! /bin/sh
22
33if [ " $# " -lt 4 ]; then
44 echo " $0 <build_dir> <arch> <endianess=[b/l]> <bin_path> [args...]"
5- echo " <arch> is attached to qemu-<arch>"
5+ echo " <arch> is appended to qemu-<arch>"
66 exit 1
77fi
88
You can’t perform that action at this time.
0 commit comments